*, :before, :after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --font-family: "Roboto Condensed", sans-serif;
    --second-family: "Fira Sans Extra Condensed", sans-serif;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    color: #000;
    font-size: 0.833vw;
    line-height: 1.5 !important;
    width: 100%;
    overflow-x: hidden;
    margin: 0 !important;
    -webkit-font-smoothing: antialiased;
    cursor: default;
    background: #161824;
}

html {
    margin: 0 !important;
}

.no_overflow {
    overflow: hidden;
}

.mfp-wrap {
    touch-action: none;
    -ms-touch-action: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mfp-content {
    touch-action: none;
    -ms-touch-action: none;
}

main {
    overflow: hidden;
}

section {
    position: relative;
}

.wow {
    opacity: 0;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

p {
    margin: 0;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:hover, a:focus, a:active {
    color: inherit;
    outline: none;
}

img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

button {
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none
}

.chat {
    position: fixed;
    right: 2%;
    bottom: 13%;
    cursor: pointer;
    z-index: 100;
    max-width: 3.54vw;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.chat img {
    width: 100%;
    height: 100%;
}

.chat:hover {
    transition: all .3s ease-in-out;
    transform: scale(1.2);
}

.scroll_up {
    position: fixed;
    right: 2%;
    bottom: 2%;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    max-width: 3.333vw;
    width: 100%;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.scroll_up:hover {
    transition: all .3s ease-in-out;
    transform: scale(1.2);
}

.show {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
}

.michroma_font {
    font-family: "Michroma", sans-serif;
}

.montserrat_font {
    font-family: "Montserrat", sans-serif;
}

.container {
    max-width: 70.83vw;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.mobile{
    display: none;
}

.action_btn {
    width: 21.35vw;
    height: 7.5vw;
    font-weight: 900;
    font-size: 3.02vw;
    border-radius: 1.04vw;
    font-style: italic;
    letter-spacing: -0.06em;
    color: #fff;
    background: linear-gradient(135deg, #00ff5a 0%, #00fb59 59.66%, #00c746 100%);
    cursor: pointer;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
    /* text-transform: uppercase; */
    border: none !important;
    margin: 0 1.56vw;
}

.action_btn p {
    -webkit-text-stroke: 8px #00501C;
    paint-order: stroke fill;
    text-shadow: -2px -2px 0 #00501C, 2px -2px 0 #00501C, -2px 2px 0 #00501C, 2px 2px 0 #00501C;
    line-height: 1;
    letter-spacing: -0.03em;
}

.action_btn:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.action_btn:focus {
    outline: none;
}

.full_time__anim {
    -webkit-animation: pulsate 2s ease-out infinite;
    animation: pulsate 2s ease-out infinite;
}

.full_time__anim1 {
    -webkit-animation: pulsate 1s ease-out infinite;
    animation: pulsate 1s ease-out infinite;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.full_time__anim2 {
    -webkit-animation: move 1s ease-out .5s infinite;
    animation: move 1s ease-out .5s infinite;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25px);
    }

    to {
        transform: translateX(0);
    }
}

.full_time__anim3 {
    -webkit-animation: move2 2s ease-out .5s infinite;
    animation: move2 2s ease-out .5s infinite;
}

@keyframes move2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }

    to {
        transform: translateY(0);
    }
}

.action_btn__on_hover {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.circle_btn.action_btn__on_hover {
    -webkit-animation-name: anim_hover__start;
    animation-name: anim_hover__start;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

.circle_btn.action_btn__no_hover {
    -webkit-animation-name: anim_hover__end;
    animation-name: anim_hover__end;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

@-webkit-keyframes anim_hover__start {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes anim_hover__start {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@-webkit-keyframes anim_hover__end {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes anim_hover__end {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

::-webkit-scrollbar {
    width: 0.52vw;
    height: 0.42vw;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #00B137;
    max-width: 7.97vw;
}

.bg_image {
    position: absolute;
    top: calc(50% - 28vw);
    /*top: 0;*/
    left: 0;
    width: 100vw;
    /*height: 56.25vw;*/
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
}

.bg_image:after {
    position: absolute;
    content: '';
    background-image: url("../img/desktop_ellipse.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -33vw;
    left: auto;
    right: auto;
    width: 156.56vw;
    height: 63.13vw;
}

.bg_image .image_block {
    width: 100%;
    height: 46.09vw;
}

/* Pages */

.first_screen {
    height: 100vh;
    min-height: 47vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #161824;
}

.first_screen .wrapper {
    /*display: flex;*/
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
}

.first_screen .wrapper.wrapper_active {
    display: flex;
}

.image_block {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image_block img {
    width: 100%;
    height: 100%;
}

.logo {
    position: absolute;
    left: 2vw;
    top: 1vw;
    width: 11.41vw;
}

.betroller_logo {
    position: absolute;
    top: 1vw;
    left: auto;
    right: auto;
    width: 37.34vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.betroller_logo p {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 900;
    font-size: 1.56vw;
    line-height: 89%;
    text-transform: uppercase;
    text-align: center;
    background-image: linear-gradient(45deg, #00FF5A 0%, #00FB59 60%, #00C746 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: -0.78vw 0 0;
    padding: 0 0.26vw;
}

.wrapper_tr .betroller_logo p {
    font-size: 1.3vw;
}

.title {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 900;
    font-size: 5.57vw;
    line-height: 89%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    position: absolute;
    /*top: calc(50% - 16vw);*/
    top: 10vw;
    padding: 0 0.36vw;
}

.wrapper_tr .title {
    font-size: 4.25vw;
}

.title span {
    background-image: linear-gradient(45deg, #00FF5A 0%, #00FB59 60%, #00C746 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.36vw;
}

.btn_block {
    position: absolute;
    top: calc(50% + 16vw);
    bottom: auto;
    display: flex;
    align-items: center;
}

.hand {
    width: 21.35vw;
    margin: 0 0.52vw 0 0;
    justify-content: flex-end;
    position: absolute;
    left: calc(50% - 35vw);
}

.hand img {
    width: 7.5vw;
}

.fields_block {
    max-width: 80.73vw;
    width: 100%;
    position: absolute;
    display: flex;
    right: calc(50% - 46.88vw);
    height: 22.4vw;
    /*top: 16.9vw;*/
    top: calc(50% - 7.7vw);
}

.field {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    /*padding: 0 0 0.63vw;*/
}

.active_field:after {
    position: absolute;
    content: '';
    width: 97.5%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.29;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0) 0%, #ffdd02 100%);
}

.chicken {
    width: 11.15vw;
    position: absolute;
    bottom: 0;
    left: calc(50% - 38vw);
    transform: translateX(-16.15vw) translateY(0px) scaleX(1);
    z-index: 10;
    transition: transform 0.6s ease;
    will-change: transform;
}

.chicken_play.breath {
    animation: chickenBreath 2s ease-in-out infinite;
}

@keyframes chickenBreath {
    0%, 100% { transform: scaleY(1) translateY(0); }
    50% { transform: scaleY(0.95) translateY(0.31vw); }
}

.egg_rise {
    animation: eggRise 1s ease forwards;
}

@keyframes eggRise {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-13vw);
    }
}

.field_1 .image_block, .field_2 .image_block, .field_3 .image_block, .field_4 .image_block {
    width: 100%;
    height: 100%;
    z-index: 10;
    align-items: flex-start;
    position: relative;
}

.field_1 .image_block img, .field_2 .image_block img, .field_3 .image_block img, .field_4 .image_block img {
    width: 7.81vw;
    height: auto;
}

/*.prize {*/
/*    display: none;*/
/*}*/

.field_5 {
    align-items: flex-end;
    padding: 0 0 0.63vw;
}

.field_5 .image_block {
    width: 11.35vw;
}

.fire {
    position: relative;
    width: 100% !important;
    /* height: 100%; */
    height: 100% !important;
    min-height: 170%;
    margin: -15.02vw 0 0;
}

.fire:after {
    position: absolute;
    content: '';
    mix-blend-mode: screen;
    width: 100%;
    height: 100%;
}

.cash_out {
    background: #ffc019;
    width: 21.35vw;
    height: 7.5vw;
    font-weight: 900;
    font-size: 3.02vw;
    border-radius: 1.04vw;
    font-style: italic;
    letter-spacing: -0.06em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-family);
    margin: 0 1.56vw;
    cursor: pointer;
}

.cash_out p {
    -webkit-text-stroke: 8px #553E00;
    paint-order: stroke fill;
    text-shadow: -2px -2px 0 #553E00, 2px -2px 0 #553E00, -2px 2px 0 #553E00, 2px 2px 0 #553E00;
    line-height: 1;
    letter-spacing: -0.03em;
}

.rotate-prize {
    animation: rotatePrize 0.6s ease forwards;
}

@keyframes rotatePrize {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.popup_reg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8vw 0 0;
    transition: all .3s linear;
}

.hide_popup {
    visibility: hidden;
    opacity: 0;
    z-index: -100;
    transition: all .3s linear;
}

.title3, .title4 {
    position: relative;
    top: 0;
    font-size: 4.25vw;
    background-image: linear-gradient(45deg, #00FF5A 0%, #00FB59 60%, #00C746 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 0.36vw;
}

.wrapper_tr .title2 span, .wrapper_tr .title3, .wrapper_tr .title4 {
    padding: 0.78vw;
}

form {
    padding: 1.302vw;
    background-color: #272935;
    width: 100%;
    max-width: 20.83vw;
    margin: 0 0 1.04vw;
}

.wrapper_tr form {
    margin: 0 0 0.78vw;
}

form .select_field, form .input_field {
    margin: 0 0 1.042vw;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

form .select_field .country-name {
    font-size: 0.833vw;
}

form .select_field .country-select {
    width: 100%;
}

input {
    height: 2.083vw;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 0.781vw;
    font-family: var(--font-family), sans-serif;
    font-size: 0.833vw;
}

input[type=submit] {
    background: #36e800;
    text-transform: uppercase;
    font-size: 1.094vw;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

input[type=submit]:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.custom-select {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    height: 2.083vw;
    background: #f5f5f7;
    padding: 0.26vw 0.781vw;
    font-size: 0.833vw;
}

.custom-select-trigger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    /* background: #f5f5f7; */
    cursor: pointer;
    height: 100%;
    /* padding: 0.26vw 0.781vw; */
}

.custom-select:after {
    position: absolute;
    content: '';
    background-image: url(../img/dropdown.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 0.729vw;
    height: 0.417vw;
    top: auto;
    bottom: auto;
    right: 0.781vw;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    cursor: pointer;
    z-index: 1;
}

.custom-select.open .custom-select-trigger {
    border-radius: 0.521vw 0.521vw 0 0;
}

.custom-select.open:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.custom-options {
    position: absolute !important;
    display: block;
    top: 2.083vw;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    border: 1px solid #ebebeb;
    background: #fff;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    z-index: 999;
    height: 8.802vw;
    /* overflow: scroll;
    overflow-x: hidden; */
    font-size: .833vw;
    padding: 0;
    overflow-y: auto;
}

.bonus_field .custom-options {
    height: auto;
}

.custom-options::-webkit-scrollbar {
    border-radius: 5px;
}

.city_field .custom-options::-webkit-scrollbar {
    border-radius: 0.833vw;
}

.custom-options::-webkit-scrollbar-thumb {
    border-radius: 5px;
}

.custom-select.open .custom-options, .custom-select.open .search-input {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0.313vw 0.781vw;
    border-bottom: 1.5px dashed #EBEBEB;
    cursor: pointer;
    color: #0E0E0E;
    font-weight: 500;
    max-width: 100%;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: #36e800;
    color: #fff !important;
}

.custom-option:hover p {
    color: #fff !important;
}

.custom-option.selected {
    color: #fff;
    background: #36e800;
    border-bottom: none;
}

.custom-option.selected p {
    color: #fff !important;
}

.custom-option.selected:hover {
    background: #36e800;
    border-bottom: none;
}

.checkbox_field label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 0.833vw;
    line-height: 1.2;
    cursor: pointer;
}

.checkbox_field label input {
    height: auto;
    width: auto;
    margin: 0 0.365vw 0 0;
    cursor: pointer;
}

.checkbox_field label a {
    color: #36e800;
    margin: 0 0 0 4px;
}

/*.checkbox_field label p {*/
/*    text-align: justify;*/
/*}*/

.error_message {
    position: absolute;
    bottom: -0.938vw;
    color: red;
    font-size: 0.729vw;
    left: 0;
}

.popup_fail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s linear;
}

.popup_fail__inner {
    padding: 2vw 1.302vw;
    background-color: #272935;
    width: 100%;
    max-width: 27vw;
    color: #fff;
    text-align: center;
    border-radius: 0.83vw;
}

.popup_fail__inner p {
    font-size: 2.08vw;
    font-weight: 800;
}

.popup_fail__inner .popup_btn {
    width: 15vw;
    height: 4vw;
    margin: 2vw auto 0;
    font-size: 2.5vw;
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 20.83vw;
    margin: 1.04vw 0 0;
}

.wrapper_tr .tabs {
    margin: 0;
}

.tab-btn {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2.344vw;
    border: none;
    outline: none;
    cursor: pointer;
    background: #171717;
    color: #fff;
    font-size: 0.94vw;
}

.tab-btn.active {
    background: #36e800;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active-tab-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tablet {
    display: none;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    background-color: #fff;
    padding: 1.3vw;
    border-radius: 5px;
    max-width: 26.04vw;
    width: 90%;
    position: relative;
    animation: fadeInScale 0.3s ease-in-out;
}

.custom-modal-close {
    position: absolute;
    right: 0.68vw;
    top: 0.26vw;
    font-size: 1.25vw;
    cursor: pointer;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.custom-modal-title {
    text-align: center;
    margin: 0 0 1.04vw;
}

.custom-modal-message {
    text-align: center;
}

#showPass {
    cursor: pointer;
    width: 1.04vw;
    height: 1.04vw;
    display: flex;
    position: absolute;
    right: 0.52vw;
    top: auto;
    bottom: auto;
}

#showPass img {
    width: 100%;
    height: 100%;
}


/* Media */

@media screen and (orientation: portrait) {
    .tablet {
        display: block;
    }

    .desktop, .betroller_logo p {
        display: none;
    }

    .bg_image {
        top: 10vw;
        height: 87.6vw;
    }

    .bg_image:after {
        position: absolute;
        content: '';
        /*background-image: linear-gradient(180deg, #191B28 27%, transparent 100%);*/
        /*height: 19vw;*/
        /*width: 100%;*/
        top: -32vw;
        /*left: 0;*/
        /*right: 0;*/
    }

    .betroller_logo {
        top: 5vw;
        width: 66vw;
    }

    .logo {
        left: auto;
        top: 17vw;
        width: 45vw;
    }

    .title {
        top: 40vw;
        font-size: 6.57vw;
    }

    .fields_block {
        height: 30.2vw;
        top: 54vw;
    }

    .field_1 .image_block img, .field_2 .image_block img, .field_3 .image_block img, .field_4 .image_block img {
        width: 10vw;
    }

    .field_5 .image_block {
        width: 13.35vw;
    }

    .chicken {
        width: 13.15vw;
        left: calc(50% - 39vw);
    }

    .btn_block {
        bottom: auto;
        top: 90vw;
    }

    .hand {
        left: calc(50% - 42vw);
    }

    .hand img {
        width: 12.5vw;
    }

    .action_btn, .cash_out {
        width: 33vw;
        height: 16.5vw;
        font-size: 6.02vw;
        border-radius: 1.95vh;
        margin: 0 2.93vh;
    }

    .popup_fail__inner {
        padding: 3.91vh 2.44vh;
        max-width: 48.83vh;
        border-radius: 1.56vw;
    }

    .popup_fail__inner p {
        font-size: 3.91vh;
    }

    .popup_fail__inner .popup_btn {
        width: 29.3vh;
        height: 6.84vh;
        margin: 3.91vh auto 0;
    }

    .popup_reg {
        justify-content: center;
        padding: 0;
    }

    .title3, .title4 {
        top: 0;
        font-size: 8vw;
    }

    .tabs {
        max-width: 40vw;
        margin: 3vw 0 0;
    }

    .tab-btn {
        height: 4.395vw;
        font-size: 1.76vw;
    }

    form {
        padding: 2.441vw;
        max-width: 40vw;
        margin: 0 0 3vw;
    }

    form .select_field, form .input_field {
        margin: 0 0 1.953vw;
    }

    input {
        height: 3.906vw;
        padding: 0 1.465vw;
        font-size: 1.563vw;
    }

    .custom-select {
        height: 3.906vw;
        padding: 0.488vw 1.465vw;
        font-size: 1.563vw;
    }

    .custom-options {
        top: 3.906vw;
        height: 12.207vw;
        font-size: 1.563vw;
    }

    .custom-option {
        padding: 0.586vw 1.465vw;
    }

    input[type=submit] {
        font-size: 2.051vw;
    }

    .checkbox_field label {
        font-size: 1.563vw;
    }

    .custom-select:after {
        width: 1.367vw;
        height: 0.781vw;
        right: 1.465vw;
    }

    .checkbox_field label input {
        margin: 0 0.684vw 0 0;
    }

    .error_message {
        bottom: -1.758vw;
        font-size: 1.367vw;
    }

    form .select_field .country-name {
        font-size: 1.56vw;
    }

    .popup_reg, .popup_fail {
        background: rgba(0, 0, 0, .66);
    }

    .title2 {
        font-size: 8.57vw;
    }

    .bg_image .image_block {
        height: 100%;
    }

    .first_screen {
        min-height: 135vw;
    }

    @keyframes chickenBreath {
        0%, 100% { transform: scaleY(1) translateY(0); }
        50% { transform: scaleY(0.95) translateY(0.59vw); }
    }

    .wrapper_tr .title {
        font-size: 4.5vw;
    }

    .wrapper_tr .title2 {
        font-size: 6.5vw;
    }

    .wrapper_tr .tabs {
        margin: 3vw 0 0;
    }

    .wrapper_tr form {
        margin: 0 0 3vw;
    }

    .custom-modal-content {
        padding: 2.44vw;
        max-width: 48.83vw;
    }

    .custom-modal-close {
        right: 1.27vw;
        top: 0.49vw;
        font-size: 2.34vw;
    }

    .custom-modal-title {
        margin: 0 0 1.95vw;
    }

    .fire {
        margin: -17.02vw 0 0;
    }

    #showPass {
        width: 1.95vw;
        height: 1.95vw;
        right: 1.46vw;
    }
}

@media screen and (max-width: 1000px) {
    .tablet {
        display: block;
    }

    .desktop, .betroller_logo p {
        display: none;
    }

    .bg_image {
        top: 10vw;
        height: 87.6vw;
    }

    .bg_image:after {
        position: absolute;
        content: '';
        /*background-image: linear-gradient(180deg, #191B28 27%, transparent 100%);*/
        /*height: 19vw;*/
        /*width: 100%;*/
        top: -32vw;
        /*left: 0;*/
        /*right: 0;*/
    }

    .betroller_logo {
        top: 5vw;
        width: 66vw;
    }

    .logo {
        left: auto;
        top: 17vw;
        width: 45vw;
    }

    .title {
        top: 40vw;
        font-size: 6.57vw;
    }

    .fields_block {
        height: 30.2vw;
        top: 54vw;
    }

    .field_1 .image_block img, .field_2 .image_block img, .field_3 .image_block img, .field_4 .image_block img {
        width: 10vw;
    }

    .field_5 .image_block {
        width: 13.35vw;
    }

    .chicken {
        width: 13.15vw;
        left: calc(50% - 39vw);
    }

    .btn_block {
        bottom: auto;
        top: 90vw;
    }

    .hand {
        left: calc(50% - 42vw);
    }

    .hand img {
        width: 12.5vw;
    }

    .action_btn, .cash_out {
        width: 33vw;
        height: 16.5vw;
        font-size: 6.02vw;
        border-radius: 1.95vh;
        margin: 0 2.93vh;
    }

    .popup_fail__inner {
        padding: 3.91vh 2.44vh;
        max-width: 48.83vh;
        border-radius: 1.56vw;
    }

    .popup_fail__inner p {
        font-size: 3.91vh;
    }

    .popup_fail__inner .popup_btn {
        width: 29.3vh;
        height: 6.84vh;
        margin: 3.91vh auto 0;
    }

    .popup_reg {
        justify-content: center;
        padding: 0;
    }

    .title3, .title4 {
        top: 0;
        font-size: 8vw;
    }

    .tabs {
        max-width: 40vw;
        margin: 3vw 0 0;
    }

    .tab-btn {
        height: 4.395vw;
        font-size: 1.76vw;
    }

    form {
        padding: 2.441vw;
        max-width: 40vw;
        margin: 0 0 3vw;
    }

    form .select_field, form .input_field {
        margin: 0 0 1.953vw;
    }

    input {
        height: 3.906vw;
        padding: 0 1.465vw;
        font-size: 1.563vw;
    }

    .custom-select {
        height: 3.906vw;
        padding: 0.488vw 1.465vw;
        font-size: 1.563vw;
    }

    .custom-options {
        top: 3.906vw;
        height: 12.207vw;
        font-size: 1.563vw;
    }

    .custom-option {
        padding: 0.586vw 1.465vw;
    }

    input[type=submit] {
        font-size: 2.051vw;
    }

    .checkbox_field label {
        font-size: 1.563vw;
    }

    .custom-select:after {
        width: 1.367vw;
        height: 0.781vw;
        right: 1.465vw;
    }

    .checkbox_field label input {
        margin: 0 0.684vw 0 0;
    }

    .error_message {
        bottom: -1.758vw;
        font-size: 1.367vw;
    }

    form .select_field .country-name {
        font-size: 1.56vw;
    }

    .popup_reg, .popup_fail {
        background: rgba(0, 0, 0, .66);
    }

    .title2 {
        font-size: 8.57vw;
    }

    .bg_image .image_block {
        height: 100%;
    }

    .first_screen {
        min-height: 135vw;
    }

    @keyframes chickenBreath {
        0%, 100% { transform: scaleY(1) translateY(0); }
        50% { transform: scaleY(0.95) translateY(0.59vw); }
    }

    .custom-modal-content {
        padding: 2.44vw;
        max-width: 48.83vw;
    }

    .custom-modal-close {
        right: 1.27vw;
        top: 0.49vw;
        font-size: 2.34vw;
    }

    .custom-modal-title {
        margin: 0 0 1.95vw;
    }

    .fire {
        margin: -17.02vw 0 0;
    }

    #showPass {
        width: 1.95vw;
        height: 1.95vw;
        right: 1.46vw;
    }
}

@media screen and (max-width: 440px) {
    .bg_image {
        top: 13vw;
        height: auto;
    }

    .bg_image .image_block {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .bg_image .image_block .tablet {
        min-width: 125vw;
        will-change: transform;
        transition: transform 0.6s ease;
    }

    .fields_block {
        height: 45.2vw;
        top: 60.7vw;
        right: -20vw;
        max-width: 100%;
        transform: translateX(0);
        transition: transform 0.6s ease;
        will-change: transform;
    }

    .field_1 .image_block img, .field_2 .image_block img, .field_3 .image_block img, .field_4 .image_block img {
        width: 15vw;
    }

    .chicken {
        width: 18vw;
        left: calc(50% - 49vw);
        transform: translateX(-20.15vw) translateY(0px) scaleX(1);
    }

    .btn_block {
        bottom: auto;
        top: 113vw;
    }

    .btn_block__special {
        /*bottom: calc(50% - 91vw);*/
        flex-direction: column;
    }

    .action_btn, .cash_out {
        width: 48vw;
        height: 25vw;
        font-size: 10vw;
        border-radius: 4.55vw;
        margin: 0 4.55vw;
    }

    .btn_block__special .cash_out {
        margin: 0 0 4.55vw;
        width: 66vw;
    }

    .btn_block__special .action_btn {
        margin: 0;
        width: 66vw;
    }

    .hand {
        left: calc(50% - 48vw);
    }

    .hand img {
        width: 20vw;
    }

    .title {
        top: 50vw;
        font-size: 6.57vw;
    }

    .title2 {
        font-size: 9.5vw;
    }

    .logo {
        width: 55vw;
        top: 20vw;
    }

    .popup_fail__inner {
        padding: 6.82vw 4.55vw;
        max-width: 90%;
        border-radius: 3.64vw;
    }

    .popup_fail__inner p {
        font-size: 8.09vw;
    }

    .popup_fail__inner .popup_btn {
        width: 90%;
        height: 8vh;
    }

    .tabs {
        max-width: 90%;
        order: 3;
    }

    .tab-btn {
        height: 11.091vw;
        font-size: 4.09vw;
    }

    form {
        padding: 5.682vw;
        max-width: 90%;
        order: 4;
    }

    form .select_field, form .input_field {
        margin: 0 0 4.545vw;
    }

    input {
        height: 9.091vw;
        padding: 0 3.409vw;
        font-size: 3.636vw;
    }

    .custom-select {
        height: 9.091vw;
        padding: 1.042vw 3.409vw;
        font-size: 3.636vw;
    }

    .custom-options {
        top: 9.091vw;
        height: 28.409vw;
        font-size: 3.636vw;
    }

    .custom-select:after {
        width: 3.182vw;
        height: 1.818vw;
        right: 3.409vw;
    }

    input[type=submit] {
        font-size: 4.773vw;
    }

    .checkbox_field label {
        font-size: 3.636vw;
        text-align: left;
    }

    .checkbox_field label input {
        margin: 0 1.591vw 0 0;
    }

    .error_message {
        bottom: -4.091vw;
        font-size: 3.182vw;
    }

    form .select_field .country-name {
        font-size: 3.64vw;
    }

    .title3, .title4 {
        top: 0;
        font-size: 8.57vw;
    }

    .popup_reg {
        justify-content: flex-start;
        padding: 20vw 0 0;
    }

    .popup_reg .title4 {
        order: 1;
    }

    .popup_reg .title3 {
        order: 2;
    }

    .field_5 .image_block {
        width: 17.35vw;
    }

    @keyframes eggRise {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-23vw);
        }
    }

    .action_btn p {
        -webkit-text-stroke: 4px #00501C;
    }

    .cash_out p {
        -webkit-text-stroke: 4px #553E00;
    }

    @keyframes chickenBreath {
        0%, 100% { transform: scaleY(1) translateY(0); }
        50% { transform: scaleY(0.95) translateY(0.45vw); }
    }

    .wrapper_tr .title2 {
        font-size: 7.25vw;
    }

    .wrapper_tr .action_btn, .wrapper_tr .cash_out {
        font-size: 9vw;
    }

    .wrapper_tr .popup_reg .title3, .wrapper_tr .popup_reg .title4 {
        font-size: 8.57vw;
        padding: 1.82vw;
    }

    .custom-modal-content {
        padding: 4.55vw;
        max-width: 100%;
    }

    .custom-modal-close {
        right: 2.95vw;
        top: 0;
        font-size: 6.82vw;
    }

    .custom-modal-title {
        margin: 0 0 4.55vw;
        font-size: 8vw;
    }

    .fire {
        margin: -27.02vw 0 0;
    }

    #showPass {
        width: 4.55vw;
        height: 4.55vw;
        right: 2.27vw;
    }
}

@media only screen
and (min-device-width: 414px)
and (max-device-width: 414px)
and (min-device-height: 736px)
and (max-device-height: 736px)
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: portrait) {
    .first_screen {
        min-height: 210vw;
    }
}

@media only screen
and (min-device-width: 375px)
and (max-device-width: 375px)
and (min-device-height: 667px)
and (max-device-height: 667px)
and (orientation: portrait) {
    .first_screen {
        min-height: 210vw;
    }
}