* {
    margin: 0;
    padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: middle;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

a:focus {
    outline: 0;
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

img {
    border: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

sup {
    font-size: 0.7em;
    vertical-align: top;
}

sub {
    font-size: 0.7em;
    vertical-align: bottom;
}

small {
    font-size: 10px;
}

strong,
dfn,
dl dt,
th,
b {
    font-weight: 600;
}

select,
input,
textarea {
    padding: 0;
    margin: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

button,
input[type="submit"] {
    padding: 0;
    margin: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-appearance: none;
}

:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

:focus:-moz-placeholder {
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

a {
    text-decoration: none;
    color: var(--Black, #000);
}

.color_d a {
    color: #428dd9;
}

a:hover {
    text-decoration: none;
    color: #0b71d7;
}

.color_d a:hover {
    color: #428dd9;
}

body.color_d {
    color: #8096ad;
    background: #282d40;
}

body.rtl_body {
    direction: rtl;
    unicode-bidi: embed;
}

.rtl_body caption,
.rtl_body th,
.rtl_body td {
    text-align: right;
}

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


/* wclose */

.wclosearea {
    padding: 5px 0px;
    background: #e27c83;
    border-bottom: 2px solid #ce656c;
}

.wclosearea_ins {
    max-width: 1170px;
    margin: 0 auto;
    min-height: 20px;
    position: relative;
}

.wclosearea_hide {
    position: absolute;
    float: none;
    top: 0;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url(images/w_close.png) no-repeat center center;
    border-radius: 3px;
}

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

.rtl_body .wclosearea_hide {
    right: auto;
    left: 10px;
}

.wclosearea_text {
    padding: 0px 30px 0px 10px;
}

.rtl_body .wclosearea_text {
    padding: 0px 10px 0px 30px;
}

.wclosearea_text_ins {
    padding: 2px 0px 0 26px;
    background: url(images/warning.png) no-repeat;
    background-position: 0 2px;
    color: #fff;
    font: 13px "Nunito", sans-serif;
}

.rtl_body .wclosearea_text_ins {
    padding-left: 0px;
    padding-right: 26px;
    background-position: right 1px;
}

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

.wclosearea_text a:hover {
    text-decoration: none;
}


/* end wclose */


/* forms */

input[type="text"],
input[type="email"],
input[type="password"] {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: 40px;
    width: 300px;
    max-width: 100%;
    display: flex;
    height: 51px;
    padding: 16px;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--Black, #000);
    color: rgba(255, 255, 255, 0.4);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

input[type="search"] {
    background: #fff url(images/search.svg) no-repeat 10px center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
    padding: 8px 16px;
    color: var(--Grey-04, #999);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding: 0 0 0 50px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    caret-color: #18d17e;
}

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

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

select {
    border: 1px solid #e4e8ee;
    background: #fff;
    border-radius: 3px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #000;
    height: 40px;
    width: 300px;
    max-width: 100%;
    padding: 0 15px;
    font: 13px "Nunito", sans-serif;
}

input[type="submit"] {
    max-width: 100%;
}

input[type="submit"]:hover {
    background: #02b866;
    color: #fff;
    text-decoration: none;
}

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

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

.color_d .checkbox {
    background-image: url(images/checkbox.png);
}

.rtl_body .checkbox {
    padding: 2px 28px 2px 0px;
    background-position: right 0;
}

.checkbox label {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.checkbox input {
    display: none;
}

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

.color_d .checkbox.checked {
    background-image: url(images/checkbox.png);
}

.rtl_body .checkbox.checked {
    background-position: right -180px;
}


/* end forms */


/* standart captcha */

.captcha_div {
    display: none;
    margin: 0 -10px 20px 0;
}

.rtl_body .captcha_div {
    margin: 0 0px 20px -10px;
}

.hexch_div .captcha_div {
    margin: 0 0px 20px 0px;
}

.captcha_title {
    margin: 0 0 8px 0;
    color: #fff;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.captcha_body {
    padding: 0 0 0px 0;
    color: var(--White, #fff);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.captcha_divznak {
    float: left;
    width: 24px;
    height: 40px;
    font: 600 18px/40px "Nunito", sans-serif;
    text-align: center;
}

.rtl_body .captcha_divznak {
    float: right;
}

input.captcha_divpole {
    float: left;
    width: 40px;
    height: 40px;
    padding: 0 5px;
    font: 18px/40px "Nunito", sans-serif;
    margin: 0;
    text-align: center;
}

.rtl_body input.captcha_divpole {
    float: right;
}

a.captcha_reload {
    float: left;
    margin: 0px 0 0 5px;
    width: 32px;
    height: 40px;
    border-radius: 3px;
    background: url(images/reload.svg) no-repeat center center;
}

.rtl_body a.captcha_reload {
    float: right;
}

a.captcha_reload.act {
    background: #fff url(images/ajax-loader.gif) no-repeat center center;
}

.captcha_divimg {
    float: left;
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.rtl_body .captcha_divimg {
    float: right;
}

.captcha_divimg img {
    width: 38px;
    height: 38px;
    border-radius: 3px;
}


/* end standart captcha */


/* topbar */

.topbar_wrap {
    width: 100%;
    position: relative;
    z-index: 100;
    height: 48px;
}

.topbar_ins {
    width: 100%;
    position: absolute;
    float: none;
    top: 0;
    left: 0;
    z-index: 100;
    height: 48px;
    background: #f3f7fc;
}

.topbar {
    max-width: 1150px;
    padding: 0 10px;
    margin: 0 auto;
    height: 48px;
}

.topbar_icon_wrap {
    position: relative;
    float: left;
}

.rtl_body .topbar_icon_wrap {
    float: right;
}

.topbar_icon_tab {
    display: none;
    font: 12px/48px "Nunito", sans-serif;
    color: #6b8199;
    height: 48px;
    cursor: pointer;
}

.color_d .topbar_icon_tab {
    color: #7f95ac;
}

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

.topbar_icon_tabul {
    padding: 0;
    width: auto;
}

.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;
}

.rtl_body .topbar_icon_wrap.adaptive .topbar_icon_tabul {
    left: auto;
    right: -10px;
}

.topbar_icon {
    display: none;
    float: left;
    border: 1px solid #00a3ff;
    border-radius: 56px;
    margin: 0 4px 0 0;
    padding: 8px 16px 8px 29px;
    text-decoration: none;
}

.topbar_icon.telegram:hover {
    border-radius: 56px;
    border: 1px solid #00a3ff;
    /* background: rgba(0, 163, 255, 0.10); */
    text-decoration: none;
    background: rgba(0, 163, 255, 0.1) url(images/telegram.svg) no-repeat 10px center;
}

.topbar_icon.telegram {
    background: url(images/telegram.svg) no-repeat 10px center;
}

.rtl_body .topbar_icon {
    float: right;
    padding: 0 35px 0 0;
    background-position: right center !important;
}

.topbar_icon_wrap.adaptive .topbar_icon {
    float: none;
    margin: 0;
    font: 12px/28px "Nunito", sans-serif;
    height: 28px;
}

.topbar_icon a {
    color: #00a3ff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    padding: 0 0 0 10px;
    text-decoration: none;
}

a.toplink {
    border-radius: 56px;
    background: #000;
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 185.714% */
    text-decoration: none;
}

a.toplink:hover {
    border-radius: 68px;
    background: #4d4d4d;
}

a.toplink:active {
    border-radius: 68px;
    background: #666;
}

a.toplink:disabled {
    border-radius: 68px;
    background: rgba(0, 0, 0, 0.2);
}

.mobile_menu_button a.toplink {
    float: left;
}

.color_d a.toplink {
    border: 1px solid #444c61;
    background: #282d40;
    color: #fff;
}

a.toplink.toplink_signup {
    border-radius: 56px;
    background: #000;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

a.toplink.toplink_signup:hover {
    border-radius: 68px;
    background: #4d4d4d;
}

a.toplink_signin {
    border-radius: 56px;
    border: 1px solid #000;
    background: none;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin: 0 4px 0 0;
}

a.toplink_signin:hover {
    border-radius: 68px;
    border: 1px solid var(--Black, #000);
    background: #e6e6e6;
}

.rtl_body a.toplink {
    float: left;
    margin: 9px 5px 0 0px;
}

.rtl_body .mobile_menu_button a.toplink {
    float: right;
    margin: 9px 0px 0 5px;
}

.rtl_body a.toplink.toplink_userlogin span {
    background-position: right center;
    padding: 0 20px 0 0;
}


/* end topbar */


/* lang */

.rtl_body .tolbar_lang {
    float: right;
    display: none;
    margin: 9px 0px 0 30px;
}

.langlist_div {
    position: relative;
    cursor: pointer;
    display: none;
}

.langlist_title {
    height: 42px;
    padding: 0px 12px;
    border-radius: 56px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

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

.rtl_body .langlist_title span {
    padding: 0 0 0 17px;
    background-position: left center;
}

.langlist_ul {
    position: absolute;
    float: none;
    top: 50px;
    left: -55px;
    padding: 8px;
    width: 120px;
    border-radius: 16px;
    background: var(--White, #fff);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
    display: none;
}

.rtl_body .langlist_ul {
    left: auto;
    right: 0px;
}

a.langlist_li {
    position: relative;
    display: block;
    border-radius: 8px;
    padding: 8px;
    color: var(--Black, #000);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
}

a.langlist_li:hover {
    background: #f4f2f3;
}

.rtl_body a.langlist_li {
    padding: 5px 30px 5px 5px;
}

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

.rtl_body .langlist_liimg {
    left: auto;
    right: 5px;
}


/* end lang */

.topmenu_contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 24px 0 0;
}

.topmenu_buttons_ins {
    display: flex;
    justify-self: end;
}

.topmenu_buttons {
    display: flex;
    flex-direction: row-reverse;
}


/* topmenu */

.tophead_wrap {
    width: 100%;
    position: relative;
    z-index: 90;
}

.tophead {
    display: grid;
    max-width: 1440px;
    width: -webkit-fill-available;
    padding: 19px 40px;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    margin: 0 auto;
}

@media all and (max-width: 959px) {
    .tophead {
        height: 60px;
    }
}

.logoblock {
    overflow: hidden;
}

.rtl_body .logoblock {
    float: right;
}

.logoblock_ins {
    width: 150px;
    height: 36px;
}

.logoblock_ins img {
    max-width: 250px;
    max-height: 100px;
    vertical-align: middle;
}

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

.logoblock_ins a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: #1e2130;
}

@media all and (min-width: 1170px) {
    .header_timetable {
        display: block;
    }
}

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

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

.rtl_body .topmenu_ico {
    float: left;
}

.topmenu {
    display: none;
    border-radius: 60px;
    background: #f4f2f3;
    margin: 0 0 0 40px;
}

.rtl_body .topmenu {
    float: right;
}

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

.topmenu li {
    float: left;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.topmenu li:hover {
    position: relative;
}

.rtl_body .topmenu li {
    float: right;
}

.topmenu li a {
    float: left;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 185.714% */
    background: none;
    color: #2e3033;
    padding: 0;
    text-decoration: none;
}

.rtl_body .topmenu li a {
    float: right;
}

.color_d .topmenu li a {
    color: #fff;
}

.topmenu li:hover>a {
    text-decoration: none;
}

.topmenu li:hover {
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.16);
}

.topmenu li.current-menu-item {
    border-radius: 100px;
    background: var(--Green, #18d17e);
    text-decoration: none;
}

.topmenu ul ul {
    position: absolute;
    float: none;
    display: none;
    top: 34px;
    left: 0px;
    background: #fff;
    box-shadow: 0 0 5px #e1e9f2;
    border: 1px solid #eaeef4;
    border-radius: 4px;
    padding: 10px 0;
    height: auto;
    width: 235px;
    margin: 0;
}

.rtl_body .topmenu ul ul {
    left: auto;
    right: 0px;
}

.color_d .topmenu ul ul {
    border: 1px solid #444c61;
    background: #282d40;
    box-shadow: none;
}

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

.rtl_body .ugmenu {
    left: auto;
    right: 20px;
}

.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: 13px "Nunito", sans-serif;
    background: none;
    color: #2e3033;
    border-bottom: none;
    text-decoration: none;
    text-transform: none;
}

.rtl_body .topmenu ul ul li>a,
.rtl_body .topmenu ul ul li.current-menu-item>a {
    padding: 8px 20px 8px 10px;
}

.color_d .topmenu ul ul li>a,
.color_d .topmenu ul ul li.current-menu-item>a {
    color: #fff;
}

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

.color_d .topmenu ul ul li:hover>a {
    color: #fff;
    background: #1e2130;
}

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

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

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

.rtl_body .topmenu ul ul ul {
    left: auto;
    right: 235px;
}

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


/* end top menu */


/* mobile menu */

.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_button {
    display: flex;
    margin: 40px 0 32px;
}

.mobile_menu_button_wrap {
    display: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mobile_menu_button_wrap a.toplink.toplink_signup {
    padding: 18px 24px;
    width: 50%;
    margin: 0;
}

.mobile_menu_button a.toplink {
    width: 50%;
    padding: 18px 24px;
    margin: 0 8px 0 0;
}

.mobilemenu_contacts {
    display: flex;
    flex-direction: column;
}

.mobile_menu_icon {
    border-radius: 56px;
    border: 1px solid #00a3ff;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
}

.mobile_menu_icon a {
    color: #00a3ff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    padding: 8px 24px 8px 16px;
}

.mobile_menu_icon.telegram:hover {
    border-radius: 56px;
    border: 1px solid #00a3ff;
    /* background: rgba(0, 163, 255, 0.10); */
    text-decoration: none;
    background: rgba(0, 163, 255, 0.1) url(images/telegram.png) no-repeat 33% center;
}

.mobile_menu_icon.telegram {
    background: url(images/telegram.png) no-repeat 33% center;
}

.mobilemenu_contacts .tolbar_lang {
    display: flex;
    justify-content: center;
}

.mobilemenu_contacts .langlist_title {
    border: none;
}

.color_d .mobile_menu {
    background: #282d40;
}

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

.mobile_menu_title {
    color: #000000;
    font: 700 24px "Nunito", sans-serif;
    padding: 0 0 10px 0;
}

.color_d .mobile_menu_title {
    color: #fff;
}

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

.rtl_body .mobile_menu_close {
    right: auto;
    left: 10px;
}

.mobile_menu_ins {
    margin-bottom: auto;
}

.mobile_menu_ins li {
    display: block;
}

.mobile_menu_ins li a {
    display: block;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding: 8px 0px;
    text-decoration: none;
    color: var(--Black, #000);
}

.color_d .mobile_menu_ins li a {
    color: #fff;
}

.mobile_menu_ins li.current-menu-item>a {
    position: relative;
    color: var(--Green, #18d17e);
}


/* end mobile menu */

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

@media all and (max-width: 600px) {
    .wrapper {
        min-height: 50px;
        padding: 0;
    }
}

.content_wrap {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 40px 5px 0 5px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.home .content_wrap {
    padding: 0;
    max-width: 100%;
}


/* inside content */

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

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


/* end inside content */


/* text page */

.page_wrap,
.textblock {
    margin: 0 0 20px 0;
    padding: 20px 20px 1px;
}

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

.text h3 {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 20px 0;
}

.text h4 {
    font: 600 16px "Nunito", sans-serif;
    margin: 0 0 20px 0;
}

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

.rtl_body .text ul {
    margin: 0 20px 20px 0px;
}

.rtl_body .text ul ul {
    margin: 0 20px 0px 0px;
}

.text ul li {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 19.6px */
    padding: 0 0 16px;
}

.rtl_body .text ul li {
    padding: 0 12px 5px 0px;
    background-position: right 3px !important;
}

.text ol {
    list-style-type: decimal;
    margin: 0 0 20px 40px;
}

.rtl_body .text ol {
    margin: 0 40px 20px 0px;
}

.text ol ol {
    margin: 0 0 0px 20px;
    padding: 10px 0 10px 0;
}

.rtl_body .text ol ol {
    margin: 0 20px 0px 0px;
}

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

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

.color_d .text table th {
    color: #8094ad;
    background: #1e2130;
    border-bottom: 1px solid #353b51;
}

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

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

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

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

.text table td {
    font: 13px "Nunito", sans-serif;
    background: #ffffff;
    color: #000;
    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;
}

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

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


/* end text page */

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

.rtl_body .metabox_left {
    float: right;
}

.metabox_cats,
.metabox_tags {
    font: 12px "Nunito", sans-serif;
}

.metabox_cats a,
.metabox_tags a {
    text-decoration: underline;
}

.metabox_cats a:hover,
.metabox_tags a:hover {
    text-decoration: none;
}


/* site form */

.log_div_wrap,
.reg_div_wrap {
    display: flex;
    justify-content: center;
}

.reg_div_wrap form,
.log_div_wrap form {
    border-radius: 40px;
    border: 1px solid var(--Black, #000);
    background: var(--Black, #000);
    padding: 32px 40px;
    margin: 0 auto 50px;
    color: #ffff;
}

.reg_div_title,
.log_div_title {
    color: var(--White, #fff);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 0 0 15px;
}

.cf_div_wrap {
    display: flex;
    width: 676px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 40px;
    border: 1px solid var(--Black, #000);
    background: var(--Black, #000);
    margin: 0 auto 120px;
}

.cf_div_wrap form {
    width: 100%;
}

.color_d .log_div_wrap,
.color_d .cf_div_wrap,
.color_d .reg_div_wrap,
.color_d .lp_div_wrap,
.color_d .rf_div_wrap,
.color_d .acf_div_wrap,
.color_d .domacc_div_wrap,
.color_d .checkstatus_div_wrap,
.color_d .userverify_div_wrap {
    background: #1e2130;
    box-shadow: none;
}

.lp_div_title,
.rf_div_title,
.acf_div_title,
.domacc_div_title,
.checkstatus_div_title,
.userverify_div_title {
    color: var(--White, #fff);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 0 0 15px;
}

.cf_div_title {
    color: var(--White, #fff);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 56px */
}

.color_d .log_div_title,
.color_d .cf_div_title,
.color_d .reg_div_title,
.color_d .lp_div_title,
.color_d .rf_div_title,
.color_d .acf_div_title,
.color_d .domacc_div_title,
.color_d .checkstatus_div_title,
.color_d .userverify_div_title {
    color: #fff;
}

.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,
.checkstatus_label,
.uv_label {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 12px;
}

.color_d .log_label,
.color_d .cf_label,
.color_d .reg_label,
.color_d .lp_label,
.color_d .rf_label,
.color_d .acf_label,
.color_d .checkstatus_label,
.color_d .uv_label {
    color: #8096ad;
}

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

.acf_div_wrap {
    margin: 0 114px 0 122px;
}

.acf_line {
    width: 48%;
    margin: 0 8px 16px 0;
}

.acf_line.has_submit input[type="submit"] {
    width: auto;
}

.acf_label {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
    margin: 0 0 14px 0;
}

.acf_line_ins input[type="text"],
.acf_line_ins input[type="email"],
.acf_line_ins input[type="password"] {
    border-radius: 8px;
    border: 1px solid var(--Grey-03, #d6d6d6);
    background: none;
    color: var(--Grey-04, #999);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    width: 100%;
}

.acf_line_ins input[type="text"]:disabled,
.acf_line_ins input[type="email"]:disabled,
.acf_line_ins input[type="password"]:disabled {
    color: var(--Grey-04, #999);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 19.2px */
    border-radius: 8px;
    border: 1px solid var(--Grey-03, #d6d6d6);
    width: 100%;
}

.log_line_subm_left,
.reg_line_subm_left {
    display: flex;
    justify-content: center;
}

.rtl_body .log_line_subm_left,
.rtl_body .reg_line_subm_left {
    float: right;
}

.log_line_subm_right,
.reg_line_subm_right {
    display: flex;
    justify-content: space-between;
    color: #18d17e !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.reg_line_subm_right a,
.reg_line a,
.log_line_subm_right a {
    color: #18d17e !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.reg_line a:hover,
.reg_line_subm_right a:hover,
.log_line_subm_right a:hover {
    color: #18d17e !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-decoration-line: underline;
    cursor: pointer;
}

.reg_line_subm_left input[type="submit"],
.log_line_subm_left input[type="submit"] {
    max-width: 100%;
    border-radius: 68px;
    background: var(--Green, #18d17e);
    border: none;
    padding: 18px 32px;
}

.rtl_body .log_line_subm_right {
    float: right;
    margin: 0 20px 0 0px;
}

.log_line_subm_right p {
    padding: 1px 0;
}

.reg_line_subm_right {
    justify-content: center;
    padding: 20px 0 0 0;
}

.rtl_body .reg_line_subm_right {
    float: right;
    margin: 11px 20px 0 0px;
}


/* end site form */

.acf_div_ins {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 80px 0;
}


/* atable */

.pntable_wrap {
    margin: 0 122px 0 114px;
}

.pntable_wrap_title {
    font: 24px "Nunito", sans-serif;
    color: #000;
    margin: 0 0 20px 0;
}

.color_d .pntable_wrap_title {
    color: #fff;
}

.pntable {
    margin: 0 0 20px;
}

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

.pntable table th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--Grey--01, #f4f2f3);
    padding: 16px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 14px */
}

.color_d .pntable table th {
    color: #8094ad;
    background: #1e2130;
    border-bottom: 1px solid #353b51;
}

.pntable table th.th1 {
    border-radius: 16px 0 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--Grey--01, #f4f2f3);
    padding: 16px;
}

.pntable table th.th2 {
    border-radius: 0 16px 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--Grey--01, #f4f2f3);
    padding: 16px;
}

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

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

.pntable table td {
    padding: 16px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.color_d .pntable table td {
    color: #fff;
    background: #1e2130;
    border-bottom: 1px solid #353b51;
}

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

.color_d .pntable table tr:hover td {
    background: #282d40;
}

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

.pntable table td.td2 {
    border-radius: 0 0 4px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

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

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

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

.pntable .one_item {
    padding: 15px 20px;
    margin: 0 0 10px 0;
    display: block;
}

.color_d .pntable .one_item {
    box-shadow: none;
    background: #1e2130;
}

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

.color_d .pntable .one_item:hover {
    background: #282d40;
}

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

.pntable .one_item_label {
    padding: 0 10px 0px 0;
    font: 600 13px "Nunito", sans-serif;
}

.pntable .one_item_content {
    font: 13px "Nunito", sans-serif;
}

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

.rtl_body .exch_course2 {
    background-position: right center !important;
    padding: 1px 12px 0 0px;
    margin: 0 6px 0 0px;
}

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 */


/* homepage */

.homepage_wrap {
    width: 100%;
    max-width: 1440px;
}

.home_wtext_wrap {
    position: relative;
    width: 100%;
}

.home_wtext_ins {
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    padding: 0px 40px 0px 40px;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.home_wtext_block {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.color_d .home_wtext_block {
    background: #1e2130;
    box-shadow: none;
}

.home_wtext_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    width: 550px;
}

.home_wtext_div {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    width: 450px;
}

.home_text_wrap {
    position: relative;
    z-index: 13;
    width: 100%;
}

.color_d .home_text_wrap {
    background: #282d40;
}

.home_text_ins {
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    padding: 80px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 56px */
}

.home_text_ins a {
    color: var(--primary-base, #18d17e);
    text-decoration: none;
}

h1.home_text_title {
    display: block;
    margin: 0 0 20px 0;
    font: 600 30px/30px "Nunito", sans-serif;
    color: #2e3033;
}

.color_d h1.home_text_title {
    color: #fff;
}

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

.home_lchange_wrap_ins {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 10px;
}

.home_lchange_title {
    margin: 0 0 25px 0;
    color: #2e3033;
    font: 600 30px/30px "Nunito", sans-serif;
}

.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;
    }
    .rtl_body .home_lchange_one {
        float: right;
    }
    .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%;
    }
    .rtl_body .home_lchange_one {
        float: right;
        margin: 0 0px 0 2%;
    }
    .home_lchange_one.last_item {
        margin: 0;
        display: block;
    }
}

.home_lchange_one_ins {
    background: #fff;
    box-shadow: 0 0 5px #e1e9f2;
    color: #6b8199;
    border-radius: 4px;
    padding: 20px 0px 20px 20px;
}

.color_d .home_lchange_one_ins {
    background: #1e2130;
    box-shadow: none;
}

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

.home_lchange_date {
    font: 13px "Nunito", sans-serif;
    color: #6b8199;
    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;
}

.rtl_body .home_lchange_ico {
    float: right;
}

.home_lchange_txt {
    float: left;
    width: 80px;
    font: 13px "Nunito", sans-serif;
    padding: 3px 0 0 5px;
    color: #000;
}

.color_d .home_lchange_txt {
    color: #fff;
}

.rtl_body .home_lchange_txt {
    float: right;
    padding: 3px 5px 0 0px;
}

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

.rtl_body .home_lchange_arr {
    float: right;
}

.home_prate_wrap {
    padding: 30px 0 20px 0;
    position: relative;
    width: 100%;
    z-index: 10;
}

.home_prate_ins {
    max-width: 1150px;
    padding: 0 10px;
    margin: 0 auto;
}

.home_prate_blocktitle {
    margin: 0 0 25px 0;
    color: #2e3033;
    font: 600 30px/30px "Nunito", sans-serif;
}

.color_d .home_prate_blocktitle {
    color: #fff;
}

.home_prate_div_wrap {
    overflow: hidden;
}

.home_prate_one {
    margin: 0 0px 20px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: #fff;
    border: 1px solid #e6ecf4;
    box-shadow: 0 0 5px #e1e9f2;
    border-radius: 4px;
    padding: 20px 20px;
}

.color_d .home_prate_one {
    background: #1e2130;
    border: 1px solid #1e2130;
    box-shadow: none;
}

@media all and (min-width: 700px) {
    .home_prate_div_wrap {
        margin: 0 0 20px 0;
    }
    .home_prate_one {
        float: left;
        margin: 0 2% 20px 0;
        width: 32%;
    }
    .rtl_body .home_prate_one {
        float: right;
        margin: 0 0px 20px 2%;
    }
    .home_prate_one.last_item {
        margin: 0 0 20px;
    }
}

.home_prate_source {
    padding: 0 0 5px 0;
    font: 500 15px "Nunito", sans-serif;
    color: #000;
}

.color_d .home_prate_source {
    color: #fff;
}

.home_prate_rates {
    font: 13px "Nunito", sans-serif;
    color: #848680;
}

.color_d .home_prate_rates {
    color: #94aeb9;
}

.home_prate_rates span {
    padding: 0 0 0 2px;
    font-weight: 600;
}

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

.home_reserv_block_ins {
    max-width: 1150px;
    padding: 0 10px;
    margin: 0 auto;
}

.home_reserv_title {
    margin: 0 0 25px 0;
    color: #2e3033;
    font: 600 30px/30px "Nunito", sans-serif;
}

.color_d .home_reserv_title {
    color: #fff;
}

.home_reserv_many {
    padding: 0 0 10px 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;
    }
    .rtl_body .one_home_reserv {
        float: right;
    }
}

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

.one_home_reserv_ins {
    background: #fff;
    border: 1px solid #e6ecf4;
    box-shadow: 0 0 5px #e1e9f2;
    border-radius: 4px;
    padding: 15px 0px 15px 15px;
}

.color_d .one_home_reserv_ins {
    background: #1e2130;
    border: 1px solid #1e2130;
    box-shadow: none;
}

.rtl_body .one_home_reserv_ins {
    padding: 15px 15px 15px 0px;
}

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

.rtl_body .one_home_reserv_ico {
    float: right;
}

.one_home_reserv_block {
    float: left;
    width: 155px;
    color: #000;
    font: 14px "Nunito", sans-serif;
    padding: 1px 0 0 10px;
}

.color_d .one_home_reserv_block {
    color: #fff;
}

.rtl_body .one_home_reserv_block {
    float: right;
    padding: 1px 10px 0 0px;
}

.one_home_reserv_title {
    font: 600 14px "Nunito", sans-serif;
    margin: 0 0 1px 0;
}

.home_news_wrap {
    position: relative;
    z-index: 9;
    width: 100%;
}

.color_d .home_news_wrap {
    background: #282d40;
}

.home_news {
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    padding: 0 40px 80px 40px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.home_news_block_top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 67px;
}

.home_news_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 56px */
}

.color_d .home_news_title {
    color: #fff;
}

.home_news_div_wrap {
    margin: 0;
}

.home_news_one {
    margin: 0 0 20px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

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

.home_news_one_image img {
    border-radius: 10px;
    max-width: 448px;
    width: 100%;
    max-height: 320px;
}

.home_news_one_date {
    color: var(--Grey-05, #666);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 22.4px */
    margin: 0 0 10px 0;
}

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

.home_news_one_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
}

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

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

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

.home_news_one_content {
    font: 15px "Nunito", sans-serif;
}

.home_news_one_content a {
    color: #6b8199;
    text-decoration: none;
}

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

@media all and (min-width: 700px) {
    .home_news_div_wrap {
        margin: 0 0 20px 0;
    }
    .home_news_one {
        float: left;
        margin: 0 2% 0 0;
        width: 32%;
    }
    .rtl_body .home_news_one {
        float: right;
        margin: 0 0px 0 2%;
    }
    .home_news_one.last_item {
        margin: 0;
    }
}

.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 {
    text-decoration: none;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    border-radius: 68px;
    border: 1px solid var(--Black, #000);
    display: flex;
    padding: 18px 24px;
    align-items: center;
    gap: 8px;
    position: relative;
}

a.home_news_more:hover,
a.home_reviews_more:hover,
a.home_reserv_more:hover {
    border-radius: 68px;
    border: 1px solid var(--Black, #000);
    background: #e6e6e6;
}

a.home_news_more:active,
a.home_reviews_more:active,
a.home_reserv_more:active {
    border-radius: 68px;
    border: 1px solid var(--Black, #000);
    background: #ccc;
}

.home_reviews_wrap {
    position: relative;
    z-index: 11;
    width: 100%;
}

.home_reviews_ins {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 80px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    border-radius: 64px;
    border: 1px solid var(--Black, #000);
    background: var(--Black, #000);
}

.home_reviews_block {
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.home_reviews_title {
    margin: 0 0 64px 0;
    color: var(--White, #fff);
    text-align: center;
    font-family: Manrope;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.color_d .home_reviews_title {
    color: #fff;
}

.home_reviews_div {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    width: 137%;
    align-items: center;
    justify-content: center;
}

.home_reviews_one {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.home_reviews_one_ins {
    padding: 32px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.16);
    margin: 0 8px 8px 0;
}

.color_d .home_reviews_one_ins {
    background: #1e2130;
    box-shadow: none;
}

.home_reviews_author {
    display: flex;
    align-items: center;
}

.home_reviews_date {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.home_reviews_author img {
    margin: 0 11px 0 0;
}

.color_d .home_reviews_date {
    color: #fff;
}

.home_reviews_content {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    word-wrap: break-word;
    margin: 0 0 40px 0;
}

.color_d .home_reviews_content {
    color: #8394ae;
}

@media all and (min-width: 700px) {
    .home_reviews_one {
        float: left;
        width: 32%;
    }
    .rtl_body .home_reviews_one {
        float: right;
    }
}

.home_tags_wrap {
    display: flex;
    padding: 56px 40px 56px 40px;
    align-items: flex-start;
    gap: 122px;
    align-self: stretch;
    max-width: 1440px;
    border-radius: 64px 64px 0px 0px;
    background: var(--Grey, #f4f2f3);
    margin: 0 auto;
}

.main_tags {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tags_left {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    margin: 0 8px 0 0;
}

.tags_right {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 40px;
    background: var(--White, #fff);
}

.tags_left_title,
.tags_right_title {
    color: var(--Black, #000);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 32px */
}

.tags_left_ins,
.tags_right_ins {
    display: flex;
    flex-wrap: wrap;
}

.tags_point {
    border-radius: 68px;
    border: 1px solid rgba(0, 0, 0, 0.32);
    background: #fff;
    display: flex;
    padding: 4px 12px;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0 4px 4px 0;
    display: block;
    max-height: 15.8px;
    overflow: hidden;
}

.tags_point:hover {
    text-decoration: none;
    border-radius: 68px;
    border: 1px solid var(--Black, #000);
    background: #e6e6e6;
    color: var(--Black, #000);
}

.home_advantages_wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #f4f2f3;
    z-index: 10;
    border-radius: 0px 0px 64px 64px;
}

.home_advantages_block {
    width: 100%;
}

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

.color_d .home_advantages_wrap {
    background: #282d40;
    border-top: 1px solid #3f445a;
}

.home_advantages_ins {
    max-width: 1440px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    padding: 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    border-radius: 64px;
    border: 1px solid var(--Black, #000);
    background: var(--Black, #000);
}

.home_advantages_blocktitle {
    font: 600 30px/30px "Nunito", sans-serif;
    color: var(--White, #fff);
    text-align: center;
    font-family: Manrope;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 0 0 64px 0;
}

.color_d .home_advantages_blocktitle {
    color: #fff;
}

.home_adv_div_wrap {
    overflow: hidden;
}

.home_advantages_one {
    margin: 0 0px 20px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.home_advantages_one a {
    text-decoration: none;
}

.home_advantages_one {
    float: left;
    margin: 0 2% 20px 0;
    width: 32%;
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.16);
}

@media all and (min-width: 700px) {
    .home_adv_div_wrap {
        margin: 0 0 20px 0;
    }
    .rtl_body .home_advantages_one {
        float: right;
        margin: 0 0px 20px 2%;
    }
    .home_advantages_one.last_item {
        margin: 0 0 0 0;
    }
}

.home_advantages_img {
    margin: 0 0 10px;
    width: 48px;
    height: 48px;
}

.home_advantages_title {
    padding: 0 0 8px 0;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.color_d .home_advantages_title {
    color: #fff;
}

.home_advantages_content {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    overflow: hidden;
}

.color_d .home_advantages_content {
    color: #8094ac;
}

.home_partner_wrap {
    position: relative;
    width: 100%;
    z-index: 10;
}

.color_d .home_partner_wrap {
    background: #282d40;
    border-top: 1px solid #3f445a;
}

.home_partner_ins {
    max-width: 1440px;
    display: flex;
    padding: 56px 40px 0 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 64px 64px 0px 0px;
    background: #f4f2f3;
    margin: 0 auto;
}

.home_partner_block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_partner_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
}

.color_d .home_partner_title {
    color: #fff;
}

.home_partner_one {
    float: left;
    margin: 0 20px 10px 0;
}

.rtl_body .home_partner_one {
    float: right;
    margin: 0 0px 10px 20px;
}


/* end homepage */

.xchange_table_wrap {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 80px 40px 80px 40px;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}


/* type table 3 */

.xchange_type_list {
    width: 100%;
}

.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: #f4f8fc url(images/ajax-big-loader.webp) no-repeat center center;
    background-size: contain;
    opacity: 0.6;
}

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

.xtl_table_body {
    width: 80%;
    display: flex;
    position: relative;
}

#js_html {
    display: flex;
    justify-content: space-between;
}

.xtl_left_col,
.xtl_right_col {
    border-radius: 30px;
    background: #f4f2f3;
    display: flex;
    padding: 32px;
    flex-direction: column;
    margin: 0 8px 0 0;
}

.color_d .xtl_left_col,
.color_d .xtl_right_col {
    background: #1e2130;
    box-shadow: none;
}

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

.xtl_submit_wrap {
    display: flex;
    width: 220px;
    padding: 40px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    text-decoration: none;
    border-radius: 30px;
    background: var(--primary-base, #18d17e);
}

.xtl_submit_wrap:hover {
    border-radius: 32px;
    background: #02b866;
}

.xtl_submit_wrap:active {
    border-radius: 32px;
    background: #0c985a;
}

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

a.xtl_change:hover {
    opacity: 0.8;
}

@media all and (min-width: 900px) {
    .color_d .xtl_table_wrap {
        background: #1e2130;
        box-shadow: none;
    }
    .xtl_left_col {
        float: left;
        width: 47%;
        position: relative;
        padding: 40px 40px 32px 24px;
    }
    .rtl_body .xtl_left_col {
        float: right;
    }
    .xtl_center_col {
        position: absolute;
        right: 47.5%;
        top: 90px;
        z-index: 10;
    }
    .rtl_body .xtl_center_col {
        float: right;
    }
    .xtl_right_col {
        float: right;
        width: 47%;
        position: relative;
        padding: 40px 24px 32px 40px;
    }
    .rtl_body .xtl_right_col {
        float: left;
    }
}

.xtl_table_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    padding: 0 0 20px 0;
}

.color_d .xtl_table_title {
    color: #fff;
}

.xtl_ico_wrap {
    display: none;
}

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

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

.xtl_input_wrap input {
    padding: 0 20px 0 0;
    height: 50px;
    width: 100%;
    border: none;
    background: none;
    color: var(--Black, #000);
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

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

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

.rtl_body .xtl_commis_text {
    left: 10px;
    right: auto;
    text-align: left;
}

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

.xtl_line {
    padding: 0 0 10px 0;
    font: 13px "Nunito", sans-serif;
    display: none;
}

.xtl_line span {
    font-weight: 600;
}


/* end type table 3 */

.js_amount {
    cursor: pointer;
    display: none;
}

.js_wrap_error {
    position: relative;
}

.js_error {
    display: none;
    position: absolute;
    z-index: 10;
    top: 102%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: auto;
    padding: 5px;
    color: var(--Red, #ff2626);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.js_error a {
    color: #fff;
}

.color_d .js_error {
    background: #dd595c;
}

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

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

.js_wrap_error.error input {
    border-radius: 8px;
    border: 1px solid var(--Red, #ff2626);
}

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

.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 "Nunito", sans-serif;
    padding: 15px 20px;
    border-radius: 4px;
    color: #6b8199;
    background: #f1f4fa;
}

.color_d .info_window {
    color: #7c90a8;
    background: #282d40;
}

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

.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;
}

.color_d .info_window_abs {
    background: url(images/ug_d.png) no-repeat;
}

.rtl_body .info_window_abs {
    left: auto;
    right: 36px;
}

.js_choice_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/choice.png) no-repeat center center;
}

.rtl_body .js_choice_link {
    left: auto;
    right: 15px;
}

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

.js_choice_ul {
    position: absolute;
    float: none;
    top: 0;
    left: 0px;
    width: 250px;
    background: #fff;
    border-radius: 4px;
    font: 12px "Nunito", sans-serif;
    color: #000;
    box-shadow: 0 0 5px #9fa3a1;
    display: none;
}

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

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

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

.rtl_body input.js_choice_input {
    padding-right: 40px;
}


/* end all */


/* exch */

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

#exchange_status_html {
    display: flex;
}

#exchange_status_html .notice_message {
    margin: 0;
    width: 80%;
}

.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 {
    display: grid;
    grid-template-columns: 68% 25%;
    grid-template-rows: auto auto;
}

.color_d .xchange_div {
    background: #1e2130;
    box-shadow: none;
}

.xchange_data_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 24px;
}

.xchange_pers_title {
    margin: 0px 0px 32px;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.xchange_pers_label {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 14px */
    color: var(--White, #fff);
    margin: 0 0 12px;
}

.color_d .xchange_data_title,
.color_d .xchange_pers_title {
    color: #fff;
}

.xchange_data_div {
    width: 100%;
}

.xchange_div_col_give {
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 32px;
    background: #f4f2f3;
    margin: 0 0 8px 0;
}

.xchange_course_line {
    color: #000;
    padding: 10px 0;
}

.xchange_div_col_get {
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 32px;
    background: #f4f2f3;
    margin: 0 0 40px;
}

.xchange_div_ins {
    display: flex;
    flex-direction: column;
}

.peers_div_wrap {
    border-radius: 40px;
    border: 1px solid var(--Black, #000);
    display: flex;
    width: 400px;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #000000;
}

.xchange_pers {
    width: 100%;
}

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

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

.xchange_data_left {
    margin: 0 0 16px;
}

.xchange_data_left_wallet .xchange_curs_line:first-of-type {
    border-top: 1px solid var(--Grey-03, #d6d6d6);
    padding: 40px 0 0 0;
}

.xchange_div_col_get .xchange_data_rigth_ins {
    padding: 0 0 40px 0;
}

@media all and (min-width: 700px) {
    .rtl_body .xchange_data_left,
    .rtl_body .xchange_pers_div {
        float: right;
    }
    .rtl_body .xchange_data_right {
        float: left;
    }
    .rtl_body .xchange_data_right .xchange_info_line {
        text-align: left;
    }
}

.xchange_info_line {
    font: 13px "Nunito", sans-serif;
}

.js_course_html {
    color: #000;
    padding: 10px 0px;
}

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

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

.xchange_sum_line {
    position: relative;
}

.xchange_sum_label {
    font: 13px "Nunito", sans-serif;
    color: #6b8199;
    padding: 0 0 5px 0;
}

.xchange_sum_input {
    position: relative;
}

.xchange_sum_input input {
    background: none;
    border: none;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

@media all and (min-width: 700px) {
    .rtl_body .xchange_sum_line {
        padding: 0 120px 0 0px;
    }
    .xchange_sum_label {
        position: absolute;
        float: none;
        top: 0;
        left: 0;
        width: 110px;
        height: 50px;
        font: 12px/50px "Nunito", sans-serif;
        text-align: right;
        padding: 0;
    }
    .rtl_body .xchange_sum_label {
        left: auto;
        right: 0;
        text-align: left;
    }
}

.xchange_sumandcom {
    color: #6b8199;
    font: 13px/16px "Nunito", sans-serif;
    margin: 0 0 20px 0;
}

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

.xchange_curs_label {
    padding: 0 0 12px 0;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.xchange_curs_input,
.xchange_pers_input {
    position: relative;
}

.xchange_pers_input input {
    font: 16px/50px "Nunito", sans-serif;
    height: 50px;
    width: 100%;
}

.xchange_curs_input input {
    border-radius: 8px;
    border: 1px solid var(--Grey-03, #d6d6d6);
    background: none;
    color: var(--Grey-04, #999);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    width: 100%;
}

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

.xchange_submit_div {
    width: 100%;
}

.xchange_div_cols {
    margin: 0 115px 0 0;
}

.xchange_data_ins {
    display: flex;
    flex-direction: column;
}

input.xchange_submit {
    display: flex;
    height: 62px;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 68px;
    background: var(--Green, #18d17e);
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    border: none;
    width: 100%;
}

.xchange_checkdata_div,
.xchange_div .exchange_checkpersdata {
    padding: 0 0px 10px 0px;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.xchange_checkdata_div a {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-decoration-line: underline;
}

.select_clear {
    position: absolute;
    left: 92%;
    top: 34%;
    background-image: url(https://eezy.cash/wp-content/uploads/Cross.svg);
    width: 20px;
    height: 20px;
}

.select_js_no_results {
    display: flex;
    height: 190px;
    padding: 8px 18px 8px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.other_directions_wrap {
    background: #fff;
    box-shadow: 0 0 5px #e1e9f2;
    border-radius: 4px;
    padding: 20px 20px 10px;
    margin: 0 0 20px 0;
}

.color_d .other_directions_wrap {
    background: #1e2130;
    box-shadow: none;
}

.other_directions_title {
    color: #000;
    font: 600 24px "Nunito", sans-serif;
    margin: 0 0px 20px;
}

.color_d .other_directions_title {
    color: #fff;
}

a.other_direction {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
    text-decoration: none;
    font: 13px "Nunito", sans-serif;
}

@media all and (max-width: 599px) {
    a.other_direction {
        float: none;
        width: 100%;
        display: block;
    }
}

.other_direction_data {
    float: left;
    width: 48%;
    height: 30px;
}

.other_direction_title {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    height: 30px;
    padding: 0 0 0 35px;
}

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

.other_direction_arr {
    float: left;
    width: 4%;
    height: 30px;
    background: url(images/liarr.png) no-repeat center center;
}


/* end exch */


/* 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 {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    overflow: hidden;
    position: relative;
}

.color_d .select_js_title {
    background: #1e2130;
    border: 1px solid #353b51;
    color: #fff;
}

.select_js.open .select_js_title {
    background: #fff;
}

.color_d .select_js.open .select_js_title {
    background: #1e2130;
}

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

.rtl_body .select_js_abs {
    right: auto;
    left: 20px;
}

.select_js_title_ins {
    padding: 0 20px 0 20px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}

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

.iselect_js .select_js_title_ins {
    padding: 8.615px 0px 8.109px 65px;
}

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

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

.select_js_ulli .select_ico {
    top: 5px;
}

.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;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.select_js_search input {
    width: 100%;
    height: 67px;
    border: none;
    position: relative;
}

.select_js_search input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
}

.select_js_search input[type="search"]::-moz-search-clear {
    display: none;
}

.select_js_search input[type="search"]::-ms-clear,
.select_js_search input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.select_js_ul {
    display: none;
    position: absolute;
    z-index: 30;
    float: none;
    top: 100%;
    padding: 8px 18px 8px 8px;
    border-radius: 16px;
    background: var(--White, #fff);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.16);
    width: 100%;
    min-width: 100px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    max-height: 300px;
    overflow-y: auto;
    margin: 22px 0 0 0;
}

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

.select_js_ulli {
    position: relative;
    overflow: hidden;
    padding: 8px 20px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

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

.iselect_js .select_js_ulli {
    padding: 0 10px 0 60px;
    min-height: 50px;
}

.select_js_ulli:hover,
.select_js_ulli.active {
    border-radius: 8px;
    background: var(--Grey--01, #f4f2f3);
}

.color_d .select_js_ulli:hover,
.color_d .select_js_ulli.active {
    background: #282d40;
}


/* end select */

.mobile_lang {
    display: none;
}


/* footer */

.footer_wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    color: #6b8199;
    background: var(--Grey--01, #f4f2f3);
}

.color_d .footer_wrap {
    background: #1e2130;
    color: #8094ad;
}

.footer {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 80px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 64px 64px 0px 0px;
    background: #000;
}

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

.footer_menu li a {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer_menu li a:hover {
    text-decoration: none;
}

.footer_phone {
    color: #2e3033;
}

.color_d .footer_phone {
    color: #fff;
}

.footer_phone a {
    color: #2e3033;
}

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

@media all and (max-width: 699px) {
    .copyright {
        text-align: center;
    }
    .footer_menu {
        padding: 0 0px 15px 0;
        text-align: center;
    }
    .footer_menu li {
        display: block;
        margin: 0 0 5px 0;
    }
    .footer_soc {
        text-align: center;
        padding: 0 0 10px 0;
    }
    .footer_soc img {
        margin: 0 2px;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .footer_soc img:hover {
        opacity: 0.7;
    }
    .footer_phone {
        text-align: center;
        padding: 0 0 20px;
        font: 600 18px "Nunito", sans-serif;
    }
    .footer_timetable {
        text-align: center;
    }
}

@media all and (min-width: 700px) and (max-width: 959px) {
    .footer_left {
        float: left;
        padding: 10px 0px 20px 0;
        width: 340px;
    }
    .rtl_body .footer_left {
        float: right;
    }
    .footer_menu li {
        float: left;
        margin: 0 24px 0px 0;
    }
    .rtl_body .footer_menu li {
        float: right;
        margin: 0 0 5px 10px;
    }
    .footer_center {
        float: right;
        padding: 0 0 20px 0;
    }
    .rtl_body .footer_center {
        float: left;
    }
    .footer_soc {
        text-align: right;
    }
    .rtl_body .footer_soc {
        text-align: left;
    }
    .footer_soc img {
        margin: 0 0px 0 5px;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .rtl_body .footer_soc img {
        margin: 0 5px 0 0px;
    }
    .footer_soc img:hover {
        opacity: 0.7;
    }
    .footer_line {
        clear: both;
    }
    .footer_timetable {
        color: var(--White, #fff);
        font-family: "Manrope";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }
    .footer_phone {
        height: 27px;
        background: url(images/foot_phone.png) no-repeat left center;
        padding: 0 0 0 20px;
        margin: 0 0 15px 0;
        font: 600 18px/27px "Nunito", sans-serif;
    }
    .color_d .footer_phone {
        background: url(images/foot_phone_d.png) no-repeat left center;
    }
    .rtl_body .footer_phone {
        background-position: right center;
        padding: 0 20px 0 0px;
    }
}

@media all and (min-width: 960px) {
    .footer_left {
        float: left;
        /* padding: 10px 0px 0px 0; */
        width: 380px;
    }
    .rtl_body .footer_left {
        float: right;
    }
    .copyright {
        padding: 0 20px 20px 0;
    }
    .footer_menu li {
        float: left;
        margin: 0 10px 5px 0;
    }
    .rtl_body .footer_menu li {
        float: right;
        margin: 0 0 5px 10px;
    }
    .footer_center {
        float: left;
        padding: 0 0 0px 0;
    }
    .rtl_body .footer_center {
        float: right;
    }
    .footer_soc {
        text-align: left;
        padding: 0 0 8px 0;
    }
    .rtl_body .footer_soc {
        text-align: right;
    }
    .footer_soc img {
        margin: 0 5px 0 0px;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .rtl_body .footer_soc img {
        margin: 0 0px 0 5px;
    }
    .footer_soc img:hover {
        opacity: 0.7;
    }
    .footer_right {
        float: right;
        width: 260px;
        padding: 10px 0 0 0;
    }
    .rtl_body .footer_right {
        float: left;
    }
}

.footers_center_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

@media all and (min-width: 1170px) {
    .footer_left {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        margin: 0 0 40px;
    }
    .footer_soc img {
        margin: 0 10px 0 0px;
    }
    .rtl_body .footer_soc img {
        margin: 0 0px 0 10px;
    }
}


/* end footer */


/* tooltips */

.form_field_line.has_tooltip .form_field_ins {
    position: relative;
}

.form_field_ins input[type="text"],
.form_field_ins input[type="email"],
.form_field_ins input[type="password"] {
    width: 100%;
    background: none;
    border-radius: 8px;
    border: 1px solid var(--Grey-03, #d6d6d6);
    color: var(--Grey-04, #999);
}

.has_tooltip .form_field_label_ins {
    position: relative;
    padding: 0 20px 0 0px;
}

.rtl_body .has_tooltip .form_field_label_ins {
    padding: 0 0px 0 20px;
}

.has_tooltip .field_tooltip_label {
    position: absolute;
    float: none;
    display: block;
    width: 16px;
    height: 16px;
    top: 0px;
    right: 0;
    cursor: help;
    background: url(images/question.png) no-repeat right center;
}

.rtl_body .has_tooltip .field_tooltip_label {
    right: auto;
    left: 0;
}

.field_tooltip_div {
    display: none;
    z-index: 100;
    position: absolute;
    float: none;
    top: 100%;
    left: 0;
    width: 300px;
    max-width: 100%;
}

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

.has_tooltip.showed .field_tooltip_div {
    display: block;
}

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

.color_d .field_tooltip_abs {
    background: url(images/ug_d.png) no-repeat;
}

.rtl_body .field_tooltip_abs {
    left: auto;
    right: 36px;
}

.field_tooltip {
    font: 12px/14px "Nunito", sans-serif;
    padding: 15px 20px;
    border-radius: 4px;
    color: #6b8199;
    background: #f1f4fa;
}

.color_d .field_tooltip {
    color: #7c90a8;
    background: #282d40;
}


/* end tooltips */


/* notify */


/* window */

.standart_shadow {
    position: fixed;
    float: none;
    top: 0;
    left: 0;
    z-index: 999999;
    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: 448px;
    margin: 0 auto;
    padding: 0 10px;
}

.standart_window_ins {
    border-radius: 40px;
    background: var(--White, #fff);
    padding: 24px;
}

.color_d .standart_window_ins {
    background: #1e2130;
}

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

.rtl_body .standart_window_close {
    left: 20px;
    right: auto;
}

.standart_window_title {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin: 0 0 32px;
    text-align: center;
}

.color_d .standart_window_title {
    background: #282d40;
    color: #fff;
}

.rtl_body .standart_window_title {
    padding: 15px 20px 15px 40px;
}

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

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

.rb_label {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 0 0 8px;
}

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

.rb_line a {
    color: #18d17e;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 162.5% */
    text-decoration-line: underline;
}

.form_field_label.rb_label {
    text-align: left;
}

.rb_line input[type="submit"] {
    border-radius: 68px;
    background: var(--Green, #18d17e);
    width: 100%;
    border: none;
    padding: 18px 32px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}


/* end window */


/* top button */

.topbutton {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #0c72d7 url(images/topped.png) no-repeat center center;
    opacity: 0.7;
    position: fixed;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 99999;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.topbutton:hover {
    opacity: 1;
}


/* end top button */


/* result message */

.resulttrue {
    padding: 14px 20px;
    border-radius: 3px;
    color: #000;
    background: #e1f4eb;
    margin: 8px 0 20px 0;
    font: 13px "Nunito", sans-serif;
}

.resulttrue a {
    color: #000;
}

.resultfalse,
.xtp_error,
.xtl_error {
    width: 100%;
    margin: 8px 0 0 0;
    color: var(--Red, #ff2626);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
}

.resultfalse a,
.xtp_error a,
.xtl_error a {
    color: #000;
}


/* end result message */


/* classed */

.red,
.req {
    color: var(--Green, #18d17e);
}

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

.bgreen {
    font-weight: 600;
    color: #3ab448;
}

.pn_copy {
    padding: 0 5px 0 25px;
    background: url(images/copy_b.png) no-repeat 0 center;
}

.pn_copy.copied {
    color: #08b868;
    background: url(images/copy.png) no-repeat 0 center;
}

.break_words {
    word-break: break-all;
    word-wrap: break-word;
}

.hidden_line {
    display: none;
}

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

span.js_timer {
    display: block;
    width: 260px;
    color: var(--Black, #000);
    text-align: center;
    font-family: "Odibee Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 33.6px */
    margin: 0 auto 20px;
}

.color_d span.js_timer {
    background: #282d40;
    color: #fff;
}

.comment_user {
    background: #eff7ff;
    color: #2e3033;
    border-radius: 3px;
    padding: 15px;
    margin: 0 0 20px 0;
}

.color_d .comment_user {
    background: #323851;
    color: #fff;
}

.currency_logo {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat no-repeat;
}

.clear {
    clear: both;
}

img.alignnone {
    display: block;
    margin: 0 auto;
}

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin: 20px auto;
}

a img.alignnone {
    display: block;
    margin: 0 0 20px 20px;
}

a img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

a img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

a img.aligncenter {
    display: block;
    margin: 20px auto;
}

.blog .sidebar,
.single-post .sidebar {
    display: none;
}

.blog .content {
    width: 100%;
}

.single .content {
    width: 1440px;
    margin: 0 auto;
}

.single .content_wrap {
    padding: 0;
}

.metabox_div {
    display: flex;
    border-radius: 64px 64px 0px 0px;
    background: var(--Grey--01, #f4f2f3);
    padding: 56px 40px 0px 40px;
    gap: 40px;
    align-self: stretch;
}

.has_submit input[type="submit"] {
    display: flex;
    height: 62px;
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 68px;
    background: var(--Green, #18d17e);
    text-decoration: none;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    /* 162.5% */
    width: 100%;
    border: none;
}

.has_submit input[type="submit"]:hover {
    border-radius: 68px;
    background: #02b866;
}

.has_submit input[type="submit"]:active {
    border-radius: 68px;
    background: #0c985a;
}

.contacts_info {
    color: var(--Grey-04, #999);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.2px;
    margin: 0 0 80px 0;
}

.contacts_tg,
.contacts_mail {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.2px;
    text-decoration-line: underline;
}

.contacts_tg:hover,
.contacts_mail:hover {
    color: var(--Green, #18d17e);
}

.field_name_text {
    width: 100%;
}

.field_name_exchange_id {
    display: none;
}

.cf_div_ins {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
}

.page-template-pn-pluginpage-account .content_wrap {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
}

.page-template-pn-alifate_withdraw .content_wrap {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
}

.page-template-pn-alifate_withdraw .content {
    max-width: 77%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 1px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider {
    background-color: #18d17e;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}


/* Округлый стиль переключателя */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch_container .checkbox {
    background: none;
    padding: 0;
}

.field_name_sec_lostpass,
.field_name_alogs_telegram,
.field_name_telegram_login,
.field_name_alogs_email,
.field_name_email_login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #fff;
    padding: 24px 16px;
    width: 44%;
    margin: 0 8px 16px 0;
}

.field_name_login,
.field_name_last_name,
.field_name_first_name,
.field_name_second_name,
.field_name_user_phone,
.field_name_user_skype,
.field_name_user_telegram,
.field_name_user_passport {
    margin: 0 8px 16px 0;
}

.field_name_sec_lostpass .acf_label,
.field_name_alogs_telegram .acf_label,
.field_name_telegram_login .acf_label,
.field_name_alogs_email .acf_label,
.field_name_email_login .acf_label {
    margin: 0;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 16px */
}

.field_name_enable_ips {
    width: 100%;
    margin: 40px 0 80px 0;
}

.field_name_enable_ips textarea {
    background: none;
    border-radius: 8px;
    border: 1px solid var(--Grey-03, #d6d6d6);
    color: var(--Grey-04, #999);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.block_status_coldpay,
.block_status_error,
.block_status_verify,
.block_status_delete,
.block_status_realpay,
.block_status_success,
.block_status_cancel {
    margin: 0 auto;
    max-width: 904px;
}

.st_delete,
.st_realpay,
.st_coldpay,
.st_success,
.st_cancel,
.st_verify,
.st_error {
    text-align: center;
}

.block_status_coldpay .block_payinfo_wrap,
.block_status_error .block_payinfo_wrap,
.block_status_verify .block_payinfo_wrap,
.block_status_cancel .block_payinfo_wrap,
.block_status_delete .block_payinfo_wrap,
.block_status_realpay .block_payinfo_wrap,
.block_status_success .block_payinfo_wrap {
    margin: 0 0 40px 0;
}

.bstatus_coldpay,
.bstatus_cancel,
.bstatus_error,
.bstatus_success,
.bstatus_verify,
.bstatus_delete,
.bstatus_realpay {
    text-align: right;
    font-family: Arial;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
}

.bstatus_coldpay {
    color: #ffa133;
}

.bstatus_coldpay:before {
    content: url(images/coldpay.png);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.bstatus_cancel {
    color: var(--Red, #ff2626);
}

.bstatus_cancel:before {
    content: url(images/decline.svg);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.bstatus_error {
    color: var(--Red, #ff2626);
}

.bstatus_error:before {
    content: url(images/error.svg);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.bstatus_success {
    color: var(--Green, #18d17e);
}

.bstatus_success:before {
    content: url(images/success.svg);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.bstatus_verify {
    color: #ffa133;
}

.bstatus_verify:before {
    content: url(images/verify.svg);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.bstatus_delete {
    color: var(--Red, #ff2626);
}

.bstatus_delete:before {
    content: url(images/deleted.svg);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.bstatus_realpay {
    color: #3757ff;
}

.bstatus_realpay:before {
    content: url(images/realpay.svg);
    width: 24px;
    height: 24px;
    margin: 0 4px 0 0;
}

.page_wrap_title {
    color: var(--Black, #000);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 40px;
}

.exchange_first_step {
    text-align: left;
    font-size: 45px;
}

.faq-page {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.faq-page .text {
    display: flex;
}

.faq-menu-col {
    margin: 0 133px 0 0;
}

.faq-result-col {
    width: 60%;
    position: relative;
}

.faq-menu__item {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 26px;
    /* 162.5% */
}

.faq-menu {}

li.faq-menu__item {
    padding: 0 0 8px 0 !important;
    cursor: pointer;
}

.faq-menu__item__submenu {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 185.714% */
    padding: 0 0 8px 12px;
    text-decoration: none;
}

.faq-menu__item__submenu:hover {
    color: #18d17e;
}

.faq-menu__item.active {
    color: var(--Green, #18d17e);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 162.5% */
}

.faq-item-list>li {
    /* padding: 30px 0; */
    position: relative;
}

.faq-item-wrap {
    padding: 0 114px 80px 0;
    border-bottom: 1px solid #ccc;
    margin: 0 0 80px 0;
}

.faq-item-list>li:not(:last-child)::after {
    content: "";
    width: 100%;
    height: 0.01rem;
    background: #2f2f48;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 15px;
}

.faq-title,
.faq-item-list li strong {
    display: block;
    margin-bottom: 0.18rem;
}

.faq-partners-list li strong {
    margin-bottom: 0;
}

.faq-result__item {
    padding: 0 0.8rem 0 0.4rem;
}

.hidden {
    display: none;
}

.faq-item-h3 {
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 64px;
}

.faq_still_que {
    border-radius: 32px;
    background: var(--primary-base, #18d17e);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 64px;
}

.still_h3 {
    color: var(--Black, #000) !important;
    text-align: center !important;
    /* Headings/Desktop/H2 */
    font-family: "Manrope", sans-serif !important;
    font-size: 56px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 120% !important;
    /* 67.2px */
}

.still_p {
    color: var(--Black, #000);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 25.6px */
    margin: 16px 0 32px;
}

.still_button {
    border-radius: 68px;
    background: var(--Black, #000);
    padding: 18px 32px;
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 162.5% */
    text-decoration: none;
    margin: 0 auto;
}

.still_button:hover {
    border-radius: 68px;
    background: #4d4d4d;
    color: var(--White, #fff);
}

.home_partner_slider {
    display: flex;
    overflow: hidden;
    max-width: 100%;
}

.home_partner_one {
    min-width: 13%;
    /* Или любой другой размер, который вам подходит */
    transition: transform 0.5s ease;
}

.home_advantages_one {
    margin: 0 8px 0 0;
}

.xtl_submit_wrap {
    display: flex;
    width: 220px;
    padding: 40px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    text-decoration: none;
    border-radius: 30px;
    background: var(--primary-base, #18d17e);
}

.xtl_submit_wrap:hover {
    border-radius: 32px;
    background: #02b866;
}

.xtl_submit_wrap:active {
    border-radius: 32px;
    background: #0c985a;
}

a.xtl_submit {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.xtl_submit_ins {
    width: 100%;
    height: 100%;
    background: url(images/exarrow.svg) no-repeat top right;
}

a.xtp_submit {
    display: block;
    text-decoration: none;
    background: #0c72d8;
    border-radius: 4px;
    border: none;
    height: 50px;
    width: 260px;
    max-width: 100%;
    margin: 0 auto;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #fff;
    font: 600 18px/50px "Nunito", sans-serif;
    cursor: pointer;
    text-align: center;
}

a.xtl_submit:hover,
a.xtp_submit:hover {
    cursor: pointer;
}

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


/* end type table 2 */

@media (max-width: 600px) {
    .mobile_lang {
        display: none;
    }
    .tophead {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
    }
    .logoblock_ins {
        display: flex;
        align-items: center;
    }
    .topmenu_buttons_ins {
        display: none;
    }
    .homepage_wrap {
        max-width: 100%;
    }
    .home_wtext_block {
        flex-wrap: wrap;
    }
    .home_wtext_title {
        font-size: 40px;
        margin: 0 0 24px 0;
    }
    .home_wtext_ins {
        padding: 0 20px;
    }
    .home_wtext_div {
        font-size: 14px;
    }
    #js_html {
        flex-wrap: wrap;
    }
    .xtl_table_body {
        flex-wrap: wrap;
        width: 100%;
    }
    .xchange_table_wrap {
        padding: 32px 20px;
    }
    .xtl_left_col,
    .xtl_right_col {
        padding: 16px;
        margin: 0 0 8px;
    }
    .xtl_center_col {
        position: absolute;
        top: 43%;
        left: 43%;
    }
    .xtl_submit_wrap {
        width: 100%;
        border-radius: 16px;
        padding: 24px 16px;
    }
    .xtl_submit_wrap:active,
    .xtl_submit_wrap:hover {
        border-radius: 16px;
    }
    .xtl_submit_ins {
        min-height: 40px;
    }
    .home_partner_ins {
        padding: 32px 20px;
    }
    .home_partner_block {
        overflow: scroll;
    }
    .home_partner_one {
        min-width: 46%;
    }
    .home_advantages_ins {
        padding: 64px 20px;
    }
    .home_advantages_blocktitle {
        font-size: 32px;
        margin: 0 0 40px 0;
    }
    .home_adv_div {
        overflow: scroll;
    }
    .home_advantages_one {
        min-width: 335px;
    }
    .home_text_ins {
        padding: 64px 20px;
        font-size: 24px;
    }
    .home_news {
        padding: 0 20px 64px;
        flex-wrap: wrap;
    }
    .home_news_div {
        display: flex;
        overflow: scroll;
    }
    .home_news_one {
        min-width: 335px;
        margin: 0 8px 0 0;
    }
    .home_news_one_image img {
        width: 100%;
        height: auto;
    }
    .home_news_title {
        font-size: 32px;
    }
    .home_news_block_top {
        margin-bottom: 40px;
    }
    .home_news_block_top {
        max-width: 335px;
    }
    .home_tags_wrap {
        padding: 32px 20px;
    }
    .main_tags {
        display: block;
    }
    .tags_left {
        margin: 0 0 8px 0;
        padding: 40px 16px;
    }
    .tags_right {
        padding: 40px 16px;
    }
    .tags_left_title,
    .tags_right_title {
        font-size: 24px;
    }
    .content_wrap {
        flex-wrap: wrap;
        padding: 0px;
        width: 100%;
    }
    .ajax_post_bids {
        padding: 20px;
    }
    .xchange_div {
        grid-template-columns: 1fr;
    }
    .xchange_div_cols {
        margin: 0;
    }
    .xchange_data_right {
        width: 60%;
    }
    .exchange_first_step {
        font-size: 25px;
    }
    .content {
        width: 100%;
    }
    .xchange_div_ins {
        width: 100%;
        max-width: 374px;
    }
    .peers_div_wrap {
        width: auto;
    }
    .select_js_title_ins .select_txt {
        height: 50px;
        display: flex;
        align-items: center;
        max-width: 209px;
        line-height: 17px;
    }
    .xchange_div_col_give,
    .xchange_div_col_get {
        padding: 16px;
    }
    .xchange_data_title {
        color: var(--Black, #000);
        font-family: "Manrope", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        margin: 0 0 16px;
    }
    .xchange_info_line {
        color: var(--Black, #000);
        text-align: right;
        font-family: "Manrope", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
    }
    .metabox_div {
        overflow: hidden;
        max-width: 390px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        padding: 32px 20px 64px 20px;
        max-height: 360px;
        border-radius: 32px 32px 0 0;
    }
    .paytext {
        margin: 32px 0;
    }
    .paydiv {
        margin: 32px 0;
    }
    .pay_center_col {
        flex-direction: column;
    }
    .pay_select {
        width: 100%;
        margin: 0 0 16px;
    }
    .pay_input {
        width: 100%;
        margin: 0;
    }
    .home_news_block {
        width: 100%;
    }
    .home .content_wrap {
        padding: 0;
    }
    .block_xchdata_line {
        flex-direction: column;
    }
    .block_status_time {
        flex-direction: column;
    }
    .block_status_text {
        flex-direction: column;
    }
}

.form_field_ins.cf_line_ins input[type="text"],
.form_field_ins.cf_line_ins input[type="email"],
.form_field_ins.cf_line_ins input[type="password"] {
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile_sidebar .sidelink_exit {
    display: flex;
    border-radius: 68px;
    border: 1px solid var(--Red, #ff2626);
    padding: 18px 24px;
    align-items: center;
    justify-content: center;
}

.standart_window_submit input[type="submit"] {
    border-radius: 68px;
    background: var(--Green, #18d17e);
    border: none;
    display: flex;
    /* height: 62px; */
    padding: 18px 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.wc_window .standart_windowins {
    width: 100%;
    max-width: 676px;
}

.wc_window .standart_window_ins {
    border-radius: 40px;
    background: black;
    padding: 0;
}

.footer_timetable {
    color: var(--White, #fff);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    opacity: 0.8;
}

.footer_soc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.notice_message_text_ins a {
    color: var(--primary-base, #18d17e) !important;
}

.form_field_line.cf_line.type_input.field_name_name.has_title,
.form_field_line.cf_line.type_input.field_name_email.has_title {
    width: 47%;
}

.form_field_line.cf_line.type_input.field_name_name.has_title input[type="text"],
.form_field_line.cf_line.type_input.field_name_email.has_title input[type="text"] {
    width: 100%;
}

.footer_soc_bestchange {
    display: flex;
    margin: 0 0 20px;
}

.home_news_one_image a {
    display: block;
    width: fit-content;
    height: fit-content;
}


/* notify */

.wn_wrap {
    position: fixed;
    float: none;
    bottom: 0;
    left: 0;
    z-index: 999998;
    border-radius: 32px 32px 0px 0px;
    background: var(--Black, #000);
    box-shadow: 0px -20px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    width: 100%;
}

.wn_div {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wn_div_text {
    color: var(--White, #fff);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 24px */
}

.wn_div_button input[type="submit"] {
    border-radius: 68px;
    background: var(--Green, #18d17e);
    border: none;
    padding: 18px 32px;
    color: var(--Black, #000);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}


/* end notify */

@media (max-width: 600px) {
    .wn_wrap {
        width: auto;
    }
    .wn_div {
        flex-direction: column;
        gap: 8px;
    }
    .wn_div_text {
        font-size: 16px;
    }
    .wn_div_button input[type="submit"] {
        padding: 11px 25px;
    }
    .footer {
        align-items: center;
    }
    .footer_left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .footers_center_wrap {
        flex-direction: column;
    }
    .cf_div_wrap {
        padding: 40px 16px;
        width: auto;
    }
    .cf_div_title {
        font-size: 32px;
    }
    .form_field_line.cf_line.type_input.field_name_name.has_title,
    .form_field_line.cf_line.type_input.field_name_email.has_title {
        width: 100%;
    }
    .page_wrap.feedback {
        padding: 10px;
    }
    .partners_h1 {
        font-size: 40px;
    }
    .xchange_sum_input input {
        font-size: 24px;
    }
    .select_js_title {
        border-radius: 8px;
    }
    .iselect_js .select_js_title_ins {
        padding: 2px 0px 0px 65px;
    }
    .select_js_search input {
        height: 60px;
        margin: 0 0 8px;
        border-radius: 7px;
    }
    .select_js_ul {
        top: 108%;
    }
    .footer_logo {
        margin: 0 0 40px;
    }
    .footer_menu {
        padding: 0;
        margin: 0 0 40px;
    }
    .footer_right {
        margin: 0 0 40px;
    }
    .footer_soc_bestchange {
        margin: 0 0 16px;
    }
    .foter_soc_wrap {
        margin: 0 auto;
        display: flex;
    }
    .home_news_more_wrap {
        display: none;
    }
    .foter_soc_wrap a {
        margin: 0 8px;
    }
    .xtl_left_col,
    .xtl_right_col {
        width: 100%;
        border-radius: 16px;
    }
    .xtl_input_wrap input {
        font-size: 24px;
    }
    .iselect_js .select_ico {
        top: 6px;
    }
    .xchange_select {
        margin: 0;
    }
    .many_news_wrap {
        padding: 0 20px;
    }
    .one_news_excerpt {
        margin: 0 0 40px;
    }
    .many_news_wrap .page_wrap_title {
        font-size: 40px;
        text-align: left;
    }
    .one_news_date {
        font-size: 14px;
    }
    .one_news_title {
        font-size: 16px;
    }
    a.xtl_submit {
        justify-content: flex-start;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        align-items: center;
    }
}

@media screen and (min-width: 668px) and (max-width: 1200px) {
    .many_news {
        justify-content: space-between;
    }
    .topmenu {
        display: none;
    }
    .tophead {
        grid-template-columns: auto 1fr 1fr auto;
    }
    .logoblock {
        grid-column: 1;
    }
    .topmenu_buttons_ins {
        grid-column: 3;
    }
    .topmenu_ico {
        grid-column: 4;
        display: block;
    }
    .topmenu_buttons {
        display: none;
    }
    .topmenu_contacts .tolbar_lang {
        display: none;
    }
    .homepage_wrap {
        max-width: 1200px;
    }
    .home_wtext_title {
        font-size: 60px;
        width: 468px;
    }
    .home_wtext_div {
        width: 278px;
        font-size: 14px;
    }
    .xchange_table_wrap {
        padding: 19px 40px 64px 40px;
    }
    .select_js_title {
        border-radius: 8px;
    }
    .xtl_table_body {
        flex-direction: column;
    }
    .xtl_left_col {
        margin: 0 8px 8px 0;
    }
    .xtl_left_col,
    .xtl_right_col {
        width: auto;
        border-radius: 16px;
    }
    .xtl_submit_wrap {
        border-radius: 16px;
    }
    .xtl_center_col {
        position: absolute;
        top: 43%;
        left: 45%;
    }
    .home_partner_ins {
        padding: 32px 20px 0 20px;
    }
    .home_partner_one {
        min-width: 18%;
    }
    .home_advantages_ins {
        padding: 64px 40px;
    }
    .home_advantages_blocktitle {
        font-size: 40px;
        margin: 0 0 40px 0;
    }
    .home_adv_div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-column-gap: 8px;
    }
    .home_advantages_one {
        width: 100%;
        margin: 0 8px 8px 0;
    }
    .home_text_ins {
        font-size: 24px;
        padding: 64px 40px;
    }
    .home_text_div .text p {
        padding: 0;
    }
    .home_news_title {
        font-size: 40px;
    }
    .home_news_block_top {
        margin: 0 0 40px 0;
    }
    .home_news_one {
        width: 45%;
    }
    .home_news_one_image img {
        width: 373px;
        height: auto;
    }
    .home_news_div {
        display: flex;
        overflow: scroll;
        max-width: 820px;
    }
    .footer {
        align-items: center;
    }
    .footer_left {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .footers_center_wrap {
        flex-direction: column;
        gap: 40px;
    }
    .footer_soc {
        align-items: center;
    }
    .metabox_div {
        overflow: scroll;
        align-items: baseline;
    }
    .one_news {
        max-width: 410px;
    }
}

@media screen and (min-width: 668px) and (max-width: 900px) {
    .homepage_wrap {
        max-width: 800px;
    }
    .home_partner_one {
        min-width: 22%;
    }
    .home_news_block {
        width: 100%;
    }
    .home_news_one {
        width: 52%;
    }
    .content_wrap {
        max-width: 800px;
    }
    .xchange_div {
        grid-template-columns: 100%;
    }
    .xchange_div_cols {
        margin: 0;
    }
    .peers_div_ins {
        display: flex;
    }
    .peers_div_wrap {
        width: 100%;
        margin: 0 0 40px;
    }
    .single .content {
        max-width: 800px;
    }
    .one_news_image {
        width: auto;
        max-width: none;
    }
    .one_news_image img {
        width: 100%;
        height: auto;
        max-width: none;
    }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
    .one_news_image img {
        height: auto;
        max-width: none;
    }
    .one_news_image {
        width: auto;
        max-width: none;
    }
    .homepage_wrap {
        max-width: 1180px;
    }
    .home_news_block {
        width: 100%;
    }
    .home_news_div {
        width: 100%;
        max-width: 1180px;
    }
    .mobile_menu_wrap {
        display: block;
    }
    .content_wrap {
        max-width: 1180px;
    }
    .xchange_div {
        grid-template-columns: 63% 25%;
    }
}

.standart_window_content_ins .captcha_div .captcha_body .captcha_divznak {
    color: black;
}

.standart_window_content_ins .captcha_div .captcha_body input.captcha_divpole {
    background: none;
    border-radius: 8px;
    border: 1px solid var(--Grey-03, #d6d6d6);
    color: var(--Grey-04, #999);
}

.standart_window_content_ins .captcha_div .captcha_title {
    color: #000;
}