*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #ebe5df;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: #000000;
}

.clsvalidation{
    color :red;
}


.average_bid_rating_bar_wrapper {
    position: relative;
    height: 200px;
    width: 40px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: auto;
}

#bar_fill {
    width: 100%;
    background: linear-gradient(to top, #6fd56f, #a8e6a8);
    height: 50%; /* will be updated by JS */
    position: absolute;
    bottom: 0;
    transition: height 0.3s;
}

#average_bid_rating_value {
    position: absolute;
    bottom: calc(50% - 15px); /* adjusted by JS */
    transform: translateY(50%);
    background: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



.loader-wrapper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(235, 229, 223, .8);
}
.loader-box{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#b49d86 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#b49d86);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

/* / Slider / */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  margin: 0 10px
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  margin: 0 auto;
  /*max-height: calc(100vh - 140px);*/
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-initialized .slick-slide > div {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.slick-slider .slide-arrow {
  position: absolute;
  bottom: 5%;
  margin-top: -10px;
  background-color: #f3efeb;
  height: 30px;
  width: 30px;
  z-index: 999;
  border-radius: 50%;
}
.slick-slider .slide-arrow img {
  height: 15px;
  filter: invert(1);
}
.photo-gallery.bg-pink .slick-slider .slide-arrow img{
  filter: none;
}
.slick-slider .prev-arrow {
  left: 15px;
  /*  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 20px solid #ffffff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;*/
}
.slick-slider .next-arrow {
  left: 50px;
  /*  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 20px solid #ffffff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;*/
}
.slide-arrow.slick-arrow.slick-disabled{
  opacity: .3;
  cursor: not-allowed;
}

/* .gallery-img .trailer{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  border: 1px solid var(--color-primary);
} */
/* .thumb-video-gallery{
  cursor: pointer;
  border: 1px solid var(--color-primary);
} */
/* .slider-image {
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--color-primary);
} */
.slider-container .slider-image img:hover{
  transition: all .3s ease-in-out;
}


.btn_primary_white{
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: .875rem;
    font-weight: 400;
    color: #000000;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}
.btn_primary_black{
    display: inline-block;
    background-color: #000000;
    border: 2px solid #000000;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: .75rem;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}
.btn_secondary_black{
    display: inline-block;
    border: 2px solid #000000;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: .75rem;
    font-weight: 400;
    color: #000000;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}
.disabled{
  opacity: .5;
  cursor: not-allowed;
}
.login-page{
    display: flex;
    height: 100vh;
}
.login_left_side{
    flex-grow: 1;
}
.login_box{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: 0 auto;
}
.login_left_side_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    margin-top: 10vh;
}
.login_fh_logo{
    max-width: 65%;
    width: 800px;
    margin: 2rem 0;
}
.login_header{
    text-align: center;
    width: 100%;
}
.login_heading_text{
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
}
.form_wrapper{
    width: 100%;
    margin-top: 2rem;
}
.form-label{
    font-size: .875rem;
    font-weight: 400;
}
.form-control{
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    padding: .6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    outline: none;
}
.form-control::placeholder{
    color: #7a7673;
}
.form-control:focus{
    background-color: #F3ECE6;
    border: 1px solid #000000;
    box-shadow: none;
}
input.invalid{
  border-color: #E95858;
}
input.valid{
  border-color: rgb(3, 187, 3);
}
.input-group-text{
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
}
#inputPassword{
    border-right: 0;
}
#inputPassword:focus + #passIcon, input.form-control:focus ~ .input-group-text{
    border-color: #000000;

}
#passIcon{
    border-left: 0;
    cursor: pointer;
}
.login_right_side{
    background: url(../images/login_img.jpg);
    width: 60%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.error_msg{
  color: #E95858;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.link_wrapper{
    text-align: center;
}
.forgot_pass_link{
    display: inline-block;
    color: #000000;
    font-size: 1rem;
    font-weight: 300;
    text-underline-offset: 3px;
    margin: 0 auto;
}
.bg_gradient {
    position: fixed;
    bottom: 0;
    background: linear-gradient(#EBE5DF, #FFF6C6);
    height: 248px;
    width: 100%;
    z-index: -1;
}
.legal{
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}
.legal p, .legal_device p{
    font-size: 13px;
    font-weight: 400;
}
.legal_device{
    margin-top: 1rem;
    display: none;
    text-align: center;
}




.toggle_switch{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}
.toggle_switch p{
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}
/* .toggle_switch p span{
  opacity: .5;
} */
.toggle_switch p img{
  max-width: 12px;
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #D1C6BB;
  background-color: #F3ECE6;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  top: 2px;
  left: 2px;
  background-color: #A89B8C;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #FFFFFF;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  background-color: #000000;
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* NAVBAR */
#navIcon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    /* background: #000000;
    border: 1px solid #ffffff; */
    border-radius: 4px;
    margin-right: 5px;
    margin-left: 0px;
    top: 10px;
    z-index: 999;
    /* box-shadow: 0 0 12px rgb(0 0 0 / 15%), 0 0px 12px rgb(0 0 0 / 15%), inset 0 0 12px 4px rgb(0 0 0 / 30%); */
    position: fixed;
    left: 10px;
    display: none;
  }
  #navIcon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 24px;
    background: #000000;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    margin: 0 auto;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  /* .noscroll #navIcon span {
    background: #ffffff !important;
  }
  .noscroll #navIcon.open span {
    background: #fff !important;
  }
  .noscroll .share-container span img {
    -webkit-filter: brightness(0) invert(100%); /*Safari/Chrome */
  /* filter: brightness(0) invert(100%);
  } */
  /* .open span {
    background: #fff !important;
  } */
  #navIcon span:nth-child(1) {
    top: 11px;
  }
  #navIcon span:nth-child(2) {
    top: 18px;
  }
  #navIcon span:nth-child(3) {
    top: 25px;
  }
  .navActive #navIcon span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .navActive #navIcon span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  .navActive #navIcon span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  nav.activatedMenus {
    left: 0;
    transition: 0.4s ease;
  }
  .nav-container {
    border-bottom: none;
  }
  .nav-container {
    position: fixed;
    background: #f3ece6;
    border-right: 1px solid #D1C6BB;
    width: 220px;
    height: 100dvh;
    left: 0;
    z-index: 99;
    top: 0;
    overflow-y: auto;
    transition: 0.4s ease;
    padding: 1rem;
    display: flex;
  }
  .nav-container.nav-main.toggle-nav {
    left: 0;
    z-index: 10;
  }
  .navActive .nav-container{
    left: 0;
  }
  .nav-container .nav-ul {
    width: 100%;
    margin: auto;
    padding: 0;
  }
  .nav-container .nav-li {
    margin: 0;
    display: block;
  }
  .nav-container a {
    padding: .5rem .5rem .5rem 1rem;
    /* color: #fff !important; */
    transition: padding 0.5s ease;
    text-decoration: none !important;
    outline: none !important;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
  }
  .nav-container a:hover img {
    opacity: 1;
  }
  .nav-li a.active-nav, .nav-li a.active {
    color: #000 !important;
    background: #ffffff;
  }
  .nav-li a.active-nav img, .nav-li a.active img{
    opacity: 1;
  }
  .nav-li-icon{
    display: block;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
  }
  .nav-li-icon img{
    display: block;
    opacity: .3;
    transition: all .3s ease-in-out;
  }

  .nav_fh_logo{
    max-width: 140px;
    margin: .2rem 0 1.5rem;
  }
  .nav-container .bg_gradient{
    background: linear-gradient(#f3ece6, #FFF6C6);
    position: absolute;
    left: 0;
  }
  .nav-container-content{
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    overflow-y: auto;
  }
  .nav-container-content button{
    display: block;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1;
  }
  .nav_user_porfile{
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
  }
  .user{
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
  .user_icon{
    width: 20px;
    margin-right: 5px;
  }
  .nav_user_name{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
  }
  .user_options{
    cursor: pointer;
  }
  .nav_user_actions .btn_wrapper .btn_primary_black, .nav_user_actions .btn_wrapper .btn_primary_white{
    font-size: 12px;
  }

/* DASHBOARD */
.body_wrapper{
  display: flex;
}
.main_page{
  margin-left: 220px;
  display: flex;
  flex-grow: 1;
}
.page_main_content{
  /* padding: 1rem; */
  flex-grow: 1;
}
.page_main_content_wrapper{
  position: relative;
}
.overall_details{
  padding: 0 1rem;
}
.details_box{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  height: 100%;
}
.details_value{
  font-size: 2rem;
  font-weight: 500;
}
.overall_details .row{
  margin: 0 -.6rem;
}
.overall_details .col-md-4{
  padding: 0 .3rem;
  margin: 0 0 1rem;
}
.details_name{
  color: #87786B;
  font-size: .9rem;
  font-weight: 500;
}
.flight_details_heading{
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.search_box{
  display: flex;
  border: 1px solid #D1C6BB;
  border-radius: 8px;
  min-width: 345px;
  max-width: 25%;
}
.search_box label{
  padding: .4rem 0 .4rem 1rem;
  cursor: pointer;
}
.search_box label img{
  display: inline-block;
  margin-bottom: 3px;
}
.search_box input{
  outline: none;
  border: 0;
  background: transparent;
  padding-right: 1rem;
  flex-grow: 1;
  margin-left: 5px;
}
.custom_select{
  background-color: #F3ECE6;
  outline: none;
  font-size: .9rem;
  padding: .6rem 1.1rem;
  border: 1px solid #D1C6BB;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
}
.custom_select button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 100%;
}
select, ::picker(select) {
  appearance: base-select;
}
.custom_select::picker-icon{
  color: #000000;
    transition: 0.4s rotate;
  display: none;
}
.custom_select option {
  display: flex;
  /* justify-content: center; */
  border: 1px solid #dcd4cc;
  background: #f3ece6;
  padding: 10px;
  transition: 0.4s;
  text-align: center;
}
.current_month_year .month_year_dropdown{
  background: transparent;
  border: 0;
  outline: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
}
.current_month_year .month_year_dropdown:active{
  background-color: #000000;
  color: #ffffff;
}
.section_btn{
  background-color: #DCD4CC;
  font-size: .75rem;
  font-weight: 400;
  border-radius: 25px;
  padding: .5rem 1.1rem;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #dcd4cc;
  color: #000000;
  text-decoration: none;
}
.section_btn_dark{
  background-color: #9E935C;
  font-size: .8rem;
  font-weight: 400;
  border-radius: 10px;
  padding: .375rem;
  display: inline flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid #9E935C;
  color: #ffffff;
  text-decoration: none;
  text-transform: capitalize;
}
.gradient{
  background: linear-gradient(0deg, rgba(51, 200, 79, 0), rgba(51, 200, 79, .4), rgba(51, 200, 79, .4), rgba(51, 200, 79, 0));
  
  /* background: url(../images/green_gradient.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  height: 200px;
  width: 50px;
  margin: 0 auto;
  /* border: 1px solid; */
}
.rating_bar{
  /* border-bottom: 1px solid #A09387; */
  position: relative;
  width: 70%;
  margin: 0 auto;
}

#thresholdMarker{
    left : 0%!important;
}
.rating_bar::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid #A09387;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
.rating_bar::after{
  content: '';
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-right: 5px solid #A09387;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.rating_bar_label{
  color: #A09387;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translate(-50%, -50%);
}
.average_bid_rating{
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  z-index: 1;
}
.average_bid_rating_value{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  padding: .5rem 1rem;
  border-radius: .5rem;
  text-align: center;
  /* margin-bottom: 1rem; */
}
.average_bid_rating_label, .current_bid_rating_label{
  color: #6A5E53;
  font-size: .75rem;
  font-weight: 500;
  text-align: center;
  transition: all .3s ease;
}
.current_bid_rating_label::before{
    content: '';
    height: 14px;
    width: 1px;
    border-left: 1px dashed #D1C6BB;
    position: absolute;
    left: 52%;
    bottom: 100%;
}
.current_bid_rating{
  position: absolute;
  left: 50%;
  top: 2rem;
  /* transform: translate(-50%,-50%); */
  transform: translateX(-50%);
  width: 100px;
  text-align: center;
  padding-top: 1rem
}




.starting_rate_box{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: .5625rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.current_rate_bottom{
  background-color: #ffffff;
  border-top: 1px solid #D1C6BB;
}


.details_arrow{
  padding: .5rem;
  height: 40px;
  width: 40px;
  text-align: center;
}
.table_wrapper{
  border-radius: 10px;
  border: 1px solid #D1C6BB;
}
.table_wrapper table{
  width: 100%;
  text-transform: capitalize;
}
.table_wrapper table tr{
  border-bottom: 1px solid #D1C6BB;
}
.table_wrapper table tbody tr:last-child{
  border-bottom: 0;
}
.table_wrapper table th{
  background-color: #DCD4CC;
  font-weight: 700;
}
.table_wrapper table th, 
.table_wrapper table td{
  padding: .6rem;
}
.table_wrapper th img {
  margin-left: 5px;
}
.status_purchased{
  display: inline flex;
  align-items: center;
  background: #ffffff;
  border-radius: 100px;
  padding: .5rem .5rem .5rem .2rem;
  font-weight: 500;
  color: #3B7C47;
  text-transform: uppercase;
  line-height: 1;
}
.status_purchased img{
  margin-right: 5px;
}

.status_viewed{
  display: inline flex;
  align-items: center;
  background: #ffffff;
  border-radius: 100px;
  padding: .5rem .5rem .5rem .2rem;
  font-weight: 500;
  color: #6A5E53;
  text-transform: uppercase;
  line-height: 1;
}
.status_viewed img{
  margin-right: 5px;
}
.status_notviewed{
  display: inline flex;
  align-items: center;
  background: #F3EFEB;
  border-radius: 100px;
  padding: .5rem;
  font-weight: 500;
  color: #6A5E53;
  text-transform: uppercase;
  line-height: 1;
}
.status_notviewed img{
  margin-right: 5px;
}
.input-group .btn, .input-group .btn:focus{
  z-index: 0;
}
.input-group .btn.dropdown-toggle{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  padding: .6rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 8px;
  outline: none;
  color: #7a7673;
}
.dropdown-menu{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  max-height: 300px;
  overflow-y: auto;
}
.side_label{
  color: #87786B;
  font-size: .9rem;
  font-weight: 300;
}


.fleet_tracker_container{
  background-color: #000000;
  border-radius: .5rem;
  position: relative;
  min-height: 260px;
  height: 100%;
}
.fleet_tracker_top{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet_tracker_heading{
  color: #F3EFEB;
  font-size: .875rem;
  font-weight: 400;
  text-transform: uppercase;
}


.preview_aircraft_details_contianer{
  background-color: #F3ECE6;
  border-radius: .5rem;
  overflow: hidden;
}
.preview_aircraft_upper_details{
  background-color: #ffffff;
  border-radius: .5rem;
}
.preview_aircraft_flight_detials{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
}



.monthly_title_nav_contianer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
}
.monthly_title{
  color: #87786B;
  font-size: .875rem;
  font-weight: 400;
  text-transform: uppercase;
}
.monthly_nav{
  display: flex;
  align-items: center;
  gap: 10px;
}
.monthly_revenue_details_container{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  height: 100%;
}
.monthly_revenue_heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.monthly_revenue_heading h4{
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.monthly_revenue_heading span{
  font-size: 1rem;
  font-weight: 300;
}
.monthly_revenue{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.monthly_revenue_title{
  opacity: .5;
}
.monthly_revenue_value{
  text-align: right;
}
.monthly_revenue_each_dates{
  padding: 0 1rem 1rem;
}
.monthly_revenue_each_dates_box{
  background-color: #EBE5DF;
  border: 1px solid #D1C6BB;
  border-radius: 6px;
  display: flex;
  margin: .5rem 0;
}
.monthly_revenue_date{
  border-right: 1px solid #D1C6BB;
  padding: .5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 15%;
}
.monthly_revenue_day{
  color: #87786B;
  font-size: .875rem;
  font-weight: 500;
}
.monthly_revenue_date_value{
  font-size: 1.25rem;
  font-weight: 500;
}
.monthly_revenue_flight_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  width: 100%;
}
.monthly_revenue_flight{
  display: flex;
  gap: 1rem;
}
.monthly_revenue_code{
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase
}
.monthly_revenue_city{
  color: #87786B;
  font-size: .75rem;
  font-weight: 500;
}
.monthly_revenue_time{
  font-size: .875rem;
  font-weight: 500;
  text-align: right;
}



.bid_detail_with_grapic{
  position: relative;
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
}


/* Create Flight */

.create_request_wrapper .page_main_content{
  padding:  0;
}
.content_body{
  display: flex;
}
.conten_body_wrapper{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.content_heading{
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding: 1rem;
  width: 100%;
}
.create_flight_nav{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  width: 100%;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid #c9bdb0;
}
.flight_bottom_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #c9bdb0;
  background-color: #EBE5DF;
  z-index: 1;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 220px;
}
.tab_btn{
  color: #6A5E53;
  background: #F9F7F5;
  padding: .5rem .7rem;
  border: 1px solid #F9F7F5;
  border-radius: 100px;
  min-width: 144px;
  margin: .2rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: default;
}
.tab_btn.active{
  color: #000000;
  border: 1px solid #000000;
}
.create_flight_content{
  flex-grow: 1;
}
.bottom_nav_left .section_btn{
  display: inline;
}
.bottom_nav_left .btn_secondary_black{
  padding: .5rem 1.1rem;
  display: inline;
  font-size: .9rem;
}
.bottom_nav_right{
  display: flex;
}
.bottom_nav_right .btn_wrapper{
  width: 200px;
  margin: .1rem;
}
.bottom_nav_right .btn_primary_black{
  padding: .5rem 1.1rem;
  font-size: .9rem;
  margin: 0;
  display: block;
}
/* Customer info */
.customer_info_form{
  width: 360px;
  margin: 0 auto;
  max-height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
}
.customer_info_form_wrapper{
  overflow-y: auto;
  max-height: 100%;
  width: 100%;
}
.customer_info_form form{
  width: 100%;
}
.flag_dropdown{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 110px;
  color:  #000000 !important;
}
.flag_dropdown_menu, .time_dropdown + .dropdown-menu{
  width: 110px;
  min-width: auto;
  max-height: 300px;
  overflow-y: auto;
}
.dropdown-item:active{
  background-color: #ffffff;
  color: #000000;
}
.country_flag_img{
  max-width: 20px;
}

/* hiding the tab sections */

#tripRequestSection, #bidsSection, #reviewSection, #aircraftInfoSection{
  display: none;
}


/* Trip Requet tabs */
#tripRequestSection .nav.nav-tabs{
  justify-content: space-between;
}
#tripRequestSection .nav-item{
  width: 32%;
}
#tripRequest{
  margin-bottom: .5rem;
}
#tripRequestSection .nav-link{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  width: 100%;
  font-size: .9rem;
  font-weight: 400;
  padding: .5rem 1.1rem;
  color: #000000;
}
#tripRequestSection .nav-link.active{
  background-color: #D9CFC4;
  border: 1px solid #C9BDB0;
}
.trip_request_form{
  width: 500px;
  margin: 0 auto;
  max-height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  overflow-y: auto;
  margin-bottom: 6rem;
}
.trip_request_form_wrapper{
  /* overflow-y: auto; */
  max-height: 100%;
  width: 100%;
}
.trip_request_form form{
  width: 100%;
}
.form_group{
  display: flex;
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: 1.1rem .75rem;
}
.form_group_icon{
  padding: 0 .3rem;
}
.form_group input, .custom_dropdown_menu_top input{
  border: 0;
  padding: 0;
  background-color: transparent;
  outline: 0;
  flex-grow: 1;
}
.time_dropdown{
  width: 100%;
  border-radius: 0 !important;
  border-top: 0 !important;
  border-left: 0 !important;
  text-align: left;
  color: #000;
  padding: 1.1rem 0 !important;
}
.time_dropdown.dropdown-toggle::after{
  display: none;
}
.input_right_side:focus{
  border: 1px solid #D1C6BB;
  border-left: 0;
}
.input_right_side{
  border-left: 0;
  padding-left: 0;
}
.input_left_icon{
  border-right: 0;
  cursor: pointer;
}
.tab-pane .form-control{
  padding: 1.1rem 0;
}
.flight_heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flight_heading span{
  color: #E95858;
  font-weight: 400;
}
.custom_dropdown{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  position: relative;
  cursor: pointer;
}
.custom_dropdown_value{
  font-size: 1rem;
  font-weight: 400;
  color: #7a7673;
  padding: 1.1rem .75rem;
}
.custom_dropdown_menu{
  position: absolute;
  height: 215px;
  width: 100%;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  z-index: 1;
  display: none;
}
.custom_dropdown_menu_top{
  display: flex;
  align-items: center;
  background-color: #F3ECE6;
  border: 1px solid #000000;
  padding: 1.1rem .75rem;
  border-radius: .5rem .5rem 0 0;
  font-size: 1rem;
  font-weight: 400;
}
.custom_dropdown_list{
  background-color: #F3EFEB;
  border: 1px solid #D4CCC4;
  border-top: 0;
  padding: .7rem;
  height: 215px;
  overflow-y: auto;
}
.custom_dropdown_list > ul,.custom_dropdown_list .recent_list> ul{
  padding: 0;
}
.custom_dropdown_list li{
  list-style: none;
}
.list_item{
  display: flex;
}
.recent_list p{
  margin-bottom: 0;
  font-size: .9rem;
  font-weight: 300;
  color: #7a7673;
}
.list_icon{
  padding: 0 .2rem;
}
.list_main_text{
  font-size: 1.1rem;
  font-weight: 500;
}
.list_main_text span{
  color: rgba(0, 0, 0, .5);
}
.list_sub_text{
  font-size: .9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, .5);
}





/* Bid section */

.bids_section{
  width: 100%;
  margin: 0 auto;
  max-height: 100%;
  display: flex;
  align-items: flex-start;
  padding: 1rem;
}
.bids_section_wrapper{
  max-height: 100%;
  width: 100%;
}
.bids_section_content{
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
.bids_left_side{
  width: 30%;
}
.bids_left_side_wrapper{
  max-height: 97%;
  overflow-y: auto;
}
.bids_right_side{
  width: 70%;
}
.flight_container{
  background-color: #F3EFEB;
  border: 1px solid #D4CCC4;
  border-radius: 6px;
  /* padding: 1rem; */
  margin: 0 0 10px 0;
  overflow: hidden;
}
.flight_container.active{
  background: linear-gradient(#F3EFEB 50%, #EBE5DF, #FFF6C6);
  border: 1px solid #9E935C;
}
.flight_date_and_timing{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 0;
  font-size: .9rem;
}
.flight_date_and_timing p{
  margin-bottom: 0;
}
.flight_date span{
  opacity: .5;
}
.flight_info{
  display: flex;
  align-items: center;
  padding: 1rem;
  /* margin: .5rem 0; */
}
.flight_info p{
  margin-bottom: 0;
}
.fight_info_circle{
  border: 2px solid #A09387;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
.flight_info_line{
  position: relative;
  height: 1;
  border-top: 2px dashed #D9D0C6;
  flex-grow: 1;
}
.flight_info_plane{
  max-width: 24px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.airport_info{
  display: flex;
  justify-content: space-between;
  padding: 0 1rem 1rem;
}
.airport_info .departure_code, .airport_info .arrival_code{
  font-size: 1rem;
  font-weight: 500;
}
.airport_info .departure_city, .airport_info .arrival_city{
  color: #6A5E53;
  font-size: .9rem;
  font-weight: 500;
}
.arrival_airport_info{
  text-align: right;
}
.charter_sub_details, .current_req_sub_details{
  padding: .5rem 1rem;
}
.charter_sub_details p, .sub_details p{
  margin-bottom: 0;
}
    .charter_sub_details p, .charter_sub_details_overlay,  .sub_details p {
        margin-bottom: 0;
    }
.sub_details{
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
}
.sub_details_left{
  font-size: .88rem;
  color: #87786B;
  font-weight: 500;
}
.sub_details_right{
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}
.sub_details_right.big_detail{
  font-size: 1.1rem;
  font-weight: 700;
}
.sub_details.bottom{
  padding: 1rem;
  border-top: 1px solid #D4CCC4;
  align-items: center;
}
.sub_details.bottom .sub_details_right{
  font-size: 1.25rem;
  font-weight: 700;
}
.sub_details.bottom p{
  margin-bottom: 0;
}
.divider_line{
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #D1C6BB;
}
.aircarft_selected{
  padding: 0 1rem;
}
.aircarft_selected_heading{
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: #6A5E53;
  font-weight: 500;

}
.aircarft_selected_heading p{
  margin-bottom: .3rem;
}
.aircarft_list_item{
  background-color: #EBE5DF;
  border-radius: 8px;
  position: relative;
  margin: .5rem 0;
  list-style: none;
}
.aircarft_list_link{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aircarft_list_img{
  width: 2.4rem;
}
.aircarft_list_name{
  font-size: .9rem;
  font-weight: 500;
  float: right;
  padding: .5rem;
  color: #000000;
}
.aircarft_list_arrow_wrapper{
  padding: .5rem;
}
.aircarft_list_item .checkbox_wrapper{
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bids_option_wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 0 0 0 1rem;
  max-height: 97%;
  overflow-y: auto;
}
.bids_option, .bids_option_with_banner{
  background-color: #F3EFEB;
  border: 1px solid #D4CCC4;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bids_option.active, .bids_option_with_banner.active{
  border: 1px solid #A09387;
  box-shadow: 5px 5px 15px #85776880;
}
.bids_option_actions, .bids_option_actions_wrapper{
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding: .5rem;
}
.bids_option_actions .checkbox_wrapper, .bids_option_actions_wrapper .checkbox_wrapper{
  margin-bottom: 0;
  margin-right: 1rem;
}
.bids_option_actions_with_img{
  position: relative;
}
.flight_banner{
  width: 100%;
  height: auto;
}
.bids_option_actions_wrapper{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.bids_option_actions_wrapper .fh_fleet{
  background-color: #f9f7f5;
}
.best_price{
  background-color: #000000;
  border-radius: 4px;
  padding: .5rem;
  color: #FFF6C6;
  font-size: .9rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: .5rem;
}
.best_price img{
  margin-right: 0.2rem;
}
.fh_fleet{
  background-color: #DCD4CC;
  padding: .5rem;
  border-radius: 4px;
  text-decoration: none;
  color: #000000;
  font-size: .9rem;

}
.bids_option_ratings{
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
.safety_rating_logos span{
  color: #6A5E53;
  font-size: .8rem;
  font-weight: 500;
}
.rating_img{
  width: 2.4rem;
}
.safety_logos_wrapper a{
  text-decoration: none;
}
.safety_rating_text{
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
}
.bids_option_details_top_wrapper{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bids_option_details{
  padding: 1rem;
}
.plane_icon_wrapper{
  margin-right: .5rem;
}
.plane_icon_wrapper img{
  display: block;
}
.plane_name{
  margin-bottom: 0;
  font-size: 1.375rem;
  font-weight: 500;
}
.bids_option_model{
  font-weight: 300;
}
.bids_option_btn_wrapper{
  padding: 1rem 0 0;
  margin-bottom: 1rem;
}
.bids_option_btn_wrapper .btn_secondary_black{
  display: inline;
}
.price_wrapper{
  background-color: #EBE5DF;
  border-top: 1px solid #EBE5DF;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.bids_option_with_banner .price_wrapper{
  background-color: #F9F7F5;
  border-top: 1px solid #D1C6BB;
}
.price_text{
  font-size: 1rem;
  font-weight: 300;
}
.price_value{
  font-size: 1.2rem;
  font-weight: 500;
}

/* Customize the label (the container) */
.checkbox_wrapper {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 20px;
  width: 20px;
}

/* Hide the browser's default checkbox */
.checkbox_wrapper input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #F9F7F5;
  border: 1px solid #A5917D;
  border-radius: 4px;
  cursor: pointer;
}

/* On mouse-over, add a grey background color */
.checkbox_wrapper:hover input ~ .checkmark {
  background-color: #F9F7F5;
}

/* When the checkbox is checked, add a blue background */
.checkbox_wrapper input:checked ~ .checkmark {
  background-color: #55A063;
  border: 1px solid #55A063;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_wrapper input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_wrapper .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* Aircraft details */
.aircarft_details_overlay, .charters_overlay, .schedule_edit_overlay{
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  height: 100vh;
  overflow-y: auto;
  background-color: #EBE5DF;
  box-shadow: 0 0 15px #85776880;
  transition: all .3s ease-in-out;
  z-index: 2;
}
.aircarft_details_overlay.open, .charters_overlay.open, .schedule_edit_overlay.open{
  right: 0;
}
.aircarft_details_overlay_wrapper, .charters_overlay_wrapper, .schedule_edit_overlay_wrapper{
  position: relative;
}
.top_header{
  position: sticky;
  top: 0;
  text-align: right;
  padding: .6rem;
  width: 100%;
  background-color: #EBE5DF;
}
.aircarft_close_overlay_btn, .charters_close_overlay_btn{
  text-decoration: none;
  background-color: transparent;
  color: #000;
  border: 0;
}
.aircarft_details_overlay h4{
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem .6rem;
  margin-bottom: 0;
}
.aircarft_details_overlay p{
  font-size: 1rem;
  padding: 1rem;
  margin-bottom: 0;
}
.aircarft_details_overlay .aircarft_disc p{
  font-weight: 300;
}
.aircarft_inner_img img{
  max-width: 100%;
  width: 100%;
}

/* Booked chater Overlay */


.chaters_overlay_info{
  padding: 1rem;
  border-bottom: 1px solid #DCD4CC;
}
.chaters_overlay_info .chaters_overlay_info_heading{
  color: #87786B;
  font-size: .875rem;
  font-weight: 500;
}
.chaters_overlay_info_content{
  font-size: .875rem;
  font-weight: 500;
}
.chaters_overlay_info_content span{
  color: #6A5E53;
  font-weight: 300;
  margin-right: 4px;
}


/* Success page */
.success_section_wrapper{
  width: 500px;
  margin: 0 auto;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../images/icons/flyhouse_logo_white_icon.svg) no-repeat center center;
  background-size: 60%;
}
.success_section_wrapper h3{
  font-size: 1.4rem;
  font-weight: 400;
}
.success_btns{
  width: 80%;
  display: flex;
  justify-content:space-evenly;
  margin: .8rem 0;
  flex-wrap: wrap;
}
.success_section_wrapper .btn_primary_black{
  padding: .5rem 1.1rem;
  font-size: .9rem;
  margin: 0;
}
.passenger_detail{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D4CCC4;
}
.pasenger_icon img{
  width: 44px;
}
.passenger_name{
  padding: .5rem;
}

/* Existing Chaterer */
.existing_chaterer_overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(235, 229, 223, .9);
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
}
.existing_chaterer_overlay_wrapper{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exiting_chaterer_box{
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 0 0 1rem #D1C6BB;
  width: 90vw;
  position: relative;
}
#existingChatererCloseBtn{
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}


/* Date Picker CSS */
.datepicker.dropdown-menu{
  background-color: #F3ECE6;
}
.datepicker table tr td.day:hover, .datepicker table tr td.day.focused{
  background-color: #D9CFC4;
}
.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active.disabled:hover[disabled]{
  background: #ffffff;
  color: #000;
}
.datepicker-dropdown.datepicker-orient-top:after{
  border-top: 6px solid #F3ECE6;
}

.inline_calendar_wrapper{
  background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    border-radius: .5rem;
    padding: .875rem .75rem;
}
.inline_calendar_heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.inline_calendar_heading_text{
  font-size: 1rem;
  font-weight: 600;
}
.inline_calendar_arrows{
  display: flex;
  justify-content: space-between;
  width: 3rem;
}
.inline_calendar_arrow{
  cursor: pointer;
}
.inline_calendar_day_date_week{
  text-align: center;
}
.inline_calendar_day{
  margin: 0 0 .5rem 0;
  border-bottom: 1px solid #D1C6BB;
}
.inline_calendar_day_of_week, .inline_calendar_date{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: .5rem 0;
}
.calendar_day{
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem;
}
.calendar_date{
  font-size: .85rem;
  font-weight: 400;
  padding: .5rem;
  cursor: pointer;
}
.calendar_date.calendar_disabled{
  opacity: .5;
  cursor:default;
}
.day.calendar_del{
  background: url(../images/grid_lines.png) #dcd4cc;
  color: #87786B;
  cursor: default;
}
.day.un-avil{
  background: url(../images/grid_lines.png) !important;
  color: #87786B;
  cursor: default;
}
.week_cal_tb .day.un-avil{
  background: url(../images/grid_lines.png) #dcd4cc !important;
  color: #87786B;
  cursor: default;
}
.hour.un-avil{
  background: url(../images/grid_lines.png) #dcd4cc !important;
  color: #87786B;
  cursor: default;
}
.day strike{
  display: none;
}
.day.un_avl strike{
  display: block;
}
.calendar_date.calendar_selected{
  background-color: #FFF6C6;
  border: 1px solid #D1C6BB;
  border-radius: .38rem;
}





/* OWNER APP DASHBOARD */

.profits{
  background-color: #F3EFEB;
  border: 1px solid #D9CFC4;
  border-radius: .6rem;
  margin: 1rem;
}
.profits_wrapper{
  display: flex;
  flex-wrap: wrap;
}
.profit{
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  padding: 1rem;
  position: relative;
}
.profit_wrapper{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profit_label, .charter_label{
  color: #6A5E53;
  font-size: .9rem;
  font-weight: 400;
  text-transform: uppercase;
}
.profit_value, .charter_value{
  font-size: 2.65rem;
  font-weight: 500;
}
.page_right{
  background-color: #DCD4CC;
  width: 356px;
  min-height: 100dvh;
}
.charters_container{
  border-left: 1px solid #D1C6BB;
  flex-grow: 1;
}
.charter_info_container{
  padding: 1rem;
  border-bottom: 1px solid #D1C6BB;
}
.comparison_content{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.charter_label{
  margin-bottom: 1rem;
}
.comparison_info{
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.comparison_info.green{
  color: #298139;
}
.comparison_info.orange{
  color: #D76501;
}
.comparison_info img{
  margin-right: .3rem;
}
.comparison_container> span{
  color: #6A5E53;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.2;
}
.graphic{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 50%;
  height: 70%;
}

.graphic_custom_width {
    width: 65%;
}
.graphic canvas{
  width: 100% !important;
  height: 100% !important;
}



.charter_value_container{
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}

.bid_rate_win_loss_container{
  background-color: #F3EFEB;
  border: 1px solid #D9CFC4;
  border-radius: .6rem;
  margin: 1rem;
  /* overflow: hidden; */
}
.bid_rate_win_loss_wrapper{
  display: flex;
  flex-wrap: wrap;
}
.bid_rate_win_loss_left_side{
  border-right: 1px solid #DCD4CC;
  width: 30%;
}
.bid_rate_win_loss_left_side >div{
  border-bottom: 1px solid #DCD4CC;
}
.bid_rate_win_loss_left_side > div:last-child{
  border-bottom: 0;
}
.bid_rate_win_loss_wrapper .charter_sub_details .charter_sub_details_overlay {
    padding: 1rem;
}
.charter_sub_details_overlay{
  padding:  0 .5rem;
}
.bid_rates_container{
  width: 60%;
  display: flex;
  position: relative;
}
.bid_rates_container .details_arrow{
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.bid_rates_wrapper{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.bid_rates_wrapper .average_bid_value{
  font-size: .9rem;
}
.winning_bid_container{
  padding: 1rem;
}

.winning_bid_label, .average_bid_label{
  color: #6A5E53;
  font-size: .8rem;
  font-weight: 500;
}
.winning_bid_value{
  font-size: 2rem;
  font-weight: 500;
}
.average_bid_value{
  font-size: 1.25rem;
  font-weight: 500;
}
.average_bid_box{
  background-color: #EBE5DF;
  border: 1px solid #D1C6BB;
  border-radius: .3rem;
  font-size: .7rem;
  font-weight: 400;
  line-height: 1.1;
  padding: .3rem;
  width: 170px;
}
.average_bid_rate_container{
  padding: 1rem;
}
.win_loss_average{
  border-left: 1px solid #D1C6BB;
  flex-grow: 1;
}
.small_sub_details .sub_details{
  padding: .3rem;
}
.small_sub_details .sub_details_left, .small_sub_details .sub_details_right{
  font-size: .8rem;
}
.tip_container{
  background-color: #000000;
  color: #ffffff;
  margin: 1rem;
  padding: 1rem;
  border-radius: .5rem;
  position: relative;
}
.tip_label{
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.tip_text{
  font-size: .9rem;
  font-weight: 200;
  padding-right: 2rem;
}
.close_btn{
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.owner_statement_fleet_container{
  margin: 1rem;
}
.map_container{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  height: 100%;
  position: relative;
  min-height: 200px;
}
.fleet_label{
  position: absolute;
  color: #87786B;
  font-size: .9rem;
  font-weight: 500;
  left: .5rem;
  bottom: .5rem;
}
.flight_btn_wrapper{
  padding: 0 1rem 1rem;
}


#rateDetailsPanel {
    display: none;
    transition: max-height 0.3s ease;
    /* overflow: hidden; */
}

    #rateDetailsPanel.show {
        display: block;
    }


/* .calendar-controls{
  margin: 1rem;
} */



/* Download file component */

.file_download_contianer{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: 1rem;
}
.file_download_heading{
  color: #6A5E53;
  font-size: .9rem;
  font-weight: 400;
  text-transform: uppercase;
}
.download_report{
  background-color: #ffffff;
  border-radius: .5rem;
  margin: .5rem 0;
  padding: .8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.download_report_date{
  font-size: .95rem;
  font-weight: 500;
}
.downlod_report_disc{
  color: #87786B;
  font-size: .8rem;
  font-weight: 500;
}
.download_report_icon{
  padding: .5rem;
  width: 40px;
  height: 40px;
  text-align: center;
  opacity: 0;
  transition: all .3s ease-in-out;
}
/* DATE SECTION */
.date_section{
  padding: 1rem;
}
.date_section_heading_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}
.date_section_heading{
  color: #6A5E53;
  font-size: .9rem;
  font-weight: 400;
  text-transform: uppercase;
}
.date_section_heading_wrapper .btn_primary_black{
  padding: .5rem 1rem;
  font-size: .9rem;
}

/* INLINE DATEPICKER */

/* .inline_datepicker_wrapper {
  background-color: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: .8rem;
}
.inline_datepicker_wrapper .table-condensed{
  width: 100%;
  text-align: center;
} */
.inline_datepicker {
    /*font-size: .75rem;*/
}
 .inline_datepicker table{
  width: 100%;
  text-align: center;
 }
 .inline_datepicker table .datepicker-switch{
  text-align: left;
 }
 .inline_datepicker table thead{
  border-bottom: 1px solid #D1C6BB;
 }
 .inline_datepicker table .dow{
  font-weight: 500
 }
 .inline_datepicker table td span, .inline_datepicker .date_box{
  padding: 3px 6px;
  margin: 5px;
 }
  .inline_datepicker table td span{
    width: 22%;
  }
  .inline_datepicker .prev, .inline_datepicker .next{
    width: 10%;
  }
 .inline_datepicker .date_box{
  cursor: pointer;
    border-radius: 6px;
    border: 1px solid transparent;
 }
 
 .inline_datepicker td.active{
  background-color: transparent !important;
 }
 .inline_datepicker td.active .date_box{
  background: #ffffff;
    border: 1px solid #D1C6BB;
 }
 .inline_datepicker .blackout .date_box{
  background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
 }
 .inline_datepicker td.highlighted .date_box{
  background: #FFF6C6;
    border: 1px solid #D1C6BB;
 }
 .inline_datepicker .not_avl .date_box{
        background: url(../images/grid_lines.png) #dcd4cc;
    color: #87786B;
    cursor: default;
    margin: 0;
    border-radius: 0;
 }
 .inline_datepicker .blackOutDay .date_box{
    background: #000000;
    color: #ffffff;
    border-radius: 2px;
 }
  .inline_datepicker .datepicker table tr td.day:hover, .inline_datepicker .datepicker table tr td.day.focused{
    background-color: transparent;
  }
.inline_datepicker .datepicker-months td, .inline_datepicker .datepicker-years td, .inline_datepicker .datepicker-decades td, .inline_datepicker .datepicker-centuries td{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.inline_datepicker .datepicker-switch,
.inline_datepicker .prev,
.inline_datepicker .next{
  padding-bottom: 1rem;
}
.week_cal_tb tr td{
  width: 10%;
}
.week_cal_tb tr td:first-child{
  width: 7%;
}
/* MONTH */

.month_heading_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
  margin: 1rem 0;
  color:#6A5E53;
  font-size: .9rem;
  font-weight: 400;
  text-transform: uppercase;
}

/* Artical */

.article_contianer{
  background-color: #F3EFEB;
  border: 1px solid #D9CFC4;
  border-radius: .6rem;
  margin: 1rem;
  overflow: hidden;
}
.artical_img_wrapper{
  /* width: 40%; */
  position: relative;
}
.artical_img_wrapper img{
  /* width: 100%; */
}
.artical_info_container{
  padding: 1rem;
  display: flex;
  height: 100%;
}
.artical_info_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.artical_title{
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.artical_text{
  font-size: 1rem;
  font-weight: 300;
}



/* Dashboard Appendix pages */

.profits_secondary{
  background-color: #ffffff;
  /* border: 1px solid #ffffff; */
  border-radius: .5rem;
  margin: 1rem;
}

/* Booked Charters */

.booked_charters_wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem;
  gap: .8rem;
}
.price_container{
  background-color: #F3EFEB;
  border: 1px solid #D4CCC4;
  border-radius: .35rem;
  overflow: hidden;
  cursor: pointer;
}
.price_container.active{
  border: 1px solid #A09387;
  box-shadow: 0 4px 8px rgb(160 147 135 / 50%);
}
.pricing_header{
  display: flex;
  background-color: #EBE5DF;
  border-bottom: 1px solid #D1C6BB;
  border-radius: .35rem;
}
.pricing_header_left{
  padding: 1rem;
  border-right: 1px solid #D1C6BB;
}
.aircraft_left_date{
  font-size: .87rem;
  font-weight: 500;
}
.pricing_detail {
    border-bottom: 1px solid #D1C6BB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price_container .sub_details{
  padding: 0 0 .5rem 0;
}
.pricing_header_right{
  padding: 1rem;
}
.route_upper_date{
  font-size: .87rem;
  font-weight: 500;
}
.route{
  font-size: 1.1rem;
  font-weight: 300;
}
.route span{
  font-weight: 500;
}
.flight_times{
  display: flex;
}
.departure_info, .arrival_info{
  display: flex;
  align-items: center;
}
.departure_time, .arrival_time{
  font-size: .9rem;
  margin-left: 5px;
  font-weight: 500;
}
.arrival_info{
  margin-left: 1rem;
}
.charter_details_values_wrapper{
  background-color: #F3EFEB;
  border: 1px solid #D4CCC4;
  border-radius: .35rem;
}


.empty_booked_charter{
  display: none;
}
.empty_booked_charter_wrapper{
  display: flex;
  height: 90vh;
}
.empty_booked_charter_box{
  width: 500px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.empty_booked_charter_wrapper p{
  color: #6A5E53;
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.empty_booked_charter_btns{
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  margin: .8rem 0;
  flex-wrap: wrap;
  align-items: center;
}
.empty_booked_charter_btns a{
  font-size: .875rem;
}

/* Fleet page */


.my_fleet_container{
  padding: 0 1rem;
}
.my_fleet_wrapper{
}
.fleet_list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fleet{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: 6px;
  width: 30%;
}
.fleet.active{
  box-shadow: 0 5px 10px rgba(133, 119, 104, .4);
}
.fleet_image_wrapper{
  padding: 1rem;
}
.fleet_image_wrapper>div{
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.fleet_image_wrapper img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.fleet_btn_wrapper{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .5rem;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.fleet_btn_wrapper .btn_wrapper{
  display: flex;
  justify-content: space-between;
}
.fleet_btn_wrapper .section_btn{
  font-size: .75rem;
}
.fleet_price_wrapper{
  padding: 0 1rem 1rem;
}
.fleet_price_box{
  border: 1px solid #DCD4CC;
  border-radius: 8px;
  padding: .75rem;
}
.owner_statement_contianer{
  margin-top: .5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.win_loss_info{
  width: 48%;
}
.win_loss_label{
  color: #6A5E53;
  font-size: .75rem;
  font-weight: 500;
}
.win_loss_value{
  font-size: 1.125rem;
  font-weight: 500;
}
.badge{
  background-color: #000000;
  font-weight: 500;
  font-size: .75rem;
  padding: .5rem .7rem;
  border-radius: 5px;
}
.badge.green{
  background-color: #D1FAE4;
  border: 1px solid #c2e7d5;
  color: #166E3F;
  border-radius: 25px;
  padding: .3rem .4rem .3rem .2rem;
}
.badge.red{
  background-color: #FCE5E4;
  border: 1px solid #e9d4d5;
  color: #9A1C13;
  border-radius: 25px;
  padding: .3rem .4rem .3rem .2rem;
}


/* Fleet New Reg */

.fleet_horizontal{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: 6px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.fleet_horizontal .fleet_image_wrapper{
  width: 40%;
  padding: 0;
  height: 100%;
}
.fleet_horizontal .fleet_btn_wrapper{
  position: static;
  opacity: 1;
}
.fleet_horizontal_img_box{
  height: 100% !important;
}
.fleet_horizontal_img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet_info_container{
  padding: 1rem;
  flex-grow: 1;
  height: 100%;
}

.model{
  position: absolute;
  top: 0;
  /* right: 0;
  left: 0; */
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1;
  display: none;
}
.model.open{
  display: block;
}
.model_wrapper{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.new_aircraft_overlay_box{
  background-color: #ffffff;
  padding: 1rem;
  border-radius: .5rem;
  width: 95%;
  max-width: 600px;
  max-height: 98vh;
  overflow-y: auto;
  position: relative;
}
.new_aircraft_overlay_box .close_model_btn{
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.model_heading{
  margin-bottom: 1rem;
}
.model_heading_text{
  font-size: 1.125rem;
  font-weight: 700;
}

.drag_box{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DCD4CC;
  border: 1px dashed #A09387;
  border-radius: .5rem;
  height: 200px;
}
.drag_box.active{
  border: 1px solid #A09387;
}
.drag_box_wrapper{
  text-align: center;
}
.drag_box_wrapper .tab_btn{
  text-transform: capitalize;
  color: #000;
}
.model_btn_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.check_box_container{
  margin: 1rem 0;
}
.checkbox_box{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .5rem 0;
}
.check_box_container .check_box_label{
  font-size: 1rem;
  font-weight: 300;
}


/* Schedule Page */

.schedule_top_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 12px;
}
.schedule_top_nav_right {
    display:flex;
  align-items :  center;
  flex-wrap: wrap;
  gap: 5px   
}
.schedule_top_nav_right .btn_primary_black{
  display: inline;
}
.month_calendar_container{
  padding: 0 1rem;
}
.month_calendar{
  border: .5px solid #D1C6BB;
  border-radius: 8px;
  overflow: hidden;
}
.summary-label{
  text-align: center;
  color: #87786B !important;
}
.day.un-avil.maintenance-label{
  text-align: center;
  color: #5278FF;
}
.week_cal_tb .day.un-avil.unavailable{
  text-align: center;
}
.summary-label.booked{
  color: #55A063 !important;
}
.calendar_head, .calendar_day_row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.calendar_cell{
  background-color: #DCD4CC;
  border: .5px solid #D1C6BB;
  padding: .75rem;
  color: #000F1E;
  font-size: 1rem;
  font-weight: 700;
}
.calendar_day_cell{
  border: .5px solid #D1C6BB;
  padding: .5rem 1rem;
}
.calendar_title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.date_number{
  width: 24px;
  height: 24px;
  text-align: center;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  line-height: 1;
  padding: 3px 0;
  font-weight: 700;
}
.date_number.selected{
  background-color: #ffffff;
  border: 1px solid #9E935C;
}
.date_availability{
  padding: 3px 0;
}
.availability{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: .75rem;
  font-weight: 500;
  transition: all .3s ease-in-out;
  height: 100%;
  cursor: pointer;
}
.availability img{
  margin-right: 2px;
}
.avl_all_day{
  color: #87786B;
  text-align: right;
}
.fully_booked{
  color: #55A063;
  position: absolute;
  right: 0;
}
.maintainance_day{
  color: #5278FF;
  position: absolute;
  right: 0;
}
.unavailable_day{
  color: #87786B;
  position: absolute;
  right: 0;
}
.avilability_center .fully_booked, .avilability_center .maintainance_day, .avilability_center .unavailable_day{
  opacity: 1;
  right: 50%;
  transform: translateX(50%);
}
.availability.avl_all_day.hidden{
  position: absolute;
  opacity: 0;
  transform: translateX(-100%);
  right: 100%;
  transition: all .3s ease-in-out;
}
.num_of_event{
  padding: .5rem;
  background: #ffffff;
  border: 1px solid #dcd4cc;
  display: inline flex;
  font-size: .75rem;
  font-weight: 500;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 .3rem;
  cursor: pointer;
}

.current_rate_container{
  flex-grow: 1;
}
.upper-current-rate{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}
.gradient-container{
    width: 70%;
    margin: 0 auto;
}
.upper-current-rate-wrapper {
    position: relative;
    top: 0;
    width: fit-content;
    transform: translateX(-50%);
    transition: all .3s ease;
}
.current_rate_content .comparison_info{
  justify-content: center;
}
.starting_hourly_text{
  font-size: .8125rem;
  font-weight: 400;
  width: 100%;
  margin-bottom: 0.5rem;
}
.starting_hourly_rate{
  padding: 1rem;
  margin-top: 5rem;
}
.current_rate_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
}
.current_rate_label{
  color: #6A5E53;
  font-size: .875rem;
  font-weight: 400;
  text-transform: uppercase;
}
.schedule_tbl_time{
  font-size: .75rem;
  font-weight: 500;
  padding: .1rem .5rem !important;
  width: 10% !important;
}
.schedule_tbl_time span{
  color: #87786B;
}
.hour{
  padding: .1rem .5rem !important;
}


/* Custom Calender */
.calendar_wrapper a{
  color: #000000;
  text-decoration: none;
}
.columnheader{
  padding: 1rem;
}


/* Schedule ovarlay */

.schedule_edit_overlay{
  display: flex;
}
.schedule_edit_overlay_wrapper{
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.schedule_overlay_heading{
  font-size: 1.25rem;
  padding: 1rem;
}
.schedule_overlay_dropdown_wrapper{
  padding: 1rem;
}
.schedule_overlay_dropdown_wrapper .custom_select{
  width: 100%;
  border-radius: .5rem;
  justify-content: center;
}
.schedule_overlay_dropdown_wrapper .custom_select::picker-icon{
  margin-left: 0;
}
.schedule_overlay_dropdown_wrapper .custom_select button{
  gap: 5px;
  width: auto;
}
.schedule_overlay_availability_contianer{
  padding: 1rem;
}
.schedule_overlay_availability_heading{
  opacity: .6;
}
.schedule_overlay_availability{
  display: flex;
  align-items: center;
  gap: .2rem;
}
.schedule_overlay_availability_text{
  font-size: 1rem;
  font-weight: 500;
}
.schedule_overlay_availability_text.un_avl{
  color: #87786B;
}
.schedule_overlay_form{
  padding: 0 1rem;
}
.schedule_timing_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}
.schedule_timing_input_wrapper{
  width: 40%;
}
.schedule_overlay_nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-top: 1px solid #D1C6BB;
}
.schedule_overlay_nav .btn_primary_black, .schedule_overlay_nav .btn_secondary_black{
  margin: 0;
  font-size: .875rem;
}
.schedule_checkbox_wrapper .checkmark{
  border-radius: 50%;
}
.c_btn{
  color: #000000;
  font-size: .875rem;
  background: #F3ECE6;
  border: 1px solid #D1C6BB;
  border-radius: 25px;
  padding: .5625rem 1.125rem;
  text-decoration: none;
  margin: 1rem 0;
  display: block;
}




/* Report page */
.report_details_container{
  padding: 0 1rem;
}

.expenses_revenue_container{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: 1rem;
}
.expenses_revenue_label{
  color: #87786B;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 0;
}
.expenses_revenue_value{
  font-size: 2rem;
  font-weight: 500;
}
.secondary_text{
  color: #4F4F4F;
  font-size: .75rem;
  font-weight: 400;
  margin-bottom: 0;
}



.download_report_list_boxes{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.download_report_box{
  background-color: #ffffff;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: 1rem;
  width: 24%;
  height:230px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.download_report_box_date{
  font-size: 1.375rem;
  font-weight: 500;
}
.download_report_box_info img{
  opacity: .3;
}
.downlod_report_box_disc{
  color: #87786B;
  font-size: .875rem;
  font-weight: 500;
}


/* Report Download pages */

.report_download_container{
  background-color: #F3EFEB;
  border: 1px solid #D1C6BB;
  border-radius: .5rem;
  padding: 1.25rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: .5rem 0;
}

.report_average_bid_rate{
  padding: 1rem;
}
.report_average_bid_rate_container{
  background: #ebe5df;
  border: 1px solid #D1C6BB;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
}
.report_average_bid_rate .average_bid_rate_container{
  width: 50%;
}
.report_average_bid_rate .comparison_container {
  padding: 1rem;
  flex-grow: 1;
}



.fleet_option_wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 0 1rem;
  max-height: 97%;
  overflow-y: auto;
}
.fleet_option{
  background-color: #F3EFEB;
  border: 1px solid #D4CCC4;
  border-radius: .375rem;
}
.fleet_static_btn_wrapper{
  padding: 1rem;
  
}
.fleet_static_btn_wrapper .btn_wrapper{
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
}
.trip_container{
  padding: 1rem;
}
.trip_wrapper{
  background-color: #ffffff;
  border-radius: .5rem;
  padding: 1rem;
  border-left: 2px solid #5278FF;
  display: flex;
}

.contact-model{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 250px;
  height: 200px;
  background: linear-gradient(0deg, #FFF6C6, #EBE5DF 70%);
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  /* border-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%) 1;
  border-width: 1px;
  border-style: solid; */
  border: 1px solid #ffffff;
  border-radius: .625rem;
  z-index: 5;
  padding: 1rem;
}
.contact-model-wrapper{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.contact-model-wrapper p{
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
}
.contact-model-logo{
  max-height: 1rem;
}
.contact-model-btns{
  display: flex;
  align-items: center;
  gap: .5rem;
}
.contact-model-btns .btn_secondary_black{
  margin: 0;
}
.contact-model-close{
  position: absolute;
  top: 1rem;
  right: 1rem;
}


.arraydoprdown_sch_datepicker {
    background: transparent;
    border: 0px;
    outline: none;
    font-weight: 800;
    max-width: 130px;
    text-align: right;
    
}

/* New Aircraft page */
.new_aircraft_form_wrapper{
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 15%;
}
.aircraft_form_info, .aircraft_form_rules{
  width: 30%;
}
.new_aircraft_btn_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 220px;
}

.rating_section_wrapper{
  display: flex;
  flex-wrap: wrap;
}
.rate_type_continer, .rating_right_side{
  width: 50%;
}
.rating_right_side{
  border-left: 1px solid #D1C6BB;
}
.rate_type_continer{
  padding: 2rem;
}
.rate_type_wrapper{
  width: 85%;
}
.rate_type_heading{
  color: #6A5E53;
  font-size: .875rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.rate_nav_btn_container{
  display: flex;
}
.rate_nav_btn_wapper{
/*  border: 1px solid #D1C6BB;*/
  border-radius: .5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}
.rate_nav_tag{
  background-color: #F9F7F5;
  color: #6A5E53;
  padding: .5rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
}
.rate_nav_tag.active{
  background-color: #000000;
  color: #ffffff;
}
.rate_nav_icon{
  display: none;
}
.rate_nav_tag.active .rate_nav_icon{
  display: block;
}
.means{
  display: flex;
  align-items: center;
  gap: .2rem;
  color: #87786B;
}
.means img{
  opacity: .4;
}
#togglePassword{
  min-width: 46px;
}




/*  New Rate cal */
.new-body-Rate-cal {
    font-family: Arial, sans-serif;
    background: #f6f1eb;
    text-align: center;
    padding: 40px;
}


.stats {
    color: #ff7a00;
    font-size: 14px;
    margin-bottom: 20px;
}

    .stats div {
        margin: 4px 0;
    }


.bar-container {
    width: 40px;
    height: 200px;
    margin: 0 auto 25px;
    background: linear-gradient(to top, #f2c29b, #fff);
    border-radius: 4px;
}


.slider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.label {
    font-size: 12px;
    color: #666;
    width: 40px;
}


.slider-wrapper {
    width: 420px;
    position: relative;
}

input[type=range] {
    width: 100%;
}


.ticks {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 8px;
}


.arrow {
    margin-top: 6px;
    height: 18px;
    position: relative;
}

    .arrow span {
        position: absolute;
        color: darkgoldenrod;
        font-size: 18px;
        transform: translateX(-50%);
    }


#reviewEmail {
    max-width: 60%;
    word-wrap: break-word;
}
@media screen and (min-width: 1024px) {
  .download_report:hover .download_report_icon, .fleet:hover .fleet_btn_wrapper, 
  .download_report_box:hover .download_report_icon{
    opacity: 1;
  }
  .date_availability:hover .avl_all_day{
    -webkit-filter: brightness(0);
    filter: brightness(0);
    text-decoration: underline;
    transform: translateX(0);
    opacity: 1;
    height: auto;
  }
  .date_availability:hover .un_avl{
    transform: translateX(50%);
    opacity: 0;
    height: 0;
  }
  .custom_select option:hover{
    background-color: #ffffff;
  }
  .fleet:hover{
    box-shadow: 0 5px 10px rgba(133, 119, 104, .4);
  }
}
@media screen and (max-width:1600px) {
  .bids_left_side{
    width: 25%;
  }
  .bids_right_side{
    width: 75%;
  }
    /*.page_right{
    width: 520px;
  }*/
}
@media screen and (max-width:1465px) {
  .bids_left_side{
    width: 40%;
  }
  .bids_option_wrapper{
    grid-template-columns: 1fr 1fr;
  }
  .bids_right_side{
    width: 60%;
  }
}
@media screen and (max-width: 1366px) {
  .table_wrapper table{
    font-size: 14px;
  }
   .page_right {
    width: 320px;
  } 
    .dashboard_zoom_level {
        zoom: 64%;
    }
  .inline_calendar_wrapper td{
    font-size: .75rem;
  }
}
@media screen and (max-width:1280px) {
  
  .bids_left_side{
    width: 30%;
  }
  .bids_right_side{
    width: 70%;
  }
  .main_page{
    /* flex-direction: column; */
    width: calc(100vw - 235px);
  }
  .page_right {
    /* width: 100%; */
  }
  .fleet{
    width: 48%;
  }
  .download_report_box{
    width: 48%;
  }
  .profit, .bid_rates_container{
    width: 100%;
  }
  .charters_container, .win_loss_average{
    border-left: 0;
  }
  .rate_type_wrapper{
    width: 100%;
  }
  .calendar-body table{
    font-size: .75rem;
  }
}
@media screen and (max-width:1200px) {
  .file_download_contianer{
    margin: 1rem 0;
  }
  .date_section_heading_wrapper .btn_primary_black{
    font-size: .75rem;
  }
  .date_section_heading{
    font-size: .875rem;
  }
    .calendar-body{
      width: 100%;
      overflow-x: auto;
    }
    .calendar-body table{
      width: 130%;
    }
    .calendar-body .row {
      margin: 0;
    }
}
@media screen and (max-width:1127px) {
  .bids_left_side{
    width: 50%;
  }

  .bids_option_wrapper, .fleet_option_wrapper{
    grid-template-columns: 1fr;
  }
  .bids_right_side{
    width: 50%;
  }
  .booked_charters_wrapper{
    grid-template-columns: 1fr 1fr;
  }
  .rate_type_continer, .rating_right_side{
    width: 100%;
  }
  .current_rate_container{
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .table_wrapper table{
    font-size: 12px;
  }
  .fleet_btn_wrapper{
    opacity: 1;
  }
  .bid_rate_win_loss_left_side{
    width: 100%;
    border-right: 0;
  }
    .calendar-body table{
      width: 160%;
    }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
    .login-page{
        flex-direction: column-reverse;
    }
    .login_right_side{
        height: 300px;
        width: 100%;
        background-position:center;
    }
    .legal{
        display: none;
    }
    .login_left_side_wrapper{
        margin-top: 1rem;
    }

    .legal_device{
        display: block;
    }
}
@media screen and (max-width: 1024px) and (orientation: portrait), screen and (max-width: 1000px) {
  
  .body_wrapper{
    flex-wrap: wrap;
  }
  .main_page{
    flex-direction: column;
    width: calc(100vw - 235px);
  }
  .page_right {
    margin-top: 1rem;
    width: 100%;
    min-height: auto;
  }
  .download_report_icon{
    opacity: 1;
  }
    .calendar-body{
      width: 100%;
      overflow-x: auto;
    }
    .login-page {
        flex-direction: column-reverse;
    }

    .login_right_side {
        height: 300px;
        width: 100%;
        background-position: center;
    }

    .legal {
        display: none;
    }
    .calendar-body table{
      width: 200%;
    }
    .calendar-body .row {
      margin: 0;
    }
    .login_left_side_wrapper {
        margin-top: 0;
    }
    .legal_device{
        display: block;
    }
}

.profit_wrapper_flex_row {
    flex-direction: row;
    flex-wrap: wrap;
    width: 60%;
}

    .profit_wrapper_flex_row > div {
        width : 50%;
    }


    .dashboard_zoom_level{
        zoom: 80%;
    }

.tripDateClass {
    background-color: #ffc107 !important; /* yellow = trip */
    color: #000 !important;
    border-radius: 50%;
}






@media screen and (max-width: 1024px) and (min-width:1000px) and (orientation: portrait) {
    .page_right {
    margin-top: 1rem;
    width: calc(100vw - 220px);
    min-height: auto;
    margin-left: 220px;
  }
}
@media screen and (max-width: 992px) {
  .main_page{
    margin-left: 0;
    flex-wrap: wrap;
    width: 100%;
  }
    .login_box{
        width: 100%;
        padding: 1rem;
    }
    .login_fh_logo{
        margin: 0 0 1rem;
    }
    .page_main_content{
      padding-top: 3rem;
      width: 100%;
    }
    .nav-container{
      position: fixed;
      left: -220px;
      padding-top: 3rem;
    }
    .customer_info_form, .trip_request_form{
      width: 100%;
    }
    #navIcon{
      display: block;
    }
    .table_wrapper{
      overflow-x: auto;
    }
    .table_wrapper table{
      width: 200%;
    }
    .flight_details_heading{
      flex-direction: column;
      align-items: center;
    }
    .flight_details_heading >div:last-child{
      display: flex;
      justify-content: space-between;
      margin: 1rem 0;
    }
    .search_box{
      min-width: auto;
      width: 50%;
      max-width: 100%;
    }
    .search_box label img{
      max-width: none;
    }
    .form_wrapper{
      margin-top: 0;
    }
    .flight_bottom_nav{
      position: fixed;
      bottom: 0;
      flex-direction: column-reverse;
      padding: .5rem;
    }
    .bottom_nav_left{
      margin: 1rem 0;
    }
    .bids_left_side, .bids_right_side{
      width: 100%;
    }
    .bids_option_wrapper, .fleet_option_wrapper{
      margin-left: 0;
    }
    .content_body{
      height: 100%;
    }
    .create_flight_content{
      padding-bottom: 10rem;
    }
    .bids_left_side_wrapper, .bids_option_wrapper, .fleet_option_wrapper{
      max-height: 100%;
    }
    .current_month_year{
      margin: .5rem 0;
    }
    .booked_charters_wrapper{
      grid-template-columns: 1fr;
    }
    .fleet_horizontal .fleet_image_wrapper{
      width: 100%;
      height: auto;
    }
    .aircraft_form_info, .aircraft_form_rules{
      width: 100%;
      margin-bottom: 4rem;
    }
    .new_aircraft_btn_wrapper, .flight_bottom_nav{
      left: 0;
    }
    .calendar-body table{
      width: 185%;
    }
    .year_tbl{
      width: 125% !important;
    }
}
@media screen and (max-width: 768px) {
  .fleet{
    width: 100%;
  }
    .calendar-body table{
      width: 300%;
      font-size: .75rem;
      margin-bottom: 0;
    }
    .report_details_right{
      margin-top: 1rem;
    }
    .profit_wrapper{
      width: 100%;
    }
    .bid_rates_container{
      flex-wrap: wrap;
    }
    .bid_rates_wrapper{
      width: 100%;
    }
    .graphic{
      position: static;
      width: 100%;
      justify-content: center;
      height: auto;
    }
}
@media screen and (max-width:500px){
  .success_section_wrapper{
    width: 100%;
  }
  .success_btns, .btn_wrapper{
    margin: .5rem 0;
  }
  .search_box{
    width: auto;
  }
    .calendar-body table{
      width: 540%;
    }
    .schedule_top_nav_right .btn_primary_black{
      display: inline-block;
    }
    .profit_wrapper{
      width: 100%;
    }
    .graphic{
      position: static;
      width: 100%;
      justify-content: center;
    }
    .pricing_detail, .pricing_header{
      flex-direction: column;
      align-items: flex-start;
    }
    .pricing_header >div:first-child{
      width: 100%;
      border-right: 0;
      padding-bottom: 0;
    }
}
@media screen and (max-width:400px) {
  .aircarft_details_overlay{
    width: 100%;
  }
  #tripRequestSection .nav-link{
    padding: .5rem;
  }
  .datepicker.dropdown-menu th, .datepicker.datepicker-inline th, .datepicker.dropdown-menu td, .datepicker.datepicker-inline td{
    padding: 0 !important;
  }
  .comparison_container> span{
    font-size: .75rem;
  }
  .download_report_box{
    width: 100%;
  }

 
}