﻿.platforms
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.platforms_text
{
    margin-right: 16px;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: .01em;
}
.platforms_icon
{
    max-width: 15px;
}
@media all and (min-width: 720px)
{
    .platforms_icon
    {
        max-width: 27px;
    }
}
.platforms_icon:not(:last-child)
{
    margin-right: 8px;
}
@media all and (min-width: 720px)
{
    .platforms_icon:not(:last-child)
    {
        margin-right: 16px;
    }
}
.lang-button
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 8px 0 8px 12px;
    border: none;
    outline: transparent;
    background-color: transparent;
    color: #fff;
    font: 12px/17px "Roboto Condensed","Arial Narrow","Arial",sans-serif;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2%;
    position: relative;
    transition: color .5s;
}
.lang-button::before
{
    display: block;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: currentColor;
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    transition: border-color .5s,background-color .5s;
}
.lang-button:hover, .lang-button:active
{
    color: rgba(255,255,255,.6);
    cursor: pointer;
}
.lang-button:hover::before, .lang-button:active::before
{
    opacity: 1;
}
.lang-button__current
{
    color: #cbac77;
    font-style: italic;
    cursor: default;
    pointer-events: none;
}
.lang-button__current::before
{
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-color: currentColor;
    background-color: transparent;
    left: 0;
}
.lang-button__selector
{
    width: auto;
    padding: 0;
    text-align: right;
}
.lang-button__selector::before
{
    display: none;
}
.lang-button__selector .lang-button_text
{
    word-break: break-all;
}
.lang-button__selector .lang-button_world
{
    display: inline-block;
    width: 12px;
    min-width: 12px;
    height: 12px;
    margin-right: 4px;
    position: relative;
    transition: fill .5s;
    fill: currentColor;
}
.lang-button__selector .lang-button_arrow
{
    display: block;
    width: 12px;
    min-width: 12px;
    height: 12px;
    margin-left: 4px;
    position: relative;
    top: -1px;
    transition: fill .5s,-webkit-transform .5s;
    transition: transform .5s,fill .5s;
    transition: transform .5s,fill .5s,-webkit-transform .5s;
    fill: currentColor;
}
.lang-button__active .lang-button_arrow
{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.language-list
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 940px;
    max-height: 100%;
    padding: 20px 30px;
    font: 400 12px/17px "Roboto Condensed","Arial Narrow","Arial",sans-serif;
}
.language-list_item
{
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    padding: 0 20px 0 0;
    text-align: left;
    position: relative;
}
@media all and (min-width: 720px)
{
    .language-list_item
    {
        width: 25%;
    }
}
@media all and (min-width: 1100px)
{
    .language-list_item
    {
        width: 20%;
    }
}
.close-button
{
    z-index: 10;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    outline: transparent;
    background-color: transparent;
    color: #b8b397;
    overflow: hidden;
    position: fixed;
    top: 8px;
    right: 18px;
    cursor: pointer;
}
.close-button:hover
{
    color: #cbac77;
}
.close-button::before, .close-button::after
{
    width: 20px;
    height: 3px;
    margin-top: -1px;
    border-radius: 5px;
    background-color: currentColor;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transition: color .5s;
}
.close-button::before
{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-button::after
{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.overlay
{
    z-index: 1000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(22,22,22,.95);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity .5s,visibility .5s;
}
@media all and (min-width: 720px)
{
    .overlay
    {
        height: auto;
        position: absolute;
        top: auto;
        bottom: 100%;
        -webkit-transform: translateY(35px);
        transform: translateY(35px);
        transition: opacity .5s,visibility .5s,-webkit-transform .5s;
        transition: opacity .5s,visibility .5s,transform .5s;
        transition: opacity .5s,visibility .5s,transform .5s,-webkit-transform .5s;
        will-change: transform;
    }
}
@media all and (min-width: 720px)
{
    .overlay__top
    {
        height: auto;
        position: fixed;
        top: 0;
        bottom: auto;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
.overlay__open
{
    opacity: 1;
    visibility: visible;
}
@media all and (min-width: 720px)
{
    .overlay__open
    {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none)
{
    .overlay__open
    {
        -webkit-transform: none;
        transform: none;
    }
}
.overlay__fullscreen
{
    top: 0;
    bottom: 0;
    -webkit-transform: none;
    transform: none;
}
@media all and (min-width: 720px)
{
    .overlay__fullscreen
    {
        position: fixed;
    }
}
.footer
{
    width: 100%;
    font: 400 12px "Roboto Condensed","Arial Narrow","Arial",sans-serif;
    position: relative;
}
.footer_inner
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    justify-items: flex-end;
    margin: 0 auto;
    padding: 0 16px 20px;
}
@media all and (min-width: 1100px)
{
    .footer_inner
    {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,.1);
    }
}
@media all and (min-width: 1600px)
{
    .footer_inner
    {
        margin: 0 100px;
    }
}
.footer_nav-and-copyright
{
    width: 100%;
}
@media all and (min-width: 1100px)
{
    .footer_nav-and-copyright
    {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.footer_nav
{
    width: 100%;
    margin-bottom: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
}
@media all and (min-width: 1100px)
{
    .footer_nav
    {
        padding-top: 0;
        border: none;
    }
}
@media all and (min-width: 1600px)
{
    .footer_copyright
    {
        max-width: 700px;
    }
}
.footer_platform-list-and-rating
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
}
@media all and (min-width: 720px)
{
    .footer_platform-list-and-rating
    {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-left: auto;
        margin-top: 16px;
    }
}
@media all and (min-width: 1100px)
{
    .footer_platform-list-and-rating
    {
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-top: 0;
    }
}
.footer_platform-list
{
    width: 100%;
}
@media all and (min-width: 720px)
{
    .footer_platform-list
    {
        width: auto;
        margin-left: 0;
    }
}
@media all and (min-width: 1100px)
{
    .footer_platform-list
    {
        margin-right: 24px;
    }
}
.footer_rating-list
{
    width: 100%;
}
@media all and (min-width: 720px)
{
    .footer_rating-list
    {
        width: auto;
    }
}
.footer-link
{
    color: rgba(255,255,255,.3);
    text-decoration: none;
    transition: color .5s;
}
.footer-link:hover
{
    color: rgba(255,255,255,.5);
}
.copyright
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    color: rgba(255,255,255,.3);
    text-align: left;
}
.copyright_logo
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: auto;
    margin-right: 8px;
    opacity: .3;
    position: relative;
    transition: opacity .5s;
}
.copyright_logo:hover
{
    opacity: .7;
}
.copyright_logo img
{
    width: auto;
    max-width: 26px;
}
.copyright_text
{
    width: 100%;
}
.rating-list
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-top: 16px;
    padding-left: 34px;
}
@media all and (min-width: 720px)
{
    .rating-list
    {
        -ms-flex-align: end;
        align-items: flex-end;
        width: auto;
        margin-top: 0;
    }
}
@media all and (min-width: 1100px)
{
    .rating-list
    {
        padding-left: 0;
    }
}
.rating-list__extended .rating-list_icon
{
    max-height: 68px;
}
@media all and (min-width: 720px)
{
    .rating-list__extended .rating-list_icon
    {
        height: 68px;
    }
}
.rating-list_list
{
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
@media all and (min-width: 720px)
{
    .rating-list_list
    {
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: auto;
    }
}
.rating-list_item:not(:first-child)
{
    margin-left: 10px;
}
.rating-list_link
{
    display: inline-block;
    transition: opacity .5s;
}
.rating-list_link:hover
{
    opacity: .7;
}
.rating-list_icon
{
    max-height: 36px;
}
@media all and (min-width: 720px)
{
    .rating-list_icon
    {
        width: auto;
        height: 36px;
    }
}
.rating-list_description
{
    display: inline-block;
    width: auto;
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.3);
    font-size: 10px;
    line-height: 1;
    text-align: left;
}
@media all and (min-width: 720px)
{
    .rating-list_description
    {
        text-align: right;
        white-space: nowrap;
    }
}
@media all and (min-width: 1100px)
{
    .rating-list_description
    {
        font-size: 12px;
        line-height: 1.2;
    }
}
.footer-navigation
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 34px;
    text-transform: uppercase;
}
.footer-navigation_item
{
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}
.footer-navigation_item:not(:last-child)
{
    padding-right: 20px;
}
@media all and (min-width: 720px)
{
    .footer-navigation_item:not(:last-child)
    {
        padding-right: 25px;
    }
}
@media all and (min-width: 1600px)
{
    .footer-navigation_item:not(:last-child)
    {
        padding-right: 30px;
    }
}/* stylelint-disable-next-line selector-max-id */
#ot-sdk-btn.ot-sdk-show-settings.footer-link
{
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255,255,255,.3);
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: inherit;
    transition: color .5s;/* stylelint-disable-next-line selector-max-id */
}
#ot-sdk-btn.ot-sdk-show-settings.footer-link:hover
{
    background: none;
    color: rgba(255,255,255,.5);
}
.platform-list
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 16px;
    padding-left: 34px;
}
@media all and (min-width: 720px)
{
    .platform-list
    {
        width: auto;
        margin-top: 0;
    }
}
.platform-list__extended .platform-list_icon
{
    max-height: 68px;
}
@media all and (min-width: 720px)
{
    .platform-list__extended .platform-list_icon
    {
        height: 68px;
    }
}
.platform-list_item
{
    display: inline-block;
}
.platform-list_item:not(:first-child)
{
    margin-left: 10px;
}
.platform-list_link
{
    display: inline-block;
    transition: opacity .5s;
}
.platform-list_link:hover
{
    opacity: .7;
}
.platform-list_icon
{
    width: auto;
    max-height: 36px;
}
@media all and (min-width: 720px)
{
    .platform-list_icon
    {
        height: 36px;
    }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video
{
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{
    display: block;
}
body
{
    line-height: 1;
}
ol, ul
{
    list-style: none;
}
blockquote, q
{
    quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after
{
    content: "";
}
table
{
    border-spacing: 0;
    border-collapse: collapse;
}
button
{
    padding: 0;
    border: none;
    font-family: inherit;
}
button:focus
{
    outline: none;
}
input
{
    outline: none;
}
a
{
    text-decoration: none;
}
body.modal-opened
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}
.cta-wrapper
{
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}
.cta-wrapper__full-width
{
    width: 100%;
}
.cta-wrapper__inherit-height
{
    height: inherit;
}
.cta
{
    z-index: 1;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    position: relative;
    transition: background-color .15s,color .15s,border-color .15s;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.cta[disabled]
{
    opacity: .6;
    pointer-events: none;
}
.cta__size-small
{
    min-width: 192px;
    max-width: 504px;
    height: 46px;
    padding: 3px 20px;
    font-size: 16px;
    line-height: 1.2;
}
.cta__size-medium
{
    min-width: 226px;
    max-width: 504px;
    height: 54px;
    padding: 6px 30px;
    font-size: 18px;
    line-height: 1.2;
}
.cta__size-large
{
    min-width: 276px;
    max-width: 504px;
    height: 62px;
    padding: 5px 30px;
    font-size: 20px;
    line-height: 1.35;
}
.cta__variant-naked
{
    background-color: #727272;
    color: #fff;
}
.cta__variant-primary
{
    background-color: #fd5102;
    color: #fff;
}
.cta__variant-primary:hover
{
    background-color: #fe6413;
}
.cta__variant-primary:active
{
    background-color: #f35705;
}
.cta__variant-primary:disabled, .cta__variant-primary[disabled]
{
    background-color: #6c5b53;
    color: rgba(255,255,255,.5);
    opacity: 1;
}
.cta__variant-primary.cta__loading
{
    background-color: #8f380f;
}
.cta__variant-secondary
{
    border: 1px solid #727272;
    background-color: #fff;
    color: #000;
}
.cta__variant-secondary:hover
{
    background-color: #f9f5e1;
}
.cta__variant-secondary:active
{
    background-color: #fff;
}
.cta__variant-secondary.cta__loading
{
    opacity: 1;
    background-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
}
.cta__variant-secondary.cta__loading.cta__light-mode
{
    background: rgba(114,114,114,.2);
    color: rgba(0,0,0,.6);
}
.cta__variant-transparent
{
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}
.cta__variant-transparent:hover
{
    border-color: #727272;
    background-color: #f9f5e1;
    color: #000;
}
.cta__variant-transparent:active
{
    background-color: #ece9d7;
    color: #000;
}
.cta__variant-transparent.cta__light-mode
{
    border: 1px solid #000;
    background-color: transparent;
    color: #121210;
}
.cta__variant-transparent.cta__light-mode:hover
{
    border-color: #000;
    background-color: #f9f5e1;
    color: #000;
}
.cta__variant-transparent.cta__light-mode:active
{
    border-color: #ece9d7;
    background-color: #ece9d7;
    color: #000;
}
.cta__variant-transparent.cta__loading
{
    opacity: 1;
    color: #727272;
}
.cta__variant-transparent.cta__loading.cta__light-mode
{
    border-color: #727272;
    color: #727272;
}
.cta__variant-video
{
    background-color: transparent;
    color: #fff;
}
.cta__variant-video:hover
{
    color: #fd5102;
}
.cta__variant-video:active
{
    color: #d94400;
}
.cta__variant-video.cta__light-mode
{
    color: #000;
}
.cta__variant-video.cta__light-mode:hover
{
    color: #fd5102;
}
.cta__variant-video.cta__light-mode:active
{
    color: #d94400;
}
.cta__blinking::before
{
    width: 100%;
    height: 100%;
    border-left: 58px solid rgba(250,250,250,.2);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: cta-blink 3s infinite ease;
    animation: cta-blink 3s infinite ease;
}
.cta__variant-secondary.cta__blinking::before
{
    border-left-color: rgba(131,131,131,.2);
}
.cta__variant-transparent.cta__blinking::before
{
    border-left-color: rgba(131,131,131,.2);
}
.cta__variant-video.cta__blinking::before
{
    display: none;
}
.cta[disabled].cta__blinking::before
{
    display: none;
}
.cta__is-icon-only.cta__blinking::before
{
    -webkit-animation: cta-blink-icon-only 3s infinite ease;
    animation: cta-blink-icon-only 3s infinite ease;
}
.cta__variant-secondary.cta__blinking:hover::before
{
    border-left-color: rgba(131,131,131,.1);
}
.cta__variant-transparent.cta__blinking:hover::before
{
    border-left-color: rgba(131,131,131,.1);
}
.cta__variant-secondary.cta__blinking:active::before
{
    border-left-color: rgba(131,131,131,.2);
}
.cta__blinking.cta__light-mode.cta__variant-secondary::before
{
    border-left-color: rgba(131,131,131,.2);
}
.cta__blinking.cta__light-mode.cta__variant-secondary:hover::before
{
    border-left-color: rgba(131,131,131,.2);
}
.cta__blinking.cta__light-mode.cta__variant-secondary:active::before
{
    border-left-color: rgba(131,131,131,.1);
}
.cta__auto-height
{
    height: auto;
}
.cta__inherit-height
{
    height: inherit;
}
.cta__full-width
{
    width: 100%;
    max-width: none;
}
.cta__is-icon-only
{
    width: 54px;
    min-width: auto;
    padding: 10px;
}
.cta__is-icon-only.cta__size-small
{
    width: 46px;
}
.cta__is-icon-only.cta__size-medium
{
    width: 54px;
}
.cta__is-icon-only.cta__size-large
{
    width: 62px;
}
.cta_content, .cta_content-img
{
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
}
.cta_content__prepend, .cta_content-img__prepend
{
    margin-right: 6px;
}
.cta__size-small .cta_content__prepend, .cta__size-small .cta_content-img__prepend
{
    margin-right: 6px;
}
.cta__size-medium .cta_content__prepend, .cta__size-medium .cta_content-img__prepend
{
    margin-right: 8px;
}
.cta__size-large .cta_content__prepend, .cta__size-large .cta_content-img__prepend
{
    margin-right: 8px;
}
.cta_content__append, .cta_content-img__append
{
    margin-left: 6px;
}
.cta__size-small .cta_content__append, .cta__size-small .cta_content-img__append
{
    margin-left: 6px;
}
.cta__size-medium .cta_content__append, .cta__size-medium .cta_content-img__append
{
    margin-left: 8px;
}
.cta__size-large .cta_content__append, .cta__size-large .cta_content-img__append
{
    margin-left: 8px;
}
.cta_content__loader
{
    display: none;
}
.cta__loading .cta_content__loader
{
    display: block;
}
@supports(
-webkit-line-clamp: 2)
{
.cta__size-small .cta_content__main, .cta__size-medium .cta_content__main, .cta__size-large .cta_content__main
{
    display: -webkit-box;
    text-overflow: ellipsis;
    white-space: initial;
    overflow: hidden;
    -webkit-line-clamp: 2;
    /*! autoprefixer: ignore next */
    -webkit-box-orient: vertical;/* stylelint-disable-line property-no-vendor-prefix */
}
}
.cta__is-icon-only .cta_content__main-text
{
    display: none;
}
.cta_content img, .cta_content svg
{
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.cta_content-img
{
    vertical-align: middle;
}
.cta_content-img__main
{
    height: 100%;
}
.cta_content-img__prepend, .cta_content-img__append
{
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 18px;
    max-height: 18px;
}
.cta__size-small .cta_content-img__prepend, .cta__size-small .cta_content-img__append
{
    max-width: 16px;
    max-height: 16px;
}
.cta__size-medium .cta_content-img__prepend, .cta__size-medium .cta_content-img__append
{
    max-width: 18px;
    max-height: 18px;
}
.cta__size-large .cta_content-img__prepend, .cta__size-large .cta_content-img__append
{
    max-width: 22px;
    max-height: 22px;
}
.cta__is-icon-only .cta_content-img__prepend, .cta__is-icon-only .cta_content-img__append
{
    max-width: 20px;
    max-height: 20px;
    margin-left: 0;
    margin-right: 0;
}
.cta_content-video-icon
{
    margin-right: 12px;
    margin-top: auto;
    margin-bottom: auto;
    height: 100%;
}
.cta_content-video-icon-circle
{
    stroke: #fd5102;
    fill: transparent;
    transition: fill .15s,stroke .15s;
}
.cta:hover .cta_content-video-icon-circle
{
    fill: #fd5102;
}
.cta_content-video-icon-triangle
{
    fill: #fd5102;
    transition: fill .15s,stroke .15s;
}
.cta:hover .cta_content-video-icon-triangle
{
    fill: #fff;
}
.cta__size-small .cta_content-video-icon
{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: -3px;
    height: calc(100% + 3px * 2);
}
.cta__size-medium .cta_content-video-icon
{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: -6px;
    height: calc(100% + 6px * 2);
}
.cta__size-large .cta_content-video-icon
{
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: -5px;
    height: calc(100% + 5px * 2);
}
.cta__is-icon-only .cta_content-video-icon
{
    margin-right: 0;
}
.cta_content-loader
{
    margin-right: 6px;
    margin-top: auto;
    margin-bottom: auto;
    -webkit-animation: cta-loader 1.6s infinite linear;
    animation: cta-loader 1.6s infinite linear;
    display: none;
    min-width: 18px;
    min-height: 18px;
}
.cta_content-loader-circle
{
    fill: #e5e9f2;
}
.cta__variant-secondary.cta__light-mode .cta_content-loader-circle
{
    fill: #727272;
}
.cta__variant-transparent.cta__light-mode .cta_content-loader-circle
{
    fill: #727272;
}
.cta_content-loader-arc
{
    fill: #8f380f;
}
.cta__variant-secondary .cta_content-loader-arc
{
    fill: #fd5102;
}
.cta__variant-secondary.cta__light-mode .cta_content-loader-arc
{
    fill: #fff;
}
.cta__variant-transparent .cta_content-loader-arc
{
    fill: #fd5102;
}
.cta__variant-transparent.cta__light-mode .cta_content-loader-arc
{
    fill: #fff;
}
.cta__size-small .cta_content-loader
{
    margin-right: 6px;
}
.cta__size-medium .cta_content-loader
{
    margin-right: 8px;
}
.cta__size-large .cta_content-loader
{
    margin-right: 8px;
}
.cta__loading .cta_content-loader
{
    display: block;
}
.cta-mobile-text
{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    text-align: center;
}
.cta-wrap__light-mode .cta-mobile-text
{
    color: #000;
}
.cta-notice
{
    max-width: 256px;
    margin-left: auto;
    margin-top: 4px;
    margin-right: auto;
    color: #727272;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.46;
    text-align: center;
}
.cta-mobile-text__visible-mobile-text, .cta-notice__visible-mobile-text
{
    display: none;
}
.cta-mobile-text a, .cta-notice a
{
    color: #feab34;
}
@-webkit-keyframes cta-blink
{
    0%
    {
        -webkit-transform: translateX(-50%) skew(35deg);
        transform: translateX(-50%) skew(35deg);
    }
    50%
    {
        -webkit-transform: translateX(110%) skew(35deg);
        transform: translateX(110%) skew(35deg);
    }
    100%
    {
        -webkit-transform: translateX(110%) skew(35deg);
        transform: translateX(110%) skew(35deg);
    }
}
@keyframes cta-blink
{
    0%
    {
        -webkit-transform: translateX(-50%) skew(35deg);
        transform: translateX(-50%) skew(35deg);
    }
    50%
    {
        -webkit-transform: translateX(110%) skew(35deg);
        transform: translateX(110%) skew(35deg);
    }
    100%
    {
        -webkit-transform: translateX(110%) skew(35deg);
        transform: translateX(110%) skew(35deg);
    }
}
@-webkit-keyframes cta-blink-icon-only
{
    0%
    {
        -webkit-transform: translateX(-130%) skew(35deg);
        transform: translateX(-130%) skew(35deg);
    }
    50%
    {
        -webkit-transform: translateX(130%) skew(35deg);
        transform: translateX(130%) skew(35deg);
    }
    100%
    {
        -webkit-transform: translateX(130%) skew(35deg);
        transform: translateX(130%) skew(35deg);
    }
}
@keyframes cta-blink-icon-only
{
    0%
    {
        -webkit-transform: translateX(-130%) skew(35deg);
        transform: translateX(-130%) skew(35deg);
    }
    50%
    {
        -webkit-transform: translateX(130%) skew(35deg);
        transform: translateX(130%) skew(35deg);
    }
    100%
    {
        -webkit-transform: translateX(130%) skew(35deg);
        transform: translateX(130%) skew(35deg);
    }
}
@-webkit-keyframes cta-loader
{
    0%
    {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes cta-loader
{
    0%
    {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.tooltip
{
    z-index: 10;
    box-sizing: border-box;
    display: block;
    max-width: 280px;
    padding: 10px;
    border: 1px solid rgba(103,108,111,.4);
    border-radius: 4px;
    background: #333335;
    color: #aaaaab;
    font-size: 12px;
    line-height: 1.25;
    visibility: hidden;
    position: absolute;
    pointer-events: none;/* TODO WOTSP-2860: Change tooltips to always be above */
}
.tooltip::after
{
    width: 15px;
    height: 15px;
    background: inherit;
    content: "";
    position: absolute;
}
.tooltip__show
{
    visibility: visible;
    z-index: 500;
}
.tooltip__top-arrow::after
{
    border-left: 1px solid rgba(103,108,111,.4);
    border-top: 1px solid rgba(103,108,111,.4);
    top: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
.tooltip__bottom-arrow::after
{
    border-right: 1px solid rgba(103,108,111,.4);
    border-bottom: 1px solid rgba(103,108,111,.4);
    bottom: -8px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
.tooltip__left-arrow::after
{
    border-left: 1px solid rgba(103,108,111,.4);
    border-bottom: 1px solid rgba(103,108,111,.4);
    top: 50%;
    bottom: -8px;
    left: -8px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.tooltip__right-arrow::after
{
    border-top: 1px solid rgba(103,108,111,.4);
    border-right: 1px solid rgba(103,108,111,.4);
    top: 50%;
    right: -8px;
    bottom: -8px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.tooltip__insideModal.tooltip__show
{
    z-index: 1500;
}
.input
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}
@media all and (min-width: 1100px)
{
    .input__is-may-collapse
    {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.input_field
{
    z-index: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #595950;
    outline: none;
    background-color: #020406;
    color: #f7f7f7;
    line-height: 1;
    position: relative;
    transition: border-color .2s ease,background-color .2s ease,color .2s ease;/* fix some version of IE dont apply standart placeholder styles from rule above */
}
@media all and (min-width: 1100px)
{
    .input_field
    {
        padding: 0 15px;
    }
}
@media all and (min-width: 1600px)
{
    .input_field
    {
        padding: 0 20px;
    }
}
.input_field::-webkit-input-placeholder
{
    color: #595950;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}
.input_field:-ms-input-placeholder
{
    color: #595950;
    -ms-transition: color .2s ease;
    transition: color .2s ease;
}
.input_field::placeholder
{
    color: #595950;
    transition: color .2s ease;
}
.input__floatable-placeholder .input_field::-webkit-input-placeholder
{
    opacity: 0;
}
.input__floatable-placeholder .input_field:-ms-input-placeholder
{
    opacity: 0;
}
.input__floatable-placeholder .input_field::placeholder
{
    opacity: 0;
}
.input__floatable-placeholder .input_field:-ms-input-placeholder
{
    color: rgba(0,0,0,0);
    opacity: 0;
}
.input_field:-webkit-autofill
{/* hack to hide odd yellow bg color during autofill */
    -webkit-transition: background-color 50000s ease-in-out 0s,color 5000s ease-in-out 0s;
    transition: background-color 50000s ease-in-out 0s,color 5000s ease-in-out 0s;
}
.input_field::-ms-reveal, .input_field::-ms-clear
{
    display: none;
}
.input_field:hover:not(.input_field__error), .input_field:focus:not(.input_field__error)
{
    border-color: #8c8c7e;
}
.input_field:focus, .input_field:not(.input_field__empty), .input_field:not(.input_field__error)
{
    background-color: #020406;
    color: #f7f7f7;
}
.input_field:focus::-webkit-input-placeholder
{
    color: #373737;
}
.input_field:focus:-ms-input-placeholder
{
    color: #373737;
}
.input_field:focus::placeholder
{
    color: #373737;
}
.input_field__error
{
    border-color: rgba(167,37,27,.6);
}
.input_field__collapsed
{
    display: none;
}
.input__has-icon .input_field
{
    padding-right: 34px;
}
.input__has-icon-secondary .input_field
{
    padding-right: 58px;
}
.input__floatable-placeholder .input_field
{
    height: 48px;
    padding-top: 18px;
    border: none;
    background: none;
}
.input_bg
{
    display: none;
    width: 100%;
    height: 48px;
    border: 1px solid #595950;
    background-color: #020406;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: border-color .2s ease;
    pointer-events: none;
}
.input__floatable-placeholder .input_bg
{
    display: block;
}
.input:hover .input_field:not(.input_field__error)~.input_bg, .input_field:focus:not(.input_field__error)~.input_bg
{
    border-color: #8c8c7e;
}
.input_field__error~.input_bg, .input_field__error:focus~.input_bg
{
    border-color: rgba(167,37,27,.6);
}
.input_pseudo-placeholder
{
    display: none;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    outline: none;
    color: #595950;
    line-height: 48px;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease,-webkit-transform .2s ease;
    cursor: text;
    pointer-events: none;
    will-change: transform;
}
@media all and (min-width: 1100px)
{
    .input_pseudo-placeholder
    {
        padding: 0 15px;
    }
}
@media all and (min-width: 1600px)
{
    .input_pseudo-placeholder
    {
        padding: 0 20px;
    }
}
.input__has-icon .input_pseudo-placeholder
{
    padding-right: 34px;
}
.input__floatable-placeholder .input_pseudo-placeholder
{
    display: block;
}
.input_field__empty~.input_pseudo-placeholder
{
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.input_field:focus~.input_pseudo-placeholder
{
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.input_icon
{
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 34px;
    height: 100%;
    opacity: .6;
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity .2s ease;
    cursor: pointer;
}
.input_icon:hover
{
    opacity: 1;
}
.input_inner__force-text .input_icon__password
{
    opacity: 1;
}
.input_icon__secondary
{
    width: 24px;
    right: 34px;
}
.input_eye
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDE4IDE5Ij4KICA8cGF0aCBkPSJNMSAxMC44YTEuOSAxLjkgMCAwMTAtMS44OGMxLjc2LTMuMDcgNC41OC01LjA1IDcuNzYtNS4wNSAzLjE4IDAgNiAxLjk4IDcuNzYgNS4wNS4zMy41OS4zMyAxLjMgMCAxLjg5LTEuNzYgMy4wNy00LjU4IDUuMDYtNy43NiA1LjA2LTMuMTggMC02LTItNy43Ni01LjA2eiIgc3Ryb2tlPSIjNjc2QzZGIiBzdHJva2Utd2lkdGg9IjEuNSIvPgogIDxjaXJjbGUgY3g9IjguNzYiIGN5PSI5Ljg3IiByPSIyLjI1IiBzdHJva2U9IiM2NzZDNkYiIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPgo=) no-repeat center/18px 19px;
}
.input_label
{
    z-index: 1;
    display: inline-block;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    margin-bottom: 8px;
}
.input_label:empty
{
    display: none;
}
.input_label:empty
{
    display: none;
}
.input_label__with-border
{
    cursor: pointer;
}
.input_label__with-border:hover
{
    opacity: 1;
}
.input_label__collapsed
{
    margin-bottom: 0;
    text-decoration: underline;
}
.input_collapse-checkbox:focus~.input_label
{
    opacity: 1;
}
.input__is-may-collapse .input_label
{
    white-space: nowrap;
}
@media all and (min-width: 1100px)
{
    .input__is-may-collapse .input_label
    {
        margin-bottom: 0;
    }
}
.input_inner
{
    width: 100%;
    position: relative;
}
.input_inner__collapsed
{
    display: none;
}
@media all and (min-width: 1100px)
{
    .input__is-may-collapse .input_inner
    {
        margin-left: 14px;
    }
}
.input_collapse-checkbox
{
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    position: absolute;
}
.input_error
{
    max-width: 100%;
    color: #f00;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
}
@media all and (min-width: 1100px)
{
    .input_error
    {
        font-size: 11px;
    }
}
@media all and (min-width: 1100px) and (min-height: 850px)
{
    .input_error
    {
        font-size: 12px;
    }
}
@media all and (min-width: 720px)
{
    .birthdate
    {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-align: center;
        align-items: center;
    }
}
.birthdate_label
{
    z-index: 1;
    display: inline-block;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    margin-right: 14px;
    margin-bottom: 8px;
    color: #8c8c7e;
    opacity: 1;
    cursor: pointer;
}
.birthdate_label:empty
{
    display: none;
}
@media all and (min-width: 720px)
{
    .birthdate_label
    {
        margin-bottom: 0;
    }
}
.birthdate_content
{
    position: relative;
}
@media all and (min-width: 720px)
{
    .birthdate_content
    {
        width: calc(50% - 7px);
    }
}
.birthdate_inputs
{
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
@media all and (min-width: 720px)
{
    .birthdate_inputs
    {
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}
.birthdate .input_field:not(.input_field__floatable-placeholder)
{
    height: 30px;
}
.birthdate_input
{
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    margin-right: 15px;
}
@media all and (min-width: 1100px)
{
    .birthdate_input
    {
        margin-right: 10px;
    }
}
@media all and (min-width: 1600px)
{
    .birthdate_input
    {
        margin-right: 15px;
    }
}
.birthdate_input:last-of-type
{
    margin-right: 0;
}
.birthdate_error
{
    max-width: 100%;
    color: #f00;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
}
@media all and (min-width: 1100px)
{
    .birthdate_error
    {
        font-size: 11px;
    }
}
@media all and (min-width: 1100px) and (min-height: 850px)
{
    .birthdate_error
    {
        font-size: 12px;
    }
}
.checkbox
{
    margin-bottom: 4px;
    position: relative;
}
@media all and (min-width: 720px)
{
    .checkbox
    {
        margin-bottom: 10px;
    }
}
.checkbox_field
{
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    position: absolute;
}
.checkbox_label
{
    display: inline-block;
    padding-left: 36px;
    color: #8c8c7e;
    font-size: 12px;
    line-height: 1.5;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}
@media all and (min-width: 1100px)
{
    .checkbox_label
    {
        font-size: 11px;
    }
}
@media all and (min-width: 1100px) and (min-height: 850px)
{
    .checkbox_label
    {
        font-size: 12px;
    }
}
.checkbox_label::before
{
    width: 20px;
    height: 20px;
    border: 1px solid #595950;
    background-color: #020406;
    content: "";
    position: absolute;
    top: 2px;
    left: 1px;
    transition: border-color .2s ease;
}
.checkbox_field:focus~.checkbox_label::before
{
    border-color: #8c8c7e;
}
.checkbox_label:hover::before
{
    border-color: #8c8c7e;
}
.checkbox_label__checked::before
{
    border-color: #8c8c7e;
}
.checkbox_label__checked::after
{
    width: 8px;
    height: 5px;
    border-left: 2px solid #fe5000;
    border-bottom: 2px solid #fe5000;
    content: "";
    position: absolute;
    top: 8px;
    left: 7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.checkbox_label__error::before
{
    border-color: #f00;
}
.checkbox_field:focus~.checkbox_label__error::before
{
    border-color: #f00;
}
.password-field_icon-info-wrap
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.password-field_icon-info
{
    fill: #676c6f;
}
.input_field__error~.input_icon .password-field_icon-info-wrap .password-field_icon-info
{
    fill: #a7251b;
}
.password-field_popover.password-field_popover
{
    width: auto;
    right: 31px;
}
.password-field_popover.password-field_popover::after
{
    width: 8px;
    height: 8px;
    -webkit-transform: translateY(-60%) rotate(45deg);
    transform: translateY(-60%) rotate(45deg);
}
.password-field .input_field__error~.input_icon__secondary
{
    opacity: 1;
}
.password-field_popover-title-wrap
{
    color: #fff;
    font-weight: bold;
}
.password-field_popover-title mark
{
    all: unset;
    background: none;
    color: inherit;
}
.password-field__server-error-invalid .password-field_popover-title mark
{
    color: #ff8803;
}
.password-field_validations-list
{
    list-style: disc;
    list-style-position: outside;
}
.password-field_validations-item
{
    margin-top: 3px;
    transition: color .2s ease;
}
.password-field_validations-item__valid:not(.password-field_validations-item__server-error-invalid)
{
    color: #3bf01d;
}
.regform
{
    width: 100%;
    position: relative;
}
.regform_title
{
    margin-bottom: 15px;
    padding-bottom: 18px;
    color: #f7f7f7;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
}
@media all and (min-width: 720px)
{
    .regform_title
    {
        margin-bottom: 23px;
        font-size: 48px;
        line-height: 1.2;
        text-align: center;
    }
}
@media all and (min-width: 1100px)
{
    .regform_title
    {
        margin-bottom: 12px;
        padding-bottom: 15px;
        font-size: 20px;
        text-align: left;
    }
}
@media all and (min-width: 1600px) and (min-height: 850px)
{
    .regform_title
    {
        margin-bottom: 20px;
        padding-bottom: 20px;
        font-size: 36px;
    }
}
.regform_title::after
{
    width: 75px;
    height: 3px;
    background-color: #fe5000;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}
@media all and (min-width: 720px)
{
    .regform_title::after
    {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
@media all and (min-width: 1100px)
{
    .regform_title::after
    {
        left: 0;
        -webkit-transform: none;
        transform: none;
    }
}
.regform_promo
{
    margin-bottom: 23px;
    color: #f7f7f7;
    font-size: 14px;
    line-height: 18px;
}
@media all and (min-width: 720px)
{
    .regform_promo
    {
        margin-bottom: 37px;
        font-size: 16px;
        text-align: center;
    }
}
@media all and (min-width: 1100px)
{
    .regform_promo
    {
        margin-bottom: 14px;
        font-size: 12px;
        text-align: left;
    }
}
@media all and (min-width: 1100px) and (min-height: 850px)
{
    .regform_promo
    {
        margin-bottom: 23px;
        font-size: 14px;
    }
}
@media all and (min-width: 1600px) and (min-height: 850px)
{
    .regform_promo
    {
        margin-bottom: 35px;
        font-size: 16px;
    }
}
.regform_form-section, .regform_form-inner
{
    width: 100%;
    margin-bottom: 25px;
    position: relative;
}
.regform_form-section:last-child, .regform_form-inner:last-child
{
    margin-bottom: 0;
}
.regform_form-section__no-margin
{
    margin-bottom: 0;
}
.regform_form-section-content
{
    position: relative;
}
@media all and (min-width: 720px)
{
    .regform_form-inner
    {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.regform_form-inner-col
{
    margin-bottom: 30px;
}
@media all and (min-width: 720px)
{
    .regform_form-inner-col
    {
        width: calc(50% - 6px);
        margin-bottom: 0;
    }
}
@media all and (min-width: 720px)
{
    .regform_form-inner-col:last-child
    {
        margin-left: 12px;
    }
}
.regform_form-link
{
    color: inherit;
    text-decoration: underline;
    transition: color .2s ease;
}
.regform_form-link:hover
{
    color: #b8b8a2;
    text-decoration: none;
}
.regform_form-accent
{
    color: #e9e2bf;
    position: relative;
    transition: color .2s ease;
}
.regform_form-accent:hover
{
    color: #b8b8a2;
}
.regform_note
{
    box-sizing: border-box;
    padding: 8px 0 7px 24px;
    color: #8c8c7c;
    font-size: 12px;
    line-height: 1.5;
    opacity: .3;
}
@media all and (min-width: 1100px)
{
    .regform_note
    {
        font-size: 11px;
    }
}
@media all and (min-width: 1100px) and (min-height: 850px)
{
    .regform_note
    {
        font-size: 12px;
    }
}
.regform_button
{
    width: 100%;
}
@media all and (min-width: 1600px) and (min-height: 850px)
{
    .regform_button
    {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
}
@media all and (min-width: 720px)
{
    .regform_button-text
    {
        font-size: 24px;
    }
}
@media all and (min-width: 1100px)
{
    .regform_button-text
    {
        font-size: 18px;
    }
}
@media all and (min-width: 1600px) and (min-height: 850px)
{
    .regform_button-text
    {
        font-size: 24px;
    }
}
.regform_buttons
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px;
}
.regform_redirect
{
    display: inline-block;
    margin-top: 15px;
    color: #feab34;
    font-size: 18px;
    line-height: 1.3;
    text-decoration: underline;
    transition: color .2s ease;
}
@media all and (min-width: 720px)
{
    .regform_redirect
    {
        margin-top: 20px;
    }
}
.regform_redirect:hover
{
    color: #fd9;
}
.regform_nicknames-description
{
    margin-bottom: 8px;
}
.regform_nicknames
{
    display: inline-block;
}
.regform_nickname
{
    margin-top: 8px;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: pointer;
    text-underline-position: under;
}
.regform_nickname:first-of-type
{
    margin-top: 0;
}
.regform_parental-description
{
    margin-bottom: 15px;
}
.regform_parental-icon-wrap
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.regform_parental-icon
{
    fill: #676c6f;
}
.input_field__error~.regform_parental-icon-wrap .regform_parental-icon
{
    fill: #a7251b;
}
@media all and (min-width: 720px)
{
    .regform_parental-popover.regform-popover
    {
        right: 41px;
    }
}
.captcha
{
    text-align: center;
}
.captcha_img
{
    display: block;
    margin: 0 auto 10px;
}
.captcha_link
{
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 1px dotted;
    color: #f25322;
    transition: border-bottom-color .15s;
    cursor: pointer;
}
.captcha_link:hover
{
    border-bottom-color: transparent;
}
.regform-popover
{
    z-index: 10;
    display: none;
    width: 100%;
    min-height: 48px;
    padding: 5px 25px;
    border: 1px solid #676c6f;
    border-radius: 2px;
    outline: none;
    background-color: #333335;
    color: #aaaaab;
    line-height: 1.33;
    position: absolute;
}
.regform-popover::after
{
    width: 12px;
    height: 12px;
    background: inherit;
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.regform-popover::after__mobile
{
    display: none;
}
.regform-popover::after__mobile::after
{
    display: none;
}
.regform-popover.regform-popover__visible
{
    -webkit-animation: 300ms forwards;
    animation: 300ms forwards;
}
.regform-popover__left-top
{
    top: 0;
    left: calc(100% + 12px);
}
.regform-popover__left-top::after
{
    border-left: 1px solid #676c6f;
    border-bottom: 1px solid #676c6f;
    top: 20px;
    left: -7px;
}
.regform-popover__left-top.regform-popover__visible
{
    -webkit-animation-name: leftAnchor;
    animation-name: leftAnchor;
}
.regform-popover__left-bottom
{
    bottom: 0;
    left: calc(100% + 12px);
}
.regform-popover__left-bottom::after
{
    border-left: 1px solid #676c6f;
    border-bottom: 1px solid #676c6f;
    top: calc(100% - 20px);
    left: -7px;
}
.regform-popover__left-bottom.regform-popover__visible
{
    -webkit-animation-name: leftAnchor;
    animation-name: leftAnchor;
}
.regform-popover__right-top
{
    top: 0;
    right: calc(100% + 12px);
}
.regform-popover__right-top::after
{
    border-top: 1px solid #676c6f;
    border-right: 1px solid #676c6f;
    top: 20px;
    right: -7px;
}
.regform-popover__right-top.regform-popover__visible
{
    -webkit-animation-name: rightAnchor;
    animation-name: rightAnchor;
}
.regform-popover__right-bottom
{
    right: calc(100% + 12px);
    bottom: 0;
}
.regform-popover__right-bottom::after
{
    border-top: 1px solid #676c6f;
    border-right: 1px solid #676c6f;
    top: calc(100% - 20px);
    right: -7px;
}
.regform-popover__right-bottom.regform-popover__visible
{
    -webkit-animation-name: rightAnchor;
    animation-name: rightAnchor;
}
.regform-popover__bottom
{
    margin-top: 0;
    top: calc(100% - 1px);
    right: 0;
    left: auto;
}
.regform-popover__bottom::after
{
    border-left: 1px solid #676c6f;
    border-top: 1px solid #676c6f;
    top: 0;
    right: calc(-6px - 1px + 17px);
    pointer-events: none;
}
.regform-popover__bottom.regform-popover__visible
{
    -webkit-animation-name: bottomAppear;
    animation-name: bottomAppear;
}
.regform-popover__mobile
{
    margin-top: 20px;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
}
.regform-popover__mobile::after
{
    display: none;
}
.regform-popover__mobile.regform-popover__visible
{
    -webkit-animation-name: mobileAppear;
    animation-name: mobileAppear;
}
.regform-popover__visible
{
    display: block;
}
@media all and (min-width: 1100px)
{
    .regform-popover__desktop-auto-width
    {
        width: auto;
    }
}
.regform-popover_title
{
    margin: 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.regform-popover_content
{
    margin: 10px 0;
    font-size: 12px;
}
.regform-popover_title a, .regform-popover_content a
{
    color: #feab34;
    transition: color .2s ease;
}
.regform-popover_title a:hover, .regform-popover_content a:hover
{
    color: #fd9;
    text-decoration: underline;
}
.regform-popover_close
{
    z-index: 1;
    width: 25px;
    height: 25px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUw5IDlNOSAxTDEgOSIgc3Ryb2tlPSIjRkNGQ0ZDIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==) no-repeat center/10px;
    opacity: .5;
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity .2s ease;
    cursor: pointer;
}
.regform-popover_close:hover
{
    opacity: 1;
}
@-webkit-keyframes leftAnchor
{
    from
    {
        opacity: 0;
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes leftAnchor
{
    from
    {
        opacity: 0;
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes rightAnchor
{
    from
    {
        opacity: 0;
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes rightAnchor
{
    from
    {
        opacity: 0;
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes bottomAppear
{
    from
    {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes bottomAppear
{
    from
    {
        opacity: 0;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes mobileAppear
{
    from
    {
        opacity: 0;
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes mobileAppear
{
    from
    {
        opacity: 0;
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
    to
    {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.registration
{
    font-size: 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 100%;
    max-width: 620px;
    margin: 20px auto 0;
    padding-bottom: 40px;
    color: #8c8c7e;
    font-size: 14px;
    text-align: center;
    position: relative;
}
@media all and (min-width: 1100px)
{
    .registration
    {
        font-size: 13px;
    }
}
@media all and (min-width: 1100px) and (min-height: 850px)
{
    .registration
    {
        font-size: 14px;
    }
}
.registration_title
{
    margin-bottom: 24px;
    color: #f7f7f7;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}
@media all and (min-width: 720px)
{
    .registration_title
    {
        margin-bottom: 30px;
        font-size: 48px;
    }
}
@media all and (min-width: 1100px)
{
    .registration_title
    {
        margin-bottom: 20px;
        font-size: 32px;
    }
}
@media all and (min-width: 1600px)
{
    .registration_title
    {
        margin-bottom: 30px;
        font-size: 48px;
    }
}
.registration_subtitle
{
    margin-bottom: 30px;
    color: #f7f7f7;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}
@media all and (min-width: 720px)
{
    .registration_subtitle
    {
        margin-bottom: 25px;
    }
}
.registration_link
{
    color: #f25322;
    transition: color .15s;
}
.registration_link:hover
{
    color: #ff7e00;
}
.registration_form
{
    width: 100%;
    text-align: left;
}
.registration_social-link
{
    display: inline-block;
    margin-bottom: 26px;
    font-size: 0;
}
.registration_social-link-description
{
    margin-bottom: 30px;
    color: #9f9fa0;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .01em;
}
.social-links
{
    width: 100%;
    margin-bottom: 18px;
    color: #f7f7f7;
}
.social-links b, .social-links strong
{
    font-weight: bold;
}
.social-links a:not(.cta)
{
    transition: color .15s ease-in-out;
    color: #fd5102;
}
.social-links a:not(.cta):hover
{
    color: #b13c06;
}
.social-links a:not(.cta):active
{
    color: #853009;
}
@media all and (min-width: 720px)
{
    .social-links
    {
        margin-bottom: 24px;
    }
}
.social-links_title
{
    margin-bottom: 8px;
    color: #c5c5c5;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}
@media all and (min-width: 720px)
{
    .social-links_title
    {
        margin-bottom: 12px;
        font-size: 18px;
    }
}
.social-links__light-mode .social-links_title
{
    color: #171717;
}
.social-links_buttons
{
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
}
.social-links_button
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1;
    flex: 1;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 2px;
    background-color: #2d2d2d;
    line-height: 0;
    position: relative;
    transition: background-color .5s ease-in-out,border-color .5s ease-in-out;
}
.social-links__light-mode .social-links_button
{
    border-color: #ccc;
    background-color: transparent;
}
.social-links_button:hover
{
    background-color: #fff;
}
.social-links_button svg path
{
    transition: fill .5s ease-in-out;
}
.social-links_button__facebook:hover
{
    background-color: #006df3;
}
.social-links__light-mode .social-links_button__facebook:hover
{
    border-color: #006df3;
}
.social-links_button__facebook:hover .circle
{
    fill: #fff;
}
.social-links_button__facebook:hover .f
{
    fill: #006df3;
}
.social-links_button__twitch:hover
{
    background-color: #a465ff;
}
.social-links__light-mode .social-links_button__twitch:hover
{
    border-color: #a465ff;
}
.social-links_button__twitch:hover .glitch
{
    fill: #000;
}
.social-links__light-mode .social-links_button__google:hover
{
    border-color: #4285f4;
}
.social-links__light-mode .social-links_button__amazon .a
{
    fill: #000;
}
.social-links__light-mode .social-links_button__amazon:hover
{
    border-color: #000;
}
.social-links_button__amazon:hover .a
{
    fill: #000;
}
.social-links_button__idme
{
    background-size: 58px;
}
.social-links__light-mode .social-links_button__idme .id, .social-links__light-mode .social-links_button__idme .me
{
    fill: #2e3f51;
}
.social-links_button__idme:hover, .social-links_button__idme.social-links_button__tooltip-active
{
    background-color: #3a8045;
}
.social-links__light-mode .social-links_button__idme:hover, .social-links__light-mode .social-links_button__idme.social-links_button__tooltip-active
{
    border-color: #3a8045;
}
.social-links_button__idme:hover .id, .social-links_button__idme:hover .me, .social-links_button__idme.social-links_button__tooltip-active .id, .social-links_button__idme.social-links_button__tooltip-active .me
{
    fill: #fff;
}
.social-links_link
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.social-links_tooltip
{
    z-index: 500;
    display: block;
    width: 228px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid #6a6b6d;
    border-radius: 3px;
    background-color: #333335;
    font-size: 12px;
    line-height: 1.1;
    text-align: left;
    text-decoration: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    transition: opacity .5s ease-in-out;
    cursor: auto;
    pointer-events: none;
}
.social-links_tooltip::before
{
    width: 100%;
    height: 15px;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
}
.social-links_tooltip::after
{
    width: 14px;
    height: 14px;
    border-left: 1px solid #6a6b6d;
    border-top: 1px solid #6a6b6d;
    background-color: #333335;
    content: "";
    position: absolute;
    top: -8px;
    right: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.social-links_tooltip__active, .social-links_button:hover .social-links_tooltip
{
    opacity: 1;
    pointer-events: all;
}
.social-links_tooltip-title
{
    margin-bottom: 8px;
    color: #fefefe;
    font-weight: 700;
}
.social-links_tooltip-text
{
    color: #aaaaab;
}
.social-links_tooltip-cta
{
    margin-top: 8px;
}
.registration-restrictions-popup
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    visibility: hidden;
    z-index: 500;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.registration-restrictions-popup b, .registration-restrictions-popup strong
{
    font-weight: bold;
}
.registration-restrictions-popup a:not(.cta)
{
    transition: color .15s ease-in-out;
    color: #fd5102;
}
.registration-restrictions-popup a:not(.cta):hover
{
    color: #b13c06;
}
.registration-restrictions-popup a:not(.cta):active
{
    color: #853009;
}
.registration-restrictions-popup__ready
{
    visibility: visible;
}
.registration-restrictions-popup_inner
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(175,175,175,.15);
    background-color: #111212;
    color: #b8b8b8;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}
@media all and (min-width: 720px)
{
    .registration-restrictions-popup_inner
    {
        padding: 24px;
        font-size: 20px;
    }
}
@media all and (min-width: 1100px)
{
    .registration-restrictions-popup_inner
    {
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media all and (min-width: 1600px)
{
    .registration-restrictions-popup_inner
    {
        padding: 40px;
    }
}
.registration-restrictions-popup__light-mode .registration-restrictions-popup_inner
{
    background-color: #fff;
    color: #626262;
}
.registration-restrictions-popup_img
{
    margin-bottom: 18px;
    max-width: 100%;
}
@media all and (min-width: 720px)
{
    .registration-restrictions-popup_img
    {
        margin-bottom: 24px;
    }
}
@media all and (min-width: 1600px)
{
    .registration-restrictions-popup_img
    {
        margin-bottom: 30px;
    }
}
@media all and (min-width: 1600px)
{
    .registration-restrictions-popup_img
    {
        margin-bottom: 58px;
    }
}
.registration-restrictions-popup_title
{
    margin-bottom: 18px;
    color: #fcfcfc;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.16;
}
@media all and (min-width: 720px)
{
    .registration-restrictions-popup_title
    {
        margin-bottom: 24px;
    }
}
@media all and (min-width: 1600px)
{
    .registration-restrictions-popup_title
    {
        margin-bottom: 30px;
    }
}
@media all and (min-width: 720px)
{
    .registration-restrictions-popup_title
    {
        font-size: 32px;
    }
}
@media all and (min-width: 1600px)
{
    .registration-restrictions-popup_title
    {
        font-size: 36px;
    }
}
.registration-restrictions-popup__light-mode .registration-restrictions-popup_title
{
    color: #070707;
}
.registration-restrictions-popup_description
{
    margin-bottom: 18px;
}
@media all and (min-width: 720px)
{
    .registration-restrictions-popup_description
    {
        margin-bottom: 24px;
    }
}
@media all and (min-width: 1600px)
{
    .registration-restrictions-popup_description
    {
        margin-bottom: 30px;
    }
}
.registration-restrictions-popup_button-block
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}
.registration-overlay
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 25px;
    background: no-repeat center/cover;
    z-index: 1000;
    background-color: rgba(0,0,0,.9);
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
}
@media all and (min-width: 720px)
{
    .registration-overlay
    {
        padding-top: 50px;
    }
}
@media all and (min-width: 1600px)
{
    .registration-overlay
    {
        padding-top: 86px;
    }
}
.registration-overlay_close
{
    width: 56px;
    height: 56px;
    background: none;
    opacity: .8;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
}
@media all and (min-width: 1100px)
{
    .registration-overlay_close
    {
        top: 40px;
        right: 40px;
    }
}
.registration-overlay_close::before, .registration-overlay_close::after
{
    width: 2px;
    height: 40px;
    margin-left: -1px;
    margin-top: -20px;
    background-color: #fff;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
}
.registration-overlay_close::before
{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.registration-overlay_close::after
{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.registration-overlay_close:hover
{
    opacity: 1;
}
.landscape-screen
{
    display: none;
}
@media(max-width: calc(1100px - 1px)) and (max-height: 599px) and (orientation: landscape)
{
    .landscape-screen
    {
        z-index: 1000;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex: 1;
        flex: 1;
        background-color: #000;
        overflow: hidden;
    }
}
.landscape-screen_icon
{
    width: 48px;
    height: 46px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0OCA0NiI+PHBhdGggZmlsbD0iI0Y5RjVFMSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMjMuNDkyOC4wMDMxNDc5NUMzNy4wMjc2LjAwMzE0Nzk1IDQ4IDEwLjg0NiA0OCAyNC4yMjQ1YzAgMy4zMjU4LS42Nzg0IDYuNDk0MS0xLjkwNjIgOS4zNzc2bC0xLjI2MTMtMS4yNDgyYy45ODU4LTIuNTIzIDEuNTI1Ni01LjI2MzIgMS41MjU2LTguMTMwOSAwLTEyLjQ4MTQtMTAuMjM2Ny0yMi41OTg2OS0yMi44NjUzLTIyLjU5ODY5LTMuNTk3NSAwLTYuOTk5MS44MjE1OS0xMC4wMjY1IDIuMjg1MzZsMS43NzI1LjQ2OTAzLS40MTg5IDEuNTQ1NjEtNC4zOTA1LTEuMTYzMTRMMTEuNjA2Mi40MjE4MTZsMS41NjM5LjQxMzk0Ny0uNDM5NSAxLjYxOTU4N0MxNS45NzkzLjg4Mjk4MSAxOS42MzA5IDAgMjMuNDkyOCAwdi4wMDMxNDc5NXpNMi4wMDE3OSA3LjUyOTczSDE4LjYyNDVjMS4xMDIgMCAyLjAwMTguODkwODUgMi4wMDE4IDEuOTc4NDVWNDQuMDIxNmMwIDEuMDg3NS0uOTAxNCAxLjk3ODQtMi4wMDE4IDEuOTc4NEgyLjAwMTc5Qy45MDEzNjQgNDYgMCA0NS4xMDkxIDAgNDQuMDIxNlY5LjUwODE4YzAtMS4wODkxNy45MDEzNjQtMS45Nzg0NSAyLjAwMTc5LTEuOTc4NDV6TTQyLjQ1OTYgMjcuNTkyOHYxNi40Mjg4YzAgMS4wODkxLS45MDEzIDEuOTc4NC0yLjAwMTggMS45Nzg0SDIxLjMzMDF2LTEuMjY1NGgxOS4xMjc3Yy4zOTY2IDAgLjcyMTUtLjMyMTEuNzIxNS0uNzE0NlYyNy41OTEyYzAtLjM5MzUtLjMyNDktLjcxMy0uNzIxNS0uNzEzSDIxLjQyNDF2LTEuMjY1NWgxOS4wMzM3YzEuMTAyMSAwIDIuMDAxOC44ODkzIDIuMDAxOCAxLjk3ODV2LjAwMTZ6TTEwLjMxMzEgNDAuNzcxNGMxLjE2ODkgMCAxLjc1MzQgMS4zNzQuOTc5NCAyLjIwNTEtLjU1MjYuNTkzMy0xLjUyNDAxLjU1NTYtMi4wMjg4NC0uMDgwMy0uNjcyMDQtLjg0ODQtLjA3MDA3LTIuMTI0OCAxLjA0Nzg0LTIuMTI0OGguMDAxNnpNMi4wMDE3OSA4Ljc5MzYxSDE4LjYyNDVjLjM5ODEgMCAuNzIzLjMyMTA4LjcyMy43MTI5OVY0NC4wMmMwIC4zOTE5LS4zMjQ5LjcxNDYtLjcyMy43MTQ2SDIuMDAxNzljLS4zOTY1MyAwLS43MjE0MS0uMzIxMS0uNzIxNDEtLjcxNDZWOS41MDY2YzAtLjM5MTkxLjMyNDg4LS43MTI5OS43MjE0MS0uNzEyOTl6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=) no-repeat center/contain;
}
.landscape-screen_text
{
    margin-top: 16px;
    color: #f9f5e1;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.logo
{
    display: inline-block;
    max-width: 290px;
    max-height: 150px;
}
.logo_img
{
    max-width: 100%;
    max-height: 100%;
}
.result-page-block
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    color: #fff;
}
.result-page-block b, .result-page-block strong
{
    font-weight: bold;
}
.result-page-block a:not(.cta)
{
    transition: color .15s ease-in-out;
    color: #fd5102;
}
.result-page-block a:not(.cta):hover
{
    color: #b13c06;
}
.result-page-block a:not(.cta):active
{
    color: #853009;
}
.result-page-block__light-mode
{
    color: #121210;
}
.result-page-block_main
{
    max-width: 444px;
}
.result-page-block_image
{
    min-width: 200px;
    height: 100px;
    margin: 0 auto 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.result-page-block_image__ok.result-page-block_image__default-image
{
    background-image: url(../../willbettingde/image/ok.6d54b596.png);
}
.result-page-block_image__error.result-page-block_image__default-image
{
    background-image: url(../../willbettingde/image/error.dc765ca9.png);
}
.result-page-block_title
{
    margin-bottom: 22px;
    font-size: 46px;
    font-weight: 700;
}
.result-page-block_text
{
    margin-bottom: 30px;
    color: #cbcbcb;
    font-size: 16px;
    line-height: 1.2;
}
@media all and (min-width: 720px)
{
    .result-page-block_text
    {
        line-height: 1.3;
    }
}
.result-page-block__light-mode .result-page-block_text
{
    color: #1c1c1e;
}
.result-page-block_button
{
    display: inline-block;
    min-width: 240px;
    margin: 0 auto;
}
@media all and (min-width: 720px)
{
    .result-page-block_button
    {
        min-width: 302px;
    }
}
.result-page-block_caption
{
    max-width: 302px;
    margin: 6px auto 20px;
    font-size: 14px;
    line-height: 1.17;
    text-align: center;
    opacity: .5;
}
.result-page-block_platforms
{
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
@media all and (min-width: 1100px)
{
    .result-page-block_platforms
    {
        display: -ms-flexbox;
        display: flex;
    }
}
.result-page-block_platform
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding: 0 10px;
    border: 1px solid transparent;
    background: transparent;
    line-height: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: border-color 300ms,background-color 300ms;
    cursor: pointer;
}
.result-page-block_platform:hover
{
    border-color: rgba(241,241,241,.04);
    background-color: rgba(0,0,0,.04);
}
.result-page-block__light-mode .result-page-block_platform:hover
{
    border-color: rgba(0,0,0,.04);
    background-color: rgba(0,0,0,.04);
}
.result-page-block_platform:active
{
    background-color: rgba(0,0,0,.2);
}
.result-page-block__light-mode .result-page-block_platform:active
{
    background-color: rgba(0,0,0,.04);
}
.result-page-block_platforms-title
{
    margin-right: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.14;
    opacity: .6;
    transition: opacity 300ms;
}
.result-page-block__light-mode .result-page-block_platforms-title
{
    color: #000;
}
.result-page-block_platform:hover .result-page-block_platforms-title
{
    opacity: 1;
}
.result-page-block_platform:active .result-page-block_platforms-title
{
    opacity: .8;
}
.result-page-block_platforms-icon
{
    opacity: .4;
    transition: opacity 300ms;
}
.result-page-block__light-mode:not(.result-page-block__invert-disabled) .result-page-block_platforms-icon
{
    -webkit-filter: invert(1);
    filter: invert(1);
}
.result-page-block_platform:hover .result-page-block_platforms-icon
{
    opacity: 1;
}
.result-page-block_platform:active .result-page-block_platforms-icon
{
    opacity: .8;
}
.result-page
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 25px;
    background: no-repeat center/cover;
    z-index: 1000;
    padding-top: 0;
    background-color: rgba(0,0,0,.9);
    overflow: auto;
}
@media all and (min-width: 720px)
{
    .result-page
    {
        padding-top: 50px;
    }
}
@media all and (min-width: 1600px)
{
    .result-page
    {
        padding-top: 86px;
    }
}
.result-page__light-mode
{
    background-color: rgba(255,255,255,.9);
}
.result-page.result-page
{
    padding-top: 0;
}
.result-page_content
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    text-align: center;
}
.result-page_inner
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
}
.result-page_block
{
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 0;
}
.result-page_footer
{
    width: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video
{
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{
    display: block;
}
body
{
    line-height: 1;
}
ol, ul
{
    list-style: none;
}
blockquote, q
{
    quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after
{
    content: "";
}
table
{
    border-spacing: 0;
    border-collapse: collapse;
}
button
{
    padding: 0;
    border: none;
    font-family: inherit;
}
button:focus
{
    outline: none;
}
input
{
    outline: none;
}
a
{
    text-decoration: none;
}
@media all and (min-width: 320px)
{
    .appear-show-enter-active, .appear-show-leave-active
    {
        transition: opacity .9s;
    }
}
.appear-show-enter, .appear-show-leave-to
{
    opacity: 0;
}
.appear-show-enter-to, .appear-show-leave
{
    opacity: 1;
}
@media all and (min-width: 320px)
{
    [class*="-enter-active"].appear-delay-1
    {
        transition-delay: .3s;
    }
    [class*="-enter-active"].appear-delay-2
    {
        transition-delay: .6s;
    }
    [class*="-enter-active"].appear-delay-3
    {
        transition-delay: .9s;
    }
    [class*="-enter-active"].appear-delay-4
    {
        transition-delay: 1.2s;
    }
    [class*="-enter-active"].appear-delay-5
    {
        transition-delay: 1.5s;
    }
    [class*="-enter-active"].appear-delay-6
    {
        transition-delay: 1.8s;
    }
    [class*="-enter-active"].appear-delay-7
    {
        transition-delay: 2.1s;
    }
    [class*="-enter-active"].appear-delay-8
    {
        transition-delay: 2.4s;
    }
    [class*="-enter-active"].appear-delay-9
    {
        transition-delay: 2.7s;
    }
    [class*="-enter-active"].appear-delay-10
    {
        transition-delay: 3s;
    }
    [class*="-enter-active"].appear-delay-11
    {
        transition-delay: 3.3s;
    }
    [class*="-enter-active"].appear-delay-12
    {
        transition-delay: 3.6s;
    }
    [class*="-enter-active"].appear-delay-13
    {
        transition-delay: 3.9s;
    }
    [class*="-enter-active"].appear-delay-14
    {
        transition-delay: 4.2s;
    }
    [class*="-enter-active"].appear-delay-15
    {
        transition-delay: 4.5s;
    }
    [class*="-enter-active"].appear-delay-16
    {
        transition-delay: 4.8s;
    }
    [class*="-enter-active"].appear-delay-17
    {
        transition-delay: 5.1s;
    }
    [class*="-enter-active"].appear-delay-18
    {
        transition-delay: 5.4s;
    }
    [class*="-enter-active"].appear-delay-19
    {
        transition-delay: 5.7s;
    }
    [class*="-enter-active"].appear-delay-20
    {
        transition-delay: 6s;
    }
}
html
{
    box-sizing: border-box;
}
body
{
    font-family: "Roboto Condensed","Arial Narrow","Arial",sans-serif;
}
button
{
    background: none;
    cursor: pointer;
}
img
{
    max-width: 100%;
}
*, *::before, *::after
{
    box-sizing: inherit;
}
.logo
{
    max-width: 124px;
    max-height: 50px;
}
@media all and (min-width: 720px)
{
    .logo
    {
        max-width: 15vh;
        max-height: 72px;
    }
}
@media all and (min-width: 1600px)
{
    .logo
    {
        max-width: 176px;
        max-height: 72px;
    }
}
.main
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
}
@media all and (min-width: 720px)
{
    .main
    {
        -ms-flex-positive: 1;
        flex-grow: 1;
        height: 100vh;
    }
}
.main_header
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 20px 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
@media all and (min-width: 720px)
{
    .main_header
    {
        padding: 70px 50px 0;
    }
}
@media all and (min-width: 1100px)
{
    .main_header
    {
        padding-left: 70px;
        padding-right: 70px;
    }
}
@media all and (min-width: 1600px)
{
    .main_header
    {
        padding-top: 100px;
    }
}
.main_header-platforms
{
    z-index: 1;
}
.main_header-lang-selector
{
    z-index: 1000;
}
.main_content
{
    min-height: 100vh;
    background: no-repeat center/cover;
}
@media all and (min-width: 720px)
{
    .main_content
    {
        height: 100%;
        transition: padding-bottom .5s;
        will-change: padding-bottom;
    }
}
.main_registration
{
    padding: 40px 20px;
    background: no-repeat center/cover;
    line-height: 1.25;
}
.main_footer
{
    z-index: 1;
    position: relative;
}
@media all and (min-width: 720px)
{
    .main_footer
    {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s,-webkit-transform .5s;
    }
}
@media all and (min-width: 720px)
{
    .main__with-footer .main_footer
    {
        -webkit-transform: none;
        transform: none;
    }
}
.offer
{
    width: 100%;
    max-width: 80%;
}
@media all and (min-width: 720px)
{
    .offer
    {
        max-width: 750px;
    }
}
@media all and (min-width: 1024px)
{
    .offer
    {
        max-width: 400px;
    }
}
@media all and (min-width: 1600px)
{
    .offer
    {
        max-width: 1000px;
    }
}
.offer_title
{
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}
@media all and (min-width: 720px)
{
    .offer_title
    {
        font-size: 100px;
    }
}
@media all and (min-width: 1024px)
{
    .offer_title
    {
        font-size: 56px;
    }
}
@media all and (min-width: 1600px)
{
    .offer_title
    {
        font-size: 100px;
    }
}
.offer__custom .offer_title
{
    font-size: 24px;
}
@media all and (min-width: 720px)
{
    .offer__custom .offer_title
    {
        font-size: 64px;
    }
}
@media all and (min-width: 1024px)
{
    .offer__custom .offer_title
    {
        font-size: 40px;
    }
}
@media all and (min-width: 1600px)
{
    .offer__custom .offer_title
    {
        font-size: 64px;
    }
}
.offer_description
{
    margin-top: 15px;
    line-height: 1.5;
    text-align: center;
}
@media all and (min-width: 720px)
{
    .offer_description
    {
        margin-top: 20px;
        font-size: 24px;
    }
}
@media all and (min-width: 1024px)
{
    .offer_description
    {
        font-size: 18px;
    }
}
@media all and (min-width: 1600px)
{
    .offer_description
    {
        font-size: 24px;
    }
}
.unknown-player
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
    position: relative;
}
@media all and (min-width: 720px)
{
    .unknown-player
    {
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
        min-height: auto;
    }
}
@media all and (min-width: 720px) and (max-height: 420px) and (orientation: landscape)
{
    .unknown-player
    {
        min-height: 100vh;
    }
}
.unknown-player_wrapper
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 30px 10px 58px;
}
@media all and (min-width: 720px)
{
    .unknown-player_wrapper
    {
        padding: 8vh 20px 140px;
        -webkit-transform-origin: top;
        transform-origin: top;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s,-webkit-transform .5s;
    }
}
@media all and (min-width: 1600px)
{
    .unknown-player_wrapper
    {
        padding-top: 70px;
    }
}
@media all and (min-width: 720px)
{
    .unknown-player_wrapper__scalable
    {
        -webkit-transform: scale(.8);
        transform: scale(.8);
    }
}
@media all and (min-width: 1100px)
{
    .unknown-player_wrapper__scalable
    {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }
}
@media all and (min-width: 1600px)
{
    .unknown-player_wrapper__scalable
    {
        -webkit-transform: scale(.8);
        transform: scale(.8);
    }
}
.unknown-player_content
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}
.unknown-player_logo
{
    margin-bottom: 5vh;
}
.unknown-player_rewards-wrapper
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 58px;
}
@media all and (min-width: 720px)
{
    .unknown-player_rewards-wrapper
    {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
@media all and (min-width: 1024px)
{
    .unknown-player_rewards-wrapper
    {
        margin-top: 35px;
    }
}
@media all and (min-width: 1100px)
{
    .unknown-player_rewards-wrapper
    {
        max-width: 790px;
    }
}
@media all and (min-width: 1600px)
{
    .unknown-player_rewards-wrapper
    {
        max-width: 1100px;
        margin-top: 124px;
    }
}
@media all and (min-width: 720px)
{
    .unknown-player_separator
    {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 12px 14px 0;
        color: #f9f5e1;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .01em;
    }
}
@media all and (min-width: 1024px)
{
    .unknown-player_separator
    {
        margin: 9px 24px 0;
    }
}
@media all and (min-width: 1600px)
{
    .unknown-player_separator
    {
        margin-top: 21px;
    }
}
@media all and (min-width: 720px)
{
    .unknown-player_separator::before, .unknown-player_separator::after
    {
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 40px;
        height: 2px;
        margin-top: 10px;
        content: "";
    }
}
@media all and (min-width: 1100px)
{
    .unknown-player_separator::before, .unknown-player_separator::after
    {
        width: 80px;
    }
}
.unknown-player_separator::before
{
    margin-right: 30px;
    background-image: linear-gradient(to left,#fe5000,transparent);
}
.unknown-player_separator::after
{
    margin-left: 30px;
    background-image: linear-gradient(to right,#fe5000,transparent);
}
.new-player
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
    position: relative;
}
@media all and (min-width: 720px)
{
    .new-player
    {
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
        min-height: auto;
    }
}
.new-player_wrapper
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 30px 10px 26px;
}
@media all and (min-width: 720px)
{
    .new-player_wrapper
    {
        padding: 5vh 20px 0;
        -webkit-transform-origin: top;
        transform-origin: top;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s,-webkit-transform .5s;
    }
}
@media all and (min-width: 1600px)
{
    .new-player_wrapper
    {
        padding-top: 70px;
    }
}
@media all and (min-width: 720px)
{
    .new-player_wrapper__scalable
    {
        -webkit-transform: scale(.8);
        transform: scale(.8);
    }
}
@media all and (min-width: 1100px)
{
    .new-player_wrapper__scalable
    {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }
}
@media all and (min-width: 1600px)
{
    .new-player_wrapper__scalable
    {
        -webkit-transform: scale(.8);
        transform: scale(.8);
    }
}
.new-player_content
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}
.new-player_logo
{
    margin-bottom: 5vh;
}
.new-player_rewards-wrapper
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}
@media all and (min-width: 720px)
{
    .new-player_rewards-wrapper
    {
        -ms-flex-direction: row;
        flex-direction: row;
        margin-top: 80px;
    }
}
@media all and (min-width: 1024px)
{
    .new-player_rewards-wrapper
    {
        margin-top: 30px;
    }
}
@media all and (min-width: 1100px)
{
    .new-player_rewards-wrapper
    {
        max-width: 790px;
    }
}
@media all and (min-width: 1600px)
{
    .new-player_rewards-wrapper
    {
        max-width: 1100px;
        margin-top: 80px;
    }
}
.old-player
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
    position: relative;
}
@media all and (min-width: 720px)
{
    .old-player
    {
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
        min-height: auto;
    }
}
.old-player_wrapper
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 30px 10px 38px;
}
@media all and (min-width: 720px)
{
    .old-player_wrapper
    {
        padding: 5vh 20px 0;
        -webkit-transform-origin: top;
        transform-origin: top;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s,-webkit-transform .5s;
    }
}
@media all and (min-width: 1600px)
{
    .old-player_wrapper
    {
        padding-top: 70px;
    }
}
@media all and (min-width: 720px)
{
    .old-player_wrapper__scalable
    {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }
}
@media all and (min-width: 1100px)
{
    .old-player_wrapper__scalable
    {
        -webkit-transform: scale(.5);
        transform: scale(.5);
    }
}
@media all and (min-width: 1600px)
{
    .old-player_wrapper__scalable
    {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }
}
.old-player_content
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}
.old-player_logo
{
    margin-bottom: 5vh;
}
.bottom-slide
{
    width: 100%;
    background-image: linear-gradient(to bottom,transparent,#000 17%);
}
@media all and (min-width: 720px)
{
    .bottom-slide
    {
        background: none;
        position: absolute;
        bottom: 0;
        left: 0;
        -webkit-transform: translateY(100%) translateY(-52px);
        transform: translateY(100%) translateY(-52px);
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s,-webkit-transform .3s;
    }
}
@media all and (min-width: 1100px)
{
    .bottom-slide
    {
        -webkit-transform: translateY(100%) translateY(-60px);
        transform: translateY(100%) translateY(-60px);
    }
}
@media all and (min-width: 720px)
{
    .bottom-slide__old-player
    {
        -webkit-transform: translateY(100%) translateY(-70px);
        transform: translateY(100%) translateY(-70px);
    }
}
@media all and (min-width: 1100px)
{
    .bottom-slide__old-player
    {
        -webkit-transform: translateY(100%) translateY(-80px);
        transform: translateY(100%) translateY(-80px);
    }
}
.bottom-slide__active
{
    -webkit-transform: none;
    transform: none;
}
.bottom-cards
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 83px;
}
@media all and (min-width: 720px)
{
    .bottom-cards
    {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-left: 35px;
        padding-right: 35px;
    }
}
@media all and (min-width: 1100px)
{
    .bottom-cards
    {
        width: 75%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}
@media all and (min-width: 1600px)
{
    .bottom-cards
    {
        width: 63%;
        padding-bottom: 150px;
    }
}
.bottom-cards_card
{
    z-index: 1;
    width: 73%;
    min-width: 230px;
    max-width: 400px;
    height: 176px;
    padding: 23px 15px;
    background: no-repeat center/cover;
    position: relative;
}
@media all and (min-width: 1100px)
{
    .bottom-cards_card
    {
        width: 333px;
        height: 200px;
        padding: 30px 15px;
    }
}
.bottom-cards_card:not(:last-child)
{
    margin-bottom: 10px;
}
.bottom-cards_card::before
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    content: "";
    transition: background-color .5s;
    pointer-events: none;
}
.bottom-cards_card:hover::before
{
    background-color: transparent;
}
.bottom-cards_content
{
    position: relative;
}
.bottom-cards_title
{
    color: #c5c2b4;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
}
@media all and (min-width: 1600px)
{
    .bottom-cards_title
    {
        font-size: 20px;
    }
}
.bottom-cards_list
{
    padding-top: 14px;
}
.bottom-cards_link-wrapper
{
    text-align: center;
}
.bottom-cards_link-wrapper:not(:last-child)
{
    margin-bottom: 11px;
}
.bottom-cards_link
{
    border-bottom: 1px solid transparent;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    text-decoration: none;
    letter-spacing: .04em;
    transition: border-bottom-color .5s,color .5s;
}
@media all and (min-width: 1600px)
{
    .bottom-cards_link
    {
        font-size: 18px;
    }
}
.bottom-cards_link:hover
{
    border-bottom-color: #fff;
    color: #fff;
}
.cta-rewards
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.cta-rewards:last-child
{
    margin-top: 50px;
}
@media all and (min-width: 720px)
{
    .cta-rewards:last-child
    {
        margin-top: 0;
    }
}
.cta-rewards__top-rewards
{
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
.cta-rewards__top-rewards:last-child
{
    margin-top: 28px;
}
@media all and (min-width: 720px)
{
    .cta-rewards__top-rewards:last-child
    {
        margin-top: 0;
    }
}
.cta-rewards_description
{
    max-width: 180px;
    margin: 10px auto 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}
@media all and (min-width: 720px)
{
    .cta-rewards_description
    {
        width: 100%;
        max-width: 100%;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateY(100%) translateY(10px) translateX(-50%);
        transform: translateY(100%) translateY(10px) translateX(-50%);
        pointer-events: none;
    }
}
.cta-rewards_list
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 19px;
}
@media all and (min-width: 720px)
{
    .cta-rewards_list
    {
        width: 365px;
        margin-top: 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(100%) translateY(55px);
        transform: translateX(-50%) translateY(100%) translateY(55px);
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s,-webkit-transform .5s;
        pointer-events: none;
    }
}
@media all and (min-width: 1600px)
{
    .cta-rewards_list
    {
        width: 500px;
    }
}
.cta-rewards__top-rewards .cta-rewards_list
{
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    position: static;
    -webkit-transform: none;
    transform: none;
}
@media all and (min-width: 1600px)
{
    .cta-rewards__top-rewards .cta-rewards_list
    {
        margin-bottom: 40px;
    }
}
.cta-rewards_item
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
}
@media all and (min-width: 720px)
{
    .cta-rewards_item
    {
        width: 100px;
    }
}
@media all and (min-width: 1100px)
{
    .cta-rewards_item
    {
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s,visibility .5s;
    }
}
@media all and (min-width: 1600px)
{
    .cta-rewards_item
    {
        width: 130px;
    }
}
@media all and (min-width: 1100px)
{
    .cta-rewards:hover .cta-rewards_item
    {
        opacity: 1;
        visibility: visible;
    }
}
@media all and (min-width: 1100px)
{
    .cta-rewards:hover .cta-rewards_item:nth-child(2)
    {
        transition-delay: .5s;
    }
}
@media all and (min-width: 1100px)
{
    .cta-rewards:hover .cta-rewards_item:nth-child(3)
    {
        transition-delay: 1s;
    }
}
.cta-rewards__top-rewards .cta-rewards_item
{
    width: 100px;
}
@media all and (min-width: 1100px)
{
    .cta-rewards__top-rewards .cta-rewards_item
    {
        opacity: 1;
        visibility: visible;
    }
}
@media all and (min-width: 1600px)
{
    .cta-rewards__top-rewards .cta-rewards_item
    {
        width: 160px;
    }
}
.cta-rewards_item:not(:last-child)
{
    margin-right: 20px;
}
@media all and (min-width: 1600px)
{
    .cta-rewards_item:not(:last-child)
    {
        margin-right: 30px;
    }
}
@media all and (min-width: 1600px)
{
    .cta-rewards__top-rewards .cta-rewards_item:not(:last-child)
    {
        margin-right: 70px;
    }
}
.cta-rewards_item-image
{
    width: 62px;
    height: 62px;
    background: no-repeat center top/contain;
}
@media all and (min-width: 1600px)
{
    .cta-rewards_item-image
    {
        width: 92px;
        height: 92px;
    }
}
.cta-rewards__top-rewards .cta-rewards_item-image
{
    width: 100px;
    height: 100px;
}
@media all and (min-width: 1600px)
{
    .cta-rewards__top-rewards .cta-rewards_item-image
    {
        width: 160px;
        height: 160px;
    }
}
.cta-rewards_item-description
{
    max-width: 100%;
    margin-top: 13px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.cta-rewards__top-rewards .cta-rewards_item-description
{
    font-size: 14px;
}
.cta-rewards_description-text
{
    vertical-align: middle;
}
.cta-rewards_icon
{
    margin-right: 4px;
    vertical-align: middle;
}
.old-player-card
{
    width: 73%;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 0 15px;
    background: no-repeat center/cover;
    text-align: center;
}
@media all and (min-width: 720px)
{
    .old-player-card
    {
        width: 90%;
    }
}
@media all and (min-width: 1100px)
{
    .old-player-card
    {
        width: 65%;
        margin-bottom: 20px;
    }
}
@media all and (min-width: 1600px)
{
    .old-player-card
    {
        width: 47%;
    }
}
.old-player-card_header
{
    padding: 22px 0;
    color: #c5c2b4;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
@media all and (min-width: 1600px)
{
    .old-player-card_header
    {
        font-size: 40px;
    }
}
.old-player-card_icon
{
    display: inline-block;
    max-width: 37px;
    max-height: 21px;
    margin: 0 10px 3px 0;
    vertical-align: middle;
}
@media all and (min-width: 720px)
{
    .old-player-card_content
    {
        max-width: 490px;
        margin: 0 auto;
    }
}
@media all and (min-width: 1600px)
{
    .old-player-card_content
    {
        max-width: 600px;
    }
}
.old-player-card_paragraph
{
    color: #eaeaea;
    font-size: 14px;
    line-height: 1.24;
    text-align: left;
    letter-spacing: .02em;
}
@media all and (min-width: 1600px)
{
    .old-player-card_paragraph
    {
        font-size: 18px;
    }
}
.old-player-card_paragraph:not(:last-child)
{
    margin-bottom: 13px;
}
.old-player-card_first-word
{
    color: #d74c0d;
    font-weight: 700;
}
.old-player-card_button-link
{
    margin: 38px 0;
    text-transform: uppercase;
}
@media all and (min-width: 1600px)
{
    .old-player-card_button-link
    {
        margin: 45px 0;
    }
}