@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

.mo-block {
    display: none;
}

.mo-none {
    display: block;
}

.loading-spinner {
    width: 234px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.loading-spinner .logo {
  width: 48px;
}

.loading-spinner .bar {
  width: 100%;
  height: 4px;
  border-radius: 30px;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.loading-spinner .bar .track {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  background-color: #1351F6;
  border-radius: 30px;
  animation: loading 1.5s infinite linear;
}

@keyframes loading {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(234px);
    }
}

body.hidden {
  overflow: hidden;
}

#loading-modal {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 9999999999999999999;
  background-color: rgba(0, 0, 0, 0.4);
}
#loading-modal.active {
  display: block;
}
#loading-modal .loading-spinner {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .mo-block {
    display: block;
  }

  .mo-none {
    display: none;
  }

  .loading-spinner {
    width: 193px;
    gap: 40px;
  }

  .loading-spinner .logo {
    width: 42px;
  }

  .loading-spinner .bar {
    height: 5px;
  }

  .loading-spinner .bar .track {
    width: 20px;
  }

  @keyframes loading {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(193px);
    }
  }
}

.pagination {
    margin-top: 30px;
}

.pagination ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 12px;
}

.pagination li {
    width: 30px;
    height: 30px;
    color: #aaa;
    border-radius: 4px;
    font-size: 13px;
}

.pagination li a,
.pagination li span {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    color: currentColor;
}

.pagination .prev a,
.pagination .next a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .prev {
    margin-right: 12px;
}

.pagination .next {
    margin-left: 12px;
}

.pagination li:hover:not(.prev):not(.next) {
    background-color: #F7FAFC;
    color: #000;
}

.pagination li.current {
    background-color: #F7FAFC;
    color: #000;
    font-weight: 500;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 6px;
  background-color: #eee;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: #eee;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}