@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&family=Rubik:wght@400;700;800&display=swap");

@font-face {
    font-family: Rubik-normal;
    font-display: swap;
    src: url(/Rubik-normal.996e689d.woff2)
}

@font-face {
    font-family: Rubik-light;
    font-display: swap;
    src: url(/Rubik-light.a0a71076.woff2)
}

@font-face {
    font-family: Din-light;
    font-display: swap;
    src: url(/DINPro-CondensedLight.332676a5.woff2)
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

body {
    font-family: Rubik-normal
}

.container {
    max-width: 1800px;
    color: var(--color_1)
}

.container, .container_fluide {
    width: 90%;
    margin: 0 auto
}

.text_center {
    text-align: center
}

.hide {
    opacity: 0
}

iframe, img {
    max-width: 100%
}

.content p {
    font-weight: 200;
    line-height: 150%;
    margin-bottom: 15px
}

.content ul {
    margin-left: 40px;
    margin-bottom: 20px;
    font-weight: 200
}

.content ul li {
    margin-bottom: 10px
}

.content h2, h3, h4, h5 {
    margin-bottom: 30px
}

.display_block {
    display: block !important
}

@media (orientation: landscape) {
    body {
        overflow: auto;
        position: relative
    }
}

@media screen and (max-width: 767px) {
    body {
        overflow: auto
    }
}

.header {
    background: #fff
}

:root {
    --animationDuration: 4s;
    --animationScale: 1.1;
    --transition: 1.7s
}

body, html {
    height: 100%;
    min-height: 100%
}

.main {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.main, main {
    position: relative
}

main {
    flex: 1
}

.main-holder, .wrapper {
    display: flex;
    flex-direction: column;
    height: 100%
}

.main-holder {
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3
}

.main:after {
    content: "";
    background: url(/confetti.1218c2a9.png);
    background-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none
}

.core {
    width: 300px;
    height: 220px;
    position: relative
}

.core:first-child .animate {
    animation: scaleBoxLeft var(--animationDuration) linear infinite
}

.core:nth-child(2) .animate {
    animation: scaleBoxCenter var(--animationDuration) linear infinite
}

.core:nth-child(3) .animate {
    animation: scaleBoxRight var(--animationDuration) linear infinite
}

.sunrays {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(50% 50% at 50% 50%, #d20032 0, #b20426 100%);
    z-index: -1
}

.sunrays, .sunrays__rotating {
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.sunrays__rotating {
    animation: rotable 120s linear infinite
}

.sunrays--view2 span {
    box-sizing: border-box;
    outline: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: 0 50%;
    margin: -150px 0 0;
    border: 150px solid transparent;
    border-right: 1200px solid #d20032;
    border-left: none;
    transform: rotate(30deg)
}

.sunrays--view2 span:first-child {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg)
}

.sunrays--view2 span:nth-child(2) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg)
}

.sunrays--view2 span:nth-child(3) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.sunrays--view2 span:nth-child(4) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg)
}

.sunrays--view2 span:nth-child(5) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg)
}

.sunrays--view2 span:nth-child(6) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.sunrays--view2 span:nth-child(7) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg)
}

.sunrays--view2 span:nth-child(8) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg)
}

.sunrays--view2 span:nth-child(9) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.sunrays--view2 span:nth-child(10) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg)
}

.sunrays--view2 span:nth-child(11) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg)
}

.sunrays--view2 span:nth-child(12) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
}

@-webkit-keyframes rotable {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotable {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes scaleBoxCenter {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    15% {
        -webkit-transform: scale(var(--animationScale));
        transform: scale(var(--animationScale))
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scaleBoxLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(var(--animationScale));
        transform: scale(var(--animationScale))
    }
    66% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scaleBoxRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    66% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    80% {
        -webkit-transform: scale(var(--animationScale));
        transform: scale(var(--animationScale))
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.coreWrapper {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 20px
}

.coreWrapper img {
    height: 39vh;
    max-height: 39vh
}

.coreImg, .prize {
    box-sizing: border-box;
    width: 300px;
    max-width: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition)
}

.fadeIn {
    opacity: 1 !important
}

.fadeOut {
    opacity: 0 !important
}

.coreImg {
    opacity: 1
}

.prize {
    opacity: 0
}

.winner {
    transform: scale(1.3)
}

.contentWrapper {
    text-align: center;
    z-index: 3
}

.title {
    font-family: Rubik-normal;
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 41px;
    color: #ffe600;
    margin-bottom: 0;
    margin-top: 10px
}

.description {
    font-size: 32px
}

.description, .prizeSubTitle, .prizeTitle {
    font-family: Rubik-normal;
    font-style: normal;
    font-weight: 700;
    color: #fff
}

.prizeSubTitle, .prizeTitle {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    transform: translateY(-50px);
    opacity: 0;
    transition: var(--transition)
}

.prizeTitle {
    margin-bottom: 5px
}

.winnerText {
    font-size: 24px
}

.winnerText span {
    font-size: 28px
}

.logoWrapper {
    font-family: Rubik-normal;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    text-align: center;
    color: #fd0
}

.actionWrapper {
    flex-direction: column
}

.actionBtn, .actionWrapper {
    display: flex;
    justify-content: center;
    align-items: center
}

.actionBtn {
    width: 328px;
    height: 48px;
    background: #fd0;
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    border-radius: 4px;
    margin-bottom: 17px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgb(255 221 0/70%);
    transition: all .3s ease-in-out;
    -webkit-animation: pulsing 2.25s cubic-bezier(.66, 0, 0, 1) infinite;
    -moz-animation: pulsing 2.25s infinite cubic-bezier(.66, 0, 0, 1);
    -ms-animation: pulsing 2.25s infinite cubic-bezier(.66, 0, 0, 1);
    animation: pulsing 2.25s cubic-bezier(.66, 0, 0, 1) infinite
}

.actionBtn, .loginBtn {
    text-decoration: none;
    position: relative
}

.loginBtn {
    color: #fff;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    font-family: Rubik-light
}

.prizeIphone {
    transform: translateY(15px)
}

.attention {
    background: #fff;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
    font-family: Din-light;
    font-size: 35px;
    line-height: 1;
    color: #717171
}

.container-agreement {
    margin-top: auto
}

@media screen and (min-width: 1921px) {
    .sunrays--view2 span {
        border-right: 1800px solid #d20032
    }
}

.bonusValue {
    font-size: 56px;
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 27px;
        margin-top: 0px;
    }

    .description {
        font-size: 20px
    }

    .bonusValue {
        font-size: 40px;
    }

    .m-10 {
        margin-bottom: 10px;
    }

    .attention {
        font-size: 24px
    }

    .coreWrapper {
        margin-bottom: 20px
    }

    .coreWrapper img {
        height: 30vh
    }
}

@media screen and (max-width: 1024px) {
    .main {
        padding: 20px 0 0
    }

    .main:after {
        display: none
    }

    .actionWrapper {
        margin-bottom: 20px
    }

    .logoWrapper {
        max-width: 220px;
        margin: 0 auto
    }
}

@media screen and (min-width: 1440px) and (max-height: 800px) {
    .title {
        font-size: 46px
    }

    .description {
        font-size: 32px;
    }

    .attention {
        font-size: 25px
    }

    .coreWrapper {
        margin-bottom: 20px
    }

    .bonusValue {
        font-size: 56px;
    }

    .coreWrapper img {
        height: 30vh
    }
}

@media screen and (max-width: 544px) {
    .main {
        height: 100%
    }
}

@media screen and (max-width: 648px) {
    .attention {
        padding: 10px 5px;
        font-size: 16px
    }
}

@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0)
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0)
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0)
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0)
    }
}

.jq-checkbox {
    top: -1px;
    width: 18px;
    height: 18px;
    background: #367e0a;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 3px;
    overflow: visible !important
}

.jq-checkbox.checked .jq-checkbox__div {
    width: 18px;
    height: 17px;
    margin: -3px 0 0 3px !important;
    position: absolute;
    top: 4px;
    left: 0
}

.jq-checkbox.focused {
    border: 1px solid #08c
}

.jq-checkbox.disabled {
    opacity: .55;
    filter: alpha(opacity=55)
}

.jq-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #d47c00;
    background: #eee1b3;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 2px;
    margin-top: -2px;
    position: relative
}

.jq-radio:before {
    width: 10px;
    height: 10px;
    background: #d47c00;
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%
}

.jq-radio.checked {
    border: 1px solid #367e0a
}

.jq-radio.checked:before {
    width: 10px;
    height: 10px;
    background: #367e0a;
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%
}

.jq-radio.checked .jq-radio__div {
    width: 6px;
    height: 6px;
    margin: 2px 0 0 2px;
    border-radius: 50%;
    background: 0 none
}

.jq-radio.focused {
    border: 1px solid #08c
}

.jq-radio.disabled {
    opacity: .55;
    filter: alpha(opacity=55)
}

.jq-file {
    width: 270px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    border-radius: 4px
}

.jq-file input {
    cursor: pointer;
    height: auto;
    line-height: 1em
}

.jq-file__name {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 32px;
    padding: 0 80px 0 10px;
    color: #333;
    font: 14px/30px Arial, sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border: 1px solid;
    border-color: #ccc #ccc #b3b3b3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #f1f1f1;
    background: #fff
}

.focused .jq-file__name {
    border: 1px solid #5794bf
}

.jq-file__browse {
    position: absolute;
    top: 1px;
    right: 1px;
    padding: 0 10px;
    border-left: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    background: #f1f1f1 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpi+v//PxM2zMDAQEtxgAADAF2uTe9L4getAAAAAElFTkSuQmCC) repeat-x;
    box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
    text-shadow: 1px 1px #fff;
    font-family: Tahoma, sans-serif
}

.jq-file:hover .jq-file__browse {
    background-color: #e6e6e6;
    background-position: 0 -10px
}

.jq-file:active .jq-file__browse {
    background: #f5f5f5;
    box-shadow: inset 1px 1px 3px #ddd
}

.jq-file.disabled .jq-file__name {
    color: #888
}

.jq-file.disabled, .jq-file.disabled .jq-file__browse {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888
}

.jq-selectbox {
    vertical-align: top;
    cursor: pointer;
    width: 100%
}

.jq-selectbox__select {
    height: 40px;
    background: #deeaee;
    color: #888792;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    text-align: left;
    line-height: 40px;
    padding: 0 10px;
    font-family: Rubik-normal Condensed, sans-serif;
    -webkit-transition: all .2s;
    transition: all .2s
}

.jq-selectbox.disabled .jq-selectbox__select {
    background: #bebebe;
    color: #9eceb1
}

.jq-selectbox.disabled .jq-selectbox__select .jq-selectbox__trigger .jq-selectbox__trigger-arrow {
    border-top: 5px solid #000
}

.jq-selectbox__select-text {
    display: block;
    width: 90% !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.jq-selectbox .placeholder {
    color: #888
}

.jq-selectbox__trigger {
    position: absolute;
    top: 18px;
    right: 0;
    width: 34px;
    height: 10px
}

.jq-selectbox__trigger-arrow {
    position: absolute;
    top: 0;
    right: 12px;
    width: 0;
    height: 0;
    overflow: hidden;
    width: 9px;
    height: 6px
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
    opacity: 1;
    filter: alpha(opacity=100)
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
    opacity: .3;
    filter: alpha(opacity=30)
}

.jq-selectbox__dropdown {
    top: 44px;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    font-family: Rubik-normal Condensed, sans-serif;
    font-size: 14px;
    z-index: 20;
    text-align: left
}

.jq-selectbox__search {
    margin: 5px;
    display: none
}

.jq-selectbox__search input {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    line-height: 36px;
    outline: none;
    border-radius: 3px;
    color: #fff;
    -webkit-appearance: textfield
}

.jq-selectbox__search input::-webkit-search-cancel-button, .jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none
}

.jq-selectbox__not-found {
    margin: 5px;
    padding: 5px 8px 6px;
    background: #f0f0f0;
    font-size: 13px
}

.jq-selectbox ul {
    margin: 0;
    padding: 0
}

.jq-selectbox li {
    min-height: 18px;
    padding: 5px 10px 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    white-space: nowrap;
    color: #6c7a89
}

.jq-selectbox li.selected, .jq-selectbox li:hover {
    background-color: #bababa;
    color: #fff
}

.jq-selectbox li:first-child.selected, .jq-selectbox li:first-child:hover {
    border-radius: 2px 2px 0 0
}

.jq-selectbox li:last-child.selected, .jq-selectbox li:last-child:hover {
    border-radius: 0 0 2px 2px
}

.jq-selectbox li.disabled {
    color: #aaa
}

.jq-selectbox li.disabled:hover {
    background: none
}

.jq-selectbox li.optgroup {
    font-weight: 700
}

.jq-selectbox li.optgroup:hover {
    background: none;
    color: #231f20;
    cursor: default
}

.jq-selectbox li.option {
    padding-left: 25px
}

.jq-select-multiple {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1px;
    border: 1px solid;
    border-color: #ccc #ccc #b3b3b3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    background: #fff;
    color: #333;
    font: 14px/18px Arial, sans-serif;
    cursor: default
}

.jq-select-multiple.focused {
    border: 1px solid #5794bf
}

.jq-select-multiple.disabled {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888
}

.jq-select-multiple ul {
    margin: 0;
    padding: 0
}

.jq-select-multiple li {
    padding: 3px 9px 4px;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    white-space: nowrap
}

.jq-select-multiple li:first-child {
    border-radius: 3px 3px 0 0
}

.jq-select-multiple li:last-child {
    border-radius: 0 0 3px 3px
}

.jq-select-multiple li.selected {
    background: #08c;
    color: #fff
}

.jq-select-multiple li.disabled {
    color: #aaa
}

.jq-select-multiple.disabled li.selected, .jq-select-multiple li.selected.disabled {
    background: #ccc;
    color: #fff
}

.jq-select-multiple li.optgroup {
    font-weight: 700
}

.jq-select-multiple li.option {
    padding-left: 25px
}

input[type=email].styler, input[type=number].styler, input[type=password] .styler, input[type=search].styler, input[type=tel].styler, input[type=text].styler, input[type=url].styler, textarea.styler {
    padding: 7px 9px;
    border: 1px solid;
    border-color: #ccc #ccc #b3b3b3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
    font: 14px Arial, sans-serif
}

input[type=search].styler {
    -webkit-appearance: none
}

textarea.styler {
    overflow: auto
}

input[type=email] .styler:hover, input[type=number].styler:hover, input[type=password].styler:hover, input[type=search] .styler:hover, input[type=tel].styler:hover, input[type=text].styler:hover, input[type=url] .styler:hover, textarea.styler:hover {
    border-color: #b3b3b3
}

input[type=email] .styler:focus, input[type=number].styler:focus, input[type=password] .styler:focus, input[type=search].styler:focus, input[type=tel].styler:focus, input[type=text] .styler:focus, input[type=url].styler:focus, textarea.styler:focus {
    border-color: #b3b3b3 #ccc #ccc;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    outline: none
}

button.styler, input[type=button].styler, input[type=reset].styler, input[type=submit] .styler {
    overflow: visible;
    padding: 7px 11px;
    outline: none;
    border: 1px solid;
    border-color: #ccc #ccc #b3b3b3;
    border-radius: 4px;
    background: #f1f1f1 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpi+v//PxM2zMDAQEtxgAADAF2uTe9L4getAAAAAElFTkSuQmCC) repeat-x;
    box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
    text-shadow: 1px 1px #fff;
    font: 14px Arial, sans-serif;
    cursor: pointer
}

button.styler::-moz-focus-inner, input[type=button].styler::-moz-focus-inner, input[type=reset] .styler::-moz-focus-inner, input[type=submit].styler::-moz-focus-inner {
    padding: 0;
    border: 0
}

button.styler:after {
    content: ""
}

button.styler:not([disabled]):hover, input[type=button] .styler:not([disabled]):hover, input[type=reset].styler:hover, input[type=submit] .styler:not([disabled]):hover {
    background-color: #e6e6e6;
    background-position: 0 -10px
}

button.styler:not([disabled]):active, input[type=button].styler:not([disabled]):active, input[type=reset].styler:active, input[type=submit] .styler:not([disabled]):active {
    background: #f5f5f5;
    box-shadow: inset 1px 1px 3px #ddd
}

button.styler[disabled], input[type=button].styler[disabled], input[type=submit] .styler[disabled] {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888
}

.registration {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    max-width: 400px !important;
    width: 100%;
    background-color: #fff;
    overflow: hidden
}

.popup {
    position: fixed;
    display: none;
    font-family: Roboto, sans-serif;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 999;
    backdrop-filter: blur(8px)
}

.popup.activate {
    display: block !important
}

.popup .form {
    display: flex;
    width: 100%;
    flex-flow: row nowrap
}

.popup-form {
    width: 100%;
    padding: 16px;
    min-width: 365px
}

.popup-form, .popup-form input {
    background: #fff
}

.popup-form__title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    color: #4e4d5e;
    margin-bottom: 24px
}

.popup-form .tabs {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 12px;
    margin-bottom: 16px
}

.popup-form .tabs span {
    max-width: 50%;
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    padding: 9px 0;
    text-transform: uppercase;
    color: #d20032;
    border-bottom: 2px solid rgba(78, 77, 94, .1);
    cursor: pointer
}

.popup-form .tabs .active {
    color: #4e4d5e;
    border-bottom: 2px solid #4e4d5e
}

.popup-form .label {
    margin-bottom: 16px
}

.popup-form label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #4e4d5e
}

.popup-form .label input {
    width: 100%;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    font-size: 14px
}

.popup-form .error {
    font-size: 12px;
    line-height: 14px;
    color: #d20032
}

.label-select-val {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    color: #4e4d5e
}

.label-select-val .jq-radio {
    width: 20px;
    height: 20px
}

.form-btn, .popup-btn {
    position: relative;
    display: inline-block;
    min-width: 240px;
    width: 100%;
    color: #4e4d5e;
    background: #ffe600;
    transition: background .3s ease;
    padding: 15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    border-radius: 4px;
    border: none;
    cursor: pointer
}

#registerBtn.loader:before, .popup-btn.loader:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url(/loader.3ad43c15.svg) 50% no-repeat #ffe600;
    top: 0;
    left: 0;
    border-radius: 4px
}

.form-btn:hover, .popup-btn:hover {
    background: #fd0
}

.popup-politics {
    color: #4e4d5e;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    max-width: 290px;
    margin: 0 auto 32px
}

.popup-politics a {
    color: #d20032;
    text-decoration: none;
    cursor: pointer
}

.social-block {
    font-size: 12px;
    line-height: 14px;
    color: #4e4d5e;
    text-align: center
}

.social-block p {
    position: relative
}

.social-block p:after, .social-block p:before {
    position: absolute;
    content: "";
    height: 1px;
    max-width: 100px;
    width: 100%;
    background-color: #d1d5e1;
    top: 50%;
    transform: translateY(-50%)
}

.social-block p:before {
    left: 0
}

.social-block p:after {
    right: 0
}

.popup-login {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #4e4d5e;
    text-align: center;
    margin-top: 52px
}

.popup-login a {
    color: #d20032;
    text-decoration: none
}

.popup-form__img {
    display: none
}

.popup-form__img img {
    width: 100%
}

.popup-form__banner {
    max-width: 580px;
    display: none;
}

.social-list {
    display: flex;
    flex-flow: row nowrap;
    margin: 12px auto 0;
    justify-content: center;
    align-items: center
}

.social-list li:not(:last-child) {
    margin-right: 16px
}

@media (min-width: 320px) and (max-width: 1020px) {
    .popup-form__banner {
        display: none
    }

    .popup-form__img {
        display: block
    }

    .registration {
        max-width: 365px
    }
}

@media screen and (max-width: 1023px) and (orientation: landscape) {
    .popup.activate {
        overflow: scroll
    }

    .registration {
        margin-top: 100px
    }
}

.footerRight, .footeWrapper {
    display: flex
}

.footerLeft {
    font-weight: 300;
    font-size: 8px;
    line-height: 9px;
    color: hsla(0, 0%, 100%, .8);
    max-width: 65%;
    opacity: .8;
    font-family: Rubik-light
}

.footerLeft, .logoItem {
    display: flex;
    align-items: center
}

.logoItem {
    height: 40px;
    padding-left: 5px;
    padding-right: 5px
}

@media (min-width: 320px) and (max-width: 767px) {
    .footeWrapper {
        flex-wrap: wrap
    }

    .footerLeft, .footerRight {
        min-width: 100%
    }

    .footerLeft {
        font-size: 6px;
        line-height: 7px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .footeWrapper {
        flex-wrap: wrap
    }

    .footerLeft, .footerRight {
        min-width: 100%
    }

    .footerRight {
        justify-content: center;
        margin-top: 10px
    }

    .footerLeft {
        font-size: 6px;
        text-align: center
    }
}

@media screen and (max-width: 1023px) {
    .footeWrapper {
        flex-direction: column-reverse;
        margin-bottom: 8px
    }
}

/*# sourceMappingURL=/style.9af5b2e8.css.map */