* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
@font-face {
  font-family: Monument;
  src: url("../font/MonumentExtended-Ultrabold.otf");
}
@font-face {
  font-family: MonumentR;
  src: url("../font/MonumentExtended-Regular.otf");
}

:root {
  --primary-color: #278486;
  --secondary-color: #ff6100;
  --color3 : #bdd02e;
  
  --text-color: #111827;
  --cmn-bg: #f3f4f6;
  --font-space:  "Space Grotesk", serif;
}

body {
  color: #111827 !important;
}
#main {
  overflow-x: hidden;
}

/*--- menu bar ---*/
.menu_bar
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 5px 0;
}
.menu_bar.active 
{
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar
{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.logo
{
   width: 200px;
}
.nav-item
{
    margin: 0 18px;
}

.navbar-nav.menu_color .nav-link
{
  color: white !important;
}

.menu_bar.active .nav-link
{
  color: var(--text-color) !important;
}

.menu_bar.active .flight-inquiry-btn
{
   color: white !important;
}

.nav-link
{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-color) !important;
    position: relative;
    white-space: nowrap;
}

.flight-inquiry-btn
{
  background-color: var(--secondary-color);
  border-radius: 5px;
  width: fit-content;
  padding: 5px 8px !important;
  color: white !important;
  font-family: var(--font-space);
  font-weight: 700;
}

.dropdown-item
{
  font-size: 16px;
  font-weight: 500 !important;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.nav-link.active::before
{
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.nav-link.active 
{
    color: var(--primary-color) !important;
}
.nav-link > i 
{
    margin-right: 6px;
    font-size: 18px;
}

.dropdown-item.active, .dropdown-item:active
{
  background-color: var(--primary-color) !important;
}

.navbar-toggler
{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: black !important;
  font-size: 25px !important;
}

/*--- /menu bar ---*/

/*--- index ---*/
.cmn_padding {
  padding-left: 150px;
  padding-right: 150px;
}
.banner {
  width: 100%;
  background-color: var(--cmn-bg);
  position: relative;
}

.banner_slide
{
  position: relative;
}
.banner_slide::before
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.6);
}

.banner_slide img 
{
  width: 100%;
  height: 750px; 
  object-fit: cover;
  object-position: center;
}


.banner .owl-carousel .owl-nav button.owl-prev
{
  position: absolute;
  left: 60px;
  bottom: 40%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
}
.banner .owl-carousel .owl-nav button.owl-next
{
  position: absolute;
  right: 60px;
  bottom: 40%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
}

.banner .owl-carousel .owl-nav button.owl-prev:hover,.banner .owl-carousel .owl-nav button.owl-next:hover
{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.banner .owl-carousel .owl-nav button.owl-prev span,.banner .owl-carousel .owl-nav button.owl-next span
{
  font-size: 22px;
}

#search_form
{
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 1220px;
  width: 95%;
}

.banner_intro
{
  color: white;
}

.banner_intro h1
{
  font-size: 50px;
  font-weight: 600;
}

.banner_intro p
{
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 700px;
  font-size: 18px;
  font-weight: 400;
}

@media(max-width : 767px)
{
  .banner_intro
  {
    display: none;
  }
}

.search_engine
{
  background-color: white;
  border: 1px solid rgba(17,24,39,.12);
  padding: 35px 30px 40px 30px;
  border-radius: 10px;
  filter: drop-shadow(0 4px 2px rgba(79,139,173,.01));
  width: 100%;
}

.search_inp
{
  width: 100%;
  border: 1px solid #ccc;
  height: 55px;
  padding: 4px 6px;
  border-radius: 3px;
  margin: 10px 0;
}
.search_inp.border_red 
{
  border: 1.5px solid red;
}


.search_submit
{
  margin: 10px 0;
}
.search_inp select,.search_inp input
{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  padding: 0 5px;
  font-weight: 400;
  cursor: pointer;
  -moz-appearance:none; 
  -webkit-appearance:none; 
  appearance:none; 
  color: var(--primary-color);
  background-color: transparent;
}

.search_inp select#search_from
{
  background: url("../image/travel_from.png");
  background-size: 32px 32px; 
  background-position: right center;
  background-repeat: no-repeat; 
}
.search_inp select#search_to
{
  background: url("../image/travel_to.png");
  background-size: 32px 32px; 
  background-position: right center;
  background-repeat: no-repeat;
}

#search_date::-webkit-calendar-picker-indicator {
  background-image: url('../image/calendar.png');
  background-size: 18px 20px; 
  background-position: right center;
  background-repeat: no-repeat;
}
.search_inp select#search_type
{
  background: url("../image/backpack.png");
  background-size: 30px 30px; 
  background-position: right center;
  background-repeat: no-repeat;
}
.search_submit button
{
  display: block;
  max-width: 200px;
  width: 100%;
  margin: auto;
  height: 55px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 3px;
}
.search_submit button i 
{
  margin-right: 5px;
}

#play_work_video {
  position: absolute;
  top: -10%;
  right: 10%;
  height: 220px;
  width: 220px;
  overflow: hidden;
  cursor: pointer;
}

.play_work_icon
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    color: var(--primary-color);
}

#play_work_video text {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

#play_work_video svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation-name: rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(0);
  }
}

.recent_list
{
    padding-top: 40px;
    padding-bottom: 40px;
}
.recent_list > h1 
{
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 40px;
}

.recent_list > .row > div ,
.dynamic_post_list > .row > div 
{
  margin: 10px 0;
}

.loading_circle
{
  margin: auto;
  height: 45px;
  width: 45px;
  border: 3px solid #ccc;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation-name: spin;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes spin {
    100%{
      transform: rotate(360deg);
    }
}

.recent_list_item
{
  background: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 14px 15px 14px;
  border-radius: 5px;
  position: relative;
  height: 100%;
}

.recent_list_item.less_pt
{
  padding: 20px 14px 15px 14px;
}

.post_type
{
  position: absolute;
  top: 66%;
  left: -22px;
  transform: translateY(-50%) rotate(270deg);
  color: white;
  padding: 4px 8px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}

.post_type.parcel
{
  background-color: var(--primary-color);
  left: -19px;
}
.post_type.travel
{
  background-color: var(--secondary-color);
}

.recent_list_item_left
{
  display: flex;
  align-items: center;
  gap: 5px;
}

.post_type_icon
{
  height: 45px;
  min-width: 45px;
  background-color: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.post_type_icon.traveler
{
  background-color: var(--secondary-color);
  color: white;
}

.post_type_icon.sender
{
  background-color: var(--primary-color);
  color: white;
}

.post_type_icon.traveler i 
{
  transform: rotate(-40deg);
}

.recent_list_item_left h5 
{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.recent_list_item_left h5 img 
{
  width: 25px;
}

.recent_list_item_mid
{
  padding: 0 6px;
}
.recent_list_item_mid h4 
{
  font-size: 18px;
  font-weight: 600;
  margin: 0;
} 
.recent_list_item_mid small
{
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.recent_list_det
{
  margin-top: 5px;
}

.post_desc_box
{
  min-height: 50px;
}


.recent_list_det p 
{
  font-size: 15px;
  font-weight: 400;
  margin: 5px 0;
  opacity: 0.9;
}
.recent_list_det p span.weight
{
  color: var(--secondary-color);
}
.recent_list_det p span.kg
{
  font-size: 18px;
  font-weight: 600;
}

.recent_list_item_right
{
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.recent_list_item_right > a 
{
  color: var(--primary-color) !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 5px 12px;
  border-radius: 4px;
  background-color: white;
  transition: all linear 0.1s;
  white-space: nowrap;
  border: 1px solid var(--primary-color);
}

.recent_list_item_right > a:hover 
{
  color: white !important;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}

.post_chat_btn
{
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  transition: all linear 0.1s;
  border: 1px solid var(--primary-color);
}

.post_chat_btn:hover 
{
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.more_list_btn
{
  display: inline-block;
  margin-top: 30px;
  padding: 10px 24px;
  background-color: var(--primary-color);
  color: white !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all linear 0.1s;
}
.more_list_btn:hover
{
  background-color: var(--secondary-color);
}

.about_us
{
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: var(--cmn-bg);
}

.about_us_left
{
  margin: 10px 0;
}
.about_us_left > h1 
{
  font-size: 60px;
  font-weight: 500;
  margin: 10px 0;
}
.about_us_left > p 
{
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  opacity: .8;
}

.about_info_item
{
  display: grid;
  align-items: start;
  grid-template-columns: 10% 1fr;
  gap: 5px;
  margin-top: 20px;
}

.about_info_item_left
{
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_info_item:nth-child(2n+1) .about_info_item_left
{
  background-color: #0056d629;
}
.about_info_item:nth-child(2n+2) .about_info_item_left
{
  background-color: #ff62003a;
}

.about_info_item:nth-child(2n+1) .about_info_item_left i 
{
  font-size: 25px;
  color: var(--primary-color);
}
.about_info_item:nth-child(2n+2) .about_info_item_left i 
{
  font-size: 25px;
  color: var(--secondary-color);
}
.about_info_item_right h3
{
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.about_info_item_right p
{
  font-size: 17px;
  font-weight: 400;
  margin: 5px 0;
  opacity: 0.8;
}

.about_us_right
{
  position: relative;
  height: 100%;
  margin: 10px 0;
}

.about_us_right video
{
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.how_it_works
{
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #F7F4FD;
}
.how_it_works > h1 
{
  text-align: center;
  font-size: 50px;
  margin-bottom: 60px;
  font-weight: 500;
}

.how_it_works_item
{
  background-color: white;
  box-shadow: 10px 10px 40px rgba(92, 33, 210, 0.048);
  border: 1px solid rgba(92, 33, 210, 0.048);
  padding: 30px;
  border-radius: 10px;
  position: relative;
  margin: 10px 0px;
  transition: all linear 0.4s;
  height: 100%;
}


.how_it_works_item h3  
{
  position: absolute;
  top: 20px;
  right: 50px;
  font-family: Monument;
  font-size: 80px;
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
  opacity: 0.5;
}

.how_it_works_item:hover
{
  transform: translateY(-15px);
}

.how_it_works_item img 
{
  width: 55px !important;
  height: 55px;
  border-radius: 50%;
  object-fit: contain;
}

.how_it_works_item h4 
{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}
.how_it_works_item p 
{
  margin-top: 5px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}


.how_it_works_in .owl-carousel .owl-nav button.owl-prev
{
  position: absolute;
  left: 60px;
  bottom: 30%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: white;
}
.how_it_works_in .owl-carousel .owl-nav button.owl-prev:hover
{
  background-color: var(--secondary-color);
}
.how_it_works_in .owl-carousel .owl-nav button.owl-next
{
  position: absolute;
  right: 60px;
  bottom: 30%;
  transform: translateY(-50%);
  height: 45px;
  width: 45px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: white;
}
.how_it_works_in .owl-carousel .owl-nav button.owl-next:hover
{
  background-color: var(--secondary-color);
}
.how_it_works_in .owl-carousel .owl-nav button.owl-prev span,.how_it_works_in .owl-carousel .owl-nav button.owl-next span
{
  font-size: 22px;
}

.download_era
{
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #F7F4FD;
}

.download_era_in h1 
{
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}

.download_era_in p 
{
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0 30px 0;
  text-align: center;
}

.download_era_btm
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.download_era_btm img 
{
  width: 250px;
}

.download_era_right img
{
  max-width: 500px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media(max-width : 575px)
{
  .download_era {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .download_era_in h1 {
    font-size: 30px;
  }

  .download_era_in p {
    font-size: 15px;
  }

  .download_era_btm img {
    width: 200px;
  }
}

.reviews
{
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url("../image/testimonial-section-bg.png"),linear-gradient(180deg,#f3f4f6 0%,#f3f4f6 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
.reviews > h1 
{
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.reviews > p 
{
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  opacity: 0.9;
  max-width: 780px;
  margin: 5px auto;
}
.reviews_in
{
  margin-top: 40px;
}
.review_item
{
  margin: 10px 0;
  background-color: white; 
  background-image: url("../image/feature_shape.png");
  padding: 25px 20px;
  border-radius: 10px;
}
.rating_star
{
  text-align: center;
}
.rating_star i 
{
  color: orange;
  margin: 0 -1px;
  font-size: 18px;
}
.review_item >  h2 
{
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}
.review_item > p 
{
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}



.review_customer
{
  text-align: center;
  margin-top: 20px;
}
.review_customer img 
{
  height: 80px;
  width: 80px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: auto;
}
.review_customer h4 
{
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 600;
}
.review_customer p 
{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 400;
}

.reviews_in .owl-carousel .owl-nav button.owl-prev
{
  position: absolute;
  right: 60px;
  bottom: -60px;
  height: 45px;
  width: 45px;
  background-color: var(--primary-color);
  line-height: 50px;
  color: white;
}
.reviews_in .owl-carousel .owl-nav button.owl-prev:hover
{
  background-color: var(--secondary-color);
}
.reviews_in .owl-carousel .owl-nav button.owl-next
{
  position: absolute;
  right: 0px;
  bottom: -60px;
  height: 45px;
  width: 45px;
  background-color: var(--primary-color);
  line-height: 50px;
  color: white;
}
.reviews_in .owl-carousel .owl-nav button.owl-next:hover
{
  background-color: var(--secondary-color);
}

.reviews_in .owl-carousel .owl-nav button.owl-prev span,.reviews_in .owl-carousel .owl-nav button.owl-next span
{
  font-size: 22px;
}


.our_partner
{
  padding-top: 60px;
  padding-bottom: 50px;
}
.our_partner > h1 
{
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
.our_partner > p 
{
  font-size: 18px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 700px;
  width: 100%;
  opacity: 0.9;
}
.our_partner_in
{
  margin-top: 40px;
}
.our_partner_item
{
  display: block;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  margin: 10px;
}
.our_partner_item img 
{
  max-width: 200px !important;
  width: 100%;
  height: 90px;
  margin: auto;
  object-fit: contain;
}

.faq
{
  padding-top: 70px;
  padding-bottom: 40px;
  background-color: var(--cmn-bg);
}

.faq > h1 
{
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
.faq > p 
{
  font-size: 18px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 700px;
  width: 100%;
  opacity: 0.9;
}
.faq_in
{
   max-width: 1200px;
   width: 100%;
   margin: 60px auto 0;
}

.accordion-item
{
  margin: 12px 0;
  border: none !important;
  border: 1px solid #e5e5e5 !important;
  background-color: white;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button
{
  outline: none !important;;
  box-shadow: none !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 1.3rem 1.25rem !important;
}
.accordion-button:not(.collapsed) {
  color: var(--text-color) !important;
  background-color: white !important;
  box-shadow: none !important;
}
.accordion-button:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none !important;
}
.faq_acc_body
{
  border-top: 1px solid #e5e5e5;
}
.faq_acc_body > p 
{
  margin: 0;
  font-size: 17px !important;
  font-weight: 400;
  opacity: 0.9;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../image/minus.svg") !important;
  transform: none !important;
}
.accordion-button::after {
  background-image: url("../image/plus.svg") !important;
}

.faq_view_more_btn
{
  display: block;
  margin: 20px auto;
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition-duration: 0.2s;

  &:hover 
  {
    background-color: var(--secondary-color);
  }
}

.hidden-faq
{
  display: none;
}

.footer
{
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../image/testimonial-section-bg.png"),linear-gradient(180deg,#1d231f 0%,#1d231f 100%);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
}
.footer_item
{
  margin: 12px 0;
}
.footer_item img 
{
  width: 220px;
}
.footer_item > p 
{
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
}

.footer_item h4 
{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer_item ul 
{
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer_item ul li 
{
  margin: 10px 0;
}
.footer_item ul li a
{
  color: white !important;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.footer_item ul li a i 
{
  margin-right: 5px;
}

.footer_item ul li a:hover
{
  color: var(--secondary-color) !important;
}

.footer_item > form > input
{
  display: block;
  width: 100%;
  height: 50px;
  padding: 4px 15px;
  font-size: 16px;
  font-weight: 400;
  background-color: white;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 2px;
  border: 1px solid #e5e5e5;
}

.newsletter_subscribe_btn 
{
  background-color: var(--primary-color);
  color: white;
  max-width: 200px;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  transition: all linear 0.1s;
}
.newsletter_subscribe_btn:hover
{
  background-color: var(--secondary-color);
}

.follow_us
{
  border-top: 1px solid #e5e5e55c;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}


.follow_us > h1 
{
  font-size: 30px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
}
.follow_us ul
{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.follow_us ul li 
{
  list-style: none; 
}
.follow_us ul li a 
{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #444;
  color: white !important;
  text-decoration: none;
  font-size: 22px;
}

.follow_us ul li a:hover i 
{
  animation: social_alter 0.5s linear infinite alternate;
}

@keyframes social_alter 
{
  0%{
    transform: scale(1);
  }
  100%{
    transform: scale(0.7);
  }
}

.copyright p 
{
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
}

.payment_gateway
{
  border-top: 1px solid #e5e5e55c;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment_gateway img
{
  max-width: 300px;
  width: 100%;
  border-radius: 5px;
}

@media(max-width : 767px)
{
  .payment_gateway
  {
    padding-bottom: 80px;
  }
}


.home_notification
{
  position: fixed;
  right: 0px;
  top: 60%;
  z-index: 11;
  display: none;
}

@media(min-width : 768px)
{
  .home_notification
  {
    display: block;
  }
}

.home_notification a
{
  background-color: var(--primary-color);
  color: white !important;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 50%; 
  margin: 20px 0;
}

.home_notification a:hover
{
  background-color: var(--secondary-color);
}

.home_notification a:hover span 
{
  border: 1px solid var(--secondary-color);
}

.home_notification a i  
{
  font-size: 16px;
}

.home_notification a span 
{
  position: absolute;
  top: 6px;
  right: 7px;
  font-size: 12px;
  font-weight: 600;
  color: red;
  background-color: white;
  border: 1px solid var(--primary-color);
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media(max-width : 767px)
{
  .go_top
  {
    bottom: 30px;
    right: 25px;
    height: 35px;
    width: 35px;
    font-size: 18px;
  }
}
@media(max-width : 991px)
{
  .navbar-nav.menu_color .nav-link
  {
    color: var(--text-color) !important;
  }

  .navbar-nav .nav-link.flight-inquiry-btn {
    color: white !important;
  }

}

@media(max-width : 425px)
{
  .cmn_padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  .logo {
      width: 160px;
  }
  .menu_bar 
  {
    background-color: white;
  }
  .navbar-collapse
  {
    padding-top: 10px;
  }
  .nav-link.active::before {
    background-color: transparent;
  }
  #search_form {
    top: 58%;
  }
  .banner_slide img {
    height: 600px;
  }
  #play_work_video {
    top: -6%;
    right: -2%;
    height: 180px;
    width: 180px;
  }
  .recent_list {
    padding-top: 30px;
  }
  .recent_list > h1 {
    font-size: 30px;
    margin-bottom: 20px; 
  }

  .about_us {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .about_us_left > h1 {
    font-size: 40px;
  }
  .about_info_item {
    grid-template-columns: 20% 1fr;
  }
  .about_info_item_left {
    height: 50px;
    width: 50px;
  }
  .about_info_item:nth-child(2n+1) .about_info_item_left i,.about_info_item:nth-child(2n+2) .about_info_item_left i {
    font-size: 20px;
  }
  .about_info_item_right h3 {
    font-size: 18px;
  }
  .about_us_left > p,.about_info_item_right p {
    font-size: 16px;
  }
 
 
  .how_it_works {
    padding-top: 50px;
  }
  .how_it_works > h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .how_it_works_item {
    padding: 30px 20px;
  }
  .how_it_works_item > p {
    font-size: 16px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
    height: 35px;
    width: 35px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-next {
    right: 0px;
    height: 35px;
    width: 35px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-prev span, .how_it_works_in .owl-carousel .owl-nav button.owl-next span {
    font-size: 15px;
  }
  .how_it_works_item h3 {
    right: 30px;
    font-size: 70px;
  }
  .reviews {
    padding-top: 30px;
  }
  .reviews > h1,.faq > h1,.our_partner > h1 {
    font-size: 30px;
  }
  .reviews > p,.faq > p,.our_partner > p {
    font-size: 16px;
  }
  .review_item > p {
    font-size: 16px;
  }
  .faq_in {
    margin: 30px auto 0;
  }
  .accordion-button {
    font-size: 16px !important;
  }
  .faq_acc_body > p {
    font-size: 16px !important;
  }
}

@media(min-width : 426px) and (max-width : 575px)
{
  .cmn_padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  .logo {
    width: 160px;
  }
  .menu_bar 
  {
    background-color: white;
  }
  .navbar-collapse
  {
    padding-top: 10px;
  }
  .nav-link.active::before {
    background-color: transparent;
  }

  .banner_slide img {
    height: 600px;
  }
  #search_form {
    top: 56%;
  }
  #play_work_video {
    top: -6%;
    right: -2%;
    height: 180px;
    width: 180px;
  }
  .recent_list {
    padding-top: 30px;
  }
  .recent_list > h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about_us {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .about_us_left > h1 {
    font-size: 40px;
  }
  .about_us_left > p {
    font-size: 17px;
  }
  .about_info_item {
    grid-template-columns: 15% 1fr;
  }
 
  .how_it_works {
    padding-top: 50px;
  }
  .how_it_works > h1 {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .how_it_works_item {
    padding: 30px 20px;
  }
  .how_it_works_item h3 {
    font-size: 70px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-prev {
    left: 20px;
    height: 40px;
    width: 40px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-next {
    right: 20px;
    height: 40px;
    width: 40px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-prev span, .how_it_works_in .owl-carousel .owl-nav button.owl-next span {
      font-size: 20px;
  }
  .reviews {
    padding-top: 40px;
  }
  .reviews > p,.our_partner > p,.faq > p {
    font-size: 16px;
  }
  .reviews > h1,.faq > h1,.our_partner > h1{
    font-size: 32px;
  }
  .faq_acc_body > p {
    font-size: 16px !important;
  }
}

@media(min-width : 576px) and (max-width : 767px)
{
  .cmn_padding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .logo {
    width: 160px;
  }
  .menu_bar 
  {
    background-color: white;
  }
  .navbar-collapse
  {
    padding-top: 10px;
  }
  .nav-link.active::before {
    background-color: transparent;
  }
  .banner_slide img {
    height: 600px;
  }
  #search_form {
    top: 57%;
  }
  #play_work_video {
    top: -6%;
    right: -2%;
    height: 180px;
    width: 180px;
  }
  .about_us {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .about_info_item {
    grid-template-columns: 14% 1fr;
  }

  .how_it_works {
    padding-top: 50px;
  }
  .how_it_works > h1 {
    margin-bottom: 30px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-prev {
    left: 30px;
  }
  .how_it_works_in .owl-carousel .owl-nav button.owl-next {
    right: 30px;
  }
  .reviews,.faq,.our_partner {
    padding-top: 40px;
  }

}

@media(min-width : 768px) and (max-width : 991px)
{
  .cmn_padding {
    padding-left: 50px;
    padding-right: 50px;
  }
  .menu_bar 
  {
    background-color: white;
  }
  .navbar-collapse
  {
    padding-top: 10px;
  }
  .nav-link.active::before {
    background-color: transparent;
  }
  
  .banner_slide img {
    height: 650px;
  }

  #search_form {
    top: 58%;
  }

  .banner_intro h1 {
    font-size: 45px;
  }
  .banner_intro p {
    margin-top: 15px;
  }

  #play_work_video {
    top: -5%;
    right: 10%;
    height: 200px;
    width: 200px;
  }
  
  .about_us {
    padding-top: 50px;
  }
  .about_us_left > h1 {
    font-size: 52px;
  }
  .about_big_img {
    max-width: 100%;
    height: 350px;
    position: static;
    margin-top: 30px;
  }
  .about_small_img {
    margin-top: 50px;
    max-width: 100%;
    position: static;
  }
  .about_us_right #play_work_video {
    right: 0%;
    top: -7%;
  }
  .about_info_item {
    grid-template-columns: 9% 1fr;
  }
  .about_info_item_left {
    height: 50px;
    width: 50px;
  }
  .how_it_works,.reviews,.faq  {
    padding-top: 40px;
  }
  .how_it_works > h1 {
    margin-bottom: 40px;
  }
  .how_it_works_item h3 {
    font-size: 60px;
  }
  
}

@media(min-width : 992px) and (max-width : 1199px)
{
  .cmn_padding {
    padding-left: 50px;
    padding-right: 50px;
  }
  .logo {
    width: 160px;
  }
  .nav-item {
    margin: 0 10px;
  }
  .nav-link {
    font-size: 15px;
  }
  .banner_slide img {
    height: 640px;
  }

  .banner_intro h1 {
    font-size: 50px;
  }

  #play_work_video {
    top: -32%;
    right: -15%;
  }

  .about_big_img {
    height: 450px;
    left: 50px;
  }
  .about_small_img {
    max-width: 280px;
    height: 300px;
    bottom: 194px;
    left: 20px;
  }
  .about_us_right #play_work_video {
    right: 77%;
    top: -10%;
  }
  .about_info_item {
    grid-template-columns: 13% 1fr;
  }
  .about_info_item_left {
    height: 55px;
    width: 55px;
  }
  
  .how_it_works,.reviews,.faq{
    padding-top: 50px;
  }
  .how_it_works > h1 {
    margin-bottom: 30px;
  }
  .how_it_works_item h3 {
    font-size: 70px;
  }

}

@media(min-width : 1200px) and (max-width : 1510px)
{
  .cmn_padding {
    padding-left: 100px;
    padding-right: 100px;
  }
  .nav-item {
    margin: 0 12px;
  }
  
  #play_work_video {
    top: -26%;
    right: -5%;
  }
  .about_big_img {
    left: 170px;
  }
  .about_info_item {
    grid-template-columns: 14% 1fr;
  }

  .how_it_works,.reviews,.faq{
    padding-top: 50px;
  }
  .how_it_works > h1 {
    margin-bottom: 30px;
  }
}
/*--- /index ---*/

/*--- search ---*/
.search_banner
{
  height: 480px;
  background-image: url("../image/search_banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.search_banner::before
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
}

.list_pagination
{
  margin: 20px auto 0 auto;
  max-width: 500px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.list_pagination a
{
  margin: 4px 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 40px;
  border-radius: 3px;
  color: var(--text-color) !important;
  text-decoration: none;
  border: 1px solid #e5e5e5;
}
.list_pagination a.active,.list_pagination a:hover
{
   background-color: var(--primary-color);
   color: white !important;
}

@media(max-width : 767px)
{
  .search_banner
  {
    height: 600px;
  }
}

/*--- search ---*/

/*--- about ---*/
.about_banner
{
  background-color: var(--cmn-bg);
  padding-top: 100px;
  padding-bottom: 30px;
}
.about_banner > .row 
{
  align-items: center;
}
.about_banner_left
{
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  margin: 10px 0;
}
.about_banner_left h2 
{
  font-size: 40px;
  font-weight: 600;
  margin: 5px 0;
}
.about_banner_left p 
{
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.about_banner_left p span
{
  color: var(--secondary-color);
}
.about_banner_right
{
  margin: 10px 0;
}

.about_banner_right img 
{
  max-width: 700px;
  width: 100%;
  display: block;
  margin: auto;
  object-fit: cover;
  mask-image: url("../image/banner_mockup.png");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.about_us.about_page
{
  background-color: white;
}

.about_overview
{
  margin-top: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.about_overview_item
{
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.about_overview_item::after
{
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background-color: #e5e5e5;
}
.about_overview_item.last::after
{
  background-color: transparent;
}
.about_overview_item img 
{
  width: 50px;
}
.about_overview_item_right h2 
{
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.about_overview_item_right p 
{
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

.why_best
{
  padding-top: 80px;
  padding-bottom: 80px;
}

.why_best > h1 
{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
}
.why_best_item
{
  margin: 12px 0;
  display: flex;
  align-items: start;
  gap: 22px;
  padding: 10px;
  background-color: white;
  box-shadow: 0 0 20px -2px rgba(0,0,0,.08);
  padding: 25px 28px;
  border-radius: 10px;
  transition: all linear 0.2s;
}
.why_best_in > .row > div:nth-child(2n+1):hover > .why_best_item
{
  background-color: var(--primary-color);
  color: white;
}
.why_best_in > .row > div:nth-child(2n+2):hover > .why_best_item
{
  background-color: var(--secondary-color);
  color: white;
}

.why_best_in > .row > div:nth-child(2n+1) > .why_best_item svg 
{
  width: 200px;
  fill: var(--primary-color);
}

.why_best_in > .row > div:nth-child(2n+2) > .why_best_item svg 
{
  width: 200px;
  fill: var(--secondary-color);
}

.why_best_item:hover svg
{
  fill: white !important;
}

.why_best_item_right h3 
{
  font-size: 25px;
  font-weight: 600;
  margin: 0;
}
.why_best_item_right p 
{
  margin: 10px 0;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
}

@media(max-width : 575px)
{
  .about_banner {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .about_banner_left {
    align-items: center;
    text-align: center;
  } 
  .about_banner_left h2 {
    font-size: 35px;
  }
  .about_banner_right
  {
    margin-top: 30px;
  }
  .about_overview {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent; 
  }
  .about_overview_item
  {
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
  .about_overview_item::after {
    background-color: transparent;
  }
  .why_best {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .why_best > h1 {
    font-size: 35px;
    margin-bottom: 40px;
  }
  .why_best_item_right h3 {
    font-size: 22px;
  }
}

@media(min-width : 576px) and (max-width : 767px)
{
  .about_banner_left {
    align-items: center;
    text-align: center;
  } 
  .about_banner_right
  {
    margin-top: 30px;
  }

  .about_overview_item::after {
    right: 0px;
  }

  .about_overview > .row > div:nth-child(2) > .about_overview_item::after
  {
    background-color: transparent;
  }
  .about_overview_item {
    margin: 15px 0;
  }
  .about_overview {
    padding-top: 16px;
    padding-bottom: 16px;
  }
} 

@media(min-width : 768px) and (max-width : 991px)
{
  .about_banner_left h2 {
    font-size: 42px;
  }
  .about_overview_item::after {
    right: 0px;
  }
  .about_overview > .row > div:nth-child(2) > .about_overview_item::after
  {
    background-color: transparent;
  }
  .about_overview_item {
    margin: 15px 0;
  }
  .about_overview {
    padding-top: 16px;
    padding-bottom: 16px;
  }
} 

@media(min-width : 992px) and (max-width : 1199px)
{
  .about_overview_item::after {
    right: 0px;
  }
  .about_overview_item {
    gap: 15px;
  }
  .about_overview_item img {
    width: 45px;
  }
}
/*--- /about ---*/


/*--- contact ---*/
.contact_box
{
  padding-top: 60px;
  padding-bottom: 40px;
}
.contact_box > h2 
{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
}

.contact_box_left
{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}


.contact_box_left_item
{
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e5e5;
  padding: 20px 40px;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}
.contact_box_left_item_icon
{
  height: 50px;
  width: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all linear 0.2s;
}
.contact_box_left_item_icon:hover
{
  background-color: var(--secondary-color);
}

.contact_box_left_item_content a,.contact_box_left_item_content p
{
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color) !important;
}
.contact_box_left_item_content a:hover,.contact_box_left_item_content p:hover
{
  color: var(--secondary-color) !important;
}
.contact_box_left_item > .title
{
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: -2px;
  left: 30px;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 20px;
  background-color: white;
  opacity: 0.9;
}
.contact_box_right
{
  padding: 50px 60px;
  border-radius: 10px;
  background: linear-gradient(125deg,rgba(99,171,69,0.1) 0%,rgba(251,176,59,0.1) 100%);
  max-width: 800px;
  width: 100%;
}
.contact_box_right >  h2 
{
  font-size: 30px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 30px;
}
.contact_inp
{
  margin: 10px 0;
}
.contact_inp label
{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
}
.contact_inp input,.contact_inp textarea
{
  height: 50px;
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #e5e5e5;
  outline: none;
  box-shadow: none;
}
.contact_inp textarea
{
  height: 100px;
}

.error_msg
{
  font-size: 15px;
  font-weight: 400;
  margin: 5px 0;
  color: red;
}

.show_info
{
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0;
  color: green;
}


.contact_btn
{
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 30px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  transition: all linear 0.2s;
}
.contact_btn:hover
{
  background-color: var(--secondary-color);
}
.agent_info
{
  padding-top: 60px;
  padding-bottom: 40px;
}
.agent_info > h2
{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 40px;
}
.agent_info_item
{
  margin: 12px 10px;
  text-align: center;
  padding: 30px 15px;
  box-shadow: 0px 4px 60px 0px rgba(22, 23, 26, 0.06);
  background-color: white;
}
.agent_location
{
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--secondary-color);
  background-color: #f5f5f8;
  margin: auto;
  transition: all linear 0.2s;
}
.agent_info_item:hover .agent_location
{
  color: #fff;
  background-color: var(--secondary-color);
}

.agent_info_item > h1 
{
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0px;
}

.agent_info_item > p
{
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.agent_info_item > h2
{
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 0px;
  opacity: 0.9;
}

.agent_info_item > a
{
  margin: 4px 0;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-color) !important;
  opacity: 0.9;
} 
.agent_info_item > a:hover
{
  color: var(--secondary-color) !important;
}

.map_location
{
  padding-top: 40px;
  padding-bottom: 0px;
}
.map_location iframe
{
  width: 100%;
  height: 500px;
}

@media(max-width : 425px)
{
  .contact_box > h2 {
    font-size: 30px;
  }
  .contact_box_left_item {
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .contact_box_left {
    align-items: center;
  }
  .contact_box_left_item_content a, .contact_box_left_item_content p {
    font-size: 16px;
  }
  .contact_box_right {
    padding: 30px 20px;
  }
  .agent_info {
    padding-top: 30px;
  }
  .map_location iframe {
    height: 350px;
  }
}

@media(min-width : 426px) and (max-width : 575px)
{
  .contact_box > h2 {
    font-size: 32px;
  }
  .contact_box_right {
    padding: 50px 30px;
  }
  .contact_box_left {
    align-items: center;
  }
  .agent_info {
    padding-top: 30px;
  }
  .map_location iframe {
    height: 400px;
  }
}

@media(min-width : 576px) and (max-width : 767px)
{
  .contact_box > h2 {
    font-size: 35px;
  }
  .contact_box_left {
    align-items: center;
  }
  .agent_info_item > a {
    font-size: 18px;
  }
  .agent_info {
    padding-top: 30px;
  }
}

@media(min-width : 768px) and (max-width : 991px)
{
  .contact_box_left_item {
    padding: 20px 25px;
  }
  .contact_box_right {
    padding: 30px 25px;
  }
  .agent_info {
    padding-top: 30px;
  }
}
/*--- /contact ---*/

/*--- login ---*/
.login_box
{
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--cmn-bg);
  min-height: 100vh;
  display: flex;
  justify-content: center; 
  align-items: center;
}
.login_box_in
{
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 30px 30px;
  max-width: 500px;
  width: 100%;
  height: fit-content;
}
.login_box_in > h1 
{
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
}

.login_inp
{
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}


.register_avatar h5 
{
  font-size: 16px;
  font-weight: 500;
}

.register_avatar_in
{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.register_avatar_in label
{
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 50%;
  overflow: hidden;
}
.register_avatar_in label.active 
{
  border: 1px solid var(--primary-color);
}

.register_avatar_in label img 
{
  width: 80px;
}

.phone_number
{
  position: relative;
}

.phone_number > #phone
{
  padding-left: 78px;
}

.country_code_box
{
  position: absolute;
  top: 53px;
  transform: translateY(-50%);
  left: 6px;
  height: 50px;
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-right: 1px solid #ccc;
  cursor: pointer;
}


.terms_condition_checkbox
{
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.terms_condition_checkbox > input
{
    width: 20px !important;
    height: 20px !important;
    cursor: pointer;
}


.login_inp span
{
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.login_inp input
{
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  border: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #e5e5e5;
}
#image_label
{
  background-color: var(--secondary-color);
  color: white;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
#image_label i 
{
  margin-right: 5px;
}

.login_submit_btn
{
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 50px;
  background-color: var(--primary-color);
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all linear 0.2s;
}
#password_eye
{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color) !important;
}
.login_submit_btn:hover
{
  background-color: var(--secondary-color);
}
.login_box_in > p 
{
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 400;
  opacity: 0.9;
}
.login_box_in > p > a:hover
{
  color: var(--secondary-color);
}

@media(max-width : 767px)
{
  .login_box
  {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
/*--- /login ---*/

/*--- privacy ---*/
.privacy
{
  padding-top: 50px;
  padding-bottom: 50px;
}
.privacy > p
{
  font-size: 18px;
  opacity: 0.9;
  font-weight: 400;
  margin-bottom: 20px;
}
.privacy_content
{
  margin-top: 20px;
  margin-bottom: 30px;
}
.privacy_content > h4 
{
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
}
.privacy_content > p 
{
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  margin: 10px 0;
}
.privacy_content > ol,
.privacy_content > ul
{
  margin: 0;
}
.privacy_content > ol > li,
.privacy_content > ul > li 
{
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  margin: 10px 0;
}

/*--- /privacy ---*/

/*--- travel ---*/

.travel_box_main
{
  background-color: var(--cmn-bg);
  padding-top: 100px;
  padding-bottom: 50px;
}



.travel_box_in
{
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  margin: auto;
  position: relative;
}
.price_plan_btn
{
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white !important;
  padding: 10px 12px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
}

.travel_box_in > h1 
{
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.travel_box_in > p 
{
  font-size: 18px;
  font-weight: 400;
  margin: 5px 0;
  opacity: 0.9;
  text-align: center;
}
.travel_box_in > form 
{
  margin-top: 30px;
}

.form_title
{
  margin: 8px 0 !important;
}

.form_title .badge 
{
  font-size: 14px;
  font-weight: 600;
}

.form_title small
{
  font-size: 14px;
  font-weight: 600;
}

.travel_inp
{
  margin: 10px 0;
  position: relative;
}
.travel_inp > label
{
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.meet_greet_label
{
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.meet_greet_label input
{
  height: 18px;
  width: 18px;
  accent-color: var(--primary-color);
}

.meet_greet_label span
{
  display: block;
}

.airport_era
{
  left: 0;
  top: 100%;
  width: 100%;
  position: absolute;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 15px 15px;
  border-radius: 5px;
  z-index: 1;
  max-height: 200px;
  overflow: auto;
  display: none;
}

.airport_era.SlideToUp
{
  animation: SlideToUp ease-in 0.2s forwards;
}

.airport_era.SlideToDown
{
  animation: SlideToDown ease-in 0.2s forwards;
}

@keyframes SlideToUp {
  0%{
    transform: translateY(20%);
  }
  100%{
    transform: translateY(0%);
  }
}

@keyframes SlideToDown {
  0%{
    transform: translateY(0%);
  }
  100%{
    transform: translateY(20%);
  }
}

.airport_item
{
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.airport_item + .airport_item 
{
  margin: 20px 0 0 0;
}

.airport_item_left
{
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: white;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.airport_item_right h3 
{
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.airport_item_right p 
{
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}


.travel_input
{
  height: 45px;
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px 10px 5px 10px;
  border-radius: 3px;
  position: relative;
}

.travel_inp > p 
{
  font-size: 15px;
  font-weight: 400;
  margin: 5px 0;
}

.doller_sign
{
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}
.travel_input > input,.travel_input > textarea,.travel_input > select
{
  height: 100%;
  width: 100%;
  border: none;
  box-shadow: none;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}

.travel_input > select
{
  cursor: pointer;
}

.travel_input > input[type="datetime-local"] 
{
  cursor: pointer;
}


.travel_input.message_area
{
  height: auto;
}
.travel_input.message_area > textarea
{
  height: 100px;
}
.travel_btn
{
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 3px;
  transition: all linear 0.2s;
}
.travel_btn:hover
{
  background-color: var(--secondary-color);
}

.parcel_info_title
{
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.item_box_item
{
  display: grid;
  grid-template-columns: repeat(4, 1fr) 30px;
  gap: 10px;
  margin: 5px 0;
}

.item_box_item > .travel_inp > label 
{
  font-size: 14px;
}
.item_box_item > .travel_inp > .travel_input > input 
{
  font-size: 15px;
}
.image_label
{
  font-size: 22px;
  font-weight: 400;
  background-color: var(--text-color);
  color: white;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 25px;
}

.show_image_name
{
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0;
}


.special_item_box
{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.special_item_box h5 
{
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}


.switch {
  --switch-width: 46px;
  --switch-height: 24px;
  --switch-bg: rgb(131, 131, 131);
  --switch-checked-bg: #1676df;
  --switch-offset: calc((var(--switch-height) - var(--circle-diameter)) / 2);
  --switch-transition: all 0.2s cubic-bezier(0.27, 0.2, 0.25, 1.51);

  --circle-diameter: 18px;
  --circle-bg: #fff;
  --circle-shadow: 1px 1px 2px rgba(146, 146, 146, 0.45);
  --circle-checked-shadow: -1px 1px 2px rgba(163, 163, 163, 0.45);
  --circle-transition: var(--switch-transition);

  --icon-transition: all 0.2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
  --icon-cross-color: var(--switch-bg);
  --icon-cross-size: 6px;
  --icon-checkmark-color: var(--switch-checked-bg);
  --icon-checkmark-size: 10px;

  --effect-width: calc(var(--circle-diameter) / 2);
  --effect-height: calc(var(--effect-width) / 2 - 1px);
  --effect-bg: var(--circle-bg);
  --effect-border-radius: 1px;
  --effect-transition: all 0.2s ease-in-out;
}

.switch input {
  display: none;
}

.switch {
  display: inline-block;
}

.switch svg {
  -webkit-transition: var(--icon-transition);
  -o-transition: var(--icon-transition);
  transition: var(--icon-transition);
  position: absolute;
  height: auto;
}

.switch .checkmark {
  width: var(--icon-checkmark-size);
  color: var(--icon-checkmark-color);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.switch .cross {
  width: var(--icon-cross-size);
  color: var(--icon-cross-color);
}

.slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: var(--switch-width);
  height: var(--switch-height);
  background: var(--switch-bg);
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: var(--switch-transition);
  -o-transition: var(--switch-transition);
  transition: var(--switch-transition);
  cursor: pointer;
}

.circle {
  width: var(--circle-diameter);
  height: var(--circle-diameter);
  background: var(--circle-bg);
  border-radius: inherit;
  -webkit-box-shadow: var(--circle-shadow);
  box-shadow: var(--circle-shadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  z-index: 1;
  position: absolute;
  left: var(--switch-offset);
}

.slider::before {
  content: "";
  position: absolute;
  width: var(--effect-width);
  height: var(--effect-height);
  left: calc(var(--switch-offset) + (var(--effect-width) / 2));
  background: var(--effect-bg);
  border-radius: var(--effect-border-radius);
  -webkit-transition: var(--effect-transition);
  -o-transition: var(--effect-transition);
  transition: var(--effect-transition);
}

.switch input:checked + .slider {
  background: var(--switch-checked-bg);
}

.switch input:checked + .slider .checkmark {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.switch input:checked + .slider .cross {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.switch input:checked + .slider::before {
  left: calc(
    100% - var(--effect-width) - (var(--effect-width) / 2) -
      var(--switch-offset)
  );
}

.switch input:checked + .slider .circle {
  left: calc(100% - var(--circle-diameter) - var(--switch-offset));
  -webkit-box-shadow: var(--circle-checked-shadow);
  box-shadow: var(--circle-checked-shadow);
}




@media(max-width : 575px)
{
  .item_box_item {
      grid-template-columns: 1fr;
  }
  .item_box_item .travel_inp {
    margin: 2px 0;
  }
  .image_label {
    margin-top: 2px;
  }
  .travel_item_remove_btn
  {
    width: 100%;
  }
  
  .travel_box_in {
    padding: 40px 20px 30px 20px;
  }
  .travel_box_in > h1 {
    font-size: 30px;
  }
  .travel_box_in > p {
    font-size: 16px;
  }
}

@media(min-width : 576px) and (max-width : 767px)
{
  .travel_box_in {
    padding: 50px 30px 40px 30px;
  }
  .travel_box_in > h1 {
    font-size: 30px;
  }
  .item_box_item {
    grid-template-columns: repeat(2, 1fr);
  }
  .item_box_item .travel_inp {
    margin: 4px 0;
  }
  .image_label {
    margin-top: 4px;
  }
  .travel_item_remove_btn
  {
    width: 100%;
  } 
}

@media(min-width : 768px) and (max-width : 991px)
{
  .item_box_item {
    grid-template-columns: repeat(3, 1fr);
  }
  .item_box_item .travel_inp {
    margin: 4px 0;
  }
  .travel_item_remove_btn
  {
    width: 100%;
  } 
}

/*--- /travel ---*/

/*--- gift ---*/
.gift_step h4 
{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.gift_step ol 
{
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.gift_step ol li 
{
  margin: 5px 0;
  font-size: 16px;
  font-weight: 400;
}
.gift_step ol li a{
  font-weight: 500;
  color: var(--primary-color) !important;
}
.gift_pay_amt
{
  margin: 10px 0;
}
.gift_pay_amt > h2 
{
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 5px;
  margin-bottom: 0;
}
.gift_pay_amt > small
{
  font-size: 16px;
  font-weight: 400;
}
/*--- /gift ---*/

/*--- price plan ---*/
.price_plan
{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.price_plan_in
{
  background-color: white;
  padding: 25px 20px 20px 20px;
  border-radius: 10px;
  height: fit-content;
  max-width: 600px;
  width: 96%;
  position: relative;
}
.price_plan_in > h1 
{
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 25px;
}

.close_price_plan
{
  position: absolute;
  top: 15px;
  right: 15px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: crimson;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 500;
}

@media(max-width : 575px)
{
  .price_plan_btn {
    padding: 8px 8px;
      font-size: 12px;
  }
  .price_plan_in > h1 {
    font-size: 26px;
  }
  .close_price_plan {
    height: 25px;
    width: 25px;
    font-size: 14px;
  }
}

/*--- /price plan ---*/

/*--- post ---*/
.post_details
{
  padding-top: 40px;
  padding-bottom: 50px;
}
.post_details_left,.post_details_right
{
  margin: 10px 0;
}
.post_details_left > h1, .parcel_details > h1,.post_details_right > h1{
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.post_table th, .post_table td ,.item_table th, .item_table td 
{
  padding: 15px 15px !important;
}
.post_table th
{
  font-size: 16px;
  font-weight: 600;
}
.post_table td 
{
  font-size: 16px;
  font-weight: 400;
}
.item_table th
{
  font-size: 15px;
  font-weight: 600;
}
.item_table td
{
  font-size: 15px;
  font-weight: 400;
}
.item_image
{
  width: 80px;
  height: 60px;
  object-fit: contain;
  transition: all linear 0.2s;
  cursor: pointer;
}
.item_image:hover 
{
  transform: scale(1.2);
}
.post_user_info > img 
{
  width: 150px;
  height: 150px;
  object-fit: fill;
  object-position: top;
  margin-bottom: 15px;
  border-radius: 5px;
}
.post_user_info > h4 
{
  margin: 5px 0;
  font-size: 18px;
  font-weight: 500;
}
.book_request_btn
{
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: all linear 0.2s;
  padding: 10px 20px;
  border: none;
  display: inline-block;
  margin-top: 20px;
}
.book_request_btn:hover
{
  background-color: var(--secondary-color);
}

.sender_form > button
{
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.post_breadcrumb
{
  padding-top: 30px;
  padding-bottom: 40px;
}

.redirect_to_login
{
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
}

.redirect_to_login p 
{
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
}

.sender_item_tbl tr th 
{
  padding: 10px 10px;
  font-weight: 600;
  font-size: 15px;
}

.sender_item_tbl tr td 
{
  padding: 5px 10px;
  font-weight: 400;
  font-size: 15px;
}

.sender_item_tbl tr td img 
{
  width: 100px;
}

.invite_sender_btn
{
  background-color: var(--primary-color);
  color: white;
  padding: 14px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
  transition: all linear 0.2s;
  max-width: 300px;
  width: 100%;

  &:hover 
  {
    background-color: var(--secondary-color);
  }
}

.request_type h4 
{
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0;
}

.request_type > label 
{
  display: flex;
  gap: 10px;
  cursor: pointer;
  margin: 20px 0;
}

.request_type > label > input
{
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
}

.request_type > label > span 
{
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  display: block;
  margin: 0;
}



@media(max-width : 575px)
{
  .post_table th {
    font-size: 16px;
  }
  .post_table td {
    font-size: 15px;
  }

  .sender_item_tbl tr th,
  .sender_item_tbl tr td
  {
    white-space: nowrap;
  }
}

@media(max-width : 767px)
{
  .post_details > .row 
  {
    flex-direction: column-reverse;
  }
}

 

@media(min-width : 768px) and (max-width : 991px)
{
  .post_table th {
    font-size: 16px;
  }
  .post_table td {
    font-size: 15px;
  }
  .post_user_info > h4 {
    font-size: 16px;
  }
}

/*--- /post ---*/

div:where(.swal2-container) {
  z-index: 999999 !important;
}

/*--- verify_email ----*/
.verify_email_breadcrumb
{
  padding-top: 150px;
  padding-bottom: 40px;
}

.email_verification_in
{
  padding-bottom: 40px;
}

.verification_success,
.verification_failed
{
  text-align: center;
}

.verification_success img
,.verification_failed img 
{
  width: 140px;
  display: block;
  margin: 20px auto;
}

.verification_success h4,
.verification_failed h4 
{
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.verification_success p,
.verification_failed p 
{
  font-size: 16px;
  font-weight: 400;
  margin: 12px 0;
}

.verification_success p  a 
{
  color: var(--primary-color) !important;
  font-weight: 600;
}
/*--- /verify_email ----*/

.leaflet-control-zoom 
{
  position: fixed !important;
  top: 10%;
}

/*  bottom nav  */
.bottom_nav 
{
  background-color: var(--primary-color);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 10px 10px 10px;
  display: none;
}

@media(max-width: 767px)
{
  .bottom_nav 
  {
    display: block;
  }
}

.bottom_nav > ul 
{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
}

.bottom_nav li 
{
  display: block;
}

.bottom_nav li a 
{
  display: block;
  text-align: center;
  font-weight: 400;
  color: white !important;
  text-decoration: none;
}

.bottom_nav li a i 
{
  font-size: 18px;
}

.bottom_nav li a p 
{
  font-size: 14px;
  margin: 0;
}

.bottom_nav li a:hover,
.bottom_nav li a.active
{
  color: white !important;
}

.bottom_nav_badge
{
  width: fit-content;
  margin: 0 auto;
}

.bottom_nav_badge span 
{
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-size: 10px;
  font-weight: 400;
  border: 1px solid white;
}


/*  rates chart */
.rates_chart
{
  position: absolute;
  top: 50%;
  left: 280px;
  transform: translateY(-50%);
  max-width: 450px;
  width: 95%;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  z-index: 99;
  padding: 15px 15px 5px 15px;
  overflow: hidden;
  display: none;
}


@media(max-width : 767px)
{
  .rates_chart {
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
  }

  .rotate_down
  {
    transform: rotate(90deg);
  }

}

.rates_chart > h2 
{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.chart_tbl td 
{
  font-size: 14px;
  font-weight: 500;
}

.chart_close_btn
{
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  height: 25px;
  width: 30px;
  border-bottom-left-radius: 20px;
}


.special_items_label span
{
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.payable_amt
{
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

/* Notice */
.notice
{
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  z-index: 9999;
  transition: all linear 0.3s;
}

.notice.hide
{
  opacity: 0;
}

.notice_in
{
  max-height: 650px;
  max-width: 550px;
  width: 90%;
  overflow: auto;
  border-radius: 10px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}

.notice_in::-webkit-scrollbar
{
  display: none;
}

.notice_top
{
  padding: 30px 15px 10px 15px;
}

.notice_top > h1 
{
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.notice_top > p 
{
  font-size: 15px;
  font-weight: 400;
  margin: 10px 0;
  opacity: .8;
  text-align: center;
}

.notice_btm > img 
{
  width: 100%;
}

.notice_close_btn
{
  background-color: red;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  outline: none;
  box-shadow: none;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 16px;
  color: white;
  height: 30px;
  width: 30px;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}




/* flight inquiry dropdown */
.children_dropdown_a
{
  display: grid;
  grid-template-columns: auto 80px;
  align-items: center;
  gap: 5px;
}

.children_dropdown_a span 
{
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize !important;
}

.children_dropdown_a input
{
  height: 40px;
  width: 80px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
}

.children_dropdown_a .dropdown-item.active, 
.children_dropdown_a .dropdown-item:active 
{
  background-color: red !important;
}

















