@font-face {
    font-family: "Helvetica";
    src: url("../fonts/helvetica.eot"); /* IE 9 Compatibility Mode */
    src: url("../fonts/helvetica.eot?#iefix") format("embedded-opentype"), /* IE < 9 */ url("../fonts/helvetica.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/helvetica.woff") format("woff"),
        /* Firefox >= 3.6, any other modern browser */ url("../fonts/helvetica.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/helvetica.svg#helvetica") format("svg"); /* Chrome < 4, Legacy iOS */
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Helvetica";
}

a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

body {
    background: #f3faff;
}

.container {
    max-width: 1210px;
    width: 100%;
    padding: 0 20px;
    margin: auto;
}

.mobile_menu {
    display: none;
}

.btn {
    padding: 17px 25px;
    border-radius: 65px;
    border: 1px solid #118eea;
    background: rgba(17, 142, 234, 0.1);
    text-decoration: none;
    color: #118eea;
    font-size: 14px;
}

.btn:hover {
    padding: 17px 25px;
    border-radius: 65px;
    border: 1px solid #118eea;
    background: #118eea;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.btnprofile {
    width: 200px;
    margin: auto;
    padding: 17px 25px;
    border-radius: 65px;
    border: 1px solid #118eea;
    background: #118eea;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.btnprofile:hover {
    padding: 17px 25px;
    border-radius: 65px;
    border: 1px solid #3472bc;
    background: #3472bc;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.btn.btn-blue {
    background: #118eea;
    border: 1px solid #118eea;
    color: #fff;
}

.btn.btn-blue:hover {
    background: #3472bc;
    border: 1px solid #3472bc;
    color: #fff;
}

header .preheader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 789px;
    width: 100%;
    margin: auto;
    padding: 16px 0;
}
header .preheader .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
}
header .preheader .item p,
header .preheader .item a {
    font-size: 12px;
    text-decoration: none;
    color: #000;
}
header .header {
    padding: 20px 25px;
    border-radius: 20px;
    background: #f6fbff;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 20% 40%;
    grid-template-columns: 40% 20% 40%;
}
header .header .burger {
    display: none;
}
header .header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
header .header .menu a {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}
header .header .menu a.active {
    color: #118eea;
    font-weight: 700;
}
header .header .menu a:hover {
    color: #118eea;
}
header .header .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
header .header .right_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
header .header .lang {
    position: relative;
}
header .header .lang .selected {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
header .header .lang .selected p {
    color: #118eea;
    font-size: 14px;
    font-weight: 700;
}
header .header .lang .dropdown {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    background: #f6fbff;
    border-radius: 10px;
    padding: 10px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    min-width: 100px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
header .header .lang .dropdown a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}
header .header .lang .dropdown a:hover {
    background: rgba(17, 142, 234, 0.1);
}
header .header .lang .dropdown a.active {
    color: #118eea;
    font-weight: 700;
}
header .header .lang:hover .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 768px) {
    header .preheader {
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 1120px) {
    header .header {
        padding: 15px 20px;
        -ms-grid-columns: unset;
        grid-template-columns: unset;
        gap: 20px;
        position: relative;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
    header .header .menu {
        display: none;
    }
    header .header .logo {
        width: 120px;
        height: auto;
    }
    header .header .right_menu {
        display: none;
    }
    header .header .burger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
    }
    header .header .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #118eea;
        margin-bottom: 6px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    header .header .burger span:last-child {
        margin-bottom: 0;
    }
    header .header .burger.active span:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(5px, 5px);
        transform: rotate(45deg) translate(5px, 5px);
    }
    header .header .burger.active span:nth-child(2) {
        opacity: 0;
    }
    header .header .burger.active span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(7px, -7px);
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .mobile_menu {
        display: unset;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .mobile_menu.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile_menu .mobile_menu_content {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        background: #f6fbff;
        padding: 20px;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.3s;
        transition: 0.3s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
    .mobile_menu_content::after {
        content: "";
        position: absolute;
        left: -34px;
        top: 14px;
        width: 30px;
        height: 30px;
        background: url("../images/delete-sign.png");
        background-size: contain;
        pointer-events: none;
    }
    .mobile_menu .mobile_menu_content a {
        color: #000;
        font-size: 16px;
        text-decoration: none;
    }
    .mobile_menu .mobile_menu_content a.active {
        color: #118eea;
        font-weight: 700;
    }
    .mobile_menu .mobile_menu_content .mobile_btns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .mobile_menu .mobile_menu_content .mobile_btns .btn {
        width: 100%;
        text-align: center;
    }
    .mobile_menu .mobile_menu_content .mobile_btns .btn.btn-blue {
        color: #fff;
    }
    .mobile_menu .mobile_menu_content .mobile_lang {
        position: relative;
    }
    .mobile_menu .mobile_menu_content .mobile_lang .selected {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 3px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
    }
    .mobile_menu .mobile_menu_content .mobile_lang .selected p {
        color: #118eea;
        font-size: 14px;
        font-weight: 700;
    }
    .mobile_menu .mobile_menu_content .mobile_lang .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: #f6fbff;
        border-radius: 10px;
        padding: 10px;
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
        min-width: 100px;
        -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }
    .mobile_menu .mobile_menu_content .mobile_lang .dropdown a {
        color: #000;
        font-size: 14px;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 5px;
    }
    .mobile_menu .mobile_menu_content .mobile_lang .dropdown a:hover {
        background: rgba(17, 142, 234, 0.1);
    }
    .mobile_menu .mobile_menu_content .mobile_lang .dropdown a.active {
        color: #118eea;
        font-weight: 700;
    }
    .mobile_menu .mobile_menu_content .mobile_lang:hover .dropdown {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .mobile_menu.active .mobile_menu_content {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
main {
    overflow: hidden;
    background: url("../images/bg.svg");
}
main .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    padding-top: 60px;
    padding-bottom: 60px;
}
main .container .right {
    position: relative;
}
main .container .right img {
    position: absolute;
    bottom: -60px;
    right: -100px;
}
main .radius_blur {
    border-radius: 400px;
    background: rgba(17, 142, 234, 0.25);
    -webkit-filter: blur(200px);
    filter: blur(200px);
    position: absolute;
    top: -26px;
    left: 0;
    right: 0;
    margin: auto;
    width: 400px;
    height: 400px;
    z-index: -1;
}
main h1 {
    color: #171717;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px;
}
main h1 span {
    color: #118eea;
    position: relative;
    display: block;
}
main h1 span::before {
    content: "";
    width: 5px;
    height: 100%;
    border-radius: 65px;
    background: #118eea;
    position: absolute;
    left: -5px;
    top: 0;
}
main h1 span::after {
    content: "";
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(rgba(17, 142, 234, 0.2)), to(rgba(17, 142, 234, 0)));
    background: linear-gradient(90deg, rgba(17, 142, 234, 0.2) 0%, rgba(17, 142, 234, 0) 100%);
    position: absolute;
    top: 5px;
    left: 0;
    height: calc(100% - 10px);
    width: 100%;
    max-width: 463px;
}
main p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    max-width: 390px;
}
main .page p {
    max-width: 100%;
}
main .btns {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
main .btns .btn-trans {
    color: #171717;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 7px;
    text-decoration: none;
}

main .page .title {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    max-width: unset;
    line-height: 40px;
    margin-bottom: 30px;
}
main .page .text p {
    max-width: unset;
    font-size: 14px;
}
main .page .subtext p {
    max-width: unset;
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width: 1170px) {
    main .right img {
        width: 780px;
    }
}
@media screen and (max-width: 1070px) {
    main .right img {
        width: 680px;
    }
}
@media screen and (max-width: 980px) {
    main .container {
        display: block;
        padding-bottom: 0;
    }
    main .container .right img {
        position: static;
        max-width: 500px;
        width: 100%;
        margin: auto;
        display: block;
    }
}
@media screen and (max-width: 630px) {
    main h1 {
        font-size: 52px;
    }
    main h1 span::before {
        left: -5px;
    }
}
@media screen and (max-width: 400px) {
    main h1 {
        font-size: 2.8em;
    }
    .calculator .variants {
        display: block !important;
    }
}
@media screen and (max-width: 518px) {
    main .btns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    main .page .title {
        font-size: 32px;
    }
}
.line {
    width: 100%;
    height: 100px;
    background: #171717;
    overflow: hidden;
    position: relative;
}
.line__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 25px;
}
.line .item {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.line svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.calculator .variants {
    background: #fff;
    border-radius: 65px;
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 60px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.calculator .btnslk {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.calculator .btnslk .btn {
    margin: 0;
    padding: 17px 25px;
}
.alert {
    background: #118eea;
    padding: 22px 25px;
    font-size: 12px;
    color: #fff;
    border-radius: 10px;
}
.calculator h1 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 45px;
}
.calculator .variants .var {
    padding: 14px 20px;
    color: #000;
    font-size: 14px;
    border-radius: 65px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator .variants .var.active {
    background: #118eea;
    font-weight: 700;
    color: #fff;
}
.calculator p.sub {
    text-align: center;
    margin: 10px 0 30px;
    display: block;
    font-size: 14px;
}
.calculator .blue_block {
    padding: 22px;
    border-radius: 10px;
    background: #118eea;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.calculator .blue_block p {
    color: #fff;
    font-size: 14px;
}
.calculator .blue_block p span {
    font-weight: 700;
}
.calculator .btn {
    margin: 40px auto 20px;
    padding-left: 50px;
    padding-right: 50px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
}
.calculator .bottom_text {
    color: rgba(23, 23, 23, 0.5);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}
.calculator .bottom_text a {
    color: rgba(23, 23, 23, 0.5);
}
.calculator .inputs {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 26px;
    -ms-grid-columns: calc(50% - 25.5px) 51px calc(50% - 25.5px);
    grid-template-columns: calc(50% - 25.5px) 51px calc(50% - 25.5px);
}
.calculator .inputs .swap {
    margin: auto;
}
.calculator .inputs .block {
    border-radius: 20px;
    background: #f6fbff;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    min-height: 229px;
}
.calculator .inputs .block .btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 15px;
}
.calculator .inputs .block .btns .btn {
    margin: 0;
    padding: 17px 25px;
}
.calculator .inputs .block .sub {
    text-align: left;
    margin-top: 15px;
    display: block;
    font-size: 13px;
    margin-bottom: 0;
}
.calculator .inputs .block .input-group {
    border-radius: 10px;
    border: 1px solid rgba(17, 142, 234, 0.1);
    background: #f3faff;
    height: 70px;
    position: relative;
}
.calculator .inputs .block .input-group .title {
    color: rgba(17, 142, 234, 0.3);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: 12px;
    left: 15px;
}
.calculator .inputs .block .input-group input {
    position: absolute;
    top: 28px;
    left: 15px;
    height: 31px;
    width: 50%;
    color: #171717;
    font-size: 27px;
    font-weight: 700;
    background: transparent;
    border: none;
    outline: none;
}
.calculator .inputs .block .input-group .currency {
    padding: 10px 15px;
    border-radius: 86.827px;
    background: rgba(17, 142, 234, 0.2);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.calculator .inputs .block .input-group .currency .selected {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.calculator .inputs .block .input-group .currency .selected span {
    color: #118eea;
    font-size: 18px;
    font-weight: 400;
}
.calculator .inputs .block .input-group .currency .dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #f6fbff;
    border-radius: 10px;
    padding: 10px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}
.calculator .inputs .block .input-group .currency .dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 5px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
.calculator .inputs .block .input-group .currency .dropdown a:hover {
    background: rgba(17, 142, 234, 0.1);
}
.calculator .inputs .block .input-group .currency .dropdown a.active {
    color: #118eea;
    font-weight: 700;
}
.calculator .inputs .block .input-group .currency .dropdown.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 710px) {
    .calculator .inputs {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        row-gap: 15px;
    }
    .calculator .blue_block {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        text-align: center;
        row-gap: 15px;
    }
}
.best_block {
    margin-bottom: 60px;
}
.best_block .bg_block {
    background-image: url("../images/bg2.png");
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 104px 54px;
}
.best_block .bg_block .mob_img {
    display: none;
}
.best_block .bg_block .title {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    max-width: 561px;
    margin-bottom: 30px;
    overflow-wrap: anywhere;
}
.best_block .bg_block .title span {
    color: #118eea;
}
.best_block .bg_block .text {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    max-width: 550px;
    overflow-wrap: anywhere;
}

@media screen and (max-width: 1230px) {
    .best_block .bg_block .title {
        max-width: 461px;
        font-size: 16px;
        line-height: 42px;
    }
    .best_block .bg_block .text {
        max-width: 440px;
        font-size: 14px;
    }
}
@media screen and (max-width: 1130px) {
    .best_block .bg_block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-image: unset;
        background: #171717;
        border-radius: 15px;
    }
    .best_block .bg_block .mob_img {
        display: block;
        width: 40%;
    }
}
@media screen and (max-width: 880px) {
    .best_block .bg_block {
        padding: 40px 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        row-gap: 20px;
    }
    .best_block .bg_block .mob_img {
        margin: auto;
        max-width: 400px;
        width: 100%;
    }
}
.about {
    background: #118eea;
    padding: 60px 0;
    position: relative;
}
.about:not(.seo)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg2.svg");
}
.about .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.about .head .title {
    color: #fff;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}
.about .head .title.seo-block {
    font-size: 16px;
}
.about .head a {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}
.about .items {
    display: -ms-grid;
    display: grid;
    gap: 30px;
    margin-top: 50px;
    -ms-grid-columns: auto 30px auto 30px auto 30px auto;
    grid-template-columns: auto auto auto auto;
}
.about .items .item {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 20px;
}
.about .items .item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.about .items .item .title p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.about .items .item .text {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 17px;
}
.about .items .item .date {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 920px) {
    .about .items {
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }
}
@media screen and (max-width: 520px) {
    .about .head .title {
        font-size: 24px;
    }
    .about .items {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }
}
.top_preim {
    margin-top: 60px;
    margin-bottom: 60px;
}
.top_preim .container {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 55px;
    -ms-grid-columns: 750px 55px auto;
    grid-template-columns: 750px auto;
}
.top_preim .right .title {
    color: #171717;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.top_preim .right .title span {
    color: #118eea;
}
.top_preim .right .text {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.top_preim .right .btn {
    display: block;
    margin-top: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.top_preim .left {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(50% - 20px) 40px calc(50% - 20px);
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
}
.top_preim .left .item {
    border-radius: 29.605px;
    background: #118eea;
    -webkit-box-shadow: 0px 0px 39.474px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 39.474px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 50px 0;
}
.top_preim .left .item .icon {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
}
.top_preim .left .item .title {
    margin-top: 46px;
    color: #fff;
    font-size: 19.737px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.top_preim .left .item .text {
    margin-top: 10px;
    color: #fff;
    font-size: 13.816px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.top_preim .left .item.white {
    border-radius: 29.605px;
    background: #f6fbff;
    -webkit-box-shadow: 0px 0px 39.474px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 39.474px 0px rgba(0, 0, 0, 0.05);
}
.top_preim .left .item.white .title {
    color: #118eea;
}
.top_preim .left .item.white .text {
    color: #000;
}

@media screen and (max-width: 1240px) {
    .top_preim .container {
        -ms-grid-columns: 586px auto;
        grid-template-columns: 586px auto;
    }
}
@media screen and (max-width: 1065px) {
    .top_preim .container {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }
}
@media screen and (max-width: 700px) {
    .top_preim .container .left {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }
}
footer {
    background: #171717;
    padding: 50px 0;
    color: #fff;
}
footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 40px;
}
footer .text {
    margin-top: 20px;
    font-size: 14px;
}
footer .title {
    color: #118eea;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 23px;
}
footer .links a {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}
footer .links a:last-child {
    margin-bottom: 0;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 60px;
}

.faq-item {
    position: relative;
    background: #f6fbff;
    -webkit-box-shadow: 0px 0px 39.474px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 39.474px 0px rgba(0, 0, 0, 0.05);
    border-radius: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq .title {
    color: #171717;
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #118eea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question {
    font-weight: 500;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background: transparent;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 300;
}

.faq-item.active + .faq-answer {
    max-height: 300px;
}

@media (max-width: 600px) {
    .faq-item {
        padding: 0 15px;
        font-size: 16px;
    }
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px;
}

.auth-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card h2 {
    margin-bottom: 40px;
    font-size: 18px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

input {
    margin-bottom: 10px;
    border: 1px solid #edf6fd;
    border-radius: 10px;
    background: #f6fbff;
    font-size: 14px;
}

.buttons {
    background: #108be3;
    color: #fff;
    padding: 15px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    width: 171px;
    border-radius: 65px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 30px;
}

.buttons:hover {
    background: #0d74c2;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
}

.wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    height: auto;
    margin-top: 30px;
}

.card {
    background: #ffffff;
    border: 1px solid #118eea;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: 300px;
}

.number {
    background: #118eea;
    color: #fff !important;
    font-size: 32px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.subp {
    font-size: 14px;
    color: #171717;
    font-weight: 300;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 350px;
    }
}

.coin_left {
    position: absolute;
    right: 0;
    top: 619px;
    z-index: -1;
}
.coin_l {
    position: absolute;
    left: 0;
    top: 944px;
    z-index: -1;
}
@media screen and (max-width: 1000px) {
    .coin_left,
    .coin_l {
        display: none;
    }
}

.partner-program {
    width: 100%;
    background: #fff;
    border: 1px solid #118eea;
    border-radius: 20px;
    padding: 30px;
    height: auto;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partner-content {
    flex: 2 1 500px;
}

.partner-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.partner-content p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    max-width: 100%;
}

@media (max-width: 768px) {
    .partner-content p {
        padding-bottom: 12px;
        font-size: 14px;
        margin: auto;
        color: #555;
        line-height: 1.5;
        max-width: 300px;
    }
}

.partner-button {
    margin-top: 20px;
    padding: 17px 35px;
    background-color: #118eea;
    color: #fff !important;
    font-size: 14px;
    border: none;
    font-weight: 600;
    border-radius: 65px;
    cursor: pointer;
    transition: background 0.3s;
}

.partner-button:hover {
    background-color: #3472bc;
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
    }

    .partner-card img {
        max-width: 300px;
        width: 100%;
    }
    .partner-image {
        width: 100%;
        min-height: 180px;
    }
    .partner-content {
        width: 100%;
    }
}

.calculator:not(.order-block) {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .partner-program {
        margin-bottom: 60px;
    }
}

.btnslk {
    padding-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    justify-content: center;
}

@media (max-width: 768px) {
    .btnslk {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.profile-settings {
    width: 100%;
    margin-top: 60px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.settings-form {
    width: 100%;
}

.settings-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-delete {
    flex: 1;
    width: 360px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .form-group-delete {
        flex: 1;
        width: 300px;
        margin: auto;
        display: flex;
        flex-direction: column;
    }
}

.form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #edf6fd;
    border-radius: 10px;
    background: #f6fbff;
    font-size: 14px;
    width: 100%;
}
.form-group input.js-checkbox-admire{
  width: auto;
}
.form-group-delete input {
    padding: 12px 15px;
    border: 1px solid #edf6fd;
    border-radius: 10px;
    background: #f6fbff;
    font-size: 14px;
    width: 100%;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .profile-settings {
        margin-bottom: 60px;
    }
}

.referral-section {
    width: 100%;
    margin-top: 60px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.referral-section h2 {
    text-align: center;
    font-size: 24px;
}

.referral-link-block {
    width: 100%;
}

.referral-card p {
    color: #fff;
}

.input-with-button {
    position: relative;
    width: 100%;
}

.input-with-button input {
    width: 100%;
    padding: 16px 50px 16px 15px;
    border: 1px solid #edf6fd;
    border-radius: 10px;
    background: #f6fbff;
    font-size: 14px;
}

.copy-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-75%);
    background: transparent;
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: transparent;
}

.referral-stats {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
}

.referral-card {
    background: #118eea;
    color: white;
    border-radius: 20px;
    padding: 30px 20px;
    width: 270px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.referral-card h3 {
    font-size: 26px;
    margin: 10px 0;
}

.referral-card small {
    font-size: 12px;
    display: block;
    margin-top: 10px;
}

.withdraw-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #fff;
    color: #118eea;
    border: 1px solid #118eea;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.withdraw-btn:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.referral-table {
    width: 100%;
    margin-top: 20px;
}

.referral-table-header {
    display: flex;
    background: #118eea;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.referral-table-header > div {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.referral-table-empty {
    border: 1px solid #118eea;
    border-top: none;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.referral-table-body {
    border: 1px solid #118eea;
    border-top: none;
}
.referral-table-body svg{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.referral-table-body .tr {
    display: flex;
    align-items: center;
}
.referral-table-body .tr > div {
    flex: 1;
    padding: 15px;
    text-align: center;
}

@media screen and (max-width: 500px) {
    .referral-table {
        overflow: scroll;
    }
    .referral-table-body,
    .referral-table-body .tr,
    .referral-table-header {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .referral-stats {
        flex-direction: column;
        align-items: center;
    }
    .referral-card {
        width: 100%;
    }
    .referral-table-body,
    .referral-table-body .tr,
    .referral-table-header {
        display: block;
    }
}

.logo {
    width: 157px;
    height: 41px;
    margin: auto;
}

.error-message, .text-danger {
    color: #ff0000;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

.text-success {
  color: #439d16;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  text-align: left;
}
.text-danger-info{
  color: #ff0000;
}
@media screen and (max-width: 400px) {
    .top_preim .right .title {
        font-size: 36px;
        line-height: 38px;
    }
    main .radius_blur {
        display: none;
    }
}

#swap {
    text-align: center;
}

.icon {
    width: 21px;
    height: 21px;
}

.sitemap {
    text-align: left;
    display: block;
    padding: 0;
    min-height: 60vh;
    padding-bottom: 60px;
}
.sitemap h2 {
    font-size: 42px;
    text-transform: uppercase;
}
.sitemap .items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 10px;
}
@media screen and (max-width: 500px) {
    .sitemap .btn {
        padding: 10px 15px;
        border-radius: 5px;
    }
    .sitemap h2,
    .calculator h1 {
        font-size: 1.5em;
    }
    .calculator h1 {
        margin-bottom: 30px;
    }
}

.label {
    font-size: 14px;
    margin-bottom: 7px;
}
.input-style {
    width: 100%;
    padding: 15px 25px;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    margin-bottom: 10px;
}

.input-style::placeholder {
    color: rgba(0, 0, 0, 0.2);
}
.btn-trans {
    color: #171717;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
    background: none;
    border: 0;
    cursor: pointer;
}
.label-desc {
    color: #171717;
    opacity: 0.3;
    font-size: 12px;
}
.blocks_grid1 {
    display: grid;
    grid-template-columns: auto 171px;
    gap: 27px;
}
.block.qr {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    margin-top: 50px;
    text-align: center;
}
.block.qr img {
    width: 100%;
    max-width: 180px;
}

.qr_mob {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    margin-top: 20px;
    text-align: center;
}
.qr_mob img {
    max-width: 150px;
    width: 100%;
}

@media screen and (max-width: 500px) {
    .blocks_grid1 {
        display: grid;
        grid-template-columns: 100%;
        row-gap: 27px;
    }
    .block.qr {
        display: none;
    }
    .qr_mob {
        display: block;
    }
}

.text_block_grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 280px auto;
    overflow-wrap: anywhere;
}
.text_block_grid p {
    line-height: 34px;
    font-size: 16px;
}
.text_block_grid div:nth-child(1) {
    background: #118eea;
    color: #fff;
    padding: 22px 18px;
    border-radius: 20px 0 0 20px;
}
.text_block_grid div:nth-child(2) {
    padding: 22px 9px;
    border-radius: 0 20px 20px 0;
    border: 1px solid #118eea;
    background: #fff;
    font-weight: 700;
    min-width: 380px;
}

@media screen and (max-width: 700px) {
    .text_block_grid {
        overflow: scroll;
    }
}
.top_preim .left .item .icon {
    width: auto;
    height: auto;
}

.langs {
    display: flex;
    gap: 10px;
}
.langs a.active {
    color: #118eea;
    font-weight: 700;
}
.langs a {
    font-size: 14px;
    color: #000;
}
.page {
    padding-bottom: 60px;
}
@media screen and (max-width: 500px) {
    main section {
        padding: 0;
        padding-bottom: 60px;
    }
}

.text_block_grid_mob {
    display: none;
    background: #118eea;
    color: #fff;
    padding: 22px 18px;
    border-radius: 20px;
    margin-top: 20px;
}
.text_block_grid_mob p {
    line-height: 26px;
    overflow-wrap: break-word;
}
.text_block_grid_mob p span {
    font-weight: 600;
}
@media screen and (max-width: 710px) {
    .text_block_grid_mob {
        display: block;
    }
    .text_block_grid {
        display: none;
    }
}
.label-desc2 {
    text-align: center;
    margin-top: 10px;
    opacity: 1;
}
.text-obmen {
    text-align: center;
    margin-top: 40px;
    overflow-wrap: break-word;
}
@media screen and (max-width: 500px) {
    .about {
        border-radius: 25px 25px 0px 0px;
        padding: 40px 0;
    }
    .about .items {
        margin-top: 35px;
    }
}

.sitemap .btn {
    border-radius: 15px;
    padding: 15px 20px;
}

.btnslk2 {
    display: grid !important;
    grid-template-columns: 100%;
    justify-content: center !important;
}
.calculator .btnslk .btn {
    margin: 0 !important;
}
.calculator .btnslk .btn,
.calculator .btnslk .btn-trans {
    margin: auto !important;
    margin-bottom: 15px;
    text-align: center;
}

.minh {
    min-height: 75vh;
}

@media screen and (max-width: 400px) {
    .calculator .inputs .block .input-group input {
        font-size: 22px;
    }
    .calculator .inputs .block .input-group .title, .calculator .inputs .block .input-group input {
        font-size: 12px;
    }
    .js-pair-source-symbol, .js-pair-target-symbol{
        display: none;
    }
}

.style1 {
    top: -47px;
}
.style2 {
    top: 278px;
}
.bgnone {
    background: none !important;
}

.dblock {
    display: block !important;
}
.dnone {
    display: none !important;
}

.style3 {
    top: -220px;
}
.style4 {
    top: -400px;
}
.mt5px {
    margin-top: 5px;
}
.style5 {
    top: 18px;
}
.style6 {
    max-width: 212px;
    margin-left: auto;
    margin-right: auto;
}
.style7 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
}
.style8 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.style9 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.style10 {
    min-height: auto !important;
}
.style11 {
    min-height: 0px !important;
}
.style12 {
    max-width: 212px;
    margin-left: auto;
    margin-right: auto;
}
.style13 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
}
.style14 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.style15 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.style16 {
    top: -47px;
}
.style17 {
    top: 278px;
}
.style18 {
    top: -220px;
}
.style19 {
    top: -400px;
}
.style20 {
    top: -47px;
}
.style21 {
    top: 278px;
}
.style22 {
    top: -47px;
}
.style23 {
    top: 278px;
}
.style24 {
    top: -200px;
}
.style25 {
    top: -400px;
}
.style26 {
    top: -200px;
}
.style27 {
    top: -400px;
}
.style28 {
    top: 100px;
}
.style29 {
    top: -210px;
}
.style30 {
    min-height: unset !important;
}
.style31 {
    pointer-events: none !important;
}
.style32 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
.style33 {
    top: 100px;
}
.style34 {
    top: -210px;
}
.style35 {
    margin-top: 26px;
}
.btnslk.m0 .btn {
    margin: 0 !important;
}
.style36 {
    font-weight: bold;
    font-size: 18px !important;
    background: #fff !important;
}
.style37 {
    margin-top: 26px;
}
.style38 {
    top: -100px;
}
.style39 {
    top: -210px;
}
.style40 {
    color: #171717;
}

.faq-item.active .icon-minus {
    display: block !important;
}

.calculator .inputs .block .btns .btn {
    cursor: pointer;
}

.currency-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
    padding: 0 15px;
}

.tab-button {
    padding: 8px 15px;
    border: none;
    background: #f6fbff;
    border-radius: 65px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #118eea;
    color: white;
}

.currency-item {
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    margin: 5px;
    cursor: pointer;
}

.currency-item.visible {
    display: flex;
}

.currency-item img {
    width: 24px;
    height: 24px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    max-width: 660px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    cursor: pointer;
    font-size: 24px;
    color: #118eea;
}

.search-container {
    margin-bottom: 20px;
}

#currencySearch {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(17, 142, 234, 0.1);
    background: #f3faff;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 25px;
    max-height: 50vh;
    overflow-x: scroll;
}

.currency-item {
    display: grid;
    grid-template-columns: 24px calc(50% - 24px) calc(50% - 25px);
    align-items: center;
    padding: 10px;
    background: rgba(17, 142, 234, 0.2);
    border-radius: 65px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #118eea;
    font-size: 18px;
}
.currency-item .name {
    font-size: 14px;
    margin-right: 5px;
    display: block;
}
.currency-item span:last-child {
    text-align: right;
}

@media (max-width: 768px) {
    .currency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .currency-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.input-change {
    margin-top: 20px;
}

.uni-popup1-overlay {
    display: none!important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.uni-popup1-modal {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popup-fade 0.3s ease-in-out;
}
.uni-popup1-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.uni-popup1-title {
    font-size: 1.2rem;
    margin: 0;
}
.uni-popup1-close {
    font-size: 1.5rem;
    cursor: pointer;
}
.uni-popup1-body {
    margin-top: 0px;
}
.uni-popup1-subtitle {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.uni-popup1-label {
    color: #171717;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 14px;
}
.uni-popup1-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(17, 142, 234, 0.1);
    background: #f3faff;
    padding: 15px 10px;
    border-radius: 8px;
}
.uni-popup1-box {
    font-weight: bold;
}
.uni-popup1-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}
.uni-popup1-icon img {
    width: 20px;
    height: 20px;
}
.uni-popup1-arrow {
    text-align: center;
    margin-top: 20px;
    font-size: 1.5rem;
}
.uni-popup1-button {
    margin-top: 20px;
    background-color: #118eea;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}
@keyframes popup-fade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.uni-popup2-overlay {
    display: none!important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.uni-popup2-modal {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.uni-popup2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uni-popup2-title {
    margin: 0;
    font-size: 1.3rem;
}

.uni-popup2-close {
    font-size: 1.5rem;
    cursor: pointer;
}

.uni-popup2-body {
    margin-top: 20px;
}

.uni-popup2-block {
    margin-bottom: 20px;
}

.uni-popup2-box {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    border: 1px solid rgba(17, 142, 234, 0.1);
    background: #f3faff;
    padding: 15px 10px;
    border-radius: 10px;
    font-weight: bold;
}

.uni-popup2-box img {
    width: 24px;
    height: 24px;
}

.uni-popup2-input-wrapper {
    display: flex;
    margin-top: 10px;
    align-items: center;
    border: 1px solid rgba(17, 142, 234, 0.1);
    background: #f3faff;
    padding: 8px 10px;
    border-radius: 10px;
}

.uni-popup2-input-wrapper img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.uni-popup2-input-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
}

.uni-popup2-input-wrapper.error input {
    margin-left: 10px;
    margin-top: 8px;
}

.uni-popup2-error-text {
    color: red;
    font-size: 0.9rem;
    margin-top: 5px;
}

.uni-popup2-button {
    width: 100%;
    background-color: #118eea;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.uni-popup2-button:hover {
    opacity: 0.8;
}

.uni-popup2-block label {
    color: #171717;
}
.d-none {
    display: none !important;
}
.text-center {
    text-align: center !important;
}
.d-flex {
    display: flex !important;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-space-around{
  justify-content: space-around;
}
.col-6{
  width: 50%;
}
.summary {
    padding: 20px;
    border-top: 1px solid #118eea;
}
.w-100 {
    width: 100%;
}
.mb-2 {
    margin-bottom: 20px;
}
.mt-2 {
    margin-top: 20px;
}
.mb-4 {
    margin-bottom: 40px;
}

.rating__group {
    position: relative;
    width: 125px;
    height: 25px;
    background-image: url(../images/raitStarBigGr.svg);
    background-size: 25px auto;
    background-repeat: repeat-x;
}

.rating__star {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0!important;
    height: 25px;
    font-size: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 25px auto;
    background-repeat: repeat-x;
    cursor: pointer;
    outline: none !important;
    outline-offset: unset !important;
}

.rating__star:hover,
.rating__star:checked {
    background-image: url(../images/raitStarBigGold.svg);
    z-index: 9;
}

.rating__star:hover ~ .rating__star {
    background-image: url(../images/raitStarBigGr.svg)
}

.rating__star:nth-of-type(1) {
    z-index: 5;
    width: 25px;
}

.rating__star:nth-of-type(2) {
    z-index: 4;
    width: 50px;
}

.rating__star:nth-of-type(3) {
    z-index: 3;
    width: 75px;
}

.rating__star:nth-of-type(4) {
    z-index: 2;
    width: 100px;
}

.rating__star:nth-of-type(5) {
    z-index: 1;
    width: 125px;
}
.add_wallet:hover { color: #04111d; }
.add_wallet { width: fit-content; font-size: 14px; line-height: 140%; color: #04111d; cursor: pointer;background: 0; border: 0; font-weight: bold;display:flex; }
.row_wallet { display: flex ; justify-content: space-around; align-items: center;color: #04111d;font-weight: bold; }
.row_delete { cursor: pointer; }
.vue-slider {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.vue-slider-rail {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition-property: width, height, left, right, top, bottom;
    transition-property: width, height, left, right, top, bottom;
}
.vue-slider-process {
    position: absolute;
    z-index: 1;
}
.vue-slider-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.vue-slider-rail {
    background-color: #ccc;
    border-radius: 15px;
}
.vue-slider-process {
    background-color: #3498db;
    border-radius: 15px;
}
.vue-slider-mark {
    z-index: 4;
}
.vue-slider-mark:first-child .vue-slider-mark-step,
.vue-slider-mark:last-child .vue-slider-mark-step {
    display: none;
}
.vue-slider-mark-step {
    background-color: rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    height: 100%;
    width: 100%;
}
.vue-slider-mark-label {
    font-size: 14px;
    white-space: nowrap;
}
.vue-slider-dot-handle {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
    cursor: pointer;
    height: 100%;
    width: 100%;
}
.vue-slider-dot-handle-focus {
    box-shadow: 0 0 1px 2px rgba(52, 152, 219, 0.36);
}
.vue-slider-dot-handle-disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.vue-slider-dot-tooltip-inner {
    background-color: #3498db;
    border-color: #3498db;
    border-radius: 5px;
    box-sizing: content-box;
    color: #fff;
    font-size: 14px;
    min-width: 20px;
    padding: 2px 5px;
    text-align: center;
    white-space: nowrap;
}
.vue-slider-dot-tooltip-inner:after {
    content: "";
    position: absolute;
}
.vue-slider-dot-tooltip-inner-top:after {
    border: 5px solid transparent;
    border-top-color: inherit;
    height: 0;
    left: 50%;
    top: 100%;
    transform: translate(-50%);
    width: 0;
}
.vue-slider-dot-tooltip-inner-bottom:after {
    border: 5px solid transparent;
    border-bottom-color: inherit;
    bottom: 100%;
    height: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
}
.vue-slider-dot-tooltip-inner-left:after {
    border: 5px solid transparent;
    border-left-color: inherit;
    height: 0;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}
.vue-slider-dot-tooltip-inner-right:after {
    border: 5px solid transparent;
    border-right-color: inherit;
    height: 0;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}
.vue-slider-dot-tooltip-wrapper {
    opacity: 0;
    transition: all 0.3s;
}
.vue-slider-dot-tooltip-wrapper-show {
    opacity: 1;
}
.vue-slider-marks {
    position: relative;
    width: 100%;
    height: 100%;
}
.vue-slider-mark {
    position: absolute;
    z-index: 1;
}
.vue-slider-ltr .vue-slider-mark,
.vue-slider-rtl .vue-slider-mark {
    width: 0;
    height: 100%;
    top: 50%;
}
.vue-slider-ltr .vue-slider-mark-step,
.vue-slider-rtl .vue-slider-mark-step {
    top: 0;
}
.vue-slider-ltr .vue-slider-mark-label,
.vue-slider-rtl .vue-slider-mark-label {
    top: 100%;
    margin-top: 10px;
}
.vue-slider-ltr .vue-slider-mark {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.vue-slider-ltr .vue-slider-mark-step {
    left: 0;
}
.vue-slider-ltr .vue-slider-mark-label {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.vue-slider-rtl .vue-slider-mark {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}
.vue-slider-rtl .vue-slider-mark-step {
    right: 0;
}
.vue-slider-rtl .vue-slider-mark-label {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}
.vue-slider-btt .vue-slider-mark,
.vue-slider-ttb .vue-slider-mark {
    width: 100%;
    height: 0;
    left: 50%;
}
.vue-slider-btt .vue-slider-mark-step,
.vue-slider-ttb .vue-slider-mark-step {
    left: 0;
}
.vue-slider-btt .vue-slider-mark-label,
.vue-slider-ttb .vue-slider-mark-label {
    left: 100%;
    margin-left: 10px;
}
.vue-slider-btt .vue-slider-mark {
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.vue-slider-btt .vue-slider-mark-step {
    top: 0;
}
.vue-slider-btt .vue-slider-mark-label {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.vue-slider-ttb .vue-slider-mark {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.vue-slider-ttb .vue-slider-mark-step {
    bottom: 0;
}
.vue-slider-ttb .vue-slider-mark-label {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}
.vue-slider-mark-label,
.vue-slider-mark-step {
    position: absolute;
}
.vue-slider-dot {
    position: absolute;
    -webkit-transition: all 0s;
    transition: all 0s;
    z-index: 5;
    top:0!important;
}
.vue-slider-dot:focus {
    outline: none;
}
.vue-slider-dot-tooltip {
    position: absolute;
    visibility: hidden;
}
.vue-slider-dot-hover:hover .vue-slider-dot-tooltip,
.vue-slider-dot-tooltip-show {
    visibility: visible;
}
.vue-slider-dot-tooltip-top {
    top: -10px;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
}
.vue-slider-dot-tooltip-bottom {
    bottom: -10px;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
.vue-slider-dot-tooltip-left {
    left: -10px;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}
.vue-slider-dot-tooltip-right {
    right: -10px;
    top: 50%;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}
.merge-tooltip {
    border-radius: 0.25rem;
    color: #fff;
    font-size: 0.9rem;
    left: 50%;
    padding: 3px 6px;
    position: absolute;
    transform: translate(-50%, -8px);
}
.gauge {
    height: 100%;
    position: relative;
    width: 100%;
}
.mr-1 {
    margin-right: 10px;
}
.mr-2 {
    margin-right: 20px;
}