.container-hotel-details {
    font-size: 14px;
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
}
.flight-container {
    position: relative;
    .flight-list {
        position: relative;
        min-height: 10rem;
        .flight-item {
            font-size: 12px;
            border-radius: 16px;
            border: 2px solid #f0f0f5;
            cursor: pointer;
            overflow: hidden;
            
            .header {
                background-color: #f0f0f5;
                padding: 2px 4px;
                .price {
                    text-align: end;
                    font-family: 'OpenSans-Bold';
                    font-size: 16px;
                    margin-right: 16px;
                }
            }
            .content {
                padding: 4px 12px;
                display: flex;
                .outbound {
                    flex: 1;
                    padding: 8px 16px 8px 8px;
                    border-right: 1px solid black;
                }
                .return {
                    flex: 1;
                    padding: 8px 8px 8px 16px;
                }

                .airline {
                    display: flex;
                    align-items: center;
                    .airline-logo {
                        text-align: center;
                        flex: none;
                    }
                    > *:not(.airline-logo) {
                        flex: 1;
                    }
                }
                .times {
                    display: flex;
                    align-items: center;
                    .dot {
                        width: 8px;
                        height: 8px;
                        background-color: white;
                        border: 1px solid black;
                        border-radius: 50%;
                    }
                    .line {
                        background: black;
                        background-size: 4px 2px;
                        background-repeat: repeat-x;
                        background-position-y: center;
                        flex: 1;
                        height: 2px;
                    }
                    .stops {
                        background-color: white;
                        border: 2px solid var(--secondary);
                        /* border: 2px solid black; */
                        color: black;
                        border-radius: 8px;
                        text-align: center;
                        padding: 0 12px;
                    }
                    .arrival-time {
                        /* margin-left: 16px; */
                        font-family: 'OpenSans-Bold';
                        font-size: 16px;
                        flex: 0 0 60px;
                        text-align: end;
                    }
                    .departure-time {
                        flex: 0 0 60px;
                        /* margin-right: 16px; */
                        font-family: 'OpenSans-Bold';
                        font-size: 16px;
                    }
                }
                .airports {
                    display: flex;
                    align-items: flex-start;
                    .arrival-airport {
                        flex: 1;
                        text-align: end;
                    }
                    .departure-airport {
                        flex: 1;
                    }
                }
            }
            &:nth-child(n+6) {
                display: none;
            }
            &:hover {
                box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
            }
            &.selected {
                box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
                border-color: var(--secondary);
                .header {
                    background-color: var(--secondary);
                    color: white;
                }
            }
            &:not(:last-child) {
                margin-bottom: 1rem;
            }
        }
        .flight-item-with-return {
            position: relative;
            border: 2px solid #f0f0f5;
            border-radius: 1rem;
            padding: 0.5rem 1rem;
            font-family: "Gilroy-Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            cursor: pointer;
            &:nth-child(n+6) {
                display: none;
            }
            &:hover {
                box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
            }
            &.selected {
                box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
                border-color: var(--secondary);
            }
            &:not(:last-child) {
                margin-bottom: 1rem;
            }

            .outbound,
            .return {
                position: relative;
                border-radius: 1rem;
                display: flex;
                align-items: center;
                /* background-color: #fff; */

                background: linear-gradient(to right, transparent 50%, #9921dd 50%);
                background-size: 4px 2px;
                background-repeat: repeat-x;
                background-position-y: center;

                .departure, .arrival {
                    display: flex;
                    flex: 1;
                    font-size: 14px;
                    line-height: 1;

                    .arrival-airport {
                        padding-left: 0.5rem;
                    }

                    .arrival-time, .departure-time {
                        background-color: white;
                        padding: 0 0.5rem;
                    }
                    .arrival-airport, .departure-airport {
                        background-color: white;
                    }
                }
                .arrival {
                    justify-content: flex-end;
                }

                .la-plane {
                    flex: none;
                    background-color: white;
                    color: var(--secondary);
                    font-size: 1.75rem;
                }
                .duration {
                    flex: none;
                    width: 7rem;
                    font-size: .8rem;
                    color: #6c757d;
                    text-align: center;
                    background-color: white;
                    margin-right: 1rem;
                }

                .airline-logo {
                    background-color: white;
                    display: block;
                    padding-left: 0.5rem;
                    flex: none;
                }
            }

            .outbound {
                .la-plane {
                    transform: rotateZ(90deg);
                }
            }
            .return {
                .la-plane {
                    transform: rotateZ(90deg);
                }
            }

            .price {
                position: absolute;
                font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
                left: 50%;
                bottom: 0;
                transform: translateX(-50%) translateY(50%);
                background-color: white;
                line-height: 1rem;
                padding: 2px 4px 0;
                color: #8c8a9e;
                text-align: end;
                border-radius: 1rem;
                border: 1px solid lightgray;
            }
            hr {
                display: none;
            }
        }

    }
    .show-more-flights {
        display: flex;
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.7);
        height: 5.5rem;
        button {
            display: block;
            width: 30rem;
            text-align: center;
            margin: auto;
            font-size: 12px;
        }
    }
    &.collapsed {
        .show-more-flights {
            display: none;
        }
        .flight-list > *:nth-child(n+6) {
            display: block !important;
        }
    }
}

.room-type-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    align-items: start;
    .room-type-item {
        display: flex;
        border-radius: 1rem;
        border: 2px solid #f0f0f5;
        font-size: 14px;
        user-select: none;
        &.selected {
            box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
            border-color: var(--secondary) !important;
            /* .images, */
            /* .room-type-details, */
            /* .board-type-details { */
            /*     box-shadow: 0 0 1rem rgba(0, 0, 0, .2); */
            /*     /* box-shadow: 0 0 1rem var(--secondary); */ 
            /* } */
            /* .room-type-details, */
            /* .board-type-details { */
            /*     border-color: var(--secondary) !important; */
            /* } */
            /* .description, */
            /* .selector { */
            /*     border-color: var(--secondary) !important; */
            /* } */
        }
        &:hover {
            box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
        }
        .images {
            flex: none;
            width: 24rem;
            background-size: 24rem 100%;
            /* border-radius: 1rem; */
            /* border-top-left-radius: 1rem; */
            /* border-bottom-left-radius: 1rem; */
        }

        .content {
            flex: 1;
            /* border-top: 2px solid lightgray; */
            /* border-right: 2px solid lightgray; */
            /* border-bottom: 2px solid lightgray; */
            /* border-top-right-radius: 1rem; */
            /* border-bottom-right-radius: 1rem; */
        }
        .room-type-details {
            display: flex;
            justify-content: space-between;
            /* border-top-right-radius: 1rem; */
            padding: 1rem;
            /* border-top-right-radius: 1rem; */
            /* border-radius: 1rem; */
            cursor: pointer;
            /* border-top: 2px solid #f0f0f5; */
            /* border-bottom: 2px solid lightgray; */
            /* border-right: 2px solid #f0f0f5; */
            /* border-left: 2px solid #f0f0f5; */



            .header {
                color: black;
                margin-top: 0.25rem;
                /* font-size: 1.75rem; */
                line-height: 1;
                font-family: "OpenSans-Regular", sans-serif;
                margin-bottom: 0;
            }
            .people {
                display: block;
                margin-bottom: 0.5rem;
                /* font-size: .9rem; */
                line-height: 1rem;
                color: #8c8a9e;
            }
            .description {
                display: flex;
                /* border-top: 2px solid #f0f0f5; */
                /* border-bottom: 2px solid lightgray; */
                .facilities {
                    i {
                        color: green;
                        margin-right: 0.25rem;
                    }
                }
                .selector {
                    flex: none;
                    align-self: stretch;
                    display: flex;
                    align-items: flex-end;
                    gap: 1rem;
                    /* font-size: 1.5rem; */
                }
                .price {
                    font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
                    background-color: white;
                    color: #8c8a9e;
                    text-align: end;
                    flex: 1;
                    align-self: flex-end;
                    /* font-size: 1.5rem; */
                }
            }
        }

        .board-type-details {
            padding: 1rem;
            border-bottom-right-radius: 1rem;
            border-bottom-left-radius: 1rem;
            /* border-right: 2px solid transparent; */
            /* border-bottom: 2px solid transparent; */
            /* border-left: 2px solid #f0f0f5; */
            /* border-radius: 1rem; */
            /* border-bottom-right-radius: 1rem; */
            background-color: #f0f0f5;
            .title {
                /* font-size: 1.5rem; */
                font-family: "Gilroy", sans-serif;
            }
            .board-types {
                label {
                    display: flex;
                    justify-content: space-between;
                    margin: 0;
                    > *:first-child {
                        display: flex;
                        align-items: center;
                        gap: 0.5rem;
                    }
                }
            }
        }
    }
}

.bonus-product-list {
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    .bonus-product {
        border-radius: 1rem;
        border: 2px solid #f0f0f5;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        gap: 1rem;
        height: 8rem;
        user-select: none;
        &:hover {
            box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
        }
        &.selected {
            box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
            border-color: var(--secondary);
        }
        .images {
            flex: none;
            width: 6rem;
            background-size: 6rem 100%;
        }

        .content {
            padding: 0.5rem 0;
            flex: 1;
            .title {
                color: black;
                margin-top: 0.25rem;
                font-size: 1.5rem;
                line-height: 1;
                font-weight: bold;
                font-family: "Gilroy", sans-serif;
                margin-bottom: 0;
            }
            .subtitle {
                color: #333;
                margin-top: 0.25rem;
                font-size: 1rem;
                line-height: 1;
                font-weight: 400;
                font-family: "Gilroy", sans-serif;
                margin-bottom: 0;
            }
        }
        .end {
            flex: none;
            padding: 0.5rem;
            align-items: stretch;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            > a {
                text-align: end;
                font-size: 1.5rem;
                line-height: 1;
            }
        }
        .price {
            font-family: "Gilroy", sans-serif;
            background-color: white;
            /* line-height: 1rem; */
            color: #8c8a9e;
            text-align: end;
        }
    }
}

.summary {
    margin-bottom: 2rem;
    font-family: "OpenSans-Regular";
    .hotel-summary {
        margin: 1rem 0;
        span {
            font-family: "OpenSans-Bold";
            margin-right: 1rem;
            /* font-size: 0.9rem; */
        }
        i {
            color: #f9b930;
        }
        .package-date-range {
            color: gray;
            font-size: 0.9rem;
        }
    }
    .overall-summary {
        font-size: 14px;
        position: relative;
        display: flex;
        gap: 1rem;
        > * {
            flex: 1;
            > hr {
                margin-top: 1rem;
                margin-bottom: 0.5rem;
            }
        }
        > hr {
            display: none;
        }
    }
    .package-summary {
        display: grid;
        grid-template-columns: 1fr 2fr;
        > * {
            padding: 0.25rem;
        }
        *:nth-child(4n + 1),
        *:nth-child(4n + 2) {
            background-color: #f0f0f5;
        }
    }
    .price-summary, .price-total {
        display: grid;
        grid-template-columns: 1fr 1fr;
        > * {
            padding: 0.25rem;
        }
        *:nth-child(4n + 1),
        *:nth-child(4n + 2) {
            background-color: #f0f0f5;
        }
        :not(.label) {
            text-align: end;
            font-family: "OpenSans-Bold";
        }
        .label-total {
            font-family: "OpenSans-Bold";
        }
        .price-open-details {
            cursor: pointer;
        }
        .price-per-person-hotel,
        .price-per-person-flight,
        .label-hotel,
        .label-flight {
            display: none;
            color: gray;
            font-size: 0.9rem;
            &.collapsed {
                display: block;
            }
        }
    }
    .bottom-summary {
        .price {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
            > * {
                justify-content: space-between;
                margin: 0;
            }

            .partial-payment {
                .title {
                    color: #097d4d;
                    font-family: 'OpenSans-SemiBold';
                }
                .subtitle {
                    color: #8c8a9e;
                    font-family: 'OpenSans-Regular';
                    margin-left: 1.35rem;
                    font-size: 0.9rem;
                }
            }
        }
    }
}

.hotel-presentation-background {
    background-color: #f0f0f5;
}

.container-included {
    span {
        padding-bottom: 0.75rem;
        font-size: 1.75rem;
        font-weight: bold;
        font-family: "Gilroy",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    }
}

.styled-ul,
.container-facilities,
.container-location {
    ul {
        padding-left: 20px;
    }

    ul li {
        list-style: none;
        position: relative;
        line-height: 1.35rem;
        padding: 0.2rem 0.2rem 0.2rem 0.1rem;
    }

    ul li:before {
        position: absolute;
        color: #11e38c;
        font-family: "Line Awesome Free";
        -webkit-text-stroke: 1.5px #11e38c;
        font-weight: 900;
        content: "\f00c";
        left: -1.4rem;
        padding-top: 0.1rem;
        top: 0.1rem;
    }
}

.container-facilities,
.container-location {
    ul {
        column-count: 3;
        column-gap: 20px;
    }
}

.container-hotel-details .btn {
    border-radius: 2rem;
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
    font-family: 'OpenSans-SemiBold';
}

.price-tag-3 {
    position: relative;
    padding: 0.4rem 2rem 0.4rem 0.5rem;
    background-color: #11e38c;
    border-radius: 0.2rem 0 0 0.2rem;
    margin-right: 1.43rem;

    &:after {
        content: "";
        position: absolute;
        right: -1px;
        bottom: 0;
        width: 0;
        height: 0;
        border-right: 8px solid white;
        border-top: 22.2px solid transparent;
        border-bottom: 22.2px solid transparent;
    }

    label {
        display: block;
        margin: 0;
        font-size: 0.9rem;
        line-height: 1;
        color: #032517;
        font-family: 'OpenSans-SemiBold';
    }

    .total {
        font-size: 1.8rem;
        font-family: 'Gilroy';
        color: #032517;
        line-height: 1;
    }
}

.sub-section-title {
    color: #1f094b;
    font-size: 24px;
    font-weight: bold;
    font-family: "Gilroy", sans-serif;
}

.hotel-details-main {
    position: relative;
}

.right-navigation-menu-container {
    position: absolute;
    top: 0;
    right: -100%;
}

.right-navigation-menu {
    position: sticky;
    top: 1rem;
    box-shadow: 0 0 2rem rgba(255, 255, 255, 1);
    border-radius: 2rem;
    background-color: #E4E4Ef;

    li {
        padding: 0.8rem 1.6rem;
        font-family: "OpenSans-SemiBold";
        a {
            color: black;
            display: flex;
            align-items: center;
        }
        i {
            margin-right: 0.5rem;
            font-size: 2rem;
        }
        a:hover {
            text-decoration: none;
        }
    }
    li:first-child {
        padding-top: 1.2rem;
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }
    li:last-child {
        padding-bottom: 1.2rem;
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }
    li:hover {
        cursor: pointer;
        background-color: #D8D8E5;
        font-family: "OpenSans-Bold";
    }
}

.loading-spinner {
    display: flex;
    position: absolute;
    background-color: #ffffffaa;
    z-index: 1000;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    top: 0;
    > * {
        width: 5rem;
        height: 5rem;
    }
}

@media screen and (max-width: 540px) {
    .container-hotel-details {
        #section-travel,
        #section-about,
        #section-location {
            ul {
                column-count: 2 !important;
            }
        }
    }
    .right-navigation-menu {
        display: none;
    }
    .flight-item {
        user-select: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        .logo-price {
            display: flex;
            justify-content: space-between;
            /* gap: 1rem; */
            align-items: flex-end;
            > * {
                flex: none;
            }
        }
        .plane-dots {
            margin-top: 0;
            .duration {
                background-color: white;
                position: absolute;
                top: -0.4rem;
                left: calc(50% - 6rem);
                transform: translateY(50%);
            }
        }
    }
    .flight-item {
        .content {
            flex-direction: column;
            .outbound {
                border-right: none !important;
                border-bottom: 1px solid black;
                padding: 8px !important;
            }
            .return {
                padding: 8px !important;
            }
        }
    }


    .flight-item-with-return {
        .outbound,
        .return {
            flex-direction: column;
            gap: 0;
            .la-plane {
                flex: none;
            }
            .duration {
                position: absolute;
                bottom: 50%;
                transform: translateY(50%);
                left: 10%;
            }
            .airline-logo {
                position: absolute;
                bottom: 50%;
                transform: translateY(50%);
                right: 10%;
                padding-right: 0.5rem;
            }
            .arrival, .departure {
                * {
                    font-size: 14px;
                    padding: 0 !important;
                }
            }
        }
        .price {
            bottom: 50%;

        }
        hr {
            display: block !important;
            height: 1px;
            background-color: #f0f0f5;
            border: none;
        }
    }

    .departure, .arrival {
        align-self: stretch;
        justify-content: space-between !important;
    }
    .bonus-product-list,
    .room-type-list {
        grid-template-columns: 1fr;
    }
    .summary {
        .overall-summary {
            flex-direction: column;
        }
        .price {
            gap: 0.5rem !important;
            .subtitle {
                margin-left: 0 !important;
            }
        }
    }
}

