html {
    font-size: 10px;
}

.page {
    padding-top: var(--main-menu-height);
}

body {
    font-family: var(--main-font);
}

h1,
.h1_style {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    letter-spacing: var(--letter-spacing-h1);
    color: var(--color-h1);
    margin: 2rem 0;
    text-align: center;
    font-weight: bold;
}

h2,
.h2_style {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    letter-spacing: var(--letter-spacing-h2);
    color: var(--color-h2);
    margin: 2rem auto 4rem;
    font-weight: bold;
    text-align: center;
    max-width: 86rem;
}

h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
    letter-spacing: var(--letter-spacing-h3);
    color: var(--color-h3);
}

h4 {
    font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
    letter-spacing: var(--letter-spacing-h4);
    color: var(--color-h4);
}

h5 {
    font-size: var(--font-size-h5);
    line-height: var(--line-height-h5);
    letter-spacing: var(--letter-spacing-h5);
    color: var(--color-h5);
}

h6 {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-h6);
    letter-spacing: var(--letter-spacing-h6);
    color: var(--color-h6);
}

p,
ul,
li,
a,
.content_elements_wrapper > div {
    font-size: var(--font-size-main);
    line-height: 2.5rem;
    letter-spacing: var(--letter-spacing-main);
    color: var(--color-main);
}

a {
    color: var(--color-links);
    text-decoration: var(--text-decoration-links);
}

.center {
    width: 100%;
    max-width: var(--main-center-width);
    margin: 0 auto;
    padding: var(--main-elements-padding);
    box-sizing: border-box;
}

.content_elements_wrapper > div {
    margin: var(--main-elements-margin);
}

html {
    scroll-padding-top: calc(var(--main-menu-height) + 20px);
}
.standard {
    text-align: center;
    margin: 10rem auto !important;
}

.standard .center {
    max-width: 860px;
}

/* Firefox */
.custom_scrollbar {
    scrollbar-width: auto;
    scrollbar-color: rgb(var(--secondary-color)) rgb(var(--primary-color));
}

/* Chrome, Edge, and Safari */
.custom_scrollbar::-webkit-scrollbar {
    width: 7px;
}

.custom_scrollbar::-webkit-scrollbar-track {
    background: rgb(var(--primary-color));
}

.custom_scrollbar::-webkit-scrollbar-thumb {
    background-color: rgb(var(--secondary-color));
    border-radius: 10px;
    border: 3px solidrgb(var(--primary-color));
}

.swiper_wrapper {
    height: 100%;
}

/* Privacy Styles */
[data-page='6'] .content_elements_wrapper {
    counter-reset: layer1;
}

.layer1::before {
    content: counter(layer1) '. ';
    counter-increment: layer1;
}

.layer1 {
    counter-reset: layer2;
}

.layer2::before {
    content: counter(layer1) '.' counter(layer2) '. ';
    counter-increment: layer2;
}
div#privacy_nav a {
    display: list-item;
    list-style: auto;
    margin-bottom: 5px;
    cursor: pointer;
}

div#privacy_nav {
    padding-left: 50px;
}

/* Privacy End */

/* Swiper Styles */

.swiper_button_next,
.swiper_button_prev {
    position: absolute;
    left: -4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url(/Resources/Public/Images/Icons/arrow_left.svg);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
    cursor: pointer;
    background-color: rgb(var(--secondary-color));
    transition: all 0.4s ease-in-out;
}
.swiper_button_next[aria-disabled='true'],
.swiper_button_prev[aria-disabled='true'] {
    opacity: 0.6;
    cursor: unset;
}
.swiper_button_next {
    right: -4rem;
    left: auto;
    background-image: url(/Resources/Public/Images/Icons/arrow_right.svg);
}

.scrlldown {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(153, 153, 153, 0.55);
    position: relative;
}

.mouse {
    width: 30px;
    height: 55px;
    border-radius: 20px;
    border: 3px solid white;
}
.mouse:before,
.mouse:after {
    content: '';
    display: block;
    position: absolute;
}
.scrolldown {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.mouse:before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 10px;
    left: 50%;
    border: 2px solid white;
    box-sizing: border-box;
    transform: translateX(-50%);
}
.mouse:after {
    top: 30px;
    left: calc(50% - 5px);
    border: 5px solid transparent;
    border-top-color: white;
    -webkit-animation: mouse-arrow 1.2s ease-in-out infinite;
    animation: mouse-arrow 1.2s ease-in-out infinite;
}

@-webkit-keyframes mouse-arrow {
    20%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(9px);
    }
    80% {
        transform: translateY(-3px);
    }
}

@keyframes mouse-arrow {
    20%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(9px);
    }
    80% {
        transform: translateY(-3px);
    }
}
/* END Swiper Styles */

/* Main Menu */
.main_navigation_wrapper {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgb(var(--primary-color));
    top: 0;
}

.main_navigation_inner,
.main_navigation_wrapper {
    height: var(--main-menu-height);
}

.main_menu {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 5rem;
    box-sizing: border-box;
}

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

.menu_item {
    color: white;
    font-size: 2.25rem;
    transition: all 0.3s ease-in-out;
    padding: 1rem 2.5rem;
    cursor: pointer;
    line-height: 27px;
}

.menu_item:is(:hover, :focus-within),
.menu_item.active {
    background: rgb(var(--secondary-color));
}

.main_navigation_inner {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    max-width: var(--menu-max-width);
    justify-content: space-between;
}
.main_navigation_progress {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 5px;
    background: rgb(var(--secondary-color));
}
/* END Main Menu */
/* Header Swiper */
.header_swiper {
    width: var(--header-slider-width);
    max-height: var(--header-slider-height);
    overflow: hidden;
    position: relative;
    height: 100%;
    margin: 0 auto;
}

.subpage .header_swiper {
    width: var(--header-slider-width-subpage);
    height: var(--header-slider-height-subpage);
}

.header_swiper_slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_swiper_slide img,
.header_swiper_slide video {
    display: block;
    width: 100%;
    height: var(--header-slider-height);
    object-fit: cover;
}

.header_swiper_button_prev,
.header_swiper_button_next {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url(/Resources/Public/Images/Icons/arrow_left.svg);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
    cursor: pointer;
    background-color: rgb(var(--secondary-color));
}

.header_swiper_button_next {
    right: 30px;
    left: auto;
    background-image: url(/Resources/Public/Images/Icons/arrow_right.svg);
}

.header_image_text {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    text-align: center;
    text-shadow: 0 0 0px rgba(var(--primary-color), 0.5), 0 0 5px rgba(var(--primary-color), 0.5);
    color: white;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header_image_text > div::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgb(var(--secondary-color));
    z-index: -1;
    transform: rotateX(55deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.header_image_text > div {
    position: relative;
    display: inline-block;
}

/* END Header Swiper */
/* Logo */
.logo_wrapper {
    max-width: 300px;
    background: white;
}
.alternative_languages {
    display: flex;
}
a.language_item:first-child::after {
    content: '/';
    margin: 0px 7px;
}
.language_wrapper_inner span.long_lang {
    display: none;
}

a.language_item.active {
    display: none;
}

a.language_item {
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
    display: flex;
}

.logo_wrapper,
.logo_wrapper .logo,
.logo_wrapper .logo a,
.logo_wrapper img {
    height: auto;
    width: 100%;
}

.logo_wrapper .logo a {
    padding: 10px 15px;
    box-sizing: border-box;
    display: inline-flex;
    margin-right: 25px;
    align-items: center;
    justify-content: center;
}
.logo_wrapper {
    max-width: 300px;
    background: white;
    height: 100%;
}
/* END Logo */

/* Special Button */
.special_button {
    position: absolute;
    right: 5rem;
    bottom: 5rem;
    z-index: 100;
    width: 175px;
    height: 175px;
    background: rgb(var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 3.5rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    border: 3px dotted rgb(var(--primary-color));
}
/* END Special Button */

/* Content Element Styles */

.content_element_title {
    font-size: var(--content-element-title-font-size);
    line-height: var(--content-element-title-line-height);
    letter-spacing: var(--content-element-title-letter-spacing);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.content_element_subtitle {
    font-size: var(--content-element-subtitle-font-size);
    line-height: var(--content-element-subtitle-line-height);
    letter-spacing: var(--content-element-subtitle-letter-spacing);
    color: rgb(var(--secondary-color));
}

/* END Content Element Styles */

/* Google Maps */

.content_elements_wrapper .google_maps {
    margin-bottom: 0;
}

/* END Google Maps */

/* Special Box */
.special_box_inner {
    display: flex;
    height: 55rem;
}

.special_box_inner > div {
    position: relative;
    overflow: hidden;
}
.special_box_slidshow.swiper img {
    width: 100%;
    height: 100%;
}

.special_box_content {
    padding: 50px;
    box-sizing: border-box;
    background: rgb(var(--primary-color));
    right: 2.5rem;
    top: 5rem;
    width: 750px;
}

.special_box_slidshow.swiper {
    left: 2.5rem;
    width: calc(100% - 750px);
}
.special_box_slidshow.swiper .swiper_button_next {
    right: 8rem;
}
.special_box_content,
.special_box_content p {
    color: white;
}
.inquire_now_button {
    font-size: 2rem;
    text-transform: uppercase;
    background: rgb(var(--secondary-color));
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
    padding: 0px 25px;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
}

.inquire_now_button::after {
    content: '';
    background: url(/Resources/Public/Images/Icons/double_arrow_right.svg);
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-size: cover;
    margin-left: 0.5rem;
}
/* End Special Box */

/* Filter */
.filter_tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7.5rem;
}

.filter_tab {
    width: auto;
    display: flex;
    align-items: center;
    margin-right: 2.5rem;
    border: 2px solid rgb(var(--primary-color));
    height: 50px;
    cursor: pointer;
    padding: 2px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.filter_tab img {
    width: auto;
    height: 100%;
}

.filter_tab .text {
    padding: 0px 20px;
}

.filter_tab.active {
    background: rgb(var(--primary-color));
    color: white;
}

.filter_content {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.filter_content.active {
    height: auto;
    visibility: visible;
    opacity: 1;
}
/* End Filter */

/* Hotel Information */
.content_elements_wrapper .hotel_information_wrapper {
    margin-bottom: 10rem;
}
.hotel_information_wrapper h1,
.hotel_information_wrapper h2 {
    text-align: center;
}

.hotel_information_items_wrapper {
    margin-top: 7.5rem;
}

.hotel_information_items,
.galerie_items {
    margin-top: 5rem;
}
.hotel_info_gallery {
    position: relative;
}
.hotel_info_content {
    padding: 25px 0px 0;
}
.hotel_info_gallery img {
    height: auto;
    width: 100%;
}
/* END Hotel Information */

/* Rooms */
.rooms_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.room_preview_item {
    background: rgb(var(--primary-color));
    color: white;
    overflow: hidden;
    margin: 3rem 3rem 0px 0px;
    width: calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
    position: relative;
    flex: 1 0 calc(33.3333% - 20px);
}
.room_extra_text p {
    color: white;
}
.room_preview_content {
    padding: 25px;
    box-sizing: border-box;
    height: calc(100% - 270px);
    display: grid;
    flex-direction: column;
    align-items: start;
}

.room_preview_item img {
    width: 100%;
    height: auto;
    display: block;
}

.room_preview_content .room_title {
    font-size: 3rem;
    color: rgb(var(--secondary-color));
    margin-bottom: 1rem;
}
.room_subtitle {
    font-size: 2.25rem;
}
.room_preview_content .room_price_from {
    font-size: 2rem;
}

.room_preview_item:nth-child(3n) {
    margin-right: 0 !important;
}

.room_preview_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    cursor: pointer;
    align-self: flex-end;
}

.room_preview_buttons > div,
.button_style {
    padding: 0px 25px;
    background: rgb(var(--secondary-color));
    text-transform: uppercase;
    position: relative;
    bottom: 0;
    right: 0;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms_title_texts {
    text-align: center;
}
.room_price_from {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(var(--primary-color));
    padding: 1.5rem 3rem;
    font-size: 2.75rem;
    text-transform: lowercase;
    white-space: nowrap;
}
/* END Rooms */

/* Room Popup */

.room_popup_wrapper,
.offer_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.room_popup,
.offer_popup {
    max-width: calc(100vw - 500px);
    max-height: calc(100vh - 150px);
    width: 100%;
    background: rgb(var(--primary-color));
    position: relative;
    top: -150px;
    transition: all 0.4s ease-in-out;
    overflow: auto;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 75px;
}

.room_popup_wrapper.active,
.offer_popup_wrapper.active {
    opacity: 1;
    visibility: visible;
}

.room_popup_wrapper.active .room_popup,
.offer_popup_wrapper.active .offer_popup {
    top: 0;
}

.room_popup_slideshow img {
    width: 100%;
    height: 100%;
}
.room_popup_top_wrapper {
    position: relative;
    display: flex;
}
.room_popup_slideshow {
    position: relative;
    height: 100%;
}

.room_popup_slideshow .swiper_slide {
    height: 100%;
}
.room_popup_slideshow_wrapper.swiper {
    position: relative;
    height: 500px;
    max-height: 500px;
    width: 800px;
}

.room_popup_content {
    padding: 25px;
    box-sizing: border-box;
    color: white;
    height: calc(500px - 65px);
    max-height: 500px;
    overflow: auto;
}
.room_popup_slideshow_wrapper.swiper,
.room_popup_content {
    width: 50%;
}
.room_popup_title,
.room_popup_prices_title,
.offer_popup_title {
    font-size: var(--content-element-title-font-size);
    line-height: var(--content-element-title-line-height);
    letter-spacing: var(--content-element-title-letter-spacing);
    color: rgb(var(--secondary-color));
}

.room_popup_subtitle,
.offer_popup_subtitle {
    font-size: 2.5rem;
    line-height: var(--content-element-subtitle-line-height);
    letter-spacing: var(--content-element-subtitle-letter-spacing);
    margin: 1rem 0px;
}
.close_popup {
    background: url(/Resources/Public/Images/Icons/close.svg);
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: rgb(var(--primary-color));
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 10000;
}

.room_popup_open {
    cursor: pointer;
}

.room_popup_button {
    margin-top: 10px;
    background: rgb(var(--primary-color));
    color: rgb(var(--secondary-color));
    display: inline-block;
    padding: 8px 25px;
    cursor: pointer;
}

.tns-inner {
    height: 100%;
}

.room_popup_description {
    margin-top: 2.5rem;
}
.room_popup_enquire_now.inquire_now_button {
    position: relative;
    bottom: 0;
    right: 0;
    display: inline-flex;
}

.room_popup_buttons {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 25px;
}
.room_popup_slideshow_wrapper.swiper .swiper_button_prev {
    left: 3rem;
}

.room_popup_slideshow_wrapper.swiper .swiper_button_next {
    right: 3rem;
}
.room_popup_prices_wrapper {
    color: white;
    margin: 50px 25px;
    font-size: 2.1rem;
    line-height: 3rem;
    width: 100%;
}

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

.room_pricetable_header > div:first-child,
.room_pricetable_body_item_wrapper > div:first-child {
    min-width: 150px;
    width: 150px;
}
.room_pricetable_body {
    width: 100%;
}

.room_pricetable_body_item_wrapper {
    display: flex;
    width: 100%;
}
.room_pricetable_header .room_pricetable_header_item,
.room_pricetable_body .room_pricetable_body_item {
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 1px solid white;
    border-right: 1px solid;
}
.room_pricetable_header .room_pricetable_header_item {
    background: rgb(var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.room_pricetable_header .room_pricetable_header_item:last-child,
.room_pricetable_body .room_pricetable_body_item:last-child {
    border-right: none;
}
.room_pricetable_header .room_pricetable_header_item:first-child {
    background: transparent;
}
.room_popup_prices_title {
    margin-bottom: 3rem;
    text-align: center;
}
.popup_switch_buttons > div {
    padding: 11px 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
}
.popup_switch_buttons .switch_prev {
    padding-left: 0;
}

.popup_switch_buttons .switch_next {
    padding-right: 0;
}
.popup_switch_buttons .switch_next {
    left: auto;
    right: 0;
}

.popup_switch_buttons {
    position: fixed;
    bottom: -150px;
    z-index: 100000;
    max-width: calc(100vw - 500px);
    width: 100%;
    left: 250px;
    transition: all 0.4s ease-in-out;
}
.popup_active .popup_switch_buttons {
    bottom: 25px;
}
.switch_next::after {
    content: '';
    background: url(/Resources/Public/Images/Icons/double_arrow_right.svg);
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-size: cover;
    margin-left: 0.5rem;
}

.switch_prev::before {
    content: '';
    background: url(/Resources/Public/Images/Icons/double_arrow_right.svg);
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-size: cover;
    margin-right: 0.5rem;
    transform: rotate(180deg);
}
/* END Room Popup */

/* Image Gallery */
.button_style_wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button_style {
    color: white;
}
.content_elements_wrapper .galerie_wrapper {
    margin-bottom: 10rem;
}
.galerie {
    display: flex;
    flex-wrap: wrap;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.galerie_item {
    margin-right: 15px;
    margin-bottom: 15px;
    width: calc(25% - 15px);
}

.galerie_item img {
    width: 100%;
    height: 100%;
}
/* END Image Gallery */

/* Offers */
.offer_slider_inner {
    position: relative;
    padding: 0;
    height: 100%;
}
.offer_slide,
.offer_preview {
    height: 100%;
}

.offer_slide_inner,
.offer_preview_inner {
    height: 100%;
    position: relative;
}

.offer_slide_image,
.offer_slide_content,
.offer_preview_image,
.offer_preview_content {
    overflow: hidden;
}
.offer_slide_image {
    width: 100%;
    height: 350px;
}
.offer_slide_image img,
.offer_preview_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.offer_slide_content,
.offer_preview_content {
    padding: 2.5rem;
    background: rgb(var(--primary-color));
    box-sizing: border-box;
    height: calc(100% - 350px);
}

.offer_slide_title,
.offer_preview_title,
.offer_detail_title,
.last_minute_item_title {
    font-size: 3rem;
    line-height: var(--content-element-title-line-height);
    letter-spacing: var(--content-element-title-letter-spacing);
    font-weight: bold;
    margin-bottom: 5px;
}

.offer_slide_subtitle,
.offer_preview_subtitle,
.offer_detail_subtitle {
    font-size: var(--content-element-subtitle-font-size);
    line-height: var(--content-element-subtitle-line-height);
    letter-spacing: var(--content-element-subtitle-letter-spacing);
    margin-bottom: 15px;
    color: rgb(var(--secondary-color));
}

.offer_slide_content_inner,
.offer_preview_content_inner,
.offer_detail_content_inner {
    font-size: var(--font-size-main);
    line-height: var(--line-height-main);
    letter-spacing: var(--letter-spacing-main);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.offer_slider_inner .swiper_button_prev,
.offer_slider_inner .swiper_button_next {
    background-color: rgb(var(--secondary-color));
    width: 60px;
    height: 60px;
    background-size: 80%;
}
.offer_slide_text p {
    color: white;
}

.offer_slide_price,
.offer_popup_price {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(var(--primary-color));
    padding: 1.5rem 3rem;
    font-size: 2.25rem;
    max-width: 260px;
    width: 100%;
    text-align: center;
    line-height: 3.5rem;
}

.offer_slide_price span,
.offer_popup_price span {
    font-size: 1.8rem;
    line-height: 2.3rem;
}
.offer_preview_detail_button,
.offer_detail_next_button,
.offer_detail_back_button,
.offer_slide_button,
.offer_slide_more_button {
    background: rgb(var(--secondary-color));
    color: white;
    padding: 0px 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    height: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    position: relative;
    right: 0;
    bottom: 0;
    float: right;
    margin-top: 2.5rem;
}
.offer_slide_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer_slide_button::after {
    content: '';
    background: url(/Resources/Public/Images/Icons/double_arrow_right.svg);
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-size: cover;
    margin-left: 0.5rem;
}
.offers_title_texts {
    text-align: center;
    margin-bottom: 5rem;
}
.content_elements_wrapper .offers_wrapper {
    margin-bottom: 10rem;
}

.offer_popup.popup {
    max-width: 80rem;
    overflow: hidden;
}

.close_offer_popup.close_popup {
    top: 2px;
    right: 2px;
}

.offer_popup_content,
.offer_popup_content p,
.offer_popup_content a,
.offer_popup_content li {
    color: white;
}

.offer_popup_content {
    box-sizing: border-box;
    overflow: auto;
    max-height: calc(100vh - 550px);
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

.offer_popup_button.inquire_now_button {
    display: inline-flex;
}
.offer_popup_content_inner {
    height: 100%;
    padding: 25px;
    box-sizing: border-box;
}
.offer_popup_buttons {
    text-align: right;
}
.offers_wrapper .popup_switch_buttons {
    max-width: 80rem;
    left: 50%;
    transform: translateX(-50%);
}
.offer_popup_content a {
    text-decoration: underline;
}
/* END Offers */

/* Last Minute */
.last_minute_item {
    display: flex;
    height: 350px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.last_minute_item_image {
    width: 400px;
    min-width: 400px;
}

.last_minute_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.last_minute_item_content {
    padding: 25px;
    width: 100%;
}

.last_minute_item_right {
    padding: 20px;
    border-left: 1px solid;
    width: 250px;
    min-width: 250px;
    line-height: 35px;
}

.last_minute_button.button_style {
    margin-top: 25px;
    cursor: pointer;
}

.last_minute_item_title {
    margin: 5px 0px 15px;
}
/* END Last Minute */

/* Pircetable */
.pricetable_header {
    display: flex;
    padding: 15px;
    box-sizing: border-box;
    align-items: flex-end;
    background: rgb(var(--primary-color));
    color: rgb(var(--secondary-color));
    position: sticky;
    top: var(--main-menu-height);
}

.pricetable_header .pricetable_header_item.pricetable_header_item_room {
    width: 250px;
    min-width: 250px;
}

.pricetable_header .pricetable_header_item.pricetable_header_item_rate {
    width: 100px;
    min-width: 100px;
}

.pricetable {
    font-size: var(--font-size-main);
    line-height: var(--line-height-main);
    letter-spacing: var(--letter-spacing-main);
}

.pricetable_header_item.pricetable_header_item_date {
    text-align: center;
}

.pricetable_body_item {
    display: flex;
    padding: 15px;
    box-sizing: border-box;
}

.pricetable_body_item .pricetable_body_item_room {
    width: 250px;
    min-width: 250px;
}

.pricetable_body_item .pricetable_body_item_rate {
    width: 100px;
    min-width: 100px;
}

.pricetable_body_item_price {
    text-align: center;
}

.pricetable_body_item:nth-child(even) {
    background: rgb(var(--secondary-color));
}
.pricetable_body_item_title {
    padding: 5px 0px;
}
/* END Pricetable */

/* Reviews */
.review_items {
    color: white;
    box-sizing: border-box;
    padding: 0px 25px;
}

.review_items p {
    color: white;
}

.review_items::before,
.review_items::after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    display: block;
    margin-top: 40px;
}

.review_items_wrapper {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
    background: rgb(var(--primary-color));
    padding: 5rem;
    box-sizing: border-box;
    margin-top: 65px;
    position: relative;
}

.review_items::before {
    margin-bottom: 25px;
    margin-top: 0;
}

.review_items_wrapper .swiper_button_prev {
    left: -3.5rem;
}

.review_items_wrapper .swiper_button_next {
    right: -3.5rem;
}
img.quotes_left,
img.quotes_right {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50px;
    top: 0;
    background-color: rgb(var(--primary-color));
}

img.quotes_right {
    left: auto;
    right: 50px;
    bottom: 0;
    top: auto;
    transform: rotate(180deg);
}

.review_text p {
    font-size: 2.25rem;
    line-height: 4rem;
}

.reviewer {
    font-style: italic;
}

.reviewer::before {
    content: '- ';
}
/* END Reviews */

/* Lightbox */
.lightbox_item {
    cursor: pointer;
}

.ac_lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    padding: 50px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
}

.ac_lightbox.active {
    opacity: 1;
    visibility: visible;
}

.ac_lightbox .lightbox_image {
    width: 100%;
    height: 100%;
    max-width: calc(100% - 50px);
    max-height: calc(100% - 50px);
    transition: all 0.4s ease-in-out;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ac_lightbox .next {
    background: url(/Resources/Public/Images/Icons/arrow_right.svg);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.ac_lightbox .prev {
    background: url(/Resources/Public/Images/Icons/arrow_left.svg);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.ac_lightbox .close {
    background: url(/Resources/Public/Images/Icons/close.svg);
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}
.ac_lightbox .counter {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: white;
    letter-spacing: 6px;
}
.ac_lightbox .description {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5rem;
}
/* Footer Partner */
.footer_partner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_partner a.footer_partner_item {
    margin-right: 125px;
}

.footer_partner a.footer_partner_item img {
    height: 120px;
}
/* END Footer Partner */

/* Footer Info */
.footer_info {
    padding: 0px 25px 100px;
    box-sizing: border-box;
}

.footer_info_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_info_block {
    width: 40%;
    text-align: center;
}
.footer_info_block:first-child span:nth-child(2)::after,
.footer_info_block:first-child span:nth-child(2)::before {
    content: '|';
    display: inline-block;
    margin: 0px 5px;
}

.footer_info_block:nth-child(2) {
    width: 20%;
}
.footer_info_block:first-child {
    text-align: left;
}

.footer_info_block:last-child {
    text-align: right;
}

.footer_info_block:nth-child(2) a {
    color: inherit;
}

.footer_info_block:nth-child(2) a:last-child {
    margin: 0;
}
.footer_info_block a::after {
    content: '|';
    margin: 0px 10px;
}

.footer_info_block a:last-child::after {
    display: none;
}
/* END Footer Info */

/* Sitemap */
.content_elements_wrapper .frame-type-menu_sitemap {
    width: 100%;
    max-width: var(--main-center-width);
    margin: 0 auto;
    padding: var(--main-elements-padding);
}
/* END Sitemap */

/* Weather */
.weather_data {
    margin-left: 20px;
}

.ac_weather {
    font-size: var(--font-size-main);
    line-height: var(--line-height-main);
    letter-spacing: var(--letter-spacing-main);
}

.weather_block {
    display: flex;
    align-items: center;
}
.weather_blocks_wrapper {
    display: flex;
    text-align: center;
    margin-bottom: 50px;
}

.weather_block_item {
    margin-right: 25px;
}

.weather_copyright {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.weather_copyright img {
    margin-right: 25px;
}

.weather_copyright a:nth-child(2) {
    max-width: 190px;
}
/* END Weather */

/* Instafeed */
.instafeed_caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    font-size: var(--font-size-main);
    overflow-y: auto;
    overflow-x: hidden;
    background: rgb(var(--primary-color));
    color: rgb(var(--secondary-color));
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.swiper_slide:is(:hover, :focus-within) .instafeed_caption {
    opacity: 1;
    visibility: visible;
}

.instafeed_item {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}
/* END Instafeed */

/* Footer */
.center.footer_inner {
    display: flex;
    padding: 50px 25px;
    box-sizing: border-box;
    max-width: 120rem;
}

.footer {
    background: rgb(var(--primary-color));
    color: white;
    font-size: 2rem;
}

iframe {
    display: block;
}

.footer_box {
    display: block;
    width: 100%;
}

.footer_box span,
.footer_box a {
    color: white;
    display: block;
    font-size: 2.25rem;
    line-height: 3.75rem;
}
.footer_box span.title {
    font-size: 3.25rem;
    margin-bottom: 15px;
    color: rgb(var(--secondary-color));
}

.footer_box a {
    text-decoration: underline;
}
.footer_box span.title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: rgb(var(--secondary-color));
}

.footer_box a {
    text-decoration: underline;
}

.footer_center.footer_box a {
    width: 60px;
    height: 60px;
    display: block;
    margin-right: 2.5rem;
    background-position: center;
    background-repeat: no-repeat;
}
.footer_info_block p {
    font-size: 17px;
}
.footer_center.footer_box .footer_social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_center.footer_box a:last-child {
    margin: 0;
}

a.facebook {
    background-image: url(/Resources/Public/Images/Icons/facebook.svg);
    background-size: 70px 70px;
}

a.instagram {
    background-image: url(/Resources/Public/Images/Icons/instagram.svg);
    background-size: 60px 60px;
}

.footer_center.footer_box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.footer_center.footer_box a.website {
    width: auto;
    padding: 0px 25px;
    background: rgb(var(--secondary-color));
    text-transform: uppercase;
    position: relative;
    bottom: 0;
    right: 0;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 30px;
    font-size: 2rem;
}

a.website::after {
    content: '';
    background: url(/Resources/Public/Images/Icons/double_arrow_right.svg);
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-size: cover;
    margin-left: 0.5rem;
}

.fixed_enquire_button {
    padding: 0px 25px;
    background: rgb(var(--secondary-color));
    text-transform: uppercase;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
}
.fixed_buttons {
    position: fixed;
    bottom: 25px;
    right: -500px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    gap: 15px;
}

.fixed_button_impressions,
a.fixed_button_voucher {
    width: 7rem;
    height: 7rem;
    background: rgb(var(--tertiary-color));
    padding: 15px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
}
.fixed_button_impressions img {
    width: 100%;
    height: 100%;
}

a.fixed_button_voucher {
    padding: 11px;
}

a.fixed_button_voucher img {
    width: 100%;
    height: 100%;
}
.scrolled .fixed_buttons {
    right: 25px;
}
.fixed_enquire_button::after {
    content: '';
    background: url(/Resources/Public/Images/Icons/double_arrow_right.svg);
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    background-size: cover;
    margin-left: 0.5rem;
}
/* END Footer */

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
}
.hamRotate.active {
    transform: rotate(45deg);
}
.hamRotate180.active {
    transform: rotate(180deg);
}
.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham4 .top {
    stroke-dasharray: 40 121;
}
.ham4 .bottom {
    stroke-dasharray: 40 121;
}
.ham4.active .top {
    stroke-dashoffset: -68px;
}
.ham4.active .bottom {
    stroke-dashoffset: -68px;
}

@media screen and (max-width: 1800px) {
    .header_image_text {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 1700px) {
    .room_popup {
        max-width: 90vw;
    }
}

@media screen and (max-width: 1500px) {
    .header_image_text {
        bottom: 250px;
    }
    .offer_slide_button,
    .offer_slide_more_button,
    .room_preview_buttons > div {
        display: flex;
        width: 100%;
        float: none;
        box-sizing: border-box;
        font-size: 1.75rem;
        height: 4rem;
        align-items: center;
        justify-content: center;
    }

    .offer_slide_buttons,
    .room_preview_buttons {
        flex-direction: column;
        justify-content: center;
    }

    .offer_slide_more_button {
        margin: 0;
    }

    .offer_slide_button,
    .room_enquire_now {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .header_swiper {
        overflow: visible;
    }

    .main_navigation_wrapper {
        padding: 0px 2.5rem;
        box-sizing: border-box;
    }
    .special_button {
        bottom: -5rem;
        width: 15rem;
        height: 15rem;
        font-size: 2rem;
        line-height: 3rem;
    }

    .header_image_text {
        bottom: 15rem;
        font-size: 3rem;
    }

    .main_menu {
        position: fixed;
        top: var(--main-menu-height);
        z-index: 100000;
        left: -30rem;
        width: 30rem;
        background: rgb(var(--primary-color));
        text-align: left;
        align-items: start;
        padding: 20px 0px 20px 20px;
        height: calc(100vh - var(--main-menu-height));
        transition: all 0.4s ease-in-out;
    }

    .ham {
        display: block;
    }

    .menu_items {
        flex-direction: column;
        text-align: left;
        align-items: start;
    }

    .menu_item {
        margin-bottom: 1rem;
        font-size: 3rem;
    }
    .language_wrapper {
        width: 80px;
        text-align: center;
    }

    .menu_item:last-child {
        margin: 0;
    }

    .main_menu.active {
        left: 0;
    }

    .header_swiper_button_prev,
    .header_swiper_button_next {
        width: 50px;
        height: 50px;
    }

    .header_image_text > div {
        margin-bottom: 1rem;
    }

    .header_image_text > div:last-child {
        margin: 0;
    }

    .swiper_button_next,
    .swiper_button_prev {
        width: 45px;
        height: 45px;
        left: -2rem;
    }

    .swiper_button_next {
        right: -2rem;
        left: auto;
    }
    .room_preview_item {
        width: calc(50% - 30px);
        flex: 1 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }

    .room_preview_item:nth-child(3n) {
        margin-right: 3rem !important;
    }

    .room_preview_item:nth-child(2n) {
        margin-right: 0;
    }
    .room_popup_top_wrapper {
        flex-direction: column;
    }

    .room_popup_buttons {
        position: relative;
        right: 0;
    }
    .filter_tabs {
        margin-top: 3rem;
        flex-wrap: wrap;
    }
    .filter_tab {
        margin-bottom: 25px;
    }

    .hotel_information_items,
    .galerie_items {
        margin-top: 2.5rem;
    }
    .galerie_item {
        width: calc(33.3333% - 15px);
    }

    .review_text p {
        font-size: 1.85rem;
    }

    .offer_slider_inner .swiper_button_prev,
    .offer_slider_inner .swiper_button_next {
        width: 45px;
        height: 45px;
    }

    .offer_slide_title {
        font-size: 2.5rem;
    }

    .offer_slide_price,
    .offer_popup_price {
        font-size: 1.8rem;
        padding: 1rem 3rem;
        line-height: 2.7rem;
    }

    .offer_slide_price span,
    .offer_popup_price span {
        font-size: 1.5rem;
        line-height: 2.15rem;
    }

    .offer_slide_image {
        height: 230px;
    }

    .offer_slide_content,
    .offer_preview_content {
        height: calc(100% - 230px);
    }
    .review_items_wrapper .swiper_button_next {
        right: -2rem;
    }
    .review_items_wrapper .swiper_button_prev {
        left: -2rem;
    }

    .offer_popup.popup img {
        height: clamp(200px, 35vh, 400px);
    }

    .offer_popup_content {
        max-height: calc(calc(100vh - 200px) - clamp(200px, 35vh, 400px));
        padding-bottom: 0;
    }
    .offer_popup_extra_info ul {
        padding-left: 15px;
    }

    .room_popup {
        max-width: 90vw;
    }

    .room_popup_slideshow_wrapper.swiper {
        height: clamp(200px, 50vw, 400px);
    }

    .room_popup_content {
        padding: 15px;
    }

    .room_popup_slideshow_wrapper.swiper,
    .room_popup_content {
        width: 100%;
    }

    .room_popup_content {
        height: auto;
        overflow: unset;
    }

    .inquire_now_button {
        position: relative;
        bottom: 0 !important;
        right: 0 !important;
        display: inline-flex;
        margin: 10px 0;
    }
    .offers_wrapper .popup_switch_buttons {
        max-width: 90vw;
        left: 5vw;
        transform: none;
    }
    .popup_active .popup_switch_buttons {
        bottom: 10px;
        max-width: 100%;
        left: 0;
    }
    .room_pricetable_header,
    .room_pricetable_body {
        min-width: 1000px;
        justify-content: unset;
    }

    .room_popup_pricetable {
        overflow: auto;
        max-width: calc(100% - 50px);
        width: 100%;
        margin: 0 auto;
    }
    .offer_popup.popup {
        margin-bottom: 50px;
        max-height: calc(100vh - 200px);
    }

    .last_minute_item {
        flex-wrap: wrap;
        height: auto;
    }

    .last_minute_item_image {
        width: 100%;
        height: 300px;
    }

    .last_minute_item_content {
        width: calc(100% - 300px);
        box-sizing: border-box;
    }

    .last_minute_item_right {
        width: 300px;
        min-width: 300px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 800px) {
    .standard {
        margin: 5rem auto !important;
    }

    .content_elements_wrapper .offers_wrapper {
        margin-bottom: 5rem;
    }

    h2,
    .h2_style {
        margin-bottom: 3rem;
    }

    .fixed_button_impressions,
    a.fixed_button_voucher {
        height: 4rem;
        width: 4rem;
        padding: 8px;
    }

    .scrolled .fixed_buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }

    .offer_slide_content,
    .offer_preview_content {
        padding: 2.5rem 3.5rem;
        height: auto;
    }
    .offer_slide_buttons {
        margin-top: 25px;
    }
    .content_elements_wrapper .hotel_information_wrapper {
        margin-bottom: 5rem;
    }

    .hotel_information_items_wrapper {
        margin-top: 5rem;
    }

    .special_button {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        border-radius: 0;
        box-sizing: border-box;
    }

    .header_swiper {
        margin-bottom: 10rem;
    }

    .header_image_text {
        display: none;
    }

    .filter_tabs {
        flex-wrap: nowrap;
        overflow: auto;
        align-items: start;
        justify-content: start;
    }

    .hotel_information_items .swiper_slide {
        height: 30rem;
    }

    .hotel_info_gallery img {
        height: 100%;
        object-fit: cover;
    }

    .offers_title_texts {
        margin-bottom: 0;
    }
    .room_price_from {
        font-size: 2rem;
        padding: 1rem 2rem;
    }
    .rooms_wrapper .room_preview_item {
        width: 100%;
        max-width: 100%;
        margin: 3rem 0 0 0 !important;
        flex: unset;
    }
    .room_preview_content .room_title {
        margin-bottom: 2rem;
        line-height: 3.5rem;
        font-size: 2.5rem;
    }
    .room_preview_content {
        height: auto;
    }
    .room_preview_item:first-child {
        margin: 0;
    }

    .galerie_item {
        width: calc(50% - 15px);
    }

    .content_elements_wrapper .galerie_wrapper {
        margin-bottom: 5rem;
    }

    .review_text p {
        font-size: 1.6rem;
    }

    img.quotes_left,
    img.quotes_right {
        width: 65px;
        height: 65px;
    }

    .review_items_wrapper {
        padding: 3rem;
    }

    .center.footer_inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer_center.footer_box {
        align-items: center;
        margin-top: 35px;
    }

    .footer_info_inner {
        flex-direction: column;
        justify-content: center;
    }

    .footer_info_block {
        width: 100%;
        text-align: center !important;
        margin-bottom: 17px;
    }
    .fixed_enquire_button {
        height: 4rem;
        font-size: 1.7rem;
        padding: 0px 10px;
    }
    .centerform .center {
        padding: 0;
    }

    div#Anfrage .center {
        padding: 0;
    }
    .main_navigation_wrapper {
        padding: 0px 10px;
    }

    .inquire_now_button {
        font-size: 1.75rem;
        right: 1.5rem;
        bottom: 1.5rem;
        padding: 0px 15px;
        height: 40px;
    }
    .offer_popup_content_inner {
        height: calc(100% - 10px);
        overflow: auto;
        padding: 10px;
    }

    .popup_switch_buttons > div {
        width: 100%;
        position: relative;
        padding: 5px 0px;
        white-space: nowrap;
    }
    .offer_slide_button,
    .room_enquire_now {
        position: relative;
        bottom: 0;
        right: 0;
    }

    .room_popup_slideshow_wrapper.swiper .swiper_button_next {
        right: 1.5rem;
    }

    .room_popup_slideshow_wrapper.swiper .swiper_button_prev {
        left: 1.5rem;
    }

    .room_popup_prices_wrapper {
        margin: 75px 0px;
    }

    .content_elements_wrapper .enquiry_btn_wrapper a {
        font-size: 1.8rem !important;
        padding: 10px 30px !important;
    }

    .review_items {
        padding: 0;
    }
    body .review_text p {
        font-size: 1.6rem;
        line-height: 2.7rem;
    }

    .last_minute_item_image {
        height: 200px;
    }

    .last_minute_item_content {
        width: 100%;
    }

    .last_minute_item_right {
        width: 100%;
        border-left: none;
        border-top: 1px solid;
    }
}

@media screen and (max-width: 550px) {
    .galerie_item {
        width: 100%;
        margin-right: 0 !important;
    }
}

.enquiry_wrapper {
    text-align: center;
}

/* Cookie Banner */
.eu_privacy_banner,
.eu_privacy_banner_content p a,
.eu_privacy_banner_content ul a,
.eu_privacy_banner_content ol a,
.eu_privacy_banner_content a,
.eu_privacy_law_text p a,
.eu_privacy_law_text ul a,
.eu_privacy_law_text ol a,
.eu_privacy_law_column p a,
.eu_privacy_law_column ul a,
.eu_privacy_law_column ol a {
    color: white !important;
}

.eu_privacy_banner_buttons a {
    border: 1px solid #ffffff !important;
    background-color: #ffffff !important;
    color: rgb(var(--primary-color)) !important;
}

.eu_privacy_banner_content svg path {
    fill: #fff !important;
}

.eu_privacy_law_column:nth-child(2) label {
    color: rgb(var(--primary-color)) !important;
}

.eu_privacy_law_column button[type='submit'] {
    background-color: rgb(var(--primary-color)) !important;
    border: 1px solid rgb(var(--primary-color)) !important;
    color: #ffffff !important;
}

.eu_privacy_banner_wrapper {
    background-color: rgba(var(--primary-color), 0.75) !important;
}

input:disabled + .flipswitch {
    background-color: rgb(var(--tertiary-color)) !important;
}

input:checked + .flipswitch {
    background-color: rgb(var(--tertiary-color)) !important;
}

/* END Cookie Banner */

.btn-success,
.btn-info {
    color: white !important;
    background: rgb(var(--secondary-color)) !important;
    border: none !important;
    padding: 7px 15px;
    font-size: 1.7rem !important;
    height: 40px;
}

.btn-danger {
    color: white !important;
    padding: 7px 15px !important;
    font-size: 1.7rem !important;
    text-transform: capitalize !important;
    height: 40px;
    background: rgb(var(--primary-color)) !important;
    border: none !important;
}

#ca_enquiry_ws a {
    font-size: 1.5rem;
}
.content_elements_wrapper div#Anfrage {
    margin-bottom: 5rem;
}
.col-sm-10.btn-group-detail {
    margin-bottom: 10px;
}

.content_elements_wrapper .enquiry_btn_wrapper {
    margin: 0 0 -10rem;
    padding: 50px 10px 0;
    text-align: center;
    background-color: rgb(var(--quartiary-color));
}
.content_elements_wrapper .enquiry_btn_wrapper a:link,
.content_elements_wrapper .enquiry_btn_wrapper a:visited {
    background: rgb(var(--tertiary-color));
    border-radius: 45px;
    color: white;
    display: inline-block;
    font-size: 2.1rem;
    margin: 0 15px 10px;
    min-width: 150px;
    padding: 15px 40px;
    text-transform: uppercase;
}
.content_elements_wrapper .enquiry_btn_wrapper a:is(:hover, :focus-within),
.content_elements_wrapper .enquiry_btn_wrapper a:active {
    color: white;
    opacity: 0.8;
}
.content_elements_wrapper .enquiry_wrapper,
.content_elements_wrapper div#Anfrage {
    background: rgb(var(--quartiary-color));
    margin-bottom: 0;
    padding: 60px 10px 40px;
}
.content_elements_wrapper .enquiry_wrapper {
    display: none;
}
.content_elements_wrapper .enquiry_wrapper.active {
    display: block;
}
