@charset "UTF-8";
@import url("./variables.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Koulen&family=Montserrat:wght@400;500;600&display=swap");
body {
    -webkit-tap-highlight-color: transparent;
    background: var(--background);
    color: var(--white);
    font-family: var(--default-font);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100dvh;
    justify-content: space-between;
}
body a {
    text-decoration: none;
}
body textarea:focus, body input:focus {
    outline: none;
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }
}
h3 {
    font-weight: 600;
    margin: var(--bottom-margin);
    font-size: 35px;
}

.header {
    z-index: 99;
    background-color: var(--background);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0 70px 10px 70px;
    height: 90px;
    max-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--almost-white);
}
.header ul {
    display: flex;
    gap: 20px;
    font-size: 16px;
    line-height: 20px;
    list-style: none;
}
.header ul li {
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .header {
        padding-bottom: 0;
    }
    .center-content {
        padding-right: 30px;
    }
    .hide-on-1280 {
        display: none;
    }
}
@media (max-width: 900px) {
    .hide-on-900 {
        display: none;
    }
}
@media (max-width: 800px) {
    .header {
        display: none;
    }
    .center-content {
        padding: 0;
    }
}
.side-content {
    display: flex;
    max-height: 100%;
    height: 100%;
    width: 20%;
    align-items: center;
}

.left-content {
    justify-content: flex-start;
}

.right-content {
    justify-content: flex-end;
}

.center-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.logo img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 1280px) {
    .logo img {
        width: 100%;
        height: auto;
    }
}
.nav-list__item {
    padding: 10px 15px;
    font-family: "Koulen", sans-serif;
    text-transform: capitalize;
}

.button-to-go {
    font-family: "Koulen", sans-serif;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    display: -ms-grid;
    display: grid;
    place-content: center;
    padding: 12px 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: 0.2s ease-in;
}

@media (max-width: 900px) {
    .button-to-go {
        padding: 12px;
    }
}
.button-to-go:hover {
    scale: 0.9;
}

.main-pictures {
    height: 700px;
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) {
    .main-pictures {
        height: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
}
.center-pictures-item {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.center-pictures-item h1 {
    text-align: center;
    font-weight: 700;
    font-size: 60px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
}
.center-pictures-item .center-icon {
    place-items: center;
    display: none;
}
.center-pictures-item .center-icon img {
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .center-pictures-item {
        width: 65%;
        max-width: 65%;
    }
    .center-pictures-item h1 {
        display: none;
    }
    .center-pictures-item .center-icon {
        display: -ms-grid;
        display: grid;
    }
}
.main-pictures-item {
    transition: 0.7s;
    background-size: cover;
    background-repeat: no-repeat;
}

.picture-header {
    height: 100%;
    width: 100%;
    -webkit-backdrop-filter: brightness(0.4) grayscale(0.9) opacity(0.8);
    backdrop-filter: brightness(0.4) grayscale(0.9) opacity(0.8);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
}
.picture-header h6 {
    cursor: pointer;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    margin: 0;
    color: var(--almost-white);
    text-transform: capitalize;
    font-family: "Koulen", sans-serif;
    font-size: 35px;
}
.picture-header h6:nth-child(2) {
    align-items: flex-end;
}

@media (max-width: 800px) {
    .main-pictures-item:nth-child(1) .picture-header {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .main-pictures-item:nth-child(2) .picture-header {
        justify-content: flex-end;
        align-items: flex-start;
    }
    .main-pictures-item:nth-child(3) .picture-header {
        justify-content: flex-start;
        align-items: flex-end;
    }
    .main-pictures-item:nth-child(4) .picture-header {
        justify-content: flex-end;
        align-items: flex-end;
    }
}
.main-pictures-item:nth-child(1) {
    background-image: url("../img/bg/bg1.png");
}

.main-pictures-item:nth-child(1):hover {
    background-image: url("../img/bg/bg3.png");
}

.main-pictures-item:nth-child(2) {
    background-image: url("../img/bg/bg2.png");
}

.main-pictures-item:nth-child(2):hover {
    background-image: url("../img/bg/bg4.png");
}

.main-pictures-item:nth-child(3) {
    background-image: url("../img/bg/bg3.png");
}

.main-pictures-item:nth-child(3):hover {
    background-image: url("../img/bg/bg1.png");
}

.main-pictures-item:nth-child(4) {
    background-image: url("../img/bg/bg4.png");
}

.main-pictures-item:nth-child(4):hover {
    background-image: url("../img/bg/bg2.png");
}

.regular-section {
    padding: 50px 120px 100px 120px;
}

@media (max-width: 800px) {
    .regular-section {
        padding: 50px 40px;
    }
}
.heading {
    display: flex;
    flex-direction: column;
    line-height: 42px;
}

@media (max-width: 800px) {
    .heading {
        align-items: center;
        text-align: center;
    }
    .divider {
        display: flex;
        justify-content: center;
    }
}
.divider {
    width: 100%;
    padding: 6px 0;
    margin: var(--bottom-margin);
}
.divider span {
    display: block;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px;
    border-color: #FFFFFF;
    border-style: solid;
    width: 19%;
}

.section-content {
    width: 100%;
    display: -ms-grid;
    display: grid;
    gap: 50px;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 800px) {
    .section-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    .section-content p {
        margin: 0;
    }
}
.section-with-padding {
    box-sizing: border-box;
    padding: 20px;
}

/*@media (max-width: 1024px) {*/
/*    .section-with-padding {*/
/*        padding: 0px;*/
/*    }*/
/*}*/
.content-item {
    padding: 10px;
    color: var(--almost-white);
    font-family: "Inter", sans-serif;
    font-size: 17px;
    margin-bottom: 1em;
    line-height: 25px;
    font-weight: 400;
}

.button-wrapper {
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
}

@media (max-width: 800px) {
    .button-wrapper {
        justify-content: center;
    }
}
.button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange-bg-color);
    padding: 12px 24px;
    font-family: "Koulen", sans-serif;
    transition: 0.2s ease-in;
}
.button span {
    text-transform: capitalize;
    color: var(--text-black);
    line-height: 17px;
}

.button:hover {
    scale: 0.9;
}

.bg-fullscreen {
    background-color: rgba(255, 255, 255, 0);
    background-image: url("../img/bg-fullscreen-1.jpeg");
    background-position: center left;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 100px;
}

.promo-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 70px 120px;
}

@media (max-width: 800px) {
    .promo-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 30px;
    }
}
.promo-card {
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    background: transparent;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.4s;
}
.promo-card p {
    line-height: 25px;
    margin: 0;
}

.promo-card:hover {
    -webkit-backdrop-filter: brightness(30%) contrast(80%);
    backdrop-filter: brightness(30%) contrast(80%);
    box-shadow: 0 0 11px 7px rgba(0, 0, 0, 0.2);
}

.promo-card-background {
    width: 100%;
    box-shadow: none;
    background-color: rgba(35, 36, 41, 0.4);
    background-repeat: no-repeat;
    transition: 1s;
}

.promo-card-background:hover {
    background-size: cover;
    background-position: 100% 50%;
    -webkit-animation: translate-bg 2s ease;
    animation: translate-bg 2s ease;
}

.promo-card-background:hover:nth-child(1) {
    background-image: url("../img/gallery/img_16.webp");
}

.promo-card-background:hover:nth-child(2) {
    background-image: url("../img/gallery/img_21.webp");
}

.promo-card-background:hover:nth-child(3) {
    background-image: url("../img/gallery/img_9.webp");
}

@-webkit-keyframes translate-bg {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
@keyframes translate-bg {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.dark-filter {
    width: 100%;
    height: 100%;
    background-color: var(--bg-with-opacity-color);
}

/* Styling "Google Review" widget */
/*.eapps-widget-show-toolbar {*/
/*    display: none;*/
/*}*/
.es-embed-root {
    width: 400px;
    z-index: 1;
}

@media (max-width: 800px) {
    .es-embed-root {
        width: 100%;
    }
}
.es-widget-title-container,
.es-review-content-control-open,
.es-review-source-container,
.es-review-info-container {
    display: none !important;
}

.es-header-write-review-button {
    background-color: var(--orange-bg-color) !important;
    border-radius: 0 !important;
}
.es-header-write-review-button span {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: var(--text-black);
    font-size: 13px;
}

.es-header-container,
.es-review-background-container {
    background-color: transparent !important;
    padding: 0 !important;
}

.es-header-title-text,
.es-rating-value,
.es-review-author-name,
.es-review-content-text,
.es-review-info-date {
    color: var(--almost-white) !important;
}

.es-header-total-reviews-container {
    color: var(--white-half-opacity) !important;
}

.es-review-author-name {
    font-family: "Koulen", sans-serif;
}

.es-review-verified-badge-icon path:first-child {
    fill: var(--orange-bg-color) !important;
}

/* End styling widget */
.social-container {
    padding: 50px 0 20px 0;
    display: flex;
    gap: 10px;
}

@media (max-width: 800px) {
    .social-container {
        justify-content: center;
    }
}
.social-link {
    width: 38px;
    height: 38px;
    background-color: var(--orange-bg-color);
    transition: 0.2s ease-in;
}
.social-link a {
    color: var(--text-black);
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.social-link:hover {
    scale: 0.9;
}

.events-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .events-list {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .events-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.event-item {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.4s;
}
.event-item a {
    font-family: "Koulen", sans-serif;
    color: var(--almost-white);
    transition: 0.4s;
}

.event-item:hover {
    scale: 0.95;
}
.event-item:hover a {
    color: var(--hover-link-color);
}

.event-image {
    aspect-ratio: auto 300/200;
    margin-bottom: 20px;
}
.event-image img {
    width: 100%;
}

.section-with-bg {
    background-image: url("../img/bg-fullscreen-2.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section-with-bg > .regular-section {
    -webkit-backdrop-filter: brightness(30%) contrast(80%);
    backdrop-filter: brightness(30%) contrast(80%);
}

@media only screen and (max-device-width: 800px) {
    .section-with-bg, .bg-fullscreen {
        background-attachment: scroll;
    }
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.form-first-row {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

@media (max-width: 1280px) {
    .form-first-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
.input {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    padding: 8px 16px;
    resize: vertical;
}

.input-clearing {
    animation: clearing 2s;
}

@keyframes clearing {
    0% {color: rgba(0,0,0,100%)}
    40% {color: rgba(0,0,0,0)}
    60% {color: rgba(0,0,0,0)}
    100% {color: rgba(0,0,0,100%)}
}

.submit-btn {
    cursor: pointer;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    background-color: var(--orange-bg-color);
    color: var(--text-black);
    padding: 10px 30px;
    border: none;
    font-family: "Koulen", sans-serif;
    font-size: 17px;
    transition: 0.2s ease-in;
    z-index: 10;
    position: relative;
}

@media (max-width: 800px) {
    .submit-btn {
        width: 100%;
    }
}
.submit-btn:hover {
    scale: 0.9;
}

.button-block {
    display: flex;
    column-gap: 1rem;
    align-items: center;
    position: relative;
}

.form-response {
    width: auto;
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 5;
    left:-7rem;
}
.form-response-active {
    animation: response-reveal 5s;
}

@keyframes response-reveal {
    0% {opacity:0}
    1% {left:-7rem; opacity:100%}
    20% {left:0}
    80% {left:0}
    99% {left:-7rem; opacity:100%}
    100% {opacity:0}
}

.extra-text {
    font-size: 12px;
    margin: 0;
}

.inline-link {
    color: var(--orange-bg-color);
    font-family: "Koulen", sans-serif;
    transition: 0.4s;
}

.inline-link:hover {
    color: var(--hover-link-color);
}

.inline-link-with-icon::after {
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
    margin: 0 3px 0 5px;
}

.footer {
    background-color: var(--footer-bg);
    font-family: "Inter", sans-serif;
}

.footer-section {
    padding-bottom: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20%;
}

.info {
    display: flex;
    flex-direction: column;
}
.info p {
    margin: 0 0 0.9rem 0;
    font-size: 17px;
    line-height: 31px;
}

@media (max-width: 800px) {
    .footer-columns {
        justify-content: center;
    }
    .info {
        justify-content: center;
        text-align: center;
    }
}
.footer-logo {
    width: 100%;
    margin-left: -16px;
    margin-bottom: 16px;
}
.footer-logo a {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 800px) {
    .footer-logo {
        margin: 0;
        display: flex;
    }
    .footer-logo a {
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 1280px) {
    .footer-columns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .info {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        width: 50%;
        margin: 0;
    }
    .footer-logo img {
        max-width: 100%;
    }
}
.footer-logo-img {
    width: 100%;
    max-width: 85%;
}

.bottom-heading {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bottom-heading h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.divider-short span {
    width: 40px;
}

@media (max-width: 1280px) {
    .divider-short {
        display: flex;
        justify-content: center;
    }
}
.bottom-navigation {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 4fr 4fr;
    grid-template-columns: 3fr 4fr 4fr;
}

.bottom-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.bottom-nav-list__item {
    padding: 13px 20px 13px 0;
    line-height: 25px;
    cursor: pointer;
    transition: 0.4s;
}
.bottom-nav-list__item a {
    font-size: 17px;
    font-weight: 400;
    color: var(--almost-white);
    transition: 0.4s;
}

.nav-column:first-child .bottom-nav-list .bottom-nav-list__item {
    line-height: 15px;
}

@media (max-width: 1280px) {
    .bottom-navigation {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-column {
        text-align: center;
    }
    .bottom-nav-list__item {
        padding-right: 0;
    }
}
@media (max-width: 800px) {
    .bottom-navigation {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 35px;
    }
}
.bottom-nav-list__item:hover, .bottom-nav-list__item a:hover {
    color: var(--orange-bg-color);
}

.footer-wide-divider {
    width: 100%;
    height: 1px;
    background-color: var(--orange-bg-color);
    margin: 40px 0;
}

.commercial {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 800px) {
    .commercial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.payment-container {
    display: flex;
    gap: 5px;
}

.payment-icon, .payment-icon:before {
    color: var(--orange-bg-color);
    height: 50px;
    font-size: 50px;
}

/* Swiper */
.cocktail-swiper .swiper-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.cocktail-swiper .swiper-slide {
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.cocktail-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cocktail-swiper-button-prev:after, .cocktail-swiper-button-next:after {
    display: none;
}

.cocktail-swiper-button-prev i, .cocktail-swiper-button-next i {
    color: var(--orange-bg-color);
    font-size: 34px;
    font-weight: 900;
}

.gallery {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(var(--gallery-grid-columns), 1fr);
    grid-gap: 10px;
    transition: 300ms;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Модальное окно для галереи */
.gallery-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: 0.8s;
}

.modal-open {
    overflow: hidden;
}

.modal-header {
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
}

.modal-buttons-container {
    display: flex;
    gap: 30px;
}

.modal-button {
    cursor: pointer;
}

.modal-buttons-container svg {
    width: 30px;
    height: 30px;
    z-index: 100;
}

#zoom-minus {
    display: none;
}

#fullscreen-close {
    display: none;
}

.gallery-swiper {
    height: 100%;
}

/* For cookie.html */
.cookie-container {
    max-width: 800px;
}
.cookie-container h4 {
    font-size: 22px;
}
.cookie-container h5 {
    font-weight: 900;
}
.cookie-container p, .cookie-container ul, .cookie-container span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 25px;
}
.cookie-container a {
    text-decoration: underline;
}
.cookie-container details {
    background-color: rgba(239, 239, 239, 0.25);
    margin-bottom: 5px;
}
.cookie-container details div {
    padding: 10px;
}
.cookie-container .cookie-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cookie-container .cookie-description h5 {
    margin: 0;
}
.cookie-container .cookie-description p {
    margin: 0;
}@charset "UTF-8";
@import url("./variables.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Koulen&family=Montserrat:wght@400;500;600&display=swap");
body {
    -webkit-tap-highlight-color: transparent;
    background: var(--background);
    color: var(--white);
    font-family: var(--default-font);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100dvh;
    justify-content: space-between;
}
body a {
    text-decoration: none;
}
body textarea:focus, body input:focus {
    outline: none;
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }
}
h3 {
    font-weight: 600;
    margin: var(--bottom-margin);
    font-size: 35px;
}

.header {
    z-index: 99;
    background-color: var(--background);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0 70px 10px 70px;
    height: 90px;
    max-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--almost-white);
}
.header ul {
    display: flex;
    gap: 20px;
    font-size: 16px;
    line-height: 20px;
    list-style: none;
}
.header ul li {
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 1280px) {
    .header {
        padding-bottom: 0;
    }
    .center-content {
        padding-right: 30px;
    }
    .hide-on-1280 {
        display: none;
    }
}
@media (max-width: 900px) {
    .hide-on-900 {
        display: none;
    }
}
@media (max-width: 800px) {
    .header {
        display: none;
    }
    .center-content {
        padding: 0;
    }
}
.side-content {
    display: flex;
    max-height: 100%;
    height: 100%;
    width: 20%;
    align-items: center;
}

.left-content {
    justify-content: flex-start;
}

.right-content {
    justify-content: flex-end;
}

.center-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.logo img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 1280px) {
    .logo img {
        width: 100%;
        height: auto;
    }
}
.nav-list__item {
    padding: 10px 15px;
    font-family: "Koulen", sans-serif;
    text-transform: capitalize;
}

.button-to-go {
    font-family: "Koulen", sans-serif;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    display: -ms-grid;
    display: grid;
    place-content: center;
    padding: 12px 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    transition: 0.2s ease-in;
}

@media (max-width: 900px) {
    .button-to-go {
        padding: 12px;
    }
}
.button-to-go:hover {
    scale: 0.9;
}

.main-pictures {
    height: 700px;
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) {
    .main-pictures {
        height: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
}
.center-pictures-item {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.center-pictures-item h1 {
    text-align: center;
    font-weight: 700;
    font-size: 60px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
}
.center-pictures-item .center-icon {
    place-items: center;
    display: none;
}
.center-pictures-item .center-icon img {
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .center-pictures-item {
        width: 65%;
        max-width: 65%;
    }
    .center-pictures-item h1 {
        display: none;
    }
    .center-pictures-item .center-icon {
        display: -ms-grid;
        display: grid;
    }
}
.main-pictures-item {
    transition: 0.7s;
    background-size: cover;
    background-repeat: no-repeat;
}

.picture-header {
    height: 100%;
    width: 100%;
    -webkit-backdrop-filter: brightness(0.4) grayscale(0.9) opacity(0.8);
    backdrop-filter: brightness(0.4) grayscale(0.9) opacity(0.8);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
}
.picture-header h6 {
    cursor: pointer;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    margin: 0;
    color: var(--almost-white);
    text-transform: capitalize;
    font-family: "Koulen", sans-serif;
    font-size: 35px;
}
.picture-header h6:nth-child(2) {
    align-items: flex-end;
}

@media (max-width: 800px) {
    .main-pictures-item:nth-child(1) .picture-header {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .main-pictures-item:nth-child(2) .picture-header {
        justify-content: flex-end;
        align-items: flex-start;
    }
    .main-pictures-item:nth-child(3) .picture-header {
        justify-content: flex-start;
        align-items: flex-end;
    }
    .main-pictures-item:nth-child(4) .picture-header {
        justify-content: flex-end;
        align-items: flex-end;
    }
}
.main-pictures-item:nth-child(1) {
    background-image: url("../img/bg/bg1.png");
}

.main-pictures-item:nth-child(1):hover {
    background-image: url("../img/bg/bg3.png");
}

.main-pictures-item:nth-child(2) {
    background-image: url("../img/bg/bg2.png");
}

.main-pictures-item:nth-child(2):hover {
    background-image: url("../img/bg/bg4.png");
}

.main-pictures-item:nth-child(3) {
    background-image: url("../img/bg/bg3.png");
}

.main-pictures-item:nth-child(3):hover {
    background-image: url("../img/bg/bg1.png");
}

.main-pictures-item:nth-child(4) {
    background-image: url("../img/bg/bg4.png");
}

.main-pictures-item:nth-child(4):hover {
    background-image: url("../img/bg/bg2.png");
}

.regular-section {
    padding: 50px 120px 100px 120px;
}

@media (max-width: 800px) {
    .regular-section {
        padding: 50px 40px;
    }
}
.heading {
    display: flex;
    flex-direction: column;
    line-height: 42px;
}

@media (max-width: 800px) {
    .heading {
        align-items: center;
        text-align: center;
    }
    .divider {
        display: flex;
        justify-content: center;
    }
}
.divider {
    width: 100%;
    padding: 6px 0;
    margin: var(--bottom-margin);
}
.divider span {
    display: block;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px;
    border-color: #FFFFFF;
    border-style: solid;
    width: 19%;
}

.section-content {
    width: 100%;
    display: -ms-grid;
    display: grid;
    gap: 50px;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 800px) {
    .section-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    .section-content p {
        margin: 0;
    }
}
.section-with-padding {
    box-sizing: border-box;
    padding: 20px;
}

/*@media (max-width: 1024px) {*/
/*    .section-with-padding {*/
/*        padding: 0px;*/
/*    }*/
/*}*/
.content-item {
    padding: 10px;
    color: var(--almost-white);
    font-family: "Inter", sans-serif;
    font-size: 17px;
    margin-bottom: 1em;
    line-height: 25px;
    font-weight: 400;
}

.button-wrapper {
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
}

@media (max-width: 800px) {
    .button-wrapper {
        justify-content: center;
    }
}
.button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange-bg-color);
    padding: 12px 24px;
    font-family: "Koulen", sans-serif;
    transition: 0.2s ease-in;
}
.button span {
    text-transform: capitalize;
    color: var(--text-black);
    line-height: 17px;
}

.button:hover {
    scale: 0.9;
}

.bg-fullscreen {
    background-color: rgba(255, 255, 255, 0);
    background-image: url("../img/bg-fullscreen-1.jpeg");
    background-position: center left;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 100px;
}

.promo-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 70px 120px;
}

@media (max-width: 800px) {
    .promo-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 30px;
    }
}
.promo-card {
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    background: transparent;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.4s;
}
.promo-card p {
    line-height: 25px;
    margin: 0;
}

.promo-card:hover {
    -webkit-backdrop-filter: brightness(30%) contrast(80%);
    backdrop-filter: brightness(30%) contrast(80%);
    box-shadow: 0 0 11px 7px rgba(0, 0, 0, 0.2);
}

.promo-card-background {
    width: 100%;
    box-shadow: none;
    background-color: rgba(35, 36, 41, 0.4);
    background-repeat: no-repeat;
    transition: 1s;
}

.promo-card-background:hover {
    background-size: cover;
    background-position: 100% 50%;
    -webkit-animation: translate-bg 2s ease;
    animation: translate-bg 2s ease;
}

.promo-card-background:hover:nth-child(1) {
    background-image: url("../img/gallery/img_16.webp");
}

.promo-card-background:hover:nth-child(2) {
    background-image: url("../img/gallery/img_21.webp");
}

.promo-card-background:hover:nth-child(3) {
    background-image: url("../img/gallery/img_9.webp");
}

@-webkit-keyframes translate-bg {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
@keyframes translate-bg {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.dark-filter {
    width: 100%;
    height: 100%;
    background-color: var(--bg-with-opacity-color);
}

/* Styling "Google Review" widget */
/*.eapps-widget-show-toolbar {*/
/*    display: none;*/
/*}*/
.es-embed-root {
    width: 400px;
    z-index: 1;
}

@media (max-width: 800px) {
    .es-embed-root {
        width: 100%;
    }
}
.es-widget-title-container,
.es-review-content-control-open,
.es-review-source-container,
.es-review-info-container {
    display: none !important;
}

.es-header-write-review-button {
    background-color: var(--orange-bg-color) !important;
    border-radius: 0 !important;
}
.es-header-write-review-button span {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: var(--text-black);
    font-size: 13px;
}

.es-header-container,
.es-review-background-container {
    background-color: transparent !important;
    padding: 0 !important;
}

.es-header-title-text,
.es-rating-value,
.es-review-author-name,
.es-review-content-text,
.es-review-info-date {
    color: var(--almost-white) !important;
}

.es-header-total-reviews-container {
    color: var(--white-half-opacity) !important;
}

.es-review-author-name {
    font-family: "Koulen", sans-serif;
}

.es-review-verified-badge-icon path:first-child {
    fill: var(--orange-bg-color) !important;
}

/* End styling widget */
.social-container {
    padding: 50px 0 20px 0;
    display: flex;
    gap: 10px;
}

@media (max-width: 800px) {
    .social-container {
        justify-content: center;
    }
}
.social-link {
    width: 38px;
    height: 38px;
    background-color: var(--orange-bg-color);
    transition: 0.2s ease-in;
}
.social-link a {
    color: var(--text-black);
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.social-link:hover {
    scale: 0.9;
}

.events-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .events-list {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .events-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.event-item {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.4s;
}
.event-item a {
    font-family: "Koulen", sans-serif;
    color: var(--almost-white);
    transition: 0.4s;
}

.event-item:hover {
    scale: 0.95;
}
.event-item:hover a {
    color: var(--hover-link-color);
}

.event-image {
    aspect-ratio: auto 300/200;
    margin-bottom: 20px;
}
.event-image img {
    width: 100%;
}

.section-with-bg {
    background-image: url("../img/bg-fullscreen-2.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section-with-bg > .regular-section {
    -webkit-backdrop-filter: brightness(30%) contrast(80%);
    backdrop-filter: brightness(30%) contrast(80%);
}

@media only screen and (max-device-width: 800px) {
    .section-with-bg, .bg-fullscreen {
        background-attachment: scroll;
    }
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.form-first-row {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

@media (max-width: 1280px) {
    .form-first-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
.input {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    padding: 8px 16px;
    resize: vertical;
}

.submit-btn {
    cursor: pointer;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    background-color: var(--orange-bg-color);
    color: var(--text-black);
    padding: 10px 30px;
    border: none;
    font-family: "Koulen", sans-serif;
    font-size: 17px;
    transition: 0.2s ease-in;
}

@media (max-width: 800px) {
    .submit-btn {
        width: 100%;
    }
}
.submit-btn:hover {
    scale: 0.9;
}

.extra-text {
    font-size: 12px;
    margin: 0;
}

.inline-link {
    color: var(--orange-bg-color);
    font-family: "Koulen", sans-serif;
    transition: 0.4s;
}

.inline-link:hover {
    color: var(--hover-link-color);
}

.inline-link-with-icon::after {
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
    margin: 0 3px 0 5px;
}

.footer {
    background-color: var(--footer-bg);
    font-family: "Inter", sans-serif;
}

.footer-section {
    padding-bottom: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20%;
}

.info {
    display: flex;
    flex-direction: column;
}
.info p {
    margin: 0 0 0.9rem 0;
    font-size: 17px;
    line-height: 31px;
}

@media (max-width: 800px) {
    .footer-columns {
        justify-content: center;
    }
    .info {
        justify-content: center;
        text-align: center;
    }
}
.footer-logo {
    width: 100%;
    margin-left: -16px;
    margin-bottom: 16px;
}
.footer-logo a {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 800px) {
    .footer-logo {
        margin: 0;
        display: flex;
    }
    .footer-logo a {
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 1280px) {
    .footer-columns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .info {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        width: 50%;
        margin: 0;
    }
    .footer-logo img {
        max-width: 100%;
    }
}
.footer-logo-img {
    width: 100%;
    max-width: 85%;
}

.bottom-heading {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bottom-heading h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.divider-short span {
    width: 40px;
}

@media (max-width: 1280px) {
    .divider-short {
        display: flex;
        justify-content: center;
    }
}
.bottom-navigation {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 4fr 4fr;
    grid-template-columns: 3fr 4fr 4fr;
}

.bottom-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.bottom-nav-list__item {
    padding: 13px 20px 13px 0;
    line-height: 25px;
    cursor: pointer;
    transition: 0.4s;
}
.bottom-nav-list__item a {
    font-size: 17px;
    font-weight: 400;
    color: var(--almost-white);
    transition: 0.4s;
}

.nav-column:first-child .bottom-nav-list .bottom-nav-list__item {
    line-height: 15px;
}

@media (max-width: 1280px) {
    .bottom-navigation {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav-column {
        text-align: center;
    }
    .bottom-nav-list__item {
        padding-right: 0;
    }
}
@media (max-width: 800px) {
    .bottom-navigation {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 35px;
    }
}
.bottom-nav-list__item:hover, .bottom-nav-list__item a:hover {
    color: var(--orange-bg-color);
}

.footer-wide-divider {
    width: 100%;
    height: 1px;
    background-color: var(--orange-bg-color);
    margin: 40px 0;
}

.commercial {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 800px) {
    .commercial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.payment-container {
    display: flex;
    gap: 5px;
}

.payment-icon, .payment-icon:before {
    color: var(--orange-bg-color);
    height: 50px;
    font-size: 50px;
}

/* Swiper */
.cocktail-swiper .swiper-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.cocktail-swiper .swiper-slide {
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.cocktail-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cocktail-swiper-button-prev:after, .cocktail-swiper-button-next:after {
    display: none;
}

.cocktail-swiper-button-prev i, .cocktail-swiper-button-next i {
    color: var(--orange-bg-color);
    font-size: 34px;
    font-weight: 900;
}

.gallery {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(var(--gallery-grid-columns), 1fr);
    grid-gap: 10px;
    transition: 300ms;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Модальное окно для галереи */
.gallery-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: 0.8s;
}

.modal-open {
    overflow: hidden;
}

.modal-header {
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
}

.modal-buttons-container {
    display: flex;
    gap: 30px;
}

.modal-button {
    cursor: pointer;
}

.modal-buttons-container svg {
    width: 30px;
    height: 30px;
    z-index: 100;
}

#zoom-minus {
    display: none;
}

#fullscreen-close {
    display: none;
}

.gallery-swiper {
    height: 100%;
}

/* For cookie.html */
.cookie-container {
    max-width: 800px;
}
.cookie-container h4 {
    font-size: 22px;
}
.cookie-container h5 {
    font-weight: 900;
}
.cookie-container p, .cookie-container ul, .cookie-container span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 25px;
}
.cookie-container a {
    text-decoration: underline;
}
.cookie-container details {
    background-color: rgba(239, 239, 239, 0.25);
    margin-bottom: 5px;
}
.cookie-container details div {
    padding: 10px;
}
.cookie-container .cookie-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cookie-container .cookie-description h5 {
    margin: 0;
}
.cookie-container .cookie-description p {
    margin: 0;
}
.cookie-container .before-table {
    background-color: var(--white);
    color: var(--text-black);
    padding: 15px;
    font-weight: bold;
}
.cookie-container .details-table-row {
    display: contents;
}
.cookie-container .details-table {
    font-family: "Inter", sans-serif;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--text-black);
    font-size: 14px;
    gap: 1px;
    background-color: rgb(213, 213, 213);
    border: 1px solid rgb(213, 213, 213);
}
.cookie-container .details-table-header {
    display: contents;
    font-weight: bold;
}
.cookie-container .details-table-header div {
    background-color: #F7F7F7;
}
.cookie-container .details-table-body {
    display: contents;
}
.cookie-container .details-table-body div {
    background-color: var(--white);
}
.cookie-container summary {
    background-color: rgba(239, 239, 239, 0.5);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 25px;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
}
.cookie-container summary::-webkit-details-marker {
    display: none;
}
.cookie-container summary div {
    padding: 0;
}
.cookie-container summary div:first-child {
    width: 100%;
}
.cookie-container summary div:nth-child(2) {
    flex-shrink: 0;
}
.cookie-container summary div h2 {
    margin: 0;
}
.cookie-container summary::after {
    cursor: pointer;
    content: "";
    background: url(https://shotsclubprague.com/wp-content/plugins/complianz-gdpr-premium/assets/css/../images/chevron-down.svg) no-repeat;
    transform: rotate(0);
    transition: all 0.5s ease;
    background-size: cover;
    height: 18px;
    width: 18px;
    min-width: 18px;
    margin: 3px;
}
.cookie-container details[open] > summary:after {
    transform: rotate(180deg);
}
.cookie-container .summary-input {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}
.cookie-container .summary-input-hidden {
    display: none;
}
.cookie-container .before-table {
    background-color: var(--white);
    color: var(--text-black);
    padding: 15px;
    font-weight: bold;
}
.cookie-container .details-table-row {
    display: contents;
}
.cookie-container .details-table {
    font-family: "Inter", sans-serif;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--text-black);
    font-size: 14px;
    gap: 1px;
    background-color: rgb(213, 213, 213);
    border: 1px solid rgb(213, 213, 213);
}
.cookie-container .details-table-header {
    display: contents;
    font-weight: bold;
}
.cookie-container .details-table-header div {
    background-color: #F7F7F7;
}
.cookie-container .details-table-body {
    display: contents;
}
.cookie-container .details-table-body div {
    background-color: var(--white);
}
.cookie-container summary {
    background-color: rgba(239, 239, 239, 0.5);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 25px;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
}
.cookie-container summary::-webkit-details-marker {
    display: none;
}
.cookie-container summary div {
    padding: 0;
}
.cookie-container summary div:first-child {
    width: 100%;
}
.cookie-container summary div:nth-child(2) {
    flex-shrink: 0;
}
.cookie-container summary div h2 {
    margin: 0;
}
.cookie-container summary::after {
    cursor: pointer;
    content: "";
    background: url(https://shotsclubprague.com/wp-content/plugins/complianz-gdpr-premium/assets/css/../images/chevron-down.svg) no-repeat;
    transform: rotate(0);
    transition: all 0.5s ease;
    background-size: cover;
    height: 18px;
    width: 18px;
    min-width: 18px;
    margin: 3px;
}
.cookie-container details[open] > summary:after {
    transform: rotate(180deg);
}
.cookie-container .summary-input {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}
.cookie-container .summary-input-hidden {
    display: none;
}