html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-clr);
}

body {
  color: var(--title-clr);
  font-family: var(--body-font);
  background-color: var(--bg-body);
}

.open-sans {
  font-family: var(--body-font);
}

:root {
  --primary-clr: #1455AC;
  --primary-dark: #074596;
  --primary-clr-rgb: 20, 85, 172;
  --bs-primary: #1455AC;
  --bs-primary-rgb: 20, 85, 172;
  --text-secondary: #F3F5F6;
  --text--secondary: #F3F5F6;
  --text-secondary-dark: #dddfe0;
  --title-clr: #262d34;
  --pragraph-clr: #212629;
  --pragraph-clr2: #656566;
  --title-rgb: 38, 45, 52;
  --title-semidark: #7F8185;
  --border1: #DFE0E5;
  --border2: #D0D5DD;
  --absolute-white: #fff;
  --absolute-dark: #183F56;
  --light-box: #F9FAFC;
  --light-box-rgb: 249, 250, 252;
  --bg-section1: #F6F6F6;
  --bg-section2: #FAFAFA;
  --bg-section3: #ECF4FF;
  --bg-light: #F7F8FA;
  --bg-body: #FAFAFC;
  --bg-footer: #183F56;
  --bg-footer2: #ECF5FF;
  --light-gray: #ADB0B7;
  --bs-border-color: #EFF1F4;
  --border-dark: #bdbdbe;
  --bs-danger: #FF4040;
  --bs-danger-dark: #FF4040;
  --bs-danger-rgb: 255, 64, 64;
  --bs-success: #04BB7B;
  --bs-success-dark: #019463;
  --bs-success-rgb: 19, 154, 55;
  --bs-warning: #ffbb38;
  --bs-warning-rgb: 255, 187, 56;
  --bs-info: #5C8FFC;
  --bs-info-rgb: 92, 143, 252;
  --bs-white: #fff;
  --bs-bg-opacity: 1;
  --bs-text-opacity: 1;
  --gradient-bg1: linear-gradient(95.97deg, #FEF3E9 0.16%, #F7F2FD 100.9%);
  --body-font: "Mulish", sans-serif;
}

[theme=dark] {
  --primary-clr: #1455AC;
  --primary-dark: #074596;
  --primary-clr-rgb: 20, 85, 172;
  --bs-primary: #1455AC;
  --bs-primary-rgb: 20, 85, 172;
  --text-secondary: #ccd0d3;
  --text--secondary: #ccd0d3;
  --text-secondary-dark: #9ca3af;
  --title-clr: rgba(255, 255, 255, 0.8);
  --pragraph-clr: rgba(255, 255, 255, 0.8);
  --pragraph-clr2: #9ca3af;
  --title-rgb: 241, 245, 249;
  --title-semidark: #a7aaae;
  --border1: #3a3a3a;
  --border2: #494949;
  --light-box: #232325;
  --light-box-rgb: 35, 35, 37;
  --bg-section1: #18181a;
  --bg-section2: #202124;
  --bg-section3: #1e293b;
  --bg-light: #222;
  --bg-body: #18181a;
  --bg-footer: #111827;
  --bg-footer2: #1f2937;
  --light-gray: #8e9299;
  --bs-border-color: #494949;
  --border-dark: #5b5b5b;
  --bs-danger: #ff5c5c;
  --bs-danger-dark: #e54848;
  --bs-danger-rgb: 255, 92, 92;
  --bs-success: #10b981;
  --bs-success-dark: #059669;
  --bs-success-rgb: 16, 185, 129;
  --bs-warning: #fbbf24;
  --bs-warning-rgb: 251, 191, 36;
  --bs-info: #60a5fa;
  --bs-info-rgb: 96, 165, 250;
  --bs-white: #282828;
  --bs-white-rgb: 40, 40, 40;
  --bs-body-color: #ccd0d3;
  --bs-body-bg: #18181a;
  --bs-body-bg-rgb: 24, 24, 26;
  --bs-dark: rgba(255, 255, 255, 0.8);
  --bs-dark-rgb: 241, 245, 249;
  --bs-light: #222;
  --bs-light-rgb: 34, 34, 34;
  --bs-black-rgb: 255, 255, 255;
  --bg-badge: #464646;
  --bg-icon: #2b2d32;
  --section-bg: #282828;
  --section-bg-cmn: #18181a;
  --section-bg-cmn2: #202124;
  --input-bg: #3a3a3a;
  --title-color: rgba(255, 255, 255, 0.8);
  --absolute-white: rgba(255, 255, 255, 0.8);
  --title-color-rgb: 255, 255, 255;
  --border-color2: #494949;
  --border-color3: #494949;
  --box-shadow: 0 2px 10px rgba(var(--bs-primary-rgb), 0.15);
  --gradient-bg1: linear-gradient(95.97deg, #2b2b2d 0.16%, #1f2937 100.9%);
}

[theme=dark] .card_dark_support {
  background-color: rgb(35, 35, 37) !important;
}

.text-success-dark {
  color: var(--bs-success-dark) !important;
}

.text-danger-dark {
  color: var(--bs-danger-dark) !important;
}

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

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

.light-box {
  background-color: var(--light-box);
}

.bg-light {
  background-color: var(--bg-light);
}

.bs-border {
  border: 1px solid var(--bs-border-color) !important;
}

.bg-section3 {
  background-color: var(--bg-section3);
}

.title-clr {
  color: var(--title-clr);
}

.pragraph-clr {
  color: var(--pragraph-clr);
}

.pragraph-clr2 {
  color: var(--pragraph-clr2);
}

.title-semidark {
  color: var(--title-semidark);
}

.text-light-gray {
  color: var(--light-gray);
}

.border-1 {
  border: 1px solid var(--border1) !important;
}

.border {
  --bs-border-color: #0000001A !important;
}

.bs-border {
  border: 1px solid var(--bs-border-color);
}

.border-primary20 {
  border: 1px solid rgb(var(--primary-clr-rgb), 20%);
}

.lh-24px {
  line-height: 24px;
}

.form-check-input_theme {
  border-color: var(--border2) !important;
  outline: none !important;
}

.form-check-input_theme:checked {
  background-color: var(--primary-clr) !important;
  border-color: var(--primary-clr) !important;
}

.form-check-input.radio--md[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
}

/* Ratios */
.ratio-1-1 {
  aspect-ratio: 1/1 !important;
}

.ratio-2-1 {
  aspect-ratio: 2/1 !important;
}

.ratio-3-1 {
  aspect-ratio: 3/1 !important;
}

.ratio-3-2 {
  aspect-ratio: 3/2 !important;
}

.ratio-4-1 {
  aspect-ratio: 4/1 !important;
}

.ratio-4-2 {
  aspect-ratio: 4/2 !important;
}

.ratio-5-1 {
  aspect-ratio: 5/1 !important;
}

.ratio-7-1 {
  aspect-ratio: 7/1 !important;
}

.gap-1px {
  gap: 1px;
}

.gap-2px {
  gap: 2px;
}

.gap-5px {
  gap: 5px;
}

.gap-6px {
  gap: 6px;
}

.gap-10px {
  gap: 10px;
}

.gap-12px {
  gap: 12px;
}

.gap-15px {
  gap: 15px;
}

.gap-20px {
  gap: 20px;
}

.gap-30px {
  gap: 30px;
}

@media (min-width: 1399px) {
  .gap-xxl-20px {
    gap: 20px !important;
  }
}

.gap-xl-10px {
  gap: 5px;
}
@media (min-width: 1199px) {
  .gap-xl-10px {
    gap: 10px !important;
  }
}

.iti {
  width: 100%;
}

.form-control {
  min-height: 45px;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--title-clr);
  background-color: var(--bs-white);
  background-clip: padding-box;
  border: 1px solid var(--bs-border-color);
  border-radius: 5px;
  box-shadow: 0 0 0 0 transparent !important;
}
.form-control::-moz-placeholder {
  color: var(--title-clr) !important;
}
.form-control::placeholder {
  color: var(--title-clr) !important;
}

.d-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-aligns {
  display: flex;
  align-items: center;
}

.shadow-sm {
  box-shadow: 0px 5px 10px rgba(20, 85, 172, 0.05) !important;
}

.svg-white svg path {
  fill: var(--absolute-white) !important;
}

.svg-warning svg path {
  fill: var(--bs-warning) !important;
}

.dropdown-menu2 li {
  padding: 0 !important;
  background-color: var(--bs-white) !important;
}

.nav-pills .nav-item .nav-link {
  color: var(--title-clr);
  font-size: 14px;
  font-weight: 400;
  border-radius: 100px;
}
.nav-pills .nav-item .nav-link.active {
  background-color: var(--bs-primary);
  color: var(--absolute-white);
}

.nav-rounded .nav-item .nav-link {
  background-color: transparent !important;
  color: var(--title-semidark);
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid var(--bs-border-color);
}
.nav-rounded .nav-item .nav-link.active {
  background-color: var(--bs-primary) !important;
  color: var(--absolute-white);
}

.nav--border {
  overflow-x: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px 24px;
  padding-bottom: 7px;
}
.nav--border .nav-item .nav-link {
  color: var(--pragraph-clr2);
  font-size: 14px;
  font-weight: 400;
  border-radius: 0px;
  border-bottom: 2px solid transparent;
  padding-left: 0;
  padding-right: 0;
}
.nav--border .nav-item .nav-link.active {
  border-bottom: 2px solid var(--bs-primary);
  color: var(--bs-primary);
  font-weight: 600;
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-4px {
  border-radius: 4px !important;
}

.line--limit-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line--limit-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-gradient1 {
  background: var(--gradient-bg1);
}

.main-menu .sub-menu,
.aside,
.common-nav li.has-sub-item:after,
.aside-body li.has-sub-item:after,
.settings-sidebar .theme-bar button.active,
.settings-sidebar .dir-bar button.active,
.product__top::after,
.store-product__top::after,
.store-product h6,
.product-share-icons ul {
  transition: all 300ms ease-in-out;
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .mb-40 {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .mb-40 {
    margin-bottom: 24px;
  }
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .mb-30 {
    margin-bottom: 24px;
  }
}

.mt-30 {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .mt-30 {
    margin-top: 24px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .mb-24 {
    margin-bottom: 16px;
  }
}

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

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

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

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

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

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

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

.pt-30 {
  padding-top: 30px;
}
@media (max-width: 1199px) {
  .pt-30 {
    padding-top: 24px;
  }
}

.pb-30 {
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .pb-30 {
    padding-bottom: 24px;
  }
}

.p-20 {
  padding: 20px;
}

@media (min-width: 1399px) {
  .p-xxl-20px {
    padding: 20px !important;
  }
}

.p-10px {
  padding: 10px;
}

.p-15px {
  padding: 15px;
}

.p-12px {
  padding: 12px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1399px) {
  .px-xxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-12px {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.pe-33px {
  padding-right: 33px;
}

.py-2px {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-12px {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-10px {
  padding-left: 10px;
  padding-right: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-24 {
  font-size: 24px;
}
@media (max-width: 1399px) {
  .fs-24 {
    font-size: 20px;
  }
}

.fs-20 {
  font-size: 20px;
}
@media (max-width: 1399px) {
  .fs-20 {
    font-size: 17px;
  }
}
@media (max-width: 1399px) {
  .fs-20 {
    font-size: 16px;
  }
}

.fs-18 {
  font-size: 18px;
}
@media (max-width: 1399px) {
  .fs-18 {
    font-size: 15px;
  }
}

.fs-17 {
  font-size: 17px;
}
@media (max-width: 1199px) {
  .fs-17 {
    font-size: 16px;
  }
}

.fs-16 {
  font-size: 16px;
}
@media (max-width: 1399px) {
  .fs-16 {
    font-size: 14px;
  }
}

.fs-15px {
  font-size: 15px;
}
@media (max-width: 1399px) {
  .fs-15px {
    font-size: 14px;
  }
}

.fs-14 {
  font-size: 14px;
}
@media (max-width: 1399px) {
  .fs-14 {
    font-size: 13px;
  }
}

.fs-13 {
  font-size: 13px;
}
@media (max-width: 1399px) {
  .fs-13 {
    font-size: 12px;
  }
}

.fs-12 {
  font-size: 12px !important;
}

.fs-11 {
  font-size: 11px;
}

.fs-10 {
  font-size: 10px;
}

.fs-9 {
  font-size: 9px;
}

.fs-8 {
  font-size: 8px;
}

.fs-lg-14 {
  font-size: 12px;
}
@media (min-width: 991px) {
  .fs-lg-14 {
    font-size: 14px;
  }
}

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

.d--none {
  display: none;
}

.btn {
  padding: 11.11px 24px;
}
.btn svg {
  height: 14px !important;
}

.btn-primary {
  --bs-btn-color: var(--absolute-white);
  --bs-btn-bg: var(--primary-clr);
  --bs-btn-border-color: var(--primary-clr);
  --bs-btn-hover-color: var(--absolute-white);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--absolute-white);
  --bs-btn-disabled-bg: rgba(var(--primary-clr-rgb), 0.8);
  --bs-btn-disabled-border-color: rgba(var(--primary-clr-rgb), 0.8);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-clr);
  --bs-btn-border-color: var(--primary-clr);
  --bs-btn-hover-color: var(--absolute-white);
  --bs-btn-hover-bg: var(--primary-clr);
  --bs-btn-hover-border-color: var(--primary-clr);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--absolute-white);
  --bs-btn-active-bg: var(--primary-clr);
  --bs-btn-active-border-color: var(--primary-clr);
}

.btn-secondary {
  --bs-btn-color: var(--title-clr);
  --bs-btn-bg: var(--text-secondary);
  --bs-btn-border-color: var(--text-secondary);
  --bs-btn-hover-color: var(--title-clr);
  --bs-btn-hover-bg: var(--text-secondary-dark);
  --bs-btn-hover-border-color: var(--bg-body);
  --bs-btn-active-color: var(--title-clr);
  --bs-btn-active-bg: var(--bg-body);
  --bs-btn-active-border-color: var(--bg-body);
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: var(--text-secondary) !important;
}

[theme=dark] .bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(35, 35, 37, 0.8039215686) !important;
  border-color: rgba(35, 35, 37, 0.8235294118) !important;
}

.btn--secondary {
  --bs-btn-color: var(--title-clr);
  --bs-btn-bg: var(--light-box);
  --bs-btn-border-color: var(--light-box);
  --bs-btn-hover-color: var(--title-clr);
  --bs-btn-hover-bg: var(--bg-light);
  --bs-btn-hover-border-color: var(--bg-light);
  --bs-btn-active-color: var(--title-clr);
  --bs-btn-active-bg: var(--bg-light);
  --bs-btn-active-border-color: var(--bg-light);
}

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

.card-hover-shadow {
  transition: all 0.3s;
}
.card-hover-shadow:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px !important;
}

.owl-prev,
.owl-next {
  background-color: var(--primary-clr) !important;
  color: var(--bs-white) !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 1;
}
@media (max-width: 991px) {
  .owl-prev,
  .owl-next {
    width: 32px;
    height: 32px;
  }
}
.owl-prev:hover,
.owl-next:hover {
  background-color: var(--primary-dark) !important;
}

.owl-nav-center .owl-prev.disabled,
.owl-nav-center .owl-next.disabled {
  opacity: 0;
  cursor: not-allowed;
}

.owl-nav-center .owl-prev {
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
}
@media (min-width: 1199px) {
  .owl-nav-center .owl-prev {
    left: 0px;
  }
}

.owl-nav-center .owl-next {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
}
@media (min-width: 1199px) {
  .owl-nav-center .owl-next {
    right: 0px;
  }
}

.form-select {
  box-shadow: none !important;
  outline: none !important;
}

.minmax-120px {
  max-width: 120px;
  min-width: 120px;
}

@media screen and (min-width: 575px) {
  .minmax-sm-120px {
    width: 120px;
    min-width: 120px;
  }
}

.minmax-100px {
  max-width: 100px;
  min-width: 100px;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-550px {
  max-width: 550px;
}

.max-w-920px {
  max-width: 920px;
}

.max-w-90px {
  max-width: 90px;
}

.max-w-130px {
  max-width: 130px;
}

.min-h-45 {
  min-height: 45px;
}

.min-h-40 {
  min-height: 40px;
}

.min-h-24px {
  min-height: 24px;
}

.w-70px {
  width: 70px;
}

.h-70px {
  height: 70px;
}

.min-w-70px {
  min-width: 70px;
}

.w-60px {
  width: 60px;
}

.h-60px {
  height: 60px;
}

.min-w-60px {
  min-width: 60px;
}

.w-30px {
  width: 30px;
}

.h-30px {
  height: 30px;
}

.min-w-30px {
  min-width: 30px;
}

.w-35px {
  width: 35px;
}

.h-35px {
  height: 35px;
}

.min-w-35px {
  min-width: 35px;
}

.min-h-35px {
  min-height: 35px;
}

.min-h-30px {
  min-height: 30px;
  block-size: initial !important;
}

.w-25px {
  width: 25px;
}

.h-25px {
  height: 25px;
}

.min-w-25px {
  min-width: 25px;
}

.w-20px {
  width: 20px;
}

.h-20px {
  height: 20px;
}

.min-w-20px {
  min-width: 20px;
}

.w-96px {
  width: 96px;
}

.h-96px {
  height: 96px;
}

.min-w-96px {
  min-width: 96px;
}

.h-207px {
  height: 207px;
}

@media (max-width: 767px) {
  .w-md-100 {
    width: 100%;
  }
}

.w-md-600 {
  width: 600px !important;
}

.w-md-500 {
  width: 500px !important;
}

.min-w-450px {
  min-width: 450px !important;
}

@media (max-width: 575px) {
  .min-w-280px-mobile {
    min-width: 280px !important;
  }
}

.cursor--pointer {
  cursor: pointer !important;
}

.w-45px {
  width: 45px;
}

.h-45px {
  height: 45px;
}

.min-w-45px {
  min-width: 45px;
}

.w-40px {
  width: 40px;
}

.h-40px {
  height: 40px;
}

.min-w-40px {
  min-width: 40px;
}

.w-50px {
  width: 50px;
}

.h-50px {
  height: 50px;
}

.min-w-50px {
  min-width: 50px;
}

.w-90px {
  width: 90px;
}

.h-90px {
  height: 90px;
}

.min-w-90px {
  min-width: 90px;
}

.w-100px {
  width: 100px;
}

.h-100px {
  height: 100px;
}

.min-w-100px {
  min-width: 100px;
}

.min-w-170px {
  min-width: 170px;
}

@media (min-width: 575px) {
  .min-w-sm-170px {
    min-width: 170px;
  }
}

.w-150px {
  width: 150px;
}

.h-150px {
  height: 150px;
}

.min-w-150px {
  min-width: 150px;
}

.max-w-230px {
  max-width: 230px;
}

.max-w-200px {
  max-width: 200px;
}

.max-w-180px {
  max-width: 180px;
}

.thumb-xxl-170 {
  width: 170px;
  height: 170px;
  min-width: 170px;
}
@media (max-width: 1399px) {
  .thumb-xxl-170 {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
}

.search-header-product input {
  background-color: var(--light-box) !important;
}

.minimum-bid-btn.active, .minimum-bid-btn:hover {
  background-color: var(--bs-primary) !important;
  color: var(--absolute-white) !important;
}

.easyzoom {
  position: relative;
  display: block;
  direction: ltr !important;
}
.easyzoom * {
  direction: ltr !important;
}
.easyzoom.is-ready img {
  cursor: crosshair;
}
.easyzoom img {
  vertical-align: bottom;
}
.easyzoom.is-loading img {
  cursor: progress;
}
.easyzoom.is-error img {
  cursor: not-allowed;
}
.easyzoom .easyzoom-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: 10em;
  margin: -1em 0 0 -5em;
  line-height: 2em;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 10px #888;
}
.easyzoom .easyzoom-flyout {
  position: absolute;
  z-index: 1000;
  overflow: hidden;
  background: #fff;
}
.easyzoom.easyzoom--overlay .easyzoom-flyout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.easyzoom.easyzoom--overlay .easyzoom-flyout img {
  width: unset !important;
  max-width: unset !important;
  inline-size: unset !important;
  max-inline-size: unset !important;
  max-block-size: unset !important;
  block-size: unset !important;
  min-width: 120% !important;
  min-inline-size: 120% !important;
}

.z-99 {
  z-index: 1000;
}

.z-1005 {
  z-index: 1005;
}

.overlay-20 {
  width: 100%;
  height: 100%;
  background-color: rgba(14, 66, 136, 0.2);
}

.table-header-bg tr th {
  background-color: var(--light-box);
}

.items-table tr th {
  padding: 12.5px 20px !important;
}
.items-table tr td {
  padding: 10px 20px !important;
}

.form-label {
  font-size: 14px;
  font-weight: 400;
}

.btn-circle {
  --size: 2.25rem;
  inline-size: var(--size);
  block-size: var(--size);
  border-radius: 100%;
  aspect-ratio: 1;
  padding: 0;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.08));
}

.overflow-wrap-anywhere {
  overflow-wrap: anywhere !important;
}

.radio--input,
.checkbox--input {
  --bs-form-check-bg: transparent;
  --bs-border-color: var(--border-dark);
  inline-size: 1rem;
  block-size: 1rem;
  position: relative;
  cursor: pointer;
}
.radio--input:focus,
.checkbox--input:focus {
  box-shadow: none;
}
.radio--input:checked,
.checkbox--input:checked {
  border-color: var(--bs-primary);
}
.radio--input:checked ~ .form-check-label.font-change,
.checkbox--input:checked ~ .form-check-label.font-change {
  font-weight: 600;
}
.radio--input ~ .form-check-label,
.checkbox--input ~ .form-check-label {
  color: var(--bs-body-color);
}
.radio--input_lg,
.checkbox--input_lg {
  inline-size: 1.25rem;
  block-size: 1.25rem;
  --bs-border-width: 2px;
}

.radio--input:checked {
  background-color: transparent;
}
.radio--input:checked::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  inset-block-start: 50%;
  background-color: var(--bs-primary);
  border-radius: 50%;
  inline-size: calc(100% - 0.25rem);
  block-size: calc(100% - 0.25rem);
}

[dir=rtl] .radio--input {
  margin-left: unset;
}
[dir=rtl] .radio--input:checked::after {
  inset-inline-start: unset;
  inset-inline-end: 50%;
}

.checkbox--input {
  border-radius: 0.25rem;
}
.checkbox--input:checked {
  background-color: var(--bs-primary);
}

[dir=rtl] .checkbox--input {
  margin-left: unset;
}

.inline-start-0 {
  inset-inline-start: 0 !important;
}

[dir=rtl] .view-all-text i {
  transform: rotate(180deg);
}

.inline-end-0 {
  inset-inline-end: 0 !important;
}

[theme=dark] .nav::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
[theme=dark] .nav::-webkit-scrollbar-track {
  background: #1f1f1f;
}
[theme=dark] .nav::-webkit-scrollbar-thumb {
  background: #494949;
  border-radius: 10px;
}
[theme=dark] .nav::-webkit-scrollbar-thumb:hover {
  background: #5c5c5c;
}
[theme=dark] .text-body {
  color: var(--bs-body-color) !important;
}/*# sourceMappingURL=helpers.css.map */