:root {
  /* --primary: #18A5DE; */
  --primary: #07386a;
  --secondary: #838383;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}

nav.main-nav {
    display: flex;
    gap: 20px;
    width: 100vw;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left:0;
    background: #011633; 
    -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(2px);
    padding: 1rem 3rem;
    z-index: 10;
}
nav.main-nav .nav-item{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.nav-item .left, .nav-item .right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-item .nav-item-a {
    font-style: italic;
    text-decoration: none;
    color:white;
}

.btn-login{
    color:white;
    text-decoration:none;
}

nav.main-nav .nav-item-mini{
    display: none;
    /*display: flex;*/
    justify-content: flex-end;
    width: 100%;
    align-items: center;
}
.btn-show-nav-menu {
    color: white;
    text-decoration: none;
}
.nav-item-mini-menu {
    position: fixed;
    top: 70px;
    background: #4a6f7de3;
    width: 100vw;
    height: 100vh;

    right: -100vw;
    transition: right 0.5s ease;
}
.nav-item-mini-menu div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 50%;
    justify-content: center;
}
.nav-item-mini-menu .nav-item-a {
    color: white;
    text-decoration: none;
    font-style: italic;
    font-size: 1.5rem;
}
.nav-item-mini-menu .bottom a {
    min-width: 150px;
    text-align: center;
}

.nav-profile-item .cus-name{
    cursor: pointer;
}
.nav-profile-item img{
    cursor: pointer;
    width:32px;
    height:32px;
    border-radius:50%;
}

/*input[type="date"]::-webkit-inner-spin-button,*/
/*input[type="date"]::-webkit-calendar-picker-indicator {*/
/*    display: none;*/
/*    -webkit-appearance: none;*/
/*}*/
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
textarea:focus, input:focus, select:focus, textarea:focus-visible, input:focus-visible, select:focus-visible{
    outline: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.inp-group {
    display: flex;
    align-items: center;
    gap: 5px;
}
.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: gainsboro;
}
.input-group input {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.inp-group-stacked {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--secondary);
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    padding: .4rem .5rem;
    background: white;
}
.inp-group-stacked input, .inp-group-stacked textarea {
    width: 100%;
    border: none;
    color: var(--secondary);
    background: transparent;
    font-size: 12px;
}
.inp-group-stacked i {
    font-size: 10px;
}
.main-footer{
    height:auto;
    background:white;
    padding: 5rem 0 0;
}
.footer-item-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	padding: 0 5rem;
}
.footer-social {
    display: flex;
    gap: 10px;
    font-size: 24px;
}
.footer-social .footer-social-link{
    color: var(--secondary);
}

.footer-item-brand{
    width:50%;
}
.footer-item-subs{
    width:15%;
    display: flex;
    flex-direction: column;
}
.footer-item-subs label {
    font-size: 16px;
    font-weight: 600;
}
.footer-sub-link {
    color: var(--secondary);
    text-decoration: none;
}

.main-footer .copyright {
    width: 100%;
    padding-top: 1rem;
    text-align: center;
    border-top: 1px solid var(--secondary);
    margin-top: 2rem;
    font-size: 15px;
    font-weight: 400;
	background: #011633;
    color: #fff;
    padding-bottom: 1rem;
}


.font-playfair-display {
  font-family: "Playfair Display" !important;
}
.font-dm-sans {
  font-family: "DM Sans" !important;
}
.font-meow-script-regular {
  font-family: "Meow Script", cursive !important;
}
.t-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    --lines: 2;
    -webkit-line-clamp: var(--lines);
}
.rate-wrapper{
    display: flex;
    color: #E3A008;
}
.colapsable-container {
    display: block;
    width: 100%;
    background: white;
    box-shadow: 0 0 4px rgb(0 0 0 / 38%);
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    padding: 10px;
}
.colapsable-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    cursor:pointer;
}
.colapsable-title {
    font-size: 20px;
    font-weight: 500;
}
.colapsable-body {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    padding: 5px;
}
.colapsable-container.collapsed .colapsable-body {
    display: none;
}
.btn-outline-info:hover{
    color:white !important;
}
.g-h5rem{
    font-size:5rem;
    font-weight:500;
}
.g-h1{
    font-size:4rem;
    font-weight:500;
}
.g-h2{
    font-size:2.5rem;
    font-weight:500;
}
.g-h3{
    font-size:24px;
    font-weight:500;
}
.g-h4{
    font-size:18px;
    font-weight:500;
}
.g-p{
    font-size:18px;
    font-weight:400;
    color:var(--secondary);
}
.g-label{
    font-size:14px;
    font-weight:600;
}

.c-pointer{
    cursor: pointer;
}
.btn-info {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 11, 172, 204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
}
.btn-outline-info {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 13, 202, 240;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary);
    --bs-gradient: none;
}
.hide-scrollbar {
     -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar { 
    display: none;
}

.hero-2 {
    position: relative;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/assets/images/Hero-2.png) no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    color: white;
}
.hero-2-item-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-2-s1, .hero-2-s2{
    width:100%;
    height:50%;
}
.hero-2-s1 {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-2-s2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-2-s2 h1{
    font-size: 4rem;
    font-weight:500;
}
.hero-2-s2 p{
    max-width: 100vw;
    width: 500px;
    font-size: 18px;
    font-weight: 400;
    padding: 0 1rem;
}

.travelers-words{
    height:auto;
    background:white;
    padding: 5rem 0;
}
.travelers-words-head {
    padding: 0 3rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}
.travelers-words-head h1{
    font-size: 4rem;
    width:50%;
}
.travelers-words-head p{
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary);
    width:50%;
    padding-left: 2rem;
}

.travelers-words-container {
    width: 100%;
    overflow: auto;
    cursor: grab;
     -ms-overflow-style: none;
    scrollbar-width: none;
}
.travelers-words-container::-webkit-scrollbar { 
    display: none;
}
.traveler-words-item-wrapper {
    display: flex;
    gap: 20px;
    width: fit-content;
}
.traveler-words-item {
    width: 415px;
    height: 265px;
    background: #F9FAFB;
    border: 1px solid #DCDCDC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 38%);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.traveler-words-item .traveler {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.traveler .traveler-info {
    display: flex;
    gap: 10px;
}
.traveler-pf {
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    width: 48px;
    height: 48px;
}
.traveler-info label{
    font-size: 16px;
    font-weight: 500;
}
.traveler-info span{
    font-size: 12px;
    font-weight: 400;
    color:var(--secondary);
}
.traveler-rate {
    display: flex;
    align-items: center;
}
.traveler-rate label{
    font-size: 14px;
    font-weight: 500;
}

.metode-pembayaran-wrapper{
    padding: 1rem;
    border: 1px solid #DCDCDC;
    background: #F9FAFB;
    border-radius: 10px;
    box-shadow: 0 0 4px rgb(0 0 0 / 30%);
}
.metode-pembayaran {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.metode-pembayaran .img-metode-pembayaran {
    width: 25%;
    text-align: center;
}
.img-metode-pembayaran img {
    width: 50px;
    height: 50px;
}

.contact-card {
    background: #F9FAFB;
    padding: .5rem;
    margin-bottom: 10px;
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    box-shadow: 0 0 2px rgb(0 0 0 / 15%);
}
.contact-card span {
    font-size: 14px;
    font-weight: 500;
}
.contact-card label {
    font-size: 20px;
    font-weight: 500;
    display: block;
}
.contact-card p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--secondary);
}
        
.checkbox {
  position: absolute;
  left: -9999px;
}
.checkbox + label {
  position: relative;
  display: inline-block;
  padding: 0px 30px;
  cursor: pointer;
}
.checkbox + label:before, .checkbox + label:after {
  position: absolute;
  top: 0;
  content: "";
  border-radius: 1px;
}
.checkbox + label:before {
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #CCC;
  background-color: #fff;
}
.checkbox + label:after {
  /* hidden */
  width: 0;
  height: 0;
}
.checkbox:checked + label:before {
  border-color: #0096D9;
  background-color: #0096D9;
}
.checkbox:checked + label:after {
  width: 6px;
  height: 13px;
  top: 4px;
  left: 6px;
  color: #fff;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(37deg);
  -ms-transform: rotate(37deg);
  -o-transform: rotate(37deg);
  transform: rotate(37deg);
}
.checkbox:disabled + label {
  color: #CCC;
}
.checkbox:disabled + label:before {
  border-color: #CCC;
  background-color: #F2F2F2;
  box-shadow: none;
}
.checkbox:disabled + label:after {
  /* hidden */
  width: 0;
  height: 0;
}

.input-stepper {
    background: white;
    border: 1px solid #DCDCDC;
    font-size: 20px;
    padding: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.input-stepper button {
    appearance: none;
    border: none;
    cursor: pointer;
    width: 20%;
    height: 30px;
    font-size: 16px;
    background: white;
    color: var(--secondary);
    border-radius: 10px;
}
.input-stepper button[disabled] {
    cursor: not-allowed;
    opacity: 0.4;
}
.input-stepper input {
    appearance: none;
    border: none;
    font-size: 17px;
    text-align: center;
    width: 60%;
}

.text-info {
    color: var(--primary)!important;
    font-weight: 700;
}
#tab-detail-product h2 {
    color: #194082!important;
}
#tab-detail-product h3{
	color:#2758a9!important;
}
.custom_tooltip {
    position: relative;
    display: inline;
}
.custom_tooltip .tooltiptext {
    visibility: hidden;
    min-width: 120px;
    width: auto;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 99;
}
.custom_tooltip:hover .tooltiptext {
    visibility: visible;
}

.share-btn-wrapper {
    display: flex;
    justify-content: center;
}
.btn-share-icon {
    color: black;
    padding: 10px;
    border: 1px solid #999494;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
}
.page-preview {
    display: flex;
    padding: 10px;
    background: gainsboro;
    border-radius: 10px;
    gap: 10px;
}

@media (max-width: 800px) {
    nav.main-nav {
        padding: 0.5rem 1rem;
    }
    .main-nav img{
        width:100px!important;
    }
    .g-h1{
        font-size:2rem !important;
    }
    .nav-item{
        display:none !important;
    }
    nav.main-nav .nav-item-mini{
        display: flex;
    }
    .main-footer{
        padding: 5rem 0 0;
    }
    .footer-item-wrapper{
        flex-direction: column;
        gap:1rem;
    }
    .footer-item-brand, .footer-item-subs {
        width: 100%;
    }
	.main-footer .copyright{
		font-size:13px;
	}
    .travelers-words-head{
        padding: 0 1rem;
        align-items: flex-start;
        flex-direction: column;
    }
    .travelers-words-head p{
        width:100%;
        padding-left:0;
    }
    .travelers-words-head h1 {
         width: 100%; 
    }
    .traveler-words-item {
        width: 300px;
        height: 240px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    
}
