/* button */
.button {
	color: white;
	font-family: "Trajan Pro 3", "Philosopher", "Times New Roman", Times, serif;
	font-family: var(--font-1);
	font-size: 12px;
	font-weight: 600;
	min-width: 0;
	min-height: 34px;
	background-color: #3c4f5a;
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(255, 255, 255, 0.4) 100%
	);
	border: 1px solid #858070;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.3s all;
	text-decoration: none;
	padding: 3px 15px;
	gap: 6px;
	box-sizing: border-box;
}

.button:hover,
.button_active {
	color: white;
	filter: brightness(120%);
}

.button_active {
	color: white;
	background-color: #353214;
}

.button_type_2 {
	background: transparent;
	color: var(--color-accent);
	border: 1px solid var(--color-accent);
}

.button_type_2:hover {
	filter: brightness(100%);
	color: rgb(25, 33, 42);
}

@media (min-width: 1000px) {
	.button_size_large {
		min-height: 52px;
		padding: 3px 20px;
	}
}

/* btn */
.btn {
	display: inline-grid;
	grid-auto-flow: column;
	grid-gap: 15px;
	gap: 15px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
	flex-shrink: 0;
	font-style: normal;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	cursor: pointer;
	transition: 0.2s all;
	text-shadow: none;
	box-shadow: none;
	position: relative;
	z-index: 0;
	outline: 0;
	padding: 8px 30px;
	min-width: 184px;
	height: 54px;
	background: transparent;
	border: 0;
	font-family: "Trajan Pro 3", "Philosopher", "Times New Roman", Times, serif;
	font-family: var(--font-1);
}

.btn_shadow {
	filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.5));
}

.btn:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 26px;
	bottom: 0;
	left: 26px;
	z-index: -5;
	background-color: transparent;
	background-image: url(../images/btn/btn-repeat.png);
	background-position: center center;
	background-repeat: repeat-x;
	background-size: auto;
	border: 0;
	transition: 0.2s all;
	overflow: hidden;
}

.btn:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 1px;
	bottom: 0;
	left: 1px;
	z-index: -5;
	background-color: transparent;
	background-image: url(../images/btn/btn-left.png),
		url(../images/btn/btn-right.png);
	background-position: left center, right center;
	background-repeat: no-repeat, no-repeat;
	background-size: auto, auto;
	border: 0;
	border-radius: 10px;
	transition: 0.2s all;
	overflow: hidden;
}

.btn__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../images/btn/bg-decor.jpg) no-repeat center center;
	background-size: cover;
	z-index: -10;
	transition: 0.5s all;
}

.btn__wave {
	position: absolute;
	top: 9px;
	right: 9px;
	bottom: 9px;
	left: 9px;
	z-index: -3;
	-webkit-clip-path: polygon(
		17px 0%,
		calc(100% - 17px) 0%,
		100% 50%,
		calc(100% - 17px) 100%,
		17px 100%,
		0% 50%
	);
	clip-path: polygon(
		17px 0%,
		calc(100% - 17px) 0%,
		100% 50%,
		calc(100% - 17px) 100%,
		17px 100%,
		0% 50%
	);
	transition: 0s all;
	overflow: hidden;
}

.btn__wave:before,
.btn__wave:after {
	display: block;
	content: "";
	width: 200px;
	height: 200px;
	border-radius: 47%;
	background-color: rgba(255, 255, 255, 0.2);
	background: radial-gradient(
		circle closest-side,
		rgba(0, 0, 0, 0) 85%,
		rgba(164, 189, 212, 0.25) 94%,
		rgba(174, 188, 207, 0.25) 100%
	);
	position: absolute;
	mix-blend-mode: difference;
	opacity: 0;
	transition: 0.5s all;
}

.btn__wave:before {
	left: 24%;
	bottom: 40%;
	height: 215px;
	-webkit-animation: wave-1 6.5s infinite linear;
	animation: wave-1 6.5s infinite linear;
}

.btn__wave:after {
	right: 27%;
	top: 45%;
	width: 220px;
	border-radius: 46%;
	-webkit-animation: wave-2 6s infinite linear;
	animation: wave-2 6s infinite linear;
}

/* @keyframes wave {
	0% {
		transform: translate(0%);
	}

	50% {
		transform: translate(5%);
	}

	100% {
		transform: translate(0%);
	}
} */
@-webkit-keyframes wave-1 {
	0% {
		transform: rotate3d(0, 0, 1, -20deg) skewX(0deg);
	}

	45% {
		transform: rotate3d(0, 0, 1, -200deg) skewX(6deg) translate(5%);
	}

	100% {
		transform: rotate3d(0, 0, 1, -380deg) skewX(0deg);
	}
}

@keyframes wave-1 {
	0% {
		transform: rotate3d(0, 0, 1, -20deg) skewX(0deg);
	}

	45% {
		transform: rotate3d(0, 0, 1, -200deg) skewX(6deg) translate(5%);
	}

	100% {
		transform: rotate3d(0, 0, 1, -380deg) skewX(0deg);
	}
}

@-webkit-keyframes wave-2 {
	0% {
		transform: rotate3d(0, 0, 1, 180deg) skewX(0deg);
	}

	60% {
		transform: rotate3d(0, 0, 1, 0deg) skewX(-4deg) translate(5%);
	}

	100% {
		transform: rotate3d(0, 0, 1, -180deg) skewX(0deg);
	}
}

@keyframes wave-2 {
	0% {
		transform: rotate3d(0, 0, 1, 180deg) skewX(0deg);
	}

	60% {
		transform: rotate3d(0, 0, 1, 0deg) skewX(-4deg) translate(5%);
	}

	100% {
		transform: rotate3d(0, 0, 1, -180deg) skewX(0deg);
	}
}

.btn:hover {
	color: #fff;
}

.btn:hover .btn__wave {
	opacity: 1;
	background: transparent;
}

.btn:hover:hover:before,
.btn:hover:hover:after {
	filter: brightness(120%);
}

.btn:hover .btn__wave:before,
.btn:hover .btn__wave:after {
	opacity: 1;
}

.btn:hover .btn__bg {
	opacity: 0.5;
}

.btn__content {
	position: relative;
	z-index: 5;
	display: inline-block;
}

.btn__ico {
	font-size: 20px;
	transition: 0.2s all;
	color: #19212a;
	color: var(--color-0);
}

.btn__img {
	display: block;
}

/* btn_size_large */
.btn_size_large {
	min-width: 244px;
	height: 67px;
	font-size: 22px;
}

.btn_size_large:before {
	right: 33px;
	left: 33px;
	background-image: url(../images/btn/btn-repeat-large.png);
}

.btn_size_large:after {
	background-image: url(../images/btn/btn-left-large.png),
		url(../images/btn/btn-right-large.png);
}

.btn_size_large .btn__wave {
	-webkit-clip-path: polygon(
		22px 0%,
		calc(100% - 22px) 0%,
		100% 50%,
		calc(100% - 22px) 100%,
		22px 100%,
		0% 50%
	);
	clip-path: polygon(
		22px 0%,
		calc(100% - 22px) 0%,
		100% 50%,
		calc(100% - 22px) 100%,
		22px 100%,
		0% 50%
	);
}

.btn_size_large .btn__wave:before {
	left: 34%;
	bottom: 20%;
}

.btn_size_large .btn__wave:after {
	right: 32%;
	top: 65%;
	width: 270px;
	height: 250px;
}

/* btn_type_1 */
.btn_type_1 {
	min-width: 167px;
	height: 44px;
}

.btn_type_1:before {
	right: 21px;
	left: 21px;
	background-image: url(../images/btn/btn-repeat-type-1.png);
}

.btn_type_1:after {
	background-image: url(../images/btn/btn-left-type-1.png),
		url(../images/btn/btn-right-type-1.png);
}

.btn_type_1 .btn__wave {
	-webkit-clip-path: polygon(
		22px 0%,
		calc(100% - 22px) 0%,
		100% 50%,
		calc(100% - 22px) 100%,
		22px 100%,
		0% 50%
	);
	clip-path: polygon(
		22px 0%,
		calc(100% - 22px) 0%,
		100% 50%,
		calc(100% - 22px) 100%,
		22px 100%,
		0% 50%
	);
}

/* lang */
.lang {
	position: relative;
	z-index: 10;
	/* width: 80px; */
	height: 32px;
	/* border: 1px solid rgba(98, 107, 133, 0.19); */
	border-radius: 3px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #263741;
	color: var(--color-2);
	text-transform: uppercase;
	font-family: "Trajan Pro 3", "Philosopher", "Times New Roman", Times, serif;
	font-family: var(--font-1);
}

.lang:after {
	font-family: "gwi";
	font-family: var(--font-ico);
	content: "\E816";
	width: 24px;
	height: 24px;
	transition: 0.3s all;
	margin: 0 0 0 0;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	color: #967f35;
	color: var(--color-accent);
}

.lang:hover:after {
	opacity: 0.5;
}

.lang__link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s all;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.02em;
	color: #263741;
	color: var(--color-2);
	text-decoration: none;
	box-sizing: border-box;
	padding: 0;
	position: relative;
	z-index: 1;
	padding-left: 6px;
}

.lang:hover .lang__link_select {
	opacity: 0.5;
}

.lang__link_sub {
	height: 30px;
	box-shadow: 0 10px 50px rgba(19, 63, 114, 0.05);
	color: #fff;
	padding-right: 5px;
}

.lang__link_sub:hover {
	background-color: rgb(85, 90, 102);
	color: #fff;
}

.lang__container {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s all;
	z-index: 0;
	position: absolute;
	left: 0;
	top: 100%;
	box-sizing: border-box;
	padding-top: 5px;
	transform: translateY(-20px);
}

.lang:hover .lang__container {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.lang__list {
	overflow: hidden;
	display: grid;
	background-color: rgba(0, 0, 0, 0.2902);
	background-color: #0000004a;
	border: 1px solid rgba(98, 107, 133, 0.44);
	box-sizing: border-box;
	border-radius: 3px;
}

/* navigation */
[data-section="navigation"] {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 50;
	transition: 0.3s all;
	background: #dddbd6;
	background: var(--header-bg);
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45); */
}

.nav-scroll [data-section="navigation"] {
}

[data-container="navigation"] {
	position: static;
}

.navigation {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transition: 0.6s all;
	min-height: 62px;
}

.nav-scroll .navigation {
}

.navigation__lang {
	margin-left: 20px;
}

.navigation__servers {
	margin-right: auto;
	box-sizing: border-box;
	margin-left: 25px;
	padding-left: 40px;
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 0.7rem 2rem;
	gap: 0.7rem 2rem;
}

.navigation__servers:after {
	display: block;
	content: "";
	width: 1px;
	height: 28px;
	background-color: rgba(38, 55, 65, 0.25);
	position: absolute;
	left: 0;
	top: calc(50% - 14px);
}

.navigation__gw-burger {
	align-self: center;
	flex-shrink: 0;
}

.navigation__menu {
}

[data-auth-target="navigation"] {
	display: none;
}

/* customuser */

.customuser {
	padding: 10px 0 20px;
}

@media (min-width: 1200px) {
	.customuser {
		display: none;
	}
}

.customuser__title {
	color: rgb(25, 33, 42);
	font-family: var(--font-1);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.customuser__name {
	color: rgb(142, 120, 50);
	font-size: 16px;
	font-weight: 400;
}

@media (max-width: 1199.98px) {
	/* customnav */

	.customnav {
	}

	.customnav__heading {
		height: 48px;
		background-color: rgb(255, 255, 255);
		border-radius: 6px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		color: var(--color-accent);
		font-size: 16px;
		box-sizing: border-box;
		padding: 5px 16px;
		cursor: pointer;
		font-weight: 500;
		transition: 0.3s all;
	}

	.customnav_state_open .customnav__heading {
		color: rgb(25, 33, 42);
		margin-bottom: 10px;
	}

	.customnav__heading:after {
		font-family: var(--font-ico);
		content: "\E816";
		width: 24px;
		height: 24px;
		transition: 0.3s all;
		margin: 0 0 0 0;
		pointer-events: none;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 12px;
		color: var(--color-accent);
		margin-left: auto;
	}

	.customnav__list {
		box-sizing: border-box;
		margin: 0;
		padding: 10px 0;
		background-color: rgb(255, 255, 255);
		border-radius: 6px;
		list-style-type: none;
		display: none;
	}

	.customnav__el {
		width: 100%;
	}

	.customnav__item {
		min-height: 40px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-align: left;
		color: var(--color-accent);
		font-size: 16px;
		box-sizing: border-box;
		padding: 10px 16px;
		cursor: pointer;
		text-decoration: none;
		font-weight: 500;
	}

	.customnav__item:hover {
		background-color: rgba(0, 0, 0, 0.05);
		color: rgb(25, 33, 42);
	}
}

@media (min-width: 1200px) {
	[data-section="customnav"] {
		background-color: rgb(150, 127, 53);
	}
	.customnav {
		height: 62px;
		display: flex;
	}

	.customnav__heading {
		display: none;
	}

	.customnav__list {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex !important;
		justify-content: center;
		width: 100%;
	}

	.customnav__el {
		display: flex;
	}

	.customnav__item {
		color: #fff;
		box-sizing: border-box;
		padding: 10px 13px;
		cursor: pointer;
		text-decoration: none;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-family: var(--font-2);
		font-size: 14px;
		transition: 0.3s all;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.customnav__item:hover {
		color: #fff;
		opacity: 0.5;
	}
}

/* boxstyle */

.boxstyle {
	display: block;
	box-sizing: border-box;
	padding: 20px 15px;
	background-color: rgb(252, 250, 246);
	border-radius: 6px;
}

@media (min-width: 600px) {
	.boxstyle_p_large {
		padding: 20px 34px;
	}
}

/* boxinfo */

.boxinfo {
	display: flex;
	gap: 10px;
	min-width: 0;
	position: relative;
	z-index: 0;
}

.boxinfo__bar {
	width: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	min-width: none;
	flex-shrink: 0;
}

.boxinfo__pic {
	width: 60px;
	height: 60px;
	background-color: var(--color-accent);
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding-top: 5px;
}

.boxinfo__img {
	display: block;
}

.boxinfo__balance {
	margin-top: 10px;
	max-width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
}

.boxinfo__balance-title {
	color: rgb(25, 33, 42);
	font-family: var(--font-1);
	font-size: 16px;
	font-weight: 600;
	max-width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
}

.boxinfo__balance-total {
	color: var(--color-accent);
	font-family: var(--font-2);
	font-size: 24px;
	font-weight: 700;
}

.boxinfo__btns {
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-direction: column;
	gap: 6px;
	padding-bottom: 10px;
	overflow: hidden;
}

.boxinfo__button {
	justify-content: flex-start;
	text-align: left;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* wgds */

.wgds {
	display: grid;
	gap: 15px;
}

/* soc */
.soc {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	grid-gap: 20px;
	gap: 20px;
}

.soc__list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 20px;
	gap: 20px;
}

.soc:before,
.soc:after {
	display: block;
	background-image: url(../images/soc/line-left.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 104px;
	height: 10px;
}

.soc:after {
	background-image: url(../images/soc/line-right.png);
}

.soc__item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 85px;
	height: 84px;
	position: relative;
	z-index: 0;
	color: #fff;
	font-size: 25px;
	text-decoration: none;
}

.soc__item:hover {
	color: #fff;
}

.soc__item:after {
	display: block;
	content: "";
	background: url(../images/soc/item-bg.png) no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	transition: 0s all;
}

.soc__item:hover:after {
	transform: rotate(360deg);
	transition: 0.3s all;
	opacity: 0.6;
}

.soc__ico_discord {
	margin-right: 2px;
}

.soc__ico_c-telegram {
	margin-top: 2px;
}

.soc__ico_facebook {
	margin-left: 1px;
}

.soc__ico_youtube-play {
	margin-left: 1px;
}

/* footer */
[data-section="footer"] {
	margin-top: auto;
}

.footer {
	box-sizing: border-box;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
	border-top: 1px solid #b2b0ac;
	border-top: 1px solid var(--line-color);
}

.footer__logo-box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__logo {
	transition: 0.3s all;
}

.footer__logo:hover {
	opacity: 0.7;
}

.footer__invite {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footer__invite-title {
	color: #19212a;
	font-family: "Trajan Pro 3", "Philosopher", "Times New Roman", Times, serif;
	font-family: var(--font-1);
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 1.625rem;
}

.footer__social {
	box-sizing: border-box;
	padding: 2.5rem 0;
}

.footer__content {
	text-align: center;
	color: #19212a;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.3;
	margin-top: 3.125rem;
}

.footer__links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 5px;
}

.footer__link {
	text-decoration: none;
	text-align: center;
	margin: 3px 8px;
	transition: 0.2s all;
	color: #24353f;
	font-size: 11px;
	line-height: 1.3;
	font-weight: 500;
}

.footer__link:hover {
	opacity: 0.7;
}

.footer__bnrs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-gap: 5px;
	gap: 5px;
	margin-top: 2.5rem;
}

@media (min-width: 80px) {
}

@media (min-width: 400px) {
}

@media (min-width: 450px) {
}

@media (min-width: 500px) {
}

@media (min-width: 550px) {
}

@media (min-width: 570px) {
}

@media (min-width: 600px) {
}

@media (min-width: 650px) {
}

@media (min-width: 700px) {
}

@media (min-width: 800px) {
	.soc:before,
	.soc:after {
		content: "";
	}
}

@media (min-width: 850px) {
}

@media (min-width: 900px) {
}

@media (min-width: 1000px) {
	.auth__panel {
		padding: 0;
	}

	[data-auth-target="menu"] {
		display: none;
	}

	[data-auth-target="navigation"] {
		display: block;
	}
}

@media (min-width: 1040px) {
}

@media (min-width: 1100px) {
}

@media (min-width: 1140px) {
}

@media (min-width: 1200px) {
	/* gw-burger  */
	.gw-burger {
		display: none;
	}

	/* menu */
	.menu {
		display: flex;
		align-self: stretch;
	}

	.menu__content {
		display: flex;
		width: 100%;
	}

	.menu__list {
		list-style-type: none;
		padding: 0;
		margin: 0 0 0 -15px;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		opacity: 1;
		visibility: visible;
		width: 100%;
	}

	.nav-static .menu__list {
	}

	.menu__el {
		display: flex;
	}

	.menu__ico-link {
		position: relative;
		top: -1px;
		font-size: 12px;
		margin-left: 3px;
	}

	.menu__item {
		padding: 10px 15px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-decoration: none;
		text-align: left;
		color: #263741;
		color: var(--color-2);
		cursor: pointer;
		font-weight: 600;
		font-size: 14px;
		transition: 0.2s all;
		font-family: "Trajan Pro 3", "Philosopher", "Times New Roman", Times, serif;
		font-family: var(--font-1);
		text-transform: uppercase;
		position: relative;
		z-index: 0;
		white-space: nowrap;
		letter-spacing: 0.1em;
	}

	.menu__item:after {
		display: block;
		content: "";
		position: absolute;
		top: 100%;
		left: calc(50% - 10px);
		border: 10px solid transparent;
		border-top: 8px solid #dddbd6;
		border-top: 8px solid var(--header-bg);
		/* border-bottom: 2px solid transparent; */
		transform: translateY(-100%);
		transition: 0.2s all;
		z-index: -1;
	}

	.menu__item:hover {
		color: #967f35;
		color: var(--color-accent);
	}

	.menu__item:hover:after {
		transform: translateY(0);
		/* border-color: rgba(255, 255, 255, 0.2); */
		opacity: 1;
	}
}

@media (min-width: 1840px) {
}

@media (max-width: 1199.98px) {
	/* gw-burger */
	.gw-burger {
		position: relative;
		z-index: 5;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		cursor: pointer;
		box-sizing: border-box;
		flex-shrink: 0;
		background-color: #ffedda;
		background-image: linear-gradient(to top, #ffedda 0%, #ffe 100%);
		box-shadow: 0 0 1px 1px #bcad92 inset, 0 0 1px 1px #352d1a;
		transition: 0.1s all;
	}

	.gw-burger__line {
		height: 2px;
		position: absolute;
		left: 8px;
		right: 8px;
		background-color: #383229;
		border-radius: 3px;
		transition: 0.3s top 0.3s, 0.3s bottom 0.3s, 0.3s opacity 0.4s,
			0.3s transform 0s;
	}

	.gw-burger__line_pos_top {
		top: 12px;
	}

	.gw-burger__line_pos_middle {
		top: 50%;
		transform: translateY(-50%);
		transition: 0.3s all 0.4s;
	}

	.gw-burger__line_pos_bottom {
		bottom: 12px;
		right: 12px;
	}

	.mob-menu-active .gw-burger__line_pos_top {
		transform: rotate(45deg) translateY(-50%);
		transform-origin: center top;
		top: 50%;
		transition: 0.3s top 0.1s, 0.3s bottom 0.1s, 0s opacity 0.1s,
			0.3s transform 0.3s;
	}

	.mob-menu-active .gw-burger__line_pos_middle {
		opacity: 0;
		transition: 0.3s all 0.1s;
	}

	.mob-menu-active .gw-burger__line_pos_bottom {
		right: 8px;
		transform: rotate(-45deg) translateY(50%);
		transform-origin: center bottom;
		bottom: 50%;
		transition: 0.1s right 0.1s, 0.3s top 0.1s, 0.3s bottom 0.1s,
			0s opacity 0.1s, 0.3s transform 0.3s;
	}

	/* menu */
	.menu {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		z-index: 2;
		box-sizing: border-box;
		padding-top: 80px;
		padding-bottom: 40px;
		height: 100vh;
		overflow: auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		background: #dddbd6;
		background: var(--body-background-color);
		opacity: 0;
		transition: 0.5s all 0.3s;
		visibility: hidden;
		box-shadow: 100vh 0 100vh 0 #dddbd6;
		box-shadow: 100vh 0 100vh 0 var(--body-background-color);
	}

	.nav-scroll:not(.mob-menu-active) .menu {
		padding: 0;
	}

	.mob-menu-active .menu {
		visibility: visible;
		opacity: 1;
		transition: 0.5s all;
	}

	.menu__content {
		margin: 0 calc(10px * 2);
		margin: 0 calc(var(--margin) * 2);
		transform: translateY(-30%);
		transition: 0.3s all;
		opacity: 0;
		width: 100%;
	}

	.mob-menu-active .menu__content {
		transform: translateY(0);
		opacity: 1;
		transition: 0.5s all 0.3s;
	}

	.menu__list {
		list-style-type: none;
		padding: 0;
		margin: 0;
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
	}

	.menu__el {
		border-top: 1px solid #40435f;
	}

	.menu__item {
		padding: 24px 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		text-decoration: none;
		text-align: left;
		color: #263741;
		color: var(--color-2);
		cursor: pointer;
		font-weight: 600;
		font-size: 14px;
		transition: 0.2s all;
		font-family: "Trajan Pro 3", "Philosopher", "Times New Roman", Times, serif;
		font-family: var(--font-1);
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}

	.menu__item:hover {
		background-color: rgba(183, 183, 183, 0.12);
		padding-left: 15px;
	}

	.menu__ico-link {
		position: relative;
		top: -1px;
		font-size: 12px;
		margin-left: 3px;
	}

	.mob-menu-active {
		overflow: hidden;
	}
}

@media screen and (max-height: 1000px) {
}

@media (max-width: 999px) {
}

@media screen and (max-height: 800px) {
}

@media (max-width: 768px) {
}

@media (max-width: 699px) {
}

@media not all and (pointer: coarse) {
}

/* def */
.pr {
	padding-right: 10px;
	padding-right: var(--margin);
}

.pl {
	padding-left: 10px;
	padding-left: var(--margin);
}

.pt {
	padding-top: 10px;
	padding-top: var(--margin);
}

.pb {
	padding-bottom: 10px;
	padding-bottom: var(--margin);
}

.mr {
	margin-right: 10px;
	margin-right: var(--margin);
}

.ml {
	margin-left: 10px;
	margin-left: var(--margin);
}

.mt {
	margin-top: 10px;
	margin-top: var(--margin);
}

.mb {
	margin-bottom: 10px;
	margin-bottom: var(--margin);
}

.m {
	margin: 10px;
	margin: var(--margin);
}

.mra {
	margin-right: auto;
}

.mla {
	margin-left: auto;
}

.mta {
	margin-top: auto;
}

.ma {
	margin: auto;
}

.mba {
	margin-bottom: auto;
}

.mr0 {
	margin-right: 0;
}

.ml0 {
	margin-left: 0;
}

.mt0 {
	margin-top: 0;
}

.mb0 {
	margin-bottom: 0;
}

.m0 {
	margin: 0;
}

/* colors */
.color-light {
	color: #e8d1a6;
	color: var(--color-light);
}

.color-dark {
	color: #000;
	color: var(--color-dark);
}

.color-red {
	color: #ff2727;
	color: var(--color-red);
}

.color-yellow {
	color: yellow;
	color: var(--color-yellow);
}

.color-orange {
	color: orange;
	color: var(--color-orange);
}

.color-pink {
	color: pink;
	color: var(--color-pink);
}

.color-purple {
	color: purple;
	color: var(--color-purple);
}

.color-blue {
	color: blue;
	color: var(--color-blue);
}

.color-green {
	color: green;
	color: var(--color-green);
}

.color-grey {
	color: #7c7b78;
	color: var(--color-grey);
}

.color-white {
	color: white;
	color: var(--color-white);
}

.color-black {
	color: black;
	color: var(--color-black);
}

.color-brown {
	color: brown;
	color: var(--color-brown);
}

.color-aqua {
	color: aqua;
	color: var(--color-aqua);
}

/* color palette */
.color-0 {
	color: #19212a;
	color: var(--color-0);
}

.color-1 {
	color: #fff;
	color: var(--color-1);
}

.color-2 {
	color: #263741;
	color: var(--color-2);
}

.color-3 {
	color: #fff;
	color: var(--color-3);
}

.color-4 {
	color: #fff;
	color: var(--color-4);
}

.color-5 {
	color: #fff;
	color: var(--color-5);
}

.color-6 {
	color: #fff;
	color: var(--color-6);
}

.color-7 {
	color: #fff;
	color: var(--color-7);
}

.color-8 {
	color: #fff;
	color: var(--color-8);
}

.color-9 {
	color: #fff;
	color: var(--color-9);
}

.color-accent {
	color: #967f35;
	color: var(--color-accent);
}

/* alternative naming */
.color-main {
	color: #19212a;
	color: var(--color-0);
}

.color-primary {
	color: #fff;
	color: var(--color-1);
}

.color-secondary {
	color: #263741;
	color: var(--color-2);
}

/* other */
.clear {
	clear: both;
}

.hidden {
	display: none;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* block-mode-loading */

.block-mode-loading {
	position: relative;
	z-index: 0;
	pointer-events: none;
}
.block-mode-loading:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 6px;
}

.block-mode-loading:after {
	content: "\E81C";
	font-family: var(--font-ico);
	color: rgb(25, 33, 42);
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: customloading 1s linear infinite;
	position: absolute;
	left: calc(50% - 15px);
	top: calc(50% - 15px);
	z-index: 10;
	font-size: 30px;
}

@keyframes customloading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* breadcrumbs */
.breadcrumbs {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style-type: none;
	color: grey;
	color: var(--color-grey);
}

.breadcrumbs_m {
	margin-top: 20px;
	margin-bottom: 45px;
}

.breadcrumbs__el {
	margin: 2px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.breadcrumbs__el:after {
	content: "/";
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 13px;
}

.breadcrumbs__el:nth-last-child(1):after {
	content: none;
}

.breadcrumbs__item {
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	color: var(--color-accent);
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

/* .breadcrumbs__el:nth-child(1) .breadcrumbs__item:before {
	content: "\E83B";
	font-family: var(--font-ico);
	display: inline-block;
	margin-right: 8px;
	font-size: 20px;
	position: relative;
	top: -2px;
} */

.breadcrumbs__item:hover {
	color: var(--color-accent);
}

.breadcrumbs__item_active {
	pointer-events: none;
	color: var(--color-accent);
	opacity: 0.5;
}

/* accs */

.accs {
	margin-top: 15px;
}

.accs__heading {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 10px;
}

.accs__title {
	color: var(--color-3);
	font-family: var(--font-1);
	font-size: 24px;
	font-weight: 600;
	margin-right: auto;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.accs__breadcrumbs {
	color: var(--color-accent);
	font-size: 18px;
	font-weight: 400;
	margin: 5px 0;
}

.accs__list {
	height: 340px;
	overflow-y: auto;
	margin: 10px 0;
}

/* donane-box */

.donane-box {
	max-width: 870px;
	width: 100%;
	margin: 0 auto;
}

.dnt__amount {
	color: rgb(95, 175, 36);
	font-family: var(--font-1);
	font-size: 36px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 20px;
}

.dnt__counter {
	display: grid;
	gap: 15px;
}

.dnt__counter-title {
	height: 16px;
	font-family: var(--font-1);
	font-size: 20px;
	font-weight: 600;
}

.dnt__counter-input,
.dnt__counter-input:focus {
	border: 0;
	background-color: #e9e7e3;
	border-radius: 0;
	color: rgb(140, 119, 49);
	font-family: var(--font-2);
	font-size: 26px;
	font-weight: 400;
}

@media (min-width: 600px) {
	.dnt__panel {
		display: grid;
		grid-template-columns: 120px 1fr;
		gap: 30px;
	}
}

.dnt__calcSum {
	margin-top: 30px;
	color: var(--color-3);
	font-size: 18px;
	font-weight: 400;
}

.dnt__footer {
	display: grid;
	gap: 20px;
	margin-top: 30px;
}

@media (min-width: 600px) {
	.dnt__footer {
		grid-template-columns: 1fr 304px;
	}

	.dnt__control {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-direction: column;
	}
}

.dnt__pm-title {
	color: var(--color-3);
	font-family: var(--font-1);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 25px;
}

.dnt__paym-list {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.paym {
	padding: 0;
	margin: 0;
	display: flex;
}

.paym__input {
	display: none;
}

.paym__label {
	display: block;
	width: 148px;
	height: 77px;
	opacity: 0.5;
	transition: 0.3s all;
	outline: 1px solid transparent;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: pointer;
}

.paym__label:hover {
	opacity: 0.7;
}

.paym__img {
	width: 148px;
	height: 77px;
	display: block;
}

.paym__input:checked ~ .paym__label,
.paym__input:checked ~ .paym__label:hover {
	opacity: 1;
	outline-color: var(--color-accent);
}

/* cnav */

/* .cnav	{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
}

.cnav__item {
	
} */

/* auth */

.auth {
	max-width: 600px;
	margin: 0 auto;
	width: 100%;
}

/* custommodal */
.custommodal {
	background-color: rgb(252, 250, 246);
}

.custommodal__heading {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
	padding: 10px 40px 10px 20px;
	box-sizing: border-box;
	background-color: #3c4f5a;
}

.custommodal__title {
	color: #fff;
	font-family: var(--font-1);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.07em;
	margin: 0;
	padding: 0;
}

.custommodal__close {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 0;
	margin: 0;
	border: 0;
	z-index: 20;
	cursor: pointer;
	color: #fff;
}

.custommodal__content {
	padding: 20px;
	box-sizing: border-box;
}

.custommodal__btns {
	box-sizing: border-box;
	padding: 0 20px 20px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
