html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #132f2c;
  --secondary: #f4d57e;
}

.bg-primary {
  background: var(--primary);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-gradient {
  background-image: linear-gradient(to right, var(--primary), #1b423e);
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.border-primary {
  border-color: var(--primary);
}

.container {
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding-inline: 50px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
@media (max-width: 639.98px) {
  .container {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1300px;
  }
}
header {
  background: var(--primary);
}

.custom-field {
  position: relative;
  font-size: 16px;
  margin-bottom: 5px;
  display: inline-block;
  --field-padding: 12px;
  width: 100%;
  font-weight: 500;
}

.custom-field input {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f3f4f6 !important;
  height: 48px;
  border-radius: 12px;
  width: 100%;
  outline: none;
  line-height: 16px;
  padding-inline: 12px;
}

.custom-field .placeholder {
  position: absolute;
  left: var(--field-padding);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  top: 25px;
  line-height: 100%;
  transform: translateY(-50%);
  color: #888888;
  transition: top 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.custom-field input:not(:-moz-placeholder) + .placeholder {
  top: -10px;
  font-size: 14px;
  color: #222;
}

.custom-field input.dirty + .placeholder,
.custom-field input:focus + .placeholder,
.custom-field input:not(:placeholder-shown) + .placeholder {
  top: -10px;
  font-size: 14px;
  color: #222;
}

.custom-field.one input {
  background: none;
  border: 2px solid rgba(0, 124, 41, 0.3843137255);
  transition: border-color 0.3s ease;
  border-radius: 8px;
}

.custom-field.one input + .placeholder {
  left: 8px;
  padding: 0 5px;
}

.custom-field.one input:not(:-moz-placeholder) {
  border-color: #222;
  transition-delay: 0.1s;
}

.custom-field.one input.dirty,
.custom-field.one input:not(:placeholder-shown),
.custom-field.one input:focus {
  border-color: #222;
  transition-delay: 0.1s;
}

.custom-field.one input:not(:-moz-placeholder) + .placeholder {
  top: 0;
  font-size: 14px;
  color: #222;
  background: #f3f4f6;
  width: auto;
}

.custom-field.one input.dirty + .placeholder,
.custom-field.one input:not(:placeholder-shown) + .placeholder,
.custom-field.one input:focus + .placeholder {
  top: 0;
  font-size: 14px;
  color: #222;
  background: #f3f4f6;
  width: auto;
}

.error-msg.show {
  opacity: 1;
  visibility: visible;
}

.notification-container {
  position: relative;
  display: flex;
  align-items: center;
}
.notification-container #notification-btn {
  position: relative;
}
.notification-container #notification-btn::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #16a34a;
  display: block;
  z-index: 10000;
}

.notification-popup {
  position: absolute;
  top: 60px;
  right: 0;
  width: 298px;
  max-width: 300px;
  min-height: 240px;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: -20px 20px 60px rgba(15, 36, 34, 0.1411764706);
  border: 1px solid rgb(229, 229, 229);
  z-index: 1000;
}
@media (max-width: 1100px) {
  .notification-popup {
    top: 52px;
  }
}
@media (max-width: 639.98px) {
  .notification-popup {
    max-width: 280px;
  }
}
.notification-popup::after {
  position: absolute;
  content: "";
  right: 10px;
  top: -6px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  display: block;
  transform: rotate(-45deg);
  border-top: 1px solid rgb(225, 225, 225);
  border-right: 1px solid rgb(225, 225, 225);
}
.notification-popup .title {
  padding: 20px 16px;
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notification-popup .title .view-all {
  font-size: 13px;
  color: rgb(0, 154, 0);
  text-decoration: underline;
}
.notification-popup h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 700;
}
.notification-popup ul {
  list-style: none;
  margin: 0;
  padding-bottom: 8px;
}
.notification-popup ul li {
  padding: 8px 16px 8px 16px;
  border-bottom: 1px solid rgb(221, 255, 221);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.notification-popup ul li:last-child {
  border-bottom: none;
}
.notification-popup ul li p {
  font-size: 14px;
  line-height: 20px;
  color: black;
  font-weight: 400;
}
.notification-popup ul li span {
  font-size: 12px;
  display: block;
  font-weight: 300;
  color: green;
}
.notification-popup ul li.new-msg {
  background-color: rgb(248, 255, 248);
}
.notification-popup.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto;
}

.checklists ul li.active {
  background-color: #ffe7a6;
  font-weight: 500;
  color: var(--primary);
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

button {
  justify-content: center !important;
}

.custom-select {
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-select .select-selected {
  background-color: transparent;
  border: 1px solid var(--light);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}
.custom-select .select-selected::after {
  content: ">";
  position: absolute;
  display: inline-block;
  right: 16px;
  transform: rotate(90deg);
  color: #828282;
  opacity: 0.8;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  transition: 0.5s;
}
.custom-select .select-selected:hover {
  border-color: var(--green);
  background-color: transparent;
  box-shadow: 0 4px 30px rgba(7, 186, 99, 0.0509803922);
}
.custom-select .select-items {
  position: absolute;
  background-color: var(--white);
  border: 1px solid var(--green);
  border-radius: 6px;
  top: 110%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.custom-select .select-items div {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.custom-select .select-items div:hover {
  background-color: var(--border);
}
.custom-select .select-items div.active {
  background-color: var(--border);
}
.custom-select:has(.select-items.select-show) .select-selected::after {
  transform: rotate(-90deg);
}
.custom-select .select-show {
  opacity: 1;
  transform: translateY(0);
}
.custom-select .select-hide {
  pointer-events: none;
}
.custom-select .select-option-img {
  display: flex;
  gap: 8px;
  align-items: center;
}
.custom-select .select-option-img .option-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.custom-select.with-side-img .select-selected::after {
  top: 12px;
}

.selected-option-img {
  display: flex;
  align-items: center;
  gap: 8px;
}
.selected-option-img .option-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

@media (max-width: 767.98px) {
  .notification-container #notification-btn::after {
    right: 2px;
    top: 2px;
  }
}
.gray-cards:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.0392156863);
}

/* width */
.scrollbar-custom::-webkit-scrollbar {
  width: 4px;
}

.scrollbar-custom::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 2px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 2px;
}

.select-box {
  border-radius: 8px;
  border: 1px solid var(--light);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  height: 46px;
  padding: 8px;
  width: 100%;
  cursor: pointer;
}
.select-box option {
  border-radius: 8px;
  border: 1px solid var(--light);
}

.chat-main-wrap {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.0431372549);
}

.chat-container {
  display: flex;
  flex-direction: column;
  /*gap: 46px;*/
}
.chat-container::-webkit-scrollbar {
  width: 5px;
}
.chat-container::-webkit-scrollbar-track {
  border-radius: 2px;
}
.chat-container::-webkit-scrollbar-thumb {
  background: rgba(19, 47, 44, 0.3333333333);
  border-radius: 2px;
}
.chat-container .sender-block .sender-message {
  border-radius: 16px 16px 16px 0;
  /*background-image: linear-gradient(to left, var(--primary), var(--primary), #16a34a);*/
    background-image: linear-gradient(to left, var(--primary), var(--primary), #225752);
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.chat-input-wrap {
    box-shadow: 0 0 60px rgba(40, 225, 220, 0.25);
    transition: 0.4s;
}
.chat-input-wrap:focus {
    box-shadow: 0 0 60px rgba(40, 225, 220, 0.4);
}
@media (max-width: 767.98px) {
  .chat-container .sender-block .sender-message {
    font-size: 13px;
    line-height: 20px;
  }
}
.chat-container .receiver-block {
  display: flex;
  justify-content: end;
}
.chat-container .receiver-block .receiver-message {
  border-radius: 16px;
  background-color: #16a34a;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .chat-container .receiver-block .receiver-message {
    font-size: 13px;
    line-height: 20px;
  }
}/*# sourceMappingURL=styles.css.map */

.default-hide {
    display: none;
}


/*selected {*/
/*    display: block;*/
/*    cursor: pointer;*/
/*    width: 100%;*/
/*    height: 46px;*/
/*    border: 1px solid var(--light);*/
/*    padding: 12px;*/
/*    border-radius: 8px;*/
/*    transition: 0.3s;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*}*/
/*selector {*/
/*    position: relative;*/
/*}*/
/*selector options {*/
/*    height: auto ;*/
/*    display: none;*/
/*}*/
/*selector.open options {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: fit-content !important;*/
/*    cursor: pointer;*/
/*    background: #fff;*/
/*}*/

selector {
    position: relative;
    display: block;
}
selected {
    display: block;
    height: 46px;
    cursor: pointer;
    width: 100%;
    border: 1px solid var(--light);
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 400;
}

selector options {
    max-height: 0;
    width: 100%;
    height: auto !important;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light);
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 52px !important;
    z-index: 10;
}
selector options::-webkit-scrollbar {
    width: 4px;
}
selector options::-webkit-scrollbar-track {
    border-radius: 2px;
}
selector options::-webkit-scrollbar-thumb {
    background: #dfdfdf;
    border-radius: 2px;
}
selector options search {
    padding-inline: 12px;
    padding-block: 8px;
    position: relative;
}
selector options search input {
    border: 1px solid var(--light);
    outline: none;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    color: black;
    padding: 6px 12px;
}
selector options search span.icon {
    position: absolute;
    right: 16px;
    top: 14px;
}
selector options item {
    padding-inline: 12px;
    padding-block: 8px;
    font-size: 16px;
    color: var(--primary);
    transition: 0.3s;
    cursor: pointer;
}
selector options item:hover {
    background: #e8e8e8;
}
selector options item.selectedItem {
    background: var(--primary);
    color: white;
}
selector.open options {
    max-height: 200px; /* adjust as needed */
    opacity: 1;
    transform: translateY(0);
}

