.arrow-rotate-0 {
  transform: rotate(0deg);
}

.arrow-rotate-90 {
  transform: rotate(90deg);
}

.arrow-rotate-180 {
  transform: rotate(180deg);
}

.arrow-rotate-270 {
  transform: rotate(270deg);
}

.dashboard-green-icon {
  filter: invert(54%) sepia(49%) saturate(4259%) hue-rotate(344deg) brightness(98%) contrast(88%);
}

.dashboard-white-icon {
  filter: invert(91%) sepia(78%) saturate(17%) hue-rotate(292deg) brightness(108%) contrast(104%);
}

.custom-blue-icon {
  filter: invert(46%) sepia(25%) saturate(303%) hue-rotate(177deg) brightness(91%) contrast(84%);
}

.custom-blue-icon:hover {
  filter: invert(65%) sepia(25%) saturate(137%) hue-rotate(179deg) brightness(93%) contrast(86%);
}

.custom-blue-icon:active {
  filter: invert(11%) sepia(18%) saturate(437%) hue-rotate(209deg) brightness(92%) contrast(93%);
}

.page-table__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.page-table__head-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.page-table__head-allProducts {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.page-table__container {
  width: 100%;
  margin-top: 16px;
}
.page-table__content {
  max-width: 500px;
  width: 100%;
  height: 50vh;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert-right-modal-body {
  padding: 20px 20px 20px 76px;
  height: 90vh;
}
.alert-right-modal-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  max-height: 85vh;
  overflow: auto;
  height: 100%;
  padding-right: 50px;
}
@-moz-document url-prefix() {
  .alert-right-modal-container {
    scrollbar-color: #989fab #f2f3f4;
    scrollbar-width: thin;
  }
}
.alert-right-modal-container::-webkit-scrollbar {
  width: 6px;
  margin-top: 30px;
}
.alert-right-modal-container::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}
.alert-right-modal-container::-webkit-scrollbar-track {
  background: #f2f3f4;
}
.alert-right-modal-container::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #989fab;
}
.alert-right-modal-footer {
  width: 100%;
  margin-top: 15px;
}
.alert-right-modal-footer button {
  width: 100%;
}
.alert-right-modal-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.alert-right-modal-title {
  color: #0d131e;
}

.alert-modal-max-content {
  width: -moz-max-content;
  width: max-content;
}

.table-action {
  position: absolute;
  right: 0;
  z-index: 1000;
  width: -moz-max-content;
  width: max-content;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(112, 134, 170, 0.22);
}
.table-action-btn:first-of-type {
  border-radius: 8px 8px 0 0;
}
.table-action-btn:last-of-type {
  border-radius: 0 0 8px 8px;
}

.upload-images__wrapper {
  padding: 6px 0;
  border-bottom: 1px solid #d5d8dc;
  display: grid;
  grid-template-columns: repeat(4, 117px);
  grid-auto-rows: 126px;
  grid-gap: 10px;
}
.upload-images__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed #989fab;
  border-radius: 12px;
  padding: 10px 6px;
  cursor: pointer;
  grid-column: 1/3;
}
.upload-images__label .drop-text {
  color: #4b586d;
  margin-bottom: 4px;
}
.upload-images__label .browse-text {
  color: #9289ed;
}
.upload-images__label .support-text {
  color: #989fab;
}
.upload-images__photo {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(112, 134, 170, 0.22);
}
.upload-images__photo img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}
.upload-images__photo-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.upload-images__photo-remove img {
  width: 24px;
  height: 24px;
}

.product-action-item {
  width: 100%;
  padding: 16px 40px;
  border-radius: 6px;
  border: 1px solid #e9eaed;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-action-item__name {
  color: #4b586d;
}
.product-action-item img {
  filter: invert(31%) sepia(19%) saturate(602%) hue-rotate(178deg) brightness(99%) contrast(91%);
}
.product-action-item:hover {
  border: 1px solid #F9D0BF;
}
.product-action-item:hover .product-action-item__name {
  color: #F6B99F;
}
.product-action-item:hover img {
  filter: invert(72%) sepia(51%) saturate(296%) hue-rotate(327deg) brightness(102%) contrast(93%);
}
.product-action-item:active, .product-action-item__active {
  border: 1px solid #EB672F;
}
.product-action-item:active .product-action-item__name, .product-action-item__active .product-action-item__name {
  color: #EB672F;
}
.product-action-item:active img, .product-action-item__active img {
  filter: invert(54%) sepia(49%) saturate(4259%) hue-rotate(344deg) brightness(98%) contrast(88%);
}

.alert-modal-subtitle {
  color: #0d131e;
  padding-bottom: 4px;
  border-bottom: 1px solid #e9eaed;
}

.max-line-count {
  word-break: break-all;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Box sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* Remove default padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
pre,
blockquote,
figure,
table,
fieldset,
form,
legend,
input,
button,
textarea {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}

li {
  list-style-type: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Set core root defaults */
html {
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Set table defaults */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

@font-face {
  font-family: "THICCCBOI-Regular";
  src: url("/assets/fonts/thicccboi/THICCCBOI-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "THICCCBOI-Medium";
  src: url("/assets/fonts/thicccboi/THICCCBOI-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "THICCCBOI-Bold";
  src: url("/assets/fonts/thicccboi/THICCCBOI-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Montserratarm-Regular";
  src: url("/assets/fonts/montserratarm/Montserratarm-Regular.otf") format("otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Montserratarm-Medium";
  src: url("/assets/fonts/montserratarm/Montserratarm-Medium.otf") format("otf");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Montserratarm-Bold";
  src: url("/assets/fonts/montserratarm/Montserratarm-Bold.otf") format("otf");
  font-style: normal;
  font-weight: 700;
}
html[lang=en] {
  --regular-font-family: "THICCCBOI-Regular", sans-serif;
  --medium-font-family: "THICCCBOI-Medium", sans-serif;
  --bold-font-family: "THICCCBOI-Bold", sans-serif;
}

html[lang=am] {
  --regular-font-family: "Montserratarm-Regular", sans-serif;
  --medium-font-family: "Montserratarm-Medium", sans-serif;
  --bold-font-family: "Montserratarm-Bold", sans-serif;
}

/* typography.scss */
.h1_auth_bold {
  font-family: var(--bold-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

.h1_bold {
  font-family: var(--bold-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 21px;
}

.h2_medium {
  font-family: var(--medium-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.h2_bold {
  font-family: var(--bold-font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.body_1_regular {
  font-family: var(--regular-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.body_1_medium {
  font-family: var(--medium-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.body_1_bold {
  font-family: var(--bold-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.body_2_regular {
  font-family: var(--medium-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.body_2_medium {
  font-family: var(--medium-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.body_2_medium_underline {
  font-family: var(--medium-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.body_2_bold {
  font-family: var(--bold-font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.caption_1_regular {
  font-family: var(--regular-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.caption_1_medium {
  font-family: var(--medium-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.caption_1_bold {
  font-family: var(--bold-font-family);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.small_text_regular {
  font-family: var(--regular-font-family);
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.arrow-rotate-0 {
  transform: rotate(0deg);
}

.arrow-rotate-90 {
  transform: rotate(90deg);
}

.arrow-rotate-180 {
  transform: rotate(180deg);
}

.arrow-rotate-270 {
  transform: rotate(270deg);
}

.dashboard-green-icon {
  filter: invert(54%) sepia(49%) saturate(4259%) hue-rotate(344deg) brightness(98%) contrast(88%);
}

.dashboard-white-icon {
  filter: invert(91%) sepia(78%) saturate(17%) hue-rotate(292deg) brightness(108%) contrast(104%);
}

.custom-blue-icon {
  filter: invert(46%) sepia(25%) saturate(303%) hue-rotate(177deg) brightness(91%) contrast(84%);
}

.custom-blue-icon:hover {
  filter: invert(65%) sepia(25%) saturate(137%) hue-rotate(179deg) brightness(93%) contrast(86%);
}

.custom-blue-icon:active {
  filter: invert(11%) sepia(18%) saturate(437%) hue-rotate(209deg) brightness(92%) contrast(93%);
}

.btn {
  border-radius: 6px;
  transition: all ease-out 300ms;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex-shrink: 0;
}
.btn.primary {
  background-color: #EB672F;
  border-color: transparent;
  color: #fff;
}
.btn.primary img {
  filter: invert(91%) sepia(78%) saturate(17%) hue-rotate(292deg) brightness(108%) contrast(104%);
}
.btn.primary:hover {
  background-color: #EF8559;
}
.btn.primary:active {
  background-color: #8E350F;
}
.btn.primary.disabled {
  background-color: #f2f3f4;
  color: #c0c2c6;
  cursor: not-allowed;
}
.btn.primary.disabled img {
  filter: invert(93%) sepia(4%) saturate(218%) hue-rotate(182deg) brightness(87%) contrast(84%);
}
.btn.secondary {
  background-color: #fff;
  border-color: #4b586d;
  color: #4b586d;
}
.btn.secondary img {
  filter: invert(31%) sepia(19%) saturate(602%) hue-rotate(178deg) brightness(99%) contrast(91%);
}
.btn.secondary:hover {
  border-color: #EF8559;
  color: #EF8559;
}
.btn.secondary:hover img {
  filter: invert(70%) sepia(82%) saturate(1589%) hue-rotate(318deg) brightness(94%) contrast(99%);
}
.btn.secondary:active, .btn.secondary:focus {
  background-color: #f2f3f4;
  border-color: #8E350F;
  color: #8E350F;
}
.btn.secondary:active img, .btn.secondary:focus img {
  filter: invert(11%) sepia(95%) saturate(4340%) hue-rotate(34deg) brightness(105%) contrast(88%);
}
.btn.secondary.disabled {
  background-color: #f2f3f4;
  border-color: #c0c2c6;
  color: #c0c2c6;
  cursor: not-allowed;
}
.btn.secondary.disabled img {
  filter: invert(93%) sepia(4%) saturate(218%) hue-rotate(182deg) brightness(87%) contrast(84%);
}
.btn.minimal {
  background-color: transparent;
  border-color: transparent;
  color: #4b586d;
}
.btn.minimal img {
  filter: invert(31%) sepia(19%) saturate(602%) hue-rotate(178deg) brightness(99%) contrast(91%);
}
.btn.minimal:hover, .btn.minimal.columns__dropdown-btn {
  background-color: #fff;
  color: #EF8559;
}
.btn.minimal:hover img, .btn.minimal.columns__dropdown-btn img {
  filter: invert(70%) sepia(82%) saturate(1589%) hue-rotate(318deg) brightness(94%) contrast(99%);
}
.btn.minimal:active {
  background-color: #f2f3f4;
  color: #8E350F;
}
.btn.minimal:active img {
  filter: invert(31%) sepia(19%) saturate(602%) hue-rotate(178deg) brightness(99%) contrast(91%);
}
.btn.minimal.disabled {
  background-color: transparent;
  color: #c0c2c6;
  cursor: not-allowed;
}
.btn.minimal.disabled img {
  filter: invert(93%) sepia(4%) saturate(218%) hue-rotate(182deg) brightness(87%) contrast(84%);
}
.btn.icon-btn {
  background-color: transparent;
  border: transparent;
}
.btn.sm {
  padding: 5px 16px;
  height: 31px;
}
.btn.md {
  padding: 7.5px 16px;
  height: 36px;
}
.btn.lg {
  padding: 13px 24px;
  height: 47px;
}
.btn.minimal-lg {
  padding: 13px 0;
  height: 47px;
}
.btn.onlyIconSm {
  padding: 8px;
}
.btn.onlyIconMd {
  padding: 11px;
}
.btn.onlyIconLg {
  padding: 15px 16px;
}

.table-btn {
  padding: 7.5px 16px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid;
  border-color: #f74949;
  color: #f74949;
}
.table-btn img {
  filter: invert(44%) sepia(31%) saturate(1552%) hue-rotate(318deg) brightness(97%) contrast(100%);
}
.table-btn:hover {
  border-color: #f98080;
  color: #f98080;
}
.table-btn:hover img {
  filter: invert(68%) sepia(14%) saturate(3200%) hue-rotate(311deg) brightness(102%) contrast(95%);
}
.table-btn:active {
  border-color: #ac1919;
  color: #ac1919;
}
.table-btn:active img {
  filter: invert(18%) sepia(47%) saturate(3648%) hue-rotate(345deg) brightness(103%) contrast(102%);
}

.table-action-btn {
  width: 100%;
  padding: 12px 20px;
  color: #687384;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: all ease-out 300ms;
}
.table-action-btn img {
  filter: invert(31%) sepia(19%) saturate(602%) hue-rotate(178deg) brightness(99%) contrast(91%);
}
.table-action-btn:hover {
  background-color: #e9eaed;
}
.table-action-btn:hover img {
  filter: invert(31%) sepia(19%) saturate(602%) hue-rotate(178deg) brightness(99%) contrast(91%);
}
.table-action-btn:active {
  background-color: #f2f3f4;
  color: #687384;
}
.table-action-btn:active img {
  filter: invert(11%) sepia(18%) saturate(437%) hue-rotate(209deg) brightness(92%) contrast(93%);
}

.circle-btn {
  width: 30px;
  height: 30px;
  background-color: #EB672F;
  border-radius: 50%;
  filter: drop-shadow(0px 5px 6px rgba(18, 28, 43, 0.22));
  display: grid;
  place-items: center;
}

.select__all-btn {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: #0d131e;
}

.checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #a0a2a5;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}
.checkbox:hover {
  border-color: #EB672F;
}
.checkbox--table {
  border-color: #d5d8dc;
}
.checkbox--checked {
  background-color: #EB672F;
  border-color: #EB672F;
}
.checkbox--checked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8' fill='none'%3E%3Cpath d='M1 4L4 7L10 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}
.checkbox--intermediate {
  border-color: #EB672F;
  background-color: transparent;
}
.checkbox--intermediate:after {
  content: "";
  width: 9px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #EB672F;
}
.checkbox--intermediate.checkbox--disabled {
  border-color: #c0c2c6;
  background-color: transparent;
}
.checkbox--intermediate.checkbox--disabled:after {
  background: #c0c2c6;
}
.checkbox--intermediate.checkbox--table.checkbox--disabled {
  border-color: #d5d8dc;
}
.checkbox--intermediate.checkbox--table.checkbox--disabled:after {
  background: #d5d8dc;
}
.checkbox--disabled, .checkbox--disabled:hover {
  background-color: #f2f3f4;
  border-color: #c0c2c6;
  cursor: not-allowed;
}
.checkbox.checkbox--table.checkbox--disabled, .checkbox.checkbox--table.checkbox--disabled:hover {
  border-color: #d5d8dc;
}

.outer-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-radius: 6px;
  border: 1px solid #d5d8dc;
  background-color: #fff;
  transition: 0.3s ease;
}
.outer-input.outer-input-scrollable {
  overflow-x: auto;
}
.outer-input.outer-input-scrollable::-webkit-scrollbar {
  height: 6px;
}
.outer-input.outer-input-scrollable::-webkit-scrollbar-track {
  background: #f2f3f4;
}
.outer-input.outer-input-scrollable::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #989fab;
}
@-moz-document url-prefix() {
  .outer-input.outer-input-scrollable {
    scrollbar-color: #989fab #f2f3f4;
    scrollbar-width: thin;
  }
}
.outer-input.sm {
  padding: 7.5px 8px;
}
.outer-input.lg {
  padding: 14.5px 12px;
}
.outer-input:hover {
  border-color: #aaadb0;
}
.outer-input:focus, .outer-input:focus-within {
  border-color: #F6B99F;
  outline: none;
}
.outer-input.filled {
  border-color: #d5d8dc;
}
.outer-input.disabled {
  border-color: #d5d8dc;
  background-color: #f2f3f4;
  color: rgba(96, 97, 99, 0.4);
}
.outer-input:invalid, .outer-input.error {
  border-color: #f52424;
}
.outer-input__cursor, .outer-input__cursor input {
  cursor: pointer;
}
.outer-input__icons {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

textarea {
  resize: none;
}

.inner-input {
  width: 100%;
  outline: none;
  background-color: transparent;
  color: #232229;
}
.inner-input::-moz-placeholder {
  color: rgba(96, 97, 99, 0.4);
}
.inner-input::placeholder {
  color: rgba(96, 97, 99, 0.4);
}
.inner-input:disabled {
  color: rgba(96, 97, 99, 0.4);
}

.placeholder-color {
  color: rgba(96, 97, 99, 0.4);
}

.label-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.label-field-text {
  color: #0d131e;
  text-transform: capitalize;
}
.label-field-text-light {
  color: #4b586d;
}
.label-field .required-asterisk {
  color: #f52424;
  margin-left: 3px;
}
.label-field-helper {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

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

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

.multiselect-value {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}

.dropdown-container {
  position: relative;
}

.dropdown-content {
  width: 100%;
  position: absolute;
  z-index: 111;
  margin-top: 4px;
  padding-right: 8px;
  background-color: #fff;
  padding-block: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(112, 134, 170, 0.22);
}

.dropdown-scroll {
  max-height: 170px;
  overflow-y: auto;
  overflow-x: hidden;
}
.dropdown-scroll::-webkit-scrollbar {
  width: 6px;
}
.dropdown-scroll::-webkit-scrollbar-track {
  background: #f2f3f4;
}
.dropdown-scroll::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #989fab;
}

.dropdown-content-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 6px 12px 0;
  border-top: 1px solid #f2f3f4;
  margin-top: 10px;
}

.file__label {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: -moz-max-content;
  width: max-content;
  color: #b9bec6;
}

.label-tooltip {
  position: relative;
  cursor: help;
}

.label-tooltip::before,
.label-tooltip::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  transition: all ease 0.3s;
}

.label-tooltip::after {
  content: attr(data-tooltip);
  background: #fff;
  box-shadow: 0px 0px 15px 10px rgba(46, 65, 131, 0.14);
  top: 23px;
  transform: translateY(-100%);
  right: 0;
  margin-left: 20px;
  width: 300px;
  border-radius: 8px;
  padding: 16px;
  color: #4b586d;
  text-align: left;
}

.label-tooltip:hover::before,
.label-tooltip:hover::after {
  opacity: 1;
}

.form-inline-container {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  max-width: 65%;
  margin-bottom: 6px;
}

input[type=time]::-webkit-clear-button {
  display: none;
}

.required-asterisk {
  color: #f52424;
  margin-left: 3px;
}

.arrow-rotate-0 {
  transform: rotate(0deg);
}

.arrow-rotate-90 {
  transform: rotate(90deg);
}

.arrow-rotate-180 {
  transform: rotate(180deg);
}

.arrow-rotate-270 {
  transform: rotate(270deg);
}

.dashboard-green-icon {
  filter: invert(54%) sepia(49%) saturate(4259%) hue-rotate(344deg) brightness(98%) contrast(88%);
}

.dashboard-white-icon {
  filter: invert(91%) sepia(78%) saturate(17%) hue-rotate(292deg) brightness(108%) contrast(104%);
}

.custom-blue-icon {
  filter: invert(46%) sepia(25%) saturate(303%) hue-rotate(177deg) brightness(91%) contrast(84%);
}

.custom-blue-icon:hover {
  filter: invert(65%) sepia(25%) saturate(137%) hue-rotate(179deg) brightness(93%) contrast(86%);
}

.custom-blue-icon:active {
  filter: invert(11%) sepia(18%) saturate(437%) hue-rotate(209deg) brightness(92%) contrast(93%);
}

.auth-container {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: flex-end;
  background-image: url("/assets/images/login-background.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.auth-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 19, 30, 0.54);
  z-index: 1;
}
.auth-container::after {
  content: "";
  position: absolute;
  background-image: url("/assets/images/logos/logo_title.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 352px;
  height: 288px;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .auth-container::after {
    width: 252px;
    height: 188px;
    left: 5%;
    top: 5%;
    transform: translate(-5%, -5%);
  }
}
@media screen and (max-width: 1026px) {
  .auth-container::after {
    width: 200px;
    height: 100px;
  }
}
@media screen and (max-width: 1026px) {
  .auth-container {
    justify-content: center;
    align-items: center;
    padding-inline: 30px;
  }
}

.auth-right__container {
  width: 792px;
  height: 100vh;
  border-radius: 68px 0 0 68px;
  background: #fff;
  z-index: 2;
  padding: 20px;
  padding-top: 16vh;
}
@media screen and (max-width: 1400px) {
  .auth-right__container {
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 1026px) {
  .auth-right__container {
    max-width: 700px;
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    border-radius: 30px;
    padding-block: 50px;
  }
}
.auth-right__wrapper {
  width: 504px;
  margin: auto;
}
.auth-right__wrapper-title {
  color: #232229;
  text-align: center;
}
.auth-right__wrapper-content {
  margin-top: 70px;
}
@media screen and (max-width: 500px) {
  .auth-right__wrapper-content {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1026px) {
  .auth-right__wrapper {
    max-width: 504px;
    width: 100%;
  }
}
.auth-right__wrapper-login__status {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-top: 20px;
}
.auth-right__wrapper-login__helping {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .auth-right__wrapper-login__helping {
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
  }
}
.auth-right__wrapper-login__checkbox {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  cursor: pointer;
}
.auth-right__wrapper-login__forgot {
  color: #6357e5;
}
.auth-right__wrapper-forgot__message {
  margin-top: 10px;
  color: #808284;
  text-align: center;
}
.auth-right__wrapper-forgot__helping {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.auth-right__wrapper-forgot__backText {
  color: #989fab;
  margin-right: 5px;
}
.auth-right__wrapper-verification__message {
  margin-top: 10px;
  color: #232229;
  text-align: center;
}
.auth-right__wrapper-verification__timer {
  color: #F29974;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .mt-40 {
    margin-top: 30px;
  }
}

.mt-30 {
  margin-top: 30px;
}

.arrow-rotate-0 {
  transform: rotate(0deg);
}

.arrow-rotate-90 {
  transform: rotate(90deg);
}

.arrow-rotate-180 {
  transform: rotate(180deg);
}

.arrow-rotate-270 {
  transform: rotate(270deg);
}

.dashboard-green-icon {
  filter: invert(54%) sepia(49%) saturate(4259%) hue-rotate(344deg) brightness(98%) contrast(88%);
}

.dashboard-white-icon {
  filter: invert(91%) sepia(78%) saturate(17%) hue-rotate(292deg) brightness(108%) contrast(104%);
}

.custom-blue-icon {
  filter: invert(46%) sepia(25%) saturate(303%) hue-rotate(177deg) brightness(91%) contrast(84%);
}

.custom-blue-icon:hover {
  filter: invert(65%) sepia(25%) saturate(137%) hue-rotate(179deg) brightness(93%) contrast(86%);
}

.custom-blue-icon:active {
  filter: invert(11%) sepia(18%) saturate(437%) hue-rotate(209deg) brightness(92%) contrast(93%);
}

.custom-picker {
  width: 264px; /* Control the width */
  height: 380px;
  border-radius: 12px; /* Add rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Drop shadow */
}

/* Style the color preview */
.color-preview {
  margin: 0 20px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.custom-picker .vc-sketch-field {
  display: none !important;
}

.custom-picker .vc-sketch-saturation-wrap {
  height: 88%;
  border-radius: 4px !important;
}
