/*!
* Untitled v2.0.52
* Forged by Hotezateam (Egor Chebotarev, Yuliya Poznyak, Denis Dumanetskiy )
* Inspired by Vuetify
* Released under the MIT License.
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@tailwind components;
@tailwind utilities;
html,
body {
  font-family: "Inter", sans-serif;
  padding: 0 !important;
  margin: 0 !important;
}

a {
  color: inherit;
  text-decoration: inherit;
}.u-icon--size-xs-icon {
  height: 12px;
  width: 12px;
}

.u-icon--size-sm-icon {
  height: 16px;
  width: 16px;
}

.u-icon--size-md-icon {
  height: 20px;
  width: 20px;
}

.u-icon--size-lg-icon {
  height: 24px;
  width: 24px;
}

.u-icon--size-xl-icon {
  height: 28px;
  width: 28px;
}

.u-icon--size-xxl-icon {
  height: 32px;
  width: 32px;
}

.u-icon--size-xs .inner {
  height: 15.6px;
  width: 15.6px;
}

.u-icon--size-sm .inner {
  height: 21px;
  width: 21px;
}

.u-icon--size-md .inner {
  height: 26.6px;
  width: 26.6px;
}

.u-icon--size-lg .inner {
  height: 32px;
  width: 32px;
}

.u-icon--size-xl .inner {
  height: 37.2px;
  width: 37.2px;
}

.u-icon--size-xxl.inner {
  height: 42.6px;
  width: 42.6px;
}

.u-icon--size-xs {
  height: 24px;
  width: 24px;
}

.u-icon--size-sm {
  height: 32px;
  width: 32px;
}

.u-icon--size-md {
  height: 40px;
  width: 40px;
}

.u-icon--size-lg {
  height: 48px;
  width: 48px;
}

.u-icon--size-xl {
  height: 56px;
  width: 56px;
}

.u-icon--size-xxl {
  height: 64px;
  width: 64px;
}.u-layout--full-height .u-application__wrap {
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}.table-without-footer .table-row-group .table-row:last-of-type .table-cell {
  border-bottom: none;
}.sidebar-drawer {
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  pointer-events: auto;
  will-change: var(--navigation-drawer-will-change);
  position: absolute;
}

.sidebar-drawer--top {
  top: 0;
}

.sidebar-drawer--bottom {
  left: 0;
}

.sidebar-drawer--left {
  top: 0;
  left: 0;
  right: auto;
}

.sidebar-drawer--right {
  top: 0;
  left: auto;
  right: 0;
}

.sidebar-drawer--floating {
  border: none;
}

.sidebar-drawer--temporary {
  box-shadow: var(--navigation-drawer-temporary-elevation);
}

.sidebar-drawer--sticky {
  height: auto;
}

.sidebar-drawer__content {
  max-width: 100%;
  overflow-x: var(--navigation-drawer-content-overflow-x);
  overflow-y: var(--navigation-drawer-content-overflow-y);
}

.sidebar-drawer__scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6999999881;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.fade-leave, .fade-enter-from {
  opacity: 0;
}.u-container {
  width: 100%;
  padding: 16px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 960px) {
  .u-container {
    max-width: 900px;
  }
}
@media (min-width: 1280px) {
  .u-container {
    max-width: 1200px;
  }
}
@media (min-width: 1920px) {
  .u-container {
    max-width: 1800px;
  }
}
@media (min-width: 2560px) {
  .u-container {
    max-width: 2400px;
  }
}
.u-container--fluid {
  max-width: 100%;
}

.u-container.fill-height {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}.dropdownContent::-webkit-scrollbar {
  width: 16px;
  background-color: transparent;
  position: absolute;
}

.dropdownContent::-webkit-scrollbar-thumb {
  background-color: #eaecf0;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
}

.dropdownContent::-webkit-scrollbar-thumb:hover {
  background-color: #eaecf0;
}

.inputContainer::-webkit-scrollbar {
  height: 12px;
  background-color: transparent;
}

.inputContainer::-webkit-scrollbar-thumb {
  background-color: #eaecf0;
  border: 2px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
}

.inputContainer::-webkit-scrollbar-thumb:hover {
  background-color: #eaecf0;
}.spinner-border {
  display: inline-block;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.slide-in-from-left-enter-active {
  animation: slideInFromLeft 0.3s ease-in-out;
}

.slide-in-from-right-enter-active {
  animation: slideInFromRight 0.3s ease-in-out;
}

.slide-in-from-left-leave-active, .slide-in-from-right-leave-active {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}