:root {
	--maincolor: #0f0f0f;
	--accent: #ECF335;
	--text: #e5e7e1;
	--dark: #1A1A1A;
	--gray: #4A4B48;
	--light-gray: #6D6F6B;
}

@font-face {
	font-family: 'TTCommons';
	src: url('fonts/TTCommons-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TTCommonsMed';
	src: url('fonts/TTCommons-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Undertale';
	src: url('fonts/Undertale_Battle_Font.woff2') format('woff2');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

body {
	font: 16px/1.45 'TTCommons', sans-serif;
	background-color: var(--maincolor);
	color: var(--text);
	overflow-x: hidden;
	min-width: 360px;
	width: 100%;
}

#container {
	display: block;
	position: relative;
	width: 100%;
	min-width: 360px;
}

/* headings */

h1,
h2,
h3,
h4 {
	font-family: 'TTCommonsMed', sans-serif;
}

h1 {
	font-size: 50px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 2px;
}

h2 {
	font-size: 50px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media all and (max-width: 1200px) {

	h1,
	h2 {
		font-size: 40px;
	}
}

@media all and (max-width: 959px) {

	h1,
	h2 {
		font-size: 30px;
	}
}

@media all and (max-width: 700px) {

	h1,
	h2 {
		font-size: 24px;
	}
}

/* forms */
input[type=text],
input[type=email],
input[type=password] {
	border: 1px solid #9f9f9f;
	background: var(--text);
	border-radius: 3px;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #0A0A0A;
	height: 40px;
	width: 300px;
	max-width: 100%;
	padding: 0 15px;
	font-family: inherit;
	font-size: 16px;
	line-height: 40px;
}

input[type=search] {
	border: 1px solid #9f9f9f;
	background: url(images/search.png) no-repeat 10px center var(--text);
	border-radius: 3px;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #0A0A0A;
	height: 40px;
	width: 300px;
	max-width: 100%;
	padding: 0 15px 0 35px;
	font: 16px/40px 'TTCommons', sans-serif;
}

textarea {
	border: 1px solid #9f9f9f;
	background: var(--text);
	border-radius: 3px;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #0A0A0A;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 100px;
	min-height: 100px;
	padding: 15px;
	font-size: 16px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	border: 1px solid #111;
}

input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
textarea:disabled {
	border: 1px solid #ccc;
	background: #ccc;
	color: #0A0A0A;
}

input[type=text].error,
input[type=email].error,
input[type=password].error {
	border: 1px solid #f6c7c8;
}

select {
	border: 1px solid #e4e8ee;
	background: var(--text);
	border-radius: 3px;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #0A0A0A;
	height: 40px;
	width: 300px;
	max-width: 100%;
	padding: 0 15px;
	font-size: 16px;
}

input[type=submit] {
	cursor: pointer;
	transition: all 0.3s linear;
	box-sizing: border-box;
	background-color: #fff;
	border: none;
	font-family: 'TTCommonsMed', sans-serif;
	font-size: 20px;
	color: #111;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 7px 25px 5px;
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
}

@media (max-width: 700px) {
	input[type=submit] {
		width: 100%;
	}
}

input[type=submit]:hover {
	/* box-shadow: 0px 0px 15px 0px #FFF; */
	text-decoration: none;
	background-color: var(--accent)
}

input[type=submit]:disabled,
input[type=submit]:disabled:hover {
	background: #ccc;
	color: #fff;
	cursor: default;
}

.checkbox {
	cursor: pointer;
	padding: 2px 0 2px 28px;
	background: url(images/checkbox.png) no-repeat 0 0;
}

.checkbox input {
	display: none;
}

.checkbox.checked {
	background: url(images/checkbox.png) no-repeat 0 -180px;
}

/* end forms */



/* topbar */
.topbar_wrap {
	width: 100%;
	position: relative;
	z-index: 100;
	height: 50px;

}

/* .topbar_ins.fixhead .topbar_wrap {
	height: 50px;
} */

.topbar_ins {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background: var(--accent);
}

.topbar_contain {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
}

/* .topbar_ins.fixhead .topbar_contain {
	height: 50px;
} */


/* .topbar_contain>div {
	width: 32%;
} */

@media all and (max-width: 959px) {
	.topbar_contain>div {
		width: auto;
		column-gap: 10px;
	}


}



.topbar_contain>div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar {
	max-width: 1220px;
	padding: 0 15px;
	margin: 0 auto;
}

.topbar_icon_wrap {
	position: relative;
	display: flex;
	align-items: center;
	column-gap: 20px;
}

@media all and (min-width: 960px) {
	.topbar_icon_wrap {
		margin-left: auto;
		margin-right: 30px;
	}
}

.topbar_icon_tab {
	display: none;
	font: 12px/48px 'TTCommons', sans-serif;
	color: #b7b7b7;
	height: 100px;
	cursor: pointer;
}

.topbar_icon_wrap.adaptive .topbar_icon_tab {
	display: block;
}


.topbar_icon_wrap.adaptive .topbar_icon_tabul {
	display: none;
	width: 180px;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid #f1f4fa;
	padding: 5px 10px;
	position: absolute;
	float: none;
	top: 100%;
	left: -10px;
}

.topbar_icon_wrap.adaptive .topbar_icon_tabul.open {
	display: block;
}

.topbar_icon {
	display: none;
	color: #111;
}


.topbar_icon.telegram a,
.topbar_icon.email a {
	color: #111;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.topbar_icon_wrap.adaptive .topbar_icon {
	float: none;
	margin: 0;
	height: 28px;
}

.auth-header-btns {
	display: flex;
}

.topbar_icon a {
	font-size: 18px;
	text-decoration: none;
}

.topbar_icon a:hover {
	text-decoration: none;
	text-shadow: 1px 1px 6px #FFF;
}

a.toplink {
	float: right;
	margin: 0 0 0 10px;
	padding: 6px 22px;
	border: none;
	border-radius: 5px;
	background: var(--maincolor);
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	/* background-color: var(--accent); */
	/* padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    display: flex; */
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
}

a.toplink:hover {
	color: var(--accent);
	/* box-shadow: -2px -2px 0px 1px rgb(13 13 13); */
	/* outline: 1px solid #000; */
}

@media all and (max-width: 700px) {
	a.toplink {
		padding: 7px 15px 4px;
		font-size: 16px;
	}

	a.toplink:last-child {
		margin: 0;
	}

}

/* a.toplink.toplink_signup{
				border: 1px solid #0c72d8;
				background: #0c72d8;
				color: #fff;	
				}

				a.toplink.toplink_userlogin span{
				background: url(images/user_login.png) no-repeat 0 center;
				padding-left: 16px;		
				}				 */

/* end topbar */

/* lang */
.tolbar_lang {
	/* float: left; */
	/* height: 30px; */
	margin: 0 30px 0 0;
}


@media all and (max-width: 959px) {
	.tolbar_lang {
		margin: 20px 10px;
		position: relative;
		z-index: 2;
		display: inline-block;
	}

	.topbar_icon {
		margin: 0;
	}
}

@media all and (max-width: 700px) {
	.tolbar_lang {
		background: #fff;
		padding: 3px 5px 1px;
		border-radius: 3px;
	}
}

.langlist_div {
	position: relative;
	/* height: 30px; */
	cursor: pointer;
}

.langlist_title {
	/* height: 28px; */
	border: none;
	/* padding: 0 5px;
	border-radius: 4px; */
	/* background: #f4f4f4;*/
	font-family: 'TTCommonsMed', sans-serif;
	font-size: 22px;
	line-height: 1;
	color: #111;
	text-transform: uppercase;
}

.langlist_title span {
	padding: 0 17px 0 0;
	background: url(images/l_arr.png) no-repeat right 6px;
}

.langlist_ul {
	position: absolute;
	float: none;
	top: 30px;
	left: -7px;
	padding: 3px 0;
	width: 120px;
	background: #f9f9f9;
	border-radius: 4px;
	border: none;
	display: none;
	box-shadow: -1px -1px 2px #d7d7d7;
}

a.langlist_li {
	position: relative;
	display: block;
	padding: 5px 5px 5px 30px;
	font-size: 15px;
	line-height: 1.3;
	color: #111;
	text-decoration: none;
}

.langlist_liimg {
	position: absolute;
	float: none;
	top: 5px;
	left: 5px;
}

/* end lang */

/* topmenu */
.tophead_wrap {
	width: 100%;
	position: relative;
	z-index: 90;
	background-color: var(--maincolor);

}

.tophead {
	max-width: 1220px;
	padding: 10px 20px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.logoblock {
	height: 120px;
	overflow: hidden;
}

.logoblock a {
	display: inline-block;
	text-decoration: none;
}

.logoblock img {
	max-height: 120px;
	vertical-align: middle;
	transition: all 0.3s;
}

@media all and (max-width: 959px) {
	.logoblock {
		height: auto;
		width: 200px;
	}

	/* .logoblock img {
		max-height: 80px;
		max-width: 200px;
	} */
}

@media all and (max-width:700px) {
	.logoblock img {
		max-height: 100px;
	}

	.topbar_contain,
	.topbar_wrap {
		height: 50px;
	}
}

.header_timetable_ins {
	color: #111;
	font-size: 15px;
	text-align: left;
	font-family: 'TTCommons', sans-serif;
}


@media all and (max-width: 959px) {

	.topbar_icon.telegram a span,
	.topbar_icon.email a span {
		display: none;
	}


	.topbar_contain>div:first-child.only-desktop {
		display: none;
	}

	.header_timetable_ins {
		color: #fff;
		padding: 10px;
		word-break: break-word;
		font-size: 18px;
	}

}

.topmenu {
	display: none;
}

@media all and (min-width: 960px) {
	.topmenu {
		display: block;
		margin-top: 25px;
	}
}

.topmenu ul {
	display: flex;
	column-gap: 10px;
}

.topmenu li:hover {
	position: relative;
}

.topmenu li a {
	display: inline-flex;
	align-items: center;
	height: 30px;
	font-family: 'TTCommonsMed', sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
	background: none;
	color: var(--text);
	padding: 0;
	text-decoration: none;
	padding-inline: 10px;
	position: relative;
	column-gap: 9px;
}

.topmenu li a::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	background: url(images/arr-small.svg) no-repeat;
	transition: all 0.3s;

}

@media all and (max-width: 1100px) {
	.topmenu li a {
		padding-inline: 7px;
	}
}

@media all and (min-width: 701px) {
	.topmenu li.mobile {
		display: none;
	}
}

.topmenu li.current-menu-item>a {
	color: var(--accent);
}

.topmenu li:hover>a {
	/* border-bottom: 2px solid #0c72d7; */
	text-decoration: none;
	/* text-shadow: 1px 1px 6px #FFF; */
}

.topmenu li.current-menu-item>a::after,
.topmenu li:hover>a::after {
	transform: rotate(-90deg);
}



.topmenu ul ul {
	position: absolute;
	float: none;
	display: none;
	top: 34px;
	left: 0px;
	background: #f4f4f4;

	border: 1px solid #eaeef4;
	border-radius: 4px;
	padding: 10px 0;
	height: auto;
	width: 235px;
	margin: 0;
}

.ugmenu {
	position: absolute;
	float: none;
	background: url(images/ugm.png) no-repeat;
	top: -6px;
	left: 20px;
	width: 18px;
	height: 6px;
}

.topmenu ul ul ul .ugmenu {
	display: none;
}

.topmenu ul ul li {
	float: none;
	display: block;
	position: relative;
	height: auto;
	width: 235px;
	margin: 0;
}

.topmenu ul ul li>a,
.topmenu ul ul li.current-menu-item>a {
	float: none !important;
	display: block;
	height: auto;
	padding: 8px 10px 8px 20px;
	font-size: 13px;
	background: none;
	color: #2e3033;
	border-bottom: none;
	text-decoration: none;
	text-transform: none;
}

.topmenu ul ul li:hover>a {
	color: #2e3033;
	text-decoration: none;
	background: #f5f8fc;
	height: auto;
	border-bottom: none;
}

.topmenu li li.has_sub_menu>a span {
	display: block;
	padding: 0 15px 0 0;
	background: url(images/hsm.png) no-repeat right center;
}

.topmenu ul ul ul {
	position: absolute;
	display: none;
	float: none;
	top: -11px;
	left: 235px;
	height: auto;
}

@media all and (max-width: 1300px) {
	.topmenu ul ul ul {
		left: auto;
		right: 235px;
	}

}

/* end top menu */


/* mobile menu */



.topmenu_ico {
	width: 60px;
	height: 30px;
	margin-left: 15px;
	margin-top: 30px;
	float: right;
	cursor: pointer;
	background: url(images/menu-ico.svg) no-repeat center center;
	display: none;
}

.topmenu_ico:hover {
	opacity: 0.8;
}

@media all and (max-width: 959px) {
	.topmenu_ico {
		display: block;
	}
}




.mobile_menu_wrap {
	display: block;
}

@media all and (min-width: 960px) {
	.mobile_menu_wrap {
		display: none;
	}
}

.mobile_menu_abs {
	display: none;
	position: fixed;
	float: none;
	top: 0;
	left: 0;
	z-index: 999998;
	width: 100%;
	height: 100%;
	background: #000;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

.mobile_menu {
	display: none;
	position: fixed;
	z-index: 999999;
	float: none;
	top: 0px;
	right: 0;
	padding: 20px 20px;
	width: 100%;
	bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--maincolor);
	word-break: break-all;
	box-sizing: border-box;
}

@media all and (min-width: 700px) {
	.mobile_menu {
		width: 70%;
	}
}

.mobile_menu_title {
	font-size: 24px;
	font-family: 'TTCommons', sans-serif;
	padding: 0 0 10px 0;
	color: var(--maincolor);
}

.mobile_menu_close {
	position: absolute;
	float: none;
	top: 15px;
	right: 10px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: url(images/menu_close.png) no-repeat center center;
}

.mobile_menu_close:hover {
	opacity: 0.8;
}

.mobile_menu_ins {
	padding: 0px 0 0 0;
	margin-bottom: 50px;
}

.mobile_menu_ins li {
	display: block;
}

.mobile_menu_ins li a {
	display: block;
	font-family: 'TTCommons', sans-serif;
	font-size: 22px;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
}

.mobile_menu_ins li.current-menu-item>a {
	position: relative;
	text-shadow: 1px 1px 6px #FFF;
}

/* end mobile menu */

.wrapper {
	position: relative;
	z-index: 80;
	min-height: 650px;
	overflow: hidden;
	padding-bottom: 76px;
}

@media all and (max-width: 700px) {
	.wrapper {
		min-height: 50px;
		background-size: auto 100%;
		padding-bottom: 30px;
	}

	.home .wrapper {
		padding-bottom: 0;
	}

}

.resultfalse {
	font-size: 16px;
}

.digit-animation {
	position: absolute;
	bottom: 0;
	opacity: 0;
	animation: 0.5s digit 4s forwards;
	z-index: 0;
}

@keyframes digit {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.digit-animation.digit-footer {
	right: 150px;
}

.digit-animation.home {
	left: 50px;
}

.resultfalse.home_resultfalse+.digit-animation.home {
	display: none;
}



@media all and (max-width: 900px) {
	.digit-animation.home {
		left: 0;
	}
}

@media all and (max-width: 700px) {
	.digit-animation.home svg {
		max-height: 50px;
	}

	.digit-animation.digit-footer {
		display: none;
	}

}

.digit {
	/* opacity: 0; */
	animation: 4s appear-disappear infinite;
}

@keyframes appear-disappear {
	0% {
		opacity: 1;
	}

	40% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* breadcrumb */
.breadcrumb_wrap {
	padding: 50px 0 40px 0;
	position: relative;
	width: 100%;
}

.breadcrumb_div {
	max-width: 1220px;
	padding: 0 20px;
	margin: 0 auto;
}

h1.breadcrumb_title {
	/* margin: 0 0 15px 0; */
	font-size: 40px;
	color: #fff;
}

.breadcrumb ul li {
	float: left;
	margin: 0 9px 0 0;
	padding: 0 0 0 12px;
	font-size: 15px;
	background: url(images/b_li.png) no-repeat 0 center;
}

.breadcrumb ul li.first {
	padding: 0;
	background: none;
}

.breadcrumb ul li a {
	color: var(--text);
	text-decoration: none;
}

.breadcrumb ul li a:hover {
	/* text-decoration: underline; */
	color: #fff;
}

@media all and (max-width: 500px) {
	h1.breadcrumb_title {
		font-size: 26px;
		letter-spacing: 1px;
	}

	.breadcrumb {
		display: none;
	}

	.breadcrumb_wrap {
		padding: 50px 0 10px 0;
	}

}

/* end breadcrumb */

.content_wrap {
	padding: 20px 20px;
	max-width: 1220px;
	margin: 0 auto;
}

@media all and (max-width: 700px) {
	.home .content_wrap {
		padding-bottom: 0;
	}
}

/* inside content */
.content {
	margin: 0 0px 50px 0px;
	clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px));
	position: relative;
	background: var(--dark);
}

@media all and (min-width: 960px) {
	.content {
		float: left;
		width: 69%;
	}

}

@media all and (min-width: 1200px) {
	.content {
		width: 74%;
	}
}

/* end inside content */

/* text page */
.page_wrap,
.textblock {
	margin: 0 0 20px 0;
	padding: 25px;
}

.text p {
	padding: 0 0 20px 0;
}

.text p strong {
	font-size: 18px;
	color: #fff;
}

.text p a {
	color: var(--text);
}

.text p a:hover {
	color: #f0f0f0;
}

.text h2 {
	font-size: 40px;
	margin: 0 0 20px 0;
}

.text h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
}

.text h4 {
	font-size: 20px;
	margin: 0 0 20px 0;
}

.text img,
.text iframe {
	max-width: 100%;
}


.notice_message_text ul,
.warning_message_text ul,
.hexch_message_text ul,
.block_instruction ul,
.text ul {
	margin: 0 0 20px 20px;
}

.notice_message_text ul ul,
.warning_message_text ul ul,
.hexch_message_text ul ul,
.block_instruction ul ul,
.text ul ul {
	margin: 0 0 0px 15px;
	padding: 10px 0 0 0;
}

.notice_message_text ul li,
.warning_message_text ul li,
.hexch_message_text ul li,
.block_instruction ul li,
.text ul li {
	display: block;
	background: url(images/ul.png) no-repeat 0 6px;
	padding: 0 0 7px 15px;
}

.notice_message_text ol,
.warning_message_text ol,
.hexch_message_text ol,
.block_instruction ol,
.text ol {
	list-style-type: decimal;
	margin: 0 0 20px 40px;
}

@media (max-width: 700px) {

	.notice_message_text ol,
	.warning_message_text ol,
	.hexch_message_text ol,
	.block_instruction ol,
	.text ol {
		margin: 0 0 20px 25px;
	}
}



.notice_message_text ol ol,
.warning_message_text ol ol,
.hexch_message_text ol ol,
.block_instruction ol ol,
.text ol ol {
	margin: 0 0 0px 20px;
	padding: 10px 0 10px 0;
}

.text table {
	border: none;
	margin: 0 0 20px;
}

.text table th {
	font-size: 13px;
	color: #7e90ae;
	background: #ffffff;
	border: none;
	padding: 10px 10px;
	border-bottom: 1px solid #eaeef4;
}

.text table th.th1 {
	border-radius: 4px 0 0 0;
}

.text table th.th2 {
	border-radius: 0 4px 0 0;
}

.text table td {
	font-size: 13px;
	background: #ffffff;
	color: #0A0A0A;
	border-bottom: 1px solid #eaeef4;
	padding: 10px 10px;
}

.text table tr:hover td {
	background: #f5f8fc;
}

.text table td.td1 {
	border-radius: 0 0 0 4px;
}

.text table td.td2 {
	border-radius: 0 0 4px 0;
}

/* end text page */




/* news */
.many_news_wrap {


	border-radius: 0;
	padding: 20px 20px 1px;
	margin: 0 0 20px 0;
	/* border: 1px solid var(--accent); */

}



.one_news {
	border-bottom: 4px double var(--light-gray);
	padding: 0px 0px 30px;
	margin: 0 0px 30px 0px;
}

.one_news:last-child {
	border-bottom: none;
}

.single_news_wrap {
	padding: 20px 20px;
	margin: 0 0px 20px 0px;
	/* background: var(--maincolor);
	
	border-radius: 4px; */
}

h2.one_news_title {
	margin: 0 0 15px 0;
	font-size: 24px;
	text-transform: none;
}

@media all and (max-width: 700px) {
	h2.one_news_title {
		font-size: 22px;
	}
}


h2.one_news_title a {
	text-decoration: none;
	color: var(--text);
}

h2.one_news_title a:hover {
	text-decoration: none;
	color: #fff;
	text-shadow: 1px 1px 6px #FFF;
}

.one_news_excerpt {
	margin: 0 0 5px 0;
}

.one_news_excerpt.has_img {
	padding: 0 0 0 300px;
	position: relative;
	min-height: 150px;
}

@media all and (max-width: 500px) {
	.one_news_excerpt.has_img {
		padding: 0;
	}
}

.one_news_image {
	position: absolute;
	float: none;
	top: 0;
	left: 0;
	width: 280px;
	height: 140px;
	border-radius: 10px;
}

.one_news_image img {
	width: 280px;
	height: 160px;
	border-radius: 5px;
}

@media all and (max-width: 500px) {
	.one_news_image {
		width: 100%;
		height: auto;
		margin: 0 0 15px 0;
		position: static;
	}

	.one_news_image img {
		width: 100%;
		height: auto;
	}
}

.one_news_more {
	color: var(--text);
	text-decoration: underline;
	font-size: 18px;
}

.one_news_more:hover {
	text-shadow: 1px 1px 6px #FFF;
	color: #fff;
}

.one_news_date {
	float: left;
	/* color: #fff; */
	font-size: 14px;
	margin: 0 0 15px 0;
}



.metabox_cats,
.metabox_tags {
	font-size: 14px;
	margin-bottom: 15px;
}

.metabox_cats a,
.metabox_tags a {
	color: #fff;
	text-decoration: none;
}

.metabox_cats a:hover,
.metabox_tags a:hover {
	color: #fff;
	text-decoration: underline;
}


@media all and (max-width: 500px) {
	.metabox_left {
		margin: 0 0 10px 0;
	}

	a.one_news_more {
		float: left;
		margin: 0 0 0px 0;
	}

}

/* end news */


/* atable */
.pntable_wrap {
	margin: 0 0 20px 0;
}

.pntable_wrap_title {
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
	font-size: 24px;
	/* color: #b7b7b7; */
	margin: 0 0 15px 0;
}

.pntable {
	margin: 0 0 20px;
}

.pntable table {
	width: 100%;
	border: none;
}

.pntable table th {
	padding: 15px 5px;
	font-size: 15px;
	color: #232323;
	background: #f4f4f4;
	border: none;
	border-bottom: 1px solid #eaeef4;
}

.pntable table th.th1 {
	border-radius: 4px 0 0 0;
}

.pntable table th.th2 {
	border-radius: 0 4px 0 0;
}

.pntable table td {
	padding: 12px 5px;
	font-size: 13px;
	background: #f4f4f4;
	color: #0A0A0A;
	border-bottom: 1px solid #eaeef4;
}

.pntable table tr:hover td {
	background: #f5f8fc;
}

.pntable table td.td1 {
	border-radius: 0 0 0 4px;
}

.pntable table td.td2 {
	border-radius: 0 0 4px 0;
}

.pntable table.has_adaptive tbody {
	display: block;
}

.pntable table.has_adaptive tr td {
	background: none;
}

.pntable .one_item {
	padding: 15px 20px;
	background: #f4f4f4;

	border-radius: 4px;
	margin: 0 0 10px 0;
	display: block;
}

.pntable .one_item:hover {
	background: #f5f8fc;
}

.pntable .one_item_line {
	padding: 3px 0;
	display: block;
}

.pntable .one_item_label {
	padding: 0 10px 0px 0;
	font-size: 14px;
}

.pntable .one_item_content {
	font-size: 13px;
}

.exch_course2 {
	background: url(images/liarr.png) no-repeat 0 center;
	padding: 1px 0 0 12px;
	margin: 0 0 0 6px;
}

a.exch_status_link {
	font-weight: 600;
	color: #0390cb;
}

a.exch_status_link.st_payed,
a.exch_status_link.st_coldpay,
a.exch_status_link.st_realpay,
a.exch_status_link.st_verify {
	color: #c9cb03;
}

a.exch_status_link.st_error {
	color: #ff0000;
}

a.exch_status_link.st_coldsuccess,
a.exch_status_link.st_success {
	color: #03cb29;
}

.exch_sum {
	font-weight: 600;
}

/* end atable */


/* promotional */
.promopage {
	/* background: var(--maincolor);
	box-shadow: 0 0 5px #e1e9f2;
	border-radius: 4px; */
	margin: 0 0 20px 0;
	/* padding: 20px 20px 5px; */
}

.promo_topmenu {
	margin: 0 0 20px 0;
}

.promo_topmenu ul {
	margin: 0;
	list-style: none;
	padding: 0;
}

.promo_topmenu li {
	display: inline;
	padding: 0;
	margin: 0 5px 0 0;
	background: none;
}



.promo_topmenu a {
	margin: 0;
	padding: 0;
	font-size: 22px;
}

.promo_topmenu a:hover {
	color: var(--accent);
}

.promo_topmenu li.current a {
	text-decoration: none;
	color: var(--text);
}

.promotext_warning {
	margin: 0 0 20px 0;
}

.one_promotxt {
	margin: 0 0 10px 0;
	font: italic 600 14px 'TTCommons', sans-serif;
}

.one_promotxt_code {
	margin: 0 0 30px 0;
}

.partner_textarea {
	height: 100px;
	min-height: 100px;
	max-height: auto;
}

.promo_menu {
	margin: 0 0 20px 0;
}

.promo_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.promo_menu ul li {
	display: inline;
	margin: 0 10px 0 0;
	padding: 0;
	background: none;
}

.promo_menu ul li a {
	position: relative;
	margin: 0;
	border-bottom: 1px dotted #7e90ae;
	color: var(--text);
	text-decoration: none;
}

.promo_menu ul li a:hover {
	position: relative;
	margin: 0;
	border-bottom: 1px dotted var(--accent);
	color: var(--accent);
	text-decoration: none;
}

.promo_menu ul li.act a {
	position: relative;
	margin: 0;
	border-bottom: none;
	text-decoration: none;
	color: #fff;
}

.pbcontainer {
	display: none;
}

.pbcontainer.act {
	display: block;
}

.prevbanner {
	margin: 0 0 5px 0;
}

.bannerboxone {
	margin: 0 0 25px 0;
}

.bannerboxlink a {
	position: relative;
	margin: 0;
	border-bottom: 1px dotted #7e90ae;
	color: #b7b7b7;
	text-decoration: none;
}

.bannerboxlink a.act {
	position: relative;
	margin: 0;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dotted #fff;
	color: #fff;
}

.bannerboxlink a:hover,
.bannerboxlink a.act:hover {
	position: relative;
	margin: 0;
	border-bottom: 1px dotted #ff0000;
	color: #ff0000;
	text-decoration: none;
}

.bannerboxtextarea {
	padding: 10px 0 0 0;
	display: none;
}

/* end promotional */


/* userwallets */

.userwallets_form {
	margin: 0 0 30px 0;
}

.userwallets_form_title {
	margin: 0 0 20px 0;
	font-size: 24px;
	line-height: 1;
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
}

.userwallets_one_tab {
	padding: 10px 0 0 0;
	display: none;
}

.userwallets_one_line {
	margin: 0 0 10px 0;
}

.userwallets_help {
	background: #f7fbcd;
	border-bottom: 2px solid #b0c000;
	padding: 10px 15px;
	color: #0A0A0A;
	font-size: 13px;
	margin: 0 0 10px 0;
}

.userwallets_table {
	margin: 0 0 20px 0;
}

.userwallets_table_title {
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
	font-size: 24px;
	/* color: #b7b7b7; */
	margin: 0 0 20px 0;
}

.userwallets_table_one {
	background: #f4f4f4;

	padding: 15px 20px;
	position: relative;
	margin: 0 0 10px 0;
	border-radius: 4px;
	color: #0A0A0A;
}

.userwallets_one_title {
	font-size: 14px;
	color: #0A0A0A;
	margin: 0 0 5px 0;
}

.no_items {
	color: #b7b7b7;
}


.close_userwallets {
	position: absolute;
	float: none;
	top: 17px;
	right: 15px;
	width: 35px;
	height: 35px;
	background: url(images/big_close.png) no-repeat center center;
	cursor: pointer;
}

.close_userwallets:hover {
	opacity: 0.8;
}

.close_userwallets.act {
	background: url(images/ajax-loader.gif) no-repeat center center;
}

.verify_status {
	padding: 5px 0 0 0;
	font-size: 14px;
}

.verify_status.wait {
	color: #858c97;
}

.verify_status.success {
	color: #09b869;
}

.verify_status.not {
	color: #0c73d8;
}

.verify_status a {
	color: #0c73d8;
	text-decoration: none;
	border-bottom: 1px dotted #0c73d8;
}

.verify_status a:hover {
	border-bottom: none;
}

.verify_tab_descr {
	padding: 10px 0 0 0;
	font: italic 13px 'TTCommons', sans-serif;
}

.verify_tab_descr p {
	padding: 0 0 10px 0;
}

.verify_acc_syst {
	padding: 0 0 10px 0;
}

.verify_acc_file {
	padding: 0 0 10px 0;
}

.verify_accline_wrap {
	padding: 0 0 10px 0;
}

.verify_acc_line {
	margin: 0 0 5px 0;
}

.verify_tab_action_link {
	float: left;
	border: 1px solid #0c72d8;
	background: #0c72d8;
	border-radius: 4px;
	height: 40px;
	padding: 0 25px;
	transition: all 0.3s linear;
	color: #fff;
	font: 400 18px/40px 'TTCommons', sans-serif;
	cursor: pointer;
}

.verify_tab_action_link:hover {
	background: #0d5eae;
	border: 1px solid #0d5eae;
	text-decoration: none;
}

.verify_tab_action_link.act {
	background: #ccc;
	cursor: default;
}

/* end userwallets */

/* userverify */
.userverify_text {
	margin: 0 0 20px 0;
	padding: 20px 20px 1px;
	border-radius: 4px;
	background: #f4f4f4;

}

.ustbl_line {
	padding: 0px 0 20px;
}

.ustbl_line_left {
	float: left;
	width: 300px;
	padding: 10px 0 0 0;
}

@media all and (max-width: 960px) {

	.ustbl_line_left {
		float: none;
		width: auto;
		padding: 0 0 10px 0;
	}
}

.ustbl_title {
	padding: 0 0 5px 0;
	font-size: 13px;
}

.ustbl_warn {
	color: #858c97;
	font-size: 13px;
	padding: 0 0 10px 0;
}

.ustbl_file {
	padding: 0 0 10px 0;
}

.ustbl_res_error {
	color: #ff0000;
	font-size: 14px;
	padding: 0 0 10px;
}

.usvefilelock {
	padding: 0 0 10px 20px;
	position: relative;
	font: 13px/15px 'TTCommons', sans-serif;
}

.usvefilelock_delete {
	position: absolute;
	float: none;
	top: -1px;
	left: 0px;
	width: 15px;
	height: 15px;
	background: url(images/uv_close.png) no-repeat center center;
	cursor: pointer;
}

.usvefilelock_delete.active {
	background: url(images/ajax-loader.gif) no-repeat center center;
}

.ustbl_bar {
	width: 160px;
	height: 3px;
	position: relative;
	border-radius: 10px;
	background: #ccc;
	display: none;
}

.ustbl_bar_abs {
	position: absolute;
	float: none;
	top: 0;
	left: 0;
	width: 0px;
	height: 100%;
	border-radius: 10px;
	background: #66c497;
}

.ustbl_line_right {
	float: right;
	width: 200px;
	border-radius: 3px;
	border: 1px solid #ebebeb;
	padding: 15px 15px 5px;
	position: relative;
}

.ustbl_line_right_abs {
	position: absolute;
	float: none;
	top: 20px;
	left: -15px;
	width: 31px;
	height: 15px;
	background: url(images/uv_arr.png) no-repeat;
}

@media all and (max-width: 960px) {

	.ustbl_line_right {
		float: none;
		width: auto;
	}

	.ustbl_line_right_abs {
		display: none;
	}
}

.ustbl_eximg {
	padding: 0 0 10px 0;
	overflow: hidden;
	text-align: center;
}

.ustbl_eximg img {
	max-width: 100%;
}

.ustbl_descr {
	padding: 0 0 10px 0;
	color: #858c97;
	text-align: center;
	font: italic 13px 'TTCommons', sans-serif;
}

/* end userverify */

/* statstable */
.statstablediv {
	margin: 0 0 20px 0;
	padding: 10px 10px;
	border-radius: 4px;
	word-break: break-all;
	word-wrap: break-word;
	background: var(--maincolor);
}

.statstablediv table {
	width: 100%;
}

.statstablediv table th {
	padding: 5px 10px;
	text-align: left;
	background: none;
	font-size: 16px;
}

.statstablediv table td {
	padding: 5px 10px;
	text-align: right;
	background: none;
	font-size: 15px;
}

.statstablediv a {
	color: #fff;
}

.statstablediv a:hover {
	color: #fff;
	text-decoration: underline;
}



/* end statstable */

/* partner stats */
.statuserdiv {
	width: 350px;
	margin: 0 0 30px 0;


	border-radius: 4px;
	padding: 15px 10px;
	background: var(--maincolor);
}

.statuserdiv_title {
	font-size: 24px;
	line-height: 1;
	/* color: #fff; */
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
	padding: 5px 0px 15px 10px;
}


.statuserdiv table {
	width: 100%;
}

.statuserdiv table th {
	padding: 5px 10px;
	text-align: left;
	background: none;
	font-size: 16px;
}

.statuserdiv table td {
	padding: 5px 10px;
	text-align: right;
	background: none;
	font-size: 16px;
}

@media (max-width: 700px) {

	.statstablediv table td,
	.statstablediv table th {
		font-size: 13px;
	}

	.statuserdiv {
		width: 100%;
	}
}

.promouserdiv h3 {
	font: 22px 'TTCommonsMed', sans-serif;
	margin: 0 0 10px 0;
}

.promouserdiv h4 {
	font-size: 16px;
	margin: 0 0 10px 0;
}

.promouserdiv p {
	padding: 0 0 20px 0;
}

/* end partner stats */

/* reviews */
.many_reviews {
	margin: 0 0 40px 0;
	/* padding: 10px; */
}

.no_reviews {
	background: var(--maincolor);

	border-radius: 4px;
	padding: 20px 20px 20px;
	margin: 0 0 20px 0;
}

.one_reviews {
	margin: 0 0 30px 0;
	border-bottom: 4px double #ABABAD;
	padding: 0px 0px 20px;
}


.one_reviews_name {
	float: left;
	font-size: 15px;
	margin: 0 5px 10px 0;
	color: #b7b7b7;
}

.one_reviews_date {
	float: left;
	font-size: 15px;
	color: #b7b7b7;
	margin: 0 5px 10px 0;
}

.one_reviews_text {
	font-size: 16px;
	word-wrap: break-word;
	word-break: break-all;
}

.one_reviews_text p {
	padding: 0 0 10px 0;
}

.one_reviews_answer {
	text-align: right;
	font-style: italic;
	word-wrap: break-word;
	word-break: break-all;
}

.one_reviews_answer_title {
	font-weight: 600;
}

.one_reviews_answer p {
	padding: 0 0 10px 0;
}

.page-id-18 .widget.widget_reviews_div {
	display: none;
}



/* end reviews */


/* partner payouts */
.paytext {
	border-radius: 4px;
	margin: 0 0 20px 0;
	font-size: 16px;
}

.paydiv {
	border-radius: 4px;
	margin: 0 0 20px 0;
	font-size: 13px;
}

.pay_left_col {
	padding: 0 0 5px 0;
	font-size: 15px;
}

.pay_select {
	margin: 0 0 5px 0;
}

.pay_input {
	position: relative;
	margin: 0 0 10px 0;
}

input.pay_input_purse {
	padding-left: 30px;
}

.pay_purse_link {
	position: absolute;
	float: none;
	top: 50%;
	left: 5px;
	margin: -8px 0 0 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
	background: url(images/purse.png) no-repeat center center;
}

.pay_purse_link_ins {
	position: relative;
	width: 16px;
	height: 16px;
}

.pay_purse_ul {
	position: absolute;
	float: none;
	top: 0;
	left: 0px;
	width: 250px;
	font-size: 12px;
	display: none;
	color: #7c90a8;
	background: var(--maincolor);
}

.pay_purse_line {
	display: none;
	padding: 8px 10px;
	word-break: break-all;
	word-wrap: break-word;
}

a.delpay_link {
	font-weight: 600;
	color: #ff0000;
}

a.delpay_link.act {
	cursor: default;
	color: #ccc;
}

.paystatus {
	font-weight: 600;
}

.paystatus.pst1 {
	color: #0390cb;
}

.paystatus.pst2 {
	color: #03cb29;
}

.paystatus.pst3 {
	color: #ff0000;
}

.paystatus.pst4 {
	color: #ff0000;
}

/* end partner payouts */





/* homepage */
.homepage_wrap {
	padding: 40px 0 0 0;
}

@media all and (min-width: 1100px) {
	.homepage_wrap {
		padding: 50px 0 0 0;
	}
}

.home_wtext {
	position: relative;
	width: 100%;
	margin: 0 0 20px 0;
}

@media all and (min-width: 500px) {
	.home_wtext {
		margin: 0 0 40px 0;
	}
}

.home_wtext .text h1 {
	font-size: 70px;
}

@media all and (max-width: 767px) {
	.home_wtext .text h1 {
		font-size: 28px;
	}

	.homepage_wrap {
		padding: 0;
	}
}

.home_wtext .text h1 span {
	color: var(--accent);
}

/* .home_wtext_ins {
	max-width: 1220px;
	padding: 0 20px;
	margin: 0 auto;
} */

.home-title {
	text-align: center;
}

.home_wtext_div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media all and (max-width: 900px) {
	.home_wtext_div {
		flex-direction: column;
	}
}

.home_wtext-img {
	position: relative;
	width: 270px;
	text-align: center;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-5deg);
	/* animation: changes 5s steps(5, end) infinite; */
	/* transform-origin: center; */
}

.img-b {
	position: absolute;
	left: 0;
	transform-origin: center;
	animation: changes1 5s linear infinite;
	transform: rotateY(0deg);
	z-index: 2;
}

.img-c {
	position: absolute;
	left: 195px;
	transform-origin: center;
	animation: changes2 5s linear infinite;
	transform: rotateY(0deg);
	z-index: 2;
}

@media all and (max-width: 700px) {
	.home_wtext-img {
		margin-top: 20px;
	}

	.img-b,
	.img-c {
		height: 55px;
		width: 55px;
	}

	.img-arr {
		width: 30px;
	}
}

.img-arr {
	position: relative;
	z-index: 1;
	/* animation: changes3 5s linear infinite; */
}

@keyframes changes1 {
	0% {
		left: 0;
		transform: rotateY(0deg);
	}

	45% {
		left: 195px;
	}

	90% {
		left: 0;

	}

	95% {
		left: 0;
		transform: rotateY(0deg);
	}

	100% {
		left: 0;
		transform: rotateY(360deg);
	}
}

@keyframes changes2 {
	0% {
		left: 195px;
	}

	45% {
		left: 0;
	}

	90% {
		left: 195px;
		transform: rotateY(0deg);
	}

	95% {
		left: 195px;
		transform: rotateY(360deg);
	}

	100% {
		left: 195px;
		transform: rotateY(0deg);
	}
}


.home_text_ins {
	max-width: 1220px;
	padding: 0 20px;
	margin: 0 auto;
}

.home_text_title {
	margin: 0 0 20px 0;
	color: #fff;
}


.home_lchange_wrap {
	padding: 40px 0 40px 0;
	position: relative;
	width: 100%;
	z-index: 10;
}

.home_lchange_wrap_ins {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 20px;
}

.home_lchange_title {
	margin: 0 0 25px 0;
	color: #2e3033;
	font-size: 30px;
	line-height: 1;
}

.color_d .home_lchange_title {
	color: #fff;
}

.home_lchange_one {
	margin: 0 0px 20px 0;
}

@media all and (min-width: 700px) {
	.home_lchange_one {
		float: left;
		width: 48%;
		margin: 0 2% 0 0;
	}

	.home_lchange_one.last_item {
		display: none;
	}
}

@media all and (min-width: 1050px) {
	.home_lchange_one {
		float: left;
		margin: 0 2% 0 0;
		width: 32%;
	}


	.home_lchange_one.last_item {
		margin: 0;
		display: block;
	}
}

.home_lchange_one_ins {
	background: #f4f4f4;

	color: #b7b7b7;
	border-radius: 4px;
	padding: 20px 0px 20px 20px;
}

.color_d .home_lchange_one_ins {
	background: var(--maincolor);
	box-shadow: none;
}


.home_lchange_date {
	font-size: 13px;
	color: #b7b7b7;
	margin: 0 0 15px 0;
}

.color_d .home_lchange_date {
	color: #7e94ac;
}

.home_lchange_why {
	float: left;
	width: 130px;
	margin: 0 0 5px 0;
}

.rtl_body .home_lchange_why {
	float: right;
}

.home_lchange_ico {
	float: left;
	width: 40px;
	height: 40px;
}


.home_lchange_txt {
	float: left;
	width: 80px;
	font-size: 13px;
	padding: 3px 0 0 5px;
	color: #0A0A0A;
}

.color_d .home_lchange_txt {
	color: #fff;
}

.home_lchange_arr {
	float: left;
	width: 30px;
	height: 40px;
	margin: 0 0 5px 0;
	background: url(images/harr.png) no-repeat 0 center;
}

.home_reserv_wrap {
	padding: 40px 0 25px 0;
	position: relative;
	width: 100%;
}

.home_reserv_block_ins {
	max-width: 1220px;
	padding: 0 20px;
	margin: 0 auto;
}

.home_reserv_title {
	margin: 0 0 25px 0;
	color: #2e3033;
	font-size: 30px;
	line-height: 1;
}

.color_d .home_reserv_title {
	color: #fff;
}

.home_reserv_many {
	padding: 0 0 20px 0;
}

.one_home_reserv {
	width: 260px;
	margin: 0 auto 10px;
}

.one_home_reserv.hide_item {
	display: none;
}

@media all and (min-width: 500px) {
	.one_home_reserv {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}


}

@media all and (min-width: 900px) {
	.one_home_reserv {
		float: left;
		margin: 0 1% 10px 0;
		width: 24%;
	}

}

.one_home_reserv_ins {
	border-radius: 4px;
	padding: 15px 0px 15px 15px;
	background: var(--maincolor);
	border: 1px solid var(--maincolor);
	box-shadow: none;
}


.one_home_reserv_ico {
	float: left;
	width: 40px;
	height: 40px;
}

.one_home_reserv_block {
	float: left;
	width: 155px;
	font-size: 14px;
	padding: 1px 0 0 10px;
	color: #fff;
}

.one_home_reserv_title {
	font-size: 14px;
	margin: 0 0 1px 0;
}

.home_news_wrap {
	padding: 25px 0 25px 0;
	position: relative;
	z-index: 9;
	background: var(--maincolor);
	width: 100%;
}

.home_news {
	padding: 100px 0;
}


@media all and (max-width: 1100px) {
	.home_news {
		padding: 80px 0 50px;
	}
}

.home_news .title {
	margin: 0 0 30px 0;
	/* text-align: center; */
	color: var(--text);
	letter-spacing: 2px;
}




.home_news_div_wrap {
	margin: 0;
}

.home_news_div {
	display: flex;
	justify-content: space-between;
}

@media all and (max-width: 959px) {
	.home_news_div {
		flex-direction: column;
		row-gap: 20px;
	}

}

.home_news_one {
	margin: 0 0 20px 0;
	box-sizing: border-box;
	/* border: 2px solid #fff; */
	padding: 17px;
	/* box-shadow: 0px 0px 12px 2px #FFF; */
	/* border-radius: 3px; */
	/* background-color: var(--maincolor); */
	position: relative;
	background-color: var(--dark);
	clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px));
}

.home_news_one:before {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px), 0 50%, 1px 50%, 1px calc(100% - 17px), 9px calc(100% - 17px), 9px calc(100% - 9px), 17px calc(100% - 9px), 17px calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 17px, calc(100% - 9px) 17px, calc(100% - 9px) 9px, calc(100% - 17px) 9px, calc(100% - 17px) 1px, 1px 1px, 1px 51%, 0 51%);

	display: block;
	position: absolute;
	z-index: -1;
	background-color: var(--accent);
}

@media all and (max-width: 700px) {

	.home_news_one:nth-child(2),
	.home_news_one:nth-child(3) {
		display: none;
	}
}



.home_news_one_image {
	margin: 0 0 16px 0;
}

.home_news_one_image a {
	display: block;
}

@media all and (min-width: 960px) {
	.home_news_one_image a {
		max-height: 195px;
		overflow: hidden;
	}
}

.home_news_one_image img {
	width: 100%;
	filter: grayscale(1);
	display: block;
}

.home_news_one_image a:hover img {
	filter: grayscale(0);
}

.home_news_one_date {
	color: var(--text);
	font-size: 14px;
	margin: 0 0 7px 0;
}

.home_news_one_title {
	font-family: 'TTCommonsMed', sans-serif;
	font-size: 22px;
	letter-spacing: 0.5px;
	line-height: 1.1;
	margin: 0 0 16px 0;
}

.home_news_one_title a {
	color: var(--text);
	text-decoration: none;
}

.home_news_one_title a:hover {
	color: var(--accent)
}

.home_news_one_content {
	font-size: 16px;
}

.home_news_one_content a {
	color: var(--text);
	text-decoration: none;
}

.home_news_one_content a:hover {
	color: rgb(255 255 255 / 80%);
}

@media all and (min-width: 960px) {

	.home_news_one {
		width: 31%;
	}

	.home_news_more_wrap {
		display: none;
	}
}

@media all and (max-width: 959px) {

	.home_news_more_wrap {
		text-align: center;
	}

	.home_news_more {
		display: inline-block;
		margin: 0 0 0 10px;
		padding: 6px 22px;
		font-size: 18px;
		color: #111;
		text-decoration: none;
		background-color: var(--accent);
		clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);

	}

	.home_news_more:hover {
		background-color: #fff;
		color: #111;
	}
}

/* 
.home_news_more_wrap,
.home_reviews_more_wrap,
.home_reserv_more_wrap {
	text-align: center;
	padding: 10px 0 0 0;
}

a.home_news_more,
a.home_reviews_more,
a.home_reserv_more {
	padding: 8px 20px;
	border-radius: 4px;
	background: var(--maincolor);
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	position: relative;
}

a.home_news_more:hover,
a.home_reviews_more:hover,
a.home_reserv_more:hover {
	background: var(--maincolor);
	color: #fff;
} */


.home_partner_wrap {
	padding: 0 0 100px 0;
	position: relative;
	width: 100%;
	z-index: 10;

}

@media all and (max-width: 1100px) {
	.home_partner_wrap {
		padding: 0 0 50px 0;
	}
}

.home_partner_block {
	padding: 40px 30px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 70px;
	align-items: center;
	justify-content: center;
	position: relative;

}





@media all and (min-width: 701px) {

	.home_partner_block {
		background-color: var(--dark);
		clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px));
	}

	.home_partner_block:before {
		content: '';
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px), 0 50%, 1px 50%, 1px calc(100% - 17px), 9px calc(100% - 17px), 9px calc(100% - 9px), 17px calc(100% - 9px), 17px calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 17px, calc(100% - 9px) 17px, calc(100% - 9px) 9px, calc(100% - 17px) 9px, calc(100% - 17px) 1px, 1px 1px, 1px 51%, 0 51%);
		display: block;
		position: absolute;
		z-index: -1;
		background-color: var(--accent);
	}
}

.home_partner_title {
	margin: 0 0 30px 0;
	/* text-align: center; */
	color: var(--text);
	letter-spacing: 2px;
}

@media all and (max-width: 1100px) {

	.home_news .title {
		margin: 0 0 30px 0;
	}
}

@media all and (max-width: 700px) {
	.home_partner_title {
		font-family: 'Undertale', sans-serif;
		text-align: center;
		text-transform: none;
		margin: 0 0 10px 0;
		font-size: 18px;
		letter-spacing: 1px;
	}

}

.home_partner_one {
	width: 25%;
	padding: 0 15px;
	box-sizing: border-box;

}

.home_partner_one a {
	display: block;
	text-align: center;
}

.home_partner_one img {
	max-width: 100%;
	max-height: 60px;
}

@media all and (max-width: 700px) {
	.home_partner_one img {
		max-height: 40px;
	}

	.home_partner_block {
		padding: 20px 0;
		row-gap: 30px;
	}

	.home_partner_one {
		width: 50%;
		    padding: 0 25px;
	}
}

.home_partner_one a:hover {
	opacity: 0.8;
}

/* end homepage */

.xchange_table_wrap {
	position: relative;
	background-color: var(--dark);
	/* background: url(images/digit.svg) no-repeat 60px bottom var(--dark); */
	clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px));
}

@media all and (max-width: 700px) {
	.xchange_table_wrap {
		background: var(--dark);
		margin-bottom: 10px;
	}
}

.wrap-outline {
	clip-path: polygon(0% 0, calc(100% - 16px) 0px, calc(100% - 16px) 8px, calc(100% - 16px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 16px, 100% 16px, 100% 100%, 16px 100%, 16px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 16px), 0px calc(100% - 16px), 0 50%, 1px 50%, 1px calc(100% - 17px), 9px calc(100% - 17px), 9px calc(100% - 9px), 17px calc(100% - 9px), 17px calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 17px, calc(100% - 9px) 17px, calc(100% - 9px) 9px, calc(100% - 17px) 9px, calc(100% - 17px) 1px, 1px 1px, 1px 51%, 0 51%);
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: -1;
	background-color: var(--accent);
}



/* type table 3 */
.xchange_type_list {
	padding: 0 0 75px 0;
}

@media all and (max-width: 900px) {
	.xchange_type_list {
		padding: 0 0 70px 0;
	}
}




.xtl_html_wrap {
	position: relative;
}

.xtl_html_abs {
	display: none;
	position: absolute;
	z-index: 5;
	float: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #272c3e url(images/d-ajax-big-loader.gif) no-repeat center center;
	opacity: 0.6;
}


@media all and (min-width: 960px) {
	.xtl_table_body {
		padding: 20px 30px 30px;
	}
}

@media all and (max-width: 959px) {
	.xtl_table_body {
		padding: 20px;
	}
}

.xtl_left_col,
.xtl_right_col {
	border-radius: 4px;
	background: transparent;
	padding: 15px;
	min-height: 1px;
	margin: 0 0 20px 0;
}

.xtl_center_col {
	margin: 0 0 20px 0;
}

a.xtl_change {
	display: block;
	width: 46px;
	height: 46px;
	margin: 0 auto;
	background: url(images/xtl_change.png) no-repeat center center;
}

a.xtl_change:hover {
	opacity: 0.8;
}

.xtl_table_wrap {
	border-radius: 4px;
	/* background: rgb(10 10 10 / 77%);
	box-shadow: 0 0 23px 10px #0a0a0a; */
	padding: 30px 30px 0;
	position: relative;
}






@media all and (max-width: 700px) {
	.xtl_table_wrap {
		padding: 0;
	}

	.xtl_left_col,
	.xtl_right_col {
		margin: 0;
		padding: 0;
	}
}

@media all and (min-width: 900px) {

	.xtl_left_col {
		float: left;
		width: 44%;
		position: relative;
		background: none;
		box-shadow: none;
		padding: 0;
		margin: 0;
	}

	.xtl_center_col {
		float: left;
		width: 12%;
		margin: 0;
		padding: 63px 0 0 0;
	}

	.xtl_right_col {
		float: right;
		width: 44%;
		position: relative;
		background: none;
		box-shadow: none;
		padding: 0;
		margin: 0;
	}


}

.xtl_table_title {
	font-size: 28px;
	font-family: 'TTCommons', sans-serif;
	padding: 0 0 20px 0;
	color: var(--text);
}

.xtl_ico_wrap {
	display: none;
}

.xtl_select_wrap {
	margin: 0 0 20px 0;
}

.xtl_select_wrap select {
	width: 100%;
	height: 50px;
}

.xtl_input_wrap {
	margin: 0 0 20px 0;
}

.xtl_input_wrap input {
	font-size: 20px;
	font-family: 'TTCommonsMed', sans-serif;
	padding: 6px 20px 0 20px;
	height: 50px;
	width: 100%;
}

.xtl_commis_wrap {
	position: relative;
	margin: 0 0 20px 0;
}

.xtl_commis_text {
	position: absolute;
	float: none;
	top: 0;
	right: 10px;
	width: 110px;
	text-align: right;
	height: 50px;
	font: 13px/50px 'TTCommons', sans-serif;
}

.xtl_commis_wrap input {
	font: 20px/50px 'TTCommons', sans-serif;
	padding: 0 20px 0 20px;
	height: 50px;
	width: 100%;
}

.xtl_line {
	padding: 0 0 10px 0;
	font-size: 14px;
	font-family: 'TTCommons', sans-serif;
}

.xtl_line span {
	font-weight: 600;
}

.xtl_submit_ins {
	position: relative;
	margin: auto;
	width: 300px;
	height: 56px;
	background-color: var(--dark);
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
	/* transition: all 0.3s; */
}

.xtl_submit_ins:hover {
	box-shadow: 0px 0px 36px 0px var(--accent);
	background-color: var(--accent);
}

.xtl_submit_ins:before {
	content: '';
	width: 100%;
	height: 98%;
	position: absolute;
	left: 0;
	top: 1px;
	z-index: -1;
	background: linear-gradient(0deg, #676767, #fff);
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px, 10.5px 0%, 11.5px calc(0% + 1px), 11.5px 4.5px, 8px 4.5px, 8px 8px, 4.5px 8px, 4.5px 15px, 1px 15px, calc(0% + 1px) calc(100% - 15px), 4.5px calc(100% - 15px), 4.5px calc(100% - 8px), 8px calc(100% - 8px), 8px calc(100% - 4.5px), 11.5px calc(100% - 4.5px), 11.5px calc(100% - 1px), calc(100% - 11.5px) calc(100% - 1px), calc(100% - 11.5px) calc(100% - 4.5px), calc(100% - 8px) calc(100% - 4.5px), calc(100% - 8px) calc(100% - 8px), calc(100% - 4.5px) calc(100% - 8px), calc(100% - 4.5px) calc(100% - 15px), calc(100% - 1px) calc(100% - 15px), calc(100% - 1px) 15px, calc(100% - 4.5px) 15px, calc(100% - 4.5px) 8px, calc(100% - 8px) 8px, calc(100% - 8px) 4.5px, calc(100% - 11.5px) 4.5px, calc(100% - 11.5px) calc(0% + 1px), 11.5px calc(0% + 1px));
	/* transition: all 0.3s; */
}

a.xtl_submit {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border: none;
	height: 58px;
	width: 300px;
	max-width: 100%;
	margin: 0 auto;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: var(--accent);
	font-family: 'Undertale', sans-serif;
	font-size: 28px;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	box-shadow: 0px 0px 20px 0px #FFF;
	position: relative;
	/* transition: all 0.3s; */
}

.xtl_submit_ins:hover a.xtl_submit {
	color: #111;
}

.xtl_submit_ins a:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(178deg, #82828200, #2f2f2f);
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
	/* transition: all 0.3s; */
}

.xtl_submit_ins:hover a:after {
	background: linear-gradient(180deg, #fdffcc00, #fdffcc);
}

.xtl_submit_wrap {
	position: relative;
	margin: auto;
	width: 300px;
}

.xtl_submit_wrap:after {
	content: '';
	position: absolute;
	width: 280px;
	height: 40px;
	z-index: -1;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.xtl_submit_wrap:hover:after {
	box-shadow: 0 0 36px var(--accent);
}


a.xtl_submit.active,
a.xtp_submit.active {
	background: #ccc;
	cursor: default;
}

/* end type table 3 */

/* all */
.notice_message,
.notverify_message {
	margin: 0 auto 20px;
	max-width: 1130px;
}


.notice_message_title {
	color: #08b868;
	font-size: 20px;
	margin: 0 0 15px 0;
}

.warning_message {
	padding: 20px 20px 5px;
	margin: 0 auto 20px;
	max-width: 1130px;
	background: #f4f4f4;

	border-radius: 4px;
}

.color_d .warning_message {
	background: var(--maincolor);
	box-shadow: none;
}

.warning_message_title {
	color: #08b868;
	font: 400 18px 'TTCommons', sans-serif;
	margin: 0 0 15px 0;
}

.warning_message_text p {
	padding: 0 0 15px 0;
}

.ajax_post_bids_res {
	margin: 0 0px;
}

.span_skidka {
	color: #08b868;
}

/* .span_give_max,
.span_get_max {
	color: #d7d7d7;
} */

.span_give_max span,
.span_get_max span {
	display: block;
	color: #d7d7d7;
}

.span_give_max span:hover,
.span_get_max span:hover {
	color: #fff;
}

.js_amount {
	cursor: pointer;
}

.js_wrap_error {
	position: relative;
}

.js_error {
	display: none;
	position: absolute;
	z-index: 10;
	top: 102%;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	height: auto;
	color: #fff;
	background: #ef8789;
	border-radius: 3px;
	padding: 5px;
	font: 400 10px 'TTCommons', sans-serif;
}

.js_wrap_error.error .js_error {
	display: block;
}

.js_wrap_error.error input {
	border: 1px solid #f6c7c8;
}

.info_window {
	display: none;
	z-index: 1;
	position: absolute;
	float: none;
	top: 104%;
	left: 0px;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #fff;
	font: 12px/14px 'TTCommons', sans-serif;
	padding: 15px 20px;
	border-radius: 4px;
	color: #888888;
	background: #f1f4fa;
}


.js_window_wrap.showed .info_window {
	display: block;
}

.info_window_abs {
	position: absolute;
	top: -4px;
	float: none;
	left: 36px;
	background: url(images/ug.png) no-repeat;
	width: 14px;
	height: 5px;
}


.js_purse_link {
	z-index: 20;
	position: absolute;
	float: none;
	top: 50%;
	left: 15px;
	margin: -8px 0 0 0;
	width: 16px;
	height: 16px;
	cursor: pointer;
	background: url(images/purse.png) no-repeat center center;
}

.js_purse_link_ins {
	position: relative;
	width: 16px;
	height: 16px;
}

.js_purse_ul {
	position: absolute;
	float: none;
	top: 0;
	left: 0px;
	width: 250px;
	background: #f4f4f4;
	font-size: 12px;
	color: #0A0A0A;
	box-shadow: 0 0 5px #9fa3a1;
	display: none;
}

.rtl_body .js_purse_ul {
	left: auto;
	right: 0;
}

.js_purse_line {
	padding: 5px 10px;
	word-break: break-all;
	word-wrap: break-word;
	border-bottom: 1px solid #dedede;
}

input.js_purse_input {
	padding-left: 40px;
}


/* end all */

/* hexch */
.hexch_ajax_wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.htable_ajax_wrap {
	position: relative;
}

.hexch_ajax_wrap_abs,
.htable_ajax_wrap_abs {
	display: none;
	position: absolute;
	z-index: 5;
	float: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f4f8fc url(images/ajax-big-loader.gif) no-repeat center center;
	opacity: 0.6;
}

.color_d .hexch_ajax_wrap_abs,
.color_d .htable_ajax_wrap_abs {
	background: var(--maincolor) url(images/d-ajax-big-loader.gif) no-repeat center center;
}

.hexch_widget {
	max-width: 1220px;
	margin: 0 auto;
}

.hexch_div {
	padding: 0 0px 20px;
}

.hexch_div_ins {
	background: #f4f4f4;

	border-radius: 4px;
	padding: 20px 20px 10px;
}

.color_d .hexch_div_ins {
	background: var(--maincolor);
	box-shadow: none;
}

.hexch_bigtitle {
	color: #0A0A0A;
	font: 400 22px 'TTCommons', sans-serif;
	margin: 0 0 20px 0px;
}

.color_d .hexch_bigtitle {
	color: #fff;
}

.hexch_information {
	padding: 0 0 20px 0;
}

.hexch_information_line,
.user_discount_div {
	padding: 0 0 5px 0;
}

.user_discount_div {
	color: #08b868;
}

.hexh_line_label,
.user_discount_label {
	font-weight: 600;
}

@media all and (min-width: 700px) {
	.hexch_cols:after {
		content: '';
		display: block;
		clear: both;
	}

	.hexch_left {
		float: left;
		width: 48%;
	}

	.rtl_body .hexch_left {
		float: right;
	}

	.hexch_right {
		float: right;
		width: 48%;
	}

	.rtl_body .hexch_right {
		float: left;
	}

	.hexch_pers {
		float: left;
		width: 48%;
	}

	.rtl_body .hexch_pers {
		float: right;
	}
}

.htable_ajax_wrap .hexch_left,
.htable_ajax_wrap .rtl_body .hexch_left,
.htable_ajax_wrap .hexch_right,
.htable_ajax_wrap .rtl_body .hexch_right,
.htable_ajax_wrap .hexch_pers,
.htable_ajax_wrap .rtl_body .hexch_pers {
	float: none;
	width: auto;
}

.hexch_title,
.hexch_pers_title {
	position: relative;
	color: #0A0A0A;
	font: 400 18px 'TTCommons', sans-serif;
	margin: 0 0 20px 0px;
}

.hexch_title {
	padding: 0 0 0 35px;
}


.hexch_title_logo {
	position: absolute;
	float: none;
	top: -3px;
	left: 0;
	width: 30px;
	height: 30px;
}


.color_d .hexch_title,
.color_d .hexch_pers_title {
	color: #fff;
}

.hexch_info_line {
	font: 13px/14px 'TTCommons', sans-serif;
	padding: 0 0 10px 0px;
}

.hexch_info_line p {
	padding: 0px 0 2px;
}

@media all and (min-width: 700px) {
	.hexch_ajax_wrap .hexch_info_line {
		min-height: 50px;
		display: table-cell;
		vertical-align: middle;
	}
}

.hexch_curs_line .check_purse_line {
	padding: 20px 0 0px 0px;
}

.hexch_sumandcom {
	color: #b7b7b7;
	font-size: 14px;
	line-height: 1.2;
	padding: 0 0 20px 0px;
}

.hexch_curs_line,
.hexch_pers_line {
	position: relative;
	margin: 0 0 20px 0;
}

.hexch_curs_label,
.hexch_pers_label {
	font-size: 13px;
	color: #b7b7b7;
	padding: 0 0 5px 0;
}

.hexch_pers_input {
	position: relative;
}

.hexch_curs_input input,
.hexch_pers_input input {
	font-size: 16px;
	line-height: 50px;
	height: 50px;
	width: 100%;
}

.hexch_curs_input select,
.hexch_pers_input select {
	height: 50px;
	width: 100%;
}

.hexch_submit_div {
	padding: 0px 0px 10px 0px;
}

input.hexch_submit {
	display: block;
	height: 50px;
	width: 220px;
	margin: 0;
	font: 400 18px/50px 'TTCommons', sans-serif;
	text-align: center;
}

.show_out_0 input.hexch_submit {
	width: 100%;
}

.hexch_checkdata_div,
.hexch_div .exchange_checkpersdata {
	padding: 0 0px 10px 0px;
}

/* end hexch */

/* exch */
.exch_ajax_wrap,
.exchange_status_html {
	position: relative;
	min-height: 50px;
}

.exch_ajax_wrap_abs,
.exchange_status_abs {
	display: none;
	position: absolute;
	z-index: 5;
	float: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f3f7fc url(images/ajax-big-loader.gif) no-repeat center center;
	opacity: 0.6;
}

.color_d .exch_ajax_wrap_abs,
.color_d .exchange_status_abs {
	background: #272c3e url(images/d-ajax-big-loader.gif) no-repeat center center;
}

.xchange_div {
	border-radius: 4px;
	margin: 0 0 20px 0;
}

.xchange_data_title,
.xchange_pers_title {
	font-size: 28px;
	font-family: 'TTCommonsMed', sans-serif;
	padding: 0 0 20px 0;
	color: #fff;
	margin: 0px 0px 20px;
}

.xchange_data_div {
	padding: 0px 0px 10px;
	border-bottom: 1px solid #eaeef4;
	margin: 0 0 20px 0;
}

.xchange_pers_div {
	padding: 0px 0px 10px 0px;
}

@media all and (min-width: 700px) {

	.xchange_data_left,
	.xchange_pers_div {
		width: 340px;
		float: left;
	}

	.xchange_data_right {
		float: right;
		width: 240px;
	}

	.xchange_data_right .xchange_info_line {
		text-align: right;
	}

}

.xchange_info_line {
	font-size: 15px;
	padding: 0 0 10px 0;
	color: #b7b7b7;
}

.xchange_select {
	margin: 0 0 20px 0;
	height: 50px;
}

.xchange_select select {
	width: 100%;
	height: 50px;
}

.xchange_sum_line {
	position: relative;
	margin: 0 0 20px 0;
}

.xchange_sum_label {
	font-size: 15px;
	color: #b7b7b7;
	padding: 0 0 5px 0;
}

.xchange_sum_input {
	position: relative;
}

.xchange_sum_input input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	font-family: 'TTCommonsMed', sans-serif;
}

@media all and (min-width: 700px) {
	.xchange_sum_line {
		height: 50px;
		margin: 0 0 20px 0;
		padding: 0 0 0 120px;
	}

	.xchange_sum_label {
		position: absolute;
		float: none;
		top: 0;
		left: 0;
		width: 110px;
		height: 50px;
		font-size: 14px;
		line-height: 50px;
		text-align: right;
		padding: 0;
	}
}

.xchange_sumandcom {
	color: #b7b7b7;
	font-size: 14px;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

.xchange_curs_line .check_purse_line {
	padding: 20px 0 0px 0;
}

.xchange_curs_line,
.xchange_pers_line {
	margin: 0 0 20px 0;
}

.xchange_curs_label,
.xchange_pers_label {
	font-size: 15px;
	color: #b7b7b7;
	padding: 0 0 5px 0;
}

.xchange_curs_input,
.xchange_pers_input {
	position: relative;
}

.xchange_curs_input input,
.xchange_pers_input input {
	font-size: 16px;
	line-height: 50px;
	height: 50px;
	width: 100%;
}

.xchange_curs_input select,
.xchange_pers_input select {
	height: 50px;
	width: 100%;
}

.xchange_submit_div {
	padding: 0px 0px 10px 0px;
}

input.xchange_submit {
	display: block;
	height: 50px;
	width: 220px;
	margin: 0;
	text-align: center;
}

.xchange_checkdata_div,
.xchange_div .exchange_checkpersdata {
	padding: 0 0px 10px 0px;
}

.xchange_div .checkbox a {
	color: #fff;
	text-decoration: underline;
}



/* end exch */

/* step 1 */
.block_xchangedata {
	background: #f4f4f4;

	border-radius: 4px;
	padding: 20px 20px 5px;
	margin: 0 0 20px 0;
}

.color_d .block_xchangedata {
	background: var(--maincolor);
	box-shadow: none;
}

.block_submitbutton {
	padding: 0px 0 20px;
}

.block_checked_rule {
	padding: 0px 0px 20px 0px;
}

.block_xchdata,
.block_persdata {
	padding: 0;
}

.block_xchdata {
	margin: 0 0 20px 0;
	border-bottom: 1px solid #e6ecf4;
}

.block_xchdata_title,
.block_persdata_title {
	color: #0A0A0A;
	font-size: 24px;
	margin: 0 0px 20px;
}

.block_xchdata_comm {
	padding: 0px 0px 20px;
	color: #b7b7b7;
}

.block_persdata_info,
.block_xchdata_info {
	padding: 0px 0px 15px;
	font-size: 14px;
}

.block_xchdata_info_left {
	float: left;
	width: 340px;
}

.block_persdata_line,
.block_xchdata_line {
	padding: 0 0 5px 0;
}

.block_persdata_line span,
.block_xchdata_line span {
	font-weight: 600;
	color: #0A0A0A;
	display: block;
	padding: 0 0 3px 0;
}

.color_d .block_persdata_line span,
.color_d .block_xchdata_line span {
	color: #fff;
}

.block_xchdata_info_right {
	float: right;
}

@media all and (max-width: 500px) {
	.block_xchdata_info_right {
		display: none;
	}
}

.block_xchdata_ico {
	float: left;
	width: 40px;
	height: 40px;
	margin: 0 10px 0 0;
}

.block_xchdata_text {
	float: left;
	height: 40px;
	font: 400 18px/40px 'TTCommons', sans-serif;
}

/* end step 1 */

/* bid status */
.block_statusbids {

	border-radius: 4px;
	padding: 20px 20px 1px;
	margin: 0 0 20px 0;
	position: relative;

}

.block_statusbid_title {
	color: #0A0A0A;
	font-size: 24px;
	margin: 0 0px 20px;
}

.color_d .block_statusbid_title {
	color: #fff;
}

.block_instruction {
	margin: 0 0 10px 0;
}

.block_instruction p {
	padding: 0 0 10px 0;
}

.block_instruction .comment_user {
	font-weight: 600;
}

.block_payinfo {
	padding: 0px 0px 20px;
}

.block_payinfo_line {
	padding: 0px 0 10px;
}

.block_payinfo_line span {
	font-weight: 600;
}

.block_status {
	background: #f3f7fc;
	padding: 20px 20px;
	margin: 0 -20px 20px;
}

.color_d .block_status {
	background: var(--maincolor);
}

.block_status_time {
	padding: 0 0 10px 0;
}

.block_status_time span {
	font-weight: 600;
}

span.block_status_text_info {
	font-weight: 600;
}

.block_change_browser {
	text-align: center;
	padding: 0px 0 20px;
	color: #ff0000;
}

.not_vaccaunt_now {
	font-weight: 600;
}

.block_check_payment {
	height: 3px;
	position: absolute;
	float: none;
	bottom: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
}

.block_check_payment_ins {
	position: absolute;
	float: none;
	top: 0;
	left: 0;
	width: 0px;
	height: 100%;
	background: #00c063;
}

.block_check_payment_abs {
	display: none;
}

.block_warning_merch {
	padding: 20px 20px;
	margin: 0 -20px 20px;
	background: #f3f7fc;
}

.color_d .block_warning_merch {
	background: var(--maincolor);
}

.block_paybutton_merch {
	padding: 0px 0 20px;
}

.block_smsbutton {
	padding: 20px 0px 20px;
	border-top: 1px solid #f0f5f3;
}

.block_smsbutton_label {
	padding: 0 0 8px 0;
	font-weight: 600;
}

.block_smsbutton_action input[type=text] {
	float: left;
	width: 120px;
	text-align: center;
}

.block_smsbutton_action input[type=submit] {
	float: left;
	margin: 0 0 0 20px;
}

.block_paybutton {
	padding: 0px 0px 20px;
}

.resultfalse.paybutton_error {
	width: 160px;
	float: right;
}

.block_paybutton_ins {
	display: flex;
	justify-content: space-between;
	align-items: center;
}



a.merch_paybutton,
a.success_paybutton,
a.cancel_paybutton {
	display: flex;
	border: none;
	/* background: #f4f4f4; */
	/* border-radius: 4px; */
	height: 40px;
	padding: 0 25px;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #111;
	font-size: 20px;
	font-family: 'TTCommons', sans-serif;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	max-width: 300px;
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
}

@media screen and (max-width: 700px) {
	.block_paybutton_ins {
		flex-direction: column;
		row-gap: 10px;
	}

	a.merch_paybutton,
	a.success_paybutton,
	a.cancel_paybutton {
		width: 100%;
		max-width: 100%;
	}

	input[type=text],
	input[type=email],
	input[type=password] {
		width: 100%;
	}
}

a.cancel_paybutton {
	border: 1px solid #a1a3a5;
	background: #a1a3a5;
}

a.cancel_paybutton:hover {
	background: #868889;
	box-shadow: 0px 0px 15px 0px #a1a3a5;
}

a.success_paybutton {
	background: #f4f4f4;
}

a.success_paybutton:hover {
	background: #f4f4f4;
	color: #111;
	box-shadow: 0px 0px 15px 0px #FFF;

}

a.merch_paybutton {
	background: #f1f4fa;
	margin: 0 auto;
	color: #0c72d8;
}

a.merch_paybutton:hover {
	background: #e7edf5;
	box-shadow: 0px 0px 15px 0px #FFF;
}


/* end bid status */

/* select */
.select_js {
	position: relative;
	cursor: pointer;
}

.change_city_select_wrap {
	height: 50px;
	width: 260px;
}

.change_city_select_wrap select {
	height: 50px;
}

.select_js select {
	display: none;
}

.select_js_title {
	background: var(--text);
	border: 1px solid #e6ecf4;
	border-radius: 4px;
	height: 50px;
	box-sizing: border-box;
	color: #0A0A0A;
	overflow: hidden;
	position: relative;
}

.select_js.open .select_js_title {
	background: var(--text);
}

.color_d .select_js.open .select_js_title {
	background: var(--maincolor);
}

.select_js_title .select_js_abs {
	background: url(images/jsel.png) no-repeat center center;
	position: absolute;
	float: none;
	top: 0;
	right: 20px;
	height: 100%;
	width: 12px;
}

.select_js_title_ins {
	padding: 0 20px 0 20px;
	font-family: 'TTCommonsMed', sans-serif;
	font-size: 20px;
	line-height: 48px;
}

.rtl_body .select_js_title_ins {
	padding: 0 20px 0 20px;
}

.iselect_js .select_js_title_ins {
	padding: 0 20px 0 60px;
}


.iselect_js .select_ico {
	position: absolute;
	float: none;
	top: 5px;
	left: 10px;
	width: 50px;
	height: 40px;
}

.rtl_body .iselect_js .select_ico {
	left: auto;
	right: 10px;
}

.select_js_search {
	display: none;
	position: absolute;
	z-index: 30;
	float: none;
	top: 0;
	width: 100%;
	min-width: 100px;
	box-sizing: border-box;

}

.select_js_search input {
	width: 100%;
	height: 50px;
}

.select_js_ul {
	display: none;
	position: absolute;
	z-index: 30;
	float: none;
	top: 100%;
	background: #f4f4f4;
	border: 1px solid #e6ecf4;
	width: 100%;
	min-width: 100px;
	box-sizing: border-box;

	border-radius: 4px;
	max-height: 300px;
	overflow-y: auto;
}

.color_d .select_js_ul {
	background: #404040;
	border: 1px solid #353b51;
}

.select_js_ulli {
	position: relative;
	overflow: hidden;
	padding: 8px 20px;
	color: #fff;
	font-size: 13px;
	border-top: 1px solid #eaeef4;
	box-sizing: border-box;

}

.color_d .select_js_ulli {
	border-top: 1px solid #353b51;
}

.iselect_js .select_js_ulli {
	padding: 0 10px 0 63px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
}


.select_js_ulli:hover,
.select_js_ulli.active {
	background: #f3f7fc;
}

.color_d .select_js_ulli:hover,
.color_d .select_js_ulli.active {
	background: var(--maincolor);
}

/* end select */

/* sidebar */
.sidebar {
	margin: 0 0px;
}

@media all and (min-width: 960px) {
	.sidebar {
		float: right;
		width: 29%;
	}

	.rtl_body .sidebar {
		float: left;
	}
}

@media all and (min-width: 1200px) {
	.sidebar {
		width: 24%;
	}
}

/* end sidebar */

.widget {
	margin: 0 0 20px 0;
	background: #f4f4f4;

	border-radius: 4px;
	padding: 20px 20px;
}

.color_d .widget {
	background: var(--maincolor);
	box-shadow: none;
}

.widget_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .widget_title {
	color: #fff;
}

.widget img {
	max-width: 100%;
}

.textwidget {
	padding: 0px;
}

ul#recentcomments {
	display: block;
}

ul#recentcomments li {
	display: block;
	padding: 0 0 5px 12px;
	background: url(images/liarr.png) no-repeat 0 3px;
}

/* news widget */
.widget.widget_news_div {
	margin: 0 0 20px 0;
	background: none;
	box-shadow: none;
	padding: 0;
}

.widget_news_div .widget_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .widget_news_div .widget_title {
	color: #fff;
}

.widget_news_line {
	margin: 0 0 20px 0;
	background: #f4f4f4;

	border-radius: 4px;
	padding: 20px 20px;
}

.color_d .widget_news_line {
	box-shadow: none;
	background: var(--maincolor);
}

.widget_news_date {
	color: #b7b7b7;
	font-size: 12px;
	margin: 0 0 5px 0;
}

.color_d .widget_news_date {
	color: #8193ab;
}

.widget_news_image {
	margin: 0 0 7px 0;
}

.widget_news_image img {
	border-radius: 4px;
	width: 100%;
}

.widget_news_title {
	font-size: 18px;
	margin: 0 0 7px 0;
}

.widget_news_title a {
	color: #2e3033;
	text-decoration: none;
}

.color_d .widget_news_title a {
	color: #fff;
}

.widget_news_title a:hover {
	text-decoration: underline;
}

.widget_news_content {
	font-size: 16px;
}

.widget_news_content a {
	color: #b7b7b7;
	text-decoration: none;
}

.widget_news_content a:hover {
	text-decoration: underline;
}

a.widget_news_more,
a.widget_reviews_more {
	display: flex;
	background: var(--accent);
	height: 40px;
	padding: 4px 25px 0;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #111;
	font-size: 22px;
	font-family: 'TTCommonsMed', sans-serif;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
}

a.widget_news_more:hover,
a.widget_reviews_more:hover {
	background-color: #fff;
	text-decoration: none;
}

/* end news widget */

/* stats widget */
.widget_stats_div {
	margin: 0 0 20px 0;
	background: #f4f4f4;

	border-radius: 4px;
	padding: 20px 20px 15px;
}

.color_d .widget_stats_div {
	background: var(--maincolor);
	box-shadow: none;
}

.widget_stats_div .widget_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .widget_stats_div .widget_title {
	color: #fff;
}

.widget_stats_line {
	padding: 0px 0px 5px;
	font-size: 13px;
}

.widget_stats_line span {
	font-weight: 600;
}

/* end stats widget */

.widget_reviews_div .widget_title {
	font-size: 24px;
	line-height: 1;
	color: var(--text);
	margin: 0px 0px 10px 0px;
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
}

.widget_reviews_line {
	margin: 0 0 10px 0;
	padding: 20px 0;
	border-bottom: 1px solid var(--text);
}

.widget_reviews_line.last {
	border-bottom: none;
}

.widget_reviews_author {
	float: left;
	font-size: 14px;
	margin: 0 3px 10px 0;
	color: #b7b7b7;
}


.widget_reviews_date {
	float: left;
	font-size: 14px;
	margin: 0 0 10px 0;
	color: #b7b7b7;
}

.widget_reviews_content {
	font-size: 16px;
	color: var(--text);
	word-wrap: break-word;
	word-break: break-all;
}


/* end reviews widget */

/* register widget */
.widget.widget_reviews_div,
.user_widget,
.register_widget,
.login_widget,
.checkstatus_widget {
	margin: 0 0 40px;
	background: var(--dark);
	border-radius: 0;
	padding: 25px 20px;
}

.user_widget_title,
.register_widget_title,
.login_widget_title,
.checkstatus_widget_title {
	font-size: 24px;
	line-height: 1;
	color: var(--text);
	margin: 0px 0px 20px 0px;
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
}

.widget_reg_label,
.widget_log_label,
.widget_checkstatus_label {
	margin: 0;
	padding: 0 0 3px;
	font-size: 13px;
}

.widget_reg_line,
.widget_log_line,
.widget_checkstatus_line {
	padding: 0 0 10px;
}

.widget_reg_line_subm input,
.widget_log_line_subm input,
.widget_checkstatus_line_subm input {
	display: block;
	margin: 0 auto;
}

input.widget_reg_input,
input.widget_log_input,
input.widget_checkstatus_input {
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* end register widget */

/* site form */
.log_div_wrap,
.cf_div_wrap,
.reg_div_wrap,
.lp_div_wrap,
.rf_div_wrap,
.acf_div_wrap,
.domacc_div_wrap,
.checkstatus_div_wrap,
.userverify_div_wrap {
	margin: 0 0 20px 0;
}

.log_div_title,
.cf_div_title,
.reg_div_title,
.lp_div_title,
.rf_div_title,
.acf_div_title,
.domacc_div_title,
.checkstatus_div_title,
.userverify_div_title {
	margin: 0 0 20px 0;
	font-size: 24px;
	line-height: 1;
	font-family: 'TTCommonsMed', sans-serif;
	letter-spacing: 1px;
}

.log_div,
.cf_div,
.reg_div,
.lp_div,
.rf_div,
.acf_div,
.domacc_div,
.checkstatus_div,
.userverify_div {
	padding: 0px;
}

.log_label,
.cf_label,
.reg_label,
.lp_label,
.rf_label,
.acf_label,
.checkstatus_label,
.uv_label {
	margin: 0;
	padding: 0 0 3px;
	font-size: 15px;
	color: #9f9f9f;
}

.log_line,
.cf_line,
.reg_line,
.lp_line,
.rf_line,
.acf_line,
.checkstatus_line,
.uv_line {
	padding: 0px 0 20px;
}

.log_line_subm_left,
.reg_line_subm_left {
	float: left;
}

.log_line_subm_right {
	float: left;
	margin: 0 0 0 20px;
	font-size: 13px;
}

.log_line_subm_right p {
	padding: 1px 0;
}

.reg_line_subm_right {
	float: left;
	margin: 11px 0 0 20px;
	font-size: 13px;
}

/* end site form */

/* window */
.standart_shadow {
	position: fixed;
	float: none;
	top: 0;
	left: 0;
	z-index: 999998;
	width: 100%;
	height: 100%;
	background: #000;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

.standart_window {
	position: fixed;
	float: none;
	width: 100%;
	top: 100px;
	left: 0px;
	z-index: 999999;
}

.standart_windowins {
	position: relative;
	max-width: 360px;
	margin: 0 auto;
	padding: 0 10px;
}

.standart_window_ins {
	padding: 0px 20px 10px;
	background: #7c7c7c;
	border-radius: 4px;
}

.standart_window_close {
	position: absolute;
	float: none;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background: url(images/close.png) no-repeat center center;
	top: 17px;
	right: 20px;
}

.standart_window_title {
	font: 400 18px 'TTCommons', sans-serif;
	color: #0A0A0A;
	margin: 0 -20px 15px;
	padding: 15px 40px 15px 20px;
	background: #f3f7fc;
	border: none;
	border-radius: 4px 4px 0 0;
}

.standart_window_submit {
	padding: 20px 0px 10px;
	text-align: center;
}

.rb_label {
	font-size: 13px;
	padding: 0px 0px 3px 0px;
}

.rb_line {
	padding: 0px 0 10px;
}

.rb_line a {
	color: #fff;
}

.rb_line a:hover {
	color: #f0f0f0;
}

/* end window */


/* login widget */
.widget_log_line_text {
	padding: 0 0 15px 0;
}

.login_widget_subm_left {
	float: left;
	width: 49%;
	font-size: 12px;
}

.login_widget_subm_right {
	float: right;
	text-align: right;
	width: 49%;
	font-size: 12px;
}

/* end login widget */

/* user widget */
.uswidin {
	margin: 0 0 15px 0;
	color: #fff;
	font-size: 18px;
}

.uswidinleft {
	float: left;
	width: 50%;
}

.uswidinright {
	float: right;
	width: 50%;
	text-align: right;
}

.widget_log_line_text a {
	color: #fff;
}

.widget_log_line_text a:hover {
	color: #f0f0f0;
}

.user_widget_body ul {
	margin: 0 0 15px 0;
}

.user_widget_body ul li {
	display: block;
	padding: 0 0 10px 0;
	line-height: 1.2;
}

.user_widget_body ul li a {
	font-size: 16px;
	text-decoration: none;
	color: var(--text);
}

.user_widget_body ul li.current a,
.user_widget_body ul li a:hover {
	text-decoration: underline;
	color: #fff;
}

.user_widget_body ul li.current a {
	cursor: default;
	color: #fff;
}

a.exit_link {
	display: flex;
	background-color: var(--accent);
	height: 40px;
	padding: 4px 25px 0;
	transition: all 0.3s linear;
	box-sizing: border-box;
	color: #111;
	font-size: 22px;
	font-family: 'TTCommonsMed', sans-serif;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	clip-path: polygon(10.5px 0%, calc(100% - 10.5px) 0%, calc(100% - 10.5px) 3.5px, calc(100% - 7px) 3.5px, calc(100% - 7px) 7px, calc(100% - 3.5px) 7px, calc(100% - 3.5px) 14px, 100% 14px, 100% calc(100% - 14px), calc(100% - 3.5px) calc(100% - 14px), calc(100% - 3.5px) calc(100% - 7px), calc(100% - 7px) calc(100% - 7px), calc(100% - 7px) calc(100% - 3.5px), calc(100% - 10.5px) calc(100% - 3.5px), calc(100% - 10.5px) 100%, 10.5px 100%, 10.5px calc(100% - 3.5px), 7px calc(100% - 3.5px), 7px calc(100% - 7px), 3.5px calc(100% - 7px), 3.5px calc(100% - 14px), 0% calc(100% - 14px), 0px 14px, 3.5px 14px, 3.5px 7px, 7px 7px, 7px 3.5px, 10.5px 3.5px);
}

a.exit_link:hover {
	background-color: #fff;
	text-decoration: none;
}

/* end user widget */

/* reserv widget */
.widget_reserv_div {
	margin: 0 0 20px 0;

	color: #b7b7b7;
	border-radius: 4px;
	padding: 20px 20px;
	background: var(--maincolor);
	color: #8096ab;
}

.widget_reserv_div_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .widget_reserv_div_title {
	color: #fff;
}

.widget_reserv_line {
	padding: 3px 0px 3px 0px;
	margin: 0 -10px 0 0;
}

.widget_reserv_ico {
	float: left;
	width: 40px;
	height: 40px;
}


.widget_reserv_block {
	float: left;
	width: 170px;
	font-size: 14px;
	padding: 2px 0 0 10px;
}

.widget_reserv_title {
	font-size: 14px;
	color: #b7b7b7;
	margin: 0 0 1px 0;
}

.color_d .widget_reserv_title {
	color: #fff;
}

.widget_reserv_sum {
	color: #0A0A0A;
}

.color_d .widget_reserv_sum {
	color: #fff;
}

.widget_reserv_filters {
	padding: 0px 0 5px 0px;
}

.widget_reserv_filter {
	float: left;
	padding: 5px 8px 3px;
	background: #f1f4fa;
	border-radius: 4px;
	border: 1px solid #eaeef4;
	color: #b7b7b7;
	font: 13px/13px 'TTCommons', sans-serif;
	margin: 0 5px 5px 0;
	cursor: pointer;
	position: relative;
}

.color_d .widget_reserv_filter {
	background: var(--maincolor);
	border: 1px solid var(--maincolor);
	color: #7f95aa;
}

.widget_reserv_filter.current {
	background: #0c72d8;
	border: 1px solid #0c72d8;
	color: #fff;
}

/* end reserv widget */

/* cbr widget */
.widget_cbr_div {
	margin: 0 0 20px 0;
	background: #f4f4f4;

	color: #b7b7b7;
	border-radius: 4px;
	padding: 20px 20px 10px;
}

.color_d .widget_cbr_div {
	background: var(--maincolor);
	box-shadow: none;
	color: #8096ab;
}

.widget_cbr_div_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .widget_cbr_div_title {
	color: #fff;
}

.cbr_update {
	padding: 10px 0px 0;
	font-size: 12px;
}

.widget_cbr_line {
	border-bottom: 1px solid #eaeef4;
	padding: 10px 10px 10px 20px;
	margin: 0 -20px;
}

.color_d .widget_cbr_line {
	border-bottom: 1px solid #353b51;
}

.widget_cbr_left {
	float: left;
	width: 100px;
}

.widget_cbr_title {
	font-size: 14px;
	color: #0A0A0A;
	padding: 1px 0 1px 0;
}

.color_d .widget_cbr_title {
	color: #fff;
}

.widget_cbr_birg {
	font-size: 14px;
	color: #b7b7b7;
}

.widget_cbr_curs {
	float: left;
	width: 120px;
	padding: 0 0 0 20px;
	font-size: 13px;
}

.widget_cbr_onecurs {
	padding: 1px 0;
}

/* end cbr widget */

/* lchange */
.widget_lchange_div {
	margin: 0 0 20px 0;
	background: #f4f4f4;

	color: #b7b7b7;
	border-radius: 4px;
	padding: 20px 20px 1px;
	position: relative;
}

.color_d .widget_lchange_div {
	background: var(--maincolor);
	box-shadow: none;
	color: #8096ab;
}

.widget_lchange_div .widget_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .widget_lchange_div .widget_title {
	color: #fff;
}

.widget_lchange_html {
	padding: 0;
}

.widget_lchange_abs {
	display: none;
	position: absolute;
	z-index: 5;
	float: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f2f6fb url(images/ajax-big-loader.gif) no-repeat center center;
	opacity: 0.6;
}

.color_d .widget_lchange_abs {
	background: #272c3e url(images/d-ajax-big-loader.gif) no-repeat center center;
}

.widget_lchange_abs.active {
	display: block;
}

.widget_lchange_noitem {
	margin: 0 0 20px 0;
}

.widget_lchange_line {
	margin: 0 0 20px 0;
}

.widget_lchange_date {
	font-size: 13px;
	color: #b7b7b7;
	padding: 10px 0 0 0;
}

.color_d .widget_lchange_date {
	color: #7e94ac;
}

.widget_lchange_why {
	float: left;
	width: 84px;
}

.rtl_body .widget_lchange_why {
	float: right;
}

.widget_lchange_ico {
	width: 40px;
	height: 40px;
}

.widget_lchange_txt {
	font-size: 14px;
	padding: 5px 0 0 5px;
	color: #0A0A0A;
}

.color_d .widget_lchange_txt {
	color: #fff;
}

.widget_lchange_arr {
	float: left;
	width: 40px;
	height: 40px;
	background: url(images/harr.png) no-repeat 0 center;
}

.rtl_body .widget_lchange_arr {
	float: right;
}

/* end lchange */

/* userverify widget */
.usve_widget {
	border-bottom: 1px solid #ebebeb;
	color: #ff6066;
	padding: 20px 0px 16px 35px;
	font-size: 13px;
	margin: -20px 0px 10px 0px;
	background: url(images/verify0.png) no-repeat 0px 16px;
}

.color_d .usve_widget {
	border-bottom: 1px solid #353b51;
}

.usve_widget.verifyst_1 {
	color: #00c360;
	background: url(images/verify1.png) no-repeat 0px 16px;
}

.rtl_body .usve_widget,
.rtl_body .usve_widget.verifyst_1 {
	padding: 20px 35px 16px 0px;
	background-position: right center;
}

.usve_widget_link {
	padding: 5px 0 0 0;
}

.userverify_widget {
	margin: 0 0 20px 0;
	background: #f4f4f4;

	color: #b7b7b7;
	border-radius: 4px;
	padding: 20px 20px;
}

.color_d .userverify_widget {
	background: var(--maincolor);
	box-shadow: none;
	color: #8096ab;
}

.userverify_widget_title {
	font-size: 24px;
	line-height: 1;
	color: #2e3033;
	margin: 0px 0px 20px 0px;
}

.color_d .userverify_widget_title {
	color: #fff;
}

.account_verify {
	background: url(images/verify0.png) no-repeat 0 center;
	padding: 5px 0 5px 35px;
	font-size: 13px;
	color: #ff6066;
}

.account_verify.true {
	color: #00c360;
	background: url(images/verify1.png) no-repeat 0 center;
}

.needverifylink {
	padding: 5px 0 0px 35px;
}

/* end userverify widget */

/* comment navi */
.comment-navigation {
	margin: 0 0 20px 0;
}

.nav-previous a {
	float: left;
	padding: 8px 13px;
	border-radius: 4px;
}


.nav-next a {
	float: right;
	padding: 8px 13px;
	border-radius: 4px;
}

/* end comment navi */

/* pagenavi */
.pagenavi {
	padding: 0px 0 0 0;
	margin: 0 0 50px 0;
	text-align: center;
	font-size: 16px;
}

.pagenavi span,
.pagenavi a {
	margin: 0 5px;
	position: relative;
	padding: 8px 13px 4px;
	border-radius: 4px;
}

@media all and (max-width: 700px) {
	.pagenavi {
		font-size: 13px;
	}

	.pagenavi span,
	.pagenavi a {
		padding: 3px 7px;
		margin: 0 5px;
	}
}

.pagenavi span {
	color: #111;
	background: var(--text);
	border: 1px solid var(--text);
}

.pagenavi a,
.nav-previous a,
.nav-next a {
	text-decoration: none;
	color: var(--text);
	border: 1px solid var(--text);
	background: var(--maincolor);
}

.pagenavi a:hover,
.nav-previous a:hover,
.nav-next a:hover {
	color: var(--text);
	border: 1px solid #9d9d9d;
	background: var(--dark);
	text-decoration: none;
}


/* end pagenavi */



/* footer */
.footer_wrap {
	background-color: var(--dark);
	width: 100%;
	font-size: 16px;
	color: #b7b7b7;
	overflow: hidden;
}

.footer {
	max-width: 1220px;
	margin: 0 auto;
	padding: 20px 50px 60px;
	color: var(--text);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	font-family: 'Undertale', sans-serif;
}

.copyright {
	font-size: 13px;
}

.footer_menu li {
	margin-bottom: 10px;
}

.footer_menu li a {
	text-decoration: none;
	color: var(--text);
	font-size: 18px;
}

.footer_menu li a:hover {
	text-decoration: none;
	color: rgb(255 255 255 / 80%);
}

.footer_contact a {
	color: var(--text);
	text-decoration: none;
	font-size: 18px;
}

.footer_contact a:hover {
	text-decoration: none;
	color: rgb(255 255 255 / 80%);
}

.footer_left {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	width: 25%;
}

.footer_right {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	width: 25%;
	text-align: right;
}

.footer_center {
	width: 50%;
	text-align: center;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.footer_center::before {
	content: '';
	display: block;
	background: rgba(233, 243, 3, 0.4);
	filter: blur(40px);
	height: 100%;
	top: 25%;
	position: absolute;
	width: 100%;
	border-radius: 100% 100% 0 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

.footer-logo {
	max-width: 200px;
	animation: footer 2s ease-in-out infinite;
}

@keyframes footer {
	0% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(20px);
	}

	45% {
		transform: translateY(20px);
	}

	50% {
		transform: translateY(20px);
	}

	90% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(0);
	}

}

.footer-anim {
	display: flex;
	position: relative;
	width: 300px;
	height: 200px;
}

.footer-anim img {
	position: absolute;
	max-width: 55px;
}

.foo-b {
	top: 0;
	left: 0;
	animation: footer-b 2s ease-in-out 0.1s infinite;
}

.foo-l {
	top: 70px;
	left: 90px;
	animation: footer-l 2s ease-in-out infinite;
}

.foo-c {
	bottom: 0;
	left: 170px;
	animation: footer-c 2s ease-in-out 0.2s infinite;
}

.foo-t {
	top: 55px;
	right: 0;
	animation: footer-t 2s ease-in-out infinite;
}

@keyframes footer-b {
	0% {
		top: 0;
	}

	50% {
		top: 15px;
	}

	100% {
		top: 0;
	}

}

@keyframes footer-l {
	0% {
		top: 70px;
	}

	50% {
		top: 60px;
	}

	100% {
		top: 70px;
	}

}

@keyframes footer-c {
	0% {
		bottom: 0;
	}

	50% {
		bottom: 20px;
	}

	100% {
		bottom: 0;
	}

}

@keyframes footer-t {
	0% {
		top: 55px;
	}

	50% {
		top: 35px;
	}

	100% {
		top: 55px;
	}

}

#topped {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #3f3f3f url(images/topped.png) no-repeat center center;
	opacity: 0.8;
	position: fixed;
	bottom: 20px;
	left: 8px;
	cursor: pointer;
	z-index: 99999;
	transition: all 0.3s linear;
}

#topped:hover {
	opacity: 1;
	box-shadow: 0px 0px 6px #FFF;
}

@media all and (min-width: 701px) {
	.only-mobile {
		display: none;
	}
}

@media all and (max-width: 700px) {

	.home_partner_wrap,
	.only-mobile {
		/* margin-inline: -20px; */
		/* background: var(--dark); */
		/* width: 100vw; */
		padding: 10px 0 30px 0;
	}



}

@media all and (max-width: 1100px) {

	.footer_left,
	.footer_right {
		width: 30%;
	}

}

@media all and (max-width: 900px) {
	.footer {
		flex-wrap: wrap;
	}

	.footer_center {
		width: 100%;
		text-align: center;
		order: -1;
		margin-bottom: 20px;
	}

	.footer_left,
	.footer_right {
		width: 50%;
	}

}

@media all and (max-width: 700px) {
	.home .footer_wrap {
		display: none;
	}

	.footer {
		padding: 20px 30px 20px;
		text-align: center;
	}

	.copyright,
	.footer_menu {
		text-align: center;
	}

	.footer_left {
		display: none;
	}

	.footer_right {
		width: 100%;
		margin-bottom: 0;
		row-gap: 0;
		display: none;
	}

	.footer_menu li a {
		font-size: 14px;
	}

	.footer-logo {
		max-width: 150px;
		display: none;
	}

	.footer_center::before {
		content: none;
	}

	.footer-anim {
		height: 160px;
		margin: auto;
	}

	.footer-anim img {
		max-width: 50px;
	}

	#topped {
		width: 34px;
		height: 34px;
		background-size: 15px;
	}

	.home_partner_wrap,
	.home_news,
	.home_wtext {
		display: none;
	}

	.topmenu_ico {
		margin-top: 10px;
	}

	.tophead {
		justify-content: flex-end;
	}

	.tophead .logoblock {
		display: none;
	}

	.only-mobile .logoblock {
		width: 100%;
		text-align: center;
	}

	.only-mobile .logoblock img {
		max-height: max-content;
        max-width: 88%;
	}

	.footer_wrap {
		background-color: transparent;
	}
}