.detail-tabs {
    width: 100%;
    margin: 0 auto 30px;
    background-color: #003b49;
    display: none;
    padding: 20px 15px;
}

.detail-tabs a {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 24px;
    color: white;
    margin-right: 65px;
}

.detail-tabs a:last-child {
    margin-right: 0;
}

@media (min-width: 1025px) {
    .detail-tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 50px;
    }
}

.custom-packages-panel .title-cont {
    padding: 0 15px 20px;
}

.custom-packages-panel ul {
    line-height: 26px;
}

.custom-packages-panel ul li {
    margin-bottom: 15px;
}

.custom-packages-panel .title-container {
    padding: 0 15px;
}

.custom-packages-panel .title-container h2 {
    margin-top: 0;
}

.custom-packages-panel .inner-container {
    width: 100%;
}

.custom-packages-panel .inner-container .contentRender_name_plugins_core_textbox {
    padding: 0;
}

.two-col {
    display: flex;
    flex-direction: column;
}

.two-col .left-col,
.two-col .right-col {
    width: 100%;
    padding: 0 15px 20px;
}

.custom-packages-panel .inner-container .contentRender_name_plugins_core_textbox ul {
    margin-left: 15px;
}

@media (min-width: 641px) {
    .two-col {
        flex-direction: row;
    }
    .two-col .left-col,
    .two-col .right-col {
        width: 50%;
    }
    .custom-packages-panel .title-container {
        margin-bottom: 25px;
    }
}

.custom-packages-panel .drawer {
    background-color: #00a1d3;
    cursor: pointer;
}

.custom-packages-panel .drawers .drawer:first-child {
    margin-top: 5px;
}

.custom-packages-panel .drawer .inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    margin-bottom: 5px;
    padding-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1024 - 320)));
    padding-top: calc(10px + (15 - 10) * ((100vw - 320px) / (1024 - 320)));
}

.custom-packages-panel .drawer .inner h2 {
    margin: 0;
    color: white;
    font-size: calc(26px + (32 - 24) * ((100vw - 320px) / (1024 - 320)));
}

.custom-packages-panel .drawer .inner i {
    font-size: calc(16px + (28 - 16) * ((100vw - 320px) / (1024 - 320)));
    color: white;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
}
.custom-packages-panel .drawer.open .inner i {
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
    transform: rotate(180deg);
}
@media (min-width: 1025px) {
    .custom-packages-panel .drawer .inner {
        padding: 15px 90px;
        margin-bottom: 7px;
    }
    .custom-packages-panel .drawer .inner i {
        font-size: 28px;
    }
    .custom-packages-panel .drawer .inner h2 {
        font-size: 32px;
    }
    .custom-packages-panel .title-cont {
        margin-bottom: 40px;
    }
    .custom-packages-panel .drawers .drawer:first-child {
        margin-top: 7px;
    }
}

.detail-map {
    position: relative;
    z-index: 2;
}

.detail-map::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #68d2df;
    opacity: 0.6;
    z-index: 1;
}

.detail-map .toggle-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 25px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background-color: #003a48;
    padding: 12px 36px;
    z-index: 3;
    width: 100%;
    max-width: 290px;
}

@media (min-width: 1025px) {
    .detail-map .toggle-map {
        max-width: 375px;
        font-size: 19px;
        padding: 15px 36px;
    }
}