.rh-destination-wraped {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.ge-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ge-main-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-00);
}

.ge-main-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 48px 32px 32px 48px;
}

.ge-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(0deg, #ffffff 0%, rgba(61, 67, 89, 0.7) 85%, rgb(54, 61, 85) 95%); */
}

.ge-img-back {
    object-position: 50% 0%;
}

.ge-print-button {
    align-self: flex-end;
}

.rh-main-content {
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 16px;
    flex: 1;
    min-height: calc(100vh - 250px);
}

.rh-results-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    gap: 16px;
}

.rh-results-wraped {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.ge-main-info {
    display: flex;
    gap: 16px;
    background-color: var(--light-10);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--blue-80)
}

.ge-main-info>* {
    padding: 16px 12px;
    border-left: 1px solid var(--light-20);
}

.rh-results-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    flex: 1;
}

.rh-results-header {
    position: relative;
    border-radius: 8px;
    background-color: var(--blue-90);
    border: 2px solid var(--blue-90);
    cursor: pointer;
    width: 100%;
    display: flex;
    padding-right: 56px;
    overflow: hidden;
    align-items: stretch;
}

.rh-results-header::before {
    content: "";
    background-image: url(/content/new/icons/chevron-bottom.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 32px;
    position: absolute;
    width: 32px;
    height: 32px;
    right: 16px;
    top: 16px;
    transition: all 0.3s;
}

.rh-results-header-empty-mod {
    opacity: 0.5;
    cursor: auto;
}

.rh-results-header-empty-mod::before {
    display: none;
}

.rh-title-scope {
    width: 50%;
    padding: 16px;
}

.open .rh-results-header::before {
    transform: rotate(180deg);
    opacity: 0.3;
}

.rh-date-scope {
    flex: 1;
    display: flex;
    flex-direction: row;
    background-color: var(--light-10);
    width: 50%;
    gap: 8px;
    align-items: stretch;
}

.rh-date-scope div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 12px;
    border-right: 1px solid var(--light-20);
}

.rh-date-scope .h6 {
    color: var(--blue-80) !important;
}

/* TRIP CARD START */
.rh-trip-card {
    display: flex;
    flex-direction: row;
    padding: 16px;
    background-color: var(--light-00);
    border: 2px solid var(--light-20);
    border-radius: 8px;
    gap: 16px;
}

.rh-trip-card-aside {
    width: 416px;
    height: 230px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    position: relative;
    background-color: var(--light-20);
}

.rh-trip-card-featured-trip {
    display: flex;
    flex-direction: row;
    position: absolute;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background-color: var(--blue-40);
    width: 100%;
    top: 0;
    z-index: 2;
}

.rh-trip-card-aside-image {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 230px;
    min-width: 0;
}

.rh-trip-card-aside .rh-trip-card-aside-image {
    max-width: 640px;
}

.rh-trip-card-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.rh-trip-card-main-left {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.rh-trip-card-main-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rh-trip-card-main-right .h3 span {
    font-size: 0.75em;
}

.rh-trip-card-footer {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.rh-trip-card-info bold {
    padding-right: 4px;
}

.rh-trip-card-act-lavel {
    display: flex;
}

.mob-destinantion-tog-button {
    display: none;
}

/* TRIP CARD END */

@media screen and (max-width: 964px) {
    .ge-shade {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(0deg, #ffffff00 0%, #ffffffdb 70%, rgb(255, 255, 255) 95%);
    }

    .ge-main-info {
        flex-wrap: wrap;
        gap: 0;
    }

    .ge-main-info>* {
        padding: 6px 12px;
        min-width: 140px;
        flex: 1;
        border-bottom: 1px solid var(--light-20);
    }

    .rh-results-header {
        flex-wrap: wrap;
        padding: 0;
    }

    .rh-title-scope,
    .rh-title-scope {
        width: 100%;
    }

    .rh-results-header::before {
        top: 64px;
    }

    .rh-main-content {
        width: 100%;
        padding: 16px;
    }

    .rh-itinerary-header {
        padding: 0 16px 8px 16px;
    }

    .rh-itinerary-header .h3 {
        font-size: 20px;
    }

    .rh-trip-card {
        flex-direction: column;
    }

    .ge-main-card {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .ge-print-button {
        align-self: stretch;
    }

    .ge-main-card>p {
        width: 100%;
    }

    .mob-destinantion-tog-button {
        display: flex;
        width: 32px;
        height: 32px;
        position: relative;
        background-color: var(--blue-90);
        z-index: 1;
    }

    .mob-destinantion-tog-button::before {
        content: "";
        position: absolute;
        right: 0px;
        top: 0px;
        width: 32px;
        height: 32px;
        background-image: url(/content/new/icons/chevron-bottom.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 32px;
        transition: all 0.3s;
        z-index: 2;
    }

    .open .mob-destinantion-tog-button::before {
        transform: rotate(180deg);
        opacity: 0.3;
    }

    .rh-destination-card-title {
        height: 100px;
    }

    .rh-destination-card-info,
    .rh-destination-card-title {
        width: 100%;
    }

    .rh-destination-card-info {
        overflow: auto;
        max-height: 640px;
    }

    .rh-trip-card-aside {
        width: 100%;
        overflow: hidden;
    }

    .rh-trip-card-aside .rh-trip-card-aside-image {
        position: absolute;
        max-width: 964px;
        object-fit: contain;
    }
}

@media screen and (max-width: 640px) {
    .rh-trip-card-main-right {
        max-width: 9999px;
        align-items: flex-start;
    }

    .rh-trip-card-footer {
        gap: 8px 4px;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .rh-trip-card-footer .blue-button,
    .rh-trip-card-footer .second-button {
        flex: 1;
    }

    .rh-trip-card-footer .main-button {
        width: 100%;
    }

    .rh-trip-card-ec {
        flex-direction: column;
    }


    .ge-main-info {

        flex-direction:column;
    }
}