@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary-color: #baa078;
    --secondary-color: #212529;
    --white-color: rgb(254, 253, 253);
    --light-color: #F3EEEA;
    --beige-color: #ddd1b9;
    --gold-color: #baa078;
    --dark-color: #baa078;
    --border-radius: 0.5rem;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    transition: 0.5s ease;
    color: var(--bs-body-color);
    text-underline-offset: 2px;
}

a:hover {
    color: var(--primary-color);
}

a.back {
    text-decoration: underline;
}

a.back > i, a.text-decoration-underline > i {
    font-size: 0.95rem;
    position: relative;
    top: 1px;
    margin-right: 0.375rem;
}

.brand-logo {
    height: 36px;
}

#main-nav .navbar-brand {
    padding: 2px 0;
}

#main-nav {
    box-shadow: 0 8px 6px -9px darkgrey;
    transition: display 0.2s ease;
}

.double-menu #main-nav {
    box-shadow: none;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

#main-nav, #upper-nav {
    opacity: .98;
    padding-right: 1.5rem;
    padding-left: 3rem;
}

#main-nav .nav-link {
    color: var(--bs-body-color);
}

#main-nav .nav-link.active {
    color: var(--primary-color);
}

#upper-nav {
    padding: 1px 2rem;
    transition: background-color 0.2s ease;
    position: absolute;
}

#upper-nav .nav-link {
    color: var(--white-color);
}

#main-nav .nav-link, #upper-nav .nav-link {
    font-weight: 500;
    font-size: 95%;
    padding: 0.5rem 1.5rem;
}

#main-nav .nav-link:hover, #upper-nav .nav-link:hover {
    color: var(--primary-color);
}

#upper-nav.darker-background {
    background-color: var(--dark-color);
    top: 44px;
    position: fixed;
    box-shadow: 0 8px 6px -9px darkgrey;
}

#upper-nav.darker-background .nav-link.active {
    text-decoration: underline;
    text-underline-offset: 14px;
}

#upper-nav.darker-background .nav-link:hover {
    color: var(--secondary-color);
}

.main-video, .main-carousel {
    height: 100vh;
    min-height: 550px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(0.2) brightness(0.7)
}

#main-carousel .carousel-control-next, #main-carousel .carousel-control-prev {
    width: 4%;
}

.main-menu {
    height: 100vh;
    min-height: 550px;
    width: 100%;
    padding-top: 1rem;
    text-align: center;
    position: absolute;
    top: 0;
    color: var(--white-color);
}

.double-menu .main-menu {
    padding-top: 2rem;
}

.main-menu a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 110%;
    padding: 0 1rem;
}

.main-menu a.active {
    color: var(--primary-color) !important;
}

.main-menu a:hover {
    color: var(--primary-color);
}

img.main-logo {
    height: 110px;
}

img.scroll-down {
    width: 5rem;
}

a.scroll-down {
    padding: 0;
    position: absolute;
    bottom: 1rem;
    width: 100%;
    display: block;
}

.title-spacer {
    height: 16vh;
}

.main-menu h1 {
    margin-top: 0;
    margin-bottom: 8vh;
    font-size: 5.5rem;
}

.main-menu h2 {
    font-size: 3rem;
    color: var(--primary-color);
}

div.content {
    padding: 3rem;
}

footer.content {
    padding: 2rem 3rem 1rem 3rem;
}

div.content.static-page {
    padding-top: 7.5rem;
}

div.content.static-page.with-breadcrumbs {
    padding-top: 7rem;
}

hr.title-underline {
    width: 100px;
    height: 3px;
    color: var(--primary-color);
    background-color: var(--primary-color);
    opacity: 1;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.card-img-top {
    max-height: 275px;
    min-height: 200px;
    object-fit: cover;
    transition: 0.5s ease;
    filter: grayscale(10%);
    aspect-ratio: 3/2;
}

.card-img-top:hover {
    transform: scale(1.05);
}

.card-img-wrapper {
    overflow: hidden;
    border-top-left-radius: calc(var(--border-radius) - 1px);
    border-top-right-radius: calc(var(--border-radius) - 1px);
}

#actions .card-img-wrapper {
    border-radius: var(--border-radius);
}

.card-img-room-wrapper {
    overflow: hidden;
    position: relative;
    border-top-left-radius: calc(var(--border-radius) - 1px);
    border-top-right-radius: calc(var(--border-radius) - 1px);
}

.card-img-room-wrapper .card-img-top:hover {
    filter: brightness(0.4) grayscale(0.4);
}

.price-label {
    width: 100%;
    top: 40%;
    text-align: center;
    position: absolute;
    color: var(--white-color);
    pointer-events: none;
    font-size: 110%;
}

.voucher-actions {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    transition: 0.1s ease;
    z-index: 5;
    opacity: 0;
}

.voucher-actions a {
    color: var(--white-color);
    margin: auto;
    transition: border-color 0.5s ease;
    border: 1.5px solid var(--white-color);
    border-radius: 0.375rem;
    padding: 0.25rem 20px 0.25rem 14px;
}

.voucher-actions a:hover {
    color: var(--white-color) !important;
    border-color: transparent;
}

.voucher-actions a:hover > i.fading {
    transform: translateX(12px);
}

.voucher-actions form {
    margin: auto;
}

.card-img-room-wrapper:hover .price-label, .card-img-room-wrapper:hover .voucher-actions {
    z-index: 5;
}

.card-img-room-wrapper:hover .voucher-actions {
    opacity: 1;
}

.card-slider .card, #rooms .card, #vouchers .card, #wellness-services .card, #tours .card, #akce .card {
    border-radius: var(--border-radius);
    border: none;
    height: 100%;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
    overflow: hidden;
    --bs-card-spacer-x: 1.5rem;
    --bs-card-spacer-y: 1.25rem;
    transition: box-shadow 0.2s ease;
}

.card-slider .card i {
    width: 1.5rem;
}

#reviews .card {
    border-radius: var(--border-radius);
    border: none;
    height: 400px;
    background-color: snow;
    margin-bottom: 2rem;
}

#reviews .card > .card-body {
    padding: 1rem 3.25rem;
    display: flex;
    overflow: auto;
}

#reviews .card > .card-body > div {
    margin: auto 0;
}

#reviews .card p.text {
    font-style: italic;
    font-size: 110%;
}

#reviews .card p.author {
    font-weight: 500;
    margin-bottom: 0;
}

#actions .card {
    border: none;
    background-color: transparent;
}

#actions .card-img-top {
    border-radius: var(--border-radius);
    min-height: 220px;
    aspect-ratio: 7/5;
}

#akce .card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.15);
}

#akce .card-slider {
    padding-top: 1rem;
    padding-bottom: 2rem;
    --bs-gutter-x: 2rem;
}

.card-slider .list-group-item-date {
    background-color: snow;
}

.card-slider .card a:hover {
    color: var(--primary-color);
}

#actions .slider-controls .carousel-control-prev, #actions .slider-controls .carousel-control-next {
    bottom: 4rem;
}

.slider-controls .carousel-control-prev-icon, .slider-controls .carousel-control-next-icon {
    height: 2.5rem;
    width: 1.2rem;
    opacity: 1;
}

.slider-controls .carousel-control-prev-icon {
    background-image: url(../images/arrow_left.png);
}

.slider-controls .carousel-control-next-icon {
    background-image: url(../images/arrow_right.png);
}

.slider-controls .carousel-control-next, .slider-controls .carousel-control-prev {
    opacity: 1;
}

.slider-controls .carousel-control-next:disabled, .slider-controls .carousel-control-prev:disabled {
    display: none;
}

.tns-nav {
    text-align: center;
    margin-top: 0.5rem;
}

.tns-nav > button {
    background: var(--beige-color);
    border-radius: 50%;
    border: 0;
    padding: 0;
    margin: 12px 5px 0 5px;
    width: 10px;
    height: 10px;
}

.tns-nav > .tns-nav-active {
    background: var(--primary-color);
}

#actions, #rooms, #offers, #wellness-services, #tours, #akce {
    position: relative;
}

#actions .card-title {
    text-align: center;
    margin-top: 0.25rem;
}

.another-section {
    background-color: var(--light-color);
}

.show-more, .show-more-slider {
    text-align: right;
    padding: 0.25rem 1rem 0.75rem 0;
}

.show-more a, .show-more-slider a {
    text-decoration: underline;
}

footer {
    background-color: var(--dark-color);
    color: var(--white-color);
}

iframe.map {
    border: 0;
    width: 100%;
    height: 400px;
    margin-bottom: -7px;
}

.btn-social {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    font-size: 1.25rem;
}

.btn-social:hover {
    color: var(--dark-color);
    background-color: var(--white-color);
}

.btn-social.fb {
    padding: 5px 10px;
    margin-right: 0.5rem;
}

.btn-social.ig {
    padding: 5px 11.25px;
    margin-right: 0.5rem;
}

.btn-social.yt {
    padding: 5px 8.75px;
}

footer a {
    color: var(--white-color);
}

footer a:hover {
    color: var(--secondary-color);
}

footer .license {
    font-size: 95%;
    text-align: center;
}

footer .license a {
    text-decoration: underline;
}

footer hr {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    height: 2px;
}

#author {
    padding: 1rem 3rem 0 3rem;
    height: 40vh;
}

#services {
    padding: 4rem 0;
}

#services h2 {
    font-size: 2.5rem;
    text-align: center;
}

#services iframe {
    width: 100%;
    max-width: 600px;
    margin: auto;
    border-radius: var(--border-radius);
    aspect-ratio: 16 / 9;
}

.service-description {
    margin: auto;
    max-width: 600px;
}

.service-description p {
    margin-bottom: 2rem;
}

.service-card {
    margin: auto;
    max-width: 500px;
    width: 100%;
    position: relative;
    transition: transform 0.75s;
    transform-style: preserve-3d;
    aspect-ratio : 1 / 1;
    max-height: 250px;
}

a.service-card-outer:hover {
    color: var(--bs-body-color);
}

.service-card .card i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card .card h5 {
    margin-bottom: 0.5em;
}

.service-card .card {
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    backface-visibility: hidden;
    background-color: var(--white-color);
    position: absolute;
    transform: rotateY(180deg);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    position: absolute;
}

.service-card-outer:hover .service-card {
    transform: rotateY(180deg);
}

.btn.btn-primary {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
    border-width: 2px;
}

.btn.btn-primary.inverted {
    background-color: transparent;
    color: var(--primary-color);
}

.btn.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

i.fading {
    transition: transform 0.5s ease;
    transform: translateX(6px);
}

.btn.btn-primary:hover i.fading {
    transform: translateX(12px);
}

.btn.btn-secondary {
    padding: 0.5rem 1.5rem;
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
    border-width: 2px;
}

.btn.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--bs-secondary);
}

.main-container {
    max-width: 1800px;
    margin-right: auto;
    margin-left: auto;
}

.footer-col {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

a.parent-link > i {
    font-size: 1.2rem;
    position: relative;
    top: 2px;
    left: 2px;
}

p.child-link {
    margin-top: -0.25rem;
    margin-left: 0.5rem;
    display: none;
}

.col-links a.btn.btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.col-links a.btn.btn-primary.first {
    margin-top: 0;
}

.search-form {
    margin-bottom: 0.75rem;
}

.search-form .col-md-6, .search-form .col-md-4 {
    margin-top: 1rem;
}

h4.special-title {
    margin-top: 2rem;
    color: var(--primary-color);
}

h3.special-title {
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

img.gallery-thumbnail {
    cursor: pointer;
    max-width: 100%;
}

img.gallery-thumbnail.room-gallery {
    width: 100%;
}

#gallery img.gallery-thumbnail {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 7/5;
}

img.gallery-thumbnail:hover {
    opacity: 0.8;
}

.room-details {
    border-radius: var(--border-radius);
    margin: 0;
    background-color: var(--light-color);
    padding: 1.5rem;
}

.room-details.col-links {
    background-color: snow;
    border: 1px solid var(--beige-color);
}

.room-details .mt-3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

img.room-thumbnail {
    height: 100%;
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

.table td {
    background-color: transparent;
}

.table thead {
    border-bottom: 2px solid currentcolor;
}

.rooms-table thead td, .vouchers-table thead td {
    background-color: var(--light-color);
    font-weight: 500;
}

.rooms-table .carousel {
    width: 7rem;
}

.price-wrapper {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rooms-table .price-wrapper {
    max-width: 75ch;
}

.rooms-table td.room-title {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.rooms-table td, .vouchers-table td {
    vertical-align: middle;
}

.vouchers-table img {
    height: 4rem;
    border-radius: var(--border-radius);
    margin-right: 0.5rem;
}

.vouchers-table input[name="quantity"] {
    width: 5rem;
}

.vouchers-table .delete-button {
    color: var(--bs-danger);
    font-size: 150%;
    padding: 0;
}

.rooms-table div.room-title {
    height: fit-content;
    margin-top: auto;
    margin-bottom: auto;
}

.rooms-table img.rounded {
    height: 4rem;
    width: 100%;
    object-fit: cover;
}

.col-imgs img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.2rem;
    cursor: pointer;
}

.col-imgs img:hover {
    opacity: 0.8;
}

#about p.last {
    margin-bottom: 0;
}

.review-controls i {
    opacity: 1;
    color: black;
    font-size: 2rem;
}

.review-controls .carousel-control-prev, .review-controls .carousel-control-next {
    opacity: 0.7;
    width: 8%;
}

.review-controls .carousel-control-prev:hover, .review-controls .carousel-control-next:hover {
    opacity: 1;
}

.admin-edit-icon {
    float: right;
    font-size: 110%;
    color: #0d6efd;
    padding: 0.5rem;
}

.dropdown-item.gallery-dropdown {
    font-size: 100%;
    font-weight: 500;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.dropdown-toggle.gallery-dropdown:after {
    display: none;
}

.gallery-thumbnail-card {
    margin-top: 1rem;
}

.gallery-thumbnail-card h5 {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

hr.separator {
    margin-top: 3rem;
    margin-bottom: 2rem;
    height: 2px;
    color: var(--dark-color);
    background-color: var(--dark-color);
    opacity: 0.3;
}

.vouchers-card > p {
    margin-bottom: 0;
    color: var(--bs-gray);
    font-size: 105%;
    font-weight: 500;
}

.vouchers-card > p > a {
    font-size: 80%;
    border-radius: 0.5rem;
    float: right;
    padding: 0.125rem 0.5rem;
    background-color: var(--gold-color);
    color: var(--white-color);
}

div.card-body.vouchers-card > p > a:hover {
    color: var(--white-color);
}

div.card-body.vouchers-card {
    display: flex;
    flex-direction: column;
}

div.card-body.vouchers-card > h5 {
    flex: auto;
}

.form-select:focus, .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(215, 188, 129, 0.3);
    border-color: var(--gold-color);
}

a.cart-icon {
    position: absolute;
    right: 1rem;
    top: 2px;
}

a.cart-icon > i {
    font-size: 110%;
}

a.cart-icon span.badge {
    left: 22px;
    top: 1px
}

img.voucher-thumbnail {
    max-height: 280px;
    height: 100%;
    width: 100%;
    max-width: 500px;
    object-fit: cover;
}

#voucher-detail {
    padding-top: 5.5rem;
}

#voucher-detail h3.main-title {
    margin-top: 0.5rem;
}

#voucher-detail input.form-control {
    flex: none;
    width: 5rem;
}

#voucher-detail button.btn.btn-primary {
    border-color: var(--primary-color);
    border-width: 1.5px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

#voucher-detail .voucher-category {
    margin-top: 2rem;
}

#voucher-detail .voucher-price {
    margin-bottom: 1.5rem;
    color: var(--bs-gray-700);
}

#voucher-detail a {
    text-decoration: underline;
}

#voucher-detail .card-slider a {
    text-decoration: none;
}

#voucher-detail .vouchers-card h6 {
    font-size: 110%;
}

#voucher-detail .voucher-description, .order-summary {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    padding: 1.5rem;
}

#cart, #gdpr {
    padding-top: 6rem;
}

#cart .order-summary {
    width: fit-content;
    float: right;
    padding: 2rem;
}

.order-summary .total-price {
    float: right;
    font-weight: 600;
    color: var(--bs-gray-700);
}

.order-summary .btn.btn-primary.inverted {
    padding: 0.5rem 1rem;
    border: none;
}

.order-summary .btn.btn-primary.inverted > i.fading {
    transform: translateX(-6px);
}

.order-summary .btn.btn-primary.inverted:hover > i.fading {
    transform: translateX(-12px);
}

#vouchers .voucher-price {
    display: flex;
}

#vouchers .card-body {
    display: flex;
    flex-direction: column;
}

#vouchers .card-title {
    flex: auto;
}

#vouchers .voucher-price > div {
    margin: auto auto auto 0;
    font-size: 110%;
    font-weight: 500;
    color: var(--bs-gray);
}

#vouchers .voucher-price button {
    padding: 0.25rem 0.75rem;
}

#voucher-detail .card-img-top {
    max-height: 225px;
    min-height: 150px;
    max-width: 400px;
}

p.breadcrumbs {
    font-size: 90%;
    overflow-x: hidden;
    white-space: nowrap;
    margin-bottom: 1rem;
}

p.breadcrumbs a {
    text-decoration: underline;
}

p.breadcrumbs i.fa-angle-right {
    font-size: 110%;
    position: relative;
    top: 1px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.stronger {
    font-weight: 500;
}

.smaller-text {
    font-size: 90%;
}

#voucher-detail p.breadcrumbs {
    margin-top: 0;
}

div.order-form {
    padding: 1.5rem;
    border: 1px solid var(--beige-color);
    border-radius: var(--border-radius);
}

div.restaurant-reservation {
    position: sticky;
    top: 6.5rem;
    background-color: snow;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

div.wellness-reservation {
    position: sticky;
    top: 6.5rem;
}

table.restaurant-opening {
    font-weight: 500;
    max-width: 600px;
}

#menu .nav-pills button.nav-link {
    font-size: 110%;
    font-weight: 500;
    background-color: transparent;
    color: var(--bs-body-color);
    margin-left: 1rem;
    margin-right: 1rem;
}

#menu .nav-tabs {
    border-color: var(--beige-color);
}

#menu .nav-tabs button.nav-link {
    font-size: 110%;
    font-weight: 500;
    background-color: transparent;
    color: var(--bs-body-color);
}

 #menu .nav-tabs button.nav-link:hover {
    color: var(--primary-color);
}

#menu .nav-tabs button.nav-link.active {
    color: var(--primary-color);
    border-color: var(--beige-color) var(--beige-color) var(--white-color);
}

.price-separator {
    background-image: -webkit-radial-gradient(circle closest-side, rgba(0, 0, 0, 0.2) 99%, transparent 1%);
    background-image: radial-gradient(circle closest-side, rgba(0, 0, 0, 0.2) 99%, transparent 1%);
    background-position: bottom;
    background-size: 5px 3px;
    background-repeat: repeat-x;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 3px;
    margin-right: 5px;
    margin-bottom: calc((24px - 14px) / 2);
}

.menu-part > h5 {
    color: var(--gold-color);
}

.menu-part .menu-subtitle {
    font-size: 80%;
    color: var(--bs-gray);
    margin-top: -6px;
}

.menu-part .menu-price {
    color: var(--bs-gray-700);
}

.card-img-top {
    border-top-left-radius: calc(var(--border-radius) - 1px);
    border-top-right-radius: calc(var(--border-radius) - 1px);
}

img.rounded {
    border-radius: var(--border-radius) !important;
}

.special-offer {
    width: 350px;
    max-width: 70vw;
    background-color: snow;
    border-radius: var(--border-radius);
    box-shadow: var(--bs-box-shadow);
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    z-index: 100;
    border: 1px solid var(--beige-color);
    padding-bottom: 1rem;
}

.special-offer img {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.special-offer div.offer-content {
    padding: 1rem 1.5rem 0;
}

.special-offer h5 {
    margin-bottom: 1rem;
}

.special-offer p {
    margin-bottom: 1.5rem;
}

.special-offer .btn-close {
    position: absolute;
    z-index: 10;
    right: 0;
    opacity: 1;
    background-color: snow;
    margin: 0.5rem;
    background-size: 0.625rem;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.special-offer .btn-close:hover {
    transform: scale(110%);
}

.special-offer-collapsed {
    background-color: snow;
    border-radius: 50%;
    box-shadow: var(--bs-box-shadow);
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    color: var(--primary-color);
    border: 1px solid var(--beige-color);
    cursor: pointer;
    z-index: 100;
}

.special-offer-collapsed > div {
    display: flex;
    height: 100%;
    cursor: pointer;
}

.special-offer-collapsed i {
    margin: auto;
}

.special-offer.hidden, .special-offer-collapsed.hidden {
    display: none;
}

.special-offer .tns-nav {
    margin-top: -0.5rem;
}

#empty-action {
    color: var(--primary-color);
    font-weight: 400;
}

.beer-wrapper img {
    height: 300px;
    object-fit: contain;
}

.beer-wrapper h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    color: var(--gold-color);
    text-transform: uppercase;
}

.beer-wrapper h4 a {
    color: var(--gold-color);
}

.beer-wrapper p {
    color: var(--bs-gray-700);
}

.beer-wrapper {
    text-align: center;
}

.category-badge {
    background-color: var(--gold-color);
    color: var(--white-color);
    padding: 0.25rem 0.5rem;
    font-size: 85%;
    border-radius: calc(2 * var(--border-radius));
    position: absolute;
    font-weight: 500;
}

.category-badge.secondary {
    background-color: var(--bs-gray-500);
    margin-left: -2rem;
}

.action-detail {
    margin-bottom: 0.5rem;
    color: var(--bs-gray-700);
}

.beer-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.beer-card .card-content {
    position: relative;
}

.beer-card .card-content.collapsed {
    overflow: hidden;
    max-height: 400px;
}

.beer-card .card-content a.more {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background: var(--white-color);
}

.beer-card .card-content a.more:before {
    content: " ";
    position: absolute;
    height: 2rem;
    width: 100%;
    top: -2rem;
    left: 0;
    background: linear-gradient(to top, rgba(254, 253, 253, 1) 0%, rgba(254, 253, 253, 0) 100%);
}

.another-section .beer-card .card-content a.more {
    background: var(--light-color);
}

.another-section .beer-card .card-content a.more:before {
    background: linear-gradient(to top, rgba(243, 238, 234, 1) 0%, rgba(243, 238, 234, 0) 100%);
}

.beer-card .beer-img-wrapper {
    max-width: 40%;
    position: relative;
    height: fit-content;
}

.beer-card .beer-img-wrapper .btn.btn-primary {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-inline: auto;
    width: max-content;
    border-radius: 2rem;
}

.beer-card .beer-img-wrapper .btn.btn-primary > i {
    margin-right: 0.5rem;
    font-size: 90%;
}

.beer-card img {
    height: 400px;
    object-fit: contain;
}

.beer-card p {
    max-width: 500px;
    font-size: 90%;
    margin-bottom: 0.75rem;
}

.beer-card h4 {
    color: var(--gold-color);
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.beer-card h6 {
    font-size: 110%;
    margin-bottom: 0.75rem;
    color: var(--bs-gray-700);
}

.dropdown-toggle::after {
    vertical-align: .15em;
}

.dropdown-menu {
    --bs-dropdown-link-color: var(--white-color);
    --bs-dropdown-bg: var(--dark-color);
    --bs-dropdown-link-hover-bg: var(--dark-color);
}

.dropdown-menu[data-bs-popper] {
    left: auto;
    right: 0;
}

.dropdown-item {
    font-weight: 500;
}

.modal {
    --bs-modal-width: 520px;
}

.modal-footer {
    justify-content: space-between;
}

@media all and (min-width: 1700px) {

    .col-3xl-20 {
        flex: 0 0 auto;
        width: 20%;
    }

    .col-3xl-33 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-3xl-25 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-3xl-75 {
        flex: 0 0 auto;
        width: 75%;
    }

}

@media all and (min-width: 2000px) {

    .col-4xl-20 {
        flex: 0 0 auto;
        width: 20%;
    }

    .col-4xl-22 {
        flex: 0 0 auto;
        width: 22%;
    }

    .col-4xl-25 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-4xl-75 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-4xl-78 {
        flex: 0 0 auto;
        width: 78%;
    }

    .col-4xl-80 {
        flex: 0 0 auto;
        width: 80%;
    }

    .col-4xl-40 {
        flex: 0 0 auto;
        width: 40%;
    }

}

@media all and (min-width: 1401px) {

    #actions {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    #offers .tns-outer, #wellness-services .tns-outer, #tours .tns-outer, #akce .tns-outer {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .show-more-slider {
        padding-right: 0.25rem;
    }

    .row .card-slider {
        margin: 0;
    }

}

@media all and (max-width: 2000px) {

    .rooms-table .price-wrapper {
        max-width: 50ch;
    }

}

@media all and (max-width: 1750px) {

    .rooms-table .price-wrapper {
        max-width: 34ch;
    }

}

@media all and (max-width: 1400px) {

    .slider-controls .carousel-control-prev, .slider-controls .carousel-control-next {
        width: 4%;
    }

}

@media all and (max-width: 1200px) and (min-width: 768px) {

    #gallery-17, #gallery-18 {
        display: none;
    }

}

@media all and (max-width: 1260px) {

    #main-nav .nav-link, #upper-nav .nav-link {
        padding: 0.5rem 14px;
    }

}

@media all and (max-width: 1200px) {

    .service-description p {
        margin-bottom: 1rem;
    }

    #main-nav {
        padding-right: 0;
        padding-left: 1rem;
    }

    #upper-nav {
        padding-right: 0;
        padding-left: 0;
    }

    .rooms-table .disposable1 {
        display: none;
    }

    .rooms-table td {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    #services .gx-5 {
        --bs-gutter-x: 1.5rem
    }

    .col-links a.btn.btn-primary.first {
        margin-top: 1rem;
    }

    .room-details .disposable {
        display: none;
    }

    #about p.last {
        margin-bottom: 1rem;
    }

    #reviews .card > .card-body {
        padding: 1rem 2.25rem;
    }

    .rooms-table .price-wrapper {
        max-width: 25ch;
    }

}

@media all and (min-width: 992px) {

    #main-nav .nav-link.active {
        color: var(--white-color);
        background-color: var(--dark-color);
        display: inline;
        padding-bottom: 13px;
        padding-top: 12px;
        position: relative;
        top: 6px;
    }

    #main-nav .nav-link.active:hover {
        color: var(--secondary-color);
    }

    #actions .slider-controls .carousel-control-prev, #actions .slider-controls .carousel-control-next {
        width: 4%;
    }

    .room-details.sticky-buttons {
        position: sticky;
        top: 6.5rem;
    }

    .visible-sm {
        display: none;
    }

}

@media all and (max-width: 991px) {

    #main-nav {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    #main-nav .nav-item.disposable {
        display: none;
    }

    .rooms-table .disposable2 {
        display: none;
    }

    .col-imgs .row.mb-3 {
        margin-bottom: 0.25rem!important;
    }

    .col-imgs .row.gx-3, .row.col-imgs.gx-3 {
        --bs-gutter-x: 0.25rem;
    }

    .slider-controls .carousel-control-prev, .slider-controls .carousel-control-next {
        width: 5%;
    }

    .vouchers-table input[name="quantity"] {
        width: 3rem;
    }

    .vouchers-table .disposable1 {
        display: none;
    }

    .rooms-table .price-wrapper {
        max-width: 20ch;
    }

    .collapsed-sm {
        display: none;
    }

}

@media all and (max-width: 810px) {

    .main-menu a {
        padding: 0 0.5rem;
    }

    .main-menu h1 {
        font-size: 4.5rem;
    }

    .main-menu h2 {
        font-size: 2.5rem;
    }

    #services h2 {
        font-size: 2rem;
    }

    .slider-controls .carousel-control-next, .slider-controls .carousel-control-prev {
        width: 10%;
    }

    .room-details {
        padding: 1rem;
    }

    #voucher-detail .voucher-description {
        padding: 1rem;
    }

    #upper-nav .disposable {
        display: none;
    }

}

@media only screen and (max-width: 767px) {

    #author {
        padding: 1rem 1rem 0 1rem;
    }

    #upper-nav .nav-link {
        padding: 0.5rem;
    }

    .rooms-table .disposable3 {
        display: none;
    }

    #reviews .card > .card-body {
        padding: 2rem 3.25rem;
    }

    #reviews .card {
        height: auto;
    }

    #voucher-detail .voucher-category {
        margin-top: 1.5rem;
    }

    #voucher-detail h3.main-title {
        margin-top: 1rem;
    }

    .vouchers-table .disposable2 {
        display: none;
    }

    footer .disposable {
        display: none;
    }

    .special-offer {
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }

}

@media only screen and (max-width: 575px) {

    .rooms-table .disposable4 {
        display: none;
    }

    div.content, footer.content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gx-5 {
        --bs-gutter-x: 1.5rem
    }

    .slider-controls .carousel-control-next, .slider-controls .carousel-control-prev {
        display: none;
    }

    #services h2 {
        font-size: 1.75rem;
    }

    #gallery-17, #gallery-18 {
        display: none;
    }

    .col-imgs {
        display: none;
    }

    #reviews .card > .card-body {
        padding: 1.5rem 2.25rem;
    }

    #order-received .disposable {
        display: none;
    }

    #menu .nav-tabs button.nav-link {
        padding: 0.5rem;
        font-size: 105%;
    }

    #menu .nav-tabs {
        flex-wrap: nowrap;
    }

    .title-spacer {
        height: 10vh;
    }

    .main-menu h1 {
        margin-bottom: 2rem;
        font-size: 4rem;
    }

    p.breadcrumbs {
        display: none;
    }

    a.cart-icon {
        top: 0.25rem;
    }

    footer {
        text-align: center;
    }

    .special-offer div.offer-content {
        padding: 0.5rem 1rem 0;
    }

    .special-offer {
        padding-bottom: 0.75rem;
    }

    .special-offer h5 {
        margin-bottom: 0.5rem;
    }

    .special-offer p {
        margin-bottom: 1rem;
    }

    .card-slider .card, #rooms .card, #vouchers .card, #wellness-services .card, #tours .card, #akce .card {
        --bs-card-spacer-x: 1rem;
        --bs-card-spacer-y: 1rem;
    }

    .beer-card {
        flex-direction: column;
        margin-bottom: 0.25rem;
    }

    .beer-card h4, .beer-card h6 {
        text-align: center;
    }

    .beer-card .beer-img-wrapper {
        text-align: center;
        max-width: 100%;
    }

}
