@font-face {
   font-family: "Titillium";
   font-weight: normal;
   src: url(../font/TitR.woff2) format("woff2");
 }
 
 @font-face {
   font-family: "Titillium";
   font-weight: bold;
   src: url(../font/TitB.woff2) format("woff2");
 }
 
 @font-face {
   font-family: "Titillium";
   font-style: italic;
   src: url(../font/TitI.woff2) format("woff2");
 }
 
 @font-face {
   font-family: "Poppins";
   font-weight: normal;
   src: url(../font/PoppinsR.woff2) format("woff2");
 }
 
 @font-face {
   font-family: "Poppins";
   font-weight: bold;
   src: url(../font/PoppinsB.woff2) format("woff2");
 }
 
 @font-face {
   font-family: "Poppins";
   font-weight: 600;
   src: url(../font/PoppinsSB.woff2) format("woff2");
 }
 
 @font-face {
   font-family: "Poppins";
   font-style: italic;
   src: url(../font/PoppinsI.woff2) format("woff2");
 }
 
 @font-face {
   font-display: block;
   font-family: bootstrap-icons;
   src: url("../font/bootstrap-icons.woff2?e34853135f9e39acf64315236852cd5a") format("woff2")
 }
 
 * {
   font-family: Titillium, sans-serif;
 }

 .flex-fill {
  min-height: 0;
  min-width: 0;
 }

 .flex-1 {
  flex: 1;
  min-height: 0;
  min-width: 0;
 }

 .flex-2 {
  flex: 2;
  min-height: 0;
  min-width: 0;
 }
 
 .h1,
 .h2,
 .h3,
 .h4,
 .h5,
 .h6,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-family: Poppins;
 }

 .fst-poppins {
  font-family: Poppins;
 }
 
 html:not([data-bs-theme="dark"]) body {
   background-color: #ededeb;
 }
 
 html:not([data-bs-theme="dark"]) body.white {
   background-color: #fff;
 }
 
 .box-bg {
   background-color: #2b3035;
 }
 
 html:not([data-bs-theme="dark"]) .box-bg {
   background-color: #fff;
 }
 
 .bg-white-dark {
   background-color: inherit;
 }
 
 html:not([data-bs-theme="dark"]) .bg-white-dark {
   background-color: #fff;
 }
 
 html:is([data-bs-theme="dark"]) .multiselect-dropdown {
   background-color: #2b3035 !important;
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
 }
 
 html:is([data-bs-theme="dark"]) .multiselect-dropdown-list-wrapper {
   background-color: #2b3035 !important;
 }
 
 html:is([data-bs-theme="dark"]) .swal2-popup {
   background-color: #2b3035 !important;
   color: var(--bs-body-color) !important;
 }
 
 html:is([data-bs-theme="dark"]) .multiselect-dropdown span.optext {
   background-color: #4d5154 !important;
 }
 
 html:is([data-bs-theme="dark"]) .multiselect-dropdown-list div:hover {
   background-color: #4d5154 !important;
 }
 
 a {
   text-decoration: none;
 }
 
 .theme-switch-box {
   top: 1rem;
   right: 1rem;
 }

 .main-box {
  display: flex;
  height: 100dvh;
}

.overflow-xy {
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: bold;
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.2);
  border: .2rem solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all .5s;
}

.menu-item:hover {
  color: #f8f9fa;
  text-decoration: none;
  border: 3px solid var(--bs-indigo);
  transform: translateX(.5rem);
}

.menu-item.active {
  background-color: var(--bs-indigo);
  border: 3px solid var(--bs-indigo);
  transition: all .5s;
  transform: none;
}

.menu-item-logo-box>i::before {
  transition: all .5s;
}

.menu-item:hover>.menu-item-logo-box>i::before {
  transition: all .5s;
  transform: rotateY(360deg);
}

.menu-item.active:hover>.menu-item-logo-box>i::before {
  transform: none;
}

.event-box {
  border-left-width: .5rem !important;
}

.logo-top {
  height: 3rem;
}

.opacity-disabled {
  opacity: .2;
  filter: grayscale(100);
}

.img-fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.w-1-rem {
  width: 1rem;
}

.w-2-rem {
  width: 2rem;
}

.w-3-rem {
  width: 3rem;
}

.w-4-rem {
  width: 4rem;
}

.w-5-rem {
  width: 5rem;
}

.w-6-rem {
  width: 6rem;
}

.w-7-rem {
  width: 7rem;
}

.w-8-rem {
  width: 8rem;
}

.w-9-rem {
  width: 9rem;
}

.w-10-rem {
  width: 10rem;
}

.w-11-rem {
  width: 11rem;
}

.w-12-rem {
  width: 12rem;
}

.w-13-rem {
  width: 13rem;
}

.w-14-rem {
  width: 14rem;
}

.w-15-rem {
  width: 15rem;
}

.h-1-rem {
  height: 1rem;
}

.h-2-rem {
  height: 2rem;
}

.h-3-rem {
  height: 3rem;
}

.h-4-rem {
  height: 4rem;
}

.h-5-rem {
  height: 5rem;
}

.h-6-rem {
  height: 6rem;
}

.h-7-rem {
  height: 7rem;
}

.h-8-rem {
  height: 8rem;
}

.h-9-rem {
  height: 9rem;
}

.h-10-rem {
  height: 10rem;
}

.h-11-rem {
  height: 11rem;
}

.h-12-rem {
  height: 12rem;
}

.h-13-rem {
  height: 13rem;
}

.h-14-rem {
  height: 14rem;
}

.h-15-rem {
  height: 15rem;
}

.mh-26-rem {
  min-height: 26rem;
}

.mxh-26-rem {
  max-height: 26rem;
}

.mh-30-rem {
  min-height: 30rem;
}

.mxh-30-rem {
  max-height: 30rem;
}

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

.aspect-1-1 {
  aspect-ratio: 1 / 1;
}

/*bootstrap tune*/

.a-inherit {
  color: inherit;
}

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

.form-control:focus {
  border-color: var(--bs-indigo);
  box-shadow: 0 0 0.6rem 0.2rem rgba(102, 16, 242, 0.8);
}

html:not([data-bs-theme="dark"]) .form-control:focus {
  border-color: #9fcef1;
  box-shadow: 0 0 0.6rem 0.2rem rgba(159, 206, 241, 0.8);
}

.login-input:focus {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: #fff;
  box-shadow: 0 0 0.6rem 0.2rem rgb(255 255 255 / 80%);
}

.modal-open .modal {
  overflow-y: hidden !important;
}

.modal-content {
  box-shadow: 0 0 8rem 2rem rgba(0, 0, 0, 0.3);
  border-radius: .6rem !important;
}

.modal-header {
  background-color: var(--bs-indigo);
  color: #fff;
  padding: .6rem 1rem !important;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4) !important;
  border-top-left-radius: .5rem !important;
  border-top-right-radius: .5rem !important;
}

html:not([data-bs-theme="dark"]) .modal-header {
  background-color: #548dd4;
}

.btn-close {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
}

.modal-body {
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-body-tabs {
  height: 60vh;
}

.modal-back {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/iconBack.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

label,
.form-check {
  margin-bottom: 0;
}

.btn {
  font-weight: bold;
}

.btn:focus,
.btn:hover,
.btn:active {
  color: #fff;
}

.btn-xs {
  padding: 0.1rem 0.3rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: .25rem;
}

.btn-warning {
  color: #fff;
  background-color: #f07f00;
  border-color: #f07f00;
}

.btn-warning:hover {
  background-color: #cc6b00;
  border-color: #cc6b00;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-purple,
.badge-purple {
  color: #fff;
  background-color: #7030a0;
}

.btn-purple:hover {
  background-color: #5f2889;
}

.btn-outline-purple {
  color: #7030a0;
  border-color: #7030a0;
}

.btn-orange,
.badge-orange {
  color: #fff;
  background-color: #ed6b47;
}

.btn-orange:hover {
  background-color: #e84516;
}

.btn:disabled {
  background-color: #999;
  color: #fff;
  border: 1px solid #999;
  cursor: not-allowed;
}

a.btn.disabled,
span.btn.disabled {
  background-color: #999;
  color: #fff;
  border: 1px solid #999;
  cursor: not-allowed;
}

.btn-warning {
  background-color: #f07f00;
}

.cursor-pointer {
  cursor: pointer;
}

.h7 {
  font-size: .8rem;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b2b2b2;
}

.scrollbar-sm::-webkit-scrollbar {
  width: .2rem;
}