body.adults-opened {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    position: fixed !important;
}
body.adults-opened::-webkit-scrollbar, body.adults-opened::-webkit-scrollbar-thumb {
    background-color: transparent !important;
    width: 0 !important;
}
.adults,
.adults-number,
.adults-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.adults {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
body.adults-opened .adults {
    opacity: 1;
    visibility: visible;
}
.adults-content {
    padding: 0 30px;
}
.adults-number {
    margin: 0 0 0.15em 0;
    letter-spacing: -0.1em;
    line-height: 0.8;
    font-family: 'BodoniCyrillicFWF';
    font-size: 1000%;
}
.adults-number:before {
    content: '18';
}
.adults-number:after {
    content: '+';
    margin-left: 0.05em;
    margin-bottom: 0.1em;
    font-weight: bold;
    font-size: 70%;
}
.adults-text {
    max-width: 20em;
    margin: 0 auto 2em auto;
    text-align: center;
}
.adults-text p {
    margin-bottom: 1.5em;
}
.adults-text p:last-child {
    margin-bottom: 0;
}
.adults-buttons .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 13.3em;
    height: 3.2em;
    text-decoration: none;
    cursor: pointer;
}
.adults-buttons .button > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.adults-buttons .button > span:before {
    content: '';
    width: 100%;
    height: 0;
    border-top: 1px solid;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 0;
}
.no-touch .adults-buttons .button > span:before {
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.no-touch .adults-buttons .button:hover > span:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
}
.adults-buttons .button.lite {
    background: #ffffff;
    color: #000000;
}
.adults-buttons .button.lite-brd {
    border: 1px solid #ffffff;
    color: #ffffff;
}
.adults-buttons .button:not(:last-child) {
    margin-right: 1em;
}
