/* Minification failed. Returning unminified contents.
(3448,44): run-time error CSS1046: Expect comma, found '0'
(3448,48): run-time error CSS1046: Expect comma, found '/'
(3449,36): run-time error CSS1046: Expect comma, found '0'
(3449,40): run-time error CSS1046: Expect comma, found '/'
(3503,63): run-time error CSS1046: Expect comma, found '0'
(3503,67): run-time error CSS1046: Expect comma, found '/'
(3516,44): run-time error CSS1046: Expect comma, found '0'
(3516,48): run-time error CSS1046: Expect comma, found '/'
(3517,36): run-time error CSS1046: Expect comma, found '0'
(3517,40): run-time error CSS1046: Expect comma, found '/'
 */
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    src: local("Manrope"), url("../fonts/Manrope-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    src: local("Manrope"), url("../fonts/Manrope-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    src: local("Manrope"), url("../fonts/Manrope-Semibold.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    src: local("Manrope"), url("../fonts/Manrope-Bold.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 800;
    src: local("Manrope"), url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
}

::-webkit-input-placeholder {
    color: #666;
}

::-moz-placeholder {
    color: #666;
}

:-ms-input-placeholder {
    color: #666;
}

::-ms-input-placeholder {
    color: #666;
}

::placeholder {
    color: #666;
}

::-moz-selection {
    background-color: #1A3BE2;
    color: #fff;
}

::selection {
    background-color: #1A3BE2;
    color: #fff;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

input, textarea {
    font-family: "Manrope", sans-serif;
    outline: none;
}

    input:focus:required:invalid, textarea:focus:required:invalid {
        border-color: red;
    }

    input:required:valid, textarea:required:valid {
        border-color: green;
    }

body {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #262626;
    margin: 0;
    padding: 0;
}

svg, img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #262626;
}

.m-grey-bg {
    background: #F7F8F9;
}

.wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .wrapper {
        padding: 0 14px;
    }
}

.header {
    border-bottom: 1px solid #E8EAF0;
    padding: 16px 0 12px;
    margin-bottom: 26px;
}

    .header .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

.header__right-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header__logo {
    max-width: 152px;
    width: 100%;
    margin-left: 70px;
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
}

.header__nav_link {
    padding: 11px 20px;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 42px;
    position: relative;
}

    .header__nav_link:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -12px;
        height: 4px;
        background: #1A3BE2;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        opacity: 0;
    }

    .header__nav_link:hover {
        background: #EFF4F9;
    }

    .header__nav_link .ico-mobile {
        width: 14px;
        height: 20px;
        margin-right: 15px;
    }

        .header__nav_link .ico-mobile svg {
            width: 100%;
            height: 100%;
        }

.header__nav .active {
    background: #EFF4F9;
}

@media (max-width: 1200px) {
    .header__logo {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .header {
        border-bottom: 1px solid #EEF2F4;
        padding: 18px 0;
    }

    .header__logo {
        max-width: 122px;
        margin: 0 auto;
    }

    .header__nav {
        display: none;
    }
}

.header__logo.m-xs-logo {
    max-width: 24px;
    margin: 0 0 0 52px;
}

    .header__logo.m-xs-logo svg {
        width: 24px;
        height: 25px;
    }

.header.m-center-nav .header__nav {
    padding: 0;
}

    .header.m-center-nav .header__nav .header__nav_link {
        font-size: 14px;
        padding-left: 22px;
        padding-right: 22px;
    }

.header.m-center-nav .account-info {
    font-size: 14px;
    background: transparent;
}

    .header.m-center-nav .account-info:hover {
        background: #EFF4F9;
    }

    .header.m-center-nav .account-info .user-auth-ico {
        width: 20px;
        height: 18px;
        margin-left: 8px;
    }

.header__nav.m-hover-nav .header__nav_item {
    background: transparent;
}

    .header__nav.m-hover-nav .header__nav_item .header__nav_link:hover {
        background: transparent;
        color: #1A3BE2;
    }

        .header__nav.m-hover-nav .header__nav_item .header__nav_link:hover:before {
            opacity: 1;
        }

.header__nav.m-hover-nav .active .header__nav_link {
    color: #1A3BE2;
}

    .header__nav.m-hover-nav .active .header__nav_link:before {
        opacity: 1;
    }

.account-info {
    padding: 11px 20px;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #EFF4F9;
    cursor: pointer;
    position: relative;
}

.account-info__balance-value {
    font-size: 15px;
    line-height: 20px;
    padding-left: 14px;
}

.account-info__dropdown {
    margin-left: 12px;
    margin-right: -2px;
    margin-top: -2px;
}

.account-info .ico-dropdown {
    width: 18px;
    height: 10px;
}

.account-info .user-auth-ico {
    width: 24px;
    height: 25px;
    margin-left: 28px;
    margin-top: -5px;
}

    .account-info .user-auth-ico svg {
        width: 100%;
        height: 100%;
    }

.account-info .loggin {
    margin-right: -16px;
}

.menu-burger {
    position: absolute;
    left: 9px;
    top: -4px;
    height: 16px;
    width: 22px;
    width: 42px;
    height: 36px;
    cursor: pointer;
    z-index: 9;
}

    .menu-burger.active span {
        opacity: 0;
    }

    .menu-burger.active.menu-burger:before, .menu-burger.active.menu-burger:after {
        top: 40%;
        background-color: #4F4F4F;
    }

    .menu-burger.active.menu-burger:before {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .menu-burger.active.menu-burger:after {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu-burger span, .menu-burger:before, .menu-burger:after {
        display: block;
        position: absolute;
        height: 2px;
        width: 22px;
        left: 10px;
        background-color: #1A3BE2;
        border-radius: 4px;
        opacity: 1;
    }

    .menu-burger:before, .menu-burger:after {
        content: "";
        -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu-burger span {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .menu-burger:before {
        top: 10px;
    }

    .menu-burger:after {
        top: calc(100% - 2px - 10px);
    }

.mob-auth-status {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 2px;
    right: 27px;
}

    .mob-auth-status.auth {
        cursor: pointer;
    }

    .mob-auth-status svg {
        width: 100%;
        height: 100%;
    }

.search-box {
    padding: 0 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-box__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 486px;
    width: 100%;
    position: relative;
}

.search-box__field {
    height: 42px;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px 17px;
    border: none;
    outline: none;
    font-size: 15px;
    border: 2px solid #1A3BE2;
    border-right: none;
    transition: .3s all ease;
}

.search-box__field_valid,
.search-box__field_valid ~ .search-box__submit {
    border-color: #20ca67;
}

.search-box__field_invalid,
.search-box__field_invalid ~ .search-box__submit {
    border-color: red;
}

    .search-box__field_invalid ~ .search-box__submit {
        cursor: not-allowed;
        opacity: .5;
    }

    .search-box__field_invalid ~ .search-box__submit,
    .search-box__field_valid ~ .search-box__submit {
        border-right-width: 2px;
        border-bottom-width: 2px;
        border-top-width: 2px;
        border-left-width: 0;
        transition: .3s all ease;
    }

.search-box__submit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    height: 42px;
    background: #1A3BE2;
    padding: 0;
    border: 0 solid;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0px;
}

    .search-box__submit:hover {
        background: #4560ea;
    }

    .search-box__submit svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }

.search-box__field_invalid ~ .search-box__submit:hover {
    background: #1A3BE2;
}

@media (max-width: 992px) {
    .search-box__form {
        max-width: none;
    }

    .search-box__submit {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
        flex: 0 0 52px;
    }
}

.filter-btn {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    left: calc(100% + 43px);
    top: 0;
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .filter-btn:hover {
        opacity: 1;
    }

    .filter-btn svg {
        width: 20px;
        height: 18px;
    }

@media (max-width: 992px) {
    .filter-btn {
        left: auto;
        right: -5px;
        top: -50px;
    }
}

.m-main-search .search-box__form {
    margin: 0 auto 42px;
}

.title-row.m-mob-title-row {
    padding-left: 10px;
    padding-right: 60px;
    margin-bottom: 13px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -9px;
    margin-right: -9px;
    margin-bottom: 40px;
}

.info-row__xl-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 9px;
}

.info-row__xs-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 349px;
    flex: 0 0 349px;
    padding: 0 9px;
}

.info-row__registration {
    background: #ECF4F8;
    padding: 10px 48px 11px;
    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;
}

.info-row__registration-txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.info-row__registration-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 222px;
    flex: 0 0 222px;
}

.info-row__registration-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    padding-left: 17px;
    padding-right: 20px;
}

    .info-row__registration-title span {
        font-weight: 400;
    }

.info-row__registration .ico-user {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23px;
    flex: 0 0 23px;
    height: 23px;
}

    .info-row__registration .ico-user svg {
        width: 100%;
        height: 100%;
    }

@media (max-width: 1100px) {
    .info-row__registration {
        padding: 11px 20px;
    }
}

.info-row__apps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ECF2F8;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .info-row__apps:hover {
        background: #d0e4ea;
    }

    .info-row__apps .ico-arrow-right {
        position: absolute;
        top: 50%;
        right: 23px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 10px;
        height: 18px;
    }

.info-row__apps-img {
    margin-top: 3px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 104px;
    flex: 0 0 104px;
}

    /*.info-row__apps-img .b2 {
        margin-left: 22px;
        margin-top: 15px;
        margin-bottom: 17px;
    }*/

    .info-row__apps-img .b1 {
        margin-left: 16px;
        margin-top: 2px;
    }

.m-refill-app .info-row__apps-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 72px;
    flex: 0 0 72px;
    margin: 15px;
    margin-left: 22px;
    margin-right: 15px;
    margin-bottom: 17px;
}

.info-row__apps-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 180px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    padding-left: 20px;
}

.m-refill-app .info-row__apps-title {
    max-width: none;
    padding-left: 0;
    font-size: 13px;
}

@media (max-width: 992px) {
    .info-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .info-row__xl-col {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        margin-bottom: 10px;
    }

    .info-row__xs-col {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        margin-bottom: 10px;
    }

    .info-row__apps-title {
        max-width: none;
        padding-right: 50px;
    }
}

@media (max-width: 992px) and (max-width: 580px) {
    .info-row__registration {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .info-row__registration-txt {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        margin-bottom: 10px;
    }

    .info-row__registration-btn {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.info-row__registration-type-two {
    padding: 11px 20px 11px 15px;
    background: #ECF2F8;
}

    .info-row__registration-type-two .info-row__registration-title {
        font-size: 16px;
        line-height: 22px;
        padding: 0 14px;
    }

    .info-row__registration-type-two .info-row__registration-btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 239px;
        flex: 0 0 239px;
    }

    .info-row__registration-type-two .blue-gradient-btn {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

@media (max-width: 1050px) {
    .info-row__registration-type-two {
        padding: 11px 15px 11px 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .info-row__registration-type-two .info-row__registration-title {
            font-size: 15px;
        }
}

.blue-gradient-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -o-linear-gradient(55.49deg, #1A3BE2 9.15%, #3485FF 89.99%);
    background: linear-gradient(34.51deg, #1A3BE2 9.15%, #3485FF 89.99%);
    color: #fff;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.02em;
    font-weight: 600;
    padding: 9px 28px 10px 28px;
}

    .blue-gradient-btn:hover {
        background: -o-linear-gradient(55.49deg, #3485FF 9.15%, #1A3BE2 89.99%);
        background: linear-gradient(34.51deg, #3485FF 9.15%, #1A3BE2 89.99%);
    }

.info-row__registration.m-single-xl {
    background: -webkit-gradient(linear, left top, left bottom, from(#F7F8F9), to(#F7F8F9));
    background: -o-linear-gradient(top, #F7F8F9 0%, #F7F8F9 100%);
    background: linear-gradient(180deg, #F7F8F9 0%, #F7F8F9 100%);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .info-row__registration.m-single-xl .info-row__registration-txt {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: inline-block;
    }

        .info-row__registration.m-single-xl .info-row__registration-txt .ico-user {
            width: 23px;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            display: inline-block;
        }

        .info-row__registration.m-single-xl .info-row__registration-txt .info-row__registration-title {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            display: inline-block;
            vertical-align: middle;
            padding-right: 25px;
        }
}

.arrow-btn {
    padding: 9px 17px 10px 28px;
}

    .arrow-btn svg {
        margin-left: 10px;
        width: 10px;
        height: 18px;
    }

.frontbox {
    margin-bottom: 30px;
    overflow: hidden;
}

.frontbox__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.title-row {
    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;
    margin-bottom: 19px;
}

.title-row__title {
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

@media (max-width: 992px) {
    .title-row {
        margin-bottom: 10px;
        padding: 0 14px;
    }
}

.m-padding-row {
    padding: 0 4px 0 14px;
}

.frontbox-item {
    padding: 5px 10px;
    text-align: center;
    height: 100%;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #F7F8F9;
}

    .frontbox-item:hover {
        -webkit-box-shadow: 0 1px 6px 0 rgba(145, 145, 145, 0.47);
        box-shadow: 0 1px 6px 0 rgba(145, 145, 145, 0.47);
        background: #ebeef0;
    }

.frontbox-item__ico {
    min-height: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.frontbox-item__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 128px;
    height: 57px;
    margin: 8px auto 0;
}

    .frontbox-item__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.frontbox-item__title {
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 21px;
    margin-top: 5px;
    margin-bottom: 11px;
}

.frontbox-item .ico-arrow-right {
    display: none;
}

@media (max-width: 992px) {
    .frontbox-item {
        padding: 10px;
    }

        .frontbox-item:hover {
            background: #F7F8F9;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .frontbox-item__img {
        padding-top: 0;
        margin-bottom: 6px;
    }

    .frontbox-item__title {
        font-size: 12px;
        line-height: 16px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .frontbox-item .ico-arrow-right {
        display: block;
        width: 10px;
        height: 18px;
        position: absolute;
        top: 50%;
        right: 16px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.m-xs-title {
    font-size: 12px;
    line-height: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .m-xs-title {
        margin-top: 7px;
    }
}

.m-seven-col .frontbox__col {
    width: calc(100% / 7);
}

@media (max-width: 992px) {
    .frontbox-col__full-width {
        border-bottom: 1px solid #E0E0E0;
    }

        .frontbox-col__full-width:last-child {
            border-bottom: 1px solid transparent;
        }

        .frontbox-col__full-width .frontbox-item {
            padding: 11px 40px 10px 5px;
            background: transparent;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            position: relative;
        }

        .frontbox-col__full-width .frontbox-item__ico {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 50px;
            flex: 0 0 50px;
            height: 50px;
            min-height: auto;
            border-radius: 7px;
            background: #E9E9E9;
            margin-right: 12px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .frontbox-col__full-width .frontbox-item__img {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 65px;
            flex: 0 0 65px;
            height: 29px;
        }

    .m-xs-single-row .frontbox-col__full-width .frontbox-item__img {
        margin: 5px 0;
    }

    .frontbox-col__full-width .frontbox-item__title {
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        letter-spacing: 0.02em;
        text-align: left;
    }

    .frontbox-col__full-width .frontbox-item .m-xs-title {
        padding-left: 20px;
        margin: 0;
        font-size: 12px;
        line-height: 16px;
    }
}

.m-six-col .frontbox__col {
    width: calc(100% / 6);
}

.m-padding-16 {
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -16px;
}

    .m-padding-16 .frontbox__col {
        padding: 16px 16px 12px 16px;
    }

@media (max-width: 1200px) {
    .m-padding-16 {
        margin-left: -5px;
        margin-right: -5px;
        margin-top: -5px;
    }

        .m-padding-16 .frontbox__col {
            padding: 5px;
        }
}

.m-padding-19 {
    margin-left: -19px;
    margin-right: -19px;
    margin-top: -19px;
}

    .m-padding-19 .frontbox__col {
        padding: 19px 19px 17px 19px;
    }

@media (max-width: 1200px) {
    .m-padding-19 {
        margin-left: -5px;
        margin-right: -5px;
        margin-top: -5px;
    }

        .m-padding-19 .frontbox__col {
            padding: 5px;
        }
}

@media (max-width: 992px) {
    .m-xs-single-row {
        padding: 5px 14px 0;
    }

        .m-xs-single-row .frontbox__col {
            padding: 0px;
            width: 100%;
        }
}

@media (max-width: 992px) {
    .m-row-scrollbar {
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 14px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

        .m-row-scrollbar .frontbox__col {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 150px;
            flex: 0 0 150px;
            width: auto;
        }

            .m-row-scrollbar .frontbox__col:last-child {
                position: relative;
            }

                .m-row-scrollbar .frontbox__col:last-child:before {
                    content: "";
                    display: block;
                    position: absolute;
                    right: -20px;
                    width: 20px;
                    height: 1px;
                }
}

.more-lnk {
    color: #1A3BE2;
    font-weight: 600;
    line-height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}

    .more-lnk span {
        border-bottom: 1px solid transparent;
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
        margin-top: 1px;
    }

    .more-lnk .ico-arrow-right {
        margin-left: 4px;
    }

    .more-lnk:hover span {
        border-bottom: 1px solid #1A3BE2;
    }

@media (max-width: 992px) {
    .m-xs-right .more-lnk {
        margin-right: -18px;
    }
}

@media (max-width: 992px) {
    .more-lnk .ico-arrow-right {
        margin-top: -2px;
    }
}

.ico-arrow-right {
    width: 9px;
    height: 14px;
}

    .ico-arrow-right svg {
        width: 100%;
        height: 100%;
    }

.g-icon {
    font-size: 48px;
    width: 1em;
    height: 1em;
    min-width: 1em;
    display: inline-block;
    line-height: 1;
}

@media (max-width: 992px) {
    .g-icon {
        font-size: 33px;
    }
}

.m-mb33 {
    margin-bottom: 33px;
}

@media (max-width: 992px) {
    .m-mb33 {
        margin-bottom: 29px;
    }
}

.footer {
    background: #F7F8F9;
    padding: 32px 0 65px;
}

.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}

.footer__col-nav {
    width: 16%;
}

.footer__col-apps {
    width: 16%;
}

@media (max-width: 1024px) {
    .footer__col-apps {
        width: 138px;
    }
}

.footer__col-contact {
    width: 180px;
    margin-left: auto;
    /*margin-left: 2%;*/
}

.footer__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0.02em;
    margin-bottom: 19px;
    color: #262626;
}

.footer__nav {
    padding: 0;
    margin: 0;
}

.footer__nav_item {
    margin-bottom: 14px;
}

.footer__nav_link {
    color: #828282;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
    letter-spacing: 0.02em;
}

    .footer__nav_link:hover {
        color: #262626;
        text-decoration: underline;
    }

.footer__contact-item {
    margin-bottom: 15px;
    padding-top: 2px;
}

.footer__phone {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-bottom: 2px;
    display: inline-block;
}

.footer__phone-info {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.02em;
    padding-left: 3px;
}

.m-xs-order-3 {
    margin-left: 40px;
}

@media (max-width: 992px) {
    .footer {
        padding: 21px 0 65px;
    }

        .footer .wrapper {
            padding: 0 22px;
        }

    .footer__contact-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) and (max-width: 350px) {
    .footer .wrapper {
        padding: 0 14px;
    }
}

@media (max-width: 992px) {
    .footer__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) and (max-width: 780px) {
    .footer__row {
        display: grid;
        grid-template-areas: "m-xs-order-1 m-xs-order-2"
            "m-xs-order-3 m-xs-order-2"
            "m-xs-order-5  m-xs-order-2";
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    .m-xs-order-3 {
        margin-left: 20px;
    }

    .footer__col-nav {
        margin-bottom: 12px;
        width: 18%;
        /*width: auto;*/
    }

    .footer__col-apps {
        padding-top: 6px;
    }

    .footer__col-contact {
        padding-top: 5px;
    }

    .footer__title {
        margin-bottom: 13px;
        font-size: 13px;
    }

    .footer__nav_item {
        margin-bottom: 11px;
    }

    .footer__phone {
        font-size: 13px;
    }

    .footer__contact-item {
        padding-top: 0;
    }
}

@media (max-width: 780px) {
    .m-xs-order-1 {
        grid-area: m-xs-order-1;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 33.3%;
    }
}

@media (max-width: 480px) {
    .m-xs-order-1 {
        grid-area: m-xs-order-1;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: calc(100% - 168px);
    }
}

@media (max-width: 780px) {
    .m-xs-order-2 {
        grid-area: m-xs-order-2;
        margin-left: 30px;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
}

@media (max-width: 480px) {
    .m-xs-order-2 {
        margin-left: 0;
        grid-area: m-xs-order-2;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 138px;
    }
}

@media (max-width: 780px) {
    .m-xs-order-3 {
        grid-area: m-xs-order-3;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 0;
        width: 35%;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .m-xs-order-3 {
        margin-left: 0;
        grid-area: m-xs-order-3;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        padding-left: 0;
        width: calc(100% - 168px);
    }
}

@media (max-width: 780px) {
    .m-xs-order-4 {
        grid-area: m-xs-order-4;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 33.3%;
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .m-xs-order-4 {
        grid-area: m-xs-order-4;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        width: 138px;
        padding-left: 30px;
    }
}

@media (max-width: 780px) {
    .m-xs-order-5 {
        grid-area: m-xs-order-5;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .m-xs-order-5 {
        grid-area: m-xs-order-5;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
}

.market-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
}

.market-list__item {
    width: 50%;
    margin-right: 30px;
    margin-bottom: 17px;
}

    .market-list__item:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }

    .market-list__item a {
        border: 1px solid #C4C4C4;
        border-radius: 7px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 136px;
        height: 43px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

        .market-list__item a:hover {
            border: 1px solid #828282;
        }

.market-list__apple svg {
    width: 110px;
    height: 30px;
}

.market-list__google svg {
    width: 145px;
    height: 43px;
}

@media (max-width: 1024px) {
    .market-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .market-list__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 13px;
    }

        .market-list__item:last-child {
            margin-bottom: 0px;
        }
}

.social-list {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 25px;
}

.social-list__item {
    margin-right: 10px;
}

    .social-list__item:last-child {
        margin-right: 0;
    }

.social-list__link {
    width: 36px;
    height: 36px;
    display: block;
}

    .social-list__link svg {
        width: 100%;
        height: 100%;
    }

@media (max-width: 992px) {
    .social-list {
        margin-top: 19px;
    }
}

.bank-card-list {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: space-between;
    margin-top: 20px;
}

.bank-card-list__item {
    margin-right: 10px;
}

    .bank-card-list__item:last-child {
        margin-right: 0;
    }

.bank-card-list__link-mir svg {
    max-width: 64px;
    max-height: 19px;
}

.bank-card-list__link-master svg {
    max-width: 32px;
    max-height: 25px;
}

.bank-card-list__link-visa svg {
    max-width: 57px;
    max-height: 17px;
}

@media (max-width: 992px) {
    .bank-card-list {
        margin-top: 12px;
        width: 160px;
    }

    .bank-card-list__link-mir svg {
        max-width: 56px;
        max-height: 16px;
    }

    .bank-card-list__link-master svg {
        max-width: 32px;
        max-height: 18px;
    }

    .bank-card-list__link-visa svg {
        max-width: 46px;
        max-height: 14px;
    }
}

.column-group__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 45px;
}

.column-group__col {
    max-width: 360px;
    width: 100%;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .column-group__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .column-group__col {
        max-width: none;
        margin-bottom: 30px;
    }
}

.m-history-search .search-box__form {
    margin: 0 auto 24px;
}

@media (max-width: 992px) {
    .m-xs-bg .horizontal-item {
        background: #fff;
        border-bottom: 1px solid #E0E0E0;
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .column-group__col.m-empty-item .horizontal-item {
        background: #F7F8F9;
        border-bottom: none;
        margin-bottom: 0;
    }
}

.horizontal-item {
    background: #F7F8F9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 12px 14px;
    min-height: 60px;
}

    .horizontal-item:hover {
        background: #DAECFF;
    }

.horizontal-item__ico {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
    height: 26px;
}

    .horizontal-item__ico svg {
        width: 100%;
        height: 100%;
    }

.horizontal-item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 73px;
    flex: 0 0 73px;
}

    .horizontal-item__img img {
        max-height: 36px;
    }

.horizontal-item__report {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.horizontal-item__report-value-col {
    text-align: right;
}

.horizontal-item__title {
    height: 16px;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.02px;
}

.horizontal-item__description {
    letter-spacing: 0.02em;
    color: #828282;
    padding-top: 4px;
}

.horizontal-item__value {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.m-output-pay .horizontal-item__value {
    color: #1BBC52;
}

.horizontal-item__value-info {
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.02em;
    color: #828282;
    white-space: nowrap;
    padding-top: 3px;
}

.horizontal-item.active {
    background: #DAECFF;
}

.horizontal-item.m-xs-title {
    padding-left: 15px;
}

    .horizontal-item.m-xs-title .empty-horizontal-item-title {
        font: 12px;
        padding-left: 0;
    }

.horizontal-item.m-not-hover:hover {
    cursor: default;
    background: #F7F8F9;
}

.m-add-horizontal-item {
    padding: 17px 25px;
    position: relative;
}

    .m-add-horizontal-item .horizontal-item__ico {
        margin-top: 0;
    }

    .m-add-horizontal-item .ico-arrow-right {
        position: absolute;
        right: 25px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 11px;
        height: 20px;
    }

    .m-add-horizontal-item .empty-horizontal-item-title {
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        padding-left: 22px;
    }

.banner-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 18px;
}

.banner-row__xs-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 348px;
    flex: 0 0 348px;
    padding: 0 8px;
}

.banner-row__xl-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 8px;
}

@media (max-width: 992px) {
    .banner-row {
        margin-left: -14px;
        margin-right: -14px;
    }

    .banner-row__xl-col {
        padding: 0;
    }
}

.banner-apps {
    background: #E9E9E9;
    width: 100%;
    height: 100%;
    min-height: 212px;
    position: relative;
    padding: 17px 0px 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
}

.banner-apps__img {
    position: absolute;
    right: 0;
    bottom: 16px;
}

.banner-apps__link {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    max-width: 135px;
    position: relative;
    z-index: 1;
}

    .banner-apps__link .ico-arrow-right {
        width: 10px;
        height: 18px;
        position: absolute;
        bottom: 7px;
        right: 32px;
    }

        .banner-apps__link .ico-arrow-right svg {
            width: 100%;
            height: 100%;
        }

    .banner-apps__link:hover {
        text-decoration: underline;
    }

.main-banner {
    /* background: -webkit-gradient(linear, left top, right top, from(#ECF2F8), to(#FEFEFF));
    background: -o-linear-gradient(left, #ECF2F8 0%, #FEFEFF 100%);
    background: linear-gradient(90deg, #ECF2F8 0%, #FEFEFF 100%);*/
    background: #E9E9E9;
    height: 100%;
    width: 100%;
    padding: 25px 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-banner__info {
    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;
    max-width: 238px;
    height: 100%;
}

.main-banner__title {
    margin: 0;
    font-size: 27px;
    line-height: 37px;
    font-weight: 800;
    margin-bottom: 10px;
    width: 100%;
}

.main-banner__link {
    display: inline-block;
    font-size: 14px;
    padding: 8px 26px;
    border: 0;
    background: #1A3BE2;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
}

    .main-banner__link:hover {
        background: #1735cb;
    }

@media (max-width: 992px) {
    .main-banner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0px;
    }

    .main-banner__title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .main-banner__info {
        max-width: 110px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .main-banner__link {
        padding: 8px 22px;
    }

    .main-banner__img {
        /*margin-right: -20px;
        margin-top: 7px;*/
    }
}

.main-banner.m-single-banner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.xl-banner {
    background: -o-radial-gradient(50% 50%, 192.89% 192.89%, #FFFFFF 0%, #C3DCEE 100%);
    background: radial-gradient(192.89% 192.89% at 50% 50%, #FFFFFF 0%, #C3DCEE 100%);
    padding: 0px 0 20px;
    width: 100%;
    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;
}

.xl-banner__info {
    text-align: center;
}

.xl-banner__img-col {
    width: 25%;
}

    .xl-banner__img-col:first-child {
        padding-top: 22px;
    }

    .xl-banner__img-col:last-child {
        padding-left: 3.5%;
    }

.xl-banner__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0.04em;
    color: #252525;
    margin-bottom: 40px;
    max-width: 600px;
}

.xl-banner__link {
    color: #0079FF;
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 9px 45px;
    border: 3px solid #007AFF;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .xl-banner__link:hover {
        background: #007AFF;
        color: #fff;
    }

.mobnav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    pointer-events: none;
}

.mobnav__first-level {
    position: absolute;
    left: 0;
    top: 60px;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow-y: auto;
    pointer-events: auto;
}

.mobnav__second-level {
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    pointer-events: auto;
}

.mobnav__second-level-active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobnav__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 18px;
    margin-bottom: 14px;
}

.mobnav__header-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.01em;
    padding-left: 15px;
}

.mobnav__search {
    padding-right: 7px;
}

.mobnav__search-field {
    border: 2px solid #BDBDBD;
    height: 44px;
    width: 100%;
    font-size: 15px;
    padding: 0 8px;
    color: #717171;
}

.mobnav__wrapper {
    padding: 0 20px;
}

.mobnav__mainnav {
    margin: 0;
    padding: 0;
    padding-top: 11px;
    padding-bottom: 10px;
}

.mobnav__mainnav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -0.7px;
    position: relative;
    padding: 20px 0;
}

.m-setting-nav .mobnav__mainnav-link {
    padding: 14px 0;
}

.m-second-nav .mobnav__mainnav-link {
    padding: 11px 0;
}

.mobnav__mainnav-link .ico-arrow-right {
    width: 10px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .mobnav__mainnav-link .ico-arrow-right svg {
        width: 100%;
        height: 100%;
    }

.m-second-nav .mobnav__mainnav-link {
    font-size: 13px;
    line-height: 18px;
}

.mobnav__ico {
    width: 22px;
    height: 22px;
}

.m-setting-nav .mobnav__ico {
    margin-right: 12px;
}

.m-second-nav .mobnav__ico {
    margin-right: 18px;
    font-size: 32px;
    width: 1em;
    height: 1em;
    min-width: 1em;
    display: inline-block;
    line-height: 1;
}

.mob-search {
    position: fixed;
    left: 0;
    top: 62px;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    overflow-y: auto;
}

.mob-search__body {
    padding: 14px 15px;
    padding-top: 0;
}

.mob-search__top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px;
    padding-top: 14px;
    background: #fff;
    z-index: 1;
}

    .mob-search__top-row .field-row {
        padding-left: 18px;
        width: 100%;
        max-width: calc(100% - 40px);
    }

        .mob-search__top-row .field-row .clear-btn {
            width: 36px;
            height: 36px;
        }

            .mob-search__top-row .field-row .clear-btn svg {
                fill: #1A3BE2;
                width: 17px;
                height: 17px;
            }

.mob-search__rezult {
    padding-left: 8px;
    padding-right: 8px;
}

.mob-search__rezult-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    border-bottom: 1px solid #E0E0E0;
    padding: 12px 0;
    padding-right: 30px;
}

    .mob-search__rezult-item:last-child {
        border-bottom: none;
    }

.mob-search__rezult-item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
    height: 29px;
}

    .mob-search__rezult-item-img img {
        width: 100%;
        height: 29px;
        -o-object-fit: cover;
        object-fit: cover;
    }

.mob-search__rezult-item-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: calc(100% - 65px);
    padding-left: 18px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
}

.mob-search__rezult-item-info-title {
    color: #262626;
    margin-bottom: 5px;
    font-weight: 600;
}

.mob-search__rezult-item-info-description {
    color: #828282;
}

.mob-search__rezult-item .ico-arrow-right {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 18px;
}

.mob-search.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.sticky-xs {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
}

.m-setting-nav {
    position: relative;
    padding-top: 4px;
    margin-bottom: 30px;
}

    .m-setting-nav:before {
        content: "";
        height: 1px;
        background: #BDBDBD;
        position: absolute;
        left: -20px;
        right: -20px;
        top: 0;
    }

.active-nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.back-first-level {
    cursor: pointer;
    padding: 5px;
    margin-left: -9px;
    margin-top: -2px;
    border: none;
    background: #fff;
}

    .back-first-level svg {
        width: 22px;
        height: 22px;
    }

.history-box {
    max-width: 486px;
    margin: 0 auto;
    margin-bottom: 33px;
}

.history-box__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
}

.history-box__col {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.history-box .title-row {
    margin-bottom: 29px;
}

.history-box .m-hixstory-left-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 380px;
    flex: 0 0 380px;
}

.history-box .horizontal-item {
    margin-bottom: 18px;
}

.history-box__item-header {
    letter-spacing: 0.02em;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 4px;
    margin-bottom: 19px;
}

@media (max-width: 992px) {
    .history-box__row {
        margin-left: 0;
        margin-right: 0;
    }

    .history-box .m-hixstory-left-col {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        padding: 0;
    }
}

.m-hisory-search {
    margin-bottom: 24px;
}

.search-modal {
}

    .search-modal.m-modal {
        overflow: hidden;
    }

.payment-details,
.search-modal {
    background: #F7F8F9;
    padding-top: 31px;
    padding-bottom: 38px;
    margin-bottom: 17px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
    width: 360px;
    height: 100%;
}

.payment-details__close {
    position: absolute;
    top: 25px;
    right: 21px;
    width: 36px;
    height: 36px;
    border: none;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    /*opacity: 0.5;*/
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .payment-details__close:hover {
        opacity: 1;
    }

    .payment-details__close svg {
        width: 24px;
        height: 24px;
    }

.payment-details__header {
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 13px;
    padding-left: 30px;
    padding-right: 30px;
}

    .payment-details__header:before {
        content: "";
        position: absolute;
        left: 30px;
        bottom: 0;
        right: 30px;
        height: 1px;
        background: #E0E0E0;
    }

    .payment-details__header .payment-details__description {
        margin-bottom: 22px;
    }

.payment-details__header-value {
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    color: #000000;
}

.payment-details__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
    margin: 0;
    margin-bottom: 10px;
    max-width: 90%;
}

.payment-details__description {
    overflow: hidden;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #828282;
    margin: 0;
    margin-bottom: 19px;
}

    .payment-details__description:last-child {
        margin-bottom: 0;
    }

.payment-details__body {
    padding-left: 26px;
    padding-right: 26px;
}

    .payment-details__body .payment-details__title {
        margin-bottom: 20px;
    }

.payment-details__body-row {
    margin-bottom: 19px;
}

.payment-details__body-row-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    color: #262626;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
    word-wrap: break-word;
}

.payment-details__body-row-link {
    color: #1A3BE2;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.payment-details__body-row-link-txt {
    border-bottom: 1px solid #1A3BE2;
    margin-right: 8px;
}

.payment-details__body-row-link .ico-download {
    width: 15px;
    height: 15px;
    fill: #1A3BE2;
}

.payment-details__body-row-link:hover .payment-details__body-row-link-txt {
    border-bottom: 1px solid transparent;
}

.payment-details__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.payment-details__col {
    width: 50%;
    padding-right: 15px;
}

.payment-details__list {
    margin: 0;
}

.payment-details__footer {
    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;
    padding-left: 17px;
    padding-right: 20px;
    padding-top: 42px;
}

    .payment-details__footer .g-btn {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .payment-details__footer .g-btn:first-child {
            margin-right: 15px;
        }

.m-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.payment-details.m-modal,
.search-modal.m-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: #fff;
    margin-top: 0;
    overflow-y: auto;
    padding-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: auto;
    display: none;
}

    .payment-details.m-modal .payment-details__header {
        padding-left: 23px;
        padding-right: 23px;
    }

    .payment-details.m-modal .payment-details__body {
        padding-left: 23px;
        padding-right: 23px;
    }

    .payment-details.m-modal .payment-details__footer {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        background: #fff;
        padding-right: 17px;
    }

        .payment-details.m-modal .payment-details__footer .g-btn {
            width: 100%;
            margin-bottom: 11px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
            -ms-flex: auto;
            flex: auto;
        }

            .payment-details.m-modal .payment-details__footer .g-btn:first-child {
                margin-right: 0;
            }

    .payment-details.m-modal.active,
    .search-modal.m-modal.active {
        display: block;
    }

.g-btn {
    background-color: #1A3BE2;
    cursor: pointer;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 22px;
    font-weight: 600;
    border: 2px solid #1A3BE2;
    text-align: center;
    letter-spacing: 0.02em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
}

    .g-btn svg {
        margin-left: 10px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        fill: #fff;
    }

    .g-btn:hover {
        background-color: #4560ea;
        border: 2px solid #4560ea;
    }

    .g-btn.m-border {
        background-color: transparent;
        color: #1A3BE2;
    }

        .g-btn.m-border svg {
            fill: #1A3BE2;
        }

        .g-btn.m-border:hover {
            background-color: #4560ea;
            color: #fff;
        }

            .g-btn.m-border:hover svg {
                fill: #fff;
            }

    .g-btn.m-round {
        border-radius: 15px;
    }

.category-info {
    max-width: 830px;
    margin: -5px auto 47px;
    padding: 23px 20px 23px 52px;
    background: #F7F8F9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}

.category-info__ico {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46px;
    flex: 0 0 46px;
    margin-top: -5px;
    height: 100%;
}

.category-info__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 128px;
    flex: 0 0 128px;
    margin-top: -5px;
    height: 100%;
}

.category-info__ico svg {
    width: 100%;
    height: 52px;
}

.category-info__title {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.02em;
    font-weight: 600;
    padding-left: 42px;
    max-width: 348px;
    width: 100%;
}

.category-info__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    letter-spacing: 0.02em;
    padding-top: 3px;
}

@media (max-width: 992px) {
    .category-info__description {
        height: unset;
    }
}

.category-info__description-title {
    width: 100%;
    margin-bottom: 16px;
    padding-left: 2px;
}

.category-info__description-list {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 400px;
}

.category-info__description-list-item {
    width: calc(48% - 8px);
    padding-left: 8px;
    position: relative;
    margin-bottom: 5px;
    padding-right: 2%;
}

    .category-info__description-list-item:before {
        content: '';
        width: 4px;
        height: 1px;
        background-color: #262626;
        position: absolute;
        left: 0;
        top: 8px;
    }

.category-info .g-btn-back {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -175px;
}

@media (max-width: 992px) {
    .category-info {
        padding: 0;
        margin-top: -5px;
        margin-bottom: 33px;
        background: #fff;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-left: 56px;
        max-width: 360px;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .category-info .g-btn-back {
            top: -8px;
            left: 0;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }

    .category-info__title {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-bottom: 17px;
        width: 100%;
        white-space: normal;
        padding-left: 0;
    }

    .category-info__ico {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 71px;
        height: 76px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 71px;
        flex: 0 0 71px;
        background: #F7F8F9;
        border-radius: 8px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .category-info__img {
        display: none;
    }

    .category-info__description {
        margin-right: 0;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-top: 0;
        padding-left: 13px;
    }

    .category-info__description-title {
        display: none;
    }

    .category-info__description-list {
        max-width: none;
    }

    .category-info__description-list-item {
        width: 100%;
        padding: 0;
        font-size: 11px;
        line-height: 15px;
    }

        .category-info__description-list-item:before {
            display: none;
        }
}

.m-category-search .search-box__form {
    margin: 0 auto 54px;
}

@media (max-width: 992px) {
    .m-category-search .search-box__form {
        margin-bottom: 30px;
    }
}

.g-btn-back {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52px;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #EBF1F7;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .g-btn-back:hover {
        background-color: #DAECFF;
    }

    .g-btn-back svg {
        width: 32px;
        height: 32px;
    }

@media (max-width: 992px) {
    .g-btn-back {
        width: 40px;
        height: 40px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
    }

        .g-btn-back svg {
            width: 19px;
            height: 18px;
        }
}

.check-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 113px;
}

.check-box__title {
    font-size: 28px;
    line-height: 38px;
    color: #000;
    font-weight: 700;
    margin: 0;
    margin-bottom: 24px;
    text-align: center;
}

.check-box__ico {
    width: 76px;
    height: 76px;
    margin-bottom: 38px;
}

.check-box__ico_activated {
    width: 76px;
    height: 76px;
    margin-bottom: 38px;
}

.check-box__ico svg {
    width: 100%;
    height: 100%;
}

.check-box__ico_activated svg {
    width: 100%;
    height: 100%;
}

.check-box__ico circle,
.check-box__ico path {
    fill: transparent;
    stroke: #56D372;
    stroke-dasharray: 217;
}

.active .check-box__ico circle, .active
.check-box__ico path {
    -webkit-animation: animate-check 1s linear forwards;
    animation: animate-check 1s linear forwards;
}

.check-box__ico path {
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
}

.check-box__body {
    position: relative;
    margin-top: 0;
    padding-bottom: 38px;
    padding-top: 0;
    background: transparent;
}

    .check-box__body:before {
        content: '';
        height: 14px;
        background: #C4C4C4;
        position: absolute;
        left: -11px;
        right: -11px;
        top: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: -1;
        border-radius: 4px;
    }

.check-box__nav-item {
    margin: 0 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-width: 3px;
}

    .check-box__nav-item:hover {
        border-width: 3px;
    }

        .check-box__nav-item:hover .ico-repeat {
            -webkit-transform: translateY(0%) rotate(360deg);
            -ms-transform: translateY(0%) rotate(360deg);
            transform: translateY(0%) rotate(360deg);
        }

.check-box__nav .ico-download {
    width: 24px;
    height: 24px;
}

.check-box__nav .ico-star {
    width: 24px;
    height: 24px;
}

.check-box__nav .ico-repeat {
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 992px) {
    .check-box {
        padding-top: 0;
        margin-top: -14px;
        margin-bottom: 50px;
    }

    .check-box__title {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 13px;
    }

    .check-box__ico {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .check-box__ico_activated {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .check-box__body {
        padding-bottom: 0;
        padding-top: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 318px;
        width: 100%;
    }

        .check-box__body .payment-details__header {
            padding-bottom: 10px;
        }

        .check-box__body .payment-details__title {
            font-size: 13px;
            line-height: 18px;
            margin-bottom: 7px;
        }

        .check-box__body .payment-details__description {
            font-size: 11px;
            line-height: 15px;
            margin-bottom: 5px;
        }

        .check-box__body .payment-details__body .payment-details__description {
            margin-bottom: 11px;
        }

    .check-box__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 326px;
        width: 100%;
    }

    .check-box__nav-item {
        margin: 0 0 10px 0;
        padding-top: 13px;
        padding-bottom: 13px;
        border-width: 2px;
        width: 100%;
        position: relative;
    }

        .check-box__nav-item svg {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            right: 56px;
            margin-left: 0;
        }

        .check-box__nav-item:hover {
            border-width: 2px;
        }

            .check-box__nav-item:hover .ico-repeat {
                -webkit-transform: translateY(-50%) rotate(360deg);
                -ms-transform: translateY(-50%) rotate(360deg);
                transform: translateY(-50%) rotate(360deg);
            }
}

@media (max-width: 350px) {
    .check-box .check-box__nav-item svg {
        right: 30px;
    }
}

@-webkit-keyframes animate-check {
    0% {
        stroke-dasharray: 0 217;
    }

    40% {
        stroke-dasharray: 72 217;
    }

    80% {
        stroke-dasharray: 140 217;
    }

    100% {
        stroke-dasharray: 217 217;
    }
}

@keyframes animate-check {
    0% {
        stroke-dasharray: 0 217;
    }

    40% {
        stroke-dasharray: 72 217;
    }

    80% {
        stroke-dasharray: 140 217;
    }

    100% {
        stroke-dasharray: 217 217;
    }
}

.ticket-box {
    overflow: hidden;
    padding-bottom: 13px;
    padding-left: 30px;
    margin-left: -30px;
    padding-right: 30px;
    margin-right: -30px;
    padding-bottom: 36px;
}

.ticket-box__body {
    padding-top: 31px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background: #F7F8F9;
    -webkit-box-shadow: 0px 0px 28px rgb(0 0 0 / 19%);
    box-shadow: 0px 0px 28px rgb(0 0 0 / 19%);
    position: relative;
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    padding-bottom: 36px;
}

.active .ticket-box__body {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.ticket-box__promo .fl-ai:first-child {
    width: 28px;
    margin-left: -14px;
}

.ticket-box__promo .fl-ai:last-child {
    width: 28px;
    margin-right: -14px;
}

.ticket-box__promo .fl-ai {
    width: 4px;
    overflow: hidden;
    align-items: center;
    display: flex;
}


.ticket-box__promo {
    height: 30px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
}

    .ticket-box__promo b {
        background: #F7F8F9;
        flex-grow: 1;
        font-weight: bolder;
    }


    .ticket-box__promo .fl-ai:after {
        content: "";
        display: block;
        width: 100%;
        padding-bottom: 100%;
        border-radius: 50px;
        box-shadow: 0 0 0 50px #F7F8F9, inset 0 3px 8px rgb(0 0 0 / 15%);
    }

    .ticket-box__promo .fl-ai:first-child::after
    .ticket-box__promo .fl-ai:last-child::after {
        border: 1px solid #e4e4e4;
        box-shadow: 0 0 0 50px #F7F8F9;
    }

.ticket-box__promo_info {
    height: 70px;
    background-color: #F7F8F9;
    text-align: center;
    -webkit-box-shadow: 0px 0px 28px rgb(0 0 0 / 19%);
    box-shadow: 0px 0px 28px rgb(0 0 0 / 19%);
    border-radius: -15px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding-top: 4px;
    gap: 15px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    color: #FF1D23;
    align-items: center;
    padding-bottom: 15px;
}

    .ticket-box__promo_info .ticket-box__promo_text {
        display: inline;
        font-size: 16px;
        font-weight: 600;
        vertical-align: middle;
    }

div.ticket-box__promo_img, div.ticket-box__promo_img > img {
    display: block;
    width: 28px;
}



@media (max-width: 992px) {
    .ticket-box {
        padding-left: 15px;
        margin-left: -15px;
        padding-right: 15px;
        margin-right: -15px;
    }

    .ticket-box__body {
        padding-top: 21px;
        padding-bottom: 10px;
        -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
    }

    .ticket-box__promo_info {
        -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
    }
}

.top-banner {
    margin-bottom: 48px;
}

.step-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 51px;
}

.step-title__img {
    width: 135px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 135px;
    flex: 0 0 135px;
    height: 60px;
    margin-left: 28px;
}

    .step-title__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.step-title__txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    line-height: 27px;
    margin-left: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.step-title .g-btn-back {
    margin-left: 14px;
}

@media (max-width: 992px) {
    .step-title {
        margin-bottom: 26px;
    }

        .step-title .g-btn-back {
            margin-left: 3px;
        }

    .step-title__txt {
        font-size: 15px;
        line-height: 21px;
    }
}

.step-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -4px;
    margin-right: -4px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 60px;
}

.step-progress__item {
    width: 25%;
    padding: 0 4px;
}

.step-progress__item-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #E0E0E0;
    margin-bottom: 4px;
}

.active .step-progress__item-title {
    color: #4F4F4F;
}

.step-progress__item-bar {
    width: 100%;
    height: 6px;
    background: #E0E0E0;
    position: relative;
}

    .step-progress__item-bar:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px 0 3px 2px;
        border-color: transparent transparent transparent #ffffff;
    }

    .step-progress__item-bar:after {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px 0 3px 2px;
        border-color: transparent transparent transparent #E0E0E0;
    }

.active .step-progress__item-bar {
    background: #1A3BE2;
}

    .active .step-progress__item-bar:after {
        border-color: transparent transparent transparent #1A3BE2;
    }

.step-progress__item:first-child .step-progress__item-bar:before {
    display: none;
}

@media (max-width: 992px) {
    .step-progress {
        margin-left: -17px;
        margin-right: -14px;
        margin-bottom: 20px;
    }

    .step-progress__item {
        padding: 0 3px;
    }

    .step-progress__item-title {
        display: none;
    }

    .step-progress__item-bar {
        height: 4px;
    }

        .step-progress__item-bar:before {
            border-width: 2px 0 2px 2px;
        }

        .step-progress__item-bar:after {
            border-width: 2px 0 2px 2px;
        }
}

.step-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px;
}

.step-box__col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    .step-box__col .field-group {
        border-bottom: 1px solid #BDBDBD;
        padding-bottom: 55px;
        margin-bottom: 48px;
    }

    .step-box__col .field-row {
        max-width: 442px;
    }

.step-box__banner-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 260px;
    flex: 0 0 260px;
}

@media (max-width: 992px) {
    .step-box {
        margin-bottom: 17px;
    }

    .step-box__col {
        padding-right: 0;
    }

        .step-box__col .field-group {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 25px;
            padding-left: 3px;
            padding-right: 3px;
        }

        .step-box__col .field-row {
            max-width: 100%;
        }
}

.step-box__col.m-with-banners-col {
    max-width: calc(100% - 260px);
    padding-right: 110px;
}

@media (max-width: 1200px) {
    .step-box__col.m-with-banners-col {
        padding-right: 50px;
    }
}

@media (max-width: 992px) {
    .step-box__col.m-with-banners-col {
        max-width: 100%;
        padding-right: 0;
    }
}

.banner-box {
    margin-bottom: 53px;
}

.field-row {
    margin-bottom: 32px;
    position: relative;
}

    .field-row:last-child {
        margin-bottom: 0;
    }

.field-row-iframe:last-child {
    margin-bottom: 32px;
}

.field-row__label {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 9px;
    display: block;
}

.field-row__input {
    width: 100%;
    border: 2px solid #E5E5E5;
    padding: 9px 8px;
    height: 44px;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-appearance: none;
    border-radius: 0;
}

    .field-row__input:focus {
        border-color: #1A3BE2;
    }

.field-row__textarea {
    resize: none;
    width: 100%;
    height: 100px;
    padding: 9px 8px;
    font-size: 14px;
    border: 2px solid #E5E5E5;
}

@media (max-width: 992px) {
    .field-row {
        margin-bottom: 23px;
    }

        .field-row input {
            height: 42px;
        }

    .field-row-iframe:last-child {
        margin-bottom: 23px;
    }
}

.field-row__input.m-field-ico {
    padding-right: 36px;
}

.field-row.m-focus .field-alert {
    opacity: 1;
    pointer-events: auto;
}

.field-row.m-focus .clear-btn {
    opacity: 1;
}

.field-alert {
    background: #DFF1FF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 25px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
    position: relative;
}

@media (min-width: 992px) {
    .field-alert {
        opacity: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        -webkit-transform: translate(calc(100% + 35px), calc(50% - 22px));
        -ms-transform: translate(calc(100% + 35px), calc(50% - 22px));
        transform: translate(calc(100% + 35px), calc(50% - 22px));
        width: auto;
        max-width: 407px;
    }

        .field-alert:before {
            content: "";
            position: absolute;
            right: 100%;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 12px 15px 12px 0;
            border-color: transparent #dff1ff transparent transparent;
        }
}

.field-alert__ico {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
}

    .field-alert__ico svg {
        width: 26px;
        height: 26px;
    }

.field-alert__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 25px;
    letter-spacing: 0.01em;
    line-height: 141.5%;
}

@media (max-width: 992px) {
    .field-alert {
        margin-bottom: 20px;
        margin-left: -17px;
        margin-right: -17px;
        padding: 18px 10px 18px 20px;
        pointer-events: auto;
    }

        .field-alert:before {
            content: "";
            position: absolute;
            left: 20px;
            top: 100%;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 12px 0 12px;
            border-color: #dff1ff transparent transparent transparent;
        }

    .field-alert__ico {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
        flex: 0 0 24px;
    }

        .field-alert__ico svg {
            width: 24px;
            height: 24px;
        }

    .field-alert__text {
        padding-left: 19px;
        font-size: 11px;
    }
}

.clear-btn {
    border: none;
    padding: 0;
    outline: none;
    background: transparent;
    width: 32px;
    height: 40px;
    position: absolute;
    bottom: 2px;
    right: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

    .clear-btn:hover svg {
        fill: #1A3BE2;
    }

    .clear-btn svg {
        width: 15px;
        height: 15px;
        fill: #828282;
    }

@media (max-width: 992px) {
    .clear-btn {
        height: 34px;
        bottom: 3px;
    }
}

.m-error-field, .m-error-field:focus {
    border-color: #EE8894;
}

.field-row.m-xs-field-row .xs-field-row {
    max-width: 220px;
    position: relative;
}

@media (min-width: 992px) {
    .field-row.m-xs-field-row .field-alert {
        -webkit-transform: translate(calc(100% - 191px), calc(50% - 22px));
        -ms-transform: translate(calc(100% - 191px), calc(50% - 22px));
        transform: translate(calc(100% - 191px), calc(50% - 22px));
    }
}

.field-row.m-text-right input {
    text-align: right;
}

.field-row.m-ico-field .ico-field {
    width: 32px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 2px;
    right: 2px;
}

    .field-row.m-ico-field .ico-field svg {
        width: 20px;
        height: 19px;
    }

.field-row.m-ico-field input {
    padding-right: 36px;
}

@media (max-width: 992px) {
    .field-row.m-ico-field .ico-field {
        height: 34px;
        bottom: 3px;
    }
}

.radio-field-group {
    /*margin-left: -10px;
  margin-top: -9px;*/
}

.radio-field-group__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #333333;
    margin-bottom: 9px;
}

@media (max-width: 992px) {
    .radio-field-group {
        margin-left: 0;
        margin-right: 0;
        padding-top: 13px;
    }
}

.radio-field-row {
    max-width: 391px;
    position: relative;
}

    .radio-field-row:after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0px;
        background-color: #E0E0E0;
        z-index: -1;
    }

    .radio-field-row:last-child:after {
        display: none;
    }

    .radio-field-row .radio-label {
        padding: 16px 35px 15px 52px;
        border: 2px solid transparent;
        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;
        cursor: pointer;
        width: 100%;
        position: relative;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

        .radio-field-row .radio-label:before {
            content: '';
            position: absolute;
            left: 13px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 22px;
            flex: 0 0 22px;
            border: 2px solid #C4C4C4;
            border-radius: 50%;
            background: transparent;
            z-index: 1;
            -webkit-transition: all 0s;
            -o-transition: all 0s;
            transition: all 0s;
        }

        .radio-field-row .radio-label:hover:before {
            border-color: #1A3BE2;
        }

        .radio-field-row .radio-label:hover .radio-payments-ico svg {
            fill: #1A3BE2;
        }

        .radio-field-row .radio-label:hover .radio-payments-ico img {
            opacity: 1;
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
        }

    .radio-field-row .radio-payments-info {
        max-width: 250px;
    }

    .radio-field-row .radio-payments-title {
        font-weight: 600;
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 5px;
    }

    .radio-field-row .radio-payments-description {
        font-weight: 500;
        font-size: 13px;
        line-height: 141.5%;
        color: #828282;
        letter-spacing: 0.01em;
    }

    .radio-field-row .radio-payments-ico svg {
        fill: grey;
    }

    .radio-field-row .radio-payments-ico img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        opacity: 0.5;
    }

    .radio-field-row .ico-payments-card {
        width: 22px;
        height: 16px;
    }

    .radio-field-row .ico-payments-sms {
        width: 21px;
        height: 18px;
    }

    .radio-field-row [type="radio"]:not(:checked),
    .radio-field-row [type="radio"]:checked {
        position: absolute;
        left: -9999px;
    }

        .radio-field-row [type="radio"]:checked + .radio-label {
            border-color: #1A3BE2;
        }

            .radio-field-row [type="radio"]:checked + .radio-label .radio-payments-ico svg {
                fill: #1A3BE2;
            }

            .radio-field-row [type="radio"]:checked + .radio-label .radio-payments-ico img {
                opacity: 1;
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }

            .radio-field-row [type="radio"]:checked + .radio-label:before {
                border-color: #1A3BE2;
                background: #1A3BE2 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAALCAYAAABPhbxiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB6SURBVHgBlZBhEYAgDIUXwQhEMAoRaKANsIE2MAJRjEAEIsx5jnMicuO726+37xgPoANEnPDG9UgjPuhEWjQ0kaVFKw1CCjJwracp21m6ZCODjK9IvipxOAt5LS7J2L9zLE3K/+AGk6oMXo74ZgMNRe0H9MBy+JRRcAJxWc+ym0ZX+wAAAABJRU5ErkJggg==") no-repeat;
                background-position: 4px 6px;
            }

            .radio-field-row [type="radio"]:checked + .radio-label:after {
                opacity: 1;
            }

@media (max-width: 992px) {
    .radio-field-row {
        max-width: 100%;
    }

        .radio-field-row .radio-label {
            padding-right: 25px;
        }
}

.step-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 400px;
    margin-bottom: 53px;
}

.step-total__title {
    font-size: 13px;
    line-height: 18px;
    color: #333333;
}

.step-total__value {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
}

@media (max-width: 992px) {
    .step-total {
        padding: 0 21px 0 15px;
        margin-bottom: 21px;
        margin-left: auto;
    }
}

.field-group.m-last-field-group {
    padding-bottom: 42px;
    margin-bottom: 35px;
}

@media (max-width: 992px) {
    .field-group.m-last-field-group {
        padding-bottom: 0;
        margin-bottom: 21px;
    }
}

.step-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
}

    .step-nav .g-btn {
        margin-left: 26px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

        .step-nav .g-btn:first-child {
            margin-left: 0;
        }

@media (max-width: 992px) {
    .step-nav .g-btn {
        padding-top: 13px;
        padding-bottom: 13px;
    }
}

@media (max-width: 480px) {
    .step-nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .step-nav .g-btn {
            width: 100%;
            margin-left: 0;
            margin-bottom: 15px;
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
        }

            .step-nav .g-btn.m-border {
                -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                order: 2;
            }
}

.g-btn.m-btn-lg {
    font-size: 18px;
    padding-left: 38px;
    padding-right: 38px;
}

@media (max-width: 992px) {
    .g-btn.m-btn-lg {
        padding-left: 19px;
        padding-right: 19px;
        font-size: 16px;
    }
}

.g-btn.m-btn-xl {
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-width: 4px;
    font-weight: 700;
    padding-top: 18px;
    text-align: center;
    padding-bottom: 18px;
}

@media (max-width: 992px) {
    .g-btn.m-btn-xl {
        padding-left: 19px;
        padding-right: 19px;
        font-size: 16px;
    }
}

.business-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.business-row__title {
    font-weight: 800;
    font-size: 45px;
    line-height: 62px;
    color: #000000;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.business-row__description {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.02em;
}

.business-row .g-btn.m-btn-xl {
    max-width: 356px;
    width: 100%;
}

@media (max-width: 1200px) {
    .business-row__title {
        font-size: 40px;
        line-height: 56px;
    }
}

.business-row.m-bg-round {
    background: #FAFAFA;
    border-radius: 51px;
}

.business-row.m-first-section.m-padding {
    padding: 43px 105px 53px;
}

@media (max-width: 1200px) {
    .business-row.m-first-section.m-padding {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.business-row.m-first-section {
    margin-bottom: 150px;
}

    .business-row.m-first-section .business-row__txt-col {
        max-width: 540px;
    }

    .business-row.m-first-section .business-row__img-col {
        margin-bottom: -184px;
        margin-left: 64px;
    }

    .business-row.m-first-section .g-btn.m-btn-xl {
        max-width: 237px;
    }

    .business-row.m-first-section .business-row__title {
        font-size: 49px;
        line-height: 67px;
        margin-bottom: 35px;
    }

    .business-row.m-first-section .business-row__description {
        margin-bottom: 51px;
    }

@media (max-width: 1200px) {
    .business-row.m-first-section {
        margin-bottom: 80px;
    }

        .business-row.m-first-section .business-row__img-col {
            margin-bottom: 0;
        }
}

.business-row.m-second-section {
    margin-bottom: 142px;
}

    .business-row.m-second-section .business-row__img-col {
        margin-left: -53px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 632px;
        flex: 0 0 632px;
    }

    .business-row.m-second-section .business-row__txt-col {
        padding-left: 41px;
        padding-top: 60px;
        max-width: 600px;
    }

    .business-row.m-second-section .business-row__title {
        margin-bottom: 30px;
    }

    .business-row.m-second-section .business-row__description {
        margin-bottom: 59px;
    }

@media (max-width: 1200px) {
    .business-row.m-second-section {
        margin-bottom: 80px;
    }

        .business-row.m-second-section .business-row__img-col {
            margin-left: 0px;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 500px;
            flex: 0 0 500px;
        }
}

.business-row.m-third-section.m-padding {
    padding: 64px 84px 77px;
}

@media (max-width: 1200px) {
    .business-row.m-third-section.m-padding {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.business-row.m-third-section {
    margin-bottom: 200px;
}

    .business-row.m-third-section .business-row__txt-col {
        max-width: 450px;
    }

    .business-row.m-third-section .business-row__img-col {
        max-width: 730px;
        margin-bottom: -187px;
        margin-right: -150px;
    }

    .business-row.m-third-section .business-row__title {
        margin-bottom: 44px;
    }

    .business-row.m-third-section .business-row__description {
        margin-bottom: 68px;
    }

@media (max-width: 1200px) {
    .business-row.m-third-section {
        margin-bottom: 80px;
    }

        .business-row.m-third-section .business-row__img-col {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 400px;
            flex: 0 0 400px;
            margin-bottom: 0;
            margin-right: -50px;
        }
}

.business-row.m-fourth-section.m-padding {
    padding: 57px 84px 77px;
}

@media (max-width: 1200px) {
    .business-row.m-fourth-section.m-padding {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.business-row.m-fourth-section {
    margin-bottom: 185px;
}

    .business-row.m-fourth-section .business-row__txt-col {
        max-width: 700px;
        margin-top: -33px;
    }

    .business-row.m-fourth-section .business-row__img-col {
        margin-left: 115px;
        margin-bottom: -170px;
    }

    .business-row.m-fourth-section .business-row__title {
        margin-bottom: 44px;
    }

    .business-row.m-fourth-section .business-row__description {
        margin-bottom: 76px;
    }

@media (max-width: 1200px) {
    .business-row.m-fourth-section {
        margin-bottom: 80px;
    }

        .business-row.m-fourth-section .business-row__img-col {
            margin-bottom: 0;
        }
}

.business-row.m-fifth-section.m-padding {
    padding: 60px 84px 74px;
}

@media (max-width: 1200px) {
    .business-row.m-fifth-section.m-padding {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.business-row.m-fifth-section {
    margin-bottom: 160px;
}

    .business-row.m-fifth-section .business-row__txt-col {
        padding-left: 17px;
        max-width: 550px;
    }

    .business-row.m-fifth-section .business-row__img-col {
        margin-left: 11px;
        margin-top: 62px;
        margin-bottom: -170px;
    }

    .business-row.m-fifth-section .business-row__title {
        margin-bottom: 56px;
    }

    .business-row.m-fifth-section .business-row__description {
        margin-bottom: 80px;
    }

@media (max-width: 1200px) {
    .business-row.m-fifth-section {
        margin-bottom: 80px;
    }

        .business-row.m-fifth-section .business-row__img-col {
            margin-bottom: 0;
            margin-top: 0;
        }
}

.market-list.m-xl-list {
    max-width: 437px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

    .market-list.m-xl-list .market-list__item:last-child {
        margin-right: 0px;
    }

    .market-list.m-xl-list .market-list__item a {
        width: auto;
        height: auto;
        border-width: 3px;
    }

    .market-list.m-xl-list .market-list__apple {
        padding: 7px 18px;
    }

        .market-list.m-xl-list .market-list__apple svg {
            width: 155px;
            height: 41px;
        }

    .market-list.m-xl-list .market-list__google svg {
        width: 100%;
        height: 55px;
    }

@media (max-width: 1200px) {
    .market-list.m-xl-list .market-list__item:last-child {
        margin-right: 0px;
    }
}

.bg-section {
    background: #FAFAFA;
    padding-top: 51px;
    padding-bottom: 114px;
}

.section-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.01em;
    color: #828282;
    margin-bottom: 75px;
    text-align: center;
}

.partners-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.partners-box__item {
    padding-left: 50px;
    padding-right: 50px;
}

    .partners-box__item img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

.contact-form {
    max-width: 442px;
    margin: 0 auto;
}

.contact-form__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 27px;
    text-align: center;
}

.contact-form .default-radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-form .g-btn {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 8px;
    padding-bottom: 10px;
}

.contact-form .field-row {
    margin-bottom: 27px;
}

@media (max-width: 992px) {
    .contact-form {
        margin-top: 48px;
    }
}

.contact-form.m-margin {
    margin-top: 81px;
    margin-bottom: 62px;
}

.field-row__textarea.m-bg,
.field-row__input.m-bg {
    background: #EEF2F4;
    border: 2px solid #EEF2F4;
}

.field-row__textarea.m-without-border:focus,
.field-row__input.m-without-border:focus {
    background: #fff;
}

.default-radio-field {
    margin-bottom: 30px;
}

.default-radio-field__title {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 13px;
}

@media (max-width: 992px) {
    .default-radio-field {
        margin-bottom: 22px;
    }

    .default-radio-field__title {
        margin-bottom: 16px;
    }
}

.field-submit-row {
    padding-top: 23px;
}

@media (max-width: 992px) {
    .field-submit-row {
        padding-top: 30px;
    }
}

.default-radio-item {
    margin-right: 27px;
}

    .default-radio-item .default-radio-label {
        padding-left: 20px;
        font-size: 13px;
        line-height: 18px;
        position: relative;
        cursor: pointer;
    }

        .default-radio-item .default-radio-label:before {
            content: "";
            width: 13px;
            height: 13px;
            border: 1px solid #C4C4C4;
            position: absolute;
            left: 0;
            top: 2px;
            background: transparent;
            border-radius: 50%;
        }

        .default-radio-item .default-radio-label:after {
            content: '';
            width: 7px;
            height: 7px;
            background: #1A3BE2;
            border-radius: 50%;
            position: absolute;
            left: 4px;
            top: 6px;
            opacity: 0;
        }

    .default-radio-item [type="radio"]:not(:checked),
    .default-radio-item [type="radio"]:checked {
        position: absolute;
        left: -9999px;
    }

        .default-radio-item [type="radio"]:checked + .default-radio-label:after {
            opacity: 1;
        }

@media (max-width: 992px) {
    .default-radio-item {
        width: 100%;
        margin-right: 0;
    }

        .default-radio-item .default-radio-label {
            padding: 14px 52px;
            border: 2px solid transparent;
            width: 100%;
            display: block;
            font-size: 14px;
            line-height: 19px;
            font-weight: 600;
        }

            .default-radio-item .default-radio-label:before, .default-radio-item .default-radio-label:after {
                left: 14px;
                width: 24px;
                height: 24px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

            .default-radio-item .default-radio-label:after {
                width: 26px;
                height: 26px;
                background: #1A3BE2 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAALCAYAAABPhbxiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB6SURBVHgBlZBhEYAgDIUXwQhEMAoRaKANsIE2MAJRjEAEIsx5jnMicuO726+37xgPoANEnPDG9UgjPuhEWjQ0kaVFKw1CCjJwracp21m6ZCODjK9IvipxOAt5LS7J2L9zLE3K/+AGk6oMXo74ZgMNRe0H9MBy+JRRcAJxWc+ym0ZX+wAAAABJRU5ErkJggg==") no-repeat 50%;
            }

        .default-radio-item [type="radio"]:checked + .default-radio-label {
            border-color: #1A3BE2;
        }

            .default-radio-item [type="radio"]:checked + .default-radio-label:before {
                border-color: #1A3BE2;
                background: #1A3BE2;
            }
}

.m-pt-20 {
    padding-top: 20px;
}

.mob-first-buisness-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 360px;
    margin: -33px auto 0;
}

.mob-first-buisness-box__person {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 99px;
    flex: 0 0 99px;
}

.mob-first-buisness-box__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    padding: 17px 28px 20px 41px;
    background: url(../img/union.svg) no-repeat;
    background-size: contain;
    margin-top: -17px;
}

@media (max-width: 350px) {
    .mob-first-buisness-box__title {
        padding-left: 25px;
        padding-right: 10px;
    }
}

.mob-business-box {
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 19px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 13px 19px 16px 19px;
}

    .mob-business-box:last-child {
        margin-bottom: 45px;
    }

.mob-business-box__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 20px;
    max-width: calc(100% - 77px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.mob-business-box__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 77px;
    flex: 0 0 77px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mob-business-box.m-first-mob-box {
    background-color: #EFF9FE;
    margin-top: -5px;
}

.mob-business-box.m-second-mob-box {
    background-color: #F0FFF6;
}

    .mob-business-box.m-second-mob-box .mob-business-box__img {
        margin-right: -19px;
        margin-top: -3px;
        margin-bottom: -6px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 101px;
        flex: 0 0 101px;
    }

    .mob-business-box.m-second-mob-box .mob-business-box__title {
        padding-right: 5px;
        max-width: calc(100% - 101px);
    }

.mob-business-box.m-third-mob-box {
    background-color: #F0F0FF;
}

.mob-business-box.m-fourth-mob-box {
    background-color: #FFF0DE;
    padding-top: 18px;
    padding-bottom: 18px;
}

.step-buisness {
    margin-top: -13px;
    margin-bottom: 35px;
}

    .step-buisness .step-title {
        padding-left: 5px;
        margin-bottom: 23px;
    }

    .step-buisness .step-title__txt {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        margin-left: 15px;
    }

    .step-buisness .g-btn {
        max-width: 360px;
        width: 100%;
        padding-top: 8px;
        padding-bottom: 7px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

@media (max-width: 992px) {
    .step-buisness .g-btn {
        max-width: 100%;
    }
}

.business-profit {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    padding-left: 17px;
    padding-top: 3px;
    margin-bottom: 45px;
}

.business-profit__title {
    font-weight: 600;
    margin-bottom: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .business-profit__title svg {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
        flex: 0 0 18px;
        height: 18px;
        margin-right: 10px;
    }

.business-profit__description {
    margin: 0;
    margin-bottom: 19px;
}

    .business-profit__description:last-child {
        margin-bottom: 0;
    }

.faq-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -26px;
}

.faq-box__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    background-color: #F7F8F9;
    padding-right: 13px;
}

.faq-box__sidebar-body {
    overflow-y: auto;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.faq-box__body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 44px;
    padding-top: 24px;
    padding-right: 44px;
}

.faq-box__sidebar-body.m-native-custom-scrollbar {
    scroll-behavior: smooth;
}

    .faq-box__sidebar-body.m-native-custom-scrollbar::-webkit-scrollbar {
        width: 6px;
        height: 4px;
    }

    .faq-box__sidebar-body.m-native-custom-scrollbar::-webkit-scrollbar-thumb {
        background-color: #C4C4C4;
        -webkit-border-radius: 3px;
        -webkit-width: 6;
    }

    .faq-box__sidebar-body.m-native-custom-scrollbar::-webkit-scrollbar-button {
        display: none;
    }

    .faq-box__sidebar-body.m-native-custom-scrollbar::-webkit-scrollbar-track {
        background-color: none;
    }

    .faq-box__sidebar-body.m-native-custom-scrollbar::-webkit-scrollbar-corner {
        display: none;
    }

    .faq-box__sidebar-body.m-native-custom-scrollbar::-webkit-resizer {
        display: none;
    }

.sidebar-item {
    margin-bottom: 22px;
}

.sidebar-item__title {
    letter-spacing: -0.01em;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    position: relative;
    color: #4F4F4F;
    cursor: pointer;
}

.active .sidebar-item__title {
    font-weight: 700;
    color: #262626;
}

.sidebar-item__title:before {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid #4F4F4F;
    border-left: none;
    border-bottom: none;
    position: absolute;
    left: -22px;
    top: 3px;
    background: transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.active .sidebar-item__title:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    border-color: #1A3BE2;
    top: 0;
    left: -20px;
}

.sidebar-item__list {
    margin: 0;
    padding: 0;
    margin-top: 14px;
    padding-left: 15px;
    display: none;
}

.active .sidebar-item__list {
    display: block;
}

.sidebar-item__list-item {
    margin-bottom: 17px;
}

    .sidebar-item__list-item:last-child {
        margin-bottom: 0;
    }

.sidebar-item__list-item-link {
    color: #4F4F4F;
    font-weight: 500;
    letter-spacing: -0.01em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
}

    .sidebar-item__list-item-link:hover {
        color: #262626;
    }

.g-text img {
    margin-bottom: 1rem;
}

.g-text h1 {
    margin: 1.3rem 0 2.9rem;
    font-weight: bold;
    font-size: 22px;
    line-height: 16px;
}

.g-text h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 16px;
}

.g-text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.01em;
    margin-top: 0;
    margin-bottom: 1rem;
}

    .g-text p + h1, h2, h3 {
        margin-top: 2.4rem;
    }

.xs-faq-box {
    margin-top: -3px;
    margin-bottom: 40px;
}

.xs-faq-box__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 22px;
    padding-left: 11px;
}

.xs-faq-box__item {
    padding: 8px;
    background-color: #F7F8F9;
    margin-bottom: 15px;
    border-radius: 4px;
}

.xs-faq-box__item-title {
    padding: 13px 40px 17px 14px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    position: relative;
}

    .xs-faq-box__item-title:before {
        content: "";
        width: 11px;
        height: 11px;
        border: 2px solid #1A3BE2;
        position: absolute;
        top: 50%;
        margin-top: -10px;
        right: 15px;
        border-left: none;
        border-bottom: none;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    }

.active .xs-faq-box__item-title:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -4px;
}

.xs-faq-box__item-body {
    position: relative;
    padding: 12px 10px 10px 14px;
    display: none;
}

.active .xs-faq-box__item-body {
    display: block;
}

.xs-faq-box__item-body:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #828282;
    opacity: 0.2;
    position: absolute;
    left: 0;
    top: 0;
}

.xs-faq-box__item-body-subtitle {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
}

.xs-faq-box__item-body-description {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 20px;
}

    .xs-faq-box__item-body-description:last-child {
        margin-bottom: 0;
    }

.mob-search-btn {
    position: absolute;
    top: -6px;
    right: 74px;
    padding: 10px;
}

    .mob-search-btn svg {
        width: 20px;
        height: 20px;
        fill: #1A3BE2;
    }

.filter-item__body {
    padding: 0 3px;
}

    .filter-item__body .field-row.m-ico-field .ico-field {
        right: 10px;
    }

    .filter-item__body .field-row.m-ico-field .field-row__input {
        padding-left: 0;
        padding-right: 40px;
    }

    .filter-item__body .radio-group {
        padding: 0 5px;
    }

.filter-item__body-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.02em;
}

.filter-item__body-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 13px;
    margin-top: -8px;
    margin-left: -12px;
}

.filter-item__body-back-ico {
    width: 49px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49px;
    flex: 0 0 49px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

    .filter-item__body-back-ico svg {
        width: 19px;
        height: 18px;
    }

.filter-item__body-back-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: calc(100% - 29px);
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0.02em;
}

.filter-item .field-row__input {
    height: 40px;
}

.filter-item .g-btn {
    padding: 13px 22px;
}

.filter-item__submit-row .g-btn {
    width: 100%;
    margin-bottom: 11px;
}

.filter-template-item .filter-item__body-title {
    margin-bottom: 15px;
}

.light-radio-item {
    border-bottom: 1px solid #BDBDBD;
}

    .light-radio-item:last-child {
        border-bottom: none;
    }

    .light-radio-item .light-radio-label {
        position: relative;
        padding: 23px 0;
        font-weight: 500;
        letter-spacing: 0.02em;
        display: block;
        position: relative;
        cursor: pointer;
    }

        .light-radio-item .light-radio-label:before, .light-radio-item .light-radio-label:after {
            content: "";
            width: 22px;
            height: 22px;
            border: 2px solid #C4C4C4;
            border-radius: 50%;
            -webkit-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            position: absolute;
            top: 50%;
            right: 9px;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .light-radio-item .light-radio-label:after {
            background: #1A3BE2 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAALCAYAAABPhbxiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB6SURBVHgBlZBhEYAgDIUXwQhEMAoRaKANsIE2MAJRjEAEIsx5jnMicuO726+37xgPoANEnPDG9UgjPuhEWjQ0kaVFKw1CCjJwracp21m6ZCODjK9IvipxOAt5LS7J2L9zLE3K/+AGk6oMXo74ZgMNRe0H9MBy+JRRcAJxWc+ym0ZX+wAAAABJRU5ErkJggg==") no-repeat 50%;
            border-color: #1A3BE2;
            opacity: 0;
        }

    .light-radio-item [type="radio"]:not(:checked),
    .light-radio-item [type="radio"]:checked {
        position: absolute;
        left: -9999px;
    }

        .light-radio-item [type="radio"]:checked + .light-radio-label:after {
            opacity: 1;
        }

.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.field-row__input.m-whithout-border {
    border: none;
}

    .field-row__input.m-whithout-border:focus {
        border: none;
    }

.hidden {
    display: none;
}

@media (max-width: 992px) {
    .hidden-xs {
        display: none;
    }
}

.hidden-xl,
.payment-details.m-modal.active {
    display: none;
}

@media (max-width: 992px) {
    .hidden-xl,
    .payment-details.m-modal.active {
        display: block;
    }
}

.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    opacity: 0.8;
    z-index: 100010;
    display: none;
}

.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid rgba(218, 219, 223, 1);
    border-left: .8em solid #1A3BE2;
    animation: spin 1.1s infinite linear;
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 8em;
        height: 8em;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -4.05em;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.getting-money {
    display: none;
}

input:disabled {
    color: #262626;
}

#prePayDiv .radio-label {
    border-color: #EEF2F4;
}

#prePayDiv .radio-field-row [type="radio"]:checked + .radio-label:before {
    border-color: #EEF2F4;
    background: #EEF2F4 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAALCAYAAABPhbxiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB6SURBVHgBlZBhEYAgDIUXwQhEMAoRaKANsIE2MAJRjEAEIsx5jnMicuO726+37xgPoANEnPDG9UgjPuhEWjQ0kaVFKw1CCjJwracp21m6ZCODjK9IvipxOAt5LS7J2L9zLE3K/+AGk6oMXo74ZgMNRe0H9MBy+JRRcAJxWc+ym0ZX+wAAAABJRU5ErkJggg==) no-repeat;
    background-position: 4px 6px;
}

#prePayDiv .radio-field-row .radio-payments-ico img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input, textarea, select {
    border-radius: 0;
    -webkit-appearance: none !important;
}

    input[type="search"] {
        -webkit-appearance: none !important;
    }




.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.7);
}

.modal-body {
    letter-spacing: 0.02em;
    margin-top: 50px;
}

.modal-header {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: black;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 50px;
    max-width: 475px;
    font-size: 14px;
}

.close {
    position: absolute;
    color: black;
    font-size: 30px;
    top: 30px;
    right: 30px;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.modal-body .step-nav {
    margin-top: 50px;
    display: block;
}

    .modal-body .step-nav .g-btn {
        margin-top: 50px;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-left: 0;
    }

        .modal-body .step-nav .g-btn.m-border {
            margin-top: 16px;
        }

.txt-center {
    text-align: center;
}

.progress-container {
    font-size: 13px;
}

.error-container {
    margin: 0 auto;
    background-color: #EFF4F9;
    max-width: 476px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 100px;
    margin-top: 50px;
}

    .error-container .field-alert__ico {
        margin: 0 auto;
    }

        .error-container .field-alert__ico svg {
            width: 46px;
            height: 46px;
        }

    .error-container .error-header {
        font-size: 20px;
        font-weight: 600;
        margin-top: 20px;
    }

    .error-container p {
        margin-top: 42px;
        font-weight: 500;
        font-size: 15px;
    }

    .error-container .g-btn {
        margin-top: 47px;
        padding-top: 18px;
        padding-bottom: 18px;
        padding-left: 38px;
        padding-right: 38px;
    }


.mobile-banner {
    background: #F3F3F4;
    border-radius: 20px;
    min-width: 1216px;
    margin-bottom: 100px;
}

    .mobile-banner .main-banner {
        background: none;
        padding: 0;
    }

    .mobile-banner .main-banner__info {
        max-width: none;
        display: block;
        padding: 50px;
    }

    .mobile-banner .category-info__description {
        margin-top: 33px;
        margin-bottom: 33px;
    }

    .mobile-banner .category-info__description-list {
        font-size: 14px;
        max-width: 550px;
    }

        .mobile-banner .category-info__description-list .category-info__description-list-item {
            margin-bottom: 28px;
        }

            .mobile-banner .category-info__description-list .category-info__description-list-item::before {
                content: none;
            }

            .mobile-banner .category-info__description-list .category-info__description-list-item img {
                width: 24px;
                height: 24px;
                margin-right: 13px;
            }



    .mobile-banner .market-list {
        width: 310px;
    }

        .mobile-banner .market-list .market-list__apple,
        .mobile-banner .market-list .market-list__google {
            background-color: #262626;
            border-color: #262626;
        }

    .mobile-banner .main-banner__title {
        font-size: 42px;
        line-height: 1.3;
    }

    .mobile-banner .market-list__item a {
        width: 172px;
        height: 54px;
        margin-right: 25px;
    }


    .mobile-banner .market-list__apple svg {
        width: 136px;
        height: 50px;
    }

    .mobile-banner .market-list__google svg {
        height: 48px;
    }

    .mobile-banner .market-list__item:last-child {
        margin-right: 0px;
    }

    .mobile-banner .qr-block {
        background-color: #fff;
        display: flex;
        width: 400px;
        height: 170px;
        margin-top: 45px;
        border-radius: 20px;
        align-items: center;
    }

    .mobile-banner .qr-block-text {
        width: 192px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.3;
        /*letter-spacing: -1.3px;*/
    }

    .mobile-banner .qr-block img {
        margin: 12px;
    }

    .mobile-banner .main-banner__img {
        height: 100%;
    }

        .mobile-banner .main-banner__img img {
            margin-top: 60px;
            margin-left: 10px;
        }


@media (max-width: 992px) {
    .mobile-banner .category-info__description-list-item {
        width: calc(48% - 8px);
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .mobile-banner .market-list {
        flex-wrap: unset;
    }

    .mobile-banner .market-list__item {
        width: 50%;
        margin-right: 25px;
    }
}




.main-banner_1 {
    background: #E9E9E9;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: space-between;
    align-items: flex-end;
}

.main-banner_1__info {
    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;
    max-width: 238px;
    min-width: 200px;
    margin-bottom: 23px;
    margin-left: 23px;
}

    .main-banner_1__info .main-banner__link_1 {
        font-size: 18px;
        line-height: 25px;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

        .main-banner_1__info .main-banner__link_1:hover {
            text-decoration: underline;
        }

        .main-banner_1__info .main-banner__link_1 .ico-arrow-right {
            width: 10px;
            height: 18px;
            position: absolute;
            bottom: 7px;
            right: 47px;
        }

            .main-banner_1__info .main-banner__link_1 .ico-arrow-right svg {
                width: 100%;
                height: 100%;
            }

.main-banner_1__title {
    margin: 0;
    font-size: 27px;
    line-height: 37px;
    font-weight: 800;
    margin-bottom: 10px;
    width: 100%;
}


.main-banner_1__img {
    width: 100%;
    margin-left: 75px;
}

.main-banner_2__img, .main-banner_3__img {
    width: 100%;
    margin: 0 3% 24px 6%;
}


@media (max-width: 992px) {
    .main-banner_1 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 22px;
    }

    .main-banner_1__title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .main-banner_1__info {
        max-width: 110px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .main-banner__link_1 {
        padding: 8px 22px;
    }

    .main-banner_1__img {
        margin-right: -20px;
        margin-top: 7px;
    }
}

.search-modal .search-input-block {
    margin: 0px auto;
    margin-top: 50px;
    max-width: 688px;
    padding-left: 20px;
    padding-right: 20px;
}

    .search-modal .search-input-block .search-input {
        width: 100%;
        outline: 0;
        border-width: 0 0 2px;
        border-color: #828282;
        font-size: 24px;
        font-weight: 600;
    }


.search-modal .payment-details__body {
    margin: 0px auto;
    overflow-y: auto;
    height: 70%;
    max-width: 490px;
    margin-top: 25px;
}

    .search-modal .payment-details__body .search__block {
        margin: 0px auto;
        max-width: 490px;
        text-align: center;
        font-size: 14px;
        margin-top: 30px;
    }

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #DBDBDB;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.g-btn.m-btn-lg.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

a.forgot-pass {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    display: block;
    text-align: center;
    padding-top: 31px;
    color: #1A3BE2;
}

    a.forgot-pass:hover {
        text-decoration: underline;
    }

.field-row__eye {
    position: relative;
}

    .field-row__eye.m-error-field {
        margin-bottom: -18px;
    }

    .field-row__eye > .pass-eye {
        width: 24px;
        position: absolute;
        right: 10px;
        top: 10px;
        height: 24px;
        background: url(../content/images/pass-eye.svg) no-repeat;
        cursor: pointer;
    }

        .field-row__eye > .pass-eye:hover {
            background: url(../content/images/pass-eye-active.svg) no-repeat
        }

    .field-row__eye > .field-row__input:focus ~ .pass-eye {
        background: url(../content/images/pass-eye-active.svg) no-repeat
    }

    .field-row__eye > .pass-eye.active {
        background: url(../content/images/pass-eye-no.svg) no-repeat
    }

.field-row__label.twofa-name {
    min-height: 45px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #333333;
}

.modal-body .field-row.twofa-actions-container {
    margin-top: 42px;
}

.modal-body .field-row > .twofa-actions-name {
    vertical-align: top;
    display: inline-block;
}

.modal-body .field-row > ul.twofa-actions {
    margin: 0;
    padding: 0 14px;
    display: inline-block;
}

    .modal-body .field-row > ul.twofa-actions > li > a {
        font-weight: 500;
        font-size: 13px;
        line-height: 18px;
        display: block;
        color: #1A3BE2;
    }

        .modal-body .field-row > ul.twofa-actions > li > a:hover {
            text-decoration: underline;
        }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu > li {
        list-style-type: none;
        border-bottom: solid 1px #eeeeee;
        letter-spacing: 0.08em;
        padding: 4px;
        min-width: 180px;
    }

        .dropdown-menu > li > a {
            position: relative;
            font-size: 12px;
            display: block;
            left: 0;
        }

        .dropdown-menu > li:hover {
            background: #EFF4F9;
        }

.m-error-field.m-error-text {
    color: #EE8894;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
}

.noun-cookie-container {
    width: 100%;
    height: 105px;
    background: #000000;
    opacity: 0.7;
    box-shadow: 0px -7px 28px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    z-index: 99999;
    -webkit-transform: translateZ(0);
}

    .noun-cookie-container > .noun-cookie-row {
        display: flex;
        height: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

.noun-cookie-row > svg {
    width: 48px;
    height: 48px;
}

.noun-cookie-row > p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    max-width: 76%;
    display: inline-block;
    text-align: left;
    margin: 0 24px;
}

@media (max-width: 992px) {
    .noun-cookie-row > p {
        font-size: 12px;
        line-height: 14px;
        max-width: 72%;
        margin: 0 12px;
    }
}

.noun-cookie-row > .g-btn.m-border {
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
}

    .noun-cookie-row > .g-btn.m-border:hover {
        background-color: #FFFFFF;
        color: #000000;
    }

#requests, #continueBtnSpan {
    width: 100%;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.m-add-card {
    max-width: 340px;
}

img.m-add-card {
    max-height: 34px;
}

.field-alert__text .timer {
    color: #1A3BE2;
    font-size: 26px;
    line-height: normal;
    font-family: GoogleSansRegular;
}

.wrongSumforPayelement {
    position: absolute;
    color: #e42424;
    font-size: 14px;
}

.sbp-qr__block {
    margin-bottom: 10px;
}

.sbp-logo {
    position: absolute;
    margin-top: 95px;
    left: 108px;
    width: 35px;
    z-index: 1;
    background-color: #fff;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto;
}

.footer__market-list {
    margin-right: 50px;
}

@media (min-width:992px) {
    .footer__col-apps {
        width: 25%;
    }

    .market-list__item {
        margin-right: 0px;
    }

    .footer__market-list {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

.modal-content-iframe {
    margin: 2% auto 5% auto;
    padding: 0;
    height: 85%;
    max-width: 1240px;
}

.modal-body-iframe {
    margin-top: 0px;
    height: 100%;
}

@media (max-width:1340px) {
    .modal-content-iframe {
        max-width: 90%;
    }
}

.iframe-btn-div {
    display: flex;
    width: 100%;
    justify-content: end;
}

.iframe-btn {
    height: 56px;
}

    .iframe-btn.m-border {
        margin-top: 15px;
    }

.modal-iframe {
    overflow: hidden;
    height: 100%;
    width: 100%;
    padding-top: 50px;
    padding-right: 1px;
    border: 0;
}

@media (max-width:992px) {
    .request-btn {
        width: 100%;
    }

    .field-row-request-btn {
        margin-left: 3px;
        margin-right: 3px;
        width: 100%;
    }

    .modal-content-iframe {
        max-width: 100%;
        height: 95%;
        margin: 0;
    }

    .iframe-btn {
        margin-bottom: 0px;
        width: 100%;
        height: 46px;
    }
}

.offer-link {
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #1A3BE2;
}

    .offer-link:hover {
        text-decoration: underline;
    }


.e-info {
    text-align: center;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.02em;
    color: #262626;
}

    .e-info.h3 {
        font-size: 21px;
        font-weight: 600;
    }

    .e-info.h4 {
        font-size: 17px;
    }

    .e-info.h5 {
        font-size: 15px;
    }

.e-text-muted {
    color: #777;
}

.field-row__currency-calculator {
    position: relative;
}

.field-row__currency-calculator--label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    inset: 0px 0px 0px 14px;
    font-family: Manrope;
    font-size: 13px;
    font-weight: 600;
    line-height: 17.88px;
}

.field-row__currency-calculator--ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 14px;
    bottom: 0px;
    top: 2px;
    font-family: Manrope;
    font-size: 13px;
    font-weight: 400;
    line-height: 17.76px;
}


.field-row__currency-calculator--input-borderless {
    border-bottom: none;
}

.field-row__currency-calculator--input {
    background-color: white;
}

.display-none {
    display: none;
}

.ticket-index__event-company-info {
    margin-left: 101px;
}


@media (max-width:992px) {
    .ticket-index__event-company-info {
        margin-left: 0px;
    }
}

.step-progress {
    display: none !important;
}


.field-row_validation-result {
    background-color: #DFF1FF;
    border: 1px solid #EAEAEA;
    display: flex;
    flex-direction: row;
    padding: 20px 20px;
    align-items: center;
    align-content: center;
    gap: 20px;
}

.field-row_validation-result-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: Manrope;
    font-size: 12px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.01em;
    text-align: left;
}

.field-alert__inline-span {
    gap: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.field-alert__inline-validation-ico {
    width: fit-content;
}


.field-row-request-btn a.activateTicket-btn {
    font-size: 20px;
    padding-top: 13px;
    padding-bottom: 13px;
    margin-top: 20px;
}

