@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --padding-left-right: 10px;
    --width-small-size: 0;
    --width-phone-size: 767;
    --width-tablet-size: 1024px;
    --width-laptop-size: 1140px;
    --width-computer-size: 1400px;
    --color-grey: #040809;
    --primary-color: #a0705a;
    --primary-font: "Montserrat", sans-serif;
    /* --heading-font: "Sansation", sans-serif; */
    --heading-font: "Montserrat", sans-serif;
    --normal-font: "Roboto", sans-serif;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: var(--primary-font);
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

a {
    font-family: var(--heading-font);
}

.mainContainer {
    padding: 0px 10px;
}

.mainContainer.full {
    padding: 0px;
}

.subContainer {
    max-width: 100%;
    margin: 0 auto;
}


.subContainer.full {
    max-width: 100%;
    margin: 0 auto;
}


@media (min-width: 767px) {
    .subContainer {
        max-width: var(--width-phone-size);
    }
}

@media (min-width: 1024px) {
    .subContainer {
        max-width: var(--width-tablet-size);
    }
}

@media (min-width: 1140px) {
    .subContainer {
        max-width: var(--width-laptop-size);
    }
}

.to-top {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

/* HEADER STYLE */
.aside {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.784);
    backdrop-filter: blur(15px);
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0%);
    /* transition: 0.5s cubic-bezier(0.32, 0.49, 0.65, 0.78); */
    transition: all 0.3s ease;
    display: flex;
    justify-content: end;
}

.aside .contentArea {
    background-color: var(--primary-color);
    width: 100%;
    max-width: 350px;
    padding: 20px;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.32, 0.49, 0.65, 0.78);
    overflow-y: auto;
}

.aside .contentArea .topAside {
    text-align: right;
    padding-top: 0px;
}

.aside .contentArea .topAside .closeIcon {
    cursor: pointer;
}

.aside .contentArea .topAside .closeIcon svg {
    width: 30px;
    aspect-ratio: 1;
    fill: white;
}

.aside .contentArea .nagivation {
    padding-top: 50px;
}

.aside .contentArea .nagivation .primary-menu-container ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0px;
}

.aside .contentArea .nagivation .primary-menu-container ul li {
    display: flex;
    gap: 5px;
    align-items: self-start;
    flex-direction: column;
    position: relative;
    /* border-bottom: 1px solid #e9e8e8; */
    padding: 10px 0px;
}

.aside .contentArea .nagivation .primary-menu-container ul li a {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    width: 100%;
}

.aside .contentArea .nagivation .primary-menu-container ul li ul.sub-menu {
    display: none;
}

.aside .contentArea .nagivation .primary-menu-container ul li ul.sub-menu.active {
    display: flex;
    background-color: transparent;
    width: 100%;
    padding-left: 5px;
    padding-right: 15px;
    padding-top: 10px;
}

.aside .contentArea .nagivation .primary-menu-container ul li ul.sub-menu.active li a {
    font-size: 0.83rem;
}

.aside .contentArea .nagivation .primary-menu-container ul li button.sub-menu-toggle {
    position: absolute;
    display: flex;
    background-color: transparent;
    padding: 0;
    border: none;
    top: 10px;
    right: 0;
}

.aside .contentArea .nagivation .primary-menu-container ul li button.sub-menu-toggle .icon-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0);
    transition: all 0.3s ease;
}

.aside .contentArea .nagivation .primary-menu-container ul li button.sub-menu-toggle .icon-plus svg {
    width: 20px;
    aspect-ratio: 1;
    fill: white;
}

.aside .contentArea .nagivation .primary-menu-container ul li button.sub-menu-toggle .icon-plus.active {
    transform: rotate(90deg);
}

.aside .contentArea .nagivation .primary-menu-container ul li button.sub-menu-toggle .icon-plus.active svg {
    width: 20px;
    aspect-ratio: 1;
    fill: white;
}

.aside .contentArea .nagivation .primary-menu-container ul li button.sub-menu-toggle .icon-minus {
    display: none;
}

.aside .contentArea .nagivation .primary-menu-container ul li.active {
    padding-bottom: 0;
}

.aside .contentArea .nagivation .primary-menu-container ul li:last-child {
    border-bottom: none;
}

.aside .contentArea .checkButton {
    margin-top: 50px;
    margin-bottom: 50px;
}

.aside .contentArea .checkButton a {
    display: flex;
    padding: 4px 35px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.aside .contentArea .checkButton a:hover {
    border: 1px solid lightgrey;
    background-color: lightgrey;
    color: var(--primary-color);
}

.aside .contentArea .languageSwitch {
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside .contentArea .languageSwitch .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    content: "";
    vertical-align: middle;
    display: none;
    border: none;
    border-top: 0.5em solid;
    position: absolute;
    right: 10px;
    top: calc(50% - .175em);
}

.aside .contentArea .languageSwitch .wpml-ls-legacy-dropdown-click {
    width: 92px;
    max-width: 100%;
}

.aside .contentArea .languageSwitch .wpml-ls-legacy-dropdown-click a {
    display: block;
    text-decoration: none;
    color: white;
    border: none;
    background-color: transparent;
    padding: 5px 10px;
    line-height: 1;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.aside .contentArea .languageSwitch .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    border-top: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    z-index: 101;
    background-color: transparent;
    padding-bottom: 10px;
    padding-top: 10px;
}

.aside .contentArea .socialMedia {
    margin-top: 20px;
}

.aside .contentArea .socialMedia .socialIcon ul {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.aside .contentArea .socialMedia .socialIcon ul li a svg {
    width: 15px;
    aspect-ratio: 1;
    fill: lightgrey;
    transition: all 0.3s ease;
}

.aside .contentArea .socialMedia .socialIcon ul li:hover a svg {
    fill: white;
}

.aside.active {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    opacity: 1;
    z-index: 200;
    visibility: visible;
    transform: translateX(0%);
}

.aside.active .contentArea.active {
    transform: translateX(0%);
}

.mainHeader {
    z-index: 100;
    position: absolute;
    width: 100%;
}

.mainHeader .mainHeaderTop {
    background-color: white;
}

.mainHeader .mainHeaderTop .topHeader {
    height: 65px;
}

.mainHeader .mainHeaderTop .topHeader .leftSide .logo img {
    width: 180px;
    height: auto;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .languageSwitch .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    content: "";
    vertical-align: middle;
    display: none;
    border: none;
    border-top: 0.5em solid;
    position: absolute;
    right: 10px;
    top: calc(50% - .175em);
}

.mainHeader .mainHeaderTop .topHeader .rightSide .languageSwitch .wpml-ls-legacy-dropdown-click {
    width: 92px;
    max-width: 100%;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .languageSwitch .wpml-ls-legacy-dropdown-click a {
    display: block;
    text-decoration: none;
    color: #000000;
    border: none;
    background-color: transparent;
    padding: 5px 10px;
    line-height: 1;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .languageSwitch .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    border-top: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    z-index: 101;
    background-color: white;
    padding-bottom: 10px;
    padding-top: 10px;

    li {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .demo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background-color: transparent;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .demo .menu-icon {
    transform: scale(0.8);
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon :root {
    --bar-bg: var(--primary-color);
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon {
    position: relative;
    width: 20px;
    height: 50px;
    cursor: pointer;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon .menu-icon__cheeckbox {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    z-index: 2;
    -webkit-touch-callout: none;
    position: absolute;
    opacity: 0;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon div {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 22px;
    height: 12px;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    border-radius: 1px;
    transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon span:first-of-type {
    top: 0;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon span:last-of-type {
    bottom: 0;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon.active span:first-of-type,
.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon .menu-icon__cheeckbox:checked+div span:first-of-type {
    transform: rotate(45deg);
    top: 5px;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon.active span:last-of-type,
.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon .menu-icon__cheeckbox:checked+div span:last-of-type {
    transform: rotate(-45deg);
    bottom: 5px;
}

.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon.active:hover span:first-of-type,
.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon.active:hover span:last-of-type,
.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon:hover .menu-icon__cheeckbox:checked+div span:first-of-type,
.mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon:hover .menu-icon__cheeckbox:checked+div span:last-of-type {
    width: 22px;
}

@media (min-width: 1024px) {
    .mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon:hover span:first-of-type {
        width: 26px;
    }

    .mainHeader .mainHeaderTop .topHeader .rightSide .menuIcon .menu-icon:hover span:last-of-type {
        width: 15px;
    }
}

.mainHeader .mainHeaderBelow {
    background-color: lightgrey;
}

.mainHeader .mainHeaderBelow.light {
    background-color: rgba(211, 211, 211, 0.659);
}

.mainHeader .mainHeaderBelow .belowHeader {
    height: 40px;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation {
    display: flex;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li a {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-grey);
    transition: all 0.3s ease;
    width: 100%;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li button.sub-menu-toggle {
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    background-color: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li button.sub-menu-toggle .icon-plus,
.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li button.sub-menu-toggle .icon-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li button.sub-menu-toggle .icon-plus svg,
.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li button.sub-menu-toggle .icon-minus svg {
    width: 15px;
    aspect-ratio: 1;
    stroke: var(--primary-color);
    fill: var(--primary-color);
    stroke-width: 1px;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li button.sub-menu-toggle .icon-minus {
    display: none;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li ul.sub-menu {
    position: absolute;
    display: flex;
    top: 170%;
    min-width: 100%;
    flex-direction: column;
    background-color: white;
    z-index: 2;
    padding: 20px;
    border-radius: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: max-content;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li ul.sub-menu li a {
    color: white;
    transition: all 0.3s ease;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li ul.sub-menu.active {
    display: flex;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover a {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary-color);
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover button.sub-menu-toggle .icon-plus,
.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover button.sub-menu-toggle .icon-minus {
    transform: rotate(180deg);
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover button.sub-menu-toggle .icon-minus {
    display: none;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    background-color: var(--primary-color);
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover ul.sub-menu li a {
    color: white;
}

.mainHeader .mainHeaderBelow .belowHeader .menuArea .site-navigation .primary-menu-container ul li:hover ul.sub-menu li:hover a {
    color: rgb(205, 203, 203);
}

.mainHeader .mainHeaderBelow .belowHeader .checkButton a {
    padding: 4px 35px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mainHeader .mainHeaderBelow .belowHeader .checkButton a:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.mainHeader.sticky {
    position: fixed;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.mainHeader.sticky .mainHeaderTop {
    background-color: rgba(255, 255, 255, 0.911);
}

.mainHeader.sticky .mainHeaderTop .topHeader {
    height: 65px;
}

.mainHeader.sticky .mainHeaderBelow {
    display: none;
}

/* FOOTER STYLE */
.topFooter {
    background-color: var(--primary-color);
}

.topFooter .topFooterContent {
    padding-top: 50px;
    padding-bottom: 50px;
}

.topFooter .topFooterContent span {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.topFooter .topFooterContent .subscribe form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.topFooter .topFooterContent .subscribe form input {
    padding: 10px 30px;
    border: 1px solid white;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 500;
    width: 100%;
}

.topFooter .topFooterContent .subscribe form input[type="submit"] {
    background-color: lightgray;
    cursor: pointer;
    border: 1px solid lightgray;
    transition: all 0.3s ease;
}

.topFooter .topFooterContent .subscribe form input[type="submit"]:hover {
    background-color: #929090;
    border: 1px solid #929090;
}

.mainFooter {
    background-color: #e8f1f7;
}

.mainFooter .mainFooterContent {
    padding-top: 70px;
    padding-bottom: 100px;
}

.mainFooter .mainFooterContent .topRow {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.mainFooter .mainFooterContent .topRow .firstRow {
    width: 100%;
    max-width: 550px;
}

.mainFooter .mainFooterContent .topRow .firstRow .logo {
    margin-bottom: 20px;
}

.mainFooter .mainFooterContent .topRow .firstRow .logo img {
    width: 200px;
    height: auto;
}

.mainFooter .mainFooterContent .topRow .firstRow p.description {
    margin-bottom: 20px;
    color: #656262;
    font-size: 0.8rem;
    line-height: 1.5;
}

.mainFooter .mainFooterContent .topRow .firstRow .awardSection {
    display: flex;
    gap: 10px;
}

.mainFooter .mainFooterContent .topRow .firstRow .awardSection .item img {
    width: 100%;
    max-width: 130px;
    height: auto;
}

.mainFooter .mainFooterContent .topRow .afterRow span.title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mainFooter .mainFooterContent .topRow .afterRow ul.listItems {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
}

.mainFooter .mainFooterContent .topRow .afterRow ul.listItems li a {
    color: grey;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.mainFooter .mainFooterContent .belowRow {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.mainFooter .mainFooterContent .belowRow .copyright {
    color: #7e7b7b;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5;
}

.mainFooter .mainFooterContent .belowRow .socialMedia .socialIcon ul {
    display: flex;
    gap: 15px;
    align-items: center;
    list-style: none;
}

.mainFooter .mainFooterContent .belowRow .socialMedia .socialIcon ul li a svg {
    width: 15px;
    aspect-ratio: 1;
    fill: #5c5c5c;
    transition: all 0.3s ease;
}

.mainFooter .mainFooterContent .belowRow .socialMedia .socialIcon ul li:hover a svg {
    fill: var(--primary-color);
}


@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .mainHeader .mainHeaderBelow {
        display: none;
    }

    .mainFooter .mainFooterContent .belowRow {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .mainFooter .mainFooterContent .topRow {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .topFooter .topFooterContent .subscribe form {
        flex-direction: column;
    }

    .topFooter .topFooterContent .subscribe form input {
        text-align: center;
    }

    .topFooter .topFooterContent span {
        font-size: 1.1rem;
        text-align: center;
        display: inline-block;
        width: 100%;
    }
}



/* HOMEPAGE */
.homepageTopSlider .slider img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
}

.homepageTopSlider .searchAvailability {
    position: relative;
    margin-top: -50px;
    padding-bottom: 50px;
}

.homepageTopSlider .searchAvailability .searchContent {
    background-color: var(--primary-color);
    padding: 25px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    background-color: transparent;
    border: 1px solid white;
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex: 0 0 calc(20% - 10px);
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date label,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date label,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults label,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children label,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper label {
    color: white;
    font-size: 0.70rem;
    text-transform: uppercase;
    font-weight: 400;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date input,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date input,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults input,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children input,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: white;
    font-size: 0.70rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date input::placeholder,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date input::placeholder,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults input::placeholder,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children input::placeholder,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input::placeholder {
    color: #c9c6c6;
    font-weight: 400;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date select,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date select,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults select,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children select,
.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper select {
    appearance: none;
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: white;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    background-color: white;
    border: 1px solid white;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    transition: all 0.3s ease;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.70rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper:hover {
    background-color: transparent;
}

.homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper:hover input {
    color: white;
}


@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form {
        flex-direction: column;
        align-items: self-start;
        gap: 20px;
        width: 100%;
    }

    .homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date,
    .homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date,
    .homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults,
    .homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children,
    .homepageTopSlider .searchAvailability .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
        width: 100%;
    }

    .homepageTopSlider .searchAvailability .searchContent {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {}



.searchResultPageTop {
    margin-top: 70px;
    margin-bottom: 80px;
}

.searchContent {
    background-color: transparent;
    display: flex;
    align-items: center;
    width: 100% !important;
    justify-content: start;

    .elementor-shortcode {
        width: 100%;
    }
}

.searchContent .mphb_sc_search-wrapper {
    width: 100%;

    .mphb_sc_search-form {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;

    }
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex: 0 0 calc(20% - 10px);
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper label {
    color: var(--primary-color);
    font-size: 0.70rem;
    text-transform: uppercase;
    font-weight: 600;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.70rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input::placeholder {
    color: #c9c6c6;
    font-weight: 400;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper select {
    appearance: none;
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    background-color: white;
    border: 2px solid var(--primary-color);
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    transition: all 0.3s ease;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper:hover {
    background-color: lightblue;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper:hover input {
    color: var(--primary-color);
}

/* .searchContent {
    background-color: transparent;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: start;
}

.searchContent .mphb_sc_search-wrapper {
    width: 100%;

    .mphb_sc_search-form {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
    }
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children label,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper label {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children input,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children input::placeholder,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input::placeholder {
    color: #c9c6c6;
    font-weight: 400;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children select,
.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper select {
    appearance: none;
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    background-color: white;
    border: 2px solid var(--primary-color);
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    transition: all 0.3s ease;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input {
    background-color: transparent;
    border: none;
    width: 100%;
    max-width: 80px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper:hover {
    background-color: lightblue;
}

.searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper:hover input {
    color: var(--primary-color);
} */

.searchResultPageTop .accomodationHeader {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.searchResultPageTop .accomodationHeader span {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
    font-size: 0.75rem;
    padding-bottom: 20px;
}

.searchResultPageTop .accomodationHeader h2 {
    font-size: 1.75rem;
    font-weight: 500;
    width: 50%;
    text-align: center;
    line-height: 1.5;
}


@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-in-date,
    .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-check-out-date,
    .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-adults,
    .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-children,
    .searchContent .mphb_sc_search-wrapper .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
        width: 100%;
    }

    .searchResultPageTop .accomodationHeader h2 {
        width: 100%;
    }
}

@media (max-width: 576px) {}

.shortSummary {
    color: #060606;
    font-style: italic;
    font-size: 0.85rem;
}

.searchResultPageContent .image .mphb-gallery-thumbnail-slider {
    display: none;
}

.searchResultPageContent .afterContent .title {
    padding-bottom: 20px;
}

.searchResultPageContent .afterContent .title h2 a {
    color: black;
    font-weight: 200;
}

.searchResultPageContent .afterContent .description p {
    font-size: 0.85rem;
    line-height: 1.2;
    color: gray;
    padding-bottom: 20px;
}

.searchResultPageContent .afterContent .description p a {
    color: #b5b4b4;
}

.searchResultPageContent .afterContent .summary {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    padding-bottom: 20px;
}

.searchResultPageContent .afterContent .summary li span {
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.searchResultPageContent .afterContent .summary li span svg {
    width: 20px;
    aspect-ratio: 1;
    fill: var(--primary-color);
}

.searchResultPageContent .afterContent .price {
    padding-bottom: 20px;
}

.searchResultPageContent .afterContent .price p.mphb-regular-price {
    color: grey;
    font-weight: 400;

     
        strong {
            font-weight: 400;
        }
    
}

.mphb-price-period {
    border-bottom: none;
    cursor:default;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper {
    padding-bottom: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    /* Start Check Style */
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select {
    appearance: none;
}

@supports (appearance: base-select) {

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select,
    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select::picker(select) {
        appearance: base-select;
        animation: rotateHue 10s infinite;
    }
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select {
    display: flex;
    justify-content: start;
    min-width: 40px;
    align-items: center;
    color: white;
    padding-block: 5px;
    padding-inline: 20px 30px;
    border-radius: 0px;
    border: none;
    cursor: pointer;
    background-color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 400;
}

@supports (appearance: base-select) {

    /* end Check style */
    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select {
        padding-inline: 7px;
        background-image: none;
        /* Remove original arrow option */
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select img {
        width: 30px;
        line-height: 1;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select::picker-icon {
        content: "";
        width: 15px;
        height: 15px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23FFF' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
        transition: rotate 0.2s ease-out;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select:open::picker-icon {
        rotate: 180deg;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select::picker(select) {
        padding: 0;
        margin-top: 5px;
        border: 1px solid #1D201D;
        background: #C7CCC7;
        border-radius: 10px;
        font-weight: semi-bold;
        opacity: 0;
        height: 0;
        overflow: clip;
        transition: height 0.5s ease-out, opacity 0.5s ease-out, overlay 0.5s, display 0.5s;
        transition-behavior: allow-discrete;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select:open::picker(select) {
        opacity: 1;
        height: calc-size(auto, size);
        overflow: auto;
    }

    @starting-style {
        .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select:open::picker(select) {
            opacity: 0;
            height: 0;
        }
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select option {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px;
        gap: 10px;
        border-top: 1px solid #444;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select option:where(:hover, :focus, :active) {
        background: #4B534B;
        color: white;
        font-weight: bold;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select option:checked {
        background: var(--primary-color);
        color: white;
        font-weight: bold;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select option::checkmark {
        display: none;
        /* Remove original active option */
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper select selectedcontent {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-quantity-wrapper span {
    color: black;
    font-size: 0.9rem;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper {
    padding-bottom: 10px;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper a {
    color: black;
    text-transform: uppercase;
    background-color: lightgray;
    padding: 3px 25px;
    font-size: 0.7rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper a:hover {
    color: white;
    background-color: #0e0e0e;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper p {
    color: #323131;
    font-size: 0.85rem;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-button {
    background-color: black;
    border: 2px solid black;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 30px;
    width: 220px;
    height: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-confirm-reservation {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-button:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

.searchResultPageContent .afterContent .buttons .viewButton {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 30px;
    width: 220px;
    height: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 5px;
}

.searchResultPageContent .afterContent .buttons .viewButton p {
    padding: 0;
}

.searchResultPageContent .afterContent .buttons .viewButton p a {
    color: var(--primary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
    transition: all 0.3s ease;
}

.searchResultPageContent .afterContent .buttons .viewButton:hover {
    background-color: var(--primary-color);
}

.searchResultPageContent .afterContent .buttons .viewButton:hover p a {
    color: white;
}


@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .searchResultPageContent {
        .image {
            padding-bottom: 20px;
        }
    }

    .searchResultPageContent .afterContent .summary {
        gap: 20px;
        flex-wrap: wrap;

        li {
            flex: 0 0 calc(50% - 20px);
        }
    }

    .searchResultPageContent .afterContent .buttons .viewButton {
        width: 100%;
    }

    .searchResultPageContent .afterContent .buttons .bookButton .mphb-reserve-room-section .mphb-button {

        width: 100%;


        margin-top: 5px;

    }

}

@media (max-width: 576px) {}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-booking-details-title {
    color: var(--primary-color);
    font-weight: 200;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding-bottom: 30px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-check-in-date,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-check-out-date {
    font-size: 1rem;
    line-height: 1.5;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details {
    padding-top: 20px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details {
    padding-top: 50px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-room-number {
    font-weight: 600;
    padding-bottom: 10px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-room-type-title {
    color: gray;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-room-type-title a {
    color: gray;
    font-weight: 600;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser {
    padding-top: 0px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 0px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser label,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser label {
    font-size: 1rem;
    color: gray;
    /* Start Select Style */
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select {
    appearance: none;
}

@supports (appearance: base-select) {

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select::picker(select),
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select::picker(select) {
        appearance: base-select;
        animation: rotateHue 10s infinite;
    }
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select {
    justify-content: start;
    min-width: 40px;
    align-items: center;
    color: grey;
    padding-block: 5px;
    padding-inline: 20px 30px;
    border-radius: 17px;
    border: 1px solid black;
    cursor: pointer;
    background-color: #ececec;
    font-size: 0.85rem;
    font-weight: 400;
}

@supports (appearance: base-select) {

    /* End Select Style */
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select {
        padding-inline: 7px;
        background-image: none;
        /* Remove original arrow option */
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select img,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select img {
        width: 30px;
        line-height: 1;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select::picker-icon,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select::picker-icon {
        content: "";
        width: 15px;
        height: 15px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
        transition: rotate 0.2s ease-out;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select:open::picker-icon,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select:open::picker-icon {
        rotate: 180deg;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select::picker(select),
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select::picker(select) {
        padding: 0;
        margin-top: 5px;
        border: 1px solid #1D201D;
        background: #C7CCC7;
        border-radius: 10px;
        font-weight: semi-bold;
        opacity: 0;
        height: 0;
        overflow: clip;
        transition: height 0.5s ease-out, opacity 0.5s ease-out, overlay 0.5s, display 0.5s;
        transition-behavior: allow-discrete;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select:open::picker(select),
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select:open::picker(select) {
        opacity: 1;
        height: calc-size(auto, size);
        overflow: auto;
    }

    @starting-style {

        .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select:open::picker(select),
        .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select:open::picker(select) {
            opacity: 0;
            height: 0;
        }
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select option,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select option {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px;
        gap: 10px;
        border-top: 1px solid #444;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select option:where(:hover, :focus, :active),
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select option:where(:hover, :focus, :active) {
        background: #4B534B;
        color: white;
        font-weight: bold;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select option:checked,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select option:checked {
        background: var(--primary-color);
        color: white;
        font-weight: bold;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select option::checkmark,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select option::checkmark {
        display: none;
        /* Remove original active option */
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-adults-chooser select selectedcontent,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-children-chooser select selectedcontent {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-guest-name-wrapper {
    padding-top: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-guest-name-wrapper label {
    font-size: 1rem;
    color: gray;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-booking-details .mphb-reserve-rooms-details .mphb-room-details .mphb-guest-name-wrapper input {
    background-color: #ececec;
    border: 1px solid black;
    border-radius: 20px;
    font-size: 1rem;
    color: gray;
    padding: 3px 15px;
    max-width: 200px;
    min-width: 100px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper .mphb-price-breakdown-title {
    font-weight: 600;
    padding-bottom: 10px;
    font-size: 1.1rem;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper th,
.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper td {
    border: 0.5px solid #2a2a2a;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table.mphb-price-breakdown tbody tr td {
    padding: 5px 20px;
    text-align: left;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table.mphb-price-breakdown tbody tr td a.mphb-price-breakdown-accommodation {
    color: black;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table.mphb-price-breakdown tbody tr td .mphb-price-breakdown-rate {
    padding-top: 10px;
    font-style: italic;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table.mphb-price-breakdown tbody tr th {
    text-align: left;
    padding: 5px 20px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table.mphb-price-breakdown tfoot {
    background-color: var(--primary-color);
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table.mphb-price-breakdown tfoot tr th {
    color: white;
    text-align: left;
    padding: 5px 20px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section .mphb-customer-details-title {
    padding-bottom: 20px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p {
    padding-bottom: 10px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p label {
    color: gray;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p input {
    background-color: white;
    border: 1px solid black;
    border-radius: 20px;
    font-size: 1rem;
    padding: 5px 25px;
    margin-top: 5px;
    min-width: 300px;
    /* Start Select Style */
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select {
    appearance: none;
    margin-top: 10px;
}

@supports (appearance: base-select) {

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select::picker(select) {
        appearance: base-select;
        animation: rotateHue 10s infinite;
    }
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select {
    justify-content: start;
    min-width: 300px;
    align-items: center;
    color: grey;
    padding-block: 9px;
    padding-inline: 20px 30px;
    border-radius: 17px;
    border: 1px solid black;
    cursor: pointer;
    background-color: white;
    font-size: 0.85rem;
    font-weight: 400;
}

@supports (appearance: base-select) {

    /* End Select Style */
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select {
        padding-inline: 7px;
        background-image: none;
        /* Remove original arrow option */
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select img {
        width: 30px;
        line-height: 1;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select::picker-icon {
        content: "";
        width: 15px;
        height: 15px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
        transition: rotate 0.2s ease-out;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select:open::picker-icon {
        rotate: 180deg;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select::picker(select) {
        padding: 0;
        margin-top: 5px;
        border: 1px solid #1D201D;
        background: #C7CCC7;
        border-radius: 10px;
        font-weight: semi-bold;
        opacity: 0;
        height: 0;
        overflow: clip;
        transition: height 0.5s ease-out, opacity 0.5s ease-out, overlay 0.5s, display 0.5s;
        transition-behavior: allow-discrete;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select:open::picker(select) {
        opacity: 1;
        height: calc-size(auto, size);
        overflow: auto;
    }

    @starting-style {
        .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select:open::picker(select) {
            opacity: 0;
            height: 0;
        }
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select option {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px;
        gap: 10px;
        border-top: 1px solid #444;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select option:where(:hover, :focus, :active) {
        background: #4B534B;
        color: white;
        font-weight: bold;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select option:checked {
        background: var(--primary-color);
        color: white;
        font-weight: bold;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select option::checkmark {
        display: none;
        /* Remove original active option */
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select selectedcontent {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p textarea {
    padding: 10px 25px;
    font-size: 1rem;
    border: 1px solid black;
    margin-top: 10px;
    border-radius: 20px;
    min-width: 300px;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-total-price {
    color: black;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 1.2rem;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb_sc_checkout-submit-wrapper {
    border: 2px solid var(--primary-color);
    padding: 10px 30px;
    background-color: var(--primary-color);
    width: fit-content;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb_sc_checkout-submit-wrapper input {
    color: white;
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb_sc_checkout-submit-wrapper:hover {
    border: 2px solid var(--primary-color);
    background-color: transparent;
}

.checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb_sc_checkout-submit-wrapper:hover input {
    color: var(--primary-color);
}


@media (max-width: 1140px) {}

@media (max-width: 1024px) {}

@media (max-width: 767px) {
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p select {
        min-width: 100%;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p input {
        min-width: 100%;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-checkout-section p textarea {
        min-width: 100%;
    }

    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper table,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper th,
    .checkOutCustomStyle .mphb_sc_checkout-wrapper .mphb_sc_checkout-form .mphb-room-price-breakdown-wrapper td {
        width: 100%;
    }
}

@media (max-width: 576px) {}

.singleRoomTypeTop {
    width: 100%;
    position: relative;

    .backgroundImage {
        img {
            width: 100%;
            aspect-ratio: 2 / 1;
            max-width: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .afterImage {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
    }
}



.singleRoomAttributes {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;

    li {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 0.5px solid var(--primary-color);

        span {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            align-items: center;

            svg {
                width: 20px;
                aspect-ratio: 1;
                fill: var(--primary-color);
            }

        }
    }

    li:first-child {
        padding-top: 0;
    }

    li:last-child {
        border-bottom: none;
    }
}

.miniTitle {
    font-size: 0.90rem;
    text-transform: uppercase;
    color: rgb(46, 45, 45);
    letter-spacing: 5px;
    padding-bottom: 75px;
    font-weight: 400;
}

.singleRoomTypeButton {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 6px 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.singleRoomTypeButton:hover {
    background-color: var(--primary-color);
    color: white;
}

.popUpCheckRate {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.784);
    backdrop-filter: blur(15px);
    width: 100%;
    top: 0;
    left: 10px;
    height: 100vh;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0%);
    /* transition: 0.5s cubic-bezier(0.32, 0.49, 0.65, 0.78); */
    transition: all 0.3s ease;
    display: flex;
    justify-content: end;

    .popUpCheckRateContent {
        background-color: white;
        width: 100%;
        max-width: fit-content;
        height: 100vh;
        padding: 20px;
        transform: translateX(100%);
        transition: 0.5s cubic-bezier(0.32, 0.49, 0.65, 0.78);
        overflow-y: auto;

        .closeIcon {
            display: flex;
            justify-content: end;
            padding-top: 10px;
            padding-bottom: 30px;
            cursor: pointer;

            svg {
                width: 30px;
                aspect-ratio: 1;
                fill: var(--primary-color);
                transform: rotate(0deg);
                transition: all 0.3s ease;
            }
        }

        .closeIcon:hover {
            svg {
                transform: rotate(90deg);
            }
        }

        .priceContainer {
            padding-bottom: 20px;

            p {
                color: rgb(37, 37, 37);
            }
        }

        .calendarContainer {
            .mphb-calendar-title {
                padding-bottom: 20px;
                font-weight: 500;
                text-transform: uppercase;
                font-size: 0.95rem;
                letter-spacing: 2px;
                padding-top: 30px;
                color: grey;
            }

            .mphb-calendar {
                padding-bottom: 20px;
            }
        }

        .reservationFormContainer {
            .mphb-reservation-form-title {
                padding-bottom: 20px;
                font-weight: 500;
                text-transform: uppercase;
                font-size: 0.95rem;
                letter-spacing: 2px;
                padding-top: 30px;
                color: grey;
            }

            form.mphb-booking-form {
                p {
                    padding-bottom: 10px;

                    label {
                        color: gray;
                    }

                    input {
                        background-color: lightblue;
                        min-width: 300px;
                        padding: 5px 20px;
                        border: 0.5px solid lightblue;
                        margin-top: 5px;
                        color: black;
                    }


                    /* select start */
                    select {
                        appearance: none;

                        @supports (appearance: base-select) {

                            &,
                            &::picker(select) {
                                appearance: base-select;
                                animation: rotateHue 10s infinite;
                            }
                        }
                    }

                    select {
                        display: flex;
                        margin-top: 5px;
                        justify-content: start;
                        min-width: 300px;
                        align-items: center;
                        color: black;
                        padding-block: 5px;
                        padding-inline: 20px 30px;
                        border-radius: 0px;
                        border: none;
                        cursor: pointer;
                        background-color: lightblue;
                        font-size: 0.85rem;
                        font-weight: 400;

                        @supports (appearance: base-select) {
                            padding-inline: 20px;
                            background-image: none;

                            /* Remove original arrow option */
                            img {
                                width: 30px;
                                line-height: 1;
                            }

                            &::picker-icon {
                                content: "";
                                width: 15px;
                                height: 15px;
                                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='black' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
                                transition: rotate 0.2s ease-out;
                            }

                            &:open::picker-icon {
                                rotate: 180deg;
                            }

                            &::picker(select) {
                                padding: 0;
                                margin-top: 5px;
                                border: 1px solid #1D201D;
                                background: #C7CCC7;
                                border-radius: 10px;
                                font-weight: semi-bold;
                                opacity: 0;
                                height: 0;
                                overflow: clip;
                                transition: height 0.5s ease-out, opacity 0.5s ease-out, overlay 0.5s,
                                    display 0.5s;
                                transition-behavior: allow-discrete;
                            }

                            &:open::picker(select) {
                                opacity: 1;
                                height: calc-size(auto, size);
                                overflow: auto;

                                @starting-style {
                                    opacity: 0;
                                    height: 0;
                                }
                            }

                            option {
                                display: flex;
                                align-items: center;
                                cursor: pointer;
                                padding: 10px;
                                gap: 10px;
                                border-top: 1px solid #444;

                                &:where(:hover, :focus, :active) {
                                    background: #4B534B;
                                    color: white;
                                    font-weight: bold;
                                }

                                &:checked {
                                    background: var(--primary-color);
                                    color: white;
                                    font-weight: bold;
                                }

                                &::checkmark {
                                    display: none;
                                    /* Remove original active option */
                                }
                            }

                            selectedcontent {
                                display: flex;
                                align-items: center;
                                gap: 10px;
                            }
                        }
                    }

                    /* select End */
                }

                p.mphb-reserve-btn-wrapper {
                    margin-top: 10px;

                    input {
                        background-color: var(--primary-color);
                        padding-top: 10px;
                        padding-bottom: 10px;
                        text-transform: uppercase;
                        font-weight: 600;
                        color: white;
                        cursor: pointer;
                    }
                }

                .mphb-reserve-room-section{
                    margin-top: 10px;
                    input {
                        background-color: var(--primary-color);
                        text-transform: uppercase;
                        font-weight: 600;
                        color: white;
                        cursor: pointer;
                        min-width: 300px;
                        padding: 10px 20px;
                        border: 0.5px solid lightblue;
                        margin-top: 5px;
                    }
                }
            }
        }
    }
}

.facilities {
    padding-top: 100px;
    padding-bottom: 100px;
}

.additionalInfo {
    padding-top: 50px;
    padding-bottom: 100px;
}

ul.roomFacilitiesList {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    gap: 25px;

    li {
        color: grey;
        font-size: 1.25rem;
    }
}



.popUpCheckRate.active {
    /* position: fixed;
    background-color: rgba(255, 255, 255, 0.784);
    backdrop-filter: blur(15px);
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1; */
    visibility: visible;
    opacity: 1;
    /* transform: translateX(0%); */
    /* transition: 0.5s cubic-bezier(0.32, 0.49, 0.65, 0.78); */
    /* transition: all 0.3s ease;
    display: flex;
    justify-content: end; */

    .popUpCheckRateContent.active {
        /* background-color: var(--primary-color);
        width: 100%;
        max-width: fit-content;
        min-height: 100vh;
        padding: 20px; */
        transform: translateX(0%);
        /* transition: 0.5s cubic-bezier(0.32, 0.49, 0.65, 0.78);
        overflow-y: auto; */
    }

}

.roomGallery {
    margin-top: 50px;
    margin-bottom: 50px;

    .swiper {
        width: 100%;
        height: 100%;
        z-index: 0;

        .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #444;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            aspect-ratio: 5 / 3;
            object-fit: cover;
        }

        .swiper-pagination {
            position: relative;
            text-align: left;
            margin-top: 25px;

            .swiper-pagination-bullet {
                background-color: var(--primary-color);
                width: 40px;
                border-radius: 0;
                height: 4px;
            }
        }
    }


}

@media (max-width: 767px) {
    .singleRoomTypeTop {

        .backgroundImage {
            img {
                aspect-ratio: 1 / 1;
            }
        }

        .afterImage {
            flex-direction: column;
            align-items: start;
            justify-content: start;
            gap: 50px;
        }
    }

    .roomGallery {
        .swiper {
            .swiper-slide img {
                display: block;
                width: 100%;
                aspect-ratio: auto;
                object-fit: cover;
            }
        }
    }

    .popUpCheckRate {
        .popUpCheckRateContent {
            width: 100vw;
        }
    }
}

.mphb-recommendation-title {
    display: none;
}

form.mphb-recommendation {
    display: none;
}

form.mphb-reservation-cart {
    display: none;
}

.halfBackground {
    img {
        max-width: 50vw !important;
        aspect-ratio: 4 / 4;
        object-fit: cover;
        margin-left: 15%;
    }
}

@media (max-width: 767px) {
    .halfBackground {
        img {
            max-width: 100% !important;
            aspect-ratio: 5 / 4;
            object-fit: cover;
            margin-left: unset;
        }
    }
}

@media (max-width: 576px) {}

.full-width-shortcode {
    width: 100% !important;
    max-width: 100% !important;
}

.smallBig2ClGrid {
    .e-con-inner {
        display: grid !important;
        grid-template-columns: 1fr 2fr !important;
    }
}

@media (max-width: 767px) {
    .smallBig2ClGrid {
        .e-con-inner {
            display: grid !important;
            grid-template-columns: 1fr !important;
        }
    }
}

@media (max-width: 576px) {}

.homepageRoomTypeSwiper {
    .swiper {
        width: 100%;
        height: 100%;

        .swiper-wrapper {

            .swiper-slide img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .afterSwiper {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;

            .swiper-button {
                position: relative;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 0;

                .swiper-button-next,
                .swiper-button-prev {
                    position: relative;
                    background-color: transparent;
                    padding: 3px 20px;
                    color: var(--primary-color);
                    border: 2px solid var(--primary-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: unset;
                    width: unset;
                    top: 0;
                    left: 0;
                    margin-top: 0;

                    svg {
                        width: 15px;
                        aspect-ratio: 1;
                        fill: var(--primary-color);
                    }
                }

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

            .viewMoreButton {
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;

                a {
                    font-size: 0.90rem;
                    letter-spacing: 2px;
                    color: var(--primary-color);
                    text-decoration: underline;
                    font-family: var(--primary-font);
                    text-underline-offset: 3px;
                }
            }
        }


    }
}

.roomTypeContainer {
    .featureImage {
        margin-bottom: 20px;
    }

    .content {
        .title {
            font-size: 1.5rem;
            font-weight: 500;
            padding-bottom: 10px;
            line-height: 1.5;
            color: #2f2d2d;
        }

        .excerpt {
            p {
                color: #514f4f;
                font-size: 0.90rem;
                line-height: 1.5;
                padding-bottom: 20px;
            }


            a {
                color: #787777;
                font-style: italic;
            }
        }

        a.exploreLink {
                        color: var(--primary-color);
            letter-spacing: 2px;
            font-weight: 300;
            font-size: 0.85rem;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
    }
}

@media (max-width: 767px) {
    .homepageRoomTypeSwiper {
        .swiper {


            .swiper-wrapper {
                .swiper-slide.hideMobile {
                    display: none;
                }
            }


        }
    }
}

@media (max-width: 576px) {}

#customButton {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 0px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 8px 40px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}
#customButton:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
}

#customButtonWhite {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 0px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 8px 40px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}
#customButtonWhite:hover {
    background-color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--primary-color);
}

.imageAspectRation1 {
    img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    }
}