body{
    background-image: url('/templates/src/img/background.webp');
}
b {
    white-space: nowrap;
}
#gir {
    position: absolute;
    top: 0;
    left: 0;
    background-image:url('/templates/src/img/gir.png');
    height: 62px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none
}  
.gir_1 {
    background-position: 0 0
}  
.gir_2 {
    background-position: 0 -62px
}  
.gir_3 {
    background-position: 0 -124px
}
.mobile_logo {
    top: 40px;
    position: absolute;
    left: 40px;
}
.menu-button-container{
    background: #accac9;
    padding-left: 22px;
    border-radius: 8px;
    padding-right: 22px;
    position: fixed;
    height: 45px;
    right: 40px;
    top: 20px;
    z-index: 1;
}
.menu{
    margin-top: 0;
    position: fixed;
}
.feedback, .push, .banner, .merch{
    position: fixed;
    /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    /* цвет фона */
    z-index: 1050;
    opacity: 0;
    /* по умолчанию модальное окно прозрачно */
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    /* анимация перехода */
    pointer-events: none;
    /* элемент невидим для событий мыши */
}

/* при отображении модального окно */
.feedback:target, .push:target, .merch:target, .banner:target {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.show{
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

/* ширина модального окна и его отступы от экрана */
.feedback-dialog, .push-dialog, .banner-dialog, .merch-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    top: 10%;
}

@media (min-width: 576px) {
    .feedback-dialog, .push-dialog, .merch-dialog {
        max-width: 1000px;
        margin: 30px auto;
    }
    .merch .push-dialog{
        max-width: 500px;
        text-align: center;
    }
    .banner-dialog{
        max-width: 1000px;
        margin: 30px auto;
    }
}

.age-button{
    padding: 10px 20px;
    border: 1px solid #000;
    color: #fff!important;
}

#age-yes{
    background: #21ad00;
}

#age-yes:hover{
    background: #109c00;
}

#age-no{
    background: #ab0000;
}

#age-no:hover{
    background: #9a0000;
}

/* свойства для блока, содержащего контент модального окна */
.feedback-content, .push-content, .banner-content, .merch-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

@media (min-width: 768px) {
    .feedback-content, .push-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }
}

/* свойства для заголовка модального окна */
.feedback-header, .push-header, .banner-header, .merch-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eceeef;
}

.feedback-title, .push-title, .banner-title, .merch-title {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}

/* свойства для кнопки "Закрыть" */
.close {
    float: right;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    text-decoration: none;
}

/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
    cursor: url(/templates/src/img/cursor/pointer.png), pointer;
}

/* свойства для блока, содержащего основное содержимое окна */
.feedback-body, .push-body, .banner-body, .merch-body {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px;
    overflow: auto;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
.form-control {
    margin-top: 0!important;
    outline: none;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control:focus, .form-control:focus-visible{
    border-color: #eea9b2!important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px #eea9b2!important;
}
textarea{
    height: 200px!important;
    width: 100%!important;
    resize: none;
}
.send-button {
    cursor: url(../templates/src/img/cursor/pointer.png), pointer;
    height: 45px;
    border: none;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 45px;
    padding: 0 15px;
    margin-top: 16px;
    letter-spacing: .28px;
    width: 100%;
    text-transform: uppercase;
    background: #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.send-button:hover {
    background: #eea9b2;
}
#snowman_r{
    background-image: url("/template/img/snowman.png?06.12.24");
    right: -50px;
    transform: scale(-1, 1);
}
#snowman_l{
    background-image: url("/template/img/snowman.png?06.12.24");
    left: -50px;
}
#snowman_r, #snowman_l{
    position: fixed;
    bottom: 0px;
    width: 300px;
    height: 350px;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 30px;
}
footer{
    z-index: 3;
    background-color: white;
    width: 100%;
}
@media (max-width: 1500px) {
    #snowman_r, #snowman_l{
        position: fixed;
        bottom: 0px;
        width: 100px;
        height: 125px;
        z-index: 2;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

