input[type="checkbox"].switch {
  width: 36px;
  height: 24px;
  display: inline-block;
  border: 2px solid #a7b7c2;
  border-radius: 999px;
  position: relative;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  appearance: none;
}

input[type="checkbox"].switch::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #a7b7c2;
  position: absolute;
  left: 4px;
  top: 50%;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: all 150ms;
  outline: 0px solid transparent;
}

input[type="checkbox"].switch:hover::after {
  outline-color: rgba(10, 20, 69, 0.1);
  outline-width: 5px;
}

input[type="checkbox"].switch:active::after {
  width: 14px;
  height: 14px;
}

input[type="checkbox"].switch:checked {
  background-color: #00c0c4;
  border-color: #00c0c4;
}

input[type="checkbox"].switch:checked::after {
  background-color: #fff;
  width: 16px;
  height: 16px;
  left: 45%;
}

badge {
  width: 5px;
  display: inline-block;
  height: 5px;
  background: #28c4cc;
  border-radius: 9999px;
}

.chips {
  --chips-fill-color: rgba(40, 196, 204);
  --chips-fill-color-soft: rgba(40, 196, 204, 0.08);
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgb(249, 252, 255);
  border: 1px solid rgb(238, 241, 243);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #585a5c;
  stroke: #585a5c;
  user-select: none;
}

.chips:not(.active) .chips-icon {
  display: none;
}

.chips.active {
  padding: 8px 14px;
  border-radius: 9999px;
  background: var(--chips-fill-color-soft);
  border: 1px solid var(--chips-fill-color);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--chips-fill-color);
  stroke: var(--chips-fill-color);
}

.chips.active > .count {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  width: 22px;
  height: 22px;
  background: var(--chips-fill-color);
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  color: #f9f7f4;
}

/* #region Overlay */
[overlay] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
  transition: all 300ms;
}

/* #endregion */
/* #region BottomSheet */
.bottom-sheet {
  background: #fff;
  border-radius: 25px 25px 0 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 90%;
  padding: 28px 30px 20px 20px;
  transform: translate(-50%, 100%);
  overflow-y: auto;
  transition: all 0.35s cubic-bezier(0.78, 0.01, 0.22, 0.97);
  z-index: 8;
}

.bottom-sheet > .body {
    height: 100%;
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 0px 8px;
}
.bottom-sheet > .body > p span {
  font-weight: 500;
}

.bottom-sheet .text-btn {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.bottom-sheet .seperator {
  width: calc(100% - 10px);
  height: 1px;
  background-color: #ebedef;
}

.bottom-sheet .head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

    .bottom-sheet .head img {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        padding: 12px 16px;
        cursor: pointer;
        padding-right: 0;
    }

.bottom-sheet .head .title {
  font-size: 16px;
  font-weight: 700;
  color: #434343;
}

.bsheet-btn {
  padding: 14px;
  width: 100%;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  background-color: #28c4cc;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invalid {
  outline-color: red !important;
  border-color: red !important;
}
.validation-error {
  color: red !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  margin: 0 4px;
  display: inline-block;
}

/* #endregion */
