@import 'base.css';
@import url("/assets/vendor/bootstrap/css/select2.min.css");
 /*Font */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--white);
  color: var(--primary_color);
  font-family: 'SF Pro', Arial, sans-serif;
}
a,
a:hover {
  text-decoration: none;
  outline: none;
}

a,
a:hover,
a:focus {
  color: var(--primary_color);
  /* color: var(--alpha_color); */
}
label{
  font-family: var(--paragraph_font);
  color: var(--primary_color);
  font-weight: 500;
  cursor: pointer;
}

p {
  font-family: var(--paragraph_font);
  color: var(--primary_color);
}

.small_text {
  color: var(--small-text);
  font-family: var(--paragraph_font);
}

.green_color_text {
  color: var(--green_color_text) !important;
}

[type="radio"]:checked+label:after {
  background-color: red;
  border: 2px solid red;

}

h1,
.h1 {
  font-size: var(--font-26);
  font-family: var(--title_font);
  color: var(--primary_color);
}

h2 {
  font-size: var(--font-24);
  font-family: var(--sub-title_font);
  color: var(--primary_color);
}

h3 {
  font-size: var(--font-22);
  font-family: var(--sub-title_font);
  color: var(--primary_color);
}

h4 {
  font-size: var(--font-18);
  font-size: var(--font-18);
  font-family: var(--sub-title_font);
  color: var(--primary_color);
}

h5 {
  font-size: var(--font-16);
  font-family: var(--sub-title_font);
  color: var(--primary_color);
  margin-bottom: 0;
}

h6 {
  font-size: var(--font-14);
  font-family: var(--sub-title_font);
  color: var(--primary_color);
}

/* font css */
/* Regular */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea ,li , ol ,label{
  font-family: 'SF Pro', Arial, sans-serif !important; /* Fallback fonts added */
}
@font-face {
  font-family: 'SF-Pro-medium';
  src: url('assets/fonts/SFPro-Regular.woff2') format('woff2'),
       url('assets/fonts/SFPro-Regular.woff') format('woff'),
       url('assets/fonts/SFPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: 'SF-Pro-semibold';
  src: url('assets/fonts/SFPro-SemiBold.woff2') format('woff2'),
       url('assets/fonts/SFPro-SemiBold.woff') format('woff'),
       url('assets/fonts/SFPro-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'SF-Pro-bold';
  src: url('assets/fonts/SFPro-Bold.woff2') format('woff2'),
       url('assets/fonts/SFPro-Bold.woff') format('woff'),
       url('assets/fonts/SFPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
/* Light */
@font-face {
  font-family: 'SF-Pro-lighter';
  src: url('assets/fonts/SFPro-Light.woff2') format('woff2'),
       url('assets/fonts/SFPro-Light.woff') format('woff'),
       url('assets/fonts/SFPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
.fa-chevron-up:before {
  content: "\f077";
  font-family: fontawesome;
}
.fa-chevron-down:before {
  content: "\f078";
  font-family: fontawesome;
}
/* ExtraBold */

/* common Button */
.desktop_logo {
  display: block;
}
.desktop_logo img{
  width: 200px;
  margin-left: 20px;
}

.mobile_logo {
  display: none !important;
}

.primary-btn {
  background: var(--btn_bg_color);
  border: 2px solid var(--btn_border_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
}

.primary-btn:hover {
  border: 2px solid var(--btn_border_color);
  color: #008E1E;
  padding: 5px 15px;
}

.secondary-btn {
  border: 2px solid var(--hoverbtn_border_color);
  color: var(--hoverbtn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
}

.secondary-btn:hover {
  background: var(--btn_bg_color);
  border: 2px solid var(--hoverbtn_border_color);
  color: var(--btn_text_color);
  padding: 5 15px;
}

.alpha-btn {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  height: 40px;
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  line-height: 1.8;
}

.alpha-btn:hover {
  border: 2px solid var(--alpha_color);
  color: var(--alpha_color);
  padding: 5px 15px;
}

.outline_alpha-btn {
  border: 2px solid var(--alpha_color);
  color: var(--alpha_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
}

.outline_alpha-btn:hover {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  padding: 5px 15px;
}

.fill_red_btn {
  background: var(--red-color);
  border: 2px solid var(--red-color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
}

.fill_red_btn:hover {
  border: 2px solid var(--red-color);
  color: var(--red-color);
  padding: 5px 15px;
}

.outline_red_btn {
  border: 2px solid var(--red-color);
  color: var(--red-color);
  padding: 5px 15px;
  border-radius: 8px;
}

.outline_red_btn:hover {
  background: var(--red-color);
  border: 2px solid var(--red-color);
  color: var(--btn_text_color);
}

.grediunt_background {
  background: var(--grediunt_bg);
  background-repeat: no-repeat;
}

.data_feild {
  background-color: #FAFCFF;
  padding: 10px;
}

/*--------------------------------------------------------------
  # General css
  --------------------------------------------------------------*/


  /* take an action css strat */
  .request-number{
    font-size: 24px;
    font-weight: bold;
  }
  .view-more-action {
    color: var(--alpha_color);
    font-weight: bold;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    font-size:var(--font-14);
  }
  .take-action-section h6{
    font-size: 14px;
    font-weight: bold;
  }
  .take-action-section .action-icon{
    width: 90px;
  }
  .view-more-action i {
    font-size: large;
    color: var(--secondary_color);
    font-weight: bold;
    margin-left: 5px;
  }
  ul.take-action-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
  }

  ul.take-action-section li {
    display: flex;
    flex: 1 1 250px; /* Adjust the minimum size as needed */
    max-width: 250px; /* Adjust the maximum size as needed */
    box-sizing: border-box;
  }

  /* @media (max-width: 600px) {
    ul.take-action-section li {
      flex: 1 1 100%;
    }
  } */
      .take-action-01{
        width: 250px;
        height: 250px;
        padding: 30px;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 100%;
        background: #8AEEEE;
        color: #1D1D1D;
      }
      .take-action-02{
        width: 250px;
        height: 250px;
        padding: 30px;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 100%;
        background: #CDFFD8;
        color: #1D1D1D;
      }
      .take-action-03{
        width: 250px;
        height: 250px;
        padding: 30px;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 100%;
        background: #FFD6C9;
        color: #1D1D1D;
      }
      .take-action-04{
        width: 250px;
        height: 250px;
        padding: 30px;
        text-align: center;
        font-size: 1.2rem;
        border-radius: 100%;
        background: #FFBBBB;
        color: #1D1D1D;
      }
  /* take an action css end */
  .alpha-btn:hover img{
    filter: invert(92%) sepia(100%) saturate(6433%) hue-rotate(219deg) brightness(100%) contrast(100%)
    }
    #map{
      z-index: 0;
    }
.seemore_btn {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  position: fixed;
  right: 0;
  z-index: 1;
  top: 50%;
  left: auto;
}

.seemore_btn:hover {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
}

.delete_btn_position {
  position: static;
  bottom: 15px;
  top: auto;
}

.card.location-card {
  min-height: 100%;
  margin-bottom: 0;
}

/* .form_content_scroll::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: calc(100% - (20px + 30px));
} */

.form_content_scroll::-webkit-scrollbar-thumb {
  border-radius: 4px;
  width: 7px;
  background-color: rgba(206, 206, 206, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.model {
  height: auto;
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-body {
  padding: 20px !important;
  flex-grow: 1;
  overflow-y: auto;
}

/* .modal-body::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: calc(100% - (20px + 30px));
} */

.modal-content {
  border-radius: 20px;
  border-color: #008E1E;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.blur {
  filter: blur(4px);
}

/* Rating Star css start here */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.rating>input {
  display: none
}

.rating>label {
  position: relative;
  width: 1em;
  font-size: 30px;
  font-weight: 300;
  color: #FFD600;
  cursor: pointer
}

.rating>label::before {
  content: "\2605";
  position: absolute;
  opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
  opacity: 1 !important
}

.rating>input:checked~label:before {
  opacity: 1
}

.rating:hover>input:checked~label:before {
  opacity: 0.4
}

.buttons {
  top: 36px;
  position: relative
}

.rating-submit {
  border-radius: 8px;
  color: #fff;
  height: auto
}

.rating-submit:hover {
  color: #fff
}

.rating_btn {
  background-color: #EA9A22;
  color: #ffffff;
  padding: 5px 5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
}

.rating_btn:hover {
  background-color: #EA9A22;
  color: #ffffff;
  padding: 5px 5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
}

/* Rating star css end*/

/* Form Input css start here */
.did-floating-label-content {
  position: relative;
  margin-bottom: 10px;
}

.did-floating-label {
  color: var(--placeholder_text_color);
  opacity: 1;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 11px;
  padding: 0 5px;
  background-color: #FAFCFF;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.did-floating-input,
.did-floating-select {
  font-size: 14px;
  display: block;
  width: 100%;
  height: 36px;
  padding: 0 20px;
  background-color: #FAFCFF !important;
  color: #1D1D1D;
  border: 1px solid #E2E9F4;
  border-radius: 4px;
  box-sizing: border-box;

  &:focus {
    outline: none;

    ~.did-floating-label {
      top: -8px;
      font-size: 14px;
    }
  }
}

.did-floating-input:focus,
.did-floating-select:focus {
  outline: none;
}

.did-floating-input:focus~.did-floating-label,
.did-floating-select:focus~.did-floating-label {
  top: -8px;
  font-size: 16px;
}

select.did-floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.did-floating-select::-ms-expand {
  display: none;
}

.did-floating-input:not(:placeholder-shown)~.did-floating-label {
  top: -8px;
  font-size: 12px;
}

.did-floating-select:not([value=""]):valid~.did-floating-label {
  top: -8px;
  font-size: 12px;
}

.did-floating-select[value=""]:focus~.did-floating-label {
  top: 11px;
  font-size: 14px
}

.did-floating-select:not([multiple]):not([size]) {
  background-image: url("/assets/img/down-arrow.svg");
  background-position: right 15px top 50%;
  background-repeat: no-repeat;
  font-size: 14px;
}

.did-error-input {
  .did-floating-label {
    font-weight: 500;
    color: #FF4747;
  }

  .did-floating-select:not([multiple]):not([size]) {
    background-image: url("/assets/img/down-arrow.svg");
  }
}
th{
  font-weight: 500;
}
.input-group {
  display: flex;

  .did-floating-input {
    border-radius: 0 4px 4px 0;
    border-left: 0;
    padding-left: 0;
  }
}

.input-group .did-floating-input {
  border-radius: 0 4px 4px 0;
  border-left: 0;
  padding-left: 0;
}

.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  height: 34px;
  color: #323840;
  padding: 0 5px 0 20px;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #E2E9F4;
  border-radius: 4px 0 0 4px;
  border-right: none;
}
#shift_create_form .textarea-box.form-control {
  height: 46px !important;
  }
#shift_create_form .modal-body{
padding-bottom: 0 !important;
}
#shift_create_form .modal-header {
  padding: 10px 10px;
}
#shift_create_form .textarea-box{
  height: 46px; /* initial height */
    overflow: auto; /* hide the scroll bar */
    resize: none; /* prevent manual resizing */
    box-sizing: border-box; /* include padding and border in the element's total width and height */
    transition: height 0.2s; /* smooth transition */
}
.i_understood{
  font-size: 14px;
}
.city-suggestions{
margin-bottom: 0 !important;
}
.textarea-box.form-control {
  padding-top: 15px;
  height: 100px !important;
}
#calendar_shift_detail_table .dtr-details li{
  white-space: nowrap;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e) !important;
}

.was-validated .form-control:valid,
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #E2E9F4 !important;
}

.form-control.is-valid {
  border-color: #E2E9F4 !important;
}

.form-check-input:checked {
  background-color: #008E1E !important;
  border-color: #008E1E !important;
}

.shift-title {
  color: var(--alpha_color);
  margin-bottom: 0;
}

hr {
  border: 1px solid var(--border-color);
  margin-top: 5px !important;
}

.candidate-card hr {
    border: 1px solid #000 !important;
    margin-top: 5px !important;
  }


input.internal-autofill-selected {
  background-color: unset !important;
}

/* Form Input css End here */


.star {
  color: var(--red-color);

}

.input_box_feild {
  position: relative;
  /* display: flex; */
}

.input_icon {
  position: absolute;
  right: 8px;
  top: 14px;
}

.total_wege {
  margin-top: 10px;
  font-weight: bold;
}

/* time edit arrow css */
.datepicker-dropdown {
  padding: 20px !important;
}

.datepicker td,
.datepicker th {
  width: 35px;
  height: 30px;
}

.bootstrap-timepicker-widget table td input {
  width: 50px !important;
  margin: 0;
  text-align: center;
  background-color: #008e1e;
  color: #ffffff;
  border: none;
}

.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover {
  background-color: #008e1e;
  background-image: -moz-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: -ms-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008e1e), to(#008e1e));
  background-image: -webkit-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: -o-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: linear-gradient(to bottom, #008e1e, #008e1e);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #008e1e #008e1e #008e1e;
  border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
}

.datepicker table tr td.active.active {
  background-color: #008e1e;
  background-image: -moz-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: -ms-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008e1e), to(#008e1e));
  background-image: -webkit-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: -o-linear-gradient(to bottom, #008e1e, #008e1e);
  background-image: linear-gradient(to bottom, #008e1e, #008e1e);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #008e1e #008e1e #008e1e;
  border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
}

.table .sub-text-color {
  color: var(--secondary_color);
  font-size: var(--font-14);
}

.form-control {
  border-radius: 12px !important;
  height: 46px !important;
  background-color: transparent;
  border-color: var(--border-color);
}

.form-select.is-valid,
.was-validated .form-select:valid {
  background-color: transparent !important;
  border-color: #E2E9F4 !important;
  color: #212529 !important;
}

.form-control:focus {
  border-color: #dcdcdc !important;
  box-shadow: unset !important;
}

.form-control::placeholder {
  color: var(--placeholder_text_color);
  opacity: 1;
  /* Firefox */
}

.input-group::placeholder {
  color: var(--placeholder_text_color);
  opacity: 1;
  /* Firefox */
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  background-image: none !important;
  padding-right: 0 !important;
  border: 1px solid #008E1E !important;
}

.form-control.is-valid {
  background-image: none !important;
  padding-right: 0 !important;
  /* border:1px solid #008E1E !important; */
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: none !important;
  padding-right: 0 !important;
  /* border:1px solid #FF5722 !important; */
}

.form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: var(--placeholder_text_color);
}

/* autofill input box color changes css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #1d1d1d;
  transition: background-color 5000s ease-in-out 0s;
}

/* autofill input box color changes css */
/* hide show password css */
.hide-show-password {
  position: relative;
  display: flex;
}

.show-password {
  position: absolute;
  right: 20px;
  left: auto;
  top: 10px;
  cursor: pointer;
  color: #7A7A7A;
}

.hide-password {
  position: absolute;
  right: 20px;
  left: auto;
  top: 10px;
  cursor: pointer;
  color: #7A7A7A;
}

.modal-header {
  background: #008E1E;
  border-color: #008E1E;
  border-radius: 18px 18px 0 0;
}

.modal-header .btn-close {
  width: 2rem !important;
  height: 2rem !important;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.modal-header .btn-close:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.modal-title {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  align-items: center;
  display: flex;
}

/*Model CSS end here */

#spinner {
  background-color: #0000003f;
  width: 100%;
  height: 100%;
}

#spinner .spinner-border {
  justify-content: center;
  display: flex;
  margin: 0 auto;
  top: 50%;
  position: absolute;
  left: 50%;
  color: #ffffff !important;
}

/* email code verification start css */
.otp-field input {
  height: 45px;
  width: 42px;
  border-radius: 10px;
  outline: none;
  font-size: 25px;
  text-align: center;
  background-color: #FAFCFF;
  border: 2px solid #E2E9F4;
  color: var(--primary_color);
  font-weight: bolder;
}

.code_not_match .otp-field input {
  border: 2px solid var(--red-color);
}

.code_match .otp-field input {
  border: 2px solid var(--secondary_color);
}

.otp-field {
  flex-direction: row;
  column-gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#emailverify div #email_verify_error {
  justify-content: center !important;
  display: flex !important;
  margin-bottom: 20px !important;
  color: var(--red-color) !important;
}

#emailverify #email_verify_error .otp-field input {
  border: 2px solid #dc3545 !important;
  color: #000 !important;
}

#emailverify #email_verify .otp-field input {
  border: 2px solid #008E1E !important;
  color: #000 !important;
}

.resend {
  color: #1d1d1d !important;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.form-check-input:checked,
.form-check-input:active {
  border: 1px solid #DEE2E6;
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  background-size: 18px !important;
}

.form-check-input:focus {
  border-color: #E2E9F4;
  outline: 0;
  box-shadow: unset !important;
}

/* email verify css */

/* multi select dropdown menu */

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: unset !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: unset !important;
}

.select2-results__option {
  border-bottom: 1px solid #E2E9F4;
}


.select2-search .select2-search__field {
  margin-top: 8px !important;
  margin-left: 5px !important;
}

/* FOR CLOSE MULTI SELECT - OPTION OVERRIGHT FOR CLOSE BUTTON */

/* Adjust the select2 container width */
.select2-container--default .select2-selection--multiple {
  width: 100% !important;
  padding-right: 30px;
  /* Add padding to the right to make space for the clear button */
}

/* Adjust the position of the clear button */
.select2-container--default .select2-selection__clear {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Ensure the select2 dropdown menu is not overlapped */
.select2-container--default .select2-selection__rendered {
  margin-right: 30px;
  /* Add margin to the right to prevent overlap */
}

/* Ensure proper spacing and alignment of the selected items */
.select2-container--default .select2-selection__choice {
  margin-right: 5px;
  margin-top: 5px;
  padding-right: 20px;
  /* Add padding to the right of each choice to avoid overlap with remove button */
}

/* FOR CLOSE MULTI SELECT - OPTION OVERRIGHT FOR CLOSE BUTTON */

.select2-container--default .select2-selection--multiple {
  /* background-color: #fafcff !important; */
  border: 1px solid #e2e9f4 !important;
  border-radius: 12px !important;
  cursor: text;
  height: auto;
  overflow-y: scroll;
  /* min-height: 100px !important; */
  padding-left: 5px;
  color: var(--placeholder_text_color) !important;
}
.select2-container .select2-selection--multiple  {
min-height: 46px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #E7FFEC !important;
  border: 1px solid #E7FFEC !important;
  border-radius: 12px !important;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 10px !important;
  padding: 0 5px;
  font-size: 14px !important;
  color: #008E1E !important;
}

.select2-selection__choice__remove {
  color: #008E1E !important;
  font-size: var(--font-14);
  font-weight: bold;
}

.select2-selection__clear {
  position: absolute;
  right: 5px;
  color: var(--black);
}

.select2 {
  width: 100% !important;
}

.select2-selection--multiple::-webkit-scrollbar {
  display: none;
}

.select2-results::-webkit-scrollbar {
  width: 12px;
}

.select2-results::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.select2-results::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  text-wrap: wrap;
}

.select2-container {
  display: unset;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: unset !important;
  color: #1d1d1d !important;
}

.select2-dropdown {
  border-color: #E2E9F4 !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  margin: 3px !important;
} */

.select2-selection__rendered {
  border-radius: 12px !important;
  padding: 0 !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.select2-results__option:before {
  content: "";
  display: inline-block;
  position: relative;
  height: 1rem;
  width: 1rem;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  background-color: #fff;
  margin-right: 10px;
  vertical-align: middle;
}

.select2-results__option[aria-selected="true"]:before {
  font-family: fontAwesome;
  content: "\f00c";
  color: #fff;
  background-color: #008E1E;
  border: 0;
  display: inline-block;
  font-size: 10px;
  vertical-align: middle;
  justify-content: center;
  display: inline-grid;
}

/* email code verification end css */
.red-star {
  position: relative;
}

.red-star .star {
  position: absolute;
  top: 7px;
  right: 8px;
  color: red;
  display: none;
}


/* --------------------------------------------------------
  # Calendar Css
  -------------------------------------------------------- */
.fc .fc-toolbar-title{
  font-size: 20px !important;
  font-weight: bold;
}

.fc-daygrid-day-frame .fc-daygrid-day-events {
  display: flex;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
  padding: 5px 10px !important;
}

.datatable-table>thead>tr>th {
  background-color: var(--table-title);
  color: #1D1D1D;
  font-weight: bolder;
  font-size: var(--font-14);
}
.submit-button table.dataTable {
    white-space: nowrap !important;
    overflow-x: scroll;
    display: block;
}
table.dataTable thead .sorting::before {
  /* content: "\F3E1" !important;
    font-family: 'bootstrap-icons' !important;
    color: #1d1d1d !important; */
  display: none;
}

table.dataTable thead .sorting::after {
  /* content: "\F3E1" !important;
    font-family: 'bootstrap-icons' !important;
    color: #1d1d1d !important;
    visibility: hidden; */
  display: none;
}

.seemore_location {
  position: sticky;
  right: 0;
  left: auto;
}

/*--------------------------------------------------------------
  # Pharmacy Info
  --------------------------------------------------------------*/
.form-select {
  border-radius: 12px;
  height: 42px !important;
  /* background-color: #FAFCFF; */
  border-color: #E2E9F4;
  color: #A9AEB8;
}

/*--------------------------------------------------------------
  # Main
  --------------------------------------------------------------*/
#main {
  margin-top: 20px;
  padding: 20px 30px;
  transition: all 0.3s;
}


/*--------------------------------------------------------------
  # Page Title
  --------------------------------------------------------------*/
/* .pagetitle {
  margin-bottom: 10px;
} */

.pagetitle h1 {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary_color);
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  background: var(--secondary_color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 18px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #7eca8e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Override some default Bootstrap stylings
  --------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 16px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #008E1E;
  color: #ffffff;
}



@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card h5{
  font-size: var(--font-14) !important;
}
/* Negotiations page css start here */
.nav-link.active {
  color: var(--secondary_color) !important;
  font-weight: bold;
}

.nav-link {
  color: var(--primary_color) !important;
  font-weight: bold;
}
.shift_date_time_above_class .clicked {
  transform: translateY(0px);
}
.shift-detail-negotiation-request-card{
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 0 auto;
}

/* Negotiations page css End here */
.negotiation_buttons .alpha-btn:hover {
  filter: brightness(0) saturate(100%) invert(9%) sepia(69%) saturate(7464%) hue-rotate(219deg) brightness(84%) contrast(101%);
}

/* shift status card css start*/
.no-data {
  height: 60vh;
  position: relative;
  background-color: #ffffff;
}

.no-data .data-title {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .data-title h1,
p {
  color: var(--small-text);
} */

.auto-select {
  color: var(--orange_color);
  font-weight: bolder;
  float: right;

}

.card-box {
  background-color: var(--table-title);
  color: #1D1D1D;
  font-weight: bolder;
  font-size: var(--font-14);
  padding: 15px;
  margin-bottom: 20px;
}

.card-bedge-pending {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #003399 !important;
}

.card-bedge-negotiation {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #F2BD00 !important;
}

.card-bedge-negotiation {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #F2BD00 !important;
}

.card-bedge-unfilled {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #FF4747 !important;
}

.card-bedge-swapped {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #FF9839 !important;
}

.card-bedge-canceld {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #5C0111 !important;
}

.card-bedge-scheduled {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #008E1E !important;
}

.card-bedge-upcoming {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #87AF90 !important;
}

.card-bedge-completed {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #3A9FD8 !important;
}

.card-bedge-canceled_pharmacy {
  border-radius: 10px 0 10px 0 !important;
  padding: 10px !important;
  background-color: #000000 !important;
}

.negotiation_button {
  background: #F2BD00;
  border: 2px solid #F2BD00;
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  line-height: 1.9;
}

.negotiation_button:hover {
  color: #F2BD00;
  border: 2px solid #F2BD00;

}

.orange_button {
  background: var(--orange_color);
  border: 2px solid var(--orange_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);

}

.orange_button:hover {
  background: transparent;
  border: 2px solid var(--orange_color);
}

.invite_green_button {
  background: var(--secondary_color);
  border: 2px solid var(--secondary_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
}

.invite_green_button:hover {
  color: var(--secondary_color);
  border: 2px solid var(--secondary_color);
}

.invite_button {
  background: #FF4747;
  border: 2px solid #FF4747;
  color: var(--btn_text_color);
  /* height: var(--btn_height); */
  border-radius: var(--b_radius);
  /* font-size: var(--font-14); */
  font-weight: var(--f_weight);
  padding: 5px 15px;
}

.invite_button:hover {
  color: #FF4747;
  border: 2px solid #FF4747;
}

.offcanvas-header {
  background-color: var(--secondary_color);
  color: var(--white);
}

#offcanvasRightLabel {
  margin-bottom: 0;
}

.text-reset {
  filter: invert(91%) sepia(50%) saturate(2%) hue-rotate(58deg) brightness(106%) contrast(101%);
  opacity: 1;
}

.filter-buttons {
  position: absolute;
  bottom: -20px;
  background-color: white;
  width: 100%;
  height: 70px;
}

/* Ensure all cards have the same height */
.jobs-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  /* Adjust this value as needed */
  height: 100%;
  max-width: 100%;
  /* Ensure the card takes the full available width */
}

/* Flex grow the card body to take available space */
.jobs-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 10px;
}

/* Ensure the card title and other elements are spaced properly */
.jobs-card .card-title {
  margin-bottom: 0;
}

/* Handle overflow content */
.jobs-card .card-body>.content {
  flex-grow: 1;
  overflow-y: auto;
  /* Add scroll if content exceeds available space */
}

/* Ensure the footer stays at the bottom */
.jobs-card .card-body>.footer {
  margin-top: auto;
}

/* Set the image size to avoid layout shifts */
.jobs-card img {
  max-width: 100%;
  /* Make sure images are responsive */
  height: auto;
  /* Maintain aspect ratio */
}


.jobs-card {
  position: relative;
  padding-bottom: 40px;
}

.card .candidate-card {
  height: 100vh !important;
  overflow-y: scroll;
  max-height: 370px !important;
}

.candidate-select-btn {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background-color: #ffffff;
}

.candidate-card::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

/* .candidate-card::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0,0,0,.5);
  -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
} */

.card-footer.job-footer {
  padding: 0 !important;
  bottom: 0;
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  border-top: none;
}


.perks {
  /* position: absolute; */
  bottom: 0;
  width: 100%;
  background-color: green;
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

.perks p {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}

.perks-details {
  width: 100%;
  background-color: green;
  padding: 15px;
  border-radius: 10px;
}

.perks-details p {
  color: #ffffff;
  text-align: left;
  font-size: 14px;
}

/* distance slider css start */
.range-form {
  width: 400px;
  margin: auto;
  padding: 50px;
}

.range-slider {
  -webkit-appearance: none;
  /* Override default CSS styles */
  appearance: none;
  width: 100%;
  /* Full-width */
  height: 10px;
  border-radius: 5px;
  /* Specified height */
  background: #E2E9F4;
  /* Grey background */
  outline: none;
  /* Remove outline */
  opacity: 0.7;
  /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: 0.2s;
  /* 0.2 seconds transition on hover */
  transition: opacity 0.2s;
}

.range-slider:hover {
  opacity: 1;
  /* Fully shown on mouse-over */
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  width: 18px;
  /* Set a specific slider handle width */
  height: 18px;
  /* Slider handle height */
  background: #008E1E;
  /* Green background */
  cursor: pointer;
  /* Cursor on hover */
  border-radius: 50%;
}

.range-slider::-moz-range-thumb {
  width: 18px;
  /* Set a specific slider handle width */
  height: 18px;
  /* Slider handle height */
  background: #008E1E;
  /* Green background */
  cursor: pointer;
  /* Cursor on hover */
}

/* distance slider css end */
/* shift status card css */
.card-login {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  background-color: var(--card_bg_color);
  border: 1px solid #E2E9F4;
}
.card-login .card-body{
  padding: 30px;
}
#verify_email_address{
  color: var(--alpha_color);
}
.card-pharmacyinfo {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  background-color: #F2F2F2;
}

.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 10px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #1D1D1D;
  font-family: "SF-Pro-semibold";
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 10px 10px 10px 10px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "SF-Pro-semibold";
  font-size: 16px;
}

/* Close Button */
.btn-close {
  background-size: 30%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "SF-Pro-semibold";
  color: #899bbd;
  font-weight: 500;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
.logo {
  line-height: 1;
}
.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "SF-Pro-semibold";
}

.header {
  /* transition: all 0.5s; */
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  /* padding-left: 20px; */
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 20px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

.search-box {
  position: relative;
}

.search-box .search-text {
  position: absolute;
  top: 10px;
  left: 15px;
  right: auto;
}

.search-box .form-control {
  border-radius: 12px 0 0 12px !important;
}

.search-btn {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
}

.search-btn:hover {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
  # Header Nav
  --------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}
.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 24px;
  color: #012970;
  margin-right: 18px;
  position: relative;
}
.header-nav .nav-profile {
  color: #012970;
}
.header-nav .nav-profile img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 16px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 16px;
}

.header-nav .profile .dropdown-item {
  font-size: 16px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #008e1e;
}

/*--------------------------------------------------------------
  # Sidebar
  --------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: var(--sidebar_bg_color);
}

.sidebar {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.sidebar::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 2px;
}

.sidebar-nav .nav-heading {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--alpha_color);
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: var(--font-16);
  color: var(--primary_color);
  transition: 0.3;
  /* background: #f6f9ff; */
  padding: 6px 11px;
  border-radius: 12px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #1D1D1D;
}

.sidebar-nav .nav-link.collapsed {
  color: #1D1D1D;
  /* background: #fff; */
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link:active {
  color: #ffffff !important;
  background: var(--secondary_color);
}

.sidebar-nav .nav-link:hover i {
  color: #1D1D1D;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #1D1D1D;
}

.sidebar-nav .nav-content a.active i {
  background-color: #1D1D1D;
}

/*--------------------------------------------------------------
  # Dashboard
  --------------------------------------------------------------*/

/* dashboard page css*/
.table>:not(caption)>*>* {
  padding: 10px;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  /* white-space: nowrap; */
}

.dashboard .shift-status-card {
  background-color: #CDF5FD;
}

.dashboard .hirepost-card {
  background-color: #EBF3E8;
}

/* .dashboard.take-action{

} */
.shift-status {
  font-size: var(--font-18);
}

.view-more {
  position: absolute;
  bottom: 0px;
  left: 10px;
  color: var(--alpha_color);
  font-weight: bold;
  align-items: center;
  display: flex;
  font-size:var(--font-14);
}

.view-more i {
  font-size: large;
  color: var(--secondary_color);
  font-weight: bold;
  margin-left: 5px;
}

.dashboard .recent-sales .table .table-title {
  background: #CDF5FD;
  color: #1D1D1D;
  white-space: nowrap;
}

.table .table-title th {
  background-color: var(--table-title);
  color: #1D1D1D;
  font-weight: bolder;
  font-size: var(--font-16);
  white-space: nowrap;
}

.text-blue-link {
  color: var(--alpha_color);
  font-weight: bolder;
}


/*------------------ subscriptions page css Srart here ---------------------------*/
.grid {
  display: grid;
  grid-gap: var(--card-padding);
  margin: 0 auto;
  padding: 0;
}
.grid {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background-color: #fff;
  border-radius: var(--card-radius);
  position: relative;
}
.card:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.radio {
  font-size: inherit;
  margin: 0;
  position: absolute;
  right: calc(var(--card-padding) + var(--radio-border-width));
  top: calc(var(--card-padding) + var(--radio-border-width));
}
ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: var(--radio-border-width) solid var(--color-gray);
    border-radius: 50%;
    cursor: pointer;
    height: var(--radio-size);
    outline: none;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
    width: var(--radio-size);
  }
  .radio::after {
    border: var(--radio-border-width) solid #fff;
    border-top: 0;
    border-left: 0;
    content: "";
    display: block;
    height: 0.75rem;
    left: 25%;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate(-50%, -50%);
    width: 0.375rem;
  }
  .radio:checked {
    background: var(--color-green);
    border-color: var(--color-green);
  }

  .card:hover .radio {
    border-color: var(--color-dark-gray);
  }
  .card:hover .radio:checked {
    border-color: var(--color-green);
  }
}
.plan-details {
  border: var(--radio-border-width) solid var(--color-gray);
  border-radius: var(--card-radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: var(--card-padding);
  transition: border-color 0.2s ease-out;
  height: 100%;
}

.card:hover .plan-details {
  border-color: var(--color-dark-gray);
  background-color: #E7FFEC;
  height: 100%;
}

.radio:checked ~ .plan-details {
  border-color: var(--color-green);
  background-color: #E7FFEC;
  height: 100%;
}

/* .radio:focus ~ .plan-details {
  box-shadow: 0 0 0 2px var(--color-green);
} */

.radio:disabled ~ .plan-details {
  color: var(--color-dark-gray);
  cursor: default;
}

.radio:disabled ~ .plan-details .plan-type {
  color: var(--color-dark-gray);
}

.card:hover .radio:disabled ~ .plan-details {
  border-color: var(--color-gray);
  box-shadow: none;
}

.card:hover .radio:disabled {
  border-color: var(--color-gray);
}

.plan-type {
  color: var(--color-green);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1em;
}

.plan-cost {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0.5rem 0;
}

.slash {
  font-weight: normal;
}

.plan-cycle {
  font-size: 2rem;
  font-variant: none;
  border-bottom: none;
  cursor: inherit;
  text-decoration: none;
}

.hidden-visually {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/* creditcard radio select css */
.creditcard.grid {
  display: grid;
  grid-gap: var(--card-padding);
  margin: 0 auto;
  padding: 0;
}
.creditcard.grid {
  grid-template-columns: repeat(4, 1fr);
}
.creditcard .card {
  height: auto;
}
.creditcard .plan-details {
  border: var(--radio-border-width) solid var(--color-gray);
  border-radius: var(--card-radius);
  cursor: pointer;
  flex-direction: column;
  padding: var(--card-padding);
  transition: border-color 0.2s ease-out;
  height: 100%;
}
/*------------------ subscriptions page css end here ---------------------------*/

/*------------------ Feedback page css start here -------------------------*/
.feedback .auto-grid {
  --auto-grid-min-size: 10rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  grid-gap: 1rem;
}
.feedback .rating {
  box-sizing: border-box;
  background: #A9AEB8;
  border: 4px solid #EBF2FF;
  border-radius: 25px;
  height: 180px;
  position: relative;
}
.feedback .rating:hover,
.feedback .rating.active {
  box-sizing: border-box;
  background: linear-gradient(134.23deg, #008E1E 34.73%, #003399 92.01%);
  border: 4px solid #008E1E;
  border-radius: 25px;
}
.feedback .rating .feedback-img{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.feedback .rating small {
  color: #555;
  display: inline-block;
  margin: 10px 0 0;
}

.feedback .rating:hover small,
.feedback .rating.active small {
  color: #111;
}

/*------------------ Feedback page css End here -------------------------*/
/* dashboard slider offer and onboarding start */
.onboarding-slider .carousel-item {
  position: relative;
  height: 550px;
}
.dashboard-offer-sliders .carousel-fade .carousel-item {
  position: relative;
  height: 300px;
}
.modal-title.offer-tag-title {
  color: #AA8500;
}
.dashboard-offer-sliders .carousel-control-prev-icon{
  filter:unset !important;
}
.dashboard-offer-sliders .carousel-control-next-icon{
  filter:unset !important;
}
.dashboard-offer-sliders .overlay-background-reliefguru {
  background: linear-gradient(180deg, #008e1e 0%, #008749 100%);
  /* background-image: url(your-background-image-url.jpg); */
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: left;
  padding: 20px 20px 20px 30px;
  box-sizing: border-box;
  width: 60%;
}

.carousel-caption {
  position: absolute;
  top: 45%;
  left: 3%;
  /* Adjust the value as needed */
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  color: white;
  /* Ensures the text is readable against the overlay */
  max-width: 35%;
  margin: 0;
}
/* dashboard slider offer and onboarding end */
/* offer listing page css */
.carousel-control-prev {
  left: -10px;
}
.carousel-control-next {
  right: -10px;
}
.reliefguru-offer-sliders .carousel-fade .carousel-item {
  position: relative;
  height: 300px;
}
.premium-offer-sliders .carousel-fade .carousel-item {
  position: relative;
  height: 300px;
}
.special-offer-sliders .carousel-fade .carousel-item {
  position: relative;
  height: 300px;
}
.overlay-background-reliefguru {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.overlay-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.overlay-background-special {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.releifguru-offers .carousel-item {
  position: relative;
  height: 300px;
}
.primium-offers .carousel-item {
  position: relative;
  height: 300px;
}
.special-offers .carousel-item {
  position: relative;
  height: 300px;
}
.offer_btn {
  background: var(--primary_color);
  border: 2px solid var(--primary_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
}
.offer_btn:hover {
  border: 2px solid var(--primary_color);
  color: var(--primary_color);
}
  .overlay-triangle p{
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .overlay-triangle-premium p{
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .overlay-triangle-special p{
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .coupon-row {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
    border: 2px dashed #dddddd;
    background-color: #FAFCFF;
    border-radius: 60px;
    padding: 15px;
}
.redeem-btn:hover{
  background: var(--alpha_color) !important;
    border: 2px solid var(--alpha_color) !important;
    color: var(--btn_text_color) !important;
}
.remaining-days{
  background-color: #FFEBA3 !important;
  color: #FF5722 !important;
  padding: 10px;
}
/* offer listing page css end */
/* home page offer css */
.offer-bg-img {
  position: relative;
  display: flex;
  background-image: url("/assets/img/offers-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 398px;
  align-items: center;
}

.offer-content {
  position: absolute;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 27%;
  transform: translate(-50%, -50%);
}

.btn-circle.btn-xl {
  width: 260;
  height: 260;
  padding: 10px 16px;
  border-radius: 100%;
  font-size: 16px;
  line-height: 1.33;
}

.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
}

.approve-feature {
  background-color: #8AEEEE;
  /* border-color:#8AEEEE; */
  border: none;
}

.negotiation-feature {
  background-color: #CDFFD8;
  /* border-color:#CDFFD8; */
  border: none;
}

.unfilled-feature {
  background-color: #FFD6C9;
  /* border-color:#FFD6C9; */
  border: none;
}

.upcoming-feature {
  background-color: #FFBBBB;
  /* border-color:#FFBBBB; */
  border: none;
}

.approve-feature:hover {
  background-color: #55e7e7;
  /* border-color:#8AEEEE; */
  border: none;
}

.negotiation-feature:hover {
  background-color: #b8efc4;
  /* border-color:#CDFFD8; */
  border: none;
}

.unfilled-feature:hover {
  background-color: #ffc6b3;
  /* border-color:#FFD6C9; */
  border: none;
}

.upcoming-feature:hover {
  background-color: #ff9a9a;
  /* border-color:#FFBBBB; */
  border: none;
}

.feature_view {
  color: #003399;
  font-size: 16px;
  font-weight: 600;
}

.d-card-header {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background-color: #cdffd8;
  color: #1D1D1D;
  font-weight: bolder;
  font-size: var(--font-14);
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
}

.table {
  width: 100% !important;
}

div.dataTables_wrapper div.dataTables_length select {
  width: 100%;
  display: inline-block;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #008e1e;
  border-color: #008e1e;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: #008e1e !important;
}

.sorting {
  white-space: nowrap;
}

.table>:not(:last-child)>:last-child>* {
  border-bottom-color: currentColor;
  border-bottom: none;
}

.invoice-table th {
  background-color: #cdffd8;
  color: #1D1D1D;
  font-weight: bold;
  font-size: 16px;
}
/* end */

/* chat page css start here */
/* *******************************
message-area
******************************** */
.message-area {
  height: 73vh;
  overflow: hidden;
  padding: 0;
  background: #F2FFFF;
  margin: 0;
}

.chat-area {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 0.3rem;
  height: 73vh;
  overflow: hidden;
  min-height: calc(100% - 1rem);
}

.chatlist {
  outline: 0;
  height: 100%;
  overflow: hidden;
  width: 400px;
  float: left;
}

.chat-area .modal-content {
  border: none;
  border-radius: 0;
  outline: 0;
  height: 100%;
}

.chat-area .modal-dialog-scrollable {
  height: 100% !important;
}

.chatbox {
  width: auto;
  overflow: hidden;
  height: 100%;
  border-left: 1px solid #ccc;
}

.chatbox .modal-dialog,
.chatlist .modal-dialog {
  max-width: 100%;
  margin: 0;
}

.chat-area .form-control {
  display: block;
  width: 80%;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.chat-list h3 {
  color: #222;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
}

.chat-list p {
  color: #343434;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
}

.chat-list a.d-flex {
  margin-bottom: 15px;
  position: relative;
  text-decoration: none;
}

.chat-list .active {
  display: block;
  content: "";
  clear: both;
  position: absolute;
  bottom: 3px;
  left: 34px;
  height: 12px;
  width: 12px;
  background: #008e1e;
  border-radius: 50%;
  border: 2px solid #fff;
}

.msg-head h3 {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.msg-head p {
  color: #343434;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
}

.msg-head {
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

.msg-body ul {
  overflow: hidden;
  margin: 0 20px 0 0;
}

.msg-body ul li {
  list-style: none;
  margin: 15px 0;
}

.msg-body ul li.sender {
  display: block;
  width: 100%;
  position: relative;
}

.msg-body ul li.sender::after {
  display: block;
  clear: both;
  content: "";
  position: absolute;
  top: -6px;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #CFEED6 transparent;
  -webkit-transform: rotate(-37deg);
  -ms-transform: rotate(-37deg);
  transform: rotate(-37deg);
}

.msg-body ul li.sender p {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  padding: 15px;
  background: #CFEED6;
  display: inline-block;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 0;
}

.msg-body ul li.sender p b {
  display: block;
  color: #180660;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.msg-body ul li.repaly {
  display: block;
  width: 100%;
  text-align: right;
  position: relative;
}

.msg-body ul li.repaly:before {
  display: block;
  clear: both;
  content: "";
  position: absolute;
  bottom: 23px;
  right: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #EAEAEA transparent;
  -webkit-transform: rotate(37deg);
  -ms-transform: rotate(37deg);
  transform: rotate(37deg);
}

.msg-body ul li.repaly p {
  color: #1D1D1D;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  padding: 15px;
  background: #EAEAEA;
  display: inline-block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}

.msg-body ul li.repaly p b {
  display: block;
  color: #061061;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.msg-body ul li.repaly:after {
  display: block;
  content: "";
  clear: both;
}

.time {
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-right: 0;
  margin-top: 10px;
}



.divider {
  position: relative;
  z-index: 1;
  text-align: center;
}

.msg-body h6 {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 0;
}

.divider:after {
  display: block;
  content: "";
  clear: both;
  position: absolute;
  top: 12px;
  left: 0;
  border-top: 1px solid #ebebeb;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.send-box {
  padding: 15px 15px 0 15px;
  border-top: 1px solid #ccc;
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
}

.chat-header h5 {
  margin: 10px;
}

.send-box form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.send-box .form-control {
  display: block;
  width: 85%;
  height: 46px !important;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #222;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.send-box button {
  border: none;
  background: #008E1E;
  padding: 0.375rem 5px;
  color: #fff;
  border-radius: 100%;
  font-size: 18px;
  font-weight: 400;
  width: 50px;
  height: 50px;
  margin-left: 1%;
}

.send-box .alert-secondary {
  font-size: 13px;
  line-height: 1.5;
  padding: 5px;
}

.send-box button i {
  margin-right: 5px;
}

.send-btns .button-wrapper {
  position: relative;
  width: 125px;
  height: auto;
  text-align: left;
  margin: 0 auto;
  display: block;
  background: #f6f7fa;
  border-radius: 3px;
  padding: 5px 15px;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}

.send-btns .button-wrapper span.label {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: #343945;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 13px;
}

.send-btns .attach .form-control {
  display: inline-block;
  width: 120px;
  height: auto;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #343945;
  background-color: #f6f7fa;
  background-clip: padding-box;
  border: 1px solid #f6f7fa;
  border-radius: 3px;
  margin-bottom: 5px;
}

.send-btns .button-wrapper span.label img {
  margin-right: 5px;
}

.chat-icon {
  display: none;
}

.closess i {
  display: none;
}

/* chat page css end here */
/* onboarding popup css */
.onboarding-img {
  margin-top: 60px;
  width: 300px;
  display: block;
  margin: 0 auto;
}

.carousel-indicators .active {
  opacity: 1 !important;
  background-color: #008E1E !important;
  border-radius: 10px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 7px;
  padding: 0;
  margin-right: 5px;
  margin-left: 5px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #D2D8E3;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
  border-radius: 10px;
}

.carousel-fade .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-color: unset;
  opacity: 1;
}

.carousel-fade .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-color: unset;
  opacity: 1;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-color: unset;
  filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(2282%) hue-rotate(131deg) brightness(104%) contrast(102%);
  opacity: 1;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-color: unset;
  filter: brightness(0) saturate(100%) invert(21%) sepia(99%) saturate(2282%) hue-rotate(131deg) brightness(104%) contrast(102%);
  opacity: 1;
}

.carousel-indicators {
  margin-bottom: 0 !important;

}

/* onboarding popup css end */

/* end dashboard page */

/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #1D1D1D;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #008E1E;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  /* padding-bottom: 10px; */
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* Recent Sales */
/* .dashboard .recent-sales {
  font-size: 14px;
} */

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  .footer .footer-links ul i {
    color: #ffffff !important;
 }
  .footer .footer-links ul:hover i {
     color: #008e1e !important;
  }

html,
body {
  height: 100%;
  /* Ensure body takes up full height */
  margin: 0;
  /* Remove default margin */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-chat-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 93vh;
  height: 100%;
}

.main {
  flex: 1;
}

.footer {
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}



.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

#spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
}




.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link:active,
a.nav-link.active {
  color: #ffffff !important;
  background: var(--secondary_color);
}

.image_circle {
  width: 49px;
  height: 49px;
  border-radius: 100%;
  object-fit: cover;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #E2E9F4 !important;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #E2E9F4 !important;
}



.was-validated .form-check-input:valid~.form-check-label {
  color: #1D1D1D !important;
}



.redirect_buttons {
  position: relative;
  display: flex;
  justify-content: center;
}



.redirect_buttons button {
  position: absolute;
  top: 0;
}

.color_option_01 {
  color: #F27712;
  margin-right: 20px;
  font-weight: bold;
}

.color_option_02 {
  color: #FFBE00;
  margin-right: 20px;
  font-weight: bold;
}

.color_option_03 {
  color: #008E1E;
  margin-right: 20px;
  font-weight: bold;
}

.color_option_04 {
  color: #FF4747;
  margin-right: 20px;
  font-weight: bold;
}

.color_option_05 {
  color: #003399;
  margin-right: 20px;
  font-weight: bold;
}

.swal2-actions .swal2-confirm {
  background-color: #008E1E !important;
  border-radius: 12px !important;
}

.swal2-actions .swal2-cancel {
  background-color: #DC3545 !important;
  border-radius: 12px !important;
}

.swal2-actions .swal2-confirm:hover {
  background-image: unset !important;
  background-color: transparent !important;
  border: 1px solid #008E1E !important;
  color: #008E1E !important;
}

.swal2-actions .swal2-cancel:hover {
  background-image: unset !important;
  background-color: transparent !important;
  border: 1px solid #DC3545 !important;
  color: #DC3545 !important;
}

.swal2-title {
  color: #000000 !important;
}

.image_circle {
  width: 49px;
  height: 49px;
  border-radius: 100%;
  object-fit: cover;

}

.add_new_location_row {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  box-sizing: content-box;
  overflow: auto;
}

.seeprevious_btn {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  position: fixed;
  right: 0;
  z-index: 1;
  top: 55%;
  left: auto;
}

.seeprevious_btn:hover {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
}

.clickable-row {
  cursor: pointer;
}

/* location smooth scrolling */
.nav-scroller {
  position: relative;
  z-index: 2;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  -webkit-overflow-scrolling: touch;
}

.next_btn {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  position: fixed;
  right: 0;
  z-index: 999;
  top: 47%;
  left: auto;
}

.next_btn:hover {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
}

.prev_btn {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  position: fixed;
  right: 0;
  z-index: 999;
  top: 55%;
  left: auto;
}

.prev_btn:hover {
  background: var(--alpha_color);
  border: 2px solid var(--alpha_color);
  color: var(--btn_text_color);
}

.output-field {
  font-size: 14px;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 5px;
  background-color: #FAFCFF !important;
  color: #1D1D1D;
  border: 1px solid #E2E9F4;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
}
div:where(.swal2-icon) {
  width: 3em !important;
  height: 3em  !important;
}
div:where(.swal2-container) h2:where(.swal2-title){
  font-size: 22px !important;
}
.location-multi-feild-content {
  font-weight: 400;
  padding: 5px;
  background-color: #E7FFEC !important;
  color: #008E1E;
  border: 1px solid #E7FFEC;
  border-radius: 5px;
  margin: 0 2px;
  text-wrap: nowrap;
  cursor: pointer;
}

.location-feild-content {
  font-weight: 500;
  margin-left: 10px;
}

/* Location page css end here */

.circle {
  display: inline-table;
  vertical-align: middle;
  width: 25px;
  height: 23px;
  background-color: #FF5722;
  border-radius: 50%;
}

.circle__content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #FFFFFF;
}

.text_circle {
  display: inline-table;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  background-color: #003399;
  border-radius: 50%;
}

.text_circle__content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.grid-wrapper {
  --auto-grid-min-size: 12rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill,
      minmax(var(--auto-grid-min-size), 1fr));
}

.primary-btn {
  background: var(--btn_bg_color);
  border: 2px solid var(--btn_border_color);
  color: var(--btn_text_color);
  height: var(--btn_height);
  border-radius: var(--b_radius);
  font-size: var(--font-14);
  font-weight: var(--f_weight);
  padding: 5px 15px;
  line-height: 1.8;
}

.primary-btn:hover {
  border: 2px solid var(--btn_border_color);
  color: #008E1E;
  padding: 5px 15px;
}

.datatable-table>tbody>tr>th {
  vertical-align: middle !important;
}

.datatable-table>tbody>tr>td {
  vertical-align: middle !important;
}

.table>tbody>tr>th {
  vertical-align: middle !important;
}

.table>tbody>tr>td {
  vertical-align: middle !important;
}



div.dataTables_wrapper div.dataTables_length select {
  width: 70px;
  display: inline-block;
}

.password-requirements p {
  margin: 0 0 10px;
}

.password-requirements ul {
  list-style: none;
  padding: 0;
  list-style-type: disc;
  /* This sets default bullets */
  padding-left: 20px;
  /* Adjust spacing for bullets */
  font-size: 11px;
  margin-top: 10px;
}

.password-requirements li {
  margin-bottom: 5px;
}

.password-requirements .valid {
  color: green;
  margin-top: -4px;
}

.password-requirements .invalid {
  color: red;
  margin-top: -4px;
}

.carousel-control-next,
.carousel-control-prev {
  top: 47%;
  width: 45px;
  height: 40px;
  z-index: 100;
  display: block;
  font-size: 24px;
  cursor: pointer;
  overflow: hidden;
  line-height: 43px;
  text-shadow: none;
  position: absolute;
  font-weight: normal;
  background: transparent;
  border: none;
}

.skills-software-content {
  min-width: 100%;
  width: 340px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}

.slider-content h2 {
  color: #ffffff;
}

.slider-content p {
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.status-card {
  height: 30vh !important;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-height: 270px !important;
}
.modal-footer{
  margin-left: 0 !important;
}
/* Responsive Media Query Start Here */
@media (max-width: 2560px) and (min-width:1921px) {
  h5{
    font-size: var(--font-18);
  }
  .card-title{
    font-size: var(--font-18);
  }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
  }
  .sidebar-nav .nav-link {
    font-size: var(--font-18);
  }
  .sidebar-nav .nav-heading {
     font-size: var(--font-14);
  }
  .new_modal-dialog{
    max-width: 900px !important;
  }
  .modal-title{
    font-size: var(--font-18);
  }
  .did-floating-input, .did-floating-select ,.did-floating-label{
      font-size: var(--font-18);
  }
  .table>:not(caption)>*>* {
    font-size: var(--font-16);
  }
  .footer {
    font-size: var(--font-16);
  }
  .view-more {
    left: 10px;
  }
  .perks p{
     font-size: var(--font-16);
  }
  .small_text{
   font-size: var(--font-16);
  }
  .auto-select{
    font-size: var(--font-18);
  }
  .jobs-card span{
    font-size: var(--font-20);
  }
}
@media(max-width:1497px){
  ul.take-action-section{
    gap:20px;
    padding: 0;
    margin: 0;
  }
  ul.take-action-section li{
    flex: 1 1 200px;
    max-width: 220px;
  }
  .take-action-01, .take-action-02, .take-action-03, .take-action-04 {
    width: 220px;
    height: 220px;
    padding: 30px 10px;
  }
  .take-action-section .action-icon {
    width: 60px;
    margin-bottom: 7px !important;
}
.take-action-section h6 {
  font-size: 13px;
  margin-bottom: 5px;
}

}
@media(max-width:1267px){
  .view-more-action{
    font-size: 10px;
  }
  ul.take-action-section{
    gap:10px;
    padding: 0;
    margin: 0;
  }
  ul.take-action-section li{
    flex: 1 1 160px;
    max-width: 170px;
  }
  .take-action-01, .take-action-02, .take-action-03, .take-action-04 {
    width: 160px;
    height: 160px;
    padding: 20px 5px;
  }
  .take-action-section .action-icon {
    width: 50px;
    margin-bottom: 10px !important;
}
.request-number{
  font-size: 20px;
  margin-bottom: 0px !important;
}
.take-action-section h6 {
  font-size: 10px;
  margin-bottom: 0;
}
}
@media (max-width: 1440px)  {
  .creditcard.grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* sidebar css */
  .sidebar-nav .nav-link{
    font-size: var(--font-14);
  }
  .dashboard .post-shift{
  padding: 15px !important;
  }
  .dashboard .permenent-post{
    padding: 15px !important;
  }
  .view-more {
    left: 0;
    font-size:var(--font-14);
  }
  .card-icon img{
  width: 60px;
  }
  .take-action-request{
  gap:1rem !important;
  }
  .d-card-header h4{
    font-size: var(--font-16);
  }
  .table .table-title th{
    font-size: var(--font-14);
  }
  .card-box h4{
    font-size: var(--font-16);
  }
  .output-field{
    padding: 0 10px;
  }
  /* popup screen css */
  .modal-header{
    padding: 10px;
  }
  .modal-dialog .modal-body{
    padding: 10px 10px 0 10px;
  }
  .form-control {
    border-radius: 8px !important;
    height: 40px !important;
    background-color: transparent;
    border-color: var(--border-color);
  }
  .did-floating-label-content {
    margin-bottom: 5px;
  }

  /* end popup css */

  /* home page carousal slider css start */
  .carousel-caption{
    top:40%;
  }
  /* home page carousal slider css End */
  .send-box button{
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1200px) {
  #main,
  #footer {
    margin-left: 300px;
  }
  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }
  .toggle-sidebar .sidebar {
    left: -300px;
  }
  .logo {
    width: 280px;
  }
}

@media (max-width: 1200px) {
  .creditcard.grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .overlay-triangle {
    width: 100%;
}
.overlay-triangle-premium{
  width: 100%;
}
.overlay-triangle-special{
  width: 100%;
}
}
@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
  .sidebar {
    left: -300px;
  }
  .toggle-sidebar .sidebar {
    left: 0;
  }
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1024px) {
.creditcard.grid {
  grid-template-columns: repeat(2, 1fr);
}
.next_btn {
  top: 47%;
}
}
@media (max-width: 991px) {
  .invite-button-side {
    display: block !important;
  }

  #accept_all,
  #renegotiate_all,
  #chat #next {
    font-size: 12px !important;
  }

  .negotiation_buttons {
    display: flex !important;
  }

  .negotiation_title_right {
    display: block !important;
    text-align: left !important;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@media (max-width: 767px) {
 .notes{
    display: block !important;
  }
  .add_more_show{
    margin-top: 25px;
  }
  .subscriptions.grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .subscriptions .card{
    margin-bottom: 0;
  }
  .creditcard.grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .creditcard .card{
    margin-bottom: 0;
  }
  .overlay-triangle {
    width: auto;
}
.overlay-triangle-premium{
  width: auto;
}
.overlay-triangle-special{
  width: auto;
}
  .carousel-control-prev-icon, .carousel-control-next-icon{
    display: none;
  }
  #main {
    padding: 15px;
  }
  .chat-icon {
    display: block;
    margin-right: 5px;
  }
  .chatlist {
    width: 100%;
  }
  .chatbox {
    width: 100%;
    position: absolute;
    left: 1000px;
    right: 0;
    background: #fff;
    transition: all 0.5s ease;
    border-left: none;
  }
  .showbox {
    left: 0 !important;
    transition: all 0.5s ease;
  }
  .msg-head h3 {
    font-size: 14px;
  }
  .msg-head p {
    font-size: 12px;
  }
  .chat-list h3 {
    font-size: 14px;
  }
  .chat-list p {
    font-size: 12px;
  }
  .msg-body ul li.sender p {
    font-size: 13px;
    padding: 8px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .msg-body ul li.repaly p {
    font-size: 13px;
    padding: 8px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .negotiation_buttons {
    display: block !important;
  }
  .negotiations button {
    width: 100% !important;
    margin: 0 auto !important;
    justify-content: center;
  }
  .negotiation_button_left {
    display: block !important;
  }
  .desktop_logo {
    display: none !important;
  }
  .mobile_logo {
    display: block !important;
  }
  .play-store img {
    width: 60px;
  }
  .app-store img {
    width: 60px;
  }
  .header-nav .nav-icon {
    margin-right: 10px;
  }
  .carousel-caption {
    max-width: 96% !important;
  }
  .carousel-item {
    height: 300px;
  }
  .carousel-caption h5 {
    font-size: 1.25rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  /* .overlay-background {
    width: 100% !important;
    height: 100% !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
  } */
  .carousel-caption{
    top:45%;
  }
  .pagetitle h1{
    font-size: var(--font-16);
  }
}

@media (min-width: 576px) {
  .new_modal-dialog {
    max-width: var(--newbs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .postjob-modal {
    max-width: var(--postjob-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  #jobpost_questionnaire_form h6 {
    min-height: 33px;
    font-weight: bold;
  }
}

@media (max-width: 575px) {
  .header-nav .badge-number {
    inset: -10px 0px 0 0;
    font-size: 10px;
    width: 22px;
    padding: 5px 4px 3px 2px;
    height: 22px;
    border-radius: 20%;
}
  .app-store img {
    width: 55px;
  }
  .play-store img {
    width: 55px;
  }
  .header-nav .nav-icon {
    margin-right: 5px;
    font-size: 19px;
  }
  .header-nav .nav-profile img {
    width: 30px;
    height: 30px;
  }
  .header .toggle-sidebar-btn{
    padding-left: 5px;
    font-size: 27px;
  }
  .language-header h5{
    font-size: 14px;
  }
  .language-header img{
    width: 20px;
  }
  .mobile_logo img{
    width: 30px;
  }
  .creditcard.grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .creditcard .card{
    margin-bottom: 0;
  }
  .negotiations_radio_btn {
    display: block !important;
  }
  .negotiation_title {
    display: block !important;
  }
  .negotiation_title_left {
    display: block !important;
  }
  .negotiation_title_right {
    display: block !important;
    text-align: left !important;
  }
  .content-full {
    display: block !important;
  }
  #jobpost_questionnaire_form h6 {
    min-height: 10px;
  }
  .main-title-breadcrumb {
    display: block !important;
  }
  .left-breadcrumb-section .pagetitle .breadcrumb {
    margin-bottom: 0;
  }
  .right-search-section {
    margin: 20px 0;
  }
  .pagetitle {
    margin-bottom: 0;
  }
  .carousel-item {
    height: 200px;
    /* Adjust the height for smaller screens */
  }
  .carousel-caption h5 {
    font-size: 1rem;
  }
  .carousel-caption p {
    font-size: 0.875rem;
  }
  .carousel-caption h5 {
    font-size: 1.25rem;
  }
  .carousel-caption p {
    font-size:12px !important;
  }
  .carousel-caption h2 {
    font-size:25px !important;
  }
   .next_btn {
    top:47%;
  }
  .dashboard-offer-sliders .overlay-background-reliefguru {
    width: 100%;
  }
 .overlay-background-reliefguru {
    width: 100%;
  }
  .overlay-background-premium {
    width: 100%;
  }
   .overlay-background-special {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .modal-footer button {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

/* Responsive Media Query End Here */


    /* Setting css start here */
/* image upload css start */
.profile-pic-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-image: url("./assets/img/profile-placeholder.png");
}
.pic-holder {
  text-align: center;
  position: relative;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;

}

.pic-holder .pic {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;

}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(90, 92, 105, 0.7);
  color: #f8f9fc;
  font-size: 12px;
  font-weight: 500;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pic-holder .upload-file-block {
  cursor: pointer;
}
.uploadProfileInput {
  width: 0px;
  height: 0px;
  position: absolute;
}
.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus ~ .upload-file-block {
  opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
  display: none;
}

.pic-holder.uploadInProgress .upload-loader {
  opacity: 1;
}

/* Snackbar css */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 14px;
  transform: translateX(-50%);
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/* image upload css end */
.hide-show-password_set{
  position: relative;
  text-align: left;
}
.show-password_set{
  position:absolute;
  right:30px;
  left:auto;
  top:15px;
  cursor: pointer;
  color: #7A7A7A;
}
.hide-password_set{
  position:absolute;
  right:30px;
  left:auto;
  top:15px;
  cursor: pointer;
  color: #7A7A7A;
}
  /* Setting css end */

.city-lable{
  margin-bottom: 20px;
}

.feedback_active{
  box-sizing: border-box !important;
  background: linear-gradient(134.23deg, #008E1E 34.73%, #003399 92.01%) !important;
  border: 4px solid #008E1E !important;
  border-radius: 25px !important;
}

.unselectable {
  user-select: none; /* Prevents selection */
  pointer-events: none; /* Disables interaction */
}
.redeem-btn:hover img{
  filter: invert(0%) sepia(0%) saturate(7500%) hue-rotate(177deg) brightness(101%) contrast(103%);
}


.multiShiftCard{
  display: grid;
}
.multiShiftCard span.auto-select{
  text-align: end;
}
.multiShiftCard img{
  margin-right: 5px;
}
