/* Layout Styles */
.carousel-container {
  overflow: visible;
  margin: auto;
}

.carousel-track {
  display: grid;
  gap: 8px;
  grid-auto-flow: column;
  width: min-content;
}

.slide-animation {
  transition: transform 0.5s ease;
}

.review-card-box {
  display: grid;
  width: calc(0.75 * 100vw);
  cursor: pointer;
}

@media (min-width: 768px) {
  .review-card-box {
    width: calc(0.3 * 100vw);
  }
}

.d-none-grid-skeleton {
  display: none;
}

.loading-shape-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  width: calc(0.75 * 100vw);
}

@media (min-width: 768px) {
  .loading-shape-container {
    width: calc(0.3 * 100vw);
  }
}

.loading-skeleton-circle {
  height: 40px;
  width: 15%;
  border-radius: 50%;
}

.loading-skeleton-small {
  height: 40px;
  width: 80%;
  border-radius: 0.75rem;
}

.loading-skeleton-large {
  height: 40px;
  width: 100%;
  border-radius: 0.75rem;
  margin-top: 0.5rem;
}

.loading-skeleton {
  transition: #eeeeee 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    #dddddd 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: 2s loading-skeleton infinite cubic-bezier(0.36, 0, 0.64, 1);
  background-color: #eeeeee;
}

@keyframes loading-skeleton {
  0% {
    background: #eeeeee;
  }
  40% {
    background: #dddddd;
  }
  80% {
    background: #eeeeee;
  }
  100% {
    background: #eeeeee;
  }
}

.pagination-container {
  font-weight: 400;
  display: grid;
  gap: 1rem;
  font-size: 12px;
  line-height: 16px;
  grid-auto-flow: column;
  -webkit-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .pagination-container {
    font-size: 16px;
  }
}
