/* GENERAL */
html, body {
    background: #F9F9F9;
    font-family: 'PT Sans', sans-serif !important;
}
:root {
  --font-family: 'PT Sans', sans-serif !important;
}
section {
    aspect-ratio: unset;
}

.hotel-title {
    width: 90%;
    margin: 1rem auto;
    font-size: 1.65rem;
}

.hotel-title.top {
    font-family: 'Stella', sans-serif;
    margin-bottom: 0.5rem;
}

.swiper-slide:nth-of-type(4n+1) .product-content {
    background-color: var(--gotifi-orange);
}

.swiper-slide:nth-of-type(4n+2) .product-content {
    background-color: var(--gotifi-green);
}

.swiper-slide:nth-of-type(4n+3) .product-content {
    background-color: var(--gotifi-blue);
}

.swiper-slide:nth-of-type(4n+4) .product-content {
    background-color: var(--gotifi-red);
}

.swiper-slide .product-content {
    display: flex!important;
}

.swiper-button-next, .swiper-button-prev {
    background-color: var(--gotifi-yellow);
    width: 2.85rem!important;
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem!important;
    font-weight: bold;
    color: #000;
}

.btn-book {
    background: rgb(var(--gotifi-orange-rgb) / 100%);
    border: 1.5px solid var(--gotifi-yellow);
    color: var(--white);
    border-radius: 10rem;
    font-weight: 800;
}

.btn-search {
    background: var(--gotifi-yellow);
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: bold;
    border-radius: 10rem;
}

.cursor-pointer {
    cursor: pointer;
}

/* TOP HEADER */
.section-header {
    margin-top: 128px;
}
.hotel-product-detail-container {
    width: 25%;
}
.hotel-product-detail-container .hotel-title {
    font-size: 1.45rem;
}
.hotel-product-detail-container .info {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.hotel-product-image-container {
    width: 75%;
}
.hotel-product-image-container .product-image {
    aspect-ratio: 3/1.9;
}
.hotel-product-image-container .product-image:first-of-type {
    aspect-ratio: 3/2;
}
.hotel-ticket {
    top: -5rem;
    right: 0;
    width: 60%;
    z-index: 0;
}
p.more-img {
    font-size:3rem;
}
p.view-menu {
    font-size:1.5rem;
    line-height:1.1;
}


/* DATE AND QUANTITY */
.date-selection, .landmark-selection, .pax-selection {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
.pax-selection {
    border-left: 1px solid var(--black);
    border-right: 1px solid var(--black);
}
.pax-selection select, .date-selection input {
    border: 0;
    border-radius: 5rem;
    border-right: 16px solid transparent;
    outline: 1px solid;
}
.date-selection input {
    box-sizing: border-box;
    position: relative;
    width: 100%;
}
.date-selection input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}


/* ROOM TYPES */
.hotel-option-container, .hotel-option-info {
    border: 1.5px solid black;
    border-radius: 12px;
    overflow: hidden;
}
.hotel-option-container > .left-content {
    width: 30%;
}
.hotel-option-container > .right-content {
    width: 70%;
    margin-top: 2.45rem;
}
.hotel-option-container .hotel-option-img {
    background-color: black;
    aspect-ratio: 3/2;
}
.hotel-option-info .right-content {
    border-left: 1.5px solid black;
    background-color: var(--gotifi-yellow);
}
.hotel-option-info .left-content p {
    font-size: 18px;
}
.hotel-option-info .left-content li {
    font-size: 14px;
}
.hotel-option-info {
    display: flex;
}


/* TICKETS INFORMATION */
.accordion-container {
    border-bottom: 1.5px solid var(--black);
}
.accordion-header .itinenariesticket-font-black-big {
    font-size: 18px;
}
.accordion-header .itinenariesticket-font-black-big span {
    font-size: 16px;
}
.accordion-body {
    max-height: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.accordion-show {
    max-height: 100rem;
    padding-bottom: 1rem;
}


/* REVIEWS AND EXPLORE */
.hotel-footer-container .explore {
    border-left: 1.5px solid var(--black);
}
.hotel-footer-container .explore .hotel-title > span > span {
    display: inline-block;
    transform: rotate(-18deg);
    transform-origin: right 1rem;
}
.disabled-btn {
    background-color: gray !important;
    border-color: darkgray !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}
.hotel-footer-container .explore .product-content .product-description h3 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hotel-footer-container .explore .explore-mobile {
    display: none;
}
.feedback-container {
    border-top-left-radius: 2rem;
    /* min-width: 18.5rem; */
    min-width: 16rem;
    min-height: 270px;
}
.feedback-header .detail {
    font-size: 12.5px;
}
.feedback-content .rating, .feedback-content .comment {
    font-size: 14px;
}
.feedback-content .rating, .feedback-content .comment p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.product-price p:last-of-type {
    font-size: 14px;
}
.swiper-button-next {
    right: 0;
}
.swiper-button-prev {
    left: 0;
}


/* MODAL */
.detail-modal-container {
    background-color: var(--white);
    width: 75%;
    margin: 0 auto;
    margin-top: 10%;
    border-radius: 12px;
}
#feedback-modal .feedback-content .comment p {
    font-size: 14px;
}


/* HOTEL BOOKING PAGE */
.hotel-booking-content .left-content, .hotel-booking-content .right-content {
    border: 1.5px solid black;
    border-radius: 12px;
    overflow: hidden;
}

.hotel-booking-content .left-content {
    background-color: var(--gotifi-yellow);
    overflow: visible;
}

.hotel-booking-content .left-content::after, .checkin-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 1.5px;
    height: 100%;
    background-color: black;
}

.hotel-booking-content .right-content .field-input {
    border-radius: 10rem;
}

.summary-product-cover {
    aspect-ratio: 16/9;
    border-radius: 6px;
    width: 100%;
}

.btn-complete-booking {
    background: rgb(var(--gotifi-orange-rgb) / 100%);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding-block: 0.35rem;
}

.payment-method-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.payment-method-box {
    width: 100%;
}

.payment-method-box.chosen {
    border: 1.5px solid black;
    border-radius: 6px;
    background-color: var(--gotifi-yellow);
    padding: 0.5rem;
}

.payment-img {
    background-color: var(--white);
    aspect-ratio: 3/2;
    border-radius: 6px;
}

.payment-img img {
    width: 85%;
    aspect-ratio: 3/2;
    object-fit: contain;
    max-width: 10rem;
    filter: grayscale(100%);
}

.payment-method-box.chosen .payment-img img {
    filter: unset;
}

.black-line {
    display: inline-block;
    width: 100px;
    height: 1.5px;
    background-color: black;
    margin-bottom: 1rem;
}

.font-size-subheading {
    font-size: 1.2rem;
}

.font-size-normal {
    font-size: 1rem;
}

.font-size-small {
    font-size: 0.85rem;
}

.border-black {
    border: 1.5px solid black;
}

.border-bottom-black {
    border-bottom: 1.5px solid black;
}

@media screen and (min-width: 1240px) {
    .product-content {
        border-radius: 2.5rem 0 14rem 0;
    }
}
@media screen and (min-width:1000px) and (max-width:1200px) {
    .date-quantity-container .input-form-design-date .calender {
        margin-bottom: 0;
    }
    .date-quantity-container .input-form-design-date .start {
        padding-bottom: 0;
    }
    .date-quantity-container .itinenariesticketorder-font-align-b {
        margin-top: 5px;
    }
}
@media screen and (min-height:1024px) {
    #productImage-modal .mySwiper {
        width: 75%!important;
    }
}
@media screen and (max-width:1024px) {
    /* TOP HEADER */
    .hotel-detail-header-container, .date-quantity-container, .hotel-footer-container {
        flex-direction: column;
    }
    .hotel-product-image-container {
        width: 100%;
    }
    .hotel-product-detail-container {
        width: 100%;
        padding-left: 0!important;
        margin-top: 1rem;
    }
    .hotel-product-detail-container p {
        padding-left: 0;
    }
    .hotel-ticket {
        top: -5rem;
        right: -1rem;
        width: 70%;
        z-index: 0;
    }
    p.more-img {
        font-size: 2.5rem;
    }
    p.view-menu {
        font-size: 1.25rem;
    }


    /* DATE AND QUANTITY */
    .pax-selection {
        border-top: none;
        border-left: none;
        border-right: none;
    }
    .pax-selection > div {
        align-items: start!important;
        padding-left: 1rem;
    }


    /* REVIEWS AND EXPLORE */
    .hotel-footer-container .explore {
        border-left: none;
        border-top: 1.5px solid var(--black);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    /* .product-content:nth-of-type(1), .product-content:nth-of-type(2) {
        display: flex!important;
    } */
    .product-content {
        border-radius: 2.5rem 0 15.5rem 0;
    }
    .reviews > a > span {
        text-align: left!important;
    }


    /* HOTEL BOOKING PAGE */
    .row-input > div:nth-of-type(1) {
        margin-right: 0.5rem;
    }
    .row-input > div:nth-of-type(2) {
        margin-left: 0.5rem;
    }
}
@media only screen and (max-width: 992px) and (min-width: 718px) {
    /* DATE AND QUANTITY */
    .date-quantity-container > div:nth-of-type(1) {
        max-width: unset;
    }
    .date-selection, .landmark-selection, .pax-selection {
        width: 100%!important;
    }
    .pax-selection {
        border-bottom: none;
    }

    /* ROOM TYPES */
    .hotel-option-container > .left-content {
        width: 50%;
    }
    .hotel-option-container > .right-content {
        width: 50%;
        margin-top: 2rem;
    }
    .hotel-option-info {
        flex-direction: column;
        align-items: center !important;
    }
    .hotel-option-info .left-content, .hotel-option-info .right-content {
        width: 100%!important;
    }
    .hotel-option-info .right-content {
        border-left: none;
        border-top: 1.5px solid black;
    }

    /* HOTEL BOOKING PAGE */
    .hotel-booking-content > div:nth-of-type(1) {
        width: 42%!important;
    }
    
    .hotel-booking-content > div:nth-of-type(2) {
        width: 58%!important;
    }

    .font-size-subheading {
        font-size: 1rem;
    }
    
    .font-size-normal {
        font-size: 0.9rem;
    }
    
    .font-size-small {
        font-size: 0.75rem;
    }
}
@media screen and (max-width:480px) {
    /* TOP HEADER */
    .section-header h1 {
        font-size: 25px;
    }
    .hotel-title.sub {
        margin-top: 2rem!important;
        padding-left: 1rem!important;
    }
    .hotel-product-image-container {
        flex-direction: column;
    }
    .hotel-product-image-left, .hotel-product-image-right {
        width: 100%!important;
    }
    .hotel-product-image-right {
        flex-direction: row!important;
        width: 100%!important;
        margin-top: 0.5rem;
    }
    .hotel-product-image-right a {
        width: 32.5%;
    } 
    .hotel-product-image-right a .product-image {
        width: 100%;
        margin: 0!important;
    }
    .hotel-product-image-right:not(.bottom) a:first-of-type {
        width: 33%;
    }
    .hotel-product-image-right:not(.bottom) a:first-of-type .product-image {
        aspect-ratio: 2/2.45
    }
    .hotel-product-image-right:not(.bottom) > a:last-of-type {
        display: none;
    }
    .hotel-product-image-right.bottom {
        width: 66%!important;
        margin-top: 0;
    }
    .hotel-product-image-right.bottom a:first-of-type {
        margin-right: 0!important;
    }
    .hotel-product-image-right.bottom a:last-of-type {
        margin-left: 3px!important;
    }
    .hotel-ticket {
        top: 15rem;
        right: -1rem;
    }
    p.more-img {
        font-size:3rem;
    }
    p.view-menu {
        font-size:2rem;
    }


    /* DATE AND QUANTITY */
    .section-reserve > div {
        flex-direction: column;
    }
    .section-reserve > div div {
        width: 100%!important;
    }
    .hotel-option-info {
        display:block!important
    }
    .landmark-selection {
        border: none!important;
    }
    .landmark-selection p:last-of-type {
        margin: 0;
    }
    #datetimeContainer {
        border-right: none;
    }
    .date-quantity-container > div:nth-of-type(1) {
        width: 250px;
        max-width: unset;
    }
    .pax-selection > div {
        align-items: center!important;
        padding-left: 0;
    }


    /* ROOM TYPES */
    .hotel-option-container > .right-content {
        padding-left: 1rem;
        margin-top: 0;
    }
    .hotel-option-container .hotel-option-img.sub {
        width: 32.5%!important;
    }
    .hotel-option-info .left-content li {
        padding-right: 0.5rem;
    }


    /* REVIEWS AND EXPLORE */
    .hotel-footer-container {
        flex-direction: column;
    }
    .hotel-footer-container .reviews {
        max-width: unset;
    }
    .hotel-footer-container .explore {
        border: none;
        border-top: 1px solid var(--black);
        padding-top: 2rem;
        margin: 0 auto!important;
        margin-top: 1rem!important;
    }
    .hotel-footer-container .explore > div {
        width: 90%!important;
        margin: 0 auto;
        margin-top: 2.5rem;
    }
    .hotel-footer-container .explore .explore-desktop {
        display: none!important;
    }
    .hotel-footer-container .explore .explore-mobile {
        display: block;
    }
    .hotel-footer-container .explore .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 0px);
    }
    .hotel-footer-container .explore .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset,0px);
    }
    .feedback-container {
        padding-right: 0!important;
    }
    .feedback-content .comment p {
        width: 100%!important;
    }


    /* MODAL */
    .detail-modal-container {
        width: 90%!important;
        padding: 1rem 2rem!important;
    }
    .detail-modal-container h3 {
        font-size: 1.25rem;
    }
    .detail-modal-container p {
        font-size: 14px;
    }
    #productImage-modal .mySwiper {
        width: 100%!important;
        overflow: visible;
    }
    #productImage-modal > a {
        margin-top: 50%!important;
    }
    #productImage-modal .swiper-button-next, #productImage-modal .swiper-button-prev {
        top: var(--swiper-navigation-top-offset,110%);
    }
    .swiper-slide .product-image {
        width: 90%!important;
    }


    /* HOTEL BOOKING PAGE */
    .progress-label {
        justify-content: space-evenly!important;
        align-items: stretch!important;
    }
    .progress-label p {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 25%;
        margin-left: 0!important;
        margin-right: 0!important;
        line-height: 1.1;
    }
    .progress-label p i {
        margin-bottom: 4px;
    }
    .black-line {
        width: 20px;
        margin-top: 1.5rem;
    }
    .hotel-booking-content {
        flex-direction: column;
    }
    .hotel-booking-content > div  {
        width: 100%!important;
        margin-bottom: 1rem;
    }
    .hotel-booking-content .left-content::after {
        content: none;
    }
    .payment-method-container {
        grid-template-columns: 1fr 1fr;
    }
    .row-input {
        flex-direction: column;
    }
    .row-input > div {
        width: 100%;
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .row-input > div:nth-of-type(2) {
        margin-top: 0.5rem;
    }
}