[x-cloak] {
  display: none !important;
}

blockquote {
  border-left: var(--theme-color-one) solid 5px;
  background: #f7f7f7;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 5px;
}

.autoplay-progress {
  visibility: hidden;
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  animation: slideIn 0.3s ease-in;
}

.menu-open {
  display: block;
}

.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: 27px;
}

@keyframes slideIn {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(0);
  }
}

.accordion-content {
  display: none;
}

.accordion-content2 {
  display: none;
}

.swiper-pagination-bullet-active {
  background: #5d87b2 !important;
}

@media (max-width: 768px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
      font-size: 15px !important;
  }
}
