.app-drawer-overlay{
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.app-drawer-overlay[data-state="opening"],
.app-drawer-overlay[data-state="open"],
.app-drawer-overlay[data-state="loading"],
.app-drawer-overlay[data-state="error"]{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.app-drawer{
    position: absolute;
    top: 0;
    left: 0;
    width: 650px;
    max-width: 92vw;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 0 16px 16px 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.app-drawer-overlay[data-state="opening"] .app-drawer,
.app-drawer-overlay[data-state="open"] .app-drawer,
.app-drawer-overlay[data-state="loading"] .app-drawer,
.app-drawer-overlay[data-state="error"] .app-drawer{
    transform: translateX(0);
}

@media (max-width: 767px) {
  body.drawer-open-mobile #trip-details-content-list {
    overflow: hidden;
    touch-action: none;
  }
}

.app-drawer-handle{
    display: none;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.app-drawer-handle span{
    width: 48px;
    height: 5px;
    background-color: #E5E7EB;
    border-radius: 999px;
}

.app-drawer-header{
    display: flex;
    align-items: center;
    padding: 12px 12px;
    border-bottom: 1px solid #E7E9E9;
    gap: 8px;
    min-height: 52px;
}

.app-drawer-title{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-drawer-icon-btn{
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    color: #132D2F;
}


.app-drawer-content{
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.app-drawer[data-content-padding="none"] .app-drawer-content{
    padding: 0;
}

.app-drawer-footer{
    width: 100%;
    height: fit-content;
    padding: 12px 16px;
    border-top: 1px solid #E7E9E9;
    box-shadow: 0px -2px 4px 0px #0000001A;
    background-color: #FFFFFF;
}

.app-drawer-loading{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-drawer-shimmer{
    width: 100%;
    height: 18px;
    border-radius: 10px;
    background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 37%, #F3F4F6 63%);
    background-size: 400% 100%;
    animation: appDrawerShimmer 1.2s ease-in-out infinite;
}

.sidebar-flex-horizontal {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.sidebar-flex-vertical {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.sidebar-categories {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #BEBBB8;
}

.sidebar-rate {
    width: fit-content;
    height: fit-content;
    font-size: 12px;
    color: #889596;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.sidebar-rate svg {
    width: 12px;
    margin-right: 4px;
}

.sidebar-title {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    color: #132D2F;
    font-weight: bold;
}

.sidebar-location {
    width: fit-content;
    height: fit-content;
    font-size: 12px;
    color: #889596;
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.sidebar-location svg {
    width: 12px;
    margin-right: 4px;
}

.sidebar-btn-call {
    width: 45px;
    height: 45px;
    background-color: #42A8C3;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 8px;
    margin-left: auto;
}

.sidebar-description {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #425759;
    margin-top: 15px;
}

.sidebar-split {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
}

.sidebar-split .sidebar-split-left {
    width: 49%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.sidebar-split .sidebar-split-right {
    width: 49%;
    height: fit-content;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-details-button {
    width: 100%;
    height: fit-content;
    cursor: pointer;
    background-color: #FFF;
    box-shadow: 0px 2px 11px -5px #132D2F;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.sidebar-details-button .sidebar-details-button-title {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #132D2F;
}

.sidebar-details-button .sidebar-details-button-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.sidebar-details-button .sidebar-details-button-value {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #718182;
    margin-right: 10px;
}

.sidebar-details-button .sidebar-details-button-label {
    width: fit-content;
    height: fit-content;
    font-size: 12px;
    color: #3C9AB2;
    margin-left: auto;
    margin-top: auto;
}

.sidebar-prices-container {
    width: 100%;
    height: fit-content;
    background-color: #FFF;
    box-shadow: 0px 2px 11px -5px #132D2F;
    border-radius: 15px;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin-top: 10px;
}

.sidebar-price-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #E7E9E9;
    padding: 3px 0;
    margin-bottom: 3px;
    align-items: center;
}

.sidebar-price-item .sidebar-price-label {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #132D2F;
    margin-right: auto;
}

.sidebar-price-item .sidebar-price-value {
    width: fit-content;
    height: fit-content;
    color: #889596;
    font-size: 16px;
}

.sidebar-price-item .sidebar-price-currency {
    color: #FD8559;
}

.sidebar-section-title {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #132D2F;
    font-weight: bold;
}

.sidebar-address {
    width: fit-content;
    height: fit-content;
    font-size: 12px;
    color: #889596;
}

.sidebar-map-container {
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    border-radius: 16px;
    background: #eaeaea;
    position: relative;
}

.sidebar-map {
    width: 100%;
    height: 170px;
    border-radius: 16px;
}

.sidebar-map-btn-directions {
    width: fit-content;
    height: fit-content;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #ffffff7a;
    border-radius: 100px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.sidebar-map-btn-directions span {
    width: fit-content;
    height: fit-content;
    color: #3C9AB2;
    font-size: 17px;
    font-weight: bold;
    margin-right: 10px;
}

.sidebar-map-gesture-view {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}



/* Sidebar package options */
.sidebar-package-options {
    margin-top: 24px;
}

.sidebar-packages-list {
    margin-top: 16px;
}

.sidebar-packages-list .package-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid #D9EEF3;
    padding: 12px;
    margin-bottom: 24px;
    cursor: pointer;
}

.sidebar-packages-list .package-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}

.sidebar-packages-list .package-price {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 24px;
}

.sidebar-packages-list .package-price-value {
    font-weight: bold;
    font-size: 15px;
    color: #FD8559;
}

.sidebar-packages-list .package-info {
    margin-bottom: 24px;
}

.sidebar-packages-list .package-info>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    gap: 8px;
    margin-bottom: 8px;
}

.sidebar-packages-list .more-details-btn {
    width: 100%;
    height: fit-content;
    border: 1px solid #42A8C3;
    border-radius: 8px;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    background-color: transparent;
    transition: ease 0.3s all;
}

.sidebar-packages-list .more-details-btn:hover {
    background-color: #D9EEF3;
}

/* reviews */

.sidebar-reviews-section {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.sidebar-reviews-rate {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    color: #0A181A;
}

.sidebar-reviews-rate-stars {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-left: 10px;
}

.sidebar-reviews-source-container {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    align-items: center;
}

.sidebar-reviews-source-container .sidebar-reviews-source {
    width: fit-content;
    height: fit-content;
    display: flex;
    margin-right: 10px;
}

.sidebar-reviews-source-container .sidebar-reviews-source img {
    width: auto;
    height: 25px;
}

.sidebar-reviews-source-container .sidebar-reviews-count {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #889596;
}

.sidebar-reviews-list {
    width: 100%;
    height: fit-content;
    max-width: 100%;
    margin-top: 20px;
    overflow: auto;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    padding-bottom: 20px;
}




/* Review */
.sidebar-review {
    width: 300px;
    height: fit-content;
    margin-right: 20px;
    min-width: 300px;
    border: 1px solid #E7E9E9;
    border-radius: 12px;
    padding: 12px;
    box-sizing: border-box;
}

.sidebar-review .sidebar-review-header {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
}

.sidebar-review .sidebar-review-img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #eaeaea;
    background-position: center;
    background-size: cover;
    margin-right: 5px;
}

.sidebar-review .sidebar-review-name {
    width: fit-content;
    height: fit-content;
    color: #132D2F;
    font-weight: bold;
}

.sidebar-review .sidebar-review-date {
    width: fit-content;
    height: fit-content;
    color: #889596;
}

.sidebar-review .sidebar-review-rate {
    width: fit-content;
    height: fit-content;
    color: #889596;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.sidebar-review .sidebar-review-rate svg {
    width: 9px;
    height: 9px;
    margin-left: 2px;
}

.sidebar-review .sidebar-review-body {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    color: #889596;
    font-size: 13px;
    margin-top: 10px;
}

/* Activity external source */
.sidebar-additional-info-list {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.sidebar-additional-info {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    font-size: 12px;
    align-items: center;
    color: #425759;
}

.sidebar-additional-info .sidebar-additional-info-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 100px;
    background-color: #FD8559;
    margin-right: 10px;
}


/* Sidebar content */
.sidebar-drawer-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 0 15px 100px 15px;
    box-sizing: border-box;
}


/* sidebar footer */

.sidebar-drawer-footer {
    width: 100%;
    height: fit-content;
    padding: 15px;
    font-size: 13px;
    border-top: 1px solid #E7E9E9;
    box-shadow: 0px -2px 4px 0px #00000026;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
}

.sidebar-drawer-footer .sidebar-drawer-footer-split {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

.sidebar-drawer-footer-left {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

/* facilities */
#facilities-section {
    margin-top: 32px;
}

#facilities-section h3 {
    font-size: 14px;
    color: #42A8C3;
    cursor: pointer;
    text-decoration: underline;
}

#facilities-container div {
    width: fit-content;
    font-size: 14px;
    color: #132D2F;
    margin-right: 24px;
    margin-bottom: 12px;
}

#sidebar-all-facilities .sidebar-flex-vertical div {
    font-size: 14px;
    margin-top: 16px;
    color: #132D2F;
}

@keyframes appDrawerShimmer{
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

@media(max-width: 1024px) {

    .sidebar-flex-horizontal,
    .sidebar-description,
    .sidebar-date-start-end,
    .sidebar-address,
    .sidebar-section-title,
    .sidebar-reviews-rate,
    .sidebar-reviews-source-container,
    .sidebar-additional-info-list,
    #facilities-section {
        padding: 0 15px;
        box-sizing: border-box;
    }

    .sidebar-map {
        height: 250px !important;
        border-radius: 0 !important;
    }

    .sidebar-review {
        margin-left: 15px;
        margin-right: 5px;
    }

    .sidebar-hosted-by-container {
        width: 97%;
        margin: 20px auto 0 auto;
    }

    .sidebar-dates-list .sidebar-date {
        margin: 0 0 10px 15px;
    }
}

@media (max-width: 768px){
    .app-drawer{
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 90dvh;
        max-height: 90dvh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
    }

    .app-drawer-overlay[data-state="opening"] .app-drawer,
    .app-drawer-overlay[data-state="open"] .app-drawer,
    .app-drawer-overlay[data-state="loading"] .app-drawer,
    .app-drawer-overlay[data-state="error"] .app-drawer{
        transform: translateY(0);
    }

    .app-drawer-handle{
        display: flex;
    }

    .app-drawer-content{
        padding: 16px;
    }
}
