body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: block;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  inline-size: 100%;
}

.loading-logo {
  position: absolute;
  inset-block-start: 40%;
  inset-inline-start: calc(50% - 65px);
}

.loading {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 55px;
  inline-size: 55px;
  inset-block-start: 50%;
  inset-inline-start: calc(50% - 35px);
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 100%;
  border-inline-start: 3px solid var(--initial-loader-color, #eee);
  inline-size: 100%;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotate-opacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  animation: rotate-opacity 1s ease infinite 0.2s;
}

.loading .effects {
  transition: all 0.3s ease;
}

.custom-scrollbar::-webkit-scrollbar-track {
  border-radius: 10px !important;
  background-color: #e6e6e6ab !important;
}

.custom-scrollbar::-webkit-scrollbar {
  height: 12px !important;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  background-color: #c0c0c0ab !important;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate-opacity {
  0% {
    opacity: 0.1;
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: rotate(1turn);
  }
}

@keyframes acc-slide-down {
  0% {
    display: hidden;
    max-height: 0px;
  }
  100% {
    display: block;
    height: 100%;
    max-height: 340px;
  }
}
@keyframes acc-slide-up {
  0% {
    display: block;
    max-height: 340px;
  }
  100% {
    display: hidden;
    max-height: 0px;
  }
}

.accordion-enter-active {
  animation: acc-slide-down ease-in 0.5s;
}
.accordion-leave-active {
  animation: acc-slide-up ease-in 0.5s;
}
