#loading-text {
  text-align: center;
  margin-top: 30px;
}

.ring-wrapper {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: calc(50vh - 40px) auto 0;
}

.ring-wrapper .ring {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #a0a0a0;
  border-radius: 50%;
  animation: ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #a0a0a0 transparent transparent transparent;
}

.ring-wrapper .ring:nth-child(1) {
  animation-delay: -0.45s;
}

.ring-wrapper .ring:nth-child(2) {
  animation-delay: -0.3s;
}

.ring-wrapper .ring:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(80%);
  }
}

.dot-wrap {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}
.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #007A7C;
  opacity: 0.85;
  animation: jump 1s infinite ease-in-out;
}
.dot:nth-child(2) {
  background: #E98609;
  animation-delay: 0.12s;
}
.dot:nth-child(3) {
  background: #007A7C;
  animation-delay: 0.24s;
}
@keyframes jump {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* ********************************************* */
.search-container {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 255, 0);
  direction: rtl;
  text-align: right;
}

.search-container input {
  font-size: 14px;
  width: 100%;
}

.search-box {
  position: absolute;
  top: 10px;
  right: 50px;
  z-index: 5;
  width: 250px;
}

.search-box input {
  border-radius: 7px;
  font-family: IranSans, Public Sans, sans-serif;
  border: 1px solid #9f9f9f;
  padding: 2px 8px;
}

.search-box input:focus {
  animation: 0;
}

.search-box__item {
  background-color: white;
  margin-top: 3px;
  border-top: none;
  border: 1px solid #a8a7a7;
  border-radius: 5px;
}

.search-results {
  overflow: auto;
  max-height: 40vh;
}

.search-result-item {
  border: 0 none;
  background: transparent;
  text-align: right;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  width: 100%;
}

.search-result-item p {
  font-size: 14px;
  font-family: IranSans, Public Sans, sans-serif;
}

.search-result-item img {
  width: 20px;
  margin-left: 5px;
  display: inline;
}

.search-result-item-title {
  font-weight: bolder;
}

.search-result-item-address {
  margin-bottom: 0;
}

/* ********************************************* */
/* #goftino_w {
    z-index: 1000 !important;
} */

.woot-widget-bubble.woot-elements--left {
  left: 10px !important;
  bottom: 10px !important;
  width: 55px !important;
  height: 55px !important;
}

.woot-widget-bubble svg {
  width: 40px !important;
  height: 40px !important;
}

.woot--close::before,
.woot--close::after {
  top: 16px !important;
  left: 27px !important;
}

.cke_notifications_area {
  display: none !important;
}

/* ********************************************* */
.in-print {
  display: none !important;
}

@media print {
  .no-print {
    display: none !important;
  }

  .in-print {
    display: inline-block !important;
  }
}

/* ********************************************* */
.swiper-button-prev,
.swiper-button-next {
  width: 32px !important;
  height: 32px !important;
  color: #585c64 !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  border: 1px solid #e0e0e2 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #2e333b !important;
  border-color: #a8a8a8 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 10px !important;
  font-weight: bold;
}

.swiper-button-disabled {
  display: none !important;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet {
  background: #fff !important;
}

.swiper-pagination-bullet {
  opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 20px !important;
  border-radius: 8px !important;
}
