@font-face {
    font-family: KantarBrown Regular;
    src: url("fonts/kantar-brown/KantarBrownCyr-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: KantarBrown Bold;
    src: url("fonts/kantar-brown/KantarBrownCyr-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: KantarBrown Light;
    src: url("fonts/kantar-brown/KantarBrownCyr-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: KantarBrown Italic;
    src: url("fonts/kantar-brown/KantarBrownCyr-Italic.otf") format("opentype");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: KantarBrown Thin;
    src: url("fonts/kantar-brown/KantarBrownCyr-Thin.otf") format("opentype");
    font-style: normal;
    font-display: swap;

}

html, body {
    color: #222;
    font-family: "KantarBrown Regular", sans-serif;
    padding: 0;
    margin: 0;
    height: 100%;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

/* Pace Loader */
.pace::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    z-index: 999999998;
    overflow: hidden;
    transition: visibility 0.5s, opacity 0.5s linear;

}

.pace .pace-progress {
    background: #bb9406;
    height: 5px;
}

.pace .pace-progress {
    z-index: 9999999999;
}

.pace .pace-activity {
    display: none;
}

a {
    text-decoration: none;
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 0;
}

header {
    width: 100%;
    top: 30px;
    position: absolute;
    z-index: 101;
}

header .header-shell {
    width: min(100%, 1960px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

header .logo {
    display: inline-block;
    flex: 0 0 auto;
    max-width: 300px;
    padding: 0 20px 0 1px;
}

header .header-right {
    flex: 1 1 auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 26px;
    min-width: 0;
}

header .header-menu {
    padding: 0;
    width: auto;
    display: flex;
    justify-content: flex-end;
}

header .header-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

header .header-menu ul li {
    display: inline-flex;
    padding: 0;
    position: relative;
}

header .header-menu ul li a {
    color: #fff;
    font-size: 22px;
}

header .header-menu ul li a:hover {
    color: #d7aa47;
    transition: 200ms;
}


.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background: none;
}


header .header-menu ul li:not(:first-child) a:hover {
    text-decoration: none;
}


a:focus,
header .header-menu ul li a:focus {
    text-decoration: none;
}

header .header-menu ul li.small a {
    font-size: 12px;
    position: relative;
    top: -3px;
}

header .logo .logotype {
    height: 45px;
    padding: 10px 20px;
}

header .main-menu {
    display: block;
    width: 100%;
    margin: 0;
    margin-top: 18px;
    text-align: right;
    z-index: 1001;
}

header .main-menu > .container,
header .main-menu > .container-fluid {
    padding: 0;
    max-width: 860px;
}

header .main-menu ul {
    list-style-type: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: nowrap;
    width: 100%;
}

header .main-menu ul li {
    display: inline-flex;
    padding: 0;
}

header .main-menu ul li a {
    color: #fff;
    font-size: 17px;
    font-family: "KantarBrown Bold", sans-serif;
    text-transform: uppercase;
    position: relative;
}

header .main-menu ul li a.mobile-auto {
    display: none;
}

header .main-menu ul li a:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    background: transparent;
}

header .main-menu ul li a:hover {
    transition: .3s;
    color: #111;
    text-decoration: none;
}

header .main-menu ul li a:hover:after {
    background-color: #111;
    width: 100%;
    transition: .4s;
}

.wrap {
    position: relative;
    z-index: 1;
}

.navbar-default {
    background-color: transparent;
    border: none;
}

@media screen and (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 1280px) {
    header .header-shell {
        padding: 0 18px;
    }

    header .header-right {
        max-width: 1040px;
        gap: 20px;
    }

    header .header-menu ul {
        gap: 16px;
    }

    header .main-menu ul {
        gap: 20px;
    }

    header .main-menu {
        margin-top: 26px;
    }

    header .main-menu ul li a {
        font-size: 15px;
    }
}

.site-error {
    max-width: 550px;
    margin: 150px auto;
    background: #fff;
    padding: 23px 20px;
    border: 1px solid #f9f9f9;
    color: #666;
    text-align: center;
    font-family: "KantarBrown Light", sans-serif;
}

.site-error .logo {
    opacity: .9;
    text-align: center;
}

.site-error .content {
    padding: 7px 0;
    background: #fff;
}

.site-error .logo:after {
    content: "";
    background: #222;
    display: block;
    height: 3px;
    border: none;
    margin-top: 15px;
    background-size: 400% 100%;
}

a.btn-mid {
    margin: 10px 0 !important;
    max-width: 375px;
    padding: 12px 18px;
    font-size: 14px !important;
    color: #444 !important;
}

a.btn-mid:hover, a.btn-mid:focus {
    outline: none !important;
    color: #333 !important;
    background: #d7aa47 !important;
}

.btn-back {
    background: transparent;
    border: 2px solid #222;
    padding: 7px 25px;
    color: #222;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    font-family: "KantarBrown Regular", sans-serif;
    max-width: 240px;
    margin: 20px 7px 0 7px;
}

.btn-back:hover,
.btn-back:focus {
    text-decoration: none;
    color: #fff;
    background: #222;
    transition: background 0.8s;
}

.btn-help,
.btn-help:focus {
    padding: 9px 15px;
    background: #eee;
    border: none;
    color: #222;
    text-align: center;
    font-family: KantarBrown Light, sans-serif;
}

.btn-help-outline {
    background: transparent;
    border: 2px solid #222;
    padding: 7px 15px;
    color: #222;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    font-family: "KantarBrown Regular", sans-serif;
    max-width: 240px;
    margin: 25px 0 0 0;
}

.btn-help-outline:hover,
.btn-help-outline:focus {
    background: #222;
    color: #fff;
    margin: 25px 0;
    border: 2px solid #222;
    padding: 7px 15px;
    font-family: "KantarBrown Regular", sans-serif;
}

.btn-help.btn-block {
    max-width: 390px;
    display: block;
    margin: 5px auto;
}

.main-menu li .btn-help {
    background: #000;
    color: #fff;
    font-family: KantarBrown Light, sans-serif;
    padding: 12px 18px;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

.site-error .alert-danger {
    color: #a94442;
    background-color: #fff2f2;
    font-size: 14px;
    font-family: KantarBrown Regular, sans-serif;;
}

.site-error h2 {
    color: #444;
    font-size: 20px;
    font-family: "KantarBrown Regular", sans-serif;
}

.content {
    width: 100%;
    height: 100%;
    background: #fafafa;
    display: table;
}

.content .intro {
    background: url("./images/main-bg.jpg") top center no-repeat;
    background-size: cover !important;
    height: 515px;
    max-height: 100%;
    position: relative;
}

.content .intro:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(260deg, rgba(187, 129, 53, 0.8) 0%, rgba(255, 255, 255, .25) 100%);
    opacity: .7;
}


.content .register-intro {
    width: 100%;
    height: 480px;
    background: url("images/inspiration-bg.jpg") center bottom no-repeat;
    background-size: cover;
}

.content .conversion-intro {
    height: 430px;
}

.content .register-intro:before {
    background: none;
    opacity: .6;
    z-index: -1;
}

.content .register-intro .row div > .title {
    color: #fff;
    text-transform: uppercase;
    line-height: 50px;
    margin: 70px auto;
    font-size: 55px;
    max-width: 750px;
    font-family: "KantarBrown Bold", sans-serif;
}

.content .register-intro .row div > .title > small {
    display: block;
    font-family: "KantarBrown Thin", sans-serif;
    color: #fff;
    font-size: 28px;
    padding: 25px 0;
}

.content .intro .slogan {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 210px;
    position: relative;
    z-index: 100;
}

.content .intro .slogan h1 {
    color: #fff;
    text-align: left;
    font-family: "KantarBrown Bold", sans-serif;
    font-size: clamp(42px, 4vw, 65px);
    line-height: 1.15;
    min-height: 150px;
    margin-bottom: 15px;
    text-transform: uppercase;
    -webkit-animation: slide-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    text-shadow: 1px 3px 10px #999;
}

.content .intro .slogan h2 {
    font-family: "KantarBrown Light", sans-serif;
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    min-height: 84px;
    text-align: left;
}

.content .intro .slogan a {
    display: block;
    background: #000000;
    border: 2px solid #000;
    max-width: 264px;
    color: #fff;
    font-family: "KantarBrown Regular", sans-serif;
    font-size: 17px;
    padding: 12px 32px;
    text-transform: uppercase;
    margin: 45px 0 0;
    transition: 0.08s ease-in;
    -o-transition: 0.08s ease-in;
    -moz-transition: 0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
    z-index: 1;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;

    /* position: fixed; */
}

.content .intro .slogan a.btn-kantar {
    background: #d7aa47;
    color: #444;
}

.content .intro .slogan a.btn-register {
    position: relative;
    margin-top: 35px;
}

.content .intro .slogan a:before {
    content: "";
    position: absolute;
    background: #d7aa47;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -1;
    color: #111;
    -webkit-transition: top 0.09s ease-in;
    transition: top 0.09s ease-in;
}

.content .intro .slogan a:hover {
    color: #fff;
    border-color: #d7aa47;
    text-decoration: none;
}

.content .intro .slogan a:hover:before {
    top: 0;
}

.devices {
    text-align: left;
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.form-control {
    border-radius: 0;
}

footer {
    padding: 28px 15px;
    color: #aeaeae;
    font-family: "KantarBrown Light", sans-serif;
    font-size: 14px;
    line-height: 15px;
    background: #444;
    margin-top: auto;
}

.invalid-feedback {
    transition: .3s all;
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
    text-align: left;
}

.bg-white {
    background-color: #fff;
}

.col-centered {
    float: none;
    margin: 0 auto;
    z-index: 9999;
}

.sectionRegister {
    background: #fafafa;
    padding: 40px 0;
}

.loader-mini {
    position: absolute;
    width: 6px;
    height: 10px;
    margin-left: 6px;
    margin-right: 9px;
    right: 25px;
    top: 12px
}

.loader-mini div {
    display: inline-block;
    position: absolute;
    left: 2px;
    width: .33em;
    background: #adc0ce;
    animation: loader-mini 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loader-mini div:nth-child(1) {
    left: 2px;
    animation-delay: -0.24s;
}

.loader-mini div:nth-child(2) {
    left: 10px;
    animation-delay: -0.12s;
}

.loader-mini div:nth-child(3) {
    left: 18px;
}

.ld-mini-white div {
    background: #fff;
}

.loader-kantar div {
    background: #d7aa47;
}

.kv-grid-loading {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.col-split {
    padding: 0;
}

.right-pad {
    padding-right: 15px;
}

.help-block {
    position: relative;
    margin: 4px 0 6px 0;
    font-family: "KantarBrown Regular", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    transition: 100ms all;
    min-height: 18px;
    height: auto;
    max-height: 30px;
    line-height: 14px;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    width: 100%;
    height: 50px;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 1.5;
    border: none;
    border-bottom: 2px solid #eee;
    color: #555555;
    border-radius: 0;
}


.has-error > .select2 > .selection > .select2-selection {
    border-color: #ff1c43;
}

.has-success > .select2 > .selection > .select2-selection {
    border-color: #81d482;
}

.select2-container--default .select2-selection--single:focus {
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    position: absolute;
    top: 1px;
    right: 5px;
    width: 24px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eee;
    background: #fafafa;
}

.loading-results {
    padding: 0;
}

.select2-results__option {
    padding: 8px;
    font-family: "KantarBrown Regular", sans-serif;
    font-size: 0.99em;
    color: #444;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    transition: .3s;
    background-color: #f6f6f6;
    color: #333;
}

.select2-results__options > li {
    border-bottom: 1px solid #eee;
}

.select2-results__options > li:last-child {
    border: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
}


.select2-container {
    z-index: 9999;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #888;
    line-height: 28px;
}

.select2-dropdown {
    background-color: white;
    border-color: transparent;
    border-radius: 0;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    -webkit-box-shadow: 2px 15px 27px -15px rgba(0, 0, 0, 0.42);
    -moz-box-shadow: 2px 15px 27px -15px rgba(0, 0, 0, 0.42);
    box-shadow: 2px 15px 27px -15px rgba(0, 0, 0, 0.42);
}

.form-group {
    margin-bottom: 0;
}

.blockTitle {
    color: #333;
    font-size: 40px;
    text-transform: uppercase;
    font-family: "KantarBrown Bold", sans-serif;
    text-align: center;
}

.blockTitle > small {
    color: #222;
    display: block;
    font-size: 23px;
    font-family: "KantarBrown Thin", sans-serif;
    padding: 12px 0 15px 0;
}

.stages {
    margin: 25px 0;
    padding: 0 15px;
}

.stages > li {
    display: inline-table;
    width: 32%;
    text-align: center;
    position: relative;
    vertical-align: top;

}

.stages > li > span {
    display: block;
    font-family: "KantarBrown Light", sans-serif;
    padding: 14px 0;
    color: #9c9c9c;
    font-size: 14px;
    clear: both;
}

.stages > li:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #eee;
    z-index: -1;
}

.stages > li > div {
    border-radius: 50%;
    background: #eee;
    color: #111;
    width: 50px;
    height: 50px;
    padding: 12px 13px;
    font-size: 20px;
    margin: 0 auto;
    font-family: "KantarBrown Bold", sans-serif;
    z-index: 10001;
}

.stages > li:first-of-type > div {
    background: #f7c75f;
}

.stages > li:first-child > div {
    margin: 0;
}

.stages > li:last-child div {
    margin: 0;
    float: right;
}

.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 9px 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border-radius: 0;

}

.form-control {
    display: block;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid #eee;
}

.form-control:focus {
    border-color: #696969;
    outline: none;
    box-shadow: none;
}

.has-error .form-control {
    border-color: #ff1c43;
    box-shadow: none;
}

.has-success .form-control {
    border-color: #8fe690;
    box-shadow: none;
}

.has-error .form-control:focus {
    border-color: #ff1c43;
    box-shadow: none;
}

.has-success .form-control:focus {
    box-shadow: none;
}

.has-success .form-control:focus {
    border-color: #b7ecb8;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #666;
}

.has-error .help-block {
    color: #ff1c43;
    text-align: center;
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
    color: #6fbd71;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-family: "KantarBrown Regular", sans-serif;
    color: #8a8282;
    font-size: 12px;
    font-weight: 200;
    text-transform: uppercase;
}

.btn-kantar {
    background-color: #d7aa47;
    color: #444;
    border: none;
    border-radius: 0;
    padding: 1px 25px;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "KantarBrown Regular", sans-serif;
}

.btn-kantar:hover {
    transition: .3s all;
    color: #000;
    opacity: .7;
}

a.btn-sm,
.btn-sm {
    padding: 10px 15px;
}

a.kantar-waves.btn-sm {
    font-size: 18px;
    padding: 13px 15px;
    color: #444;
    width: auto;
}

a.kantar-waves.btn-sm:hover {
    background: #b68d3e;
    border-color: #b68d3e;
}

.submitForm {
    display: block;
    margin: 0 0 18px 0;
    padding: 5px 0;
    text-align: center;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus,
.btn:hover, .btn:focus, .btn.focus {
    outline: none;
}

/* Ripple effect */
.kantar-waves {
    width: 100%;
    transition: background 0.8s;
    background: #d7aa47;
    border-radius: 2px;
    padding: 12px 25px;
    min-height: 49px;
}

.kantar-waves:hover {
    background: #d7aa47 radial-gradient(circle, transparent 1%, #d7aa47 1%) center/15000%;
    text-decoration: none;
}

.kantar-waves:active {
    background-color: #eec147;
    background-size: 100%;
    transition: background 0s;
}

/* Button style */
a.kantar-waves,
button {
    font-size: 22px;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    background-color: #d7aa47;
    outline: none;
    max-width: 390px;
    margin: 15px auto;
    display: block;
    letter-spacing: 1px;
    border: 2px solid #d7aa47;
}

a.kantar-waves:hover {
    transition: .3s;
    background: #222;
}

a.btn-transparent {
    background-color: transparent;
    border: 2px solid #d7aa47;
    padding: 9px 18px;
}

.agreement {
    display: block;
    clear: both;
}

.agreement > div > label {
    display: block;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 20px;
    color: #999;
    text-transform: uppercase;
    font-family: "KantarBrown Light", sans-serif;
}

.agreement > div > label > a {
    color: #222;
    font-family: "KantarBrown Regular", sans-serif;
}

.registerForm {
    max-width: 800px;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ccc;
}


.spinner {
    width: 24px;
    height: 27px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    margin-top: -20px;
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    margin-top: -6px;
    margin-left: -15px;
    border-radius: 50%;
    border: 2px solid #b69638;
    border-top-color: #eee;
    animation: spinner 300ms linear infinite;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0;
    border: none;
    font-family: KantarBrown Light, sans-serif;
}

.alert-success-block h4 {
    margin-top: 0;
    color: inherit;
    font-family: KantarBrown Regular, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.register-notify {
    padding: 25px 27px;
    background: #fff;
    font-size: 16px;
    line-height: 24px;
    color: #545454;
}

.register-notify > b {
    display: block;
    margin: 4px 0 10px 0;
    font-size: 20px;
    color: #222;
    font-family: KantarBrown Bold, sans-serif;
    padding-bottom: 15px;
    border-bottom: 2px solid #d7aa47;
}

.register-notify > span {
    font-family: 'KantarBrown Bold', sans-serif;
    color: #4c4c4c;
}


.jconfirm.jconfirm-white .jconfirm-box, .jconfirm.jconfirm-light .jconfirm-box {
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 0;
}


.jconfirm .jconfirm-box div.jconfirm-title-c {
    font-family: "KantarBrown Bold", sans-serif;
    font-size: 19px;
    color: #222;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    font-size: 17px;
    color: #333;
    line-height: 20px;
    font-family: "KantarBrown Light", sans-serif;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
    font-size: 60px;
}

._gender_selector {
    padding: 0 13px;
}

._gender_selector > input {
    display: none;
}

._gender_selector:nth-child(1) > span:before {
    content: '\f183';
    font-family: FontAwesome;
    font-size: 30px;
    padding-right: 5px;
    cursor: pointer;
}

._gender_selector input:checked ~ span:before {
    color: #F7C660;
}

._gender_selector:nth-child(2) > span:before {
    content: '\f182';
    font-family: FontAwesome;
    font-size: 29px;
    padding-right: 5px;
    cursor: pointer;
}

header .header-menu ul li a.login-btn {
    font-size: 14px;
    font-family: "KantarBrown Light", sans-serif;
    border: 2px solid #d7aa47;
    padding: 2px 25px;
    min-width: 140px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: -3px;
    border-radius: 3px;
    text-transform: uppercase;
}

header .header-menu ul li a.login-btn:hover {
    background: #d7aa47;
    color: #333;
    text-decoration: none;
}

.loginForm {
    max-width: 450px;

}

.loginForm::after {
    content: '';
    width: calc(100% - 60px);
    height: 1px;
    background: #eee;
    position: absolute;
    bottom: 0;
    left: 30px;
}

.content .login-intro {
    height: 250px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #FAFAFA;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #444444;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

.col-title {
    text-transform: uppercase;
    color: #333;
    font-family: KantarBrown Light, sans-serif;
    padding: 4px;
}

.available-points {
    font-family: KantarBrown Regular, sans-serif;
    font-size: 31px;
    color: #e4b95f;
}


.conversionForm {
    max-width: 970px;
    padding: 40px 0;
    font-size: 17px;
    text-transform: uppercase;
    color: #555;
}

.conversionForm form h3 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 29px;
    line-height: 40px;
    color: #696969;
}

.money-box {
    text-align: center;
}

.money-box .icon img {
    opacity: .6;
    height: 70px;
}

.money-box .points {
    text-transform: uppercase;
    color: #666;
    font-family: KantarBrown Regular, sans-serif;
    font-size: 15px;
    padding: 15px 0;
}

.money-box .points h3 {
    font-family: KantarBrown Regular, sans-serif;
    font-size: 50px;
    color: #eab95f;
    padding: 0;
}

.policy {
    font-family: KantarBrown Light, sans-serif;
    max-width: 960px;
    background: #fff;
    margin: 25px auto;
    padding: 16px 32px 35px 32px;
    color: #444;
    line-height: 25px;
    font-size: 16px;
}

.policy p {
    padding: 0 0 7px 0;
}

.policy a {
    color: #A27700;
    font-weight: 500;
}

.policy .logotype {
    padding: 15px 0 0 0;
    text-align: center;
}

.policy .logotype::after {
    content: "";
    background: -webkit-linear-gradient(left, rgba(242, 218, 100, 1), rgba(162, 119, 0, 1), rgba(242, 218, 100, 1), rgba(152, 112, 0, 1));
    display: block;
    height: 3px;
    border: none;
    margin-top: 15px;
    background-size: 400% 100%;
}

.policy .logotype img {
    height: 30px;
}

.policy h3 {
    font-family: KantarBrown Bold, sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #333;
    padding: 25px 0 7px 0;
    text-transform: uppercase;
}

.policy h2 {
    font-family: KantarBrown Bold, sans-serif;
    font-size: 23px;
    line-height: 28px;
    color: #222;
    padding: 25px 0 20px 0;
    text-transform: uppercase;
}

.form__link {
    color: #999;
    text-transform: uppercase;
    padding: 20px 0 0 0;
    display: block;
    font-family: KantarBrown Light, sans-serif;
    font-size: 12px;
}

.form__link:hover, .form__link:focus {
    color: #444;
    text-decoration: none;
    transition: .9s;
}

#cookieSnippet {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 1001;
    padding: 10px 17px;
    opacity: .98;
    width: 100%;
    box-shadow: 1px 1px 19px #555;
}

.loginForm #google-captcha {
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/*#cookieSnippet::after {*/
/*    content: "";*/
/*    display: block;*/
/*    position: fixed;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, .35);*/
/*    z-index: 100;*/
/*}*/

#cookieSnippet .row {
    max-width: 1000px;
    margin: 0 auto;
}

#cookieSnippet .row div {
    margin: 10px 0;
}

#cookieSnippet .row div h3 {
    font-size: 15px;
    margin: 8px 0;
    font-family: "KantarBrown Bold", sans-serif;
    text-transform: uppercase;
}

#cookieSnippet .row div span {
    font-family: "KantarBrown Light", sans-serif;
    font-size: 14px;
    line-height: 17px;
    color: #676767;
    display: block;
}

.btn-agree-cookie {
    border: 1px solid #444;
    color: #444;
    border-radius: 0;
    padding: 4px 18px;
    font-size: 12px;
    position: relative;
    top: 50px;
    text-transform: uppercase;
}

.btn-decline-cookie {
    font-size: 20px;
    color: #333;
    right: 50px;
    position: absolute;
}

.btn-decline-cookie:hover,
.btn-decline-cookie:focus {
    transition: .5s;
    color: #d65555;
}

.btn-agree-cookie:hover,
.btn-agree-cookie:focus {
    transition: .3s;
    border-color: #d7aa47;
    color: #d7aa47;
}

.box-help {
    max-width: 380px;
}

code {
    padding: 0;
    border-radius: 0;
    background: none;
    color: #222;
    font-family: KantarBrown Light, sans-serif
}

.select2-container {
    z-index: 999999999999;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 5px;
    color: #d0c6c6;
    text-align: center;
    font-size: 14px;
    font-family: 'KantarBrown Light', sans-serif;
    background-color: #f7f7f7;
}

.breadcrumb li a {
    color: #444;
    font-family: 'KantarBrown Regular', sans-serif;
}

.login-link {
    text-align: center;
    display: block;
}

.login-link a {
    color: #8c8585;
    font-family: "KantarBrown Light", arial, helvetica, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}


.alert-dark {
    display: block;
    background: #f6f6f6;
    color: #535252;
    margin: 14px;
    border-radius: 3px;
    clear: both;
}

.restore-password .help-block {
    min-height: 0;
}

.restore-message-sent {
    display: block;
    margin: 12px 1px;
    font-family: 'KantarBrown Regular', sans-serif;
    font-weight: normal;
    color: #535252;
    padding: 12px 12px;
    border-radius: 3px;
    font-size: 15px;
}

.restore-message-sent h4 {
    line-height: 28px;
    font-size: 24px;
    color: #2b2b2b;
    font-family: 'KantarBrown Bold', sans-serif;
}

.restore-message-sent h4 b {
    font-weight: normal;
    font-family: "KantarBrown Bold", arial, helvetica, sans-serif;
    display: block;
    padding: 5px 0;
    color: #333;
    font-size: 19px;
}

.restore-message-sent span {
    display: block;
    font-family: "KantarBrown Light", sans-serif;
    margin-top: 13px;
    line-height: 17px;
    font-size: 14px;
    color: #696969;
}

.help-form div .help-block {
    display: none;
}

.help-form .form-group:last-child {
    margin-bottom: 8px;
}

#google-captcha-form,
#google-captcha {
    display: grid;
    justify-content: center;
    margin: 7px 0;
}

.btn--primary, a.btn--primary, button:focus {
    color: #fff;
    min-width: 240px;
    background-color: #000;
    outline: 0;
    padding: 12px 24px;
    min-height: 42px;
    border: 0;
    font-size: 1em;
    font-family: 'KantarBrown Bold', sans-serif;
    text-decoration: none;
    transition: background .25s ease-in-out, opacity .25s ease-in-out;
}

.form-control.form-xs, .form-xs .select2-container span .select2-selection {
    border: 0;
    padding: 6px 11px !important;
    font-size: 15px !important;
    height: 38px !important;
    margin: 0 !important;
}

.form-xs .select2-container span .select2-selection .select2-selection__arrow {
    height: 38px;
}

.form-control.bg-gray,
.bg-gray .select2-container span .select2-selection {
    background-color: #fafafa !important;
    color: #111;
    padding-left: 0;
    border-bottom: 1px solid #333 !important;
}

.form-xs .select2-container span .select2-selection .select2-selection__rendered {
    color: #111;
    padding-left: 0;
}

.has-error .form-control.bg-gray {
    border-color: red !important;
}

textarea.form-control.bg-gray {
    height: 75px!important;
}


/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes loader-mini {
    0% {
        top: -1px;
        height: 17px;
    }
    50%, 100% {
        top: 3px;
        height: 7px;
    }
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 1399px) {
    .content .intro .slogan h2 {
        font-family: "KantarBrown Light", sans-serif;
        color: #fff;
        font-size: 20px;
        line-height: 24px;
        text-align: left;
        text-shadow: 1px 3px 10px #999;
    }
}

@media screen and (min-width: 641px) and (max-width: 900px) {
    .content .intro .slogan {
        padding-top: 165px;
    }

    .content .intro .slogan h1 {
        font-size: clamp(42px, 7vw, 58px);
        min-height: 130px;
        margin-bottom: 10px;
    }

    .content .intro .slogan h2 {
        font-size: 20px;
        line-height: 26px;
        min-height: 104px;
    }

    .content .intro .slogan a.btn-register {
        margin-top: 18px;
    }
}

@media screen and (max-width: 640px) {
    .content .login-intro {
        height: 170px;
    }

    .col.bg-1 {
        background-size: cover !important;
        min-height: 300px !important;
    }

    .panel-group {
        max-width: 90%;
        margin: 10px auto;
    }

    .faq-accordion {
        max-width: 90%;
    }

    .block-title {
        color: #333;
        font-size: 25px;
        border-bottom: 1px solid #868686;
        margin: 16px 15px;
    }

    .sectionRegister {
        background: #fafafa;
        padding: 20px 0;
    }

    .block-title > small {
        color: #888;
        font-size: 14px;
        font-family: "KantarBrown Light", sans-serif;
    }

    .submitForm {
        margin: 0 14px;
    }

    .btn {
        color: #272215;
    }

    header {
        top: 10px;
    }

    header .header-shell {
        padding: 0 10px;
        gap: 12px;
    }

    header .logo {
        max-width: 180px;
        padding: 0;
    }

    header .logo .logotype {
        height: 30px;
        padding: 5px 10px;
    }

    header .header-menu {
        padding: 0;
        width: auto;
        display: none;
    }

    header .header-right {
        align-items: flex-end;
        gap: 0;
    }

    header .header-menu ul {
        gap: 0;
    }

    header .header-menu ul li {
        padding: 0;
        visibility: hidden;
    }

    .navbar-toggle,
    .navbar-toggler {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 12px;
        min-width: auto!important;
    }

    header .header-menu ul li a.login-btn {
        display: none;
    }

    .content .intro .slogan {
        width: 80%;
        padding-top: 70px;
        height: 440px;
    }

    .content .intro .slogan h1 {
        color: #fff;
        text-align: center;
        font-family: "KantarBrown Bold", sans-serif;
        font-size: clamp(36px, 12vw, 55px);
        line-height: 1.15;
        min-height: auto;
        margin-bottom: 15px;
        -webkit-animation: slide-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    .content .intro .slogan h2 {
        font-family: "KantarBrown Light", sans-serif;
        color: #fff;
        font-size: 15px;
        line-height: 23px;
        min-height: auto;
        text-align: center;
        text-transform: uppercase;
    }

    header .main-menu {
        display: block;
        width: auto;
        text-align: right;
        z-index: 1001;
        position: absolute;
        top: -45px;
        right: 10px;
    }

    header .main-menu > .container,
    header .main-menu > .container-fluid {
        width: auto;
        margin: 0;
        padding: 0;
    }

    header .main-menu ul {
        list-style-type: none;
        margin: 90px 0 0;
        display: block;
        left: auto;
        right: 0;
        position: absolute;
        min-width: 250px;
    }

    .navbar-expand-md .navbar-collapse {
        display: none !important;
    }

    .navbar-expand-md .navbar-collapse.show {
        display: block !important;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border: none;
        background: rgba(0, 0, 0, .85);
        height: 1000px;
        transition: .1s;
        z-index: 500;
    }

    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggler:hover, .navbar-default .navbar-toggler:focus {
        background-color: transparent;
        z-index: 100000;
        box-shadow: none!important;
        border: 2px solid #fff;
    }

    .navbar-toggler {
        border-color: #fff;
    }

    .navbar-toggler-icon {
        --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    header .main-menu ul li a {
        text-shadow: none;
    }

    .navbar-default .navbar-collapse.collapsing {
        height: 0;
        border: none;
    }

    header .main-menu ul li a {
        font-size: 20px;
        font-family: "KantarBrown Light", sans-serif;
        text-shadow: none;
    }

    header .main-menu ul li {
        display: block;
        padding: 8px 15px;
        border-bottom: 1px solid #000;
    }

    .nav > li > a:hover, .nav > li > a:focus {
        background-color: transparent;
        border: none;
    }

    header .main-menu ul li a:hover {
        transition: .3s;
        color: #f7c660;
        text-decoration: none;
        border: none;
    }

    .main-menu li .btn-help {
        background: none;
        text-align: right;
        color: #f7c660;
        font-family: KantarBrown Regular, sans-serif;
        padding: 9px 20px;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .content .register-intro {
        height: 150px;
    }

    .content .register-intro .row div > .title {
        line-height: 38px;
        margin: 20px 0;
        font-size: 33px;
    }

    .content .register-intro .row div > .title > small {
        font-family: "KantarBrown Thin", sans-serif;
        font-size: 20px;
    }

    .form-control {
        border-bottom: 2px solid #eee;
        height: 55px;
        font-size: 19px;
    }

    .select2-container--default .select2-selection--single {
        padding: 13px 10px;
        font-size: 17px;
        line-height: 1.5;
        height: 55px;
    }

    .right-pad {
        padding: 0;
    }

    .site-error {
        margin: 150px 15px;
    }

    .help-block {
        min-height: 8px;
    }

    header .main-menu ul li a.mobile-auto {
        display: block;
    }

    .content .intro:before {
        background: linear-gradient(260deg, rgba(187, 129, 53, .9) 0%, rgba(255, 255, 255, .25) 100%);
        opacity: 1;
    }

    .btn-agree-cookie {
        top: 4px;
    }

    .btn-decline-cookie {
        font-size: 25px;
        right: 20px;
        top: 0;
    }

    .loginForm #google-captcha {
        padding: 0 0;
    }

    .btn-kantar {
        font-size: 90% !important;
        margin: 0;
    }

    .kantar-waves {
        padding: 12px 8px;
    }

    .btn-outline-kantar, .btn-outline-kantar:hover {
        margin-right: 10px;
    }

    .btn-help-outline {
        padding: 7px 11px;
        font-size: 11px;
        margin: 25px 0 20px 0;
    }

    .register-notify {
        box-shadow: 0 1px 9px #eee;
        border-radius: 2px;
    }

    .register-notify > b {
        margin: 0 0 10px 0;
        font-size: 17px;
        line-height: 20px;
    }

    .conversionForm {
        max-width: 100%;
        padding: 1px 0;
    }

    .col-title {
        font-family: KantarBrown Regular, sans-serif;
        font-size: 13px;
    }
}
