/* START: Ambient Animation */
@media (prefers-reduced-motion: no-preference) {
    .animate-ambient {
        animation: animateAmbient 20s linear infinite;
    }
    @keyframes animateAmbient {
        0% {
        transform: rotate(0deg) translateX(.5em) rotate(0deg) scale(1.12);
        }
        100% {
        transform: rotate(360deg) translateX(2em) rotate(-360deg) scale(1.12);
        }
    }
}
/* END: Ambient Animation */

/* GENERAL */
.headtitle {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 60px;
}
.headtitle h3 {
    font-size: 2em;
}
.headtitle h3 span {
    color: var(--color2);
    font-size: 60%;
    font-weight: normal;
    display: block;
    line-height: 1.5em;
}
.headtitle h3:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--color2);
    margin: 10px auto;
}
.boxtitle {
    border-bottom: 3px solid var(--colorborder);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.boxtitle:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color2);
}
.container {
    padding: 80px var(--autopad);
    background-image: linear-gradient(to bottom, var(--colorbg), var(--colorlight));
    position: relative;
}

/* MENU TOP */

.topmenu {
    background: var(--color1);
    color: var(--colorwhite);
}
.topmenu.sticky {
    position: sticky;
    top: 0;
    z-index: 99;
}
.topmenu ._menu {
    display: flex;
    padding: 10px var(--autopad);
    align-items: center;
    gap: 5px;
    font-size: .85em;
    background: rgba(0,0,0,0.2);
}
.topmenu ._menu ul {
    display: flex;
    gap: 5px;
    max-width: 780px;
}
.topmenu ._menu ul li ul {
    display: none;
}
.topmenu ._menu ul li ul li{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topmenu a {
    color: var(--colorwhite);
    text-transform: uppercase;
    padding: 5px 10px;
    line-height: 1em;
    border-radius: calc(var(--inbradius) / 2);
}
.topmenu li {
    list-style: none;
}
.tropen {
    display: none;
    margin-left: auto;
    cursor: pointer;
}
.topright {
    margin-left: auto;
    align-items: center;
    display: flex;
    gap: 15px;
    position: relative;
}
.topright a {
    font-size: 1.2em;
    padding: 5px;
}
.topright i {
    cursor: pointer;
}
.topright #language {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100px;
    text-align: center;
    background: var(--colorlight);
    color: var(--colorbody);
    display: none;
    border-bottom-left-radius: var(--inbradius);
    border-bottom-right-radius: var(--inbradius);
    overflow: hidden;
    z-index: 1;
}
.topright #language li {
    padding: 10px;
    line-height: 1em;
    cursor: pointer;
}
.topright #language li:hover {
    text-decoration: underline;
}
.topright #language li.active {
    background: var(--color2);
    color: var(--colorwhite);
    cursor: unset;
    text-decoration: none;
}
.topright #currency {
    cursor: pointer;
    background: var(--color1);
    border: none;
    box-shadow: none;
    color: var(--colorwhite);
    padding: 5px;
    border-radius: calc(var(--inbradius) / 2);
    height: 28px;
}
.topright .searchbox {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    padding: 10px;
    text-align: center;
    background: var(--colorlight);
    color: var(--colorbody);
    display: none;
    border-bottom-left-radius: var(--inbradius);
    border-bottom-right-radius: var(--inbradius);
    overflow: hidden;
    z-index: 1;
}
.topright .searchbox input {
    width: 70%;
}
.topright .searchbox button {
    width: 28%;
}
.topmenu a:hover{
    background: var(--color1);
}

/* SIDE MENU */
.sideopen {
    margin-right: 10px;
    cursor: pointer;
}
.sidemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    padding-top: 35px;
    background: var(--color1);
    transition: .5s;
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
}
.sidemenu ._close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: var(--color2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorwhite);
    cursor: pointer;
}
.sidemenu ul li {
    list-style: none;
    padding: 4px;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #ffffff1c
}

.sidemenu li a {
    text-decoration: none;
    text-transform: capitalize;
}

.sidemenu li li {
    margin-left: 12px;
    border-bottom: none
}

.sidemenu li li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd
}

.sidemenu li li a {
    font-size: 90%;
    margin-left: 5px;
}

.sidemenu .children,
.sidemenu .sub-menu {
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}

.sidemenu .children::-webkit-scrollbar,
.sidemenu .sub-menu::-webkit-scrollbar {
    display: none;
}

.sidemenu>ul>li:has(.children):after,
.sidemenu>ul>li:has(.sub-menu):after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 30px;
    height: 10px;
    background-image: url(../images/downArrow.png);
    background-repeat: no-repeat;
    background-position: right
}

.sidemenu li:hover .children,
.sidemenu li:hover .sub-menu {
    display: block;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* HEADER */

.header {
    background: var(--colorlight);
    position: relative;
    padding: 30px var(--autopad);
    display: grid;
    grid-template-columns: 300px auto;
    gap: 30px;
    justify-content:space-between;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}
.logo {
    font-size: .9em;
    line-height: 1.5em;
}
.logo b {
    font-size: 2em;
    font-weight: 600;
}
.logo img {
    max-height: 60px;
    width: auto;
}

/* Top Kontak */
.topkontak {
    gap: 15px;
}
.topkontak > a {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--inbradius);
    border: 1px solid transparent;
    position: relative;
}
.topkontak i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: var(--color1);
    justify-content: center;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    color: var(--colorwhite);
    border-radius: var(--inbradius);
}
.topkontak p {
    margin: 0;
    line-height: 1.5em;
    font-size: .9em;
    color: var(--colorbody);
}
.topkontak b {
    color: var(--color1);
    font-size: 1.2em;
}
.topkontak a:hover {
    background: var(--colorbg);
    border-color: var(--colorborder);
}
.topkontak a:hover b {
    color: var(--color2);
}
.topkontak * {
    transition: .5s;
}

/* Style 2 Top Kontak */
.topkontak.style2 a {
    border-color: var(--color1);
}
.topkontak.style2 a > i {
    background: var(--color1)!important;
}
.topkontak.style2 > a:hover {
    border-color: var(--color2);
}
.topkontak.style2 > a:hover p {
    color: var(--color2);
}
.topkontak.style2 > a:hover i {
    background: var(--color2)!important;
}

/* Style 3 Top Kontak */
.topkontak.style3{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 30px var(--autopad) 30px 20px;
    background: var(--color1);
    color: var(--colorwhite);
}
.topkontak.style3 {
    overflow-x: unset;
}
.topkontak.style3 p, .topkontak.style3 b {
    color: var(--colorwhite);
}
.topkontak.style3::before{
    content: '';
    position: absolute;
    left: -35px;
    top: -50px;
    width: 70px;
    transform: rotate(-30deg);
    height: calc(100% + 100px);
    background: var(--color1);
    border-left: 8px solid var(--color2);
}
.topkontak.style3 a:hover {
    background: rgba(0,0,0,0.2);
    border-color: transparent;
}

/* Newsticker */
.newsticker {
    background: var(--color1);
    color: var(--colorwhite);
    height: 46px;
}
.newsticker ul {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(0,0,0,0.2);
}
.newsticker ul li {
    font-size: 15px;
    display: flex;
    align-items: center;
}
.newsticker ul li span {
    font-size: 90%;
    padding: 5px;
    background: var(--color2);
    margin-right: 5px;
    border-radius: calc(var(--inbradius) / 2);
    line-height: 1em;
}
.newsticker ul li a {
    color: var(--colorwhite);
}

/* Slider Top */
#sliderwrap {
    background: var(--colorbg);
}
.slider {
    width: 100%;
    overflow: hidden;
}
.slider-item {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.konten-slider {
    position: absolute;
    max-width: 800px;
    width: 90%;
    top: 50%;
    left: 50%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--colorwhite);
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: var(--bradius);
    text-align: center;
}
.konten-slider.overlay {
    background: rgba(0,0,0, .5);
}
.konten-slider.fly {
    top: calc(50% - 40px);
}
.konten-slider > * {
    margin: 0;
}
.konten-slider h2 {
    color: var(--colorwhite);
    font-size: 2.4em;
    line-height: 1.2em;
}
.konten-slider h2 span {
    color: var(--color2);
    font-size: .5em;
    line-height: 1.5em;
    font-weight: 400;
    display: block;
}
.konten-slider p {
    font-size: 1.2em;
}

/* Rent Form */
#rent-search {
    position: relative;
    background: var(--color1);
    padding: 60px var(--autopad) 80px;
    overflow: hidden;
}
#rent-search .headtitle {
    position: relative;
}
#rent-search h3,
#rent-search h3 span {
    color: var(--colorwhite);
}
#rent-search::before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-image: url(../svg/search.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70%;
    opacity: .1;
    transform: scaleX(-1);
}
#rent-search.fly {
    margin: -80px auto 0!important;
    max-width: var(--maxwidth);
    padding: 60px;
    border-radius: var(--bradius);
}
#rent-search.fly.noslider {
    margin-top: 40px!important;
}
.rent-search {
    display: grid;
    grid-template-columns: auto auto auto 200px;
    gap: 15px;
    color: var(--colorwhite);
    position: relative;
    overflow: hidden;
}
.rent-search label, .rent-search button {
    align-self: flex-end;
}
.rent-search input, .rent-search select {
    height: 50px;
    width: 100%;
    background: var(--colorbg);
}

/* Home - Benefit */
.why {
    align-items: center;
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
}
.why img {
    width: 120px;
    height: 120px;
    border-radius: var(--bradius);
    padding: 10px;
    transition: .5s;
}
.why:hover img {
    transform: translateY(-5px);
}

/* Home - Testimonial */
#testimonial > div {
    position: relative;
}
#testimonial .headtitle h3 span {
    color: var(--color1);
}
.testimoni {
    padding: 20px;
    background: var(--colorlight);
    border-radius: var(--bradius);
    margin: 0 20px;
    position: relative;
}
.testimoni::before {
    font-family: arial, sans-serif;
    content: "\201C";
    color: var(--color2);
    font-size: 6em;
    position: absolute;
    right: 30px;
    top: 50px;
}
.testimoni ._profil {
    align-items: center
}
.testimoni ._detail img {
    align-self: flex-start;
}
.testimoni .avatar {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color2);
    overflow: hidden;
    padding: 3px;
    background: var(--colorlight);
}
.testi-rate .icofont-ui-rating.fill{
    color: #ffbb01;
}
.testi-rate .icofont-ui-rating.empty{
    color: #CCC;
}

/* Testimonial - Style 2 */
#testimonial.style2 {
    display: flex;
    width: 100%;
    gap: 40px;
    flex-direction: row-reverse;
}
#testimonial.style2 .headtitle {
    text-align: right;
    width: 45%;
    flex: none;
    margin: 0;
}
#testimonial.style2 .headtitle h3:after {
    margin-right: 0;
}
#testimonial.style2 .testimonial {
    width: calc(100% - 45% - 40px);
}

/* Home - Benefit/ Blog / Rental */
#benefit.style2,
#blog.style2,
#rental.style2 {
    display: flex;
    gap: 20px;
    align-items: center;
}
#benefit.style2 .headtitle,
#blog.style2 .headtitle,
#rental.style2 .headtitle {
    text-align: left;
    width: 450px;
    flex: none;
    margin: 0;
}
#benefit.style2 .headtitle h3:after,
#blog.style2 .headtitle h3:after,
#rental.style2 .headtitle h3:after {
    margin-left: 0;
}
#blog.style2 .grid,
#rental.style2 .grid {
    gap: 20px;
    width: calc(100% - 450px - 20px);
}
#blog.style2 .grid .loop,
#rental.style2 .grid .loop {
    margin: 5px 0 15px;
}
#blog.style2 .grid .read-more {
    display: none;
}
#blog.style2 .grid .owl-item,
#rental.style2 .grid .owl-item {
    padding: 20px;
}
.container.style2 .owl-prev,
.container.style2 .owl-next {
    background-color: var(--colorlight);
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
    color: var(--colorwhite);
}

/* Loop */
.loop {
    border: 1px solid var(--colorborder);
    background: var(--colorlight);
    border-radius: var(--bradius);
    position: relative;
    transition: all 2000ms cubic-bezier(0.2, 1, 0.2, 1) 0ms;
    overflow: hidden;
    width: 100%;
    align-self: flex-start;
}
.loop:hover {
    /* box-shadow: 0 5px 15px 0 #DDD; */
    box-shadow: 5px 5px 0 0 var(--colorborder);
    transform: translateY(-5px);
}
.loop .pigura {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: block;
}
.loop .pigura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 2000ms cubic-bezier(0.2, 1, 0.2, 1) 0ms;
}
.loop:hover .pigura img {
    transform: scale(1.1);
}
.loop .content {
    padding: 15px;
}
.loop .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loop ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none;
}

/* Loop Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Loop List */
.list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.list .loop {
    display: flex;
    align-self: unset;
}
.list .pigura {
    width: 250px;
    height: auto;
    overflow: hidden;
    display: block;
}
.list .content {
    width: calc(100% - 250px);
}
.list .bttn.read-more {
    display: none;
}

/* Loop Rental */
.rent ._category {
    line-height: 1em;
}
.rent ._category a{
    color: var(--color2);
}
.rent ._detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    border-top: 1px solid var(--colorborder);
    padding-top: 10px;
}
.rent ._price {
    position: absolute;
    right: 15px;
    top: 15px;
    background: var(--color2);
    color: var(--colorwhite);
    padding: 10px;
    border-radius: var(--inbradius);
    font-weight: 600;
    line-height: 1em;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.rent ._price span {
    font-size: .8em;
    font-weight: 400;
}
.rent ._brand {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--colorwhite);
    background: var(--color2);
    padding: 10px;
    line-height: 1em;
    border-radius: calc(var(--inbradius) / 2);
    z-index: 11;
}
.rent ._button {
    display: grid;
    grid-template-columns: auto 50px;
}
.rent .bttn.detail {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.rent .bttn.contact {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--color2);
}
.rent .bttn.contact:hover {
    background: var(--color2)!important;
}
.rent ._button:hover .bttn.contact {
    background: var(--color1);
}

/* Loop Blog */

.loop.blog ._detail {
    display: flex;
    gap: 15px;
    background: var(--colorbg);
    border-radius: var(--inbradius);
    padding: 7px 10px;
    font-size: .9em;
    flex-wrap: wrap;
}
.blog ._category a{
    background: var(--color2);
    color: var(--colorwhite);
    padding: 5px 10px;
    border-radius: calc(var(--inbradius) / 2);
    font-size: .8em;
}
.grid .loop.blog ._detail {
    justify-content:space-between;
}
.grid .loop.blog ._category {
    position: absolute;
    left: 15px;
    top: 15px;
}

/* Pagination */
.pagination {
    width: 100%;
    text-align: center;
}
.pagination a, .pagination > .current {
    border: var(--colorborder) solid 1px;
    padding: 5px 10px;
    background: var(--colorlight);
    margin: 0 2px;
    display: inline-block;
    min-width: 40px;
    border-radius: var(--inbradius);
}
.pagination a:hover, .pagination > .current {
    color: var(--colorwhite);
    background: var(--color1);
}

/* Footer */

#footer {
    display: grid;
    grid-template-columns: 25% 25% auto;
    gap: 30px;
    padding: 0 var(--autopad);
    background: var(--color1);
    color: var(--colorwhite);
    position: relative;
}
#footer.active {
    padding: 60px var(--autopad);
}
#footer > div {
    position: relative;
    gap: 30px!important;
}
#footer h4 {
    color: var(--colorwhite);
    font-size: 1.2em;
}
#footer h4:after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--color2);
    margin-top: 10px;
}
#footer a {
    color: var(--colorwhite);
}
.widgets ul li {
    list-style: none;
}
.copyright {
    padding: 30px var(--autopad);
    background: var(--color1);
    color: var(--colorwhite);
    text-align: center;
}
.copyright a {
    color: var(--colorwhite);
}
.copyright h5 {
    color: var(--colorwhite);
    display: inline-block;
    margin: 0;
    
}

/* SINGLE TOP */

#singletop.container {
    background: var(--color1);
    overflow: hidden;
}
.single-title {
    position: relative;
    color: var(--colorwhite);
}
.single-title a {
    color: var(--colorwhite);
}
.single-title h1{
    font-size: 2.2em;
    color: var(--colorwhite);
} 
.single-title p{
    font-size: 1.1em;
    max-width: 800px;
    margin: 20px auto;
}
.single-title .bttn,
.single-title button {
    border: 1px solid var(--colorwhite);
}

/* Archive Blog Category */
.taxolist {
    display: flex;
    gap: 10px;
    max-width: 50%;
    margin: 0 auto;
    background: rgba(0,0,0,.1);
    padding: 10px;
    border-radius: var(--inbradius);
}
.taxolist li {
    list-style: none;
    line-height: 1em;
    padding: 6px 10px;
    border-radius: calc(var(--inbradius) / 2);
    transition: .3s;
    background: var(--color2);
}
.taxolist li.current-cat {
    background: var(--color1);
}
.taxolist li a {
    color: var(--colorwhite);
}
.taxolist::-webkit-scrollbar {
    display: none
}

#single.container {
    padding: 50px var(--autopad);
}

/* Single Rental */
.single-title._rental {
    display: flex;
    gap: 30px;
}
/* Single Rental - Style2 */
.single-title._rental.style2 {
    flex-direction: row-reverse;
}

/* Rent Image Slider - Lightslider */
.rent-img {
    position: relative;
    padding: 10px;
    border-radius: var(--bradius);
    background: rgba(0,0,0,.1);
    align-self: flex-start;
    width: 50%;
}
.rent-img img {
    border-radius: var(--inbradius);
    display: block;
    width: 100%;
}
.rent-img .lSSlideOuter .lSPager.lSGallery img,.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border: none;
}
.rent-img .lSPager.lSGallery {
    margin-top: 10px!important;
}
.single-title._rental .rent-info{
    flex: 1
}

/* Rent Facility */
.rent-fasilitas li {
    list-style-type: none;
    margin-left: 0!important;
    padding: 5px 0;
    border-bottom: 1px dashed var(--colorborder);
}
.rent-fasilitas li:last-child {
    border-bottom: none;
}
.rent-fasilitas li::before {
    content: "\2713";
    margin-right: 10px;
}

/* Rent Price */
.rent-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rent-price b {
    font-size: 1.7em;
}
.rent-price ._detail {
    display: flex;
    gap: 10px;
    align-items: center;
}
.rent-price ._detail span {
    padding: 5px;
    line-height: 1em;
    border: 1px solid var(--colorwhite);
    color: var(--colorwhite);
    border-radius: var(--inbradius);
}
.rent-price .tqty {
    display: none;
}
.rent-price .day i {
    font-style: normal;
}
.rent-price .after-price {
    line-height: 1.5em;
    font-size: .8em;
}

/* Rent Option / Harga Pilihan*/
.rent-options ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 5px 10px;
    list-style: none;
}
.rent-options ul li.active {
    background: var(--color2);
    border-radius: var(--inbradius);
}
.rent-options label {
    cursor: pointer;
    display: flex;
    gap: 10px;
}
.rent-options span {
    font-size: .8em;
}
.rent-options input[type=radio] {
    width: 20px;
    margin: 0;
}
.rent-input input,
.rent-input select {
    width: 100%;
    height: 44px;
    border: 1px solid var(--colorbg)!important;
    background: var(--colorbg);
}
.rent-input > * {
    flex: 1;
}
.rent-input .input-qty {
    max-width: 200px;
}
.rent-input .input-day {
    max-width: 100px;
}


/* Number Spiner */
.number-spinner {
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    border-radius: var(--inbradius);
    background: var(--color2);
    height: 44px;
    align-items: center;
}
.number-spinner input {
    position: relative;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 0!important;
}
.number-spinner .ns-btn {
    display: table-cell;
    cursor: pointer;
}
.number-spinner .ns-btn a {
    width: 40px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}
.number-spinner .ns-btn .icon-minus:after {
    content: "\002212";
    font-size: 1.5em;
}
.number-spinner .ns-btn .icon-plus:after {
    content: "\00002B";
    font-size: 1.5em;
}

/* Rent Button */
.rent-info button {
    align-self: flex-start;
    border: 1px solid transparent;
    font-size: 1.1em;
}
.rent-info button:hover {
    border-color: var(--colorwhite);
}
.rent-info ._detail {
    flex-wrap: wrap;
}
.rent-info ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none;
}

/* Booking Popup */
#booking-form {
    min-width: 320px;
    max-width: 900px;
    display: none;
    border-radius: var(--bradius);
    background: var(--colorbg);
    padding: 0;
    position: relative;
}
#booking-form > div {
    overflow: auto;
    max-height: 700px;
    padding: 20px 20px 105px;
}

/* Booking Popup Summary  */
.rent-thumb {
    border-radius: var(--inbradius);
    border: 1px solid var(--colorborder);
    max-width: 150px;
    overflow: hidden;
    position: relative;
}
.rent-thumb ._harga {
    position: absolute;
    left: -1px;
    top: -1px;
    background: var(--colorbg);
    line-height: 1em;
    padding: 7px;
    font-size: .8em;
    border-bottom-right-radius: calc(var(--inbradius) / 2);
    border: 1px solid var(--colorborder);
}
.rent-summary ul {
    flex: 1;
}
.rent-summary  li {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding: 1px 0;
}

/* Popup Summary - Style 2 */
.rent-summary.style2 {
    flex-direction: row-reverse;
}

/* Booking Form */
#booking-form form {
    margin-top: 10px;
}
#booking-form form label, 
#booking-form form select {
    cursor: pointer;
}


/* Rent Extra */
.rent-extra li .addon-opt {
    display: none;
    margin: 5px 0;
}
.rent-extra li .addon-opt .addon-harga {
    margin-left: auto;
}
.rent-extra li .number-spinner input {
    padding: 5px!important;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--inbradius)!important;
    height: 36px;
}
.rent-extra li {
    border-bottom: 1px solid var(--colorborder);
    padding: 5px 0;
}
.rent-extra li:last-of-type {
    border-bottom: none;
}
.rent-extra .number-spinner {
    background: var(--colorlight);
    width: 160px;
}

/* Rent Pengiriman */
.rent-kirim li {
    display: grid;
    grid-template-columns: auto 120px 140px;
    align-items: center;
    gap: 10px;
}
.rent-kirim textarea {
    width: 100%;
    margin-top: 10px;
}
.rent-kirim input, .rent-kirim select {
    height: 46px;
}
.rent-kirim .biaya-kirim {
    margin-left: auto;
    text-align: right;
    height: 38px;
    justify-content: center;
}
.rent-kirim .biaya-kirim span{
    line-height: 1em;
}

/* Rent Customer */
.rent-cust {
    grid-template-columns: 3fr 2fr;
}
.rent-cust h4, .rent-cust input[name="cust-nama"] {
    grid-column: span 2;
}

/* Rent Submit */
.rent-submit {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background: var(--colorlight);
    border-top: 1px solid var(--colorborder);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.rent-submit button {
    display: flex;
    gap: 10px;
    align-self: center;
}

/* Rent Invoice */
.single-title.invoice {
    display: flex;
    gap: 20px;
}
.single-title.invoice li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 2px 0;
}
.single-title.invoice .rent-thumb {
    background: rgba(0,0,0,.1);
    padding: 5px;
    border: none;
}
.single-title.invoice .rent-info {
    place-content: center;
}
.single-title.invoice ._detail {
    margin-left: auto!important;
}
.single-title.invoice ._button {
    display: flex;
    gap: 10px;
}
.single-title.invoice ._button button {
    display: inline-flex;
    gap: 10px;
}
#single.invoice {
    grid-template-columns: 55% auto;
    gap: 20px;
}
#single .invoice-box,
#single .widget-sidebar {
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
    background: var(--colorlight);
    padding: 15px;
}
.list-order {
    border: 1px solid var(--colorborder);
    border-radius: var(--inbradius);
    overflow: hidden;
}
.list-order li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
}
.list-order li:nth-child(odd) {
    background: var(--colorbg);
}
.list-order li:first-child {
    color: var(--colorwhite);
    background: var(--color1);
    font-size: 1.1em;
    padding: 10px;
}
.list-order li:last-child {
    background: var(--colorborder);
    font-size: 1.1em;
}
.list-order i {
    font-style: normal;
}

.invoice-box {
    position: relative;
}
.invoice .widget-sidebar .tabset {
    margin-top: 10px;
}
.invoice .widget-sidebar .tabset label:first-of-type {
    margin-left: 0;
}
.invoice .widget-sidebar .tab-panel {
    border: none;
    padding: 10px 0 0;
    border-top: 1px solid var(--colorborder);
    border-radius: unset;
}
.invoice .widget-sidebar button {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Status */
.status {
    padding: 5px 10px;
    color: var(--colorwhite);
    border-radius: var(--inbradius);
    border: 1px solid var(--colorwhite);
    text-transform: capitalize;
    font-size: .9em;
    line-height: 1.2em;
}
.pending {
    background: #ff0000;
}
.proses {
    background: #1E90FF;
}
.ready {
    background: #FFA500;
}
.in-use {
    background: #FF6347;
}
.selesai {
    background: #008000;
}
.batal{
    background: #AAA;
}

/* Payment Status */
.paystatus {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 10px solid #00bb00;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    top: 25px;
    transform: rotate(30deg);
    opacity: .15;
    z-index: 1;
}
.paystatus span {
    width: calc(100% + 5px);
    padding: 7px;
    background: #00bb00;
    text-align: center;
    line-height: 1em;
    color: var(--colorwhite);
    text-transform: uppercase;
    font-size: 15px;
}

/* Log Status */
.list-status li{
    list-style: none;
    border-left: 1px solid var(--colorborder);
    margin-left: 10px!important;
    position: relative;
    padding: 5px 0 5px 20px;
}
.list-status li::before {
    content: '';
    position: absolute;
    top: 13px;
    left: -7px;
    width: 13px;
    height: 13px;
    background: var(--color1);
    border-radius: 50%;
}
.list-status li b {
    font-weight: 500;
}
.list-status li:first-child b {
    color: var(--color2);
}
.list-status li:first-child::before {
    background: var(--color2);
}
.list-status li:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: -7px;
    width: 13px;
    height: 13px;
    background: var(--colorlight);
}

/* Right Container */
.right-container {
    position: sticky;
    top: 70px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.widget-sidebar > ul li {
    margin-left: 20px;
}

/* Bank */
.list-bank li{
    overflow: hidden;
    padding: 5px 0!important;
    list-style-type: none;
    justify-content: space-between;
    border-bottom: 1px solid var(--colorborder);
}
.list-bank li:last-child {
    border-bottom: none;
}
.list-bank {
    margin: 20px 0;
}
.list-bank img {
    border-radius: var(--inbradius);
    border: 1px solid var(--colorborder);
    max-height: 70px;
}

/* Konfirmasi Pembayaran */
#confirm-form {
    max-width: 400px;
}
#confirm-form input,
#confirm-form select {
    width: 100%;
}

/* Single Blog */
#single.blog-wrap {
    grid-template-columns: auto 370px;
    gap: 30px;
}
.blog-header {
    gap: 10px;
}
.blog-header h1 {
    font-size: 2em;
}
.blog-header ._detail {
    display: flex;
    gap: 20px;
    font-size: .9em;
    flex-wrap: wrap;
}
.blog-header ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
    list-style: none;
}
.featured-img {
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}
.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author {
    place-items: center;
}
.author img {
    border-radius: var(--inbradius);
}

/* Related / Random */
#related.container {
    padding: 40px var(--autopad);
}
#related .bttn.read-more {
    display: none;
}
#related .owl-item {
    padding: 10px;
}
.related {
    margin: 0 -10px;
    width: calc(100% + 20px);
}


/* Contact */
#contact {
    max-width: 400px;
}
#contact ul > li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    background-image: url('../images/contact.png');
    background-repeat: no-repeat;
    height: 40px;
    padding-left: 50px;
}
#contact ul li a {
    color: var(--colorwhite);
    background: var(--color1);
    padding: 5px;
    border-radius: calc(var(--inbradius) / 2);
    font-size: .9em;
    line-height: 1em;
}
#contact ul li a:hover {
    background: var(--color2);
}
.cs-telp {
    background-position: 0 0;
}
.cs-wa {
    background-position: 0 -40px;
}
.cs-mes {
    background-position: 0 -80px;
}
.cs-tg {
    background-position: 0 -120px;
}
.cs-ig {
    background-position: 0 -160px;
}
.cs-email {
    background-position: 0 -200px;
}

/* SCROLLUP */

.scrollup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--colorbody);
    background: #00000015;
    border-radius: var(--inbradius);
    z-index: 3;
}

/* Breadcrumbs */
.crumbs {
    font-size: .9em;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--colorborder);
}

/* Wrap Post */
.wrap-post ul li,
.wrap-post ol li {
    margin-left: 20px;
}
.wrap-post p:first-child {
    margin-top: 0;
}
.wrap-post p:last-child {
    margin-bottom: 0;
}
.wrap-post img {
    border-radius: var(--bradius);
}

/* Prev/Next Post */
.prev-next a {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
}

/* Hashtags */
.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}
.tags > * {
    padding: 5px 10px;
    border: 1px solid var(--colorborder);
    background: var(--colorlight);
    border-radius: var(--inbradius);
    line-height: 1.2em;
    font-size: .9em;
}
.tags b {
    background: none;
    border: none;
    padding-left: 0;
    color: var(--color1);
}

/* Komentar */
.comment-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.comment-form p {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}
.comment-notes,
.comment-form-comment,
.comment-form-cookies-consent,
.form-submit {
    grid-column: span 2;
}
.comment-form .comment-form-cookies-consent {
    display: block;
}
.form-submit {
    align-items: flex-start;
}
.comments label {
    font-weight: bold;
}
.comments .avatar {
    float: left;
    margin: 0 10px 0 0;
}
.comments .komentar {
    padding: 15px;
    position: relative;
    overflow: hidden;
}
.comments .comment-respond {
    padding: 15px;
    background: var(--colorlight);
    border-radius: var(--bradius);
    border: 1px solid var(--colorborder);
}
.comment .comment-respond {
    border: none;
    border-radius: 0;
    background: none;
}
.comments .comment-reply-title small {
    margin-left: 10px;
}
.comment_text li {
    list-style-type: none;
    overflow: hidden;
    margin: 15px;
    border-radius: var(--inbradius);
    border: 1px solid var(--colorborder);
}
.comment_text .depth-1 {
    margin: 20px 0;
    background: var(--colorlight);
    border-radius: var(--bradius);
}
.comment_text li,
.comment_text li li li {
    background: var(--colorlight);
}
.comment_text li li,
.comment_text li li li li {
    background: var(--colorbg);
}
.comment_text li li input:focus,
.comment_text li li textarea:focus,
.comment_text li li li li input:focus,
.comment_text li li li li textarea:focus{
    background: var(--colorlight);
}
.comment_text li li img {
    width: 50px;
    height: 50px;
}

/* Rent Sidebar */
.rent-sidebar .rent {
    border: none;
    overflow: unset;
    padding: 2px;
}
.rent-sidebar .rent:hover {
    box-shadow: none;
    transform: none;
}
.rent-sidebar .pigura{
    border-radius: var(--inbradius);
}
.rent-sidebar .content{
    padding: 15px 0 0;
}
.rent-sidebar .owl-controls {
    margin: 0;
}
.rent-sidebar .owl-controls .owl-buttons .owl-prev {
    bottom: calc(100% + 30px);
    right: 40px;
    left: unset;
    top: unset;
    opacity: .5;
}
.rent-sidebar .owl-controls .owl-buttons .owl-next {
    bottom: calc(100% + 30px);
    right: 0;
    left: unset;
    top: unset;
    opacity: .5;
}
.rent-sidebar .owl-controls .owl-buttons > div:hover {
    opacity: 1;
}

/* Search Result */
.search-result .loop.blog ._detail{
    display: none;
}

/* 404 */
.search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}
.search-form input {
    height: 60px;
    width: 70%;
}
.search-form button {
    height: 60px;
    width: 30%;
}

/* Maintenance */
.maintenis {
	position: fixed;
    right: 0;
    top: calc(50% + 10vh);
    transform: translateY(-50%) rotate(90deg);
    background-color: #ff0000;
    color: #ffffff;
    padding: 5px 15px;
    z-index: 9999; 
    transform-origin: top right;
    border-bottom-left-radius: var(--inbradius);
    border-bottom-right-radius: var(--inbradius);
    text-transform: uppercase;
    font-size: .9em;
    font-weight: 600;
}

/* Share */
.shareit {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.shareit i {
    font-size: 20px;
    background: var(--color1);
    color: var(--colorwhite);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--inbradius);
    transition: .5s;
}
#singletop .shareit i {
    background: rgba(0, 0, 0, .1);
}
.shareit .icofont-facebook {
    background: #1877f2;
}
.shareit .icofont-x {
    background: #111;
}
.shareit .icofont-brand-whatsapp{
    background: #25d366;
}
.shareit .icofont-pinterest{
    background: #bd081c;
}
.shareit [class*=icofont-]:hover {
    background: var(--color1);
    transform: translateY(-3px);
}

/* Avatar */
.avatar {
    border-radius: var(--inbradius);
}

.pricelist {
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
    background: var(--colorlight);
    border-spacing: 0;
    overflow: hidden;
    width: 100%;
}
.pricelist thead {
    background: var(--color1);
    color: var(--colorwhite);
}
.pricelist th {
    padding: 20px;
    text-align: left;
}
.pricelist tr:nth-child(even) {
    background: var(--colorbg);
}
.pricelist td {
    padding: 20px;
}
.pricelist td img {
    width: 90px;
    height: 90px;
    border-radius: var(--inbradius);
    border: 1px solid var(--colorborder);
    background: rgba(0,0,0,.1);
    display: block;
}
.pricelist td ul li {
    list-style: none;
    line-height: 1.2em;
    margin: 5px 0;
}

/* Dark Mode */
.darkmode {
    opacity: 0;
    position: absolute;
}

.darkmode-label {
    background: var(--color1);
    width: 50px;
    height: 28px;
    position: relative;
    padding: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: calc(var(--inbradius) / 2);
}
.darkmode-label .m-icon {
    font-size: 15px!important;
    position: relative;
}

.darkmode-label .ball {
    background: var(--color1);
    width: 22px;
    height: 22px;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: calc(var(--inbradius) / 3);
    transition: transform 0.3s;
    overflow: hidden;
}
.darkmode-label .ball:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.darkmode:checked + .darkmode-label .ball {
transform: translateX(22px);
}
