/*

        Main.css

        0. Default Configurations

        1. Header

        2. Menu

        3. Main Photo

        4. Booking Form

        5. Strips

        6. Footer

        7. Alert

        8. Modal

        9. Ecommerce

        X. Scrollbar and Text Selection

        Y. Animations

*/
/* Variables */
/* 0. Default Configurations */
:root {
    /* Colors */
    --red-caesius: #8b1e41;
    --red-caesius-dark: #59142A;
    --negative-color: #b3b3b3;
    --title-color: #705337;
    --cream-color: #E9E8DD;
    --silver-color: #A3A3A3;
    --dark-cream-color: #B99E79;
    --pink-color: #f3e8ec;
    --dark-font: #616161;
    /* Z-Index */
    --z-header: 999;
    --z-menu-button: 1099;
    --z-booking-form: 1199;
    --z-contact-form: 1199;
    --z-menu: 1399;
    /* Media Query Breakpoint */
    --b-point-xs: 425px;
    --b-point-sm: 630px;
    --b-point-md: 767px;
    --b-point-lg: 991px;
    --b-point-xl: 1160px;
    --b-point-xxl: 1400px;
}

* {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

html, body {
    height: 100%;
}

a, a:hover, a:visited {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3,
.text-h1, .text-h2, .text-h3 {
    display: block;
    width: calc(100% - 15px);
    max-width: 1200px;
    margin: auto;
    color: var(--title-color);
}

h1, .text-h1 {
    font-size: 24px;
    font-weight: 700;
}

h2, .text-h2 {
    font-size: 20px;
    font-weight: 500;
}

h3, .text-h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

label[for] {
    cursor: pointer;
}

input, textarea, select {
    font-size: 16px !important;
}

svg {
    color: #ffffff;
}

.form-control:focus {
    border-color: var(--red-caesius);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(139, 30, 65, 0.25);
}

.row.p-0 {
    margin: auto;
}

.hr {
    position: relative;
    text-align: center;
}
.hr img {
    width: 50px;
}
.hr:before, .hr:after {
    content: "";
    position: absolute;
    width: calc(50% - 50px);
    height: 2px;
    bottom: 0px;
    left: 0px;
    background-image: linear-gradient(to right, #ecc8b4 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 5px 2px;
    background-repeat: repeat-x;
}
.hr:after {
    left: auto;
    right: 0px;
}

.text-underline {
    text-decoration: underline;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.mark, mark {
    padding: 0px;
    background-color: #8b1e4147;
    font-size: inherit;
}

/* 1. Header */
#header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 40px 20px;
    padding-bottom: 0px;
    color: #ffffff;
    z-index: var(--z-header);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 767px) {
    #header {
        padding: 15px;
    }
}
#header.dark {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
#header .logo-box {
    padding-left: 70px !important;
}
@media only screen and (max-width: 991px) {
    #header .logo-box {
        padding-left: 0px !important;
    }
}
#header .logo-box .logo {
    width: 250px;
}
@media only screen and (max-width: 767px) {
    #header .logo-box .logo {
        width: 180px;
    }
}
#header .languages-switch {
    text-align: right;
}
#header .languages-switch a {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 15px;
    position: relative;
}
#header .languages-switch a:first-child {
    margin-left: 0px;
}
#header .languages-switch a:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    bottom: -1px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
#header .languages-switch a:hover:after {
    width: 100%;
}
#header .social-group, #header .member-of,
#header .contacts-group {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}
#header .social-group .social-icon {
    width: 21px;
    margin-right: 4px;
    vertical-align: middle;
}
#header .member-of {
    font-size: 10px;
    line-height: 12px;
}
#header .contacts-group .contact-icon {
    width: 23px;
    margin-right: 4px;
    vertical-align: bottom;
}
#header .header-desktop {
    padding-right: 70px;
}
#header .header-desktop .email-form {
    cursor: pointer;
}
@media only screen and (max-width: 991px) {
    #header .header-desktop {
        display: none;
        height: 0px;
    }
}
#header #shortcut {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
@media only screen and (max-width: 1160px) {
    #header #shortcut {
        display: none;
    }
}
#header #shortcut a {
    text-transform: uppercase;
    position: relative;
}
#header #shortcut a:not(:first-child) {
    margin-left: 25px;
}
#header #shortcut a:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    bottom: -1px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
#header #shortcut a:hover:after {
    width: 100%;
}

/* 2. Menu */
header .menu-box {
    position: fixed;
    top: 36px;
    right: 23px;
    padding: 2px 4px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s;
    -webkit-transition: color 0.3s ease, transform 0.3s;
    -moz-transition: color 0.3s ease, transform 0.3s;
    -o-transition: color 0.3s ease, transform 0.3s;
}
@media only screen and (max-width: 767px) {
    header .menu-box {
        top: 15px;
        right: 15px;
    }
}
header .menu-box:hover {
    transform: scale(1.1);
}
header .menu-box svg {
    width: 30px;
    height: auto;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s;
    -webkit-transition: color 0.3s ease, transform 0.3s;
    -moz-transition: color 0.3s ease, transform 0.3s;
    -o-transition: color 0.3s ease, transform 0.3s;
}
header .menu-box svg g {
    fill: #ffffff;
}
header .menu-box .menu-label {
    display: block;
    font-size: 12px;
    margin-top: 1px;
}
@media only screen and (max-width: 767px) {
    header .menu-box .menu-label {
        display: none;
    }
}
header .menu-box.fix-menu svg {
    z-index: var(--z-menu-button);
}
@media only screen and (max-width: 767px) {
    header .menu-box.fix-menu svg {
        top: 15px;
        right: 10px;
    }
}
header .menu-box.negative-menu {
    background-color: #ffffff;
    border-radius: 3px;
}
header .menu-box.negative-menu svg, header .menu-box.negative-menu .menu-label {
    color: var(--negative-color);
}
header .menu-box.negative-menu svg g, header .menu-box.negative-menu .menu-label g {
    fill: var(--negative-color);
}

.menu.menu-highlight {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000000;
    z-index: var(--z-menu);
}
@media only screen and (max-width: 767px) {
    .menu.menu-highlight {
        overflow: auto;
    }
}
.menu.menu-highlight .menu-close {
    top: 15px;
    right: 15px;
    width: 18px;
    cursor: pointer;
    -webkit-filter: drop-shadow(0px 0px 5px #666666);
    filter: drop-shadow(0px 0px 5px #666666);
}
.menu.menu-highlight .menu-row {
    min-height: calc(100% - 3rem);
}
.menu.menu-highlight .menu-frame {
    -webkit-backdrop-filter: blur(4px);
    padding: 0px;
    background-color: #ffffff;
}
.menu.menu-highlight .menu-half {
    padding: 70px 0px;
}
.menu.menu-highlight .languages-switch {
    position: absolute;
    top: 30px;
    left: 45px;
    margin: 0px;
}
.menu.menu-highlight ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.menu.menu-highlight ul.main-menu:not(:hover) a.active:not(.no-after):after {
    width: 100%;
}
.menu.menu-highlight ul:not(.submenu) {
    margin-left: 30%;
}
@media only screen and (max-width: 1400px) {
    .menu.menu-highlight ul:not(.submenu) {
        margin-left: 18%;
    }
}
.menu.menu-highlight ul:not(.submenu) > li {
    position: relative;
    margin: auto;
}
.menu.menu-highlight ul:not(.submenu) > li.has-submenu .mobile-expand {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 1px;
    transform: translateX(-40px);
    font-size: 20px;
    padding: 0px 10px;
}
.menu.menu-highlight ul:not(.submenu) > li:not(:last-child) {
    margin-bottom: 15px;
}
.menu.menu-highlight ul:not(.submenu) > li > a {
    font-size: 24px;
    font-weight: 300;
}
@media only screen and (max-width: 425px) {
    .menu.menu-highlight ul:not(.submenu) > li > a {
        font-size: 20px;
    }
}
.menu.menu-highlight ul:not(.submenu) > li:hover .submenu {
    visibility: visible;
    opacity: 1;
}
.menu.menu-highlight ul:not(.submenu) > li .submenu {
    position: initial;
    transform: translate(0px, 0px) !important;
    visibility: visible;
    opacity: 1;
    display: none;
    font-weight: 300;
    padding-left: 40px;
}
.menu.menu-highlight ul:not(.submenu) > li .submenu:before, .menu.menu-highlight ul:not(.submenu) > li .submenu:after {
    content: none !important;
}
.menu.menu-highlight ul:not(.submenu) > li .submenu li {
    white-space: nowrap;
    margin-bottom: 5px;
}
@media only screen and (max-width: 425px) {
    .menu.menu-highlight ul:not(.submenu) > li .submenu li a {
        font-size: 16px;
    }
}
.menu.menu-highlight a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.menu.menu-highlight a:not(.no-after):after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #000000;
    bottom: 1px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
.menu.menu-highlight a:not(.no-after):hover:after {
    width: 100%;
}
@media only screen and (min-width: 991px) and (max-width: 1160px) {
    .menu.menu-highlight .menu-half {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.menu.menu-highlight .menu-half:last-child {
    background-color: var(--cream-color);
}
.menu.menu-highlight .menu-half:last-child .transform-right {
    transform: translateX(-80px);
}
.menu.menu-highlight .menu-highlight-container {
    padding: 20px;
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box {
    border-radius: 3px;
    overflow: hidden;
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box:hover {
    transform: scale(1.03);
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box .photo {
    width: 100%;
    height: 240px;
}
@media only screen and (max-width: 1400px) {
    .menu.menu-highlight .menu-highlight-container .menu-highlight-box .photo {
        height: 160px;
    }
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box .title {
    font-size: 20px;
    text-transform: none;
}
@media only screen and (max-width: 1160px) {
    .menu.menu-highlight .menu-highlight-container .menu-highlight-box .title {
        font-size: 18px;
    }
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box .info {
    position: relative;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box .info:before, .menu.menu-highlight .menu-highlight-container .menu-highlight-box .info:after {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.menu.menu-highlight .menu-highlight-container .menu-highlight-box .info:after {
    left: auto;
    right: 0px;
}

/* 3. Main Photo */
#main-photo {
    position: relative;
    color: #fff;
    height: 70%;
}
@media only screen and (max-width: 767px) {
    #main-photo {
        height: 45%;
    }
}
#main-photo.dark:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(140, 140, 140, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
#main-photo.small {
    height: 500px;
}
@media only screen and (max-width: 767px) {
    #main-photo.small {
        height: 350px;
    }
}
#main-photo.large {
    height: 100%;
}
@media only screen and (max-width: 991px) {
    #main-photo.large #scroll-down-icon {
        bottom: 60px;
    }
}
@media only screen and (max-width: 991px) {
    #main-photo.large .cta {
        bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #main-photo.large .cta {
        bottom: 90px;
        left: 25px;
        zoom: 0.7;
    }
}
#main-photo.none {
    height: 0px;
}
#main-photo .background {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#main-photo .page-title {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    width: calc(100% - 15px);
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    line-height: 30px;
    min-height: 120px;
    display: none !important;
}
#main-photo .page-title.blur {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
#main-photo .page-title.blur.dark {
    background-color: rgba(0, 0, 0, 0.1);
}
#main-photo .page-title .title {
    display: block;
    font-size: 24px;
    align-self: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
}
@media only screen and (max-width: 991px) {
    #main-photo .page-title .title {
        font-size: 20px;
    }
}
#main-photo .page-title .subtitle {
    display: block;
    font-size: 16px;
    align-self: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    line-height: 18px;
}
@media only screen and (max-width: 991px) {
    #main-photo .page-title .subtitle {
        font-size: 14px;
    }
}
#main-photo .cta {
    position: absolute;
    bottom: 40px;
    left: 150px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    text-align: center;
    cursor: pointer;
    transition: background-color 0.5s, transform 0.5s;
    -webkit-transition: background-color 0.5s, transform 0.5s;
    -moz-transition: background-color 0.5s, transform 0.5s;
    -o-transition: background-color 0.5s, transform 0.5s;
}
@media only screen and (max-width: 991px) {
    #main-photo .cta {
        bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #main-photo .cta {
        left: 25px;
        zoom: 0.7;
    }
}
#main-photo .cta.dark {
    background-color: rgba(0, 0, 0, 0.1);
}
#main-photo .cta:hover {
    transform: scale(1.1);
    background-color: var(--negative-color);
}
#main-photo .cta .circle {
    height: 0px;
    padding: 50% 0%;
    display: flex;
}
#main-photo .cta .circle:before {
    content: "";
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 72%;
    height: 70%;
    background-image: url(https://www.hotelcaesiusterme.com/uploads/image/wave_1640095273.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 1;
}
#main-photo .cta .circle:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    zoom: 0;
    animation-name: cta-animation-2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes cta-animation-2 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    75% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}
#main-photo .cta .circle .text {
    align-self: center;
    min-width: 120px;
    font-weight: 600;
}
#main-photo .cta .circle .text .top-text {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
}
#main-photo .cta .circle .text .middle-text {
    display: block;
}
#main-photo .cta .circle .text .bottom-text {
    display: block;
    font-size: 14px;
}
#main-photo .left-buttons-box {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    padding-right: 5px;
    z-index: var(--z-menu-button);
}
@media only screen and (max-width: 767px) {
    #main-photo .left-buttons-box {
        left: 10px;
    }
}
#main-photo .left-buttons-box > div {
    max-width: 35px;
    white-space: nowrap;
}
#main-photo .left-buttons-box > div:not(:last-child) {
    margin-bottom: 25px;
}
#main-photo .left-buttons-box > div:hover .button-label {
    padding: 4px 11px;
    padding-left: 25px;
    width: auto;
    height: auto;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}
#main-photo .left-buttons-box svg {
    cursor: pointer;
    transition: transform 0.3s, color 0.3s ease, fill 0.5s ease, stroke 0.3s ease;
    -webkit-transition: transform 0.3s, color 0.3s ease, fill 0.5s ease, stroke 0.3s ease;
    -moz-transition: transform 0.3s, color 0.3s ease, fill 0.5s ease, stroke 0.3s ease;
    -o-transition: transform 0.3s, color 0.3s ease, fill 0.5s ease, stroke 0.3s ease;
}
#main-photo .left-buttons-box svg.negative-menu {
    color: var(--negative-color);
    background-color: #ffffff;
    border-radius: 50%;
}
#main-photo .left-buttons-box svg:hover {
    transform: scale(1.1);
}
#main-photo .left-buttons-box .button-label {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    margin-left: -16px;
    padding: 0px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 0 100em 100em 0;
    -webkit-mask-image: radial-gradient(circle 1px at 0 50%, transparent 0, transparent 20px, #000000 20px);
    height: 0px;
    visibility: hidden;
    opacity: 0;
}
#main-photo .main-cta {
    position: fixed;
    bottom: 0px;
    right: 175px;
    text-align: right;
    z-index: var(--z-menu-button);
}
@media only screen and (max-width: 991px) {
    #main-photo .main-cta {
        right: 0px;
        width: 100%;
        text-align: center;
    }
}
#main-photo .booking-cta {
    position: relative;
    background-color: var(--red-caesius);
    padding: 14px 28px;
    padding-bottom: 12px;
    line-height: 18px;
    cursor: pointer;
    overflow: hidden;
    z-index: var(--z-menu-button);
}
#main-photo .booking-cta:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
    padding-bottom: 100%;
    border-radius: 50%;
    zoom: 0;
    animation-name: cta-animation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes cta-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    75% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
#main-photo .mobile-email-box, #main-photo .mobile-phone-box {
    display: none;
    position: absolute;
    bottom: 3px;
    left: 3px;
    width: 40px;
    height: 38px;
    padding: 8.5px;
    padding-right: 11.5px;
    line-height: 18px;
    border-right: 1px solid #ffffff;
    cursor: pointer;
    z-index: var(--z-menu-button);
}
#main-photo .mobile-email-box .contact-icon, #main-photo .mobile-phone-box .contact-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
#main-photo .mobile-email-box .email-form, #main-photo .mobile-phone-box .email-form {
    cursor: pointer;
}
@media only screen and (max-width: 991px) {
    #main-photo .mobile-email-box, #main-photo .mobile-phone-box {
        display: block;
    }
}
#main-photo .mobile-phone-box {
    padding-right: 8.5px;
    padding-left: 11.5px;
    left: auto;
    right: 3px;
    border-right: none;
    border-left: 1px solid #ffffff;
}
#main-photo .mobile-email-box {
    display: block;
}
@media only screen and (min-width: 992px) {
    #main-photo .mobile-email-box {
        background-color: var(--red-caesius);
        bottom: 0px;
        left: 0px;
        transform: translateX(-100%);
        width: 47px;
        height: 44px;
        padding: 12.5px;
    }
}
#main-photo #scroll-down-icon {
    position: absolute;
    bottom: 7px;
    right: 50%;
    transform: translateX(50%);
    height: 40px;
    cursor: pointer;
    z-index: 1;
}

/* 4. Booking Form */
.booking-form {
    position: fixed;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background-color: var(--red-caesius);
    color: #ffffff;
    box-shadow: 0px 0px 5px 0px #000000;
    z-index: var(--z-booking-form);
    background-image: url("https://www.hotelcaesiusterme.com/uploads/image/fontanta-casius-rosa_1635937561.svg");
    background-position: right -43px bottom -38px;
    background-repeat: no-repeat;
    text-align: center;
    transform: translateY(110%);
}
@media only screen and (max-width: 630px) {
    .booking-form {
        overflow: auto;
        height: 100%;
    }
}
.booking-form.animated {
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}
.booking-form.open {
    transform: translateY(0%);
}
.booking-form .row > div {
    align-self: center;
    text-align: center;
    width: auto;
}
.booking-form input {
    width: 100%;
}
.booking-form .booking-close {
    position: absolute;
    width: 15px;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.booking-form .booking-field {
    display: inline-block;
    margin: auto 12px;
    vertical-align: middle;
}
@media only screen and (max-width: 991px) {
    .booking-form .booking-field {
        margin-top: 15px;
    }
}
@media only screen and (max-width: 1400px) {
    .booking-form .booking-field.booking-phrase {
        display: block;
        padding: 0px;
        padding-bottom: 10px;
    }
}
@media only screen and (max-width: 1400px) {
    .booking-form .booking-field.booking-submit {
        display: block;
        padding: 0px;
        padding-top: 30px;
    }
}
.booking-form .booking-field.booking-phrase {
    font-size: 22px;
    text-transform: uppercase;
    padding-top: 0px !important;
}
.booking-form .booking-field.booking-submit {
    padding-bottom: 0px !important;
}
.booking-form .booking-field.booking-submit button {
    background-color: var(--red-caesius);
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 7px 14px;
    text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
    .booking-form .booking-field.date-field {
        width: calc(50% - 30px);
    }
}
@media only screen and (max-width: 630px) {
    .booking-form .booking-field.date-field {
        display: block;
        width: auto;
    }
}
@media only screen and (max-width: 991px) {
    .booking-form .booking-field:not(.date-field, .booking-phrase, .booking-submit) {
        margin-top: 15px;
        width: calc(25% - 30px);
    }
}
@media only screen and (max-width: 630px) {
    .booking-form .booking-field:not(.date-field, .booking-phrase, .booking-submit) {
        display: block;
        width: auto;
    }
}
.booking-form .booking-field .booking-label {
    font-size: 16px;
}
.booking-form .booking-field .booking-input-box {
    width: 110px;
    padding: 7px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
}
@media only screen and (max-width: 991px) {
    .booking-form .booking-field .booking-input-box {
        width: 100% !important;
    }
}
.booking-form .booking-field .booking-input-box.date-box {
    width: 140px;
}
.booking-form .booking-field .booking-input-box > input[type=text], .booking-form .booking-field .booking-input-box > span {
    color: #000000;
    border: none;
    outline: none;
    text-align: center;
    padding: 2px;
}
.booking-form .booking-field .booking-input-box > span.input {
    display: block;
}
.booking-form .booking-field .booking-input-box > span {
    text-transform: uppercase;
}
.booking-form .booking-field .booking-input-box hr {
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    margin-top: 3px;
    margin-bottom: 3px;
}
.booking-form .booking-field .booking-input-box .bottom-icon {
    width: 13px;
}
@media only screen and (max-width: 630px) {
    .booking-form .booking-field .booking-input-box hr, .booking-form .booking-field .booking-input-box .bottom-icon, .booking-form .booking-field .booking-input-box .desktop-text {
        display: none !important;
    }
}
.booking-form .booking-field .booking-input-box .mobile-text {
    display: none !important;
}
@media only screen and (max-width: 630px) {
    .booking-form .booking-field .booking-input-box .mobile-text {
        display: block !important;
    }
}
.booking-form .booking-field .booking-input-box > select, .booking-form .booking-field .booking-input-box > input[readonly] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    cursor: pointer;
    opacity: 0;
}

/* 5. Strips */
.strip {
    padding: 20px !important;
}
.strip.photo-strip {
    padding: 20px 0px !important;
}
@media only screen and (max-width: 991px) {
    .strip.photo-strip {
        justify-content: center;
    }
}
.strip.photo-strip.small {
    justify-content: center;
}
.strip.photo-strip.small > div {
    height: 400px;
    max-width: 1000px;
}
.strip.photo-strip > div {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media only screen and (max-width: 991px) {
    .strip.photo-strip > div {
        height: 400px;
        max-width: 1000px;
    }
}
.strip.photo-strip > div .page-title {
    position: absolute;
    width: calc(100% - 110px);
    max-width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    line-height: 40px;
}
.strip.photo-strip > div .page-title.blur {
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.strip.photo-strip > div .page-title .title {
    display: block;
    font-size: 20px;
    line-height: 30px;
}
.strip.photo-strip > div .page-title .subtitle {
    display: block;
    font-size: 18px;
    line-height: 23px;
}
@media only screen and (max-width: 991px) {
    .strip.photo-strip > div .page-title .subtitle {
        font-size: 14px;
    }
}
.strip.photo-strip > div .page-title hr {
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    max-width: 60%;
}
.strip.photo-strip > div .page-title .cta {
    position: relative;
}
.strip.photo-strip > div .page-title .cta:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.6);
    bottom: -3px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
.strip.photo-strip > div .page-title .cta:hover:after {
    width: 100%;
}
.strip #page-icon {
    width: 100px;
    max-height: 100px;
    margin: 20px !important;
}
.strip .page-icon.circle-limit {
    width: 100px;
    margin: auto;
    margin-top: 15px;
}
.strip .page-icon.circle-limit .circle {
    position: relative;
    height: 0px;
    padding-bottom: 100%;
    background: var(--cream-color);
    border-radius: 50%;
}
.strip .page-icon.circle-limit .circle.special {
    background: var(--red-caesius);
}
.strip .page-icon.circle-limit .circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: 45%;
    object-fit: contain;
}
.strip .max-page-width {
    width: calc(100% - 15px);
    max-width: 1500px;
    margin: auto;
}
.strip .icons-box {
    width: calc(100% - 15px);
    max-width: 1500px;
    margin: auto;
    padding: 1rem !important;
    border: 1px solid var(--title-color);
    border-radius: 50rem;
    background-image: url("https://www.hotelcaesiusterme.com/uploads/image/fontanta-casius-grigio_1636384857.svg");
    background-position: right -43px bottom -38px;
    background-size: 300px;
    background-repeat: no-repeat;
}
.strip .icons-box.bg-big {
    background-size: 400px;
}
.strip .icons-box.padding {
    padding: 1rem 100px !important;
}
@media only screen and (max-width: 991px) {
    .strip .icons-box.padding {
        padding: 1rem 50px !important;
    }
}
@media only screen and (max-width: 991px) {
    .strip .icons-box {
        border-radius: 5rem;
    }
}
.strip .icons-box .title {
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
}
.strip .icons-box .highlight-box {
    display: inline-block;
    width: 120px;
    margin: 0px 7px;
    vertical-align: top;
}
@media only screen and (max-width: 1160px) {
    .strip .icons-box .highlight-box {
        width: 100px;
    }
}
.strip .icons-box .highlight-box .circle-limit {
    width: 100%;
    margin: auto;
    margin-top: 15px;
}
.strip .icons-box .highlight-box .circle-limit .circle {
    position: relative;
    height: 0px;
    padding-bottom: 100%;
    background: var(--cream-color);
    border-radius: 50%;
}
.strip .icons-box .highlight-box .circle-limit .circle.special {
    background: var(--red-caesius);
}
.strip .icons-box .highlight-box .circle-limit .circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: 45%;
    object-fit: contain;
}
.strip .icons-box .highlight-box .text {
    color: var(--dark-cream-color);
}
.strip .icons-box .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: block;
}
.strip .title {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}
.strip .button {
    position: relative;
    display: inline-block;
    padding: 7px 30px;
    border: 1px solid var(--title-color);
    color: #000000;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
}
.strip .button:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 0px;
    background-color: #aa9989;
    z-index: -1;
    padding-bottom: 100%;
    border-radius: 50%;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}
.strip .button:hover {
    border-color: var(--red-caesius);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(139, 30, 65, 0.25);
}
.strip .filters {
    text-align: center;
}
.strip .filters:hover button.active .text:after {
    width: 0%;
}
.strip .filters .filter-button {
    display: inline-block;
}
.strip .filters .filter-button button {
    margin: 0px;
    padding: 0px 5px;
    border: none;
    background-color: transparent;
    color: #000000;
    vertical-align: top;
    text-align: center;
}
.strip .filters .filter-button button:hover .text:after {
    width: 100% !important;
}
.strip .filters .filter-button button.active .text:after {
    width: 100%;
}
.strip .filters .filter-button button.active .circle {
    background: var(--red-caesius) !important;
}
.strip .filters .filter-button button .circle-limit {
    width: 90px;
    max-width: 150px;
    margin: auto;
    margin-top: 15px;
}
@media only screen and (max-width: 992px) {
    .strip .filters .filter-button button .circle-limit {
        display: none;
    }
}
.strip .filters .filter-button button .circle-limit .circle {
    position: relative;
    height: 0px;
    padding-bottom: 100%;
    background: var(--cream-color);
    border-radius: 50%;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}
.strip .filters .filter-button button .circle-limit .circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: 45%;
    object-fit: contain;
}
.strip .filters .filter-button button .text {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
    text-transform: uppercase;
}
.strip .filters .filter-button button .text:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #000000;
    bottom: -1px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
.strip .offers-slider {
    width: calc(100% - 40px);
    max-width: var(--b-point-xxl);
    margin: auto;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .strip .offers-slider {
        width: 100%;
    }
}
.strip .offers-slider .slick-list {
    overflow: hidden;
}
.strip .offers-slider .slick-arrow {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-20px, -50%);
}
.strip .offers-slider .slick-arrow.slick-next {
    left: auto;
    right: 0px;
    transform: translate(20px, -50%);
}
.strip .offers-slider .offer-card {
    display: inline-block;
    padding: 0px 20px;
    vertical-align: top;
}
.strip .offers-slider .offer-card .photo {
    width: 100%;
    height: 230px;
}
.strip .offers-slider .offer-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.strip .offers-slider .offer-card .info {
    position: relative;
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
    padding: 20px;
    height: calc(100% - 270px);
}
.strip .offers-slider .offer-card .info:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip .offers-slider .offer-card .info:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip .offers-slider .offer-card .info .title {
    font-size: 20px;
    text-transform: none;
}
.strip .offers-slider .offer-card .info .icon img {
    height: 35px;
}
.strip .offers-slider .offer-card .info .text {
    padding: 25px 0px;
    font-size: 16px;
}
.strip .offers-slider .offer-card .info .book-button a, .strip .offers-slider .offer-card .info .book-button button {
    padding: 6px 17px;
    background-color: var(--red-caesius);
    color: #ffffff;
    border: none;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}
.strip .offers-slider .offer-card .info .book-button a:hover, .strip .offers-slider .offer-card .info .book-button button:hover {
    background-color: var(--red-caesius-dark);
}
.strip .offers-slider .offer-card .info .book-button a .external-link, .strip .offers-slider .offer-card .info .book-button button .external-link {
    vertical-align: baseline;
}
.strip .offers-slider .offer-card .cta {
    position: relative;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
    padding: 20px;
}
.strip .offers-slider .offer-card .cta:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip .offers-slider .offer-card .cta:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip .offers-slider .offer-card .cta .more-info a {
    position: relative;
    color: #707070;
    font-size: 16px;
}
.strip .offers-slider .offer-card .cta .more-info a:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #707070;
    bottom: -2px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
.strip .offers-slider .offer-card .cta .book-button a, .strip .offers-slider .offer-card .cta .book-button button {
    padding: 6px 17px;
    background-color: var(--red-caesius);
    color: #ffffff;
    border: none;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}
.strip .offers-slider .offer-card .cta .book-button a:hover, .strip .offers-slider .offer-card .cta .book-button button:hover {
    background-color: var(--red-caesius-dark);
}
.strip .offers-slider .offer-card .cta .book-button a .external-link, .strip .offers-slider .offer-card .cta .book-button button .external-link {
    vertical-align: baseline;
}
.strip .offers-slider .offer-card.product-card .dotted-top {
    position: relative;
    height: 1px;
}
.strip .offers-slider .offer-card.product-card .dotted-top:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.strip .offers-slider .offer-card.product-card .photo {
    position: relative;
    background-color: #ffffff;
}
.strip .offers-slider .offer-card.product-card .photo:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip .offers-slider .offer-card.product-card .photo:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip .offers-slider .offer-card.product-card .photo img {
    object-fit: contain;
}
.strip .offers-slider .offer-card.product-card .photo .icon {
    position: absolute;
    top: 15px;
    left: 15px;
}
.strip .offers-slider .offer-card.product-card .photo .icon img {
    width: 40px;
    height: 40px;
}
.strip .offers-slider .offer-card.product-card .photo .promo {
    position: absolute;
    top: 0px;
    right: 20px;
    background-color: var(--cream-color);
    width: 70px;
    padding: 10px 5px;
    font-size: 9px;
    text-transform: uppercase;
}
.strip .offers-slider .offer-card.product-card .photo .promo:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 10px solid var(--cream-color);
    border-right: 35px solid transparent;
}
.strip .offers-slider .offer-card.product-card .photo .promo:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0px;
    width: 0;
    height: 0;
    border-top: 10px solid var(--cream-color);
    border-left: 35px solid transparent;
}
.strip .offers-slider .offer-card.product-card .price, .strip .offers-slider .offer-card.product-card .price * {
    font-size: 16px;
    color: #707070;
}
.strip .offers-slider .offer-card.product-card .cart-icon {
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}
.strip .offers-slider .offer-card .product-top-card {
    background-color: #ffffff;
    height: 100%;
    border: 3px solid var(--silver-color);
    position: relative;
}
.strip .offers-slider .offer-card .product-top-card .cornucopia {
    position: absolute;
    top: -80px;
    right: -35px;
}
@media only screen and (max-width: 630px) {
    .strip .offers-slider .offer-card .product-top-card .cornucopia {
        top: -105px;
        right: -20px;
    }
}
.strip .offers-slider .offer-card .product-top-card .logo {
    padding: 50px 20px;
    width: 100%;
    height: 200px;
}
.strip .offers-slider .offer-card .product-top-card .text {
    display: block;
    font-size: 16px;
    padding: 15px;
    word-break: break-word;
}
.strip #newsletter .newsletter-input {
    border-radius: 50rem;
}
.strip #newsletter .newsletter-input.error {
    border-color: var(--danger);
    color: var(--danger);
    background-color: #ffe2e5;
}
.strip #newsletter #newlsetter-privacy {
    vertical-align: middle;
}
.strip #newsletter .privacy-label {
    font-size: 14px;
    vertical-align: middle;
    margin: 0px;
    margin-left: 10px;
    text-align: left;
    max-width: calc(100% - 35px);
}
.strip #newsletter .privacy-label.error {
    border-bottom: 1px solid var(--danger);
    background-color: #ffe2e5;
}
.strip #newsletter .privacy-label a {
    font-size: 14px;
    border-bottom: 1px solid #000000;
}
.strip #newsletter #newsletter-submit {
    max-width: 220px;
    margin: auto;
    background-color: var(--red-caesius);
    color: #ffffff;
}
.strip.special-offers.voucher-offers {
    padding: 0px !important;
}
.strip.special-offers.voucher-offers button.active .circle {
    background-color: var(--red-caesius);
}
.strip.special-offers.voucher-offers .info {
    height: calc(100% - 297px);
}
.strip.special-offers.voucher-offers .info, .strip.special-offers.voucher-offers .cta {
    background-color: #ffffff;
}
.strip.special-offers.experience-offers button.active .circle {
    background-color: var(--red-caesius);
}
.strip.special-offers.experience-offers .info {
    height: calc(100% - 293px);
}
.strip.special-offers.experience-offers .info, .strip.special-offers.experience-offers .cta {
    background-color: #ffffff;
}
.strip.special-offers.stories {
    padding: 0px !important;
}
.strip.special-offers .cream-background {
    background-color: var(--cream-color);
    margin: 0px;
    padding: 3rem;
}
@media only screen and (max-width: 630px) {
    .strip.special-offers .cream-background {
        padding: 0.1rem;
    }
}
.strip.cream-background {
    background-color: var(--cream-color);
}
.strip.askme {
    background-color: var(--pink-color);
    padding: 30px !important;
}
.strip.askme .photo img {
    width: 138px;
    border-radius: 50%;
}
.strip.askme .name {
    font-weight: 600;
}
.strip.askme .email {
    font-size: 16px;
    font-style: italic;
}
.strip.staff {
    padding: 30px !important;
}
.strip.staff .photo img {
    width: 138px;
    border-radius: 50%;
}
.strip.staff .name {
    font-weight: 600;
}
.strip.staff .email {
    font-size: 16px;
    font-style: italic;
}
.strip.indications {
    background-color: var(--cream-color);
    padding: 0px !important;
}
.strip.indications .transport-type {
    max-width: 60px;
    padding: 10px;
    background-color: var(--red-caesius);
}
.strip.indications .transport-type img {
    width: 100%;
    max-height: 40px;
}
.strip.indications .transport-description .transport-title {
    display: block;
    font-weight: 600;
}
.strip.indications #maps {
    min-height: 350px;
}
.strip.half-column {
    background-color: var(--cream-color);
    padding: 0px !important;
}
.strip.half-column .photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 600px;
}
@media only screen and (max-width: 767px) {
    .strip.half-column .photo img {
        max-height: 300px !important;
    }
}
.strip.half-column .photo.small img {
    max-height: 400px;
}
.strip.half-column .text {
    padding: 80px;
}
@media only screen and (max-width: 1160px) {
    .strip.half-column .text {
        padding: 60px;
    }
}
@media only screen and (max-width: 767px) {
    .strip.half-column .text {
        padding: 40px;
    }
}
.strip.half-column .text .half-title {
    display: block;
    color: var(--title-color);
    font-size: 24px;
    font-weight: 600;
}
.strip.half-column .text .half-subtitle {
    display: block;
    color: var(--title-color);
    font-size: 18px;
    font-weight: 600;
}
.strip.half-column .text .half-text {
    display: block;
    margin-top: 30px;
}
.strip.half-column .text .half-text .notes {
    display: block;
    font-size: 12px;
}
.strip.half-column .text .half-more-infos {
    display: block;
    margin-top: 30px;
    color: #707070;
    text-decoration: underline;
    cursor: pointer;
}
.strip.half-column .wave {
    position: relative;
    width: 60%;
    left: -80px;
}
@media only screen and (max-width: 1160px) {
    .strip.half-column .wave {
        left: -60px;
        width: 80%;
    }
}
@media only screen and (max-width: 767px) {
    .strip.half-column .wave {
        left: -40px;
        width: 100%;
    }
}
.strip.half-column.flex-md-row-reverse .wave {
    transform: rotateY(180deg);
}
.strip.half-column.white {
    background-color: #ffffff;
}
.strip.half-column.white .text .half-title, .strip.half-column.white .text .half-subtitle {
    color: #000000;
}
.strip.fountain-bg {
    background-image: url("https://www.hotelcaesiusterme.com/uploads/image/fontanta-casius-crema_1639472323.svg");
    background-position: right -93px bottom -58px;
    background-size: 350px;
    background-repeat: no-repeat;
}
.strip.boxed-list {
    background-color: var(--cream-color);
}
.strip.boxed-list > div {
    max-width: 1200px;
}
.strip.boxed-list .box {
    position: relative;
    background-color: #ffffff;
    height: 100%;
}
.strip.boxed-list .box:before, .strip.boxed-list .box:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.strip.boxed-list .box:after {
    top: auto;
    bottom: 0px;
}
.strip.boxed-list .box .lateral-bullet {
    height: 100%;
}
.strip.boxed-list .box .lateral-bullet:before, .strip.boxed-list .box .lateral-bullet:after {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip.boxed-list .box .lateral-bullet:after {
    left: auto;
    right: 0px;
}
.strip.boxed-list .box .lateral-bullet .circle-limit {
    width: 100%;
    max-width: 110px;
}
@media only screen and (max-width: 767px) {
    .strip.boxed-list .box .lateral-bullet .circle-limit {
        margin: auto;
    }
}
.strip.boxed-list .box .lateral-bullet .circle-limit .circle {
    position: relative;
    height: 0px;
    padding-bottom: 100%;
    background: var(--cream-color);
    border-radius: 50%;
}
.strip.boxed-list .box .lateral-bullet .circle-limit .circle.special {
    background: var(--red-caesius);
}
.strip.boxed-list .box .lateral-bullet .circle-limit .circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    object-fit: contain;
    min-height: auto;
}
.strip.boxed-list .box .lateral-bullet .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
}
.strip.boxed-list .box .lateral-bullet .text {
    display: block;
}
.strip.boxed-list .box .lateral-bullet .info {
    display: block;
    padding-left: 20px;
    font-size: 12px;
    font-style: italic;
}
.strip.boxed-list .box .lateral-bullet img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}
.strip.article-strip h2 {
    margin: 0px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.strip.article-strip h3 {
    margin: 0px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--title-color);
}
.strip.article-strip a {
    text-decoration: underline;
}
.strip.article-strip .headings ul {
    padding-left: 15px;
    list-style: none;
}
.strip.article-strip .headings ul i {
    font-size: 6px;
    vertical-align: middle;
}
.strip.article-strip .single-photo {
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
@media only screen and (max-width: 750px){
    .strip.article-strip .single-photo {
        aspect-ratio: 4/3;
    }
}
.strip.article-strip .carousel.slide {
    max-width: 700px;
    margin: auto;
    margin-top: 25px;
}
.strip.article-strip .carousel.slide.dark .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
.strip.article-strip .carousel.slide.dark .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
.strip.article-strip .carousel.slide .carousel-caption {
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 30px 15%;
    background: black;
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}
.strip.room-list > div {
    max-width: 1200px;
}
.strip.room-list .text {
    position: relative;
}
.strip.room-list .text:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -1px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip.room-list .text .title, .strip.room-list .text .subtitle, .strip.room-list .text .more-infos {
    display: block;
}
.strip.room-list .text .more-infos {
    font-size: 14px;
    color: #707070;
    text-decoration: underline;
    cursor: pointer;
}
.strip.room-list .photo img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}
.strip.shortcut-strip .filters .filter-button {
    margin: 0px !important;
}
.strip.shortcut-strip .filters .filter-button button.active .circle {
    background-color: var(--dark-cream-color) !important;
}
.strip.shortcut-strip .filters .filter-button button .circle-limit {
    display: block;
    width: 110px;
    margin: 0px auto;
}
.strip.shortcut-strip.bordered {
    width: calc(100% - 15px);
    max-width: 600px;
    margin: auto;
    padding: 40px !important;
    border: 1px solid var(--title-color);
    border-radius: 50rem;
    background-image: url("https://www.hotelcaesiusterme.com/uploads/image/fontanta-casius-grigio_1636384857.svg");
    background-position: right -53px bottom -78px;
    background-size: 300px;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 991px) {
    .strip.shortcut-strip.bordered {
        border-radius: 5rem;
    }
}
.strip.shortcut-strip.bordered .filters .circle {
    background-color: var(--red-caesius) !important;
}
.strip.programs-list {
    background-color: var(--cream-color);
    padding: 0px !important;
}
.strip.programs-list .program {
    max-width: 1200px;
}
.strip.programs-list .program .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
}
.strip.programs-list .program .text {
    display: block;
}
.strip.programs-list .program .info {
    display: block;
    font-size: 12px;
    font-style: italic;
}
.strip.programs-list .program .wave {
    width: 90%;
    max-width: 350px;
}
.strip.programs-list .program .dettails {
    background-color: #ffffff;
    position: relative;
}
.strip.programs-list .program .dettails:before, .strip.programs-list .program .dettails:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.strip.programs-list .program .dettails:after {
    top: auto;
    bottom: 0px;
}
.strip.programs-list .program .dettails .lateral-bullet {
    padding: 20px;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .strip.programs-list .program .dettails .lateral-bullet {
        padding-left: 0px;
    }
}
.strip.programs-list .program .dettails .lateral-bullet:before, .strip.programs-list .program .dettails .lateral-bullet:after {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip.programs-list .program .dettails .lateral-bullet:after {
    left: auto;
    right: 0px;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line {
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right 0px bottom 7px;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line.no-dot {
    background: none;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line .name {
    font-size: 16px;
    background-color: #ffffff;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line .name i {
    font-size: 14px;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line .price-box {
    max-width: 150px;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line .price-box .price {
    font-size: 15px;
    background-color: #ffffff;
    margin-top: 3px;
    line-height: 17px;
    display: inline-block;
    white-space: nowrap;
}
.strip.programs-list .program .dettails .lateral-bullet li .dotted-line .divider {
    flex: 0 0 10px;
    max-width: 10px;
}
.strip.faq .faq-container {
    width: 100%;
    max-width: 1200px;
}
.strip.faq .faq-container #faq-filter {
    max-width: 450px;
}
.strip.faq .faq-container .title {
    display: block;
    font-size: 18px;
    color: var(--title-color);
}
.strip.faq .faq-container .text {
    font-size: 16px;
}
.strip.faq .faq-container .text a {
    font-size: inherit;
    text-decoration: underline;
}
.strip.faq .faq-container .text * {
    font-size: inherit;
}
.strip.faq .faq-container .text .more-infos {
    font-size: 14px;
    color: #707070;
    text-decoration: underline;
    cursor: pointer;
}
.strip.faq .half-column {
    column-count: 2;
}
@media only screen and (max-width: 767px) {
    .strip.faq .half-column {
        column-count: 1;
    }
}
.strip.faq .half-column br {
    break-inside: avoid-column;
}
.strip.faq.privacy .title {
    color: var(--title-color);
}
.strip.faq.privacy a {
    color: var(--red-caesius);
    text-decoration: underline;
}
.strip.review .review-provider {
    display: block;
}
.strip.review .review-author {
    display: block;
}
.strip.review .review-title {
    display: block;
}
.strip.review .review-text {
    display: block;
}
.strip.review .review-rating .fa-star {
    color: #ffa500;
}
.strip.review .review-rating .fa-star-half {
    position: absolute;
    top: 0px;
    left: 0px;
    color: #ffa500;
}
.strip.review .review-rating .base-star {
    position: relative;
    color: #BDBDBD;
}
.strip.brochure .cover {
    position: relative;
}
.strip.brochure .cover:hover .reader {
    opacity: 1;
}
.strip.brochure .cover img {
    width: 100%;
}
.strip.brochure .cover .reader {
    position: absolute;
    display: flex;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.7s;
    -webkit-transition: opacity 0.7s;
    -moz-transition: opacity 0.7s;
    -o-transition: opacity 0.7s;
}
.strip.brochure .cover .reader span {
    align-self: center;
    color: white;
}
.strip.brochure .title {
    display: block;
}
.strip.brochure .info {
    display: block;
}
.strip.brochure .download {
    display: inline-block;
    background-color: var(--red-caesius);
    color: #ffffff;
    width: auto;
}
.strip.blog .filter {
    padding-bottom: 20px;
}
.strip.blog .filter #blog-filter {
    width: 100%;
    max-width: 500px;
    padding: 10px;
}
.strip.blog .article .photo {
    height: auto;
}
.strip.blog .article .photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}
.strip.blog .article .text {
    position: relative;
    height: calc(100% - 250px);
    background-image: linear-gradient(to right, #808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 3px 1px;
    background-repeat: repeat-x;
}
.strip.blog .article .text:before, .strip.blog .article .text:after {
    content: "";
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 3px;
    background-image: linear-gradient(#808080 33%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 1px 3px;
    background-repeat: repeat-y;
}
.strip.blog .article .text:after {
    left: auto;
    right: 0px;
}
.tags .tag {
    display: inline-block;
    font-size: 13px;
    border: 1px solid var(--red-caesius);
    border-radius: 5px;
    padding: 1px 6px;
    
    &.filter{
        font-size: 18px;
        padding: 5px 15px;
    }
    
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    
    &:hover, &.active{
            background-color: var(--red-caesius);
            color: #ffffff;
    }
    
    & *{
        font-size: inherit;
    }
}
.strip.blog .article .text .read-more {
    position: relative;
    bottom: 0px;
    right: 0px;
    font-size: 14px;
    color: #707070;
    text-decoration: underline;
    cursor: pointer;
}
.strip.gallery .thumbnail {
    width: 100%;
    height: 190px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}
.strip.gallery .thumbnail:hover {
    transform: scale(1.04);
}
@media only screen and (max-width: 991px) {
    .strip.gallery .thumbnail {
        height: 170px;
    }
}
.strip.gallery .modal .modal-lg {
    max-width: 1200px;
}
.strip.gallery .modal .modal-lg .modal-content {
    background: rgba(0, 0, 0, 0);
}
.strip.gallery .modal .modal-lg .modal-content .modal-header .close {
    position: absolute;
    top: 0px;
    right: 35px;
    padding-right: 0px;
    color: #ffffff;
    opacity: 1;
}
.strip.gallery .modal img {
    max-width: 100%;
    max-height: calc(100vh - 3.5rem - 63px);
}
.strip ul.list-style-inside {
    list-style: inside;
}
.strip .europlan-experience-logo {
    width: 90%;
    max-width: 220px;
}

/* 6. Footer */
footer {
    padding-bottom: 75px !important;
}
footer .max-page-width {
    width: calc(100% - 15px);
    max-width: 1500px;
    margin: auto;
}
@media only screen and (max-width: 630px) {
    footer .footer-data * {
        font-size: 16px;
    }
}
@media only screen and (max-width: 991px) {
    footer .footer-menu {
        margin-top: 50px;
    }
}
footer .footer-menu .menu-box {
    border-left: 1px solid var(--title-color);
    padding: 0px 30px;
}
@media only screen and (max-width: 991px) {
    footer .footer-menu .menu-box {
        border-left: none;
    }
}
footer .footer-menu a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 10px;
}
footer .footer-menu a:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #707070;
    bottom: -2px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -o-transition: width 0.3s;
}
footer .footer-menu a:hover:after {
    width: 100%;
}
footer .copyright * {
    font-size: 12px;
}

/* 7. Alert */
.alert {
    position: absolute;
    margin: 0px;
    padding: 7px;
    padding-right: 20px;
    z-index: var(--z-contact-form);
}
.alert .close-alert {
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 10px;
}

/* 8. Modal */
.modal {
    z-index: var(--z-contact-form);
}
.modal .modal-content {
    border: 12px solid rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 0px;
    background-image: url("https://www.hotelcaesiusterme.com/uploads/image/fontanta-casius-crema_1639472323.svg");
    background-position: right -113px bottom -38px;
    background-size: 350px;
    background-repeat: no-repeat;
}
.modal .modal-header {
    border: none;
    border-radius: 0px;
    padding-bottom: 0px;
}
.modal .modal-header .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
    text-transform: uppercase;
}
.modal .modal-header .close {
    position: absolute;
    right: 1rem;
}
@media only screen and (max-width: 630px) {
    .modal .modal-header .close {
        right: 1.3rem;
        padding: 0.1rem;
    }
}
.modal .modal-header .close span {
    font-size: 1.5rem;
}
.modal .modal-body .contact-success {
    display: none;
}
.modal .modal-body .subtitle {
    color: var(--title-color);
}
.modal .modal-body .contact-form label, .modal .modal-body .purchase-view label {
    margin-bottom: 0px;
}
.modal .modal-body .contact-form textarea, .modal .modal-body .purchase-view textarea {
    min-height: 100px;
}
.modal .modal-body .contact-form #contact-title:focus, .modal .modal-body .purchase-view #contact-title:focus {
    z-index: 1;
}
.modal .modal-body .contact-form #contact-privacy, .modal .modal-body .purchase-view #contact-privacy {
    vertical-align: middle;
}
.modal .modal-body .contact-form .form-control.error, .modal .modal-body .purchase-view .form-control.error {
    border-color: var(--danger);
    color: var(--danger);
    background-color: #ffe2e5;
}
.modal .modal-body .contact-form .privacy-label, .modal .modal-body .purchase-view .privacy-label {
    font-size: 14px;
    vertical-align: middle;
    margin: 0px;
    margin-left: 10px;
    text-align: left;
    max-width: calc(100% - 35px);
}
.modal .modal-body .contact-form .privacy-label.error, .modal .modal-body .purchase-view .privacy-label.error {
    border-bottom: 1px solid var(--danger);
    background-color: #ffe2e5;
}
.modal .modal-body .contact-form .privacy-label a, .modal .modal-body .purchase-view .privacy-label a {
    font-size: 14px;
    border-bottom: 1px solid #000000;
}
.modal .modal-footer {
    border: none;
    border-radius: 0px;
}
.modal .modal-footer button {
    position: relative;
    display: inline-block;
    padding: 7px 30px;
    border: 1px solid var(--title-color);
    color: #000000;
    background-color: #ffffff;
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -o-transition: color 0.5s;
}
.modal .modal-footer button:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 0px;
    background-color: #aa9989;
    z-index: -1;
    padding-bottom: 100%;
    border-radius: 50%;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}
.modal .modal-footer button:hover:before {
    transform: translate(-50%, -50%) scale(1.5);
}

/* 9. Ecommerce */
.cart-button {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 15px;
    background-color: var(--cream-color);
    width: 80px;
    height: 80px;
    padding: 16px;
    border-radius: 50%;
    border: 1px solid #B59E7B;
    cursor: pointer;
}
@media only screen and (max-width: 991px) {
    .cart-button {
        bottom: 59px;
    }
}
.cart-button .cart-items {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--red-caesius);
    color: #ffffff;
    width: 25px;
    height: 25px;
    padding-top: 1px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    animation: shake;
    animation-duration: 6s;
    animation-delay: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes shake {
    0% {
        transform: rotate(30deg);
    }
    1% {
        transform: rotate(0deg);
    }
    2% {
        transform: rotate(-30deg);
    }
    3% {
        transform: rotate(0deg);
    }
    4% {
        transform: rotate(30deg);
    }
    5% {
        transform: rotate(0deg);
    }
    6% {
        transform: rotate(-30deg);
    }
    7% {
        transform: rotate(0deg);
    }
    8% {
        transform: rotate(30deg);
    }
    9% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-30deg);
    }
    11% {
        transform: rotate(0deg);
    }
}
.cart-button .cart-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#ecommerceModal .cart-view .cart-table .cart-product-image {
    max-width: 200px;
}
#ecommerceModal .cart-view .cart-table .cart-product-info {
    font-size: 16px;
    color: #707070;
}
#ecommerceModal .cart-view .cart-table .cart-product-remove {
    color: var(--title-color);
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
}
#ecommerceModal .cart-view .cart-table .input-group-text {
    padding: 0.275rem 0.75rem;
}
#ecommerceModal .cart-view .cart-table .form-control:disabled, #ecommerceModal .cart-view .cart-table .form-control[readonly] {
    background-color: #ffffff;
}
#ecommerceModal .cart-view .cart-table .cart-total-ammount-text {
    color: var(--title-color);
    font-weight: 600;
}
#ecommerceModal .purchase-view, #ecommerceModal .success-view {
    display: none;
}
#ecommerceModal.purchase .cart-view {
    display: none;
}
#ecommerceModal.purchase .purchase-view {
    display: block;
}

/* X. Scrollbar and Text Selection */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: var(--red-caesius);
}

::selection {
    background-color: var(--red-caesius);
    color: #ffffff;
}

/* Y. Animations */
