@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
	--yellow:#ffc603;
	--lyellow:#fecc39;
	--blue:#213051;
	--white:#fff;
	--black:#222;
	--gray:#666;
	--lgray:#888;
}


body{
    margin:0;
    padding:0;
    font-family: "Open Sans", sans-serif;
	background:#f5f5f5;
	    line-height: 22px;
		color:var(--black);
}

 a, p {
  text-decoration: none;
  color: var(--black);
}

a:hover {
  color: var(--black);
  text-decoration: none;
}
ul {
  padding: 0;margin:0;
}

li {
  list-style: none;color:var(--black);
}
h1,h2{font-family: "Open Sans", sans-serif;color:var(--black);font-size:2.2rem;font-weight:400;    line-height: 45px;}

h3{font-family: "Open Sans", sans-serif;font-size: 20px;color:var(--black);font-weight:600;}

h4{
	font-family: "Open Sans", sans-serif;
  position:relative;
  padding-bottom:12px;
      font-size: 28px;color:var(--black);
}
h4 strong{display:block;}
h5 {
    font-family: "Open Sans", sans-serif; font-size: 16px;color:var(--black);
}
h6 {
    font-family: "Open Sans", sans-serif; font-size: 16px;color:var(--black);
}

.mainbox{
    background: var(--white);
    border-radius: 30px;
    width: 100%;
	margin:25px 0;
}
.mainbox_left{padding:25px 10px 40px 10px;}

.gmap{
    height:100vh;
    width:100%;
}
.gmap iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
    border-radius:0 30px 30px 0;
}

.form-label { margin-bottom: 5px;}
.bluebg .form-label { margin-bottom: 10px;}
label{font-weight:600;font-size: 15px;color:var(--black);margin:0;}
.form-label i{color:var(--yellow);font-size: 18px;margin-right:4px;}
.fw-bold {font-weight: 600 !important;}
.logo img{width:200px;}
.imp_car{ border-radius:12px;text-align:center;background: var(--white);width:100%;}
.imp_car.active{ background: var(--lyellow);}
.imp_car input{ display: none;}
.imp_car .icon i{ font-size: 18px;color:var(--black);}
.imp_car .title{ font-weight: 400;color:var(--black);    font-size: 12px;font-weight: 500;}
.nav-tabs{border-bottom:0;}
.nav-tabs .nav-link.active {
    color:var(--black);
    background-color:var(--yellow);
    border-color:var(--yellow);
	border-radius:25px;
	padding:10px 40px;
}
.nav-tabs .nav-link {
        margin: 0 3px;
    background: transparent;
	color:var(--lgray);
	padding:10px 40px;
	border: 1px solid #dddddd;
    border-radius: 25px;
}
.nav-tabs .nav-link i{margin-right:5px;}
.nav-link{font-size:15px;font-weight:600;}
.rounded_img{border-radius:0 30px 0 0;}
.btn-outline-primary {
    color: var(--black);
    border-color: var(--black);
}
.btn-outline-primary:hover {
    color: #000;
     background: transparent;
    border-color: transparent;
	outline:0;
	border:0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
     border-color:var(--yellow);
}
.btn-primary {
	font-size:13px;
	font-weight:600;
	padding: 6px 5px;
    color:var(--white);
    background-color: var(--yellow);
    border:2px solid var(--yellow)!important;
	vertical-align: initial;
}
.btn-primary:hover {
    color:var(--black);
    background-color: var(--white);
}
.btn-primary:hover i{
    color:var(--yellow);
}
.btn-primary i, .btn-warning i{font-size:13px; margin-right:4px;}
.btn-warning{vertical-align: initial;}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    background-color:transparent!important;
    border-color:var(--yellow)!important;
    box-shadow:none!important;
}
.btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle {
    background-color:transparent!important;
   border-color:var(--yellow)!important;
}

.qty-input .product-qty,
.qty-input .qty-count {
  background: transparent;
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 2.5rem;
  line-height: 1;
}
.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
  outline: none;
}
.qty-input .product-qty {
  width: 33%;
  min-width: 0;
  display: inline-block;
  text-align: center;
  appearance: textfield;
}
.qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 25px;
  font-size: 1.25em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}
.qty-input .qty-count:before, .qty-input .qty-count:after {
  content: "";
  height: 1px;
  width: 12px;
  position: absolute;
  display: block;
  background:var(--white);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.qty-input .qty-count--minus {
  border-right: 1px solid #72757c;
}
.qty-input .qty-count--add {
  border-left: 1px solid #72757c;
}
.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}
.qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}
.qty-input .qty-count:disabled:before, .qty-input .qty-count:disabled:after {
  background: #ccc;
}

.qty-input {
  border-radius: 6px;
  border: 1px solid #72757c;text-align: center;
}
.input_icon {
    width:40px;
    height:40px;
    line-height:45px;
    background-color:var(--white);
    border:0;
    border-radius: 50%;
	box-shadow:0 0 15px #00000025;
	    margin: 0 auto;
}
.input_icon i{font-size:22px;color:var(--yellow);text-align: center;}
.input_box{
	padding:12px 20px;box-shadow: 0 0 11px #00000014;border-radius: 15px;
}
.form-control, .form-select{border:0;padding: .2rem 0;}
.form-control:focus, .form-select:focus{box-shadow:none;}
.bluebg{background:var(--blue);border-radius:15px; padding:15px;}
.bluebg label{color:var(--white);}
.bluebg_block{border-right:1px solid #ffffff3d;}


.feature-icon{
    width:45px;
    height:45px;
    background:#f4f6ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-icon i{
    font-size:25px;
    color:#4a5cff;
}


.feature-icon + div p{
    font-size:13px;
    color:#7b7b7b !important;
}

@media (max-width:767.98px){
    .row > div{
        margin-bottom:20px;
    }

    .row > div:last-child{
        margin-bottom:0;
    }

    h6{
        font-size:17px;
    }

    .feature-icon{
        width:52px;
        height:52px;
    }

    .feature-icon i{
        font-size:24px;
    }
}


.tab2 .qty-input .product-qty, .qty-input .qty-count {
    color:var(--black);
}
.tab2 .qty-input .qty-count:before, .tab2 .qty-input .qty-count:after {
  background:var(--black);
}
.best_price{
	background:var(--white);
	border-radius:25px;
	font-size:16px;
	color:var(--black);
	text-align:center;
}
.best_price span{
background: #d9fce6;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 14px;
    color: #367936;
    text-align: center;
    font-weight: 600;
}

.dot{
    width:8px;
    height:8px;
    background:#ffb400;
    border-radius:50%;
}

.children .seat-card{
    position:relative;
    display:block;
    text-align:center;
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:30px 20px;
    cursor:pointer;
    transition:.3s;
    min-height:340px;
}

.children .seat-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.children .seat-card input{
    display:none;
}

.children .seat-card.active{
    border:2px solid #ffc107;
    background:#fffdf6;
}

.check-icon{
    position:absolute;
    top:12px;
    right:12px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#ffc107;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.seat-img{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#fff;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
	    margin-bottom: 10px;
}

.seat-img img{
    max-width:80px;
}

.seat-card h4{
    margin:12px 0 0 0;
    font-size:22px;
    font-weight:600;
}

.seat-card p{
    color:#666;
    font-size:14px;
    margin-bottom:12px;
    line-height:1.5;
}

.badge-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.badge-yellow{
    background:#fff3cd;
    color:#b17b00;
}

.badge-blue{
    background:#eaf4ff;
    color:#2563eb;
}

.badge-purple{
    background:#f3ebff;
    color:#7c3aed;
}
.seat-banner{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    overflow:hidden;
	padding:10px;
}

.banner-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff7e6;
    color:#f4b400;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.seat-banner h4{
    font-size:18px;
    color:var(--black);    padding: 0;
}

.seat-banner p{
    font-size:15px;
    color:#6c757d;
}

.seat-image{
    max-height:95px;
}

.qty-input .qty-count:disabled {color: #fff;     background: transparent;}
.quote-btn{
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
}

.quote-btn img{
    display: block;
    transition: transform .3s ease;
}
.quote-btn:hover img{
    transform: scale(1.05);
}
.children .check-badge{font-size:25px;}
.children h4 {
    font-family: "Open Sans", sans-serif;
    position: relative;
    padding-bottom: 12px;
    font-size: 22px;
    color: var(--black);
}
.imp_car .pay-option label { padding:5px 8px;}
#ChildrenBlocks h5{margin: 20px 0 12px 0 !important;}


.loginpage .form-check-input {
    width: 20px;
   height: 20px;
}


.loginpage .input-group-text{
	background: var(--yellow);
    padding: 12px;
    border-radius: 50%!important;
    margin-right: 10px;
	border:0!important;
}
.loginpage .input-group-text i{
	color: var(--white);
}
.loginpage img.logo{
	    width: 200px;
}
.loginpage .form-check-label{margin: 3px;}

/* horizontal acrollbar */
.hscroll{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
    padding:4px 0;
    scrollbar-width:thin;
    scrollbar-color:transparent transparent;
}
.hscroll::-webkit-scrollbar{height:4px;}
.hscroll::-webkit-scrollbar-track{background:transparent;}
.hscroll::-webkit-scrollbar-thumb{background:transparent;border-radius:10px;}
.hscroll:hover{scrollbar-color:var(--yellow) transparent;}
.hscroll:hover::-webkit-scrollbar-thumb{background:var(--yellow);}
.hscroll li{width:100%;}
.hscroll ul.gap-2 { gap: .2rem !important;}
/* Mobile */
@media (hover:none){
    .hscroll{scrollbar-color:var(--yellow) transparent;}
    .hscroll::-webkit-scrollbar{height:4px;}
    .hscroll::-webkit-scrollbar-thumb{background:var(--yellow);}
}
/* horizontal acrollbar */

.summary-card{background:var(--white);padding:20px;box-shadow: 0 0 11px #00000014;border-radius: 15px;}
.summary-card .section-title i{color:var(--yellow);font-size:22px;margin-right:3px;}
.payment-footer{margin:25px 0 40px 0;}
.price-box h2{font-weight: 700;}
.summary-card li{margin-bottom:5px;}
.summary-card li i{color:var(--lgray);}
.summary-card small{font-weight: 600;}
.summary-header h4 {padding-bottom: 0;}
.thanku_box {margin-top:40px;}
.loginpage .form-label {
    margin-bottom: 10px;
}
.txtmd a{font-size: 15px;}
.loginpage h4 {font-size: 22px;}
button.btn-primary, button.btn-primary i {font-size: 18px;}
.shoing_records{padding: 0 0 20px 0;text-align:center;}
.input_box .form-control, .input_box .form-select {padding: 0;}
.input_box .form-label { margin-bottom: 0;}
.language-switcher img { width: 26px!important;height: 18px!important;}
.language-switcher {gap: 5px!important;}