﻿.exitPopUp {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    z-index: 20;
    overflow: auto;
    -webkit-transition: all 0.2s;
    transition: all 0.2s
}

.info-block, .line-slider, .move-slider-wrapper, .move-slider {
    width: 100%;
}

.exitPopUp {
    pointer-events: none;
    opacity: 0
}

.exitPopUp.opened {
    pointer-events: auto;
    opacity: 1
}

.exitPopUp_wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.exitPopUp_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.exitPopUp_bg path {
    fill: var(--exit-bg-svg-color)
}

.exitPopUp_content {
    height: 100%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    padding: 60px 0
}

.exitPopUp_title h3 {
    margin: 0;
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 36px;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center
}

.exitPopUp_close {
    position: fixed;
    top: 40px;
    right: 40px;
    cursor: pointer
}

.exitPopUp_time {
    border: 2px solid var(--exit-accent-color);
    border-radius: 10px;
    padding: 10px 20px;
    position: relative;
    margin-bottom: 30px
}

.exitPopUp_left {
    position: absolute;
    top: -11px;
    left: 16px;
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: black;
    padding: 2px 3px
}

.exitPopUp_time__hours {
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--exit-accent-color)
}

.exitPopUp_game span {
    position: relative;
}

.exitPopUp_game span:before {
    display: block;
    content: '';
    position: absolute;
    top: 49%;
    left: -5%;
    width: 110%;
    height: 2px;
    background: #FFFFFF;
    -webkit-box-shadow: 1px 1px 0px #000000;
    box-shadow: 1px 1px 0px #000000
}

.exitPopUp_offer {
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    color: var(--exit-accent-color);
    position: relative;
    margin-bottom: 50px
}

.exitPopUp_offer.withGame {
    margin-bottom: 0
}

.exitPopUp_offer span {
    color: var(--exit-accent-color2);
    position: relative
}

.exitPopUp_offer span:before {
    display: block;
    content: '';
    position: absolute;
    top: 49%;
    left: -5%;
    width: 110%;
    height: 5px;
    background: #FFFFFF;
    -webkit-box-shadow: 2px 2px 0px #000000;
    box-shadow: 2px 2px 0px #000000
}

.exitPopUp_copy {
    padding: 16px 12px 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border: 2px solid #000000;
    -webkit-box-shadow: 3px 3px 0px #000000;
    box-shadow: 3px 3px 0px #000000;
    border-radius: 10px;
    min-width: 270px;
    min-height: 64px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.exitPopUp_copy.copied{
    border-color: #239921;
}
.exitPopUp_copy.copied .exitPopUp_copy_text{
    color: #239921;
}
@media (hover: hover) {
    .exitPopUp_copy:hover, .exitPopUp_get:hover{
        -webkit-box-shadow: 0px 0px 0px #000000;
        box-shadow: 0px 0px 0px #000000;
    }
}

.exitPopUp_copy_text {
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #000000;
    transition: all 0.2s;
}

.exitPopUp_copy_btn {
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
}

.exitPopUp_get {
    cursor: pointer;
    background: var(--exit-accent-color);
    border: 2px solid #000000;
    -webkit-box-shadow: 3px 3px 0px #000000;
    box-shadow: 3px 3px 0px #000000;
    border-radius: 10px;
    min-height: 64px;
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #040000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.exitPopUp_terms {
    background: #000000;
    border-radius: 10px 10px 0px 0px;
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #FFFFFF;
    max-width: 270px;
    position: absolute;
    bottom: 0;
    width: 270px;
    left: 50%;
    transform: translate(-50%, 0);
}

.exitPopUp_terms_body {
    padding: 0 12px 10px 12px;
    text-transform: uppercase;
}

.exitPopUp_terms_head {
    padding: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

.exitPopUp_time__hours span {
    letter-spacing: 0px
}

.exitPopUp_game {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 4px 15px;
    font-family: var(--exit-font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 24px auto
}

@media (max-width: 1400px){
    .exitPopUp_close{
        top: 15px;
        right: 15px;
    }
}


@media (max-width: 1100px) and (orientation: portrait),(max-width: 1100px) {

}

@media (max-width: 560px){
    .exitPopUp_close {
        position: static;
        top: initial;
        right: initial;
        margin-left: 20px;
    }
    .exitPopUp_close svg{
        width: 32px;
        height: auto;
    }
    .exitPopUp_title {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .exitPopUp_content{
        padding: 30px 15px 0 15px;
        min-height: var(--app-height);
    }
    .exitPopUp_title h3{
        text-align: left;
        font-size: 24px;
        line-height: 1;
        margin-bottom: 0;
    }
    .exitPopUp_title h3 br{
        display: none;
    }
    .exitPopUp_time__hours {
        font-size: 24px;
        line-height: 1.2;
    }
    .exitPopUp_time {
        margin-bottom: 6vh;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 20px 0;
    }
    .exitPopUp_offer {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    .exitPopUp_offer span:before{
        height: 3px;
    }
    .exitPopUp_terms {
        width: 100vw;
        max-width: initial;
    }
    .exitPopUp_bg{
        display: none;
    }
    .exitPopUp_btns {
        margin-top: auto;
        margin-bottom: 55px;
        width: 100%;
    }
    .exitPopUp_copy, .exitPopUp_get{
        min-height: 56px;
    }
    .exitPopUp_copy{
        padding: 16px;
    }
}