:root {
    --ORANGE10: #C67C2D;
    --ORANGE20: #EE9536;
    --ORANGE30: #F4B879;
    --ORANGE40: #F9DCBC;
    --ORANGE50: #FCEAD7;

    --BLUE10: #354FCD;
    --BLUE20: #3F5FF6;
    --BLUE30: #7F94F9;
    --BLUE40: #BFCAFC;
    --BLUE50: #D9DFFD;

    --NEUTRAL10: #151515;
    --NEUTRAL20: #3C3C3C;
    --NEUTRAL30: #8A8A8A;
    --NEUTRAL40: #D0D0D0;
    --NEUTRAL50: #FFFFFF;

    --AlertDanger: #FA2C5A;
    --AlertWarning: #DF9947;
    --AlertSuccess: #73CA5C;
}

body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    text-rendering: optimizeLegibility;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--NEUTRAL10);
    background: var(--NEUTRAL50);
}

img {
    width: 100%;
}

a,
a:link,
a:visited {
    color: var(--NEUTRAL10);
    text-decoration: none;
}

.link {
    cursor: pointer;
}

.wrap-menu {
    visibility: hidden;
}

.wrap-menu.open {
    visibility: visible;
    z-index: 10;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000090;
    z-index: 11;
}

.list-menu {
    background: var(--NEUTRAL50);
    position: fixed;
    top: 0;
    right: -50px;
    min-width: 0;
    max-width: 0;
    min-height: 100vh;
    box-shadow: 4px 0 30px 9px #00000020;
    transition: all .7s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 15px 20px;
    z-index: 12;
}

.wrap-menu.open > .list-menu {
    min-width: 300px;
}

.list-menu a,
.list-menu a:link {
    display: block;
    margin-bottom: 12px;
    color: var(--NEUTRAL20);
    font-weight: bold;
}

#top.front {

}

#top.front:after {
    content: "";
    width: 100%;
    height: 160px;
    background: var(--BLUE50);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#top .menu {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

#top .menu img {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    margin-right: 20px;
}

#top .banner img {
    border-radius: 12px;
    height: 138px;
    object-fit: cover;
    object-position: bottom;
}

#top-bg .banner img {
    border-radius: 12px;
    height: 190px;
    object-fit: cover;
    object-position: top;
}

#bottom {
    margin-top: 50px;
}

#bottom .card-custom {
    height: calc(100vh - 50px);
    border-radius: 20px 20px 0 0;
}

/* Menu hamburger */
.menu-mobile {
    position: relative;
}

.menu-mobile .toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 26px;
    height: 30px;
    cursor: pointer;
    opacity: 0;
}

.menu-mobile .hamburger {
    z-index: 1;
    width: 26px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-mobile .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: var(--NEUTRAL10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.menu-mobile .hamburger > div::before,
.menu-mobile .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -9px;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: inherit;
}

.menu-mobile .hamburger > div::after {
    top: 9px;
}

.menu-mobile .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
}

.menu-mobile .toggler:checked + .hamburger > div:before,
.menu-mobile .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
}

#category {
    margin-top: 25px;
}

#category a {
    text-align: center;
    display: block;
}

#category a > i {
    width: 50px;
    height: 50px;
    line-height: 53px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    color: var(--ORANGE20);
    background-color: var(--ORANGE40);
    display: inline-block;
    transition: all .2s ease-in-out;
}

#category a > p {
    margin-top: 8px;
    font-size: 14px;
}

#category a:hover > i {
    color: var(--ORANGE40);
    background-color: var(--ORANGE30);
}

#popular {
    margin-top: 25px;
}

#popular #lightSlider {
    width: 880px !important;
    height: auto !important;
    padding-bottom: 20px !important;
}

#bannerSlider .for-first {
    padding: 0 15px 0 0;
}

#popular #lightSlider .for-first {
    padding-left: 14px;
}

#popular #lightSlider .for-first:last-child,
#bannerSlider .for-first:last-child {
    padding-right: 14px;
}

#popular #lightSlider .for-first > div {
    position: relative;
    padding: 4px;
    border-radius: 12px;
    background-color: #FFF;
    box-shadow: 1px 3px 4px #22222210;
}

#popular #lightSlider .for-first img {
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

#top-bg:before {
    content: '';
    width: 100%;
    height: 250px;
    background-color: var(--BLUE20);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#top-bg.top-bg-orange:before {
    background-color: var(--ORANGE40);
    height: 390px;
}

#top-bg.top-bg-white:before {
    background-color: var(--NEUTRAL50);
}

#top-bg .image-bg {
    position: absolute;
    right: 0;
    top: 30px;
    z-index: -1;
    height: 150px;
    width: auto;
    object-fit: cover;
    opacity: .8;
}

#top-bg h2 {
    font-size: calc(1.25rem + .9vw);
    font-weight: bold;
}

#top-bg .carousel-inner,
#top-bg .carousel-item {
    height: 300px;
}

#top-bg .carousel-item img {
    height: auto;
    width: 80%;
    margin: 0 auto;
    object-fit: cover;
}

#top-bg .carousel-indicators [data-bs-target],
#content .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin-right: 5px;
    margin-left: 5px;
    border: 0;
    background-color: var(--NEUTRAL10)
}

#top-bg #carouselPenginapan {
    margin-top: -80px;
}

#top-bg #carouselPenginapan,
#top-bg #carouselPenginapan .carousel-inner,
#top-bg #carouselPenginapan .carousel-item,
#top-bg #carouselPenginapan .carousel-item img {
    border-radius: 0 !important;
    height: 300px;
}

.navigation {
    margin: 40px 0 20px;
}

.navigation .back {
    outline: 0;
    border: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 24px;
    background-color: transparent;
    color: var(--NEUTRAL50);
}

.navigation h5 {
    letter-spacing: -1px;
}

.navigation .btn-action {
    padding: 0;
    width: 38px;
    height: 38px;
    font-size: 18px;
}

#content {

}

#content h4 {
    font-weight: 600;
    letter-spacing: -1px;
}

#content h5 {
    letter-spacing: -1px;
}

#content .form-search-jeep .form-control {
    padding-right: 33px;
}

#content .form-search-jeep .form-control ~ i {
    position: absolute;
    right: 14px;
    top: 35px;
    color: var(--NEUTRAL30);
}

#content .form-search-jeep .row-cols-2 .form-control ~ i {
    right: 24px;
}

#content textarea.form-control {
    height: 23px;
    line-height: 23px;
    resize: none;
    overflow: hidden;
}

#content .text-alert {
    display: block;
    color: #88888870;
}

#content .nav-tabs {
    border-color: #EEE;
    justify-content: space-between;
}

#content .nav-tabs .nav-item {
    width: 50%;
    flex: 0 0 50%;
}

#content .nav-tabs .nav-link {
    width: 100%;
    border: 0;
    border-bottom: solid 1px transparent;
    border-radius: 0;
    margin: 0 auto -1px;
    padding: .2rem 1rem .8rem 1rem;
}

#content .nav-tabs .nav-item.show .nav-link,
#content .nav-tabs .nav-link.active {
    color: var(--NEUTRAL10);
    font-weight: bold;
    border-bottom-color: var(--ORANGE10);
}

#content .nav-33 .nav-item {
    width: 33.33%;
    flex: 0 0 33.33%;
}

#content .list-bank {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #EEE;
}

#content .list-bank:last-child {
    border: 0;
}

#content .list-bank .form-check-input {
    transition: all .2s ease-in-out;
}

#content .btn-coupon {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 10px;
}

#content .list-bank img {
    width: 40px;
    margin-right: 10px;
}

#content .timeline {
    position: relative;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

#content .timeline:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--BLUE20);
    z-index: -1;
}

#content .timeline li {
    display: flex;
    align-items: center;
    cursor: default;
    padding: 0 12px;
    margin: 0;
    list-style: none;
    font-size: 14px;
    background-color: var(--NEUTRAL50);
}

#content .timeline li .number {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    border: solid 1px var(--BLUE20);
    padding: 0;
    margin-right: 5px;
    text-align: center;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content .timeline li.active .number {
    color: var(--NEUTRAL50);
    background-color: var(--BLUE20);
}

#content .badge-countdown {
    padding: 0.55em 0;
    width: 22px;
    margin-left: -2px;
    margin-right: -2px;
}

#content .list-penginapan {
    padding-bottom: .9rem;
    border-bottom: solid 1px #F5F5F5;
    cursor: pointer;
}

#content .list-penginapan img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

#content .img-hotel {
    height: 180px;
    object-fit: cover;
}

#content .price-hotel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E1E1E1;
    padding: .6rem 1rem;
}

#content .price-hotel .btn {
    font-size: 14px;
    padding: 4px 17px;
}

#content .list-oleh {
    border-bottom: solid 1px #EEE;
    margin-bottom: 13px;
    padding-bottom: 13px;
}

#content .list-oleh:last-child {
    border-bottom: 0;
}

#content .list-oleh img {
    flex: 0 0 90px;
    width: 90px;
    height: 70px;
    object-fit: cover;
    margin-right: 10px;
}

#content .list-oleh .btn {
    font-size: 14px;
    padding: 4px 17px;
}

#content .list-oleh .bi {
    display: inline-block;
    flex: 0 0 30px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    background-color: var(--ORANGE50);
    border-radius: 16px;
}

#content .list-wisata {
    box-shadow: none;
    height: 320px;
    position: relative;
}

#content .for-first {
    padding-left: 20px;
}

#content .for-first:last-child {
    padding-right: 20px;
}

#content .list-wisata .thumbnail {
    position: absolute;
    width: 100%;
    height: inherit;
    object-fit: cover;
    filter: brightness(60%);
    z-index: 1;
}

#content .list-wisata .caption {
    position: absolute;
    bottom: 38px;
    width: 100%;
    color: #FFF;
    padding: 20px 0 20px 20px;
    z-index: 2;
}

#content .list-wisata .btn {
    position: absolute;
    bottom: 0;
    height: 38px;
    border-radius: 0;
    z-index: 3;
}

#carouselPenginapan.carousel {
    border-radius: 16px;
    overflow: hidden;
}

#carouselPenginapan .carousel-inner,
#carouselPenginapan .carousel-item {
    height: 200px;
}

#carouselPenginapan .carousel-item img {
    height: 200px;
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
}

#carouselPenginapan .carousel-indicators [data-bs-target] {
    margin-right: 4px;
    margin-left: 4px;
    background-color: var(--NEUTRAL50)
}

#account .col-12 .img-status {
    width: 200px;
}

#account .account-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 12px;
    background-color: var(--NEUTRAL50);
    padding: 2px;
    border: solid 1px #00000020;
}

#account .status {
    background-color: #00000090;
    color: #FFF;
    padding: 5px 8px;
    font-size: .7rem;
    border-radius: 3px;
    letter-spacing: 1px;
}

#account .status.active,
#account .status:hover {
    background-color: var(--AlertSuccess);
}

#account .h-full {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: calc(89vh - 4px);
    overflow: auto;
}

#account .list-state {
    width: 100%;
}

.list-state .list-order {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px #EEE;
}

.list-state .list-order:last-child {
    border-bottom: 0;
}

.list-state .list-order > i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 53px;
    flex: 0 0 50px;
    border-radius: 50%;
    font-size: 1.4em;
    color: var(--NEUTRAL50);
    background-color: var(--ORANGE40);
    text-align: center;
}

.list-state .list-order > div.ps-3 {
    flex: 0 0 calc(100% - 50px);
}

.list-state .list-order .status-order {
    background-color: #00000040;
    color: #FFF;
    padding: 3px 4px;
    font-size: .7rem;
    border-radius: 3px;
    letter-spacing: 1px;
}

.card-custom {
    background-color: var(--NEUTRAL50);
    border-radius: 12px;
    border: 0;
    padding: 15px;
    box-shadow: 0 2px 15px #55555530;
    transition: all .3s ease-in-out;
}

.offcanvas-custom {
    border-radius: 12px 12px 0 0;
}

.offcanvas-custom .indicatior-close {
    width: 100px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--NEUTRAL40);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.offcanvas-custom .offcanvas-title {
    margin-top: 20px;
}

.wrap-upload-image {
    width: 90%;
    height: auto;
    min-height: 200px;
    margin: 10px auto 20px;
    padding: 2px;
    border-radius: 12px;
    border: dotted 2px var(--NEUTRAL40);
    background-color: var(--NEUTRAL50);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wrap-upload-image > i {
    font-size: 36px;
    color: var(--NEUTRAL40);
}

.wrap-upload-image > img {
    height: auto;
    border-radius: 9px;
}

.rating {
    display: flex;
    align-items: center;
}

.rating i {
    font-size: 15px;
    margin-right: 5px;
    color: #DDD;
}

.rating i.check {
    color: #FFB801;
}

.btn.btn-qty {
    padding: 0;
    margin: 0;
    border: 0;
    width: 33px;
    height: 33px;
    line-height: unset;
    border-radius: 8px;
    text-align: center;
    font-size: 19px;
}

.text-qty {
    padding: 0 7px;
    font-size: 18px;
    height: 33px;
    display: inline-block;
    text-align: center;
}

.list-selection {
    position: relative;
    transition: all .2s ease-in-out;
}

.selection-check {
    position: absolute;
    right: 0;
    top: 0;
}

.selection-check > input {
    width: 1.6em;
    height: 1.6em;
    border-radius: 0.5em !important;
    border: 1px solid rgba(0, 0, 0, .15);
}

/* GLOBAL CONTAINER CSS */
@media (min-width: 660px) {

    section > .container,
    .offcanvas > .container {
        width: 660px;
    }

    #top .banner .lightSlider,
    #top .banner img {
        height: 250px !important;
    }

    #top-bg .carousel-item img {
        width: auto;
        height: 245px;
    }

    #bannerSlider .for-first {
        padding: 0 15px 0 0;
    }

    #top-bg #carouselPenginapan .carousel-item img {
        width: 100%;
        height: 300px;
    }
/*    
    .navbar-bottom {
        width: 660px;
        margin: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .offcanvas .container .col-md-4 {
        width: 100%;
    }
    #slider .lightSlider,
    #slider .lslide img {
        height: 350px !important;
    }
*/
}

/* Jquery Validate */
.form-control.error:focus,
.form-select.error:focus {
    box-shadow: 0 0 0 0.2rem rgba(253, 7, 7, 0.2);
    border-color: #fe8686;
}

label.error {
    position: relative;
    margin: 3px 0 5px 3px;
    font-size: 12px;
    color: #c32c27;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
    display: block;
    transform: none !important;
}

/* Bootstrap icons */
.bi.bi-rotate-90 {
    transform: rotate(90deg);
}

/* Custom css bootstrap */
.btn {
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-sm {
    padding: .2rem .5rem !important;
    font-size: .8rem !important;
}

.btn-orange {
    color: #fff;
    background-color: var(--ORANGE10);
    border-color: #ba7429;
}

.btn-orange:hover {
    color: #fff;
    background-color: #AC6B21;
    border-color: #975d19;
}

.btn-orange:focus {
    box-shadow: 0 0 0 .20rem #EE953630;
}

.btn-outline-orange {
    color: #975d19;
    border-color: #AC6B21;
}

.btn-outline-orange:hover {
    color: #fff;
    background-color: #975d19;
    border-color: #AC6B21;
}

.btn-outline-orange:focus {
    box-shadow: 0 0 0 0.20rem #EE953630;
}

.text-orange {
    color: var(--ORANGE20);
}

.form-control,
.form-select {
    font-size: 15px;
    border-radius: 8px;
    border-color: #E5E5E5;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--ORANGE20);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ORANGE30);
    box-shadow: 0 0 0 0.20rem #EE953640;
}

.form-control::placeholder {
    font-size: 14px;
    color: #AAA;
}

.form-control[readonly] {
    background-color: unset;
}

.form-select {
    color: #6C757D;
    transition: all .15s ease-in-out;
}

.form-label {
    color: var(--NEUTRAL30);
    margin-bottom: .3rem;
    font-size: 13px;
}

.form-check-input:checked {
    border-color: var(--ORANGE20);
    background-color: var(--ORANGE20);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.20rem #EE953640;
}

.offcanvas-header {
    padding: 1rem 1rem 0;
}

/* Custom css air datepicker */
#datepickers-container {
    z-index: 9999;
}

.form-control.datepicker-here[readonly] {
    background-color: #FFF;
}

.datepicker {
    cursor: default;
    font-family: "Work Sans", sans-serif;
}

/* Toast */
.toast {
    width: auto;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    border-radius: 10px;
    background-color: #FFF;
    overflow: hidden;
    z-index: -1;
}

.toast.show,
.toast.hide {
    z-index: 1111;
}

.toast-body {
    padding: 1em 2em 1em 1.6em;
    font-weight: 600;
    letter-spacing: .5px;
}

.toast .btn-close {
    width: 5px;
    height: 5px;
    box-shadow: none;
}

.toast-body:before {
    content: "";
    width: 6px;
    height: 42px;
    background-color: var(--ORANGE10);
    border-radius: 6px;
    position: absolute;
    left: 6px;
    top: 5px;
}