*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Outfit", sans-serif;
    background: #EBE5DF;

}
a{
    text-decoration: none;
    color: inherit;
}
.c-pointer{
    cursor: pointer;
}
li{
    list-style: none;
}

.loginLink {
    font-size: 2rem;
    color: blue;
}
.noRequest_mq {
    background: #ebe5df;
    padding: 1.125rem;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 1rem 0;
    border: 1px solid #d1c6bb;
    border-radius: 8px;
}
.wrapper{
    position: relative;
    min-height: 100dvh;
    padding-bottom: 5rem;
}


.modalCommon {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1;
    background: rgb(235 229 223 / 80%);
}

.modelcontentNew {
    /* width: 200px !important;
  top: 52% !important;
  background-color: #1c1b1b !important; */
}

.yesnobtn {
    padding: 2px 8px;
    border-radius: 5px;
    margin: 0px 10px;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f3efeb;
    padding: 10px;
    width: 40%;
    border-radius: 5px;
    text-align: center;
    /* box-shadow: -2px 1px 26px 5px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: -2px 1px 26px 5px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: -2px 1px 26px 5px rgba(0, 0, 0, 0.35); */
    border: 1px solid #dcd4cc;
}

.close-button {
    position: absolute;
    right: 5px;
    top: 5px;
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: #000;
}

    .close-button:hover {
        background-color: darkgray;
    }

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.show-model-text {
    padding: 10px;
    font-size: 22px;
}

.show-model-text1 {
    padding: 10px;
    font-size: 16px;
    /* color: #d3d3d3; */
}


/* 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;
    pointer-events: none;
    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);
}

.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;
}

/* Login page */

.splash__top{
    background: url(../images/splash_img.png) no-repeat center center;
    background-size: contain;
    min-height: 100dvh;
}
.top__icon{
    padding: 2rem;
}
.splash__bottom{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.splash__content{
    padding-inline: 2rem;
}
.splash__content h2{
    margin-bottom: 1rem;
}
.splash__content .form-control{
    background: #f3ece6;
    border: 1px solid #d1c6bb;
    padding: 1rem;
    font-size: 1.25rem;
}
.splash__content .form-control:focus{
    box-shadow: none;
}
.signin-continue-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    gap: 1rem;
    width: 100%;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    transition: all .3s ease-in-out;
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}
.error-msg{
    color: #E95858;
    font-size: 1rem;
    font-weight: 500;
    display: none;
}

.copyright{
    color: #87786B;
    font-size: .875rem;
    font-weight: 500;
    padding: 2rem;
    text-align: center;

}

/* Landing page */

.main_logo{
    padding: 1rem;
    width: 250px;
}

.page-container{
    display: flex;
}
.main-content-wrapper{
    position: relative;
    height: 100%;
    min-height: calc(100vh - 120px);
    max-width: 1650px;
    margin: 0 auto;
}
.main-content-bottom{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Navbar */

.nav-container{
    max-width: 280px;
    min-width: 280px;
    padding: 1rem .5rem;
}

.user-info{
    margin-bottom: 1rem;
}
.user-profile{
    width: 130px;
    margin-bottom: .5rem;
}

.user-name{
    color: #87786B;
    font-size: .875rem;
    font-weight: 400;
}
.navbar{
    gap: 5px;
}

.heading-nav{
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #dcd4cc;
    background: #dcd4cc;
    width: 100%;
    padding: .5rem .5rem .5rem 0;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
}

.nav_icon{
    width: 45px;
    min-height: 40px;
    background-repeat: no-repeat;
}
.nav_icon_img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home_nav_icon{
    background: url(../images/home.svg) no-repeat center center;
    background-size: 50% auto;
}
.bid_nav_icon{
    background-image: url(../images/bids.svg);
    background-size: auto 80%;
    background-position: center center;
}
.booked_trip_nav_icon{
    background-image: url(../images/booked_trip.svg);
    background-size: 80% auto;
    background-position: center center;
}
.my_aircraft_nav_icon{
    background: url(../images/my_aircraft.svg) no-repeat center center;
    background-size: 80% auto;
}
.report_nav_icon{
    background: url(../images/report.svg) no-repeat center center;
    background-size: auto 80%;
    background-position: center center;
}
.profile_nav_icon{
    background-image: url(../images/profile.svg);
    background-size: auto 60%;
    background-position: center center;
}
.list_pilots_nav_icon{
    background-image: url(../images/pilot.svg);
    background-size: auto 80%;
    background-position: center center;
}
.cabin_attendants_nav_icon{
    background-image: url(../images/cabin_attendant.svg);
    background-size: auto 80%;
    background-position: center center;
}
.document_compliance_nav_icon{
    background: url(../images/DocumentCompliance_icon.png) no-repeat center center;
    background-size: auto 80%;
    background-position: center center;
}
.setting_nav_icon{
    background: url(../images/setting.svg) no-repeat center center;
    background-size: auto 70%;
}
.signout_nav_icon{
    background: url(../images/signout_icon.png) no-repeat center center;
}
.sub-nav{
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #f3efeb;
    background: #f3efeb;
    width: 100%;
    padding: .5rem 1rem;
    border-radius: 10px;
    font-weight: 400;
}
.sub-nav-cicle{
    height: .75rem;
    width: .75rem;
    background: #D1C6BB;
    border-radius: 50%;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.heading-nav.active{
    border: 1px solid #A09387;
}
.sub-nav.active{
    border: 1px solid #A09387;
}
.sub-nav.active .sub-nav-cicle{
    opacity: 1;
}
.main-content{
    flex-grow: 1;
    padding: 1rem 3rem;
}
.main-content-body{
    padding-bottom: 85px;
}
.main-content-heading h3{
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.dashboard-info {
    background: #f9f7f5;
    border-radius: 6px;
}
.dashboard-heading{
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid #D1C6BB;
    padding: .75rem 1rem;
}
.dashboard-values{
    font-weight: 500;
    border-bottom: 1px solid #D1C6BB;
    padding: .75rem 1rem;
}
.dashboard-list{
    font-weight: 500;
    padding: .75rem 1rem;
}
.dashboard-list ul{
    padding: 0;
    margin: 0;
}
.dashboard-list ul li{
    list-style: none;
    margin-bottom: .5rem;
}
.dashboard-list ul li:last-child{
    margin-bottom: 0;
}

/* Prior Bid page */

.form-label{
    font-size: 1rem;
}
.form-select, .form-control {
    background-color: #f3ece6;
    border: 1px solid #d1c6bb;
    padding: .5rem 1rem;
}
.form-select:focus, .form-control:focus{
    background-color: #f3ece6;
    box-shadow: none;
    border: 1px solid #000000;
}
.form-check-input:focus{
    box-shadow: none;
    border: 1px solid #000000;
}
.form-select{
    min-width: 100px;
    padding-right: 2rem;
}
.form-check-label{
    cursor: pointer;
}
input.form-check-input[type="radio"] {
  /* Hide the default radio button */
  appearance: none;
  -webkit-appearance: none; /* For older browser compatibility */
  
  /* Define custom styles for the unchecked state (outer circle) */
  width: 19px;
  height: 19px;
  border: 1px solid #A09387; 
  border-radius: 50%;
  outline: none; /* Optional: remove default focus outline */
  cursor: pointer;
  display: grid;
  place-content: center; /* Centers the inner dot */
  background: #F9F7F5;
  position: relative;
}

input.form-check-input[type="radio"]::before {
  /* Create the inner dot using a pseudo-element */
  content: "";
  /* font-family: 'Font Awesome 7 free'; */
  width: 20px; /* Size of the inner dot */
  height: 20px;
  text-align: center;
  align-content: center;
  border-radius: 50%;
  transform: scale(0) translate(-50%, -50%); /* Hide the dot when unchecked */
  transition: 120ms transform ease-in-out; /* Add a smooth transition */
  background-color: #55A063; /* Color of the inner dot */
  color: #ffffff;
  font-size: .875rem;
  position: absolute;
  top: 50%;
  left: 50%;

}

input.form-check-input[type="radio"]:checked::before {
  /* Show the dot when checked */
  transform: scale(1) translate(-50%, -50%);
}
input.form-check-input[type="radio"]::after {
  content: '';
  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);
  transition: 120ms transform ease-in-out; /* Add a smooth transition */
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  position: absolute;
  top: 47%;
  left: 28%;
}

input.form-check-input[type="radio"]:checked::after {
  /* Show the dot when checked */
  transform:  rotate(45deg) scale(1) translate(-50%, -50%);
}

input.form-check-input[type="radio"]:focus {
  /* Add a focus state for accessibility */
}

textarea.form-control{
    /* resize: none; */
}
input[type="checkbox"]{
    height: .875rem;
    width: .875rem;
    cursor: pointer;
}
.btn{
    padding: .5rem 1.125rem;
    border-radius: 50px;
    min-width: 140px;
    transition: all .3s ease-in-out;
    word-spacing: 4px;
}
.btn.white{
    background: #ffffff;
    border: 1px solid #ffffff;
}
.btn.white:focus{
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff
}
.btn.black{
    background: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}
.btn.black:focus{
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000
}

.btn.red{
    background: #E95858;
    border: 1px solid #E95858;
    color: #ffffff;
    min-width: auto;
}

/* Table */
.table-heading h4{
    font-size: 1rem;
    border-left: 3px solid #000000;
    padding-left: .5rem;
}
.table-wrapper{
    overflow-x: auto;
    max-width: calc(100vw - 400px);
    margin: 0 auto 2rem;
}
.table-wrapper table{
    min-width: 100%;
    white-space: nowrap;
    margin-bottom: 10px;
}
.table-wrapper th{
    background: #dcd4cc;
}
.table-wrapper th, .table-wrapper td{
    padding: .75rem;
    padding-left: 1.375rem;
}

/* Setting page */
.setting-wrapper{
    width: 80%;
    /* margin: 0 auto; */
}
.profile-img-box{
    width: 250px;
    margin: 0 auto;
}
.setting-form h4{
    font-size: 1rem;
}

/* Profile page */

.lblError {
    color: #E95858;
}
.currentBidHeadingLive{
    color: #E95858;
}

h1 {
    text-align: center;
}

h2 {
    margin: 0;
}

#multi-step-form-container {
    margin-top: 5rem;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pl-0 {
    padding-left: 0;
}


.mt-3 {
    margin-top: 2rem;
}

.d-none {
    display: none;
}

.hidePassanger {
    display: none;
}
.showPassanger {
  
}

.form-step {
    background: #f3efeb;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1rem;
}
.form-step h4{
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.form-step h5{
    font-size: 1rem;
    background: #dcd4cc;
    padding: .5rem 1rem;
}
.font-normal {
    font-weight: normal;
}

ul.form-stepper {
    counter-reset: section;
    margin-bottom: 3rem;
}

    ul.form-stepper .form-stepper-circle {
        position: relative;
    }

        ul.form-stepper .form-stepper-circle span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);
            color: #000;
        }

.error {
    color: red;
}

.form-stepper-horizontal {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

ul.form-stepper > li:not(:last-of-type) {
    margin-bottom: 0.625rem;
    -webkit-transition: margin-bottom 0.4s;
    -o-transition: margin-bottom 0.4s;
    transition: margin-bottom 0.4s;
}

.form-stepper-horizontal > li:not(:last-of-type) {
    margin-bottom: 0 !important;
}

.form-stepper-horizontal li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    max-width: 28%;
}

    .form-stepper-horizontal li:not(:last-child):after {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 1px;
        content: "";
        top: 32%;
    }

    .form-stepper-horizontal li:after {
        background-color: #dcd4cc;
    }

    .form-stepper-horizontal li.form-stepper-completed:after {
        background-color: #6a5e53;
    }

    .form-stepper-horizontal li:last-child {
        flex: unset;
    }

/* .chosen-container {
    width: 50% !important;
} */

ul.form-stepper li a .form-stepper-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 0;
    line-height: 1.7rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    border-radius: 50%;
}

.form-stepper .form-stepper-active .form-stepper-circle {
    background-color: #ffffff !important;
    color: #000;
}

.form-stepper .form-stepper-active .label {
    color: #000000 !important;
}

.form-stepper .form-stepper-active .form-stepper-circle:hover {
    background-color: #ffffff !important;
    color: #ffffff !important;
}

.form-stepper .form-stepper-unfinished .form-stepper-circle {
    background-color: #f3efeb;
    border: 1px solid #dcd4cc;
}

.form-stepper .form-stepper-completed .form-stepper-circle {
    background-color: #ffffff !important;
    color: #000;
}

.form-stepper .form-stepper-completed .label {
    color: #000000 !important;
}

.form-stepper .form-stepper-completed .form-stepper-circle:hover {
    background-color: #ffffff !important;
    color: #000 !important;
}

.form-stepper .form-stepper-active span.text-muted {
    color: #000f !important;
}

.form-stepper .form-stepper-completed span.text-muted {
    color: #000 !important;
}

.form-stepper .label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #000 !important;
}

.form-stepper a {
    cursor: default;
}

.FBForm33 {
    width: 33.33%;
    float: left;
}

.form-stepper-list a {
    cursor: default !important;
}
.hidebtn{
    display:none;
}
.dropdown .dropdown-toggle, .dropdown .dropdown-menu {
    text-align: left;
    background: #f3ece6;
    border: 1px solid #D1C6BB;
    color: #000000 !important;
    border-radius: 6px;
    padding: .5rem 1rem;
}
.select-input .dropdown-toggle, .select-input .dropdown-menu{
    min-width: 70px;
    padding: .5rem;
}
.dropdown .dropdown-menu{
    max-height: 200px;
    overflow-y: auto;
}
.dropdown .dropdown-menu{
    background: #f3ece6;
    border: 1px solid #D1C6BB;
    padding: 0;
}
.dropdown-item:focus, .dropdown-item:hover{
    background: #dcd4cc;
}
.dropdown-toggle::after{
    border-top: .3em solid #000000
}
.grid_view_heading{
    text-align: center;
    border-bottom: 1px solid #D1C6BB;
    margin-bottom: 1rem;
}
.grid_view_heading h4{
    font-size: 1.125rem;
}
.device-view{
    display: none;
}

/* Select 2 dropdown css */

.select2.select2-container{
    background: #f3ece6;
    border: 1px solid #D1C6BB;
    border-radius: 6px;
    padding: .5rem 1rem;
    width: 100% !important;
} 
.select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single{
    padding: 0;
    border: 0 !important;
    background-color: transparent !important;
    color: #000 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 50% !important;
    transform: translateY(-50%);
}
select:disabled + .select2.select2-container .select2-selection__arrow{
    display: none;
}
.select2-search--dropdown{
    background: #f3ece6;
    border: 1px solid #D1C6BB;
    padding: .5rem 1rem;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    outline: none;
}
.select2-results{
    background: #f3ece6;
    border: 1px solid #D1C6BB;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable, .select2-container--default .select2-results__option--selected{
    background-color: #dcd4cc !important;
    color: #000 !important;
}
.select2-results__option.select2-results__message{
    padding: .5rem 1rem;
}
.select2-container--default .select2-selection--multiple{
    background-color: transparent;
    border-color: transparent;
}
.select2-selection__choice{
    background-color: #dcd4cc !important;
}


/* Bid info */

.fy_bidOuterWrapper{
    border:1px solid #d1c6bb;
    border-radius: 15px;
    padding: .5rem;
    background: #f3efeb;
    margin-bottom: 1rem;
}
.fy_bidOuterWrapperTop_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 0 .5rem;
    gap: 1rem;
}
.fy_bidCountdownDate{
    font-size: .875rem;
    text-align: left;
    font-weight: bold;
    /* display: flex;
    gap: .5rem; */
}
.chaterMainMultipeBox{
    border: #dcd4cc 1px solid;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.charter_main_width{
    text-align: center;
    padding: 10px 0;
}
.charter_dep_icon{
    width: 4%;
    text-align: center;
}
.charter_title{
    font-size: 1.25rem;
    font-weight: 500;
}
.charter_details{
    color: #3a3a3a;
    line-height: normal;
    font-size: 1rem;
}
.charter_pax_main, .charter_ete_main{
    font-size: 1rem;
}
.tooltipETE{
    position: relative;
}
.tooltiptextETE{
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #ebe5df;
    padding: .5rem;
    border-radius: 6px;
    transition: all .3s ease-in-out;
    display: none;
}
.tooltiptextETE::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border-top:5px solid #ebe5df;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-bottom:5px solid transparent;
    z-index: 1;
    transform: translateX(-50%);
}
.tooltipETE:hover .tooltiptextETE{
    display: block;
}
.quote_btn_wrapper{
    width: 170px;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.quote_box{
    text-align: center;
    padding: 1rem 0;
}
.quote_btn_wrapper .btn{
    padding: .5rem;
    font-size: .875rem;
    min-width: auto;
}

/* .update_btn_wrapper{
    width: 44%;
} */




.grid_view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.grid_view_item {
    background: #f3ece6;
    padding: .5rem;
    border-radius: 8px;
    border: 1px solid #d1c6bb;
}
.grid_view_jet_info {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.grid_view_yom_yor, .grid_view_info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.grid_view_yor, .grid_view_info_right {
    text-align: right;
}
.IsWiningTR_1{
    background-color: #55A063 !important;
    color: #ffffff;
}
.IsWiningTR_0{
    background-color: #87786B !important;
    color: #ffffff;
}


.ExpiredTR {
    background-color: #6c757d !important;
    color: #ffffff;
}


.Expiry-Bid {
    background-color: #6c757d !important;
}
.dateNotification {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.dateNotificationItem{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem;
}
.NotificationDot{
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}
.NotificationDot.trip{
    background-color: #55A063;
}
.NotificationDot.maintenance-date{
    background-color: #E9920C;
}
.NotificationDot.blackout-date{
    background-color: #000000;
}





.nav-pills .nav-link{
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    color: #000000;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #D9CFC4;
    color: #000000;
}




/*Datepicker*/

.datetimepicker {
    position: absolute;
    border: 1px solid #D9CFC4;
    background: #f3ece6;
    color: #000000;
}

    .datetimepicker table tr td,
    .datetimepicker table tr th,
    .datetimepicker-minutes table tr th,
    .datetimepicker-hours table tr th,
    .datetimepicker table tr td,
    .datetimepicker-minutes table tr td,
    .datetimepicker-hours table tr td,
    .datetimepicker table tr td span,
    .datetimepicker-minutes table tr td span,
    .datetimepicker-hours table tr td span {
        text-align: center;
        width: 45px;
        height: 45px;
        border-radius: 4px;
        border: none;
        border: 5px solid #f3ece6 !important;
        color: #000000;
        text-align: center;
        align-content: center;
        padding: .2rem;
    }

    .datetimepicker .datetimepicker-hours span,
    .datetimepicker .datetimepicker-minutes span, 
    .datetimepicker .datetimepicker-months span, 
    .datetimepicker .datetimepicker-years span {
        line-height: 26px;
        width: 23%;
        height: 40px;
        text-align: center;
        align-content: center;
    }

    .datetimepicker table tr td span
    .datetimepicker thead tr:first-child th, .datetimepicker tfoot th,
    .datetimepicker table tr td.day {
        /* color: #fff !important; */
        cursor: pointer;
    }

        .datetimepicker table tr td span:hover,
        .datetimepicker thead tr:first-child th:hover, .datetimepicker tfoot th:hover,
        .datetimepicker table tr td.day:hover {
            background: #ffffff !important;
            color: #000 !important;
            cursor: pointer;
        }

        .datetimepicker table tr td.active:active, .datetimepicker table tr td.active:hover:active, .datetimepicker table tr td.active.disabled:active, .datetimepicker table tr td.active.disabled:hover:active, .datetimepicker table tr td.active.active, .datetimepicker table tr td.active:hover.active, .datetimepicker table tr td.active.disabled.active, .datetimepicker table tr td.active.disabled:hover.active{
            background: #ffffff;
            color: #000000;
        }
        .datetimepicker table tr th.next, .datetimepicker table tr th.prev, .datetimepicker table tr th.switch{
            background: #dcd4cc;
        }
.datetimepicker table tr td span.active:active, .datetimepicker table tr td span.active:hover:active, .datetimepicker table tr td span.active.disabled:active, .datetimepicker table tr td span.active.disabled:hover:active, .datetimepicker table tr td span.active.active, .datetimepicker table tr td span.active:hover.active, .datetimepicker table tr td span.active.disabled.active, .datetimepicker table tr td span.active.disabled:hover.active{
    background: #ffffff;
    color: #000;
}
.datetimepicker-hours table tr td, .datetimepicker-minutes table tr td, .datetimepicker-months table tr td, .datetimepicker-years table tr td{
    width: 300px;
}
/*.datetimepicker thead tr:first-child th:hover, .datetimepicker tfoot th:hover {
                    background: #eee;
                }*/

.datepicker-dropdown{
    background: #f3ece6;
}

.editImg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    cursor: pointer;
    object-fit: contain;
}
.editImgPlus, .editImgMinus {
    height: auto;
    margin-right: 0;
}
.TrDisabled{
    background-color: #d4c4b6;
}

/* Overlay */
.page-overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(235 229 223 / 80%);
}
.page-overlay-wrapper{
    width: 80%;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    align-content: center;
}
.page-overlay-box{
    background: #f3efeb;
    border: 1px solid #D1C6BB;
    padding: 1rem;
    border-radius: 6px;
    max-height: 90vh;
    overflow-y: auto;
}
.page-overlay-heading{
    display: flex;
    justify-content: end;
}
.page-overlay-close-btn{
    min-width: auto;
}

.admin-pannel{
    display: flex;
    flex-wrap: wrap;
}
.admin-detils{
    width: 25%;
    font-size: .875rem;
    padding: .5rem;
    background: #ebe5df;
}
.adminACSub{
    margin-bottom: 0.2rem;
}

/* Pagenation css */

.page-link{
    background-color: #f3ece6;
    border: 1px solid #d1c6bb;
    color: inherit;
    transition: all .3s ease-in-out;
}
.active>.page-link, .page-link.active{
    background-color: #F9F7F5;
    border: 1px solid #000000;
    color: #000000;
}
.disabled>.page-link, .page-link.disabled{
    background-color: #dcd4cc;
}
.page-link:focus{
    box-shadow: none;
    background-color: #f3ece6;
    border: 1px solid #d1c6bb;
    color: inherit;
}
.form-box-wrapper{
    background: #f3efeb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 3rem;
}
.aircraft-image{
    padding: .5rem;
    border: 1px solid #4a4a4a;
    display: inline-block;
    margin: .5rem;
}
.aircraft-image-wrapper{
    width: 200px;
    height: 150px;
    overflow: hidden;
    text-align: center;
    background: #ededed;
}
.forminputPageDiv{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    gap: 1rem;
}




.offer-end-msg {
    background-color: #f3efeb;
    border: 1px solid #D1C6BB;
    padding: 1rem;
    margin-bottom: 1rem;
}

    .offer-end-msg p {
        margin-bottom: 0;
    }

.request_heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.request_sub_box {
    padding: .5rem;
    background-color: #dcd4cc;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 6px;
}

.bid_requst_content {
    border: 1px solid #dcd4cc;
    background: #f3efeb;
    border-radius: 6px;
    padding: 1rem;
}

.current_bid_base_pricing_top {
    padding: 1rem 0;
    text-align: right;
}

    .current_bid_base_pricing_top .closebtn {
        min-width: auto;
    }

.current_bid_box {
    border: 2px solid #D1C6BB;
    border-radius: 6px;
    margin-bottom: 1rem;
}

    .current_bid_box.winning {
        border: 2px solid #55A063;
    }

    .current_bid_box.waiting {
        border: 2px solid #E9920C;
    }

    .current_bid_box.loosing {
        border: 2px solid #E95858;
    }

.win_notwin_box {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.winning .win_notwin_box {
    background-color: #55A063;
    color: #ffffff;
}

.waiting .win_notwin_box {
    background-color: #E9920C;
    color: #ffffff;
}

.loosing .win_notwin_box {
    background-color: #E95858;
    color: #ffffff;
}

.win_notwin_value {
    font-weight: 600;
}

.current_bid_content {
    padding: 1rem;
}

.current_bid_offer_amount_box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.flight_schedule_wrapper .table-wrapper {
    max-width: calc(100vw - 470px);
}


.popover.bottom {
    margin-top: 10px;
}

.fade.in {
    opacity: 1;
}

.popover {
    position: absolute;
    top: 100% !important;
    left: 50% !important;
    z-index: 1060;
    display: none;
    width: auto;
    padding: 0;
    text-align: left;
    white-space: normal;
    background-color: #F9F7F5;
    background-clip: padding-box;
    /* border: #ccc solid 1px; */
    /* border: rgb(0, 0, 0, 0.2) solid 1px; */
    border-radius: 6px;
}

    .popover.bottom > .arrow {
        top: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-width: 0;
        border-bottom-color: #999;
        border-bottom-color: rgb(0, 0, 0, 0.25);
    }

    .popover > .arrow {
        border-width: 11px;
    }

        .popover > .arrow, .popover > .arrow:after {
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            border-color: transparent;
            border-style: solid;
        }

    .popover.bottom > .arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: #fff;
    }

    .popover > .arrow:after {
        content: "";
        border-width: 10px;
    }

    .popover > .arrow, .popover > .arrow:after {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }

:before, :after {
    box-sizing: border-box;
}

.popover-content {
    padding: 9px 9px;
    text-align: center;
    font-size: 16px;
    text-align: left;
    width: 250px;
    border: #D1C6BB solid 1px;
    border-radius: 5px;
}

.popover-title {
    display: none !important;
    font-size: 0;
}

.p_title {
    color: #000000;
    text-transform: uppercase;
}

.current_bid_flight_details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.current_bid_flight_details_left {
    max-width: 30%;
    width: 100%;
}

.current_bid_flight_details_img_wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.current_bid_flight_details_img_caption {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: .5rem;
    font-size: .875rem;
    background: rgb(0 0 0 / 40%);
    color: #ffffff;
    text-align: center;
}

.current_bid_flight_details_img {
    width: 100%;
}

.current_bid_flight_details_right {
    flex-grow: 1;
}

.current_bid_flight_details_content {
    background: #ebe5df;
    border-radius: 8px;
    padding: 1rem 0 0;
    cursor: pointer;
}

.current_bid_flight_details_heading p {
    color: #E9920C;
    font-weight: 600;
}

.current_bid_flight_details_content .chaterMainMultipeBox {
    border: 0;
}

.current_bid_flight_details_heading {
    text-align: center;
}

.current_bid_base_pricing_box {
    border: 1px solid #D1C6BB;
    padding: 1rem;
    border-radius: 6px;
}

.current_bid_base_pricing_heading {
    padding-bottom: .5rem;
    border-bottom: 1px solid #D1C6BB;
}

.base_pricing_calc_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.base_pricing_calc_divider {
    min-height: 60px;
    width: 1px;
    background: #dcd4cc;
}

.current_bid_base_pricing_bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #D1C6BB;
    padding-top: .5rem;
}

.current_bid_button_wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0 0;
}

.doc_title {
    cursor: pointer;
}

.tooltipAutoBid {
    position: relative;
    /* border-bottom: 1px dotted black; */
}

    .tooltipAutoBid .tooltiptext1 {
        visibility: hidden;
        width: 150px;
        background-color: #F3ECE6;
        border: 1px solid #d1c6bb;
        color: #000000;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        top: -33px;
        left: 150%;
        font-size: .875rem;
        /* font-weight: 500; */
        padding: 8px;
    }

        .tooltipAutoBid .tooltiptext::after, .tooltipAutoBid .tooltiptext1::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent #F3ECE6 transparent transparent;
        }

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    list-style: none;
    font-size: 18px;
    text-align: left;
    background-color: #f3efeb;
    color: #000;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    max-height: 200px;
    overflow-y: auto;
    padding-left:0;
}

    .ui-autocomplete > li > div {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.42857143;
        color: #333333;
        white-space: nowrap;
    }

    .ui-autocomplete > li {
        border-bottom: 1px solid #333333;
        padding: 5px;
        /* margin: 5px; */
    }


.ui-state-hover,
.ui-state-active,
.ui-state-focus {
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    cursor: pointer;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/* Chosen select */
.chosen-container{
    width: 100% !important;
    font-size: 1rem !important;
}
.chosen-container-multi .chosen-choices{
    background: #f3ece6 !important;
    border: 1px solid #d1c6bb !important;
    padding: .5rem 1rem !important;
    outline: none !important;
    border-radius: 6px !important;
    height: auto;
    box-shadow: none;
}
.chosen-container-active .chosen-choices{
    box-shadow: none;
}
.chosen-container .chosen-results li.no-results{
    color: #777;
    display: list-item;
    background: #f3ece6;
}
.chosen-results{
    background: #f3ece6 !important;
    border: 1px solid #d1c6bb !important;
    border-radius: 6px !important;
}
.chosen-container .chosen-results li.highlighted{
    background: #d1c6bb !important;
    color: #000000 !important;
}
.search-choice{
    background: #d1c6bb !important;
}
.chosen-choices input{
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    width: 100% !important;
}
ul.chosen-results{
    padding-left: 0;
}
ul.chosen-results li{
    padding: .5rem !important;
}


/* pagination */


.pagination {
    display: float-left;
}

    .pagination a {
        color: black;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
        border: 1px solid #1a1a1a;
        margin: 0 4px;
        /* color: #ffffff; */
        border-radius: 5px;
    }

    .pagination span.active {
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
        margin: 0 4px;
        background-color: #000000 !important;
        color: #ffffff !important;
        cursor: pointer;
        text-transform: uppercase;
        border: 2px solid #000000;
        border-radius: 5px;
    }

    .pagination a:hover:not(.active) {
        background-color: #ddd;
        color: #000000;
    }


.paginationWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pagination {
    margin-top: 20px;
    align-items: center;
}
.pagination ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #000;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}

    .pagination ul li {
        color: #f6e100;
        list-style: none;
        line-height: 25px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        user-select: none;
        transition: all 0.3s ease;
    }

        .pagination ul li.numb {
            list-style: none;
            height: 25px;
            width: 25px;
            margin: 0 3px;
            line-height: 25px;
            border-radius: 10px;
        }

            .pagination ul li.numb.first {
                margin: 0px 3px 0 -5px;
            }

            .pagination ul li.numb.last {
                margin: 0px -5px 0 3px;
            }

        .pagination ul li.dots {
            font-size: 22px;
            cursor: default;
        }

        .pagination ul li.btn {
            padding: 0 5px;
            border-radius: 10px;
            margin: 0px 5px;
        }

            .pagination ul li.btn:first-child {
                margin: 0;
            }

            .pagination ul li.btn:last-child {
                margin: 0;
            }

        .pagination li.active,
        .pagination ul li.numb:hover,
        .pagination ul li:first-child:hover,
        .pagination ul li:last-child:hover {
            color: #000000;
            background: #f6e100;
        }

.PagingTotalCount {
    display: flex;
    flex-wrap: wrap;
    background: #000;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
    text-align: right;
}

    .PagingTotalCount span {
        color: #f6e100;
        line-height: 25px;
        text-align: right;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        user-select: none;
        transition: all 0.3s ease;
    }

.errorstar {
    color: #FF0000;
}



.disabled-date {
    /* background-color: #afafaf !important;
    border-radius: 50% !important;
    color: #000000 !important; */
}

.MaintenanceDateClass {
    background-color: #ffec1b !important;
    border-radius: 50% !important;
    color: #000000 !important;
    pointer-events:none;
}

.BlackOutDateClass {
    background-color: #1b1c1c !important;
    border-radius: 50% !important;
    color: #d3d3d3 !important;

}

.tripDateClass {
    background-color: #1fc45d !important;
    border-radius: 50% !important;
    color: #000000 !important;
}

.EmptyLegDateClass {
    background-color: #c4731f !important;
    border-radius: 50% !important;
    color: #000000 !important;
}

.EmptyLegDateConfirmedClass {
    background-color: #ff4500 !important;
    border-radius: 50% !important;
    color: #000000 !important;
}

.blckoputDateSeelctWrapper {
    display: flex;
    flex-wrap: wrap;
}

.MaintenanceSeelctWrapper {
    display: flex;
}


.dateNotification {
    margin-left: 20px;
    list-style: none;
    margin-top: 7px;
}

    .dateNotification li {
        display: inline-block;
        margin-right: 10px;
    }

.dateNotification1 {
    margin-left: 20px;
    list-style: none;
    margin-top: 7px;
}

    .dateNotification1 li {
        margin-bottom: 5px;
    }

.tripDateCircle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1fc45d !important;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.maintenanceDateCircle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffec1b !important;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.blackouteDateCircle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000000 !important;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.listBDpaginationWrapper {
    text-align: center;
}

@media screen and (max-width: 1680px) {
    .form-label{
        font-size: .875rem;
    }
}
@media screen and (max-width: 1520px) {
    .form-label{
        font-size: .75rem;
    }
}
@media screen and (max-width: 1400px) {
    .form-label{
        font-size: .875rem;
    }
}
@media screen and (max-width: 1366px) {
    .form-label{
        font-size: 1rem;
    }
}

@media screen and (max-width:1280px) {
    .splash__bottom h2{
        font-size: 1.5rem;
    }
    .pagination{
        font-size: .75rem;
    }
    .PagingCustomButton, .pagination a{
        padding: 4px 8px;
    }
    .form-label{
        font-size: .875rem;
    }
}
@media screen and (max-width: 1200px) {
    .profile-img-box{
        margin: 2rem auto;
    }
}
@media screen and (min-width:1024px) {
    .signin-continue-btn:hover{
        background: #000000;
        color: #ebebeb;
    }
    a:hover{
        color: inherit;
    }
    .sub-nav:hover{
        border: 1px solid #A09387;
    }
    .sub-nav:hover .sub-nav-cicle{
        opacity: 1;
    }
    .btn.white:hover, .btn.red:hover{
        background: #000000;
        border: 1px solid #000000;
        color: #ffffff;
    }
    .btn.black:hover{
        background: #ffffff;
        border: 1px solid #ffffff;
        color: #000000;
    }
    .page-link:hover{
        background-color: #F9F7F5;
        border: 1px solid #000000;
        color: #000000;
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{
        background-color: #ffffff !important
    }
    .tooltipAutoBid:hover .tooltiptext, .tooltipAutoBid:hover .tooltiptext1 {
        visibility: visible;
    }
}
@media screen and (max-width: 1021px){
    .grid_view {
        grid-template-columns: 1fr;
        font-size: .875rem;
    }
    .grid_view_label, .grid_view_info_left {
        font-size: .875rem;
    }
    .form-label{
        font-size: 1rem;
    }

}
@media screen and (max-width: 992px) {
    .splash__top{
        min-height: auto;
        height: 70vw;
        background-position: top;
        background-size: cover;
    }
    .splash__content{
        padding-inline: 0;
    }
    .copyright{
        font-size: .75rem;
        padding: 2rem .5rem;
    }
    .main_logo{
        width: 230px;
        margin: 0 auto;
    }
    .desktop-view{
        display: none;
    }
    .device-view{
        display: block;
    }
    .btn{
        font-size: .75rem;
    }

    /* NavIcon */
    
    #navIcon {
    position: absolute;
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    /* border: 1px solid #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 0 0px 5px rgba(0, 0, 0, 0.15); */
    left: 1rem;
    top: 1rem;
    z-index: 999;
    border-radius: 5px;
    margin-right: 2%;
    /* display: none; */
}

    #navIcon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 25px;
        background: #000000;
        border-radius: 9px;
        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: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

        #navIcon span:nth-child(1) {
            top: 12px;
        }

        #navIcon span:nth-child(2) {
            top: 19px;
        }

        #navIcon span:nth-child(3) {
            top: 26px;
        }

    #navIcon.open span:nth-child(1) {
        top: 19px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #navIcon.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #navIcon.open span:nth-child(3) {
        top: 19px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nav-container{
        position: fixed;
        background-color: #EBE5DF;
        left: -100%;
        z-index: 99999;
        transition: all .3s ease-in-out;
        height: calc(100dvh - 78px);
        overflow-y: auto;
        width: calc(100vw - 12px);
        max-width: none;
        padding-inline: 1.5rem;
    }
    .nav-container.nav-active{
        left: 0;
    }

    .table-wrapper{
        max-width: 85vw;
    }
    .main-content{
        padding: 1.5rem;
    }
    .chaterMainMultipeBox {
        justify-content: space-between;
    }
    .charter_main_width{
        width: 44%;
    }
    .quote_btn_wrapper {
        width: 100% !important;
        margin: 0 auto;
    }
    .quote_box{
        padding: 0;
    }
    .login h2{
        font-size: 1.25rem;
    }
    .splash__content .form-control{
        font-size: 1rem;
    }
    .signin-continue-btn{
        font-size: 1.25rem;
    }
    #docCompTable{
        width: 130%;
    }
    .setting-wrapper{
        width: 100%;
    }
    .admin-detils{
        width: 100%;
    }
    .form-stepper .label{
        font-size: .875rem;
    }
    .forminputPageDiv{
        justify-content: center;
    }
}
@media screen and (max-width:500px) {
    
    .form-stepper .label{
        font-size: .75rem;
    }
}