@font-face {
  font-family: "SF Pro Text Bold";
  src: url("../fonts/sf-pro-text-bold.otf") format("otf"), url("../fonts/SFProText-Bold.woff") format("woff"), url("../fonts/SFProText-Bold.woff2") format("woff2"), url("../fonts/SFProText-Bold.ttf") format("truetype"), url("../fonts/SFProText-Bold.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text Semibold";
  src: url("../fonts/sf-pro-text-semibold.otf") format("otf"), url("../fonts/SFProText-Semibold.woff") format("woff"), url("../fonts/SFProText-Semibold.woff2") format("woff2"), url("../fonts/SFProText-Semibold.ttf") format("truetype"), url("../fonts/SFProText-Semibold.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text Medium";
  src: url("../fonts/sf-pro-text-medium.otf") format("otf"), url("../fonts/SFProText-Medium.woff") format("woff"), url("../fonts/SFProText-Medium.woff2") format("woff2"), url("../fonts/SFProText-Medium.ttf") format("truetype"), url("../fonts/SFProText-Medium.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Text Regular";
  src: url("../fonts/sf-pro-text-regular.otf") format("otf"), url("../fonts/SFProText-Regular.woff") format("woff"), url("../fonts/SFProText-Regular.woff2") format("woff2"), url("../fonts/SFProText-Semibold.ttf") format("truetype"), url("../fonts/SFProText-Semibold.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.input-field {
  border: var(--form-border-color, 1px solid #CECECE);
  color: var(--form-grey-color, #474747);
  padding: 8px 15px;
}

.input-field:focus {
  border: 1px solid var(--primary-color, #7A44E3);
  color: var(--form-grey-color, #474747);
}

.input-field::-moz-placeholder {
  color: var(--form-placeholder-color, #8C97AB);
}

.input-field::placeholder {
  color: var(--form-placeholder-color, #8C97AB);
}

.theme-focus:focus {
  box-shadow: 0 0 0 0.25rem rgba(121, 68, 227, 0.2235294118) !important;
}

.custom-position {
  top: 14px;
  right: 14px;
}

/*Shireen styles*/
.circle-label {
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background-color: var(--circle-lable-bg, #ffffff);
  border: 1px solid #C2C2C2;
}

.resize-none {
  resize: none;
}

.input-disabled-white:disabled {
  background-color: var(--prompt-badge-bg, #f0f0f0) !important;
}

.stack-li-scroll {
  scrollbar-width: auto !important;
  overflow-y: scroll;
  height: 180px;
  top: 72px;
}
.stack-li-scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: var(--bg-color, #ffffff);
}
.stack-li-scroll::-webkit-scrollbar-thumb {
  background-color: var(--custom-scroll-color, #D9D9D9);
  border-radius: 5px;
}

.custom-toggle-input {
  width: 42px !important;
  height: 20px !important;
  background-color: var(--toggle-bg-color, #ffffff);
}

.custom-toggle-input:checked {
  background-color: var(--toggle-active-color, #0D6EFD);
  border: var(--border-color-9, #979797);
}

.custom-radio-input:checked {
  background-color: var(--primary-color, #7A44E3);
  border: var(--primary-color, #7A44E3);
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload-btn {
  border: 1px solid #CECECE;
  color: #535353;
  background-color: var(--white-color, white);
  padding: 8px 20px;
  border-radius: 2px;
}

.upload-btn-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

/*Shireen styles*/
.dark-theme .custom-toggle-input.form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-blend-mode: overlay;
}
.dark-theme .custom-toggle-input.form-check-input:checked {
  background-blend-mode: unset;
}
.dark-theme .custom-toggle-input.form-check-input:focus {
  box-shadow: none;
  border: initial;
}/*# sourceMappingURL=forms.css.map */