.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
}

button.theme-btn {
  font-family: "Inter";
  background: #0b907b;
  border-radius: 5px;
  color: #fff;
  padding: 6px 15px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.1px;
  border: none;
  border: 2px solid #0b907b;
  transition: all 0.4s;
  cursor: pointer;
}

button.theme-btn:hover,
button.theme-btn:focus {
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px,
    rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 6px 14px,
    rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 8px 20px;
}

button.white-btn:hover,
button.white-btn:focus {
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px,
    rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 6px 14px,
    rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 8px 20px;
}

div#wrapper {
  background: #f7f9fc;
  /* min-height: 100vh; */
  display: flex;
}

#wrapper #content-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.page-wrapper {
  padding: 12px 24px 24px;
  padding-bottom: 0;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 32px; */
}

h3.page-title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #232d38;
  margin-bottom: 0;
}

.page-content {
  background: #ffffff;
  box-shadow: 0px 8px 12px rgb(20 31 43 / 4%), 0px 2px 6px rgb(20 31 43 / 8%);
  border-radius: 6px;
  padding: 48px 72px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  margin-bottom: 0 !important;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

button.btn.theme-btn img {
  width: 20px;
  height: auto;
  margin-left: 12px;
  vertical-align: sub;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dbe2e9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch input:checked + .slider {
  background-color: #0b907b;
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #0b907b;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.switch-box span.switch-label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #6e7f91;
  margin-left: 16px;
}

.switch-box {
  display: flex;
  align-items: center;
}

/* Rounded sliders */
.switch .slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.btn-section {
  margin-top: 40px;
}

button.btn.theme-btn img {
  width: 16px;
  height: auto;
  margin-left: 12px;
  vertical-align: middle;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #f2f2f2;
  background: #ccc;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

.extra a img {
  width: 19px;
  height: auto;
}

/* Scroll Bar  */

.scroll.no-scroll::-webkit-scrollbar-track {
  background-color: white;
}
.scroll.show-scroll::-webkit-scrollbar-track {
  background-color: #ccc;
}

.scroll.no-scroll::-webkit-scrollbar-thumb {
  background-color: white;
}
.scroll.show-scroll::-webkit-scrollbar-thumb {
  background-color: grey;
}

/* nav.navbar ul.navbar-nav li.nav-item .nav-link img {
  width: 20px;
  height: auto;
} */

button.btn.white-btn img {
  width: 16px;
  height: auto;
  vertical-align: middle;
}

button.btn.back-btn img {
  margin-right: 12px;
}

button.btn.white-btn {
  font-family: "Inter";
  background: #fff;
  border-radius: 5px;
  color: #0b907b;
  padding: 8px 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.1px;
  border: 2px solid #0b907b;
  box-sizing: border-box;
  height: 40px;
}

button.btn.white-btn.back-btn {
  margin-right: 16px;
}

.form-group.pwd-field input {
  padding-right: 40px;
}

.form-group.pwd-field {
  position: relative;
}

.form-group.pwd-field img {
  position: absolute;
  right: 12px;
  width: 20px;
  bottom: 14px;
  opacity: 0.8;
  cursor: pointer;
}

.form-group.pwd-field img .error-message-box {
  bottom: 43px;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.5;
  box-shadow: none !important;
  cursor: not-allowed;
}

select.form-control {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #3f4b57;
  cursor: pointer;
}

.modal-backdrop.show {
  background: rgba(247, 249, 252, 0.5);
  backdrop-filter: blur(24px);
  opacity: 1;
}

a {
  cursor: pointer;
}

.page-content.common-page-content {
  padding: 32px;
  height: calc(100vh - 136px);
  overflow-y: auto;
}
.page-content {
  height: calc(100vh - 158px);
  overflow-y: auto;
  overflow-x: hidden;
}
.vehicle-form .form-group {
  margin-bottom: 16px;
}

.contctform-btns.btntopmargin {
  margin-top: 32px;
}

.form-save-btn.common-savebtn {
  margin-top: 30px;
}

.modal-content {
  background: #ffffff;
  box-shadow: 0px 8px 12px rgb(20 31 43 / 4%), 0px 2px 6px rgb(20 31 43 / 8%);
  border-radius: 12px;
  border: none;
}

.modal-dialog {
  width: 424px;
  max-width: 95%;
  top: 50%;
  transform: translateY(-50%) !important;
  margin-top: 0;
  margin-bottom: 0;
}

.modal-body {
  padding: 48px;
}

div#update_password_Modal .modal-dialog {
  width: 528px;
}

div#update_password_Modal .modal-dialog .modal-header h3 {
  margin-bottom: 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  color: #232d38;
}

div#update_password_Modal .modal-dialog .modal-header {
  padding: 40px;
  justify-content: center;
  border-bottom: 2px solid #dbe2e9;
}

div#update_password_Modal .modal-dialog .modal-body {
  padding: 24px 40px;
}

div#update_password_Modal .modal-dialog .modal-footer button.btn.btn-link {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
}

div#update_password_Modal .modal-dialog .modal-footer {
  padding: 30px 40px;
}

.form-group.disable {
  opacity: 0.5;
}

.org-user-tab .max-quantity-box input.form-control {
  width: auto;
  background-image: url(../images/input-search.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 40px;
}

.org-user-tab {
  padding: 24px 24px 32px;
  border-bottom: 1px solid #dbe2e9;
  margin-bottom: 48px;
}

.org-table select.form-control {
  height: 38px !important;
  min-width: 145px;
}

.page-content.notification-page-content {
  padding: 0;
  overflow: hidden;
}

table.table.notification-table thead th {
  border: none;
  background: #fcfcfc;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #576473;
  padding: 24px;
  /*box-shadow: inset 0px -1px 0px #eff3f6;*/
  border-bottom: 1px solid #eff3f6;
  white-space: nowrap;
}

table.table.notification-table tbody tr td:first-child {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  text-align: right;
  letter-spacing: 0.1px;
  color: #232d38;
  padding: 29px 24px;
  width: 168px;
  background: #fcfcfc;
  box-shadow: inset -1px 0px 0px #dbe1e9;
  white-space: nowrap;
  border-bottom: 1px solid #eff3f6;
}

table.table.notification-table tbody tr td {
  vertical-align: middle;
  border: none;
  /*box-shadow: inset 0px -1px 0px #eff3f6;*/
  border-bottom: 1px solid #eff3f6;
  padding: 12px 24px;
}

table.table.notification-table tbody tr td span.switch-label {
  color: #576473;
  margin-left: 0;
  margin-right: 12px;
}

table.table.notification-table {
  margin-bottom: 0;
}

.blank-cell {
  min-width: 250px;
}

table.table.notification-table tbody tr td .switch-box.mb-2 {
  margin-bottom: 12px !important;
}

table.table.notification-table
  tbody
  tr
  td
  .switch-box
  .switch
  input:checked
  + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

table.table.notification-table tbody tr td .switch-box .switch .slider::before {
  width: 12px;
  height: 12px;
  bottom: 2px;
  left: 3px;
}

table.table.notification-table tbody tr td .switch-box .switch {
  height: 16px;
  width: 30px;
}

ul.daylist li.dayname:last-child a {
  border-radius: 0 5px 5px 0;
}

ul.daylist li.dayname:first-child a {
  border-radius: 5px 0 0 5px;
}

ul.daylist li.dayname {
  width: 100%;
  margin-left: -2px;
}

ul.daylist {
  display: flex;
  width: 100%;
  list-style-type: none;
  padding: 0;
  justify-content: stretch;
  padding-left: 2px;
  border-radius: 5px;
}

ul.daylist li.dayname a {
  display: block;
  background: #ffffff;
  border: 2px solid #0b907b;
  padding: 6px 6px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  color: #0b907b;
  justify-content: center;
}

ul.daylist li.dayname a:hover {
  text-decoration: none;
}

ul.daylist li.dayname a:hover {
  text-decoration: none;
  background: #eff3f7;
}

ul.daylist li.dayname a.active,
ul.daylist li.dayname a.active:hover {
  background: #0b907b;
  box-shadow: inset -2px 0px 0px #0b907b, inset 0px -2px 0px #0b907b,
    inset 0px 2px 0px #0b907b;
  color: #fff;
}

.home-screen-message.avail-home-cust {
  margin-top: 24px;
}

.cust-s-head h3.hcm-title {
  margin-bottom: 0;
}

.cust-s-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.col-sm-5.dateend {
  padding-left: 0;
}

.col-sm-5.datestart {
  padding-right: 0;
}

@media (max-width: 1200px) {
  .blank-cell {
    min-width: 150px;
  }
}

@media (max-width: 991px) {
  .page-content {
    padding: 24px;
  }

  .page-wrapper {
    padding-left: 12px;
  }

  .org-user-tab {
    padding: 0 0 24px;
    margin-bottom: 24px;
  }

  div#update_password_Modal .modal-dialog .modal-header {
    padding: 32px;
  }

  div#update_password_Modal .modal-dialog .modal-header h3 {
    font-size: 21px;
    line-height: 28px;
  }

  .blank-cell {
    min-width: 50px;
  }

  .blank-cell {
    min-width: 50px;
  }
}

.site-content-right {
  padding: 24px;
  background: #fff8e9;
  border: 1px solid #ffebbf;
  border-radius: 8px;
}

tbody tr.odd:hover {
  cursor: pointer;
}

.quick-action-container {
  position: relative;
  width: fit-content;
}

.quick-approval-action-container {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 5px;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.quick-approval-action-container:hover {
  opacity: 1;
  z-index: 1;
}

.quick-approval-action-container ~ span {
  opacity: 1;
  transition: all 0.3s ease;
}

.quick-approval-action-container:hover ~ span {
  transform: translate(0px, -7px);
  opacity: 0;
}

.quick-approval-action-container > button {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quick-approval-action-container > button:hover {
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px,
    rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 6px 14px,
    rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 8px 20px;
}

.quick-approval-action-container > button:first-child {
  margin-right: 10px;
}

.quick-approval-action-container_approve-button {
  background: #e3f1ff;
  border: 1.5px solid #004996;
}

.quick-approval-action-container_decline-button {
  background: #ffecfc;
  border: 1.5px solid #960035;
}

.quick-approval-action-container_checkin-button {
  background: #b8fbf0;
  border: 1.5px solid #085e50;
}

.quick-approval-action-container_refuse-button {
  background: #fff8e9;
  border: 1.5px solid #9c6800;
}

.quick-approval-action-container_checkout-button {
  background: #eaf9de;
  border: 1.5px solid #056305;
}

/* new-style-css */
/* .add-user-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  margin-bottom: 10px;
} */

/* .delete-div {
  position: relative;
} */

/* img.delete-svg {
  width: auto;
  height: 18px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin: 16px auto;
  cursor: pointer;
} */
.delete-div {
  position: absolute;
  transform: translate(-50%, -50%);
  left: auto;
  right: -12%;
  display: inline-block;
  top: 65%;
  bottom: 0;
  cursor: pointer;
  height: 100%;
}

.remove-text {
  display: block;
  height: 100%;
}

.remove-text span {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  color: #f24e1e;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
}

img.delete-svg {
  width: auto;
  height: 18px;
  object-fit: contain;
}

.show-tooltip {
  opacity: 0;
  visibility: hidden;
  background: #eff3f7;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 30px;
  min-height: 150px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
  width: fit-content;
  position: absolute;
  right: 0;
  z-index: 1;
  transform: translate(100%, 0);
  left: 40%;
  top: -15%;
  margin-right: -5%;
}

.show-tooltip:after {
  content: "";
  border-style: solid;
  border-width: 20px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top-color: #fff;
  border-right-color: #eff3f7;
  border-bottom-color: #eff3f7;
  border-left-color: #ffff;
  left: -3%;
  top: 12%;
  border-top: 0;
  border-left: 0;
  /* border-right: 0; */
  transform: rotate(135deg);
}

div#update_password_Modal .display-tootltip {
  position: relative;
}

div#update_password_Modal .display-tootltip:hover .show-tooltip {
  opacity: 1;
  visibility: visible;
}

.show-tooltip ul {
  display: grid;
}

.custom-form .show-tooltip {
  width: 100%;
  left: 5%;
  top: -20%;
  margin-right: -5%;
}

.show-tooltip ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

/* div#update_password_Modal .form-control:focus div#update_password_Modal .display-tootltip:hover .show-tooltip, div#update_password_Modal .form-control:active div#update_password_Modal .display-tootltip:hover .show-tooltip {
  opacity: 1;
  visibility: visible;
} */

.availability-margin .col-sm-2.date-to {
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn.save-accountdetail:focus {
  outline: 0;
}

.btn-sec.invite-link {
  margin-top: 0;
}

@media (max-width: 991px) {
  .show-tooltip {
    transform: translate(0, 0);
    left: 50%;
    margin-right: -5%;
    top: unset;
  }

  .show-tooltip:after {
    left: 50%;
    top: -5%;
  }
}

.add-user-wrapper {
  position: relative;
  margin-right: 0;
}

/* calendar page css */

.calendar-header-block {
  padding: 0 80px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.calendar-header-block ul.daylist {
  width: max-content;
}
.info-cd-text .divide {
  background: #dbe2e9;
  height: 12px;
  width: 2px;
  margin: 0 4px;
}
.cd-ticket-block {
  background: #ffffff;
  box-shadow: 0px 8px 12px rgba(20, 31, 43, 0.04),
    0px 2px 6px rgba(20, 31, 43, 0.08);
  border-radius: 2px;
  display: flex;
  flex-flow: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 8px 12px rgba(20, 31, 43, 0.04),
    0px 2px 6px rgba(20, 31, 43, 0.08);
  padding: 10px 0px;
}

.cd-detail-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 4px;
}

.info-cd-text {
  display: flex;
  align-items: center;
}

.info-cd-text p {
  margin-bottom: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.1px;
  color: #576473;
  white-space: nowrap;
}

.mine-text span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: #576473;
  background: #f7f9fc;
  border-radius: 2px;
  padding: 2px 4px;
}

.cd-ticket-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 5px;
  padding: 0;
  list-style: none;
  margin-bottom: 8px;
}
.cd-ticket-list ul li {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: #232d38;
  position: relative;
  padding-right: 4px;
}
.cd-ticket-list ul li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background: #a0aebd;
  transform: translate(-50%, -50%);
  top: 50%;
  left: -5px;
  border-radius: 50px;
}
.cd-ticket-list {
  padding-left: 4px;
  line-height: 10px;
  display: flex;
  justify-content: space-between;
}

.cd-ticket-list ul li:first-child {
  position: unset;
}
.inner-half-hour {
  height: 28px;
  box-sizing: border-box;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #576473;
}
h3.mh-title {
  margin: 0;
  height: 28px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #576473;
}

.inner-half-hour p {
  margin-bottom: 0;
}
.left-content-div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0 16px;
}
.left-content-div .form-control-language__control {
  min-width: 220px;
  max-width: 220px;
}
.show-week-box {
  display: flex;
  align-items: center;
}
.show-week-box .form-check {
  margin-left: -16px;
}
.show-week-box label.form-check-label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 40px;
  display: flex;
  align-items: baseline;
  letter-spacing: 0.1px;
  color: #576473;
}
.show-week-box .form-check-input:checked {
  border-color: #0b907b;
}
.show-week-box .form-check-input {
  position: relative;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 2px solid #dbe2e9;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  top: 8px;
  left: 0;
  margin: 0;
  margin-right: 12px;
}
.show-week-box .form-check-input:checked::before {
  background: #0b907b;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "\2713";
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.right-content-div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  align-items: center;
}

.next-prev-icons-div {
  display: flex;
  align-items: center;
  gap: 0 14px;
}

.today-text span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  color: #576473;
  background: #eff3f7;
  border-radius: 2px;
  padding: 4px 8px;
  cursor: pointer;
}

.back-icon-box {
  background: #eff3f7;
  border-radius: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
}

.forward-icon-box {
  background: #eff3f7;
  border-radius: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
}
.next-prev-icons-div span {
  cursor: pointer;
}
span.aero-icon-box {
  background: #eff3f7;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  padding: 6px 10px;
}

/* library calendar css */
.custom-list-div .rbc-time-view {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  width: 100%;
  border: 0;
  min-height: calc(100vh - 310px);
}
.custom-list-div .rbc-time-header.rbc-overflowing {
  border-right: 0;
  background: #eff3f7;
}
.custom-list-div .rbc-row-content {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  z-index: unset;
  display: none;
}
.custom-list-div .rbc-time-content {
  border-top: 0;
}

.custom-list-div .rbc-time-header-content .rbc-header {
  overflow: hidden;
  flex: 1 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 3px;
  text-align: center;
  vertical-align: middle;
  min-height: 30px;
  border-bottom: 1px solid #ddd;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  justify-content: center;
  color: #576473;
  background: #eff3f7;
}
.custom-list-div .rbc-time-slot .rbc-label {
  padding: 0 9px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #576473;
}
.custom-list-div .rbc-label.rbc-time-header-gutter {
  min-width: 70px !important;
  background: #eff3f7;
}
.custom-list-div .rbc-timeslot-group {
  border-bottom: 0;
  min-height: 40px;
  display: flex;
  flex-flow: column nowrap;
  min-width: 70px;
  align-items: center;
  background: #eff3f7;
}

.custom-list-div .rbc-day-slot.rbc-time-column .rbc-timeslot-group {
  background: #ffff;
}

.custom-list-div
  .rbc-day-slot.rbc-time-column
  .rbc-timeslot-group:nth-child(odd) {
  background: #f7f9fc;
}
.custom-list-div .rbc-today {
  background-color: #eff3f7;
  border-bottom: 1px solid #ddd;
}
.custom-list-div .rbc-event-label {
  display: none !important;
}
.custom-list-div .rbc-event {
  border: unset;
  background: unset;
  border-color: unset;
  padding: 0;
}
.custom-list-div .rbc-day-slot .rbc-event {
  border: 0;
}

.custom-list-div .rbc-day-slot .rbc-events-container {
  /* position: unset; */
  margin-right: 0;
  border-bottom: 2px solid #eff3f7;
}
.custom-list-div .rbc-event.rbc-selected,
.custom-list-div .rbc-day-slot .rbc-selected.rbc-background-event {
  background-color: unset;
}
.ticket-block-detl-div p.For.Approval-text {
  color: #004996;
  display: inline-block;
  background: #e3f1ff !important;
  border-radius: 999px;
  padding: 4px 16px;
}

.ticket-block-detl-div {
  padding: 10px 0;
  width: 250px;
}

.ticket-block-detl-div.is-touching-top {
  bottom: -200px;
  /* transition: bottom 0.1s ease-in; */
}

.ticket-book-block-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #eff3f6;
  padding: 10px 12px;
}
.custom-ticket-detail-list ul {
  padding: 0;
  list-style: none;
}

.custom-ticket-list-content .checked_info_box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.custom-ticket-detail-list {
  padding: 16px 12px 0;
}
.custom-ticket-detail-list p.checked-info-date,
.custom-ticket-detail-list p.checked-info-time {
  font-weight: 500;
  font-size: 12px !important;
  line-height: 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.15px;
  color: #232d38;
}
.custom-ticket-detail-list p.checked-info-time span {
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.1px;
  color: #0b907b;
  padding: 2px 8px;
  display: inline-block;
  background: #b8fbf0;
  border-radius: 999px;
  margin-left: 5px;
  font-family: "Inter";
}
.custom-ticket-detail-list .checked_info_box h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  color: #576473;
  margin-bottom: 0;
  font-family: "Inter";
}
.custom-list-div .rbc-today .rbc-current-time-indicator {
  background: #ca2867;
  height: 2px;
  position: absolute;
}

.custom-list-div .rbc-today .rbc-current-time-indicator::before {
  position: absolute;
  content: "";
  width: 12px;
  background: #ca2867;
  height: 12px;
  border-radius: 50px;
  transform: translate(-50%, -50%);
  left: 0;
  top: 1px;
}
.Refused {
  border-left: 4px solid #9c6800;
  border-bottom: 2px solid #9c6800;
  background: #fff8e9;
}

.Checked.In {
  border-left: 4px solid #085e50;
  border-bottom: 2px solid #085e50;
  background: #b8fbf0;
}

.For.Approval {
  border-left: 4px solid #1f6cbf;
  border-bottom: 2px solid #1f6cbf;
  background: #e3f1ff;
}

.Scheduled {
  border-left: 4px solid #3f4b57;
  border-bottom: 2px solid #3f4b57;
  background: #eff3f6;
}

.Cancelled {
  border-left: 4px solid #ca2867;
  border-bottom: 2px solid #ca2867;
  background: #ca2867 !important;
}

.Declined {
  border-left: 4px solid #960035;
  border-bottom: 2px solid #960035;
  background: #ffecfc;
}

.Checked.out {
  border-left: 4px solid #085e50;
  border-bottom: 2px solid #085e50;
  background: #eaf9de;
}

button.cntrl-btn.plus-img:disabled,
button.cntrl-btn.minus-img:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

.height-animation {
  transition: height 0.5s ease-out;
}

.rbc-day-slot .rbc-event,
.rbc-day-slot .rbc-background-event {
  border: 1px solid #265985;
  display: flex;
  max-height: 100%;
  min-height: 20px;
  flex-flow: column wrap;
  align-items: flex-start;
  overflow: unset !important;
  position: absolute;
}
.resource-daylist ul.daylist {
  padding: 0;
  margin-left: -60px;
  margin-bottom: 0;
}

.custom-time-select .form-control-language__control {
  flex-flow: row-reverse;
}
.disabled-timeslot.rbc-day-slot.rbc-time-column {
  background-color: grey;
}
.weekend-slot.disable .rbc-timeslot-group {
  background-color: grey !important;
  opacity: 0.5;
}
.dx-draggable {
  height: 100%;
}

.cd-ticket-block.Cancelled * {
  color: #ffff;
}
.cd-ticket-block.Cancelled span {
  color: #576473;
}
.rbc-time-slot {
  transition: height 1s ease-out;
}
.day-date-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.rbc-time-content .rbc-time-column:last-child .ticket-block-detl-div,
.rbc-time-content .rbc-time-column:nth-last-child(2) .ticket-block-detl-div {
  left: auto;
  right: 50%;
}

.calendar-header-block
  .css-1yk1gt9-MuiInputBase-root-MuiOutlinedInput-root-MuiSelect-root {
  border-radius: 10px;
}

.calendar-header-block
  .MuiInputBase-root.MuiOutlinedInput-root
  .MuiSelect-select {
  height: auto;
  min-height: 1.4375em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background: #eff3f7;
  border-radius: 12px;
  border: none;
  padding: 8px 12px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #576473;
  width: 223px;
}
.rbc-time-header-cell-single-day {
  display: block !important;
}
.css-kk1bwy-MuiButtonBase-root-MuiMenuItem-root {
  font-family: "Inter" !important;
}
.hoursof-op .resource-daylist ul.daylist {
  margin-left: 0;
}
td.day-list-td {
  width: 372px;
}
.hoursof-op .resource-daylist ul.daylist li.dayname a {
  height: 48px;
}
/* project setting tabs css */

.integration-content-block {
  border: 1px solid #dbe2e9;
  border-radius: 6px;
  padding: 25px 16px 13px;
  /* width: 352px; */
  height: 100%;
}

.integration-block-title-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.integration-content-block p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #3f4b57;
}
.integration-content-block a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #0b907b;
}
.integration-content-block a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.procore-connect-modal a {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}

.procore-connect-modal .modal-body {
  padding: 32px;
}

.procore-connect-modal .modal-body p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #3f4b57;
  margin-top: 20px;
  margin-bottom: 32px;
}

.theme-btn.connect-btn {
  width: 100%;
}

.theme-btn.disconnect-btn {
  width: 100%;
  background: transparent;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #ca2867;
  border: 2px solid #ffffff;
}

.theme-btn.cancel-btn {
  background: #eff3f7;
  border-radius: 4px;
  width: 100%;
  border: 2px solid #eff3f7;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #576473;
  padding: 12px 15px;
}

.integration-form {
  padding: 0 0 32px 0;
}

.integration-form label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  color: #576473;
}

.disconnect-confirm-modal .theme-btn.disconnect-btn {
  background: #ca2867;
  border-radius: 4px;
  width: 100%;
  border: 2px solid #ca2867;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  padding: 12px 15px;
  color: #ffffff;
}
.disconnect-confirm-modal h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  color: #3f4b57;
  padding: 20px 0px;
  max-width: 70%;
  margin: 0 auto;
}

.disconnect-confirm-modal p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #576473;
  max-width: 80%;
  margin: 0 auto;
}

/* project-setting tab css */
h2.add-feature-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  color: #232d38;
  padding-bottom: 10px;
}

.integration-block-title-header h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  margin-bottom: 0;
}

.project-set-content-div .integration-content-block p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #576473;
}

.text-img-header {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.project-set-tab-modal h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  color: #232d38;
}

.project-set-tab-modal .modal-body p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #576473;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
}

.project-set-tab-modal .filtercheck-item {
  padding: 14px 0;
}

.project-set-tab-modal span.fci-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500 !important;
  font-size: 13px !important;
  line-height: 22px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  color: #576473 !important;
}

.project-set-tab-modal .filtercheck-list {
  margin-bottom: 30px;
}

div.procore-setting#disable,
div.integration-content-block#disable,
div.automatic-approval#disable {
  opacity: 0.5;
  cursor: not-allowed;
}

.vc-user-invite-procore-modal .modal-body {
  width: fit-content !important;
  min-width: 784px;
  max-height: 442px !important;
  padding: 0px !important;
}

.vc-user-invite-procore-modal .modal-dialog.modal-dialog-scrollable {
  width: fit-content !important;
}
.vc-user-invite-procore-modal a.close-link {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}

.vc-invite-from-procore-link a {
  width: 100% !important;
}
.vc-invite-from-procore-link a.invite {
  margin-top: 11px;
  color: #0b907b !important;
}

.vc-customview-daylist ul.daylist {
  margin-left: 0px;
}

a.active .vc-customview-img {
  filter: brightness(25);
}

.vc-calendar-header .right-content-div p.date-text {
  font-family: "Inter";
  margin: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  width: fit-content;
  height: 24px;
}
.vc-customview-header {
  background: #eff3f7;
}
.vc-qr-block img {
  cursor: pointer;
}
.image-modal .print-button {
  width: 172px;
}
.image-modal .close-modal-link {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}
.vc-customview-daylist ul li a {
  height: 48px;
  width: 61px;
}

.bulk-menu {
  display: flex !important;
  align-items: center;
}

.bulk-menu-change-status-button {
  outline: none;
  cursor: pointer;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px 18.5px 0px 16px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
}

.bulk-menu-change-status-button > img {
  margin-right: 14px;
}

.bulk-menu-change-status-button_approve {
  background: #0b907b;
  color: white;
}

.bulk-menu-change-status-button_refuse {
  background: white;
  color: #0b907b;
  border: 1.5px solid #0b907b;
}

.bulk-menu-change-status-button_decline {
  background: #ffffff;
  border: 1.5px solid #ca2867;
  color: #ca2867;
}

.bulk-apply-modal {
  background: rgba(247, 249, 252, 0.5);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulk-apply-modal-body {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 8px 12px rgba(20, 31, 43, 0.04),
    0px 2px 6px rgba(20, 31, 43, 0.08);
  border-radius: 6px;
  max-width: 400px;
  padding: 48px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bulk-apply-modal-body_circle {
  width: 56px;
  height: 56px;
  background: #f7f9fc;
  border-radius: 50%;
  position: relative;
  margin-bottom: 24px;
}

.bulk-apply-modal-body_circle > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bulk-apply-modal-body_action-label {
  padding: 0px 30px;
  font-family: "interregular";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #3f4b57;
  text-align: center;
  margin-bottom: 4px;
}

.bulk-apply-modal-body_action-label > span {
  text-transform: lowercase;
}

.bulk-apply-modal-body_inform-label {
  font-family: "interregular";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #576473;
  text-align: center;
  margin-bottom: 32px;
}

.bulk-apply-modal-body_buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.bulk-apply-modal-body_buttons > button {
  width: 48%;
  height: 40px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: capitalize;
}

.bulk-apply-modal-body_buttons > button:hover {
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 2px, rgb(0 0 0 / 7%) 0px 2px 4px,
    rgb(0 0 0 / 7%) 0px 4px 8px, rgb(0 0 0 / 7%) 0px 6px 14px,
    rgb(0 0 0 / 7%) 0px 8px 16px, rgb(0 0 0 / 7%) 0px 8px 20px;
}

.bulk-apply-modal-body_buttons_cancel {
  background: #eff3f7;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #576473;
}

.bulk-apply-modal-body_buttons_apply {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  color: #ffffff;
}

.bulk-apply-modal-body_buttons_apply-green {
  background: #0b907b;
}

.bulk-apply-modal-body_buttons_apply-red {
  background: #ca2867;
}

.print-button {
  position: absolute;
  top: 32px;
  right: 20px;
}

.square-logo-image {
  width: 100px !important;
  height: 100px !important;
  margin: 0px auto;
}

.outside-working-hours {
  background-color: #ddd !important;
}

/*  CHECKIN AND CHECKOUT FORM */

.status-check-in-form-block.completed-status-block {
  background: #f7f9fc;
}

.status-check-in-form-block {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #eff3f6;
  border-radius: 6px;
  padding: 12px 20px;
}

.status-check-in-form-block > div {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.status-check-in-form-block h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #3f4b57;
  margin-bottom: 0;
}

.status-check-in-form-block span {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #0b907b;
  cursor: pointer;
}

.status-check-in-form-block p {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #a0aebd;
}

.status-check-in-form-block.completed-status-block p {
  color: #0b907b;
}
