@import '~@/assets/scss/fonts.scss';

html {
  overflow: auto;
}

body {
  background-color: #F4F6FA;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.cs-pointer {
  cursor: pointer;
}
.pointer-e-none {
  pointer-events: none;
}
.of-x-scroll {
  overflow-x: scroll;
}
.w-100 {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.h-100 {
  height: 100%;
}
.gap-1 {
  gap: 4px;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.gap-5 {
  gap: 20px;
}
.gap-6 {
  gap: 24px;
}
.gap-7 {
  gap: 28px;
}
.gap-8 {
  gap: 32px;
}
.row-gap-1 {
  row-gap: 4px;
}
.row-gap-2 {
  row-gap: 8px;
}
.row-gap-3 {
  row-gap: 12px;
}
.row-gap-4 {
  row-gap: 16px;
}
.column-gap-1 {
  column-gap: 4px;
}
.column-gap-2 {
  column-gap: 8px;
}
.column-gap-3 {
  column-gap: 12px;
}
.column-gap-4 {
  column-gap: 16px;
}
.ls-0 {
  letter-spacing: 0 !important;
}
.no-user-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
input:focus-visible {
  outline: var(--v-primary-base) 0 1px;
}
input[type="password"]:valid,
input[type="password"]:disabled {
  letter-spacing: 1.2px;
  font-size: 1.75rem;
}

[hidden] {
  display: none !important;
}

.modern-scrollbar {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb {
    background: #E2E2E4;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #E2E2E4;
  }
  &::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  &::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  &::-webkit-scrollbar-thumb {
    background: #E2E2E4;
    border-radius: 10px;
  }
  &::-webkit-scrollbar-thumb:hover {
    background: #E2E2E4;
  }
}