@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	background:  linear-gradient(to right, #FFFACD, #CDF6FF);
	height: 100vh;
}
.login-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	
	padding: 15px;
}
.login-from-wrapper {
	background: #ffffff82;
	border-radius: 30px;
	padding: 62px;

}
.login-logo {
	text-align: center;
}
.login-from-wrapper h1 {
	margin-top: 16px;
	font-size: 40px;
	font-weight: 700;
}
.login-from-wrapper p {
	color: #1e1e1e;
	font-size: 20px;
	margin-top: 6px;
}
.login-from-wrapper form {
	margin-top: 24px;
}
.login-from-wrapper form input {
	display: block;
	width: 100%;
	border-radius: 30px;
	border: 1px solid #000;
	padding: 12px 20px;
	font-size: 16px;
	font-family: inherit;
}
.login-from-wrapper form button {
	display: block;
	background: #1E1E1E;
	border: none;
	outline: none;
	color: #fff;
	padding: 20px;
	border-radius: 30px;
	max-width: 320px;
	width: 100%;
	font-size: 18px;
	font-family: inherit;
	margin: 12px auto;
}
.error-login {
	color: red;
	display: block;
	margin-bottom: 8px;
}
.logading-box {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000069;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: all .30s;
	z-index: 9999;
}
.loading-box__wrapper {
	height: 100px;
	width: 100px;
}
.loading-box__wrapper svg {
	width: 100%;
	height: 100%;
}

.logading-box__active {
	visibility: visible;
	opacity: 1;
	transition: all .30s;
}
.site-header {
	margin-top: 30px;
}
.header-block {
	padding: 16px 20px;
	border-radius: 30px;
	background: #ffffffa1;
	display: flex;
	align-items: center;
	width: 100%;
}
.header-block .logo img {
	max-width: 170px;
	height: auto;
}
.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-left: 32px;
}
.header-wrapper .logo {}
.header-menu {
	display: flex;
}
.header-menu a {
	display: block;
	margin-right: 24px;
	text-decoration: none;
	color: #000;
	transition: all .30s;
	font-size: 18px;
}
.header-menu a.active {
	font-weight: bold;
}
.header-menu a:hover {
	transition: all .30s;
	text-decoration: underline;
}
.header-menu a:last-child {
	margin-right: 0;
}
.header-about__id {
	font-weight: bold;
	font-size: 16px;
}
.header-about__rating {
	font-size: 14px;
}
.heder-help {
	text-align: center;
}
.heder-help button {
	display: block;
	border-radius: 30px;
	background: #000;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	padding: 12px;
	border: none;
	outline: none;
	cursor: pointer;
	width: 180px;
}
.logout {
	color: #000;
	font-size: 14px;
}
.mob-menu-btn {
	display: none;
}
.close-mob-menu {
	display: none;
}
/**************************/
.news {
	background: #ffffff6b;
	padding: 32px;
	border-radius: 30px;
	width: 100%;
	max-width: 1100px;
	margin: 48px auto;
}
.news-page {
	
}
.stats-block {
	background: #fff;
	padding: 20px;
	border-radius: 30px;
}
.stats-block h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 16px;
}
.stats-block__stats {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.month-satats {
	justify-content: space-around;
}
.stats-block__stats-item {
	text-align: center;
}
.stats-block__stats-item p {
	font-size: 22px;
}
.stats-block__stats-item span {
	display: block;
	margin-top: 6px;
}
.news-wrapper {
	margin-top: 64px;
	background: #fff;
	margin-left: 0;
	margin-right: 0;
	padding: 20px;
	border-radius: 30px;
}
.news-title {
	margin-bottom: 36px;
}
.news-title h2 {
	font-size: 28px;
}
.news-item {
	margin-bottom: 36px;
}
.news-item .news-img {}
.news-item .news-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
}
.news-item span {
	display: block;
	font-size: 14px;
	margin-top: 8px;
}
.news-item h3 {
	margin-top: 8px;
}
.news-item p {
	margin-top: 8px;
	line-height: 150%;
	font-size: 16px;
}
.news-item button {
	display: block;
	border-radius: 30px;
	background: #000;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	padding: 12px;
	border: none;
	outline: none;
	cursor: pointer;
	width: 180px;
	margin-top: 16px;
}
.news-full-text {
	display: none;
}
.news-popup {
	position: fixed;
	top: 30px;
	left: 0;
	right: 0;
	bottom: 30px;
	margin: auto;
	max-width: 900px;
	width: 100%;
	background: #fff;
	padding: 30px;
	border-radius: 30px;
	overflow: auto;
	border-top: 30px solid #fff;
	border-bottom: 30px solid #fff;
	z-index: 1000;
	display: none;
}
.close-news-popup {
	position: absolute;
	right: 30px;
	top: 15px;
	cursor: pointer;
}
.close-news-popup svg {
	height: 24px;
	width: 24px;
}
.news-popup-img {
	margin-top: 24px;
}
.news-popup-img img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.news-popup span {
	display: block;
	font-size: 14px;
	margin-top: 8px;
}
.news-popup h3 {
	margin-top: 8px;
}
.news-popup p {
	margin-top: 8px;
	line-height: 150%;
	font-size: 16px;
}
.news-popup button {
	display: block;
	border-radius: 30px;
	background: #000;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	padding: 12px;
	border: none;
	outline: none;
	cursor: pointer;
	width: 180px;
	margin-top: 16px;
}
.news-popup::-webkit-scrollbar {
	width: 8px; 
}

.news-popup::-webkit-scrollbar-track {
	background: #a3a3a3; 
}

.news-popup::-webkit-scrollbar-thumb {
	background-color: #fff;   
	border-radius: 20px;      
	border: 1px solid #a3a3a3; 
}  

.black-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0000009c;
	z-index: 999;
	display: none;
}
/*************************************/
.work {
	background: #ffffff6b;
	padding: 32px;
	border-radius: 30px;
	width: 100%;
	max-width: 1100px;
	margin: 48px auto;
}
.work-wrapper {
	margin-top: 64px;
	background: #fff;
	margin-left: 0;
	margin-right: 0;
	padding: 20px;
	border-radius: 30px;
}
.author-feedback-info {
    margin: 16px 0;
}
.last-order {
    font-weight: 400;
    font-size: 18px;
}
.author-table {
    overflow: auto;
    margin-top: 16px;
}
.author-table h2 {
	margin-bottom: 16px;
}
table {
    border: 1px solid #eee;
    margin-bottom: 16px;
}
.author-table tr {
    margin-bottom: 8px;

}
.author-table td {
    padding: 7px;
    border: 1px solid #eee;
}
.author-table td a {
	color: #000;
}

/*********************************************/
.help-popup {
	position: fixed;
	top: 30px;
	bottom: 30px;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	border-radius: 30px;
	padding: 0 30px;
	border-top: 30px solid #fff;
	border-bottom: 30px solid #fff;
	max-width: 760px;
	z-index: 1000;
	overflow: auto;
	display: none;
}
.close-help-popup {
	position: absolute;
	right: 30px;
	top: 0px;
	cursor: pointer;
}
.close-help-popup svg {
	height: 24px;
	width: 24px;
}
.help-popup>h2 {
	margin-top: 32px;
	text-align: center;
	font-size: 32px;
}
.help-popup>p {
	font-size: 18px;
	text-align: center;
	margin-top: 12px;
}
.help-popup form {
	margin-top: 24px;
}
.help-popup form .help-form-item {
	margin-bottom: 16px;
}
.help-popup form h3 {
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 500;
}
.help-popup form select {
	-webkit-appearance: none;
	display: block;
	width: 100%;
	padding: 12px;
	color: #000;
	font-size: 16px;
	font-family: inherit;
	border: 1px solid #000;
	outline: none;
	background: #fff;
}
.select-arrow {
	position: relative;
}
.select-arrow svg {
	content: '';
	position: absolute;
	top: calc(50% - 10px);
	right: 10px;
	font-size: 22px;
	color: #000;
 	height: 16px;
 	width: 16px;
}
.help-popup form input {
	display: block;
	width: 100%;
	padding: 12px;
	color: #000;
	font-size: 16px;
	font-family: inherit;
	border: 1px solid #000;
	outline: none;
}
.help-popup form textarea {
	display: block;
	width: 100%;
	padding: 12px;
	color: #000;
	font-size: 16px;
	font-family: inherit;
	border: 1px solid #000;
	outline: none;
	height: 120px;
	resize: none;
}
.help-popup form button {
	display: block;
    border-radius: 30px;
    background: #000;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    padding: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    width: 180px;
    margin: 24px auto;
}
.faq {
 
    margin-top: 20px;
    margin-bottom: 40px;
}
.faq h2 {
	text-align: center;
}
.faq-items-wrapper {
    background: #fff;
    padding: 24px 20px;
    border-radius: 30px;
}

.faq-items-wrapper h2 {
    font-weight: 700;
    font-size: 28px;
    color: #1E1E1E;
    margin-bottom: 27px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: #1E1E1E;
    font-weight: 700;
}

.faq-item p {
    margin-top: 8px;
    line-height: 150%;
}