section {
    margin-top: calc(60px + 20px);
    min-height: calc(100vh - 80px);
}
h1 {
    font-family: "Bricolage Grotesque", serif;
    font-size: 30px;
    font-weight: 600;
}
div.header-title-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
a.download-pdf {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: auto 0;
    margin-left: auto;
    padding: 8px 25px;
    border-radius: 40px;
    position: relative;
    color: #EF9720;
    font-weight: 600;
    font-size: 13px;
    background: #fffaf4;
    justify-content: center;
    border: 1px solid #EF9720;
    text-decoration: none;
    &:hover {
        background-color: #fff3e4;
    }
}
div.images {
    margin-top: 20px;
    height: auto;
    /*aspect-ratio: 3/1;*/
    display: flex;
    flex-direction: row;
    gap: 7px;
}
div.images div.sub-images {
    flex: 1;
    overflow: hidden;
    & img {
        height: 100%;
        width: 100%;
        display: flex;
        object-fit: cover;
    }
}
div.images div.sub-images:first-child {
    border-radius: 17px 0 0 17px;
}
div.images div.sub-images:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;
    & img {
        height: auto !important;
    }
    & img:nth-child(2) {
        border-radius: 0 17px 0 0;
    }
    & img:nth-child(4) {
        border-bottom-right-radius: 17px;
    }
}

section div.child {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}
section div.child div.sub-child {
    flex: 1;
    h2 {
        font-size: 22px;
        font-weight: 600;
    }
    h3 {
        margin-top: 10px;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.5;
        color: #212121;
    }
}
section div.child div.sub-child:nth-child(2) {
    position: sticky;
    top: 80px;
    flex: none;
    background-color: #fff;
    width: 370px;
}
section div.child div.booking {
    border: 1px solid #e6e6e6;
    border-radius: 17px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    overflow: hidden;
}
section div.child div.sub-child:nth-child(2) div.query {
    background-color: #f2f2f2;
    border-radius: 17px;
    margin-top: 20px;
    padding: 25px;
    & p:first-child {
        font-weight: 600;
        color: #000;
        font-family: "Bricolage Grotesque", sans-serif;
    }
    & svg {
        height: 18px;
        width: 18px;
        display: flex;
        overflow: visible;
        fill: #454545;
    }
}
section div.child div.sub-child:nth-child(2) div.query div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    & p {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 15px;
    }
    a {
        color: #212121;
        font-weight: 500;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
}
section div.child div.booking div.amount {
    background-color: rgba(233, 76, 59, 0.1);
    padding: 20px 20px 14px 20px;
    & p:nth-child(1) {
        font-size: 14px;
        color: #212121;
        margin-bottom: 7px;
    }
    & p.amount-old { /* old price */
        font-size: 18px;
        color: #474747;
        text-decoration: line-through;
    }
    & p.amount {
        font-size: 29px;
        font-weight: 600;
        & span:first-child {
            font-family: "Bricolage Grotesque", sans-serif;
            color: #212121;
        }
        & span:last-child {
            font-size: 14px;
            font-weight: 400;
        }
    }
}
section div.child div.booking a {
    display: flex;
    align-items: center;
    width: calc(100% - 40px);
    background-color: rgb(233 76 59);
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    justify-content: center;
    height: 42px;
    text-decoration: none;
    margin: 20px;
}
section div.child div.booking a:hover {
    opacity: 0.7;
}
div.highlighted-tab {
    height: auto;
    border: 1px solid #e6e6e6;
    margin-top: 20px;
    border-radius: 11px;
    position: relative;
}
/*div.highlighted-tab.visibility[data-visibility="hidden"] {*/
div.highlighted-tab.visibility {
    & button.toggle-visibility {
        padding-bottom: 25px !important;
    }
    & button.toggle-visibility span.icon {
        transform: rotate(180deg);
    }
    & div.contents {
        display: none;
    }
}
div.highlighted-tab.visibility[data-visibility="visible"] {
    & button.toggle-visibility {
        padding-bottom: 15px !important;
    }
    & button.toggle-visibility span.icon {
        transform: rotate(0deg);
    }
    & div.contents {
        display: block;
    }
}
div.highlighted-tab.visibility button.toggle-visibility {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 20px 20px;
    /* margin-bottom: 10px; */
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    & svg {
        height: 16px;
        width: 16px;
        display: flex;
        overflow: visible;
    }
    & .title {
        font-family: "Bricolage Grotesque", sans-serif;
    }
}

div.highlighted-tab.visibility div.contents {
    padding: 5px 20px 20px 20px;
}
div.highlighted-tab.visibility button.toggle-visibility:hover span.title {
    text-decoration: underline;
}
div.highlighted-tab.points {
    padding: 20px;
}
div.highlighted-tab.points p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 15px;
    margin-bottom: 20px;
    color: #212121;
    & svg {
        height: 20px;
        width: 20px;
        fill: #353535;
        display: flex;
    }
}
div.highlighted-tab.points p:last-child {
    margin-bottom: 0;
}

div.highlighted-tab div.customer-care {
    margin-top: 20px;
    font-size: 15px;
    color: #292929;
    line-height: 23px;

    & a.phone-number {
        display: block;
        font-size: 15px;
        margin-top: 7px;
        color: #212121;
    }
}
p.point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    margin-bottom: 14px;
    & span.dot {
        color: #454545;
    }
}
p.point:last-child {
    margin-bottom: 0;
}
/*div.food-list div.contents {*/
/*    padding-top: 0 !important;*/
/*}*/
div.food-list p.day-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 14px;
    margin-top: 25px;
}
div.food-list p.day-name:first-child {
    margin-top: 0;
}
div.food-list p.items {
    color: #212121;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    margin-bottom: 14px;
    & span.name {
        width: 100px;
        font-weight: 500;
        font-size: 16px;
        font-family: "Bricolage Grotesque", sans-serif;
    }
}
div.food-list p.items:last-child {
    margin-bottom: 0;
}

div.departure p.info {
    font-size: 15px;
    color: #212121;
    & span {
        font-size: 16px;
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 600;
        color: #000;
    }
}
div.departure p.info:first-child {
    margin-bottom: 20px;
}
div.departure p.info:last-child {
    margin-top: 20px;
}

div.departure div.location {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    & svg {
        margin-top: 1px;
        height: 18px;
        width: 18px;
        display: flex;
        fill: #353535;
    }
    & a {
        text-decoration: none;
    }
    & a:hover {
        text-decoration: underline;
        color: #000;
    }
    & .texts span:nth-child(1) {
        font-weight: 500;
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
        font-family: "Bricolage Grotesque", sans-serif;
        color: #121212;
    }
    & .texts span:nth-child(2) {
        font-weight: 400;
        font-size: 15px;
        color: #353535;
    }
}
div.organizor button.toggle-visibility:hover,
div.itinerary button.toggle-visibility:hover,
div.food-list button.toggle-visibility:hover {
    cursor: auto !important;
    & span {
        cursor: text !important;
        text-decoration: none !important;
    }
}
div.organizor div.hotel,
div.organizor div.boat {
    margin-bottom: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 11px;
    padding: 7px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    & img.content-img {
        border-radius: 11px;
        height: 130px;
        width: 180px;
        overflow: hidden;
        object-fit: cover;
    }
    & div.info {
        margin-top: 10px;
    }
    & p.name {
        font-weight: 600;
        margin-bottom: 10px;
    }
    & p.address {
        font-size: 14px;
        color: #585858;
    }
    & div.tags {
        margin-top: 14px;
        & span {
            display: inline-block;
            background: #f2f2f2;
            padding: 6px 12px;
            margin-right: 5px;
            font-size: 10px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 400;
            color: #000;
        }
    }    
    &[data-visibility="hidden"] {
        display: none;
    }
    &[data-visibility="visible"] {
        display: flex;
    }
}
div.organizor div.hotel:last-child {
    margin-bottom: 0;
}
div.organizor button.toggle-switch {
    margin-top: 14px;
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-self: center;
    background-attachment: fixed;
    border-radius: 40px;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    color: rgb(233 76 59);
    border: 1px solid rgb(233 76 59);
    font-weight: 600;
    cursor: pointer;
    background-color: #fff;
}

div.organizor button.toggle-switch:hover {
    background: rgba(233, 76, 59);
    color: #fff;
}

div.inex {
    border: 0;
    display: flex;
    flex-direction: row;
    gap: 14px;
    & div.child {
        margin: 0 !important;
        background-color: green;
        flex: 1;
        display: block;
    }
    & div.child.inclu {
        border-radius: 10px;
        /* border: 1px solid #C4C4C4; */
        padding: 15px;
        /* box-shadow: 0 0 7px rgb(0 0 0 / 20%); */
        position: relative;
        width: 49%;
        background: #EAFAEA;
        & li::marker {
            content: "✅"; /* Use any emoji or character */
            font-size: 14px;
        }
    }
    & div.child.exclu {
        border-radius: 10px;
        /* border: 1px solid #C4C4C4; */
        padding: 15px;
        /* box-shadow: 0 0 7px rgb(0 0 0 / 20%); */
        position: relative;
        width: 49%;
        background: #FBEBEB;
        & li::marker {
            content: "❌"; /* Use any emoji or character */
            font-size: 12px;
        }
    }
    & p.title {
        font-weight: 600;
        font-size: 17px;
        font-family: "Bricolage Grotesque", serif;
    }
    & div.list {
        margin: 10px 14px 0 14px;
    }
    & ul {
        list-style-type: none;
    }
    & ul li {
        text-decoration: none;
        font-size: 14px;
        padding: 4px 0;
        padding-left: 7px;
        /* background-image: url('/static/images/icons/green-mark.png'); */
        /* background-repeat: no-repeat; */
        /* background-position: left center; */
        /* background-size: 16px; */
    }
}

div.itinerary div.content,
div.food-list div.content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: auto;
    margin-bottom: 14px;
    & p.tag {
        min-width: 40px;
        background-color: #e94c3b;
        font-size: 14px;
        padding: 8px 12px;
        margin-top: 14px;
        border-radius: 50px 0 0 50px;
        text-align: center;
        color: #fff;
    }
    & div.info {
        min-height: 100px;
        background-color: #f8f8f8;
        height: 100%;
        padding: 14px;
        flex: 1;
        border-radius: 11px;
    }
    & div.texts {
        margin-top: 14px;
    }
    & div.texts p.point {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        align-items: flex-start;
        gap: 7px;
        & span.dot {
            margin-top: -2px !important;
            font-size: 16px !important;
        }
        & span {
            color: #212121 !important;
            line-height: 1.4;
        }
    }
    & div.texts p.point:last-child {
        margin-bottom: 0 !important;
    }
}
div.itinerary div.content div.info {
    & p.title {
        background-color: #e94c3b;
        height: 33px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px 0 10px;
        margin-left: -14px;
        border-radius: 0 50px 50px 0;
        color: #fff;
        font-size: 14px;        
    }
}
div.food-list div.content div.info {
    & p.title {
        background-color: #dfdfdf;
        height: 33px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 14px 0 10px;
        margin-left: -14px;
        border-radius: 0 50px 50px 0;
        color: #e94c3b;
        font-size: 14px; 
    }
    & div.texts {
        margin-bottom: 20px;
    }
}
div.itinerary div.content:last-child,
div.food-list div.content:last-child {
    margin-bottom: 0;
}

div.booking-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 60px);
    height: auto;
    background-color: rgb(255 255 255 / 80%);
    backdrop-filter: blur(10px);
    margin: 0;
    z-index: 1999 !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
    padding: 14px 30px;
    border-radius: 17px 17px 0 0;    
    display: none;
    & div.child {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    & select.room-selection {
        margin: 14px 0 0 0;
        width: 100%;
    }
    & a {
        width: 40%;
        text-decoration: none;
        background-color: rgb(233 76 59);
        border-radius: 50px;
        padding: 12px 0;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        -webkit-tap-highlight-color: transparent;  
        text-align: center;  
        &:hover {
            opacity: 0.7;
        }
    }
    & div.pricing {
        flex: 1;
        font-size: 14px;
        color: #353535;
        & p.old-price {
            margin-bottom: 3px;
            & span {
                font-weight: 600;
                font-size: 16px;
                text-decoration: line-through;
                color: #454545;
            }
        }
        & p.current-price span {
            font-weight: 600;
            font-size: 20px;
        }
    }
}

select.room-selection {
    width: calc(100% - 40px);
    margin: 0 20px;
    display: flex;
    justify-content: space-between;
    border: 0;
    background-color: #f2f2f2;
    padding: 10px;
    font-size: 15px;
    margin-top: 20px;
    border-radius: 7px;
    outline: none;
    cursor: pointer;
}
div.room-selection {
    border: 1px solid #e8e8e8;
    margin-top: 20px;
    padding: 20px 20px 10px 20px;
    border-radius: 17px;
    display: grid;
    & p.title {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 10px;
    }
    & button {
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
        background-color: transparent;
        border: 0;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        & span:last-child {
            font-weight: 600;
        }
    }
}

div.yt-shorts {
    margin-top: 20px;
    & p {
        font-size: 22px;
        font-weight: 500;
        font-family: "Bricolage Grotesque", sans-serif;
    }
    & div.child {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin: 10px 0 0 0;
    }
    & div.child div.short-video {
        position: relative;
        /* aspect-ratio: 1 / 1.5; */
        aspect-ratio: 9/16;
        /* flex: 1; */
        width: calc(33.33% - 10px);
        background-color: rgba(233, 76, 59, 0.1);
        border-radius: 27px;
        overflow: hidden;
        display: flex;
    }

}

@media only screen and (max-width: 1140px) {
    section div.child div.sub-child:nth-child(2) {
        width: 400px;
    }
}
@media only screen and (max-width: 1040px) {
    h1 {
        font-size: 28px;
    }
    section div.child {
        display: grid;
        margin-top: 20px;
        margin-bottom: 30px;        
    }
    section div.child div.sub-child:nth-child(2) {
        order: 2;
        width: auto;
        & div.booking {
            padding: 0;
            box-shadow: none;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;

            & a {
                width: 40%;
                margin-top: 0;
            }
        }
    }
    div.booking {
        display: none !important;
    }
    div.booking-footer {
        display: block;
    }
    div.highlighted-tab.points {
        margin-top: 0;
    }
    section div.child div.sub-child:nth-child(1) {
        order: 2;
    }
}