/*====================================================================
  Inquiry Section
  ======================================================================*/
  .inquiry-section{}
  .inquiry-section .inquiry-header.sticky-top{
  background-color: var(--clr-white);
  }
  .inquiry-section .links{
  display: flex;
  gap: 12px;
  align-items: center;
  }
  .inquiry-section .links li a{
  color: #979797;
  display: block;
  font-size: 17px;
  font-weight: 500;
  }
  .inquiry-section .links li a.active,.inquiry-section .links li a:hover{
  color: var(--clr-primary);
  }
  .inquiry-section .card{
  border: none;
  padding: 18px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.06), 0px -5px 14px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  }
  .inquiry-section .address-info{
  margin-top: 20px;
  }
  .inquiry-section .address-info .title{
  font-size: 1rem;
  font-weight: 600;
  }
  .inquiry-section .address-info .title span{
  font-weight: 500;
  margin-right: 8px;
  }
  .inquiry-section .address-info p{
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 0;
  }
  .inquiry-form{}
  .inquiry-form .inquiry-step .title{
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  }
  .pincode{
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  }
  .form-group{
  margin-bottom: 1rem;
  }
  .form-group .form-control{
  padding: .5rem 1rem;
  }
  .form-group .form-select{
  padding: .5rem;
  }
  .form-group .form-control,.form-group .form-select{
  font-size: .875rem;
  font-weight: 500;
  }
  .inquiry-form .age-wrap{
  display: flex;
  width: 100%;
  gap: 16px;
  position: relative;
  align-items: center;
  }
  .inquiry-form .datepicker a{
  color: #000000;
  font-size: 24px;
  }
  .inquiry-form .select-group{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  } 
  .inquiry-form .select-group .form-select{
  background-image: none;
  border-radius: 6px;
  box-shadow: none;
  width: auto;
  }
  .inquiry-form .select-group .form-active{
  color: var(--clr-white);
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  }
  .inquiry-form .select-group .form-select:hover{
  color: var(--clr-white);
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  }
  @media (min-width: 992px) {
  .inquiry-section .address-info{
  margin-top: 30px;
  }
  }
  @media (max-width: 767.98px) {
  .inquiry-section .inquiry-header{
  padding: 16px 0;
  }
  .inquiry-section .links{
  gap: 0;
  width: 100%;
  }
  .inquiry-section .links li a{
  font-size: 14px;
  padding: 8px;
  background-color: transparent;
  }
  .inquiry-section .links li:first-child a{
  padding-left: 0;
  }
  .inquiry-form .inquiry-step .title{
  font-weight: 700;
  }
  .inquiry-section .links li a.active{
  color: var(--clr-primary);
  background-color: transparent;
  }
  .inquiry-form .select-group .form-select{
  font-size: 13px;
  padding: 8px 5px;
  }
  .inquiry-section .inquiry-header .submit-btn{
  text-align: end;
  }
  .inquiry-section .inquiry-header .submit-btn .btn{
  font-size: 16px;
  padding: 5px 20px 6px;
  width: 110px;
  }
  }
  @media (max-width: 575.98px) {
  /* .inquiry-section .links li a{
  font-size: 16px;
  font-weight: 500;
  padding: 5px 12px 6px;
  border-radius: 7px;
  } */
  }
  /*====================================================================
  Product Section
  ======================================================================*/
  .product-section{}
  .product-section-empty{
    min-height: 250px;
  }
  .product-section .section-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  }
  .product-section .section-header .section-title{
  flex: 1;
  }
  .package-carousel{}
  .package-carousel .package-item{
  width: 230px;
  margin: 10px;
  padding: 16px 10px;
  border-radius: 8px;
  border: 1px solid #DADAD3;
  background: #FAFAFA;
  }
  .package-carousel .package-item .title{
  font-size: 1rem;
  font-weight: 500;
  }
  .package-carousel .package-item .title a{
  color: #2E2A2A;
  }
  .package-carousel .package-item p{
  font-size: .875rem;
  }
  .package-carousel .package-item .price-wrap{
  display: flex;
  align-items: center;
  }
  .package-carousel .package-item .price-wrap .offer-price{
  color: #000000;
  font-weight: 500;
  margin-right: 10px;
  }
  .package-carousel .package-item .price-wrap .price{
  color: #A3A3A3;
  text-decoration: line-through;
  }
  .package-carousel .package-item .price-wrap span{
  display: block;
  position: relative;
  font-size: .75rem;
  }
  .package-carousel .package-item .price-wrap span i{
  font-size: 10px;
  }
  /* .package-carousel .package-item .price-wrap span::before{
  content: '\e1bc';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: .625rem;
  } */
  .package-carousel .package-item.package-active{
  border: 2px solid #00AE99;
  }
  .package-carousel .package-item.package-active .btn{
  background: #AAA;
  border-color: #AAA;
  }
  @media (min-width: 992px) {
  .product-section .section-header a{
  font-size: 1.5rem;
  }
  .package-carousel .package-item{
  width: 210px;
  }
  }
  @media (max-width: 767.98px) {
  .product-section .section-header a{
  color: var(--clr-black);
  font-size: 1rem;
  }
  .product-section .section-header .btn{
  display: block;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 36px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 32px;
  }
  .package-carousel .package-item .price-wrap span{
  font-size: .9rem;
  font-weight: 700;
  }
  .package-carousel .package-item .btn-xs{
  font-size: .875rem;
  padding: .5rem .875rem;
  }
  }

  .package-selections{}
  .package-selections .package-item{
    /* width: 230px;
    margin: 10px; */
    margin-bottom: 25px;
    padding: 16px 10px;
    border-radius: 8px;
    border: 1px solid #DADAD3;
    background: #FAFAFA;
  }
  .package-selections .package-item .title{
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 35px;
  }
  .package-selections .package-item .title a{
    color: #2E2A2A;
  }
  .package-selections .package-item p{
    font-size: .875rem;
    font-weight: 600;
  }
  .package-selections .package-item .price-wrap{
    display: flex;
    align-items: center;
  }
  .package-selections .package-item .price-wrap .offer-price{
    color: #000000;
    font-weight: 500;
    margin-right: 10px;
  }
  .package-selections .package-item .price-wrap .price{
    color: #A3A3A3;
    text-decoration: line-through;
  }
  .package-selections .package-item .price-wrap span{
    display: block;
    position: relative;
    font-size: .75rem;
  }
  .package-selections .package-item .price-wrap span i{
    font-size: 10px;
  }
  .package-selections .package-item.package-active{
    border: 2px solid #00AE99;
  }
  .package-selections .package-item.package-active .btn{
    background: #AAA;
    border-color: #AAA;
  }
  @media (min-width: 992px) {
    .package-selections .package-item{
      /* width: 210px; */
    }
  }
  @media (max-width: 767.98px) {  
    .package-selections .package-item .price-wrap span{
      font-size: .9rem;
      font-weight: 700;
    }
    .package-selections .package-item .btn-xs{
      font-size: .875rem;
      padding: .5rem .875rem;
    }
  }