@font-face {
    font-family: "Segoe UI";
    /*font-style: normal;*/
    /*font-weight: normal;*/
    src:
        local("Segoe UI"),
        local("SegoeUI"),
        local("Segoe-UI"),
        url("../fonts/Segoe%20UI.woff") format("woff");
}

* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
    cursor: none;
}

body {
    font-family: "Segoe UI", sans-serif;
    height: 100%;
    color: #000;
}

body:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.4;
    z-index: 1;
}

.clrfx:after {
    content: "";
    clear: both;
    display: block;
}

.windows {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 732px;
    height: 400px;
    margin-left: -366px;
    margin-top: -200px;
    background: #e6e6e6;
    z-index: 2;
    cursor: default;
}

.windows:after {
    content: "";
    position: absolute;
    animation: pulsing 1s infinite;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
}

.z-index {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.windows .top {
    background: #83baeb;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
}

.windows .top .head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.windows .top .close {
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
}

.windows .top .close:hover {
    opacity: 1;
}

.windows .top .alert {
    display: flex;
    flex-direction: row;
    font-size: 29px;
    line-height: 35px;
    float: left;
    padding-top: 30px;
    padding-bottom: 20px;
    gap: 20px;
}

.windows .top .alert .alert-icon {
    float: left;
}

.windows .top .alert .alert-icon .icon {
    width: 78px;
    height: 70px;
    position: absolute;
}

.windows .top .alert .alert-icon .t_alert {
    animation: pulsing2 1s infinite;
    position: inherit;
}

.windows .top .alert .text {
    float: right;
}

.windows .bot {
    display: flex;
    flex-direction: column;
    padding: 10px 30px;
    gap: 30px;
}

.windows .bot .m-text {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.windows .bot .t-text {
    font-size: 29px;
    line-height: 29px;
    padding-top: 20px;
}

.windows .bot .t-text .ico_br {
    display: inline-block;
    vertical-align: middle;
    margin-left: -7px;
    margin-bottom: -14px;
    margin-top: -9px;
}

.windows .bot .button {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.windows .bot .button .btn {
    flex: 1;
    display: flex;
    cursor: pointer;
    float: left;
    text-align: center;
    display: block;
    background: #b8b8b8;
    box-sizing: border-box;
    font-size: 24px;
    line-height: 32px;
    text-decoration: none;
    color: #000;
    border: 2px solid #b8b8b8;
    padding: 10px;
}

.windows .bot .button .btn.red_warn {
    border: 2px solid #f03a17;
    animation: pulsing3 1s infinite;
}

.windows .bot .button .btn:nth-child(2) {
    float: right;
}

#bg-darker {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    background-color: #000;
    z-index: 3;
}

#bg-dark {
    visibility: visible;
    animation: appear 1s step-end 0 1 normal forwards running;
}

.space_button {
    position: absolute;
    z-index: 4;
    top: min(601px, calc(100% - 150px));
    right: 478px;
}

.space_button .ins_spacer {
    width: 423px;
    height: 135px;
    background: #e6e6e6;
    z-index: 2;
    position: relative;
}

.space_button .ins_spacer:after {
    content: "";
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    box-shadow: 0 6px 50px rgba(150, 0, 0, 0.6);
    position: absolute;
    border: 3px solid #f03a17;
    animation: pulsing4 0.6s infinite;
}

.space_button .ins_spacer .ico {
    width: 95px;
    height: 86px;
    float: left;
    margin: 24px;
}

.space_button .ins_spacer .txt {
    font-size: 28px;
    line-height: 33px;
    width: 230px;
    margin-right: 38px;
    float: right;
    display: table;
    height: 135px;
    color: #000;
}

.space_button .ins_strl {
    width: 248px;
    height: 176px;
    position: absolute;
    right: -186px;
    top: -19px;
    z-index: 1;
    animation: pulsing5 1.2s infinite;
}

.space_button .ins_strl img {
    width: 100%;
    height: 100%;
}

@keyframes pulsing {
    0% {
        border: 5px solid rgba(240, 58, 23, 0);
    }

    50% {
        border: 5px solid #f03a17;
    }

    100% {
        border: 5px solid rgba(240, 58, 23, 0);
    }
}

@keyframes pulsing2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pulsing3 {
    0% {
        background-color: #b8b8b8;
    }

    50% {
        background-color: #f03a17;
    }

    100% {
        background-color: #b8b8b8;
    }
}

@keyframes pulsing4 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pulsing5 {
    0% {
        right: -186px;
    }

    50% {
        right: -140px;
    }

    100% {
        right: -186px;
    }
}

/**/
/* @media (max-width: 1400px) { */
/*     .windows { */
/*         width: 612px; */
/*         height: 391px; */
/*         margin-left: -306px; */
/*         margin-top: -209px; */
/*     } */
/**/
/*     .windows .top .head { */
/*         padding: 14px 0 0 29px; */
/*         font-size: 17px; */
/*     } */
/**/
/*     .windows .top .top--alert .alert .icon { */
/*         width: 67px; */
/*         height: 61px; */
/*         top: 3px; */
/*     } */
/**/
/*     .windows .top .top--alert .alert .icon img { */
/*         width: 100%; */
/*         height: 100%; */
/*     } */
/**/
/*     .windows .top .top--alert { */
/*         padding: 12px 75px 0 30px; */
/*         font-size: 24px; */
/*         line-height: 32px; */
/*     } */
/**/
/*     .windows .top .top--alert .text { */
/*         float: right; */
/*         width: 410px; */
/*     } */
/**/
/*     .windows .top { */
/*         height: 143px; */
/*     } */
/**/
/*     .windows .bot { */
/*         padding: 31px 35px 30px; */
/*     } */
/**/
/*     .windows .bot .button { */
/*         bottom: 30px; */
/*         left: 35px; */
/*         right: 35px; */
/*     } */
/**/
/*     .windows .bot .t-text .ico_br img { */
/*         max-height: 56px; */
/*     } */
/**/
/*     .windows .bot .t-text { */
/*         min-height: 59px; */
/*         font-size: 25px; */
/*         line-height: 32px; */
/*         box-sizing: border-box; */
/*     } */
/**/
/*     .windows .bot .m-text { */
/*         font-size: 20px; */
/*         line-height: 32px; */
/*         margin-top: 4px; */
/*     } */
/**/
/*     .windows .bot .button .btn { */
/*         width: 258px; */
/*         height: 48px; */
/*         font-size: 18px; */
/*         line-height: 26px; */
/*     } */
/**/
/*     .space_button .ins_strl { */
/*         width: 228px; */
/*         height: 166px; */
/*         position: absolute; */
/*         right: -166px; */
/*         top: -20px; */
/*         z-index: 1; */
/*     } */
/**/
/*     @keyframes pulsing5 { */
/*         0% { */
/*             right: -166px; */
/*         } */
/**/
/*         50% { */
/*             right: -140px; */
/*         } */
/**/
/*         100% { */
/*             right: -166px; */
/*         } */
/*     } */
/* } */
/**/
/* @media (max-width: 1100px) { */
/*     .windows { */
/*         width: 540px; */
/*         height: 361px; */
/*         margin-left: -270px; */
/*         margin-top: -180px; */
/*     } */
/**/
/*     .windows .top { */
/*         height: 133px; */
/*     } */
/**/
/*     .windows .top .head { */
/*         padding: 14px 0 0 22px; */
/*         font-size: 15px; */
/*     } */
/**/
/*     .windows .top .top--alert .alert .icon { */
/*         width: 57px; */
/*         height: 51px; */
/*     } */
/**/
/*     .windows .top .top--alert .text { */
/*         float: right; */
/*         width: 380px; */
/*     } */
/**/
/*     .windows .top .top--alert { */
/*         padding: 11px 55px 0 26px; */
/*         font-size: 22px; */
/*         line-height: 27px; */
/*     } */
/**/
/*     .windows .bot { */
/*         padding: 27px 27px 20px; */
/*     } */
/**/
/*     .windows .bot .button { */
/*         bottom: 20px; */
/*         left: 27px; */
/*         right: 27px; */
/*     } */
/**/
/*     .windows .bot .button .btn { */
/*         width: 228px; */
/*         height: 45px; */
/*         font-size: 18px; */
/*         line-height: 25px; */
/*     } */
/**/
/*     .windows .bot .t-text { */
/*         font-size: 22px; */
/*     } */
/**/
/*     .windows .bot .m-text { */
/*         font-size: 19px; */
/*         line-height: 24px; */
/*         margin-top: 10px; */
/*     } */
/**/
/*     .space_button .ins_strl { */
/*         width: 178px; */
/*         height: 142px; */
/*         right: -146px; */
/*         background-size: cover; */
/*         top: 0; */
/*     } */
/**/
/*     .windows .bot .t-text .ico_br { */
/*         display: inline-block; */
/*         vertical-align: middle; */
/*         margin-left: -10px; */
/*         margin-bottom: -13px; */
/*         margin-top: -6px; */
/*     } */
/**/
/*     .windows .bot .t-text .ico_br img { */
/*         max-height: 52px; */
/*     } */
/**/
/*     @keyframes pulsing5 { */
/*         0% { */
/*             right: -136px; */
/*         } */
/**/
/*         50% { */
/*             right: -120px; */
/*         } */
/**/
/*         100% { */
/*             right: -136px; */
/*         } */
/*     } */
/* } */

#foobar {
    display: none;
}

body {
    background-image: url(../images/bg.jpg);
    background-size: cover;
}

.jv1 {
    visibility: hidden;
}

.jv2 {
    visibility: hidden;
}

.jv3 {
    visibility: hidden;
}

#window_bs {
    width: 530px;
    height: 250px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -125px;
    margin-left: -276px;
    box-sizing: border-box;
    padding: 60px 70px 47px;
    z-index: 15;
    cursor: default;
}

#window_bs .close {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 20px;
    opacity: 0.4;
    transition: 0.3s;
}

#mouse-modal {
    opacity: 1;
    position: fixed;
    top: min(50%, 300px);
    width: 100%;
    height: 400px;
    cursor: default;
    z-index: 10;
}

.btn {
    z-index: 15;
}

#window_bs .close:hover {
    opacity: 1;
}

#window_bs .c_t {
    font-size: 30px;
    line-height: 40px;
    color: #000;
    text-align: center;
    margin-bottom: 23px;
}

#window_bs .button {
    position: absolute;
    bottom: 48px;
    left: 58px;
    right: 58px;
}

#window_bs .button .btn {
    cursor: pointer;
    float: left;
    width: 198px;
    height: 58px;
    text-align: center;
    display: block;
    background: #b8b8b8;
    box-sizing: border-box;
    font-size: 24px;
    line-height: 32px;
    text-decoration: none;
    color: #000;
    padding-top: 9px;
    border: 2px solid #b8b8b8;
}

#window_bs .button .btn.red_warn {
    border: 2px solid #f03a17;
    -webkit-animation: pulsing3 1s infinite;
    animation: pulsing3 1s infinite;
}

#window_bs .button .btn:nth-child(2) {
    float: right;
    margin-right: 0;
}

@media (max-width: 1400px) {
    #window_bs .button {
        position: absolute;
        bottom: 30px;
        left: 38px;
        right: 38px;
    }

    #window_bs .button .btn {
        width: 169px;
    }

    #window_bs .c_t {
        font-size: 26px;
        line-height: 35px;
    }

    #window_bs .button .btn {
        height: 48px;
        font-size: 18px;
        line-height: 26px;
    }

    #window_bs {
        width: 440px;
        height: 230px;
        margin-top: -115px;
        margin-left: -220px;
        padding: 50px 50px 47px;
    }
}
