/*animation **/

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.pulsate-fwd {
  -webkit-animation: pulsate-fwd 1.2s ease-out infinite alternate-reverse both;
  animation: pulsate-fwd 1.2s ease-out infinite alternate-reverse both;
}
/**
 * ----------------------------------------
 * animation aria-fade-in
 * ----------------------------------------
 */

.aria-fade-in {
  -webkit-animation: aria-fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s
    both;
  animation: aria-fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}
@-webkit-keyframes aria-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes aria-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation aria-slide-in-left
 * ----------------------------------------
 */

.aria-slide-in-left {
  -webkit-animation: aria-slide-in-left 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
  animation: aria-slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s
    both;
}

@-webkit-keyframes aria-slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes aria-slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation aria-slide-in-right
 * ----------------------------------------
 */
.aria-slide-in-right {
  -webkit-animation: aria-slide-in-right 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
  animation: aria-slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s
    both;
}

@-webkit-keyframes aria-slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes aria-slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation aria-scale-in-hor-center
 * ----------------------------------------
 */

.aria-scale-in-hor-center {
  -webkit-animation: aria-scale-in-hor-center 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
  animation: aria-scale-in-hor-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    0.4s both;
}

@-webkit-keyframes aria-scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes aria-scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.at--aniamtion--silde--up--down {
  -webkit-animation: slide-top 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s
    infinite alternate-reverse both;
  animation: slide-top 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s infinite
    alternate-reverse both;
}

/* Sliders configs*/
.swiper-button-disabled {
  opacity: 0.5;
}
span.at-swiper-button-prev {
  right: 0px;
  top: 40%;
  z-index: 10;
}

span.at-swiper-button-next {
  left: 0px;
  top: 40%;
  z-index: 10;
}
span.at-swiper-button-prev i {
  width: 100%;
  height: 100%;
  display: inline-block;
}

span.at-swiper-button-prev,
span.at-swiper-button-next {
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  border: 1.5px solid #5e20d1;

  padding: 2px;
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
}
span.at-swiper-button-prev i,
span.at-swiper-button-next i {
  font-size: 12px;

  transition: all 0.3s ease-in-out;
  /* width: 100%;
  height: 100%;
  display: inline-block; */
  background: linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%);
  color: #fff;
  padding: 6px 5px 4px 4px;
  border-radius: 50px;
  width: 100%;
  height: 100%;
}

span.at-swiper-button-prev:hover i,
span.at-swiper-button-next:hover i {
  background: linear-gradient(91deg, #5e20d1 0%, #5e20d1 100%);
  color: #fff;
}
/* span.at-swiper-navigation-button-prev {
  left: -50px;
  top: 40%;
  position: absolute;
  z-index: 10;
}
span.at-swiper-navigation-button-next {
  right: -50px;
  position: absolute;
  top: 40%;
  z-index: 10;
} */

.at-swiper-slider-pagination span.swiper-pagination-bullet {
  border-radius: 50px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #5e20d1 0%, #5e20d1 100%), #fff;
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  width: 10px;
  height: 10px;
  margin: 0 3px !important;
}
.at-swiper-slider-pagination {
  text-align: center;
}
.swiper-button-disabled {
  color: #e1e1e1;
}

/*  Menu Card widget */

.cart-hover-widget {
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.menu-cart-widget-cart-total {
  position: absolute;
  top: -7px;
  right: -7px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 23px;
  font-size: 12px;
  font-weight: bold;
  border: 3px solid var(--aria-main-color-02);
}
button.menu-cart-widget-cart-hover-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1.5px solid #e95235;
  background: #ffffff00;
}
.menu-cart-widget-cart-hover-button {
  padding: 6px;
  font-size: 15px;
}

.menu-cart-widget-cart-hover-content {
  /* display: none; */

  position: absolute;
  background: #fff;
  min-width: 300px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 12px 16px 12px 0;
  z-index: 500;
  top: 50px;
  left: 115px;
  border-radius: 16px;
  transform: translateX(-115px);
  transition: all 0.3s ease;
}
.menu-cart-widget-cart-hover-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-cart-widget-cart-hover-content.show-content {
  opacity: 1;
  visibility: visible;
}

.menu-cart-widget-ul {
  list-style: none;

  margin: 0;
  padding: 0 0 0 12px;
}

.menu-cart-widget-ul li {
  margin-bottom: 10px;
  display: flex;
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1d1d166;
}

.muncart-cart-item-thumbnail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.muncart-cart-item-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.menu-cart-widget-cart-item-details {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.menu-cart-widget-cart-item-title {
  font-size: 14px;
  font-weight: 300;

  color: #3a3a3a;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.menu-cart-widget-price .woo-single-reg-price bdi {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-400);
}

.menu-cart-widget-price .woo-single-all-sale-price {
  margin-bottom: 2px;
}

.menu-cart-cart-summary {
  margin: 10px 0 10px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-cart-cart-summary .woocommerce-Price-amount {
  font-weight: 600;
}

.menu-cart-cart-summary p span.menu-cart-cart-summary-title {
  font-size: 12px;
  color: #6a7076;
}

.menu-cart-checkout {
  width: 55%;
}

.cart-item-price {
  display: block;
  font-size: 14px;
}

.menucard-remove-cart-item {
  position: absolute;
  top: 10px;
  left: 0;
  background: none;
  border: none;
  color: #a3a3a3;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  position: absolute;
  line-height: 14px;
  transition: all 0.3s ease;
}

.menucard-remove-cart-item:hover {
  color: rgb(194, 24, 24);
  background: unset;
}

#spinner-aria {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  opacity: 0.7;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#spinner-aria .spinner {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  box-shadow: 20px 0px 0 0 rgba(37, 59, 142, 0.2),
    16.2px 11.8px 0 0 rgba(37, 59, 142, 0.4),
    6.2px 19px 0 0 rgba(37, 59, 142, 0.6),
    -6.2px 19px 0 0 rgba(37, 59, 142, 0.8),
    -16.2px 11.8px 0 0 rgba(37, 59, 142, 0.97);
  animation: spinner-b87k6z 1s infinite linear;
}

@keyframes spinner-b87k6z {
  to {
    transform: rotate(360deg);
  }
}

/* Scrollbar styles */
.menu-cart-widget-ul::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.menu-cart-widget-ul::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
}

.menu-cart-widget-ul::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Roundness of the scrollbar thumb */
  border: 2px solid #f1f1f1; /* Padding around the scrollbar thumb */
}

.menu-cart-widget-ul::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color of the scrollbar thumb on hover */
}

.menu-cart-widget-ul {
  max-height: 400px;
  overflow-y: scroll;
}
.aria-menu-cart-btn {
  border-radius: 12px;
  padding: 11px 20px;
  display: block;
}
.aria-menu-cart-btn.btn-checkout {
  background: var(--primary);
  color: #fff;
}
.menu-cart-checkout,
.menu-cart-cart {
  min-width: 100px;
}

a.aria-menu-cart-btn.btn-cart {
  background: var(--aria-secendary-gray-color-01);
  display: block;
  color: var(--aria-secendary-gray-color-02);
}

.menu-cart-price-holder {
  width: 100%;
}
span.menu-cart-sale-off {
  background: #e95235;
  border-radius: 4px;
  color: #fff;
  padding: 1px 4px;
  font-size: 14px;
  font-weight: 300;
  margin-right: 5px;
}

.menu-cart-price-regular span.woocommerce-Price-currencySymbol {
  margin-right: 5px;
  font-weight: 300;

  font-size: 13px;
}

.menu-cart-the-product-name {
  font-weight: 500;
}

.menu-cart-widget-total {
  font-size: 16px;
  color: #2a3f90;
  font-weight: 600;
  margin: 0 10px 0 10px;
}

span.menu-cart-widget-total-icon {
  background: #ffffff00;
  border-radius: 50%;
  padding: 6px;
  line-height: 0;
  color: #e95235;
}
span.menu-cart-widget-total-icon i {
  line-height: 20px;
}

/*Aria Mega Menu Css*/
.htmega-menu-area ul > li a {
  display: flex;
  transition: all 0.3s ease;
  align-items: center;
  flex-direction: row;
  /* color: #C3C3C3; */
}
.htmega-menu-area ul.htmega-megamenu > li > a {
  display: flex;
  transition: all 0.3s ease;
  align-items: center;
  flex-direction: row;
  color: #c3c3c3;
}
.htmega-menu-area ul > li {
  transition: all 0.3s ease;
}
.htmega-menu-area .sub-menu {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}
.htmega-menu-area .sub-menu > li {
  width: 100%;
}
.htmega-menu-area .sub-menu > li:last-child {
  border: unset !important;
}
.htmega-menu-area .sub-menu li a {
  border: unset;
  border-radius: unset;
}
.htmega-menu-area .htmegamenu-content-wrapper li a {
  line-height: 25px;
  padding: 5px 0px;
}
/*User menu css*/
.user-menu-holder .dropdown-menu-at {
  display: none; /* Hide by default */
  opacity: 0;
  /* transition: opacity 0.3s ease; */
}

.user-menu-holder .dropdown-menu-at.show {
  top: 50px;
  display: block;
  opacity: 1;
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 13px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  min-width: max-content;
}

.user-ddm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}

a.user-ddm {
  font-family: var(--font-family-main);
  font-size: 16px;

  border-radius: 12px;

  color: #fff;
}
a.user-ddm:hover {
  color: #e1e1e1;
}
li.nav-item-dropdown,
li.nav-item-dropdown a {
  transition: all 0.3s ease;
}

span.user-ddm-img,
span.user-ddm-img img {
  border-radius: 50px;
  line-height: 0;
  font-size: 24px;
  width: 40px;
}
span.user-ddm-name {
  margin: 0 5px 0 0;
}
ul.user-menu-nav,
ul.dropdown-menu-at {
  /* min-width: 180px; */
}

.dropdown-item-aum {
  padding: 6px 0px 8px 0;
  transition: all 0.3s ease;
  position: relative;
}
.dropdown-item-aum a {
  color: #3e3e3e;
  font-size: 15px;
  font-weight: 400;
}
span.userddm-icon {
    padding-left: 18px;
}

.userddm-icon > i {
  position: absolute;
  left: 0px;
  top: 13px;
}
li.last-child-user-menu-at {
  border-top: 1px solid #d1d1d166;
  padding: 6px 0 0 0;
}
.dropdown-item-aum:hover a {
  color: #5E20D1;
}

/* Hiro product slider widget css */

.at-product-offer-silder-body-b {
  /* display: flex;
  justify-content: center; */
  width: 100%;
  position: absolute;
  top: 125px;
  right: 160px;
}

/* Container for the image and at--rings */
.at-image-container-b {
  position: relative;
  width: 200px;
  height: 200px;
}

/* Style the image */
.at-image-container-b img {
  width: 100%;
  height: 100%;
}

/* at--ring styles */
.at--ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Initial dim at-animation-glow */
  border-radius: 50%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  animation: at-animation-glow 3s infinite;
}

/* Position and scale each at--ring */
.at--ring:nth-child(1) {
  transform: scale(1);
  animation-delay: 0s;
  background: #ffffff1c;
  backdrop-filter: blur(0.5px);
}

.at--ring:nth-child(2) {
  transform: scale(1.4);
  animation-delay: 1s;
  background: #ffffff14;
  backdrop-filter: blur(0.5px);
}

.at--ring:nth-child(3) {
  transform: scale(1.8);
  animation-delay: 2s;
}

/* Keyframes for the at-animation-glow animation */
@keyframes at-animation-glow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  }
}

.at-product-secenedry-image {
  width: 85px;
  height: 85px;
  opacity: 0.8;
  filter: blur(1px);
  position: absolute;
  top: 0;
  right: 0px;
}

.at-product-tertiary-image {
  width: 110px;
  height: 110px;
  opacity: 0.8;
  position: absolute;
  bottom: 70px;
  left: 0px;
  filter: blur(2px);
}

div.at-product-slide-off,
div.at-product-slide-price {
  gap: 10px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.at-product-slide-price {
  font-family: var(--font-family-main);
  background-color: var(--bg-white-02);
  color: var(--bg-white-07);
  border-radius: 50px;
  font-size: 16px;
  padding: 5px 10px 5px 5px;
  position: absolute;
  bottom: 50px;
  right: 5px;
}

.at-product-slide-off {
  background-color: var(--bg-white-02);
  color: var(--bg-white-07);
  border-radius: 50px;
  font-size: 16px;
  padding: 5px 5px 5px 8px;
  position: absolute;
  top: 70px;
  left: 0px;
}
img.at-hps-product-main-image {
  width: 90%;
  padding: 20px;
}

.at-hps-image-container {
  text-align: center;
  width: 100% !important;
  max-width: 100% !important;
  /* height: 450px !important; */
  z-index: 3;
  transition: all 0.3s ease-in-out;
}
.hiro-product-slider-swiper-pagination {
  position: absolute;
  bottom: 0px;
  text-align: center;
  z-index: 2;
}
.hiro-product-slider-swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 8px;
  height: 8px;
  margin: 0 2px !important;
}
.at-product-offer-silder-body {
  transition: all 0.3s ease-in-out;
}
.at-product-offer-silder-body a {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.at-product-offer-silder-body:hover a {
  visibility: visible;
  opacity: 1;
}
a.text-white-acac {
  background-color: #fff;
  color: #474747;
  border-radius: 50px;
  font-size: 14px;
  padding: 7px 12px 7px 12px;
  position: absolute;
  bottom: 40px;
  right: 41%;
}
a.text-white-acac:hover {
  color: #202020;
}

/** aria custom boton widget styles**/

.at--button-holder {
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.at--button-holder a {
  transition: all 0.3s ease-in-out;
}

a.at--button-link {
  background-color: #1a2e77;
  border-radius: 50px 50px 50px 50px;
  padding: 14px 30px 14px 30px;
  color: #fff;

  font-size: 15px;
}
a.at--button-link:hover {
  background-color: #fff;
  color: #1a2e77;
}

span.at-button-icon-holder {
  background-color: #fff;
  border-radius: 50px 50px 50px 50px;
  padding: 16px;
  color: #1a2e77;
  line-height: 0;
}

/* Icon Box Widget */
a.ar--icon-box-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  align-content: center;
}
a.ar--icon-box-link-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  align-content: center;
}
a.ar--icon-box-link-column-reverse {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  align-content: center;
}

a.ar--icon-box-link-row-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  align-content: center;
}
a.ar--icon-box-link-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-content: center;
}

.ar--icon-box-holder {
  padding: 20px;
  gap: 20px;
  color: #5E20D1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  display: flex;
}
.ar--icon-box-icon-warapper,
.ar--icon-box-read-more-warapper,
.ar--icon-box-main-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}
.ar--icon-box-icon {
  padding: 5px;
  border-radius: 12px;

  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.ar--icon-box-main-content a {
  color: #22242b;
  text-align: center;
  margin-top: 15px;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}
.ar--icon-box-holder:hover .ar--icon-box-main-content {
  /* color: #fff; */
}
.ar--icon-box-icon svg {
  width: 75px;
  height: 75px;
}
.ar--icon-box-icon i {
  font-size: 24px;
}
.ar--icon-box-icon-read-more {
  line-height: 0;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  color: #22242b80;
  font-size: 16px;
  font-weight: 600;
}

.ar--icon-box-icon-read-more i {
  font-size: 20px;
  margin-right: 10px;
}
.ar--icon-box-sub-content {
  margin: 10px 0 10px;
  line-height: 2em;

  transition: all 0.3s ease-in-out;
  text-align: right;
  color: rgba(34, 36, 43, 0.7);
  text-align: justify;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.ar--icon-box-holder {
  transition: all 0.3s ease-in-out;
}
.ar--icon-box-holder:hover {
  /* color: #ffffff;

  background-repeat: no-repeat;
  background-size: cover; */
}

.ar--icon-box-holder:hover .ar--icon-box-icon {
  /* background: #d8ac0d;
  color: #333; */
}
.ar--icon-box-holder:hover .ar--icon-box-sub-content {
  margin: 10px 0 10px;
}
.ar--icon-box-holder:hover .ar--icon-box-icon-read-more {
  /* position: absolute;
  bottom: -20px; */
  /* background: #E95235;
  color: #ffffff;
  box-shadow: 0px 16px 32px 0px #2b37421a; */
}

.ar--icon-box-link-row-reverse:hover .ar--icon-box-icon-read-more {
  /* position: absolute;
  right: -20px;
  background: #E95235;
  color: #ffffff;
  box-shadow: 0px 16px 32px 0px #2b37421a;
  bottom: unset; */
}

.ar--icon-box-link-column-reverse:hover .ar--icon-box-icon-read-more {
  position: absolute;
  top: -20px;
  background: #e95235;
  color: #ffffff;
  box-shadow: 0px 16px 32px 0px #2b37421a;
  bottom: unset;
}

.ar--icon-box-link-row:hover .ar--icon-box-icon-read-more {
  position: absolute;
  left: -20px;
  background: #e95235;
  bottom: unset;
  color: #ffffff;
  box-shadow: 0px 16px 32px 0px #2b37421a;
}

.at-item-feature-title {
  font-style: normal;
  color: #6b6b6b;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.at-item-feature-value {
  font-style: normal;
  margin-top: 8px;
  color: #6b6b6b;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
li.at-project-features-sdate {
  position: relative;
}

.at-project-slider-swiper {
  padding: 40px 10px;
}
span.ar--seperator {
  opacity: 0.2;
  background: #6b6b6b;
  width: 1px;
  height: 40px;
}
ul.at-project-slider-item-features .ar--seperator:last-child {
  display: none;
}
.at-project-slider-item-title {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hirad--share-link {
}
/* .at-project-slider-item:hover .at-project-slider-image {
  background: #fff;
  height: 322px;
}
.at-project-slider-item:hover .at-project-slider-item-title {
  margin-top: -45px;
  padding-right: 10px;
}
.at-project-slider-item:hover .at-project-slider-item-features {
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
}
.at-project-slider-item:hover .at-project-slider-item-title a{
  color: #fff;
}
.at-project-slider-item:hover .at-project-slider-item-title a *{
  color: #fff;
} */
a.at--read-more-button {
  border-radius: 12px;
  background: #efefef;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
span.at-read-more-icon {
  padding: 5px;
  font-size: 16px;

  line-height: 0;

  transition: all 0.5s ease-in-out;

  align-items: center;
  align-content: center;
  justify-content: center;
}

span.at-read-more-icon svg {
  width: 80%;
  height: 80%;
}

span.at-read-more-icon svg path,
span.at-read-more-icon i {
  fill: #9b9b9b;
  color: #9b9b9b;
}

.at--read-more-wrapper {
  margin-top: 20px;
}
.at-project-slider-item:hover span.at-read-more-icon {
  display: flex;
}

.at-project-slider-pagination span.swiper-pagination-bullet {
  border-radius: 50px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #5e20d1 0%, #5e20d1 100%), #fff;
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  width: 10px;
  height: 10px;
  margin: 0 3px !important;
}

/* .at-slider-over-side {
  width: 54px;
  height: 100%;

  z-index: 2;
}

.at-slider-over-side-left {
  position: absolute;
  top: 0;
  left: -25px;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 2.61%,
    #fff 96.79%
  );
}
.at-slider-over-side-right {
  position: absolute;
  top: 0;
  right: -15px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 2.61%, #fff 96.79%);
} */

/* Product slider  */
.at-product-rate-stock {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
.at-product-stock-wrapper {
  max-width: 60%;
  width: 60%;
}
.at-product-rate-wrapper {
  max-width: 23%;
  width: 23%;
}
.woo-at-sale-price-present {
  border-radius: 4px;
  background: var(--aria-third-color-01, #e95235);
  box-shadow: 0px 4px 8px 0px rgba(233, 82, 53, 0.17);
  padding: 2px 4px 0 4px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
span.woo-at-all-sale-price {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.at--card-item-wrapper {
  border-radius: 8px;
  background: #f4f4f4;
  padding: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.at-product-rate-wrapper .aria-icon {
  color: #e95235;
  margin: 0 3px;
  margin-bottom: 3px;
}
.at-product-stock-wrapper {
  color: #19266a;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.at-product-slider-swiper {
  padding: 0 20px !important;
}
span.at-swiper-product-button-prev {
  right: 0px;
  top: 40%;
  position: absolute;
}

span.at-swiper-product-button-next {
  left: 0px;
  position: absolute;
  top: 40%;
}
span.at-swiper-product-button-prev i {
  /* width: 100%;
  height: 100%;
  display: inline-block; */
}

/* span.at-swiper-product-button-prev:hover i,
span.at-swiper-product-button-next:hover i {
  border: 1px solid #fff;
  background: linear-gradient(180deg, #5E20D1 0%, #5E20D1 100%), #fff;
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  color: #fff;
} */

/* span.at-swiper-product-button-prev i,
span.at-swiper-product-button-next i {
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #f5f6f7 0%, #fff 100%);
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  padding: 10px 7px 7px 7px;
  width: 40px;
  display: block;
  height: 40px;
  text-align: center;
} */
span.at-swiper-product-button-prev i,
span.at-swiper-product-button-next i {
  /* width: 100%;
  height: 100%;
  display: inline-block; */
}
.at-product-slider-pagination {
  text-align: center;
}

.at-product-slider-pagination span.swiper-pagination-bullet {
  border-radius: 50px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #5E20D1 0%, #5E20D1 100%), #fff;
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  width: 10px;
  height: 10px;
  margin: 0 3px !important;
}

.at-product-slider-swiper-wrapper {
  padding: 32px 0;
}

.at-card-action-buttons {
  position: absolute;
  top: 15px;
  left: -50px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.at-card-action-buttons .action-button {
  float: left;
  margin-top: 5px;
}
.at-card-action-buttons .action-button:first-child {
  margin-top: 0;
}
.at-card-action-buttons .action-button:after {
  clear: both;
  display: table;
}

.action-button {
  display: block;
  position: relative;
  height: 30px;
}

.action-button:hover .action-button-primary {
  box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
}
.action-button:hover .action-button-secondary-content {
  transform: translate3d(0, 0, 0);
}

.action-button-primary {
  position: absolute;
  cursor: pointer;
  width: 30px;
  height: 30px;

  left: 0;
  top: 50%;
  margin-top: -15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(181, 181, 181, 0.25);
}

.action-button-icon {
  display: block;
  color: #242424;
  position: absolute;
  width: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-top: 1px;
}

.action-button-secondary {
  overflow: hidden;
  margin-left: 20px;
  height: 30px;
}

.action-button-secondary-content {
  cursor: default;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(37, 59, 142, 0.12);
  color: #5c5c5c;
  font-size: 13px;
  line-height: 26px;
  font-weight: 400;
  text-align: center;
  display: block;
  height: 26px;
  text-align: center;
  padding-left: 8px;
  margin: 2px 0 0 0;
  padding-right: 8px;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s ease;
}
.action-button:hover .action-button-secondary {
  margin-left: 38px;
}
/** wishlist */

.action-button-primary .woosw-btn,
.action-button-primary .woosc-btn,
.action-button-primary .woosq-btn {
  color: #808080;
  border: unset;
  background: unset;
  margin: 6px 1px 0 0;
}

.at-product-slider-item-li .woo-at-card-price-holder .woosw-btn,
.at-product-slider-item-li .woo-at-card-price-holder .woosc-btn,
.at-product-slider-item-li .woo-at-card-price-holder .woosq-btn {
  display: none;
}

.at-product-slider-item-li {
  padding: 10px;
  border-radius: 24px;
}
.at-product-slider-item-li .star-rating {
  display: none;
}

.at-product-slider-item-img {
  position: relative;
}

.at-product-slider-item-img a img {
  border-radius: 16px;
}

.at-product-slider-item-li span.onsale {
  position: absolute;
  z-index: 1;
  padding: 2px 3px;
  background: var(--aria-third-color-01, #e95235);
  color: #fff;
  min-width: 33px;
}
/* Woo Product Slider Type 1 */
.at-product-slider-item-li-s1 {
  overflow-x: hidden;
}
.at-product-slider-item-li-s1:hover .at-card-action-buttons {
  left: 0px;
}

.at-product-slider-item-li-s1 {
  border: 2px solid #fff;
  background: linear-gradient(180deg, #f5f6f7 0%, #fff 100%);
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  min-height: 365px;
}

.at-product-slider-item-li-s1 span.onsale {
  right: 0px;
  top: 15px;
  border-radius: 4px;
  box-shadow: 0px 4px 8px 0px rgba(233, 82, 53, 0.17);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* Woo Product Slider Type 2 */

.at-product-slider-item-li-s2 {
  overflow: unset;
}
.at-product-slider-item-li-s2 span.onsale {
  right: 10px;
  top: 10px;
}

.at-product-slider-item-li-s2 .at-product-slider-item-img {
  position: relative;
  margin-top: -45px;
  overflow: hidden;
  border-radius: 16px;
  background: #f6f6f6;
}

.at-product-slider-item-li-s2:hover .at-card-action-buttons {
  left: 10px;
  top: 10px;
}

.at-product-slider-item-li-s2 {
  border-radius: 24px;
  border: 1px solid #ededed;
  background: #fff;
  min-height: 330px;
  box-shadow: unset;
}
.at-product-slider-item-li-s2 .woocommerce-loop-product__title {
  margin-bottom: 0;
  margin-top: 10px;
}
.at-product-slider-item-li-s2 span.onsale {
  right: 10px;
  top: 10px;
  border-radius: 4px;
  box-shadow: 0px 4px 8px 0px rgba(233, 82, 53, 0.17);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.at-product-categories a {
  text-align: center;
  color: #848484;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0 5px;
}

.at-product-categories {
  text-align: center;
  color: #cccccc33;
}

/**  Post Slider Widget **/
.at-post-slider-item-li {
  overflow: visible !important;
}
.at-post-slider-swiper-wrapper {
  padding: 30px 0;
}
.swiper.at-post-slider-swiper {
  padding: 0px 15px;
}
.aria-onsale-product-timer-pimg a {
  display: block;
}
.aria-onsale-product-timer-pimg {
  width: 75px;
  height: 80px;
}
.aria-post-card-t1 {
  transition: all 0.3s ease-in-out;
  background: no-repeat;
  background-size: cover;
  border-radius: 24px;
  border: 2px solid #fff;
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.aria-post-card-t1:hover {
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.3);
}
.aria-post-card-t1 .post-slider-item-titel a {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.aria-post-card-t1 .post-slider-item-excerpt p {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

a.post-category-item {
  border-radius: 4px;
  background: var(--aria-third-color-01, #e95235);
  box-shadow: 0px 4px 8px 0px rgba(233, 82, 53, 0.17);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  padding: 0 3px;
}

.post-category-item-holder {
  display: flex;
  position: absolute;
  left: 20px;
  top: 20px;
  gap: 10px;
}
.aria-post-silder-item {
  padding: 0 30px 15px 30px;
  height: 100%;
  width: 100%;
}

/* Card type 2  Card Archive  */

.aria-post-card-t2 .aria-post-card-img {
  height: 175px;
}

.aria-post-card-t2 .aria-post-card-img img {
  height: 100% !important;
  width: 100%;
  border-radius: 16px !important;
  background: linear-gradient(
      180deg,
      rgba(28, 48, 121, 0.21) 17.39%,
      rgba(23, 41, 105, 0.71) 69.29%
    )
    lightgray 50% / cover no-repeat;
}

.aria-post-card-t2 {
  border-radius: 24px;
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  gap: 10px;
  transition: all 0.3s ease-in;
}
.aria-post-card-t2:hover {
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.15);
}

.aria-post-card-t2 > .post-category-item-holder {
  display: flex;
  position: absolute;
  left: 25px;
  top: 25px;
  gap: 8px;
}

.aria-post-card-t2 > .post-category-item-holder a.post-category-item {
  font-size: 13px;
}

.aria-post-card-t2 .aria-post-card-item-titel {
  overflow: hidden;
  color: #535353;
  text-align: right;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.aria-post-card-t2 .aria-post-card-item-titel a {
  color: #535353;
}

.aria-post-card-t2 .aria-post-card-item-excerpt {
  color: #7e7e7e;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}
.aria-post-card-t2 .aria-post-card-item-excerpt p {
  margin: 0;
}

.aria-post-card-t2 .aria-post-card-meta {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.aria-post-card-t2 .aria-post-card-meta span.apc-the-val,
.aria-post-card-t2 .aria-post-card-meta .apc-the-val a {
  transition: all 0.3s ease;
  color: #8c8c8c;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.aria-post-card-t2 .aria-post-card-meta .apc-the-val a:hover {
  color: #5a5a5a;
}
.aria-post-card-t2 .aria-post-card-meta .apc-the-icon {
  color: #8c8c8c;
  font-size: 19px;
}

.aria-post-card-t2 .aria-post-card-meta span.apc-the-meta {
  display: flex;
  gap: 5px;
  flex-direction: row;
}

/* Card type 3  Card Archive  */
.aria-post-card-t3 {
  display: flex;
  flex-direction: row;
  border-radius: 24px;
  /* background: linear-gradient(267deg, #f9f9f9 28.3%, #fff 84.36%); */
  background: #f9f9f9;
  padding: 10px;
}

.aria-post-card-t3 .aria-post-card-img {
  width: 25%;
  max-width: 95px;
  height: 95px;
}

.aria-post-card-t3 .aria-post-card-img img {
  height: 100% !important;
  width: 100%;
  border-radius: 16px !important;
  background: linear-gradient(
      180deg,
      rgba(28, 48, 121, 0.21) 17.39%,
      rgba(23, 41, 105, 0.71) 69.29%
    )
    lightgray 50% / cover no-repeat;
}

.aria-post-card-t3 .aria-post-content-holder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 14px;
  justify-content: center;
  width: 75%;
}

.aria-post-card-t3 > .post-category-item-holder {
  display: flex;
  position: absolute;
  left: 10px;
  top: 10px;
  gap: 10px;
}

.aria-post-card-t3 > .aria-post-card-meta {
  position: absolute;
  left: 10px;
  bottom: 4px;
}

.aria-post-card-t3 .aria-post-card-meta {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.aria-post-card-t3 .aria-post-card-meta span.apc-the-val,
.aria-post-card-t3 .aria-post-card-meta .apc-the-val a {
  transition: all 0.3s ease;
  color: #8c8c8c;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.aria-post-card-t3 .aria-post-card-meta .apc-the-val a:hover {
  color: #5a5a5a;
}
.aria-post-card-t3 .aria-post-card-meta .apc-the-icon {
  color: #8c8c8c;
  font-size: 19px;
}

.aria-post-card-t3 .aria-post-card-meta span.apc-the-meta {
  display: flex;
  gap: 5px;
  flex-direction: row;
}

.aria-post-card-t3 .aria-post-card-item-titel {
  overflow: hidden;
  color: #535353;
  text-align: right;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.aria-post-card-t3 .aria-post-card-item-titel a {
  color: #535353;
}

/* Card type 4 Card Archive  */

.aria-post-card-t4 .aria-post-card-img {
  height: 175px;
}

.aria-post-card-t4 .aria-post-card-img img {
  height: 100% !important;
  width: 100%;
  border-radius: 16px !important;
  background: linear-gradient(
      180deg,
      rgba(28, 48, 121, 0.21) 17.39%,
      rgba(23, 41, 105, 0.71) 69.29%
    )
    lightgray 50% / cover no-repeat;
}

.aria-post-card-t4 {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  gap: 10px;
  transition: all 0.3s ease-in;
}
.aria-post-card-t4:hover {
}
.aria-post-card-t4.aria-card-hover-effect::after {
  bottom: -4px;
}
.aria-post-card-t4 > .post-category-item-holder {
  display: flex;
  position: absolute;
  left: 25px;
  top: 25px;
  gap: 8px;
}

.aria-post-card-t4 > .post-category-item-holder a.post-category-item {
  font-size: 13px;
}

.aria-post-card-t4 .aria-post-card-item-titel {
  overflow: hidden;
  color: #19266a;
  text-align: right;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.aria-post-card-t4 .aria-post-card-item-titel a {
  color: #19266a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.aria-post-card-t4 .aria-post-card-item-excerpt {
  color: #7e7e7e;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}
.aria-post-card-t4 .aria-post-card-item-excerpt p {
  margin: 0;
}

.aria-post-card-t4 .aria-post-card-meta {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 10px;
}

.aria-post-card-t4 .aria-post-card-meta span.apc-the-val,
.aria-post-card-t4 .aria-post-card-meta .apc-the-val a {
  transition: all 0.3s ease;
  color: #19266a;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.aria-post-card-t4 .aria-post-card-meta .apc-the-val a:hover {
  color: #5a5a5a;
}
.aria-post-card-t4 .aria-post-card-meta .apc-the-icon {
  color: #19266a;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
}

.aria-post-card-t4 .aria-post-card-meta span.apc-the-meta {
  display: flex;
  gap: 0;
  flex-direction: column;
  align-content: center;
  align-items: center;
  border-radius: 8px;
  background: #ededed;
  padding: 10px 12px;
  width: 77px;
  justify-content: space-between;
}
.aria-post-card-t4 .aria-post-card-item .aria-post-avg-rate {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 5px;
}
.aria-post-card-t4 .aria-post-card-item .aria-post-avg-rate .aria-icon {
  color: #e95235;
  margin: -4px 3px 0 3px;
  font-size: 20px;
}
.aria-post-card-t4 .aria-post-card-item .aria-post-avg-rate .the-avg-rate {
  color: #6b6b6b;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

/* Card type 5 Card Archive  */

.aria-post-card-t5 .aria-post-card-img {
  height: 175px;
}

.aria-post-card-t5 .aria-post-card-img img {
  height: 100% !important;
  width: 100%;
  border-radius: 16px !important;
  background: linear-gradient(
      180deg,
      rgba(28, 48, 121, 0.21) 17.39%,
      rgba(23, 41, 105, 0.71) 69.29%
    )
    lightgray 50% / cover no-repeat;
}

.aria-post-card-t5 {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  gap: 10px;
  transition: all 0.3s ease-in;
}
.aria-post-card-t5:hover {
}
.aria-post-card-t5.aria-card-hover-effect::after {
  bottom: -4px;
}
.aria-post-card-t5 > .post-category-item-holder {
  display: flex;
  position: absolute;
  left: 25px;
  top: 25px;
  gap: 8px;
}

.aria-post-card-t5 > .post-category-item-holder a.post-category-item {
  font-size: 13px;
}

.aria-post-card-t5 .aria-post-card-item-titel {
  overflow: hidden;
  color: #19266a;
  text-align: right;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.aria-post-card-t5 .aria-post-card-item-titel a {
  color: #19266a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.aria-post-card-t5 .aria-post-card-item-excerpt {
  color: #7e7e7e;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}
.aria-post-card-t5 .aria-post-card-item-excerpt p {
  margin: 0;
}

.aria-post-card-t5 .aria-post-card-meta {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 10px;
}

.aria-post-card-t5 .aria-post-card-meta span.apc-the-val,
.aria-post-card-t5 .aria-post-card-meta .apc-the-val a {
  transition: all 0.3s ease;
  color: #19266a;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.aria-post-card-t5 .aria-post-card-meta .apc-the-val a:hover {
  color: #5a5a5a;
}
.aria-post-card-t5 .aria-post-card-meta .apc-the-icon {
  color: #19266a;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
}

.aria-post-card-t5 .aria-post-card-meta span.apc-the-meta {
  display: flex;
  gap: 0;
  flex-direction: column;
  align-content: center;
  align-items: center;
  border-radius: 8px;
  background: #ededed;
  padding: 10px 12px;
  width: 77px;
  justify-content: space-between;
}
.aria-post-card-t5 .aria-post-card-item .aria-post-avg-rate {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 5px;
}
.aria-post-card-t5 .aria-post-card-item .aria-post-avg-rate .aria-icon {
  color: #e95235;
  margin: -4px 3px 0 3px;
  font-size: 20px;
}
.aria-post-card-t5 .aria-post-card-item .aria-post-avg-rate .the-avg-rate {
  color: #6b6b6b;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.aria-post-card-t5 a.aria-post-card-readmore-link {
  border-radius: 12px;
  background: #e95235;
  padding: 7px;
  display: flex;
  text-align: center;
  color: #19266a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.aria-post-card-t5 a.aria-post-card-readmore-link .aria-icon {
  margin: -3px 13px 0 0;
  font-size: 18px;
}

/* Single product card widget */

.at-product-item-li span.onsale {
  position: absolute;
  z-index: 1;
  padding: 2px 3px;
  background: var(--aria-third-color-01, #e95235);
  color: #fff;
  min-width: 33px;
}

.at-product-item-li .woo-at-card-price-holder .woosw-btn,
.at-product-item-li .woo-at-card-price-holder .woosc-btn,
.at-product-item-li .woo-at-card-price-holder .woosq-btn {
  display: none;
}

.at-product-item-li {
  padding: 10px;
  border-radius: 24px;
}
.at-product-item-li .star-rating {
  display: none;
}

/* Our Team Widget style*/

.aria-our-team-wrapper {
  border-radius: 24px;
  border: 2px solid #fff;
  background: linear-gradient(180deg, #f5f6f7 0%, #fff 100%);
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.1);
  padding: 20px;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.aria-our-team-wrapper:hover {
  box-shadow: 0px 16px 32px 0px rgba(43, 55, 66, 0.24);
}
.aria-our-team-wrapper:hover .our-team-img-wrapper img {
  filter: grayscale(0);
}
.our-team-img-wrapper img {
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}

a.social-icon-the-link {
  transition: all 0.3s ease-in-out;
}
a.social-icon-the-link svg {
  width: 23px;
  transition: all 0.3s ease-in-out;
}
a.social-icon-the-link svg path {
  transition: all 0.3s ease-in-out;
  fill: #e95235;
}
a.social-icon-the-link:hover svg path {
  fill: #19266a;
}
li.the-soial-icon a.social-icon-the-link:hover {
  color: #19266a;
}

li.the-soial-icon a {
  font-size: 20px;
  display: inline-block;
  color: #e95235;
}
.aria-our-team-wrapper-one .our-team-img-wrapper {
  position: absolute;
  bottom: 0px;
  left: -7px;
}

.aria-our-team-wrapper-one .our-team-title-wrapper {
  position: relative;
  padding-right: 12px;
}
.aria-our-team-wrapper-one .our-team-title-wrapper:before {
  width: 4px;
  height: 40px;
  background: var(--primary, #5E20D1);
  content: "";
  position: absolute;
  right: 0px;
  top: 3px;
}

p.our-team-title {
  color: #363636;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

span.our-team-subtitle {
  color: #5c5c5c;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.aria-our-team-wrapper-one ul.team-social-icon-ul li {
  margin-top: 10px;
}

/* our team card 2 */
.aria-our-team-wrapper-two {
  display: flex;
  align-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.aria-our-team-wrapper-two .our-team-img-wrapper {
  border-radius: 50% !important;
  padding: 10px;
  border: 2px solid #5E20D1;
}
.aria-our-team-wrapper-two .our-team-img-wrapper img {
  background: #d9d9d9;
  border-radius: 50% !important;
}
.aria-our-team-wrapper-two ul.team-social-icon-ul li {
  margin: 0 7px;
}

.aria-our-team-wrapper-two p.our-team-title,
.aria-our-team-wrapper-two span {
  text-align: center;
  display: block;
}
.aria-our-team-wrapper-two .our-team-title-wrapper {
  position: relative;
  margin-top: 15px;
}
.aria-our-team-wrapper-two .our-team-title-wrapper p.our-team-title:before {
  width: 22px;
  height: 3px;
  border-radius: 20px;
  background: var(--primary, #5E20D1);
  content: "";
  position: absolute;
  right: 35%;
  top: -7px;
}

/* our team card 3 */

.aria-our-team-wrapper-three {
  display: flex;
  align-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-radius: 24px;
  background: #fff;
  min-height: unset;
  /* drop */
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.aria-our-team-wrapper-three .our-team-social-icon-wrapper {
  position: absolute;
  left: 20px;
}
.aria-our-team-wrapper-three
  .our-team-social-icon-wrapper
  .team-social-icon-ul {
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.aria-our-team-wrapper-three .our-team-img-wrapper img {
  /* background: #d9d9d9; */
  border-radius: 0;
}
.aria-our-team-wrapper-three ul.team-social-icon-ul li {
  margin: 0 7px;
}

.aria-our-team-wrapper-three p.our-team-title,
.aria-our-team-wrapper-three span {
  text-align: center;
  display: block;
}

.aria-our-team-wrapper-three p.our-team-title {
  text-align: center;
  display: block;
  color: #19266a;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.aria-our-team-wrapper-three span {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 8px;
  background: #ededed;
  margin-top: 10px;
  color: #19266a;
}
.aria-our-team-wrapper-three .our-team-title-wrapper {
  position: relative;
  margin-top: 15px;
  width: 100%;
}

/* user testimonial widget style */
.aria-testimonial-card-wrapper {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  display: flex;

  padding: 24px;
  flex-direction: row;
  align-items: center;
}

.aria-testimonial-card-title-wrapper {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
}
.aria-testimonial-card-description-wrapper {
  width: 80%;
}

.aria-testimonial-card-description-wrapper .testimonial-desc-icon-before {
  position: absolute;
  right: 37px;
  top: -30px;
  color: #5E20D1;
  font-size: 24px;
  width: 22px;
}
.aria-testimonial-card-description-wrapper .testimonial-desc-icon-after {
  position: absolute;
  left: -5px;
  bottom: -40px;
  color: #5E20D1;
  font-size: 24px;
  width: 22px;
}
.aria-testimonial-card-description-wrapper
  .testimonial-desc-icon-before
  svg
  path {
  fill: #5E20D1;
}
.aria-testimonial-card-description-wrapper
  .testimonial-desc-icon-after
  svg
  path {
  fill: #5E20D1;
}
.aria-testimonial-card-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.aria-testimonial-card-img img {
  border-radius: 50% !important;
}

.aria-testimonial-card-title p {
  color: #494949;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.aria-testimonial-card-title-wrapper:after {
  content: "";
  width: 1px;
  height: 130px;
  background: #ececec;
  position: absolute;
  left: -15px;
  top: 5px;
}
.aria-testimonial-card-description-wrapper {
  padding-right: 40px;
}
.aria-testimonial-card-description-wrapper .aria-testimonial-card-description {
  color: #555;
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
.aria-testimonial-card-stars {
  min-height: 15px;
  margin-top: 12px;
}
.testimonial-icon-off-wrapper,
.testimonial-icon-on-wrapper {
  top: 0;
  left: 17px;
}
.aria-testimonial-card-stars .aria-icon {
  margin: 0 1px;
}

.aria-testimonial-card-stars .testimonial-icon-off {
  color: #e6e6e6;
}

.aria-testimonial-card-stars .testimonial-icon-on {
  color: #e95235;
}
.at-testimonial-slider-pagination {
    margin: 20px 0 0 0;
}

/* faq */

.aria-faq-item:last-child {
  border-bottom: none;
}
.aria-faq-question {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  /* margin-bottom: 15px; */
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.aria-faq-question:hover {
  color: #007bff;
}
.aria-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  transition: all 0.5s ease;
}

.aria-faq-answer.show {
  max-height: max-content; /* Adjust based on your content */
  padding: 15px 20px;
  border-top: 1px solid #ffffff;
  margin: 10px 0 15px 0;
}

.aria-icon-faq {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: #9e9e9e;
}

.aria-icon-faq.rotate {
  transform: rotate(45deg);
}
.aria-faq-item {
  margin-bottom: 10px;
  /* padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10); */
}
.aria-faq-answer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
span.aria-faq-answer-pretext {
  border-radius: 8px;
  background: #e95235;
  box-shadow: 0px 0px 12px 0px rgba(233, 82, 53, 0.4);
  padding: 0 5px;
  color: #19266a;
  font-size: 12px;
  font-style: normal;
}
.aria-faq-question-text-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  align-items: center;
}
.aria-faq-question-text {
  color: #3d3d3d;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.aria-faq-question-text-wrapper .aria-icon {
  color: #5E20D1;
  font-size: 22px;
}

.aria-faq-answer {
  border-radius: 16px;
  background: #19266a;
  color: #fff;
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.aria-faq-answer p {
  margin: 0;
}

/*  aria-onsale-product-timer styles */
.aria-onsale-product-timer-wrapper {
  border-radius: 16px;
  background: var(--primary, #5E20D1);
  min-height: 385px;
}

.swiper-slide.aria-onsale-product-timer-slide.swiper-slide-next img {
  transform: scale(1.5) !important;
  transition: all 0.5s ease;
}
.aria-onsale-product-timer-wrapper {
  padding: 20px 0;
}
.aria-onsale-product-timer-item {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.aria-onsale-product-timer-slide-wrapper {
  padding: 25px 0 30px 0;
}
.aria-onsale-product-timer-pname,
.aria-onsale-product-timer-pprice {
  display: none;
}
.aria-onsale-product-timer-pname {
  margin: 40px 0 5px 0;
}
.swiper-slide.aria-onsale-product-timer-slide.swiper-slide-next
  .aria-onsale-product-timer-pname,
.swiper-slide.aria-onsale-product-timer-slide.swiper-slide-next
  .aria-onsale-product-timer-pprice {
  display: block;
  min-width: 175px;
}

/* .swiper-slide.aria-onsale-product-timer-slide.swiper-slide-next
  .aria-onsale-product-timer-pimg:before {
  content: "";
  filter: blur(8px);
  width: 70px;
  height: 70px;
  background: #ffffff14;
  position: absolute;
  border-radius: 50px;
  left: 7px;
  top: 4px;
  z-index: -1;
} */
.aria-onsale-product-timer-pimg a {
  display: block;
}
.swiper-slide.aria-onsale-product-timer-slide {
  filter: blur(3px);
}
.swiper-slide.aria-onsale-product-timer-slide.swiper-slide-next {
  filter: blur(0);
  overflow: visible;
}
.aria-onsale-product-timer-prev {
  width: 70px !important;
  height: 100% !important;
  top: 0 !important;
  color: #ffffff00 !important;
}
.aria-onsale-product-timer {
  padding: 10px 0;
}
.aria-onsale-product-timer-next {
  width: 70px !important;
  height: 100% !important;
  top: 0 !important;
  color: #ffffff00 !important;
}
.aria-onsale-product-timer-pname a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  display: block;
  line-height: 20px;
}

.aria-onsale-product-timer-title {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.aria-onsale-product-timer-count {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
}

.aria-onsale-product-timer-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.aria-onsale-product-timer-swiper-pagination {
  bottom: -7px !important;
}
.aria-onsale-product-timer-swiper-pagination .swiper-pagination-bullet {
  color: #fff;
  background: #fff;
  margin: 0 2px !important;
}

.aria-onsale-product-timer-pprice {
  position: relative;
}

.aria-onsale-product-timer-pprice
  .woo-at-card-price-holder
  .woo-at-price
  .woo-at-single-reg-price
  .woocommerce-Price-amount
  bdi {
  color: #fff;
  text-align: center;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.aria-onsale-product-timer-pprice
  .woo-at-card-price-holder
  .woo-at-price
  .woo-at-single-reg-price
  .woocommerce-Price-amount
  bdi
  .woocommerce-Price-currencySymbol {
  color: #fff;
  text-align: center;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.aria-onsale-product-timer-pprice
  .woo-at-card-price-holder
  .woo-at-price
  .woo-at-single-all-sale-price
  .woo-at-single-sale-price
  .woocommerce-Price-amount
  bdi {
  margin-left: 27px;
  color: #fff;
  text-align: center;

  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}
.aria-onsale-product-timer-pprice
  .woo-at-card-price-holder
  .woo-at-price
  .woo-at-single-all-sale-price
  .woo-at-single-sale-price
  .woocommerce-Price-amount
  bdi
  .woocommerce-Price-currencySymbol {
  display: none;
}

.aria-opt-wrapper {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.aria-opt-regular-price {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.aria-opt-regular-price bdi {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.aria-opt-regular-price-offer bdi .woocommerce-Price-currencySymbol {
  display: none !important;
}
.aria-opt-regular-price-offer bdi {
  padding-left: 32px;
}
.aria-opt-regular-price bdi .woocommerce-Price-currencySymbol {
  display: block;
}

.aria-opt-regular-price-offer {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.aria-opt-present-discount {
  border-radius: 4px;
  background: var(--secondary, #e95235);
  box-shadow: 0px 4px 8px 0px rgba(233, 82, 53, 0.17);
  padding: 3px 3px 0 3px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 0px;
  line-height: 16px;
  top: 0px;
}

.aria-opt-sale-price bdi {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  gap: 5px;
}

.aria-opt-sale-price bdi .woocommerce-Price-currencySymbol {
  display: block;
}

.aria-opt-sale-price bdi {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.at-project-slider-item-holder {
  overflow: visible;
}

span.aria-spiner.at-minicart-loader {
  position: absolute;
  right: 12px;
  top: 12px;
}
.at-minicart-loader {
  color: #f7f7f7;
  font-size: 21px;
  text-indent: -9999em;
  overflow: hidden;
  z-index: 10;
  width: 1.07em;
  height: 1.07em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* category slider */
.at-category-slider-swiper-wrapper,
.at-category-slider-swiper,
.at-category-slider-swiper-wrapper {
  box-shadow: unset;
}
.swiper-slide.at-category-slider-swiper-wrapper:hover {
  border-radius: 24px;
  background: #e95235;
  box-shadow: 0px 0px 27.4px 0px rgba(233, 82, 53, 0.4);
}
.swiper-slide.at-category-slider-swiper-wrapper:hover
  a.aria-categories-slider-item-txt {
  color: #19266a;
}
.aria-categories-slider-item {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.swiper-slide.at-category-slider-swiper-wrapper {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;

  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.swiper.aria-categories-slider {
  padding: 0 60px;
}

.at-category-slider-swiper-wrapper {
}
a.aria-categories-slider-item-img img {
  width: 60px;
  height: 60px;
}
a.aria-categories-slider-item-txt {
  color: #9b9b9b;
  text-align: center;
  font-size: 16px;

  font-weight: 500;

  margin-top: 20px;
}

.aria-categories-slider-prev {
  background: #efefef;
  top: 20px;
  width: 40px;
  right: 0px;
}
.aria-categories-slider-next {
  background: #efefef;
  top: 20px;
  width: 40px;
  left: 0;
}

.aria-categories-slider-btn {
  height: 68%;
  border-radius: 12px;
  display: flex;
  align-content: center;
  position: absolute;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%);
  width: 25px !important;
  border-radius: 5px;
}
.aria-categories-slider-pagination {
  text-align: center;
}

.aria-categories-slider-btn i,
.aria-categories-slider-btn svg path fill {
  color: #9b9b9b;
}

/* Go top Button Style */
a.aria-go-top-link {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

span.aria-go-top-link-text {
  color: #e95235;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
a.aria-go-top-link i {
  color: #e95235;
}
a.aria-go-top-link svg path {
  color: #e95235;
  fill: #e95235;
}

/* product slider/tab widget */

.at-product-tab-slider-swiper-wrapper {
  padding: 32px 0;
}
.at-product-tab-slider-swiper {
  padding: 0 20px !important;
}
div.parent-product-category-tabs-list {
  border-radius: 24px;
  background: #ededed;
  padding: 12px 12px 12px 2px;
  height: 400px;
  overflow: hidden;
}
ul.product-category-tabs-list {
  padding-left: 5px;
  height: 100%;
  overflow-y: scroll;
}

.product-category-tabs-list::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar */
  direction: ltr;
}

.product-category-tabs-list::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
}

.product-category-tabs-list::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Roundness of the scrollbar thumb */
  border: 2px solid #f1f1f1; /* Padding around the scrollbar thumb */
}

.product-category-tabs-list::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color of the scrollbar thumb on hover */
}
li.product-category-tabs-list-item span {
  display: block;
  cursor: pointer;
}
li.product-category-tabs-list-item span {
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  text-align: center;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
li.product-category-tabs-list-item span:hover {
  color: #fff;
  background: #19266a;
}
.aria-card-hover-effect {
  transition: all 0.3s ease-in-out;
}
.aria-card-hover-effect::after {
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: 100px;
  background: linear-gradient(
    181deg,
    rgba(94, 32, 209, 0) 0%,
    rgba(94, 32, 209, 0) 30%,
    rgba(94, 32, 209, 0) 60%,
    rgba(94, 32, 209, 1) 100%
  );
  right: -2px;
  border-radius: 26px;
  bottom: -2px;
  opacity: 0;
  z-index: -1;
}
.aria-card-hover-effect:hover:after {
  opacity: 1;
}
.aria-card-hover-effect:hover .box-hover-efect-bg-patern {
  opacity: 1;
}
.box-hover-efect-bg-patern {
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
}
/* hotspot points */
.aria-hotspot-point {
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #19266a;
  cursor: pointer;
}

.aria-hotspot-point-wrapper {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.aria-hotspot-point-content {
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-bottom: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  color: #19266a;
}
.hotspot-active {
  visibility: visible;
  opacity: 1;
}

/* testimonial slider  widget */
.aria-testimonial-slider-slide {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.aria-testimonial-slider-image {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  background: #d9d9d9;
}
.aria-testimonial-slider-image img {
  width: 100%;
  height: 100%;
}

.aria-testimonial-slider-content {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aria-testimonial-slider-title,
.aria-testimonial-slider-title p {
  color: #19266a;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.aria-testimonial-slider-subtitle {
  margin-top: 15px;
}
.aria-testimonial-slider-subtitle,
.aria-testimonial-slider-subtitle p {
  color: #5a659f;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.aria-testimonial-slider-description {
  margin-top: 15px;
  color: #6b6b6b;
  text-align: justify;
  font-size: 16px;

  font-weight: 400;
  line-height: 38px;
}
.aria-testimonial-slider-description p {
  margin-bottom: 0;
}

.aria-testimonial-slider-button-next {
  position: absolute;
  left: 40px;
  border-radius: 12px;
  background: #e95235;
  box-shadow: 0px 0px 12px 0px rgba(233, 82, 53, 0.4);
  padding: 10px 15px;
  bottom: 10px;
  z-index: 1;
}

.aria-testimonial-slider-button-prev {
  position: absolute;
  left: 95px;
  border-radius: 12px;
  background: #e95235;
  box-shadow: 0px 0px 12px 0px rgba(233, 82, 53, 0.4);
  padding: 10px 15px;
  bottom: 10px;
  z-index: 1;
}
.aria-testimonial-slider-swiper-wrapper {
  padding: 30px 0;
}
.swiper.aria-testimonial-slider-swiper {
  padding: 0 15px;
}

.aria-grid {
  display: grid;

  height: 100%;
}

.aria-icon.filled {
  color: #e95235; /* yellow for filled stars */
}
.aria-icon.empty {
  color: #c3c3c3; /* gray for empty stars */
}

/* product listing gride   */
li.aria-grid-listing-product {
  position: relative;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

.grid-listing-product-image-wrapper {
  max-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 12px;
}
.grid-listing-product-image-wrapper img {
  border-radius: 12px;
}
li.aria-grid-listing-product {
  display: flex;
  flex-direction: row;
  padding: 15px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  gap: 10px;
  align-items: flex-start;
}

.grid-listing-product-title a {
  color: #19266a;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}
.grid-listing-product-detail-wrapper {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.grid-listing-product-content-wrapper {
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.grid-listing-product-price {
  width: 100%;
  margin-top: -35px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
}
.grid-listing-product-rate {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}

.aria-onsale-product-timer-swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff !important;
  width: 25px !important;
  border-radius: 5px;
}

.aria-onsale-product-timer-pimg img {
  border-radius: 12px;
}
.grid-listing-product-rate .aria-icon {
  font-size: 14px;
}
.aria-menu-custom-template {
  background: #19266a;
}
.htmobile-aside-logo {
  padding: 15px;
  border-bottom: 1px solid #e1e1e1;
}
.htmobile-menu-wrap .menu-expand {
  color: #19266a;
}
.htmobile-menu-wrap
  .htmobile-navigation
  .htmega-megamenu
  li.active
  > .menu-expand
  .aria-icon {
  transform: rotate(180deg);
  display: inline-block;
}
.htmobile-menu-wrap
  .htmobile-navigation
  .htmega-megamenu
  li
  .menu-expand
  .aria-icon {
  font-size: 18px;
}

/* HIRAD */

/* button link type two  */

.hirad-button-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 5px;
  padding: 2px;
  border: 1px solid #5e20d1;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.hirad-button-link-title {
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 8px;
  background: linear-gradient(90deg, #5e20d1 0%, #7b63a6 100%);
  border-radius: 50px;
  font-family: var(--font-family-main);
  color: #fff;
}

.hirad-button-arr-element i {
  font-size: 25px;
  transition: all 0.3s ease-in-out;
  color: #5e20d1;
}
span.hirad-button-arr-element {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  padding: 0 5px;
}

.hirad-button-link:hover {
  border: 1px solid #e75035;
}

.hirad-button-link:hover .hirad-button-link-title {
  background: #fff;
  color: #e75035;
}

.hirad-button-link:hover i {
  color: #e75035;
}

.hirad--projects-content {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  padding: 14px 18px 18px 18px;
}

.hirad--projects-persian-name {
  color: #22242b;
  text-align: right;

  font-size: 20px;
  font-style: normal;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hirad--projects-name {
  width: 100%;
}
img.hirad--projects-img {
  max-width: 90px;
  max-height: 90px;
}
.hirad--projects-english-name {
  color: #22242b70;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  text-align: right;
  font-weight: 500;
  display: block;
}
.at-slide-project-title {
  color: #22242b;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
.hirad-projects-more-infos {
  color: #22242b;
  text-align: justify;

  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
  line-height: 180%;
  border-bottom: 2px solid #e2e2e2;
  padding: 0 0px 20px 0px;
  margin: 0;
}

.hirad--projects-img-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.hirad--projects-box-btn-wrapper {
  display: flex;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}

.hirad--projects-tag-wrapper {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-start;
}

.hirad--projects-tag-item {
  color: rgba(34, 36, 43, 0.8);
  text-align: justify;

  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  border-radius: 6px;
  background: rgba(206, 204, 217, 0.25);
  display: inline-flex;
  padding: 8px 5px;
  align-items: center;
  gap: 5px;
}

.hirad--projects-tag-item span {
  display: flex;
  gap: 4px;
}

.hirad--projects-tag-links {
  color: rgba(34, 36, 43, 0.5);
  text-align: justify;

  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}

.hirad--share-link {
  transition: all 0.3s ease-in-out;
  padding: 3px;
  border: 1px solid #22242b4d;
  border-radius: 50px;
  text-decoration: none;
}

.hirad--share-link span {
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  background: rgba(34, 36, 43, 0.3);

  color: #fff;
}
.hirad--share-link:hover {
  border-color: #22242b82;
}
.hirad--share-link:hover span {
  background: #22242b82;
}
.hirad-button-link-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  background: linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%);
  border-radius: 50px;

  color: #fff;
  transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Counter Widget */

.hirad--counter-card-content {
  background: linear-gradient(180deg, #3b3456 0%, #332f47 100%);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.hirad--counter-card-title {
  color: #fff;
  text-align: right;

  font-size: 16px;
  font-style: normal;
  padding-bottom: 7px;
}

.hirad-counter-card-like-line {
  width: 100%;
  height: 1px;
  background-color: #e75035;
}

.hirad--counter-card-detail {
  color: #cacaca;
  text-align: justify;

  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  margin: 0;
}

.hirad--counter-card-detail .before-counter,
.hirad--counter-card-detail .counter {
  font-weight: 900;
  color: #cacaca;
  text-align: justify;
  font-style: normal;
  font-weight: 800;
  line-height: 180%;
}

.hirad--counter-card-detail .after-counter {
  font-size: 14px;
}
span.counter.hiran-counter-js {
  min-width: 15px;
  text-align: center;
  display: inline-block;
}

/* Hirad Our Team */

.hirad--our-team-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 10px;
}
.hirad--our-team-content-wrapper {
  width: 100%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  padding: 12px 18px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.hirad--our-team-img-wrapper {
  display: inline-block;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease-in-out;
  margin-top: 10px;
}
.hirad--our-team-content-wrapper:hover .hirad--our-team-img-wrapper {
  border-color: var(--primary);
}
.hirad--our-team-img-wrapper img {
  display: block;
  width: 105px;
  height: 105px;
  border-radius: 50%;
}
.hirad--our-team-name-wrapper span {
  display: block;

  font-size: 22px;
  line-height: 1.8;
  color: #22242b;
  margin-top: 8px;
}
.hirad--our-team-role-wrapper span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  color: rgba(34, 36, 43, 0.8);
  margin-bottom: 12px;
}
.hirad--our-team-like-line {
  width: 100%;
  height: 1.5px;
  background: #e2e2e2;
  margin-bottom: 12px;
}

.hirad--our-team-name-wrapper span {
  color: #22242b;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

/* hirad-testimonial-slider */

.hirad--customer-reviews-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hirad--customer-reviews-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hirad--customer-reviews-title-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hirad--customer-reviews-title-wrapper span {
  color: #22242b;
  text-align: center;

  font-size: 27px;
  font-style: normal;
  font-weight: 400;
}
.hirad--customer-reviews-filter {
  padding-right: 20%;
}
.filter-btn span {
  padding: 5px 12px;
  background-color: #22242b4d;
  border-radius: 50px;

  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 8px;
  padding: 3px;
  border: 1px solid rgba(34, 36, 43, 0.3);
  border-radius: 50px;
  background-color: transparent;
  cursor: pointer;
}

.hirad--customer-reviews-filter-btn-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}

.filter-review-active span {
  background: linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%);
}

.filter-review-active {
  border: 1px solid #5e20d1;
}

.hirad--customer-reviews-comments-archive a {
  color: #22242b;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  line-height: 180%;
  opacity: 0.5;
  display: flex;
  gap: 7px;
  align-items: center;
  text-decoration: none;
}

.hirad--customer-reviews-comments-archive i {
  display: inline-flex;
  transform: rotate(45deg);
  font-size: 18px;
}

.hirad--customer-reviews-card-content {
  padding: 13px 24px 24px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.hirad--customer-reviews-card-name {
  color: #22242b;
  text-align: center;

  font-size: 22px;
  line-height: 180%;
}

.hirad--customer-reviews-card-user-type {
  color: #e95235;
  text-align: center;

  font-size: 15px;
  font-weight: 600;
  line-height: 180%;
  display: flex;
}

.hirad--customer-reviews-card-text {
  color: #22242b;
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  line-height: 2.2em;
  opacity: 0.7;
}

.hirad--customer-reviews-card-like {
  display: flex;
  gap: 12px;
}

.hirad--customer-reviews-card-like span {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  align-items: center;
  color: #22242b;
  text-align: center;

  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  opacity: 0.7;
}

.hirad--customer-reviews-card-like i {
  font-size: 20px;
}

.hirad--customer-reviews-card-user-img-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid #5e20d1;
  overflow: visible;
}

.hirad--customer-reviews-card-user-img-wrapper .user-img {
  display: inline-block;
  z-index: 1000;
  position: relative;
  background-color: rgb(211, 211, 211);
  border-radius: 50%;
  min-width: 75px;
  height: 75px;
}

.hirad--customer-reviews-card-user-img-wrapper .comma-img {
  position: absolute;
  bottom: 25px;
  right: -50px;
  height: auto;
}

.hirad--customer-reviews-card-like .like-button .count,
.hirad--customer-reviews-card-like .like-button i {
  transition: color 0.3s ease;
  cursor: pointer;
}

.hirad--customer-reviews-card-like .dislike-button {
  cursor: pointer;
}

.swiper-pagination {
  justify-content: center;
  gap: 6px;
  display: none;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
}

.swiper-pagination-bullet-active {
  width: 20px;
  height: 6px;
  border-radius: 10px;
  background: var(--LINEAR, linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%));
}

.hirad--customer-reviews-card-wrapper {
  width: 100%;
}

.hirad-testimonail-content-swiper-wrapper {
  padding: 3px;
}

.hirad-testimonail-filter-swiper {
  padding: 10px 0;
}

.hirad-testimonail-filter-swiper .swiper-slide {
  width: auto;
}

.swiper.hirad--customer-reviews-card-wrapper {
  padding: 10px;
}

/* Our Option Slider */
.hirad--our-option-vertical-slider-wrapper,
.aria-vertical-content-slider {
  position: relative;
  height: 50vh;
  margin: auto;
}

.hirad--our-option-vertical-slider-content {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hirad--our-option-vertical-slider-btn-wrapper {
  position: absolute;
  top: 15px;
  left: 25px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hirad--our-option-vertical-slider-btn {
  border-radius: 50%;
  border: 2px solid rgba(34, 36, 43, 0.3);
  background-color: unset;
  display: inline-flex;
  padding: 2px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.hirad--our-option-vertical-slider-btn i {
  font-size: 18px;
  color: #fff;
  background: rgba(34, 36, 43, 0.3);
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hirad--our-option-vertical-slider--btn-active {
  border: 2px solid var(--purple-linear, #5e20d1) !important;
}

.hirad--our-option-vertical-slider--btn-active i {
  background: var(
    --purple-linear,
    linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%)
  ) !important;
}

.hirad--our-option-vertical-slider-carts-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
  transition: transform 0.4s ease;
}

.hirad--our-option-vertical-slider-carts-content {
  padding: 10px 20px;
  background: #fff;
  border-radius: 24px;
}

.gradient-fade-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 50px;
  background: linear-gradient(to top, #fff 30%, transparent);
  pointer-events: none;
  border-radius: 0 0 24px 24px;
  z-index: 5;
}

.hirad--our-option-vertical-slider-carts-title {
  color: #22242b;
  text-align: right;

  font-size: 18px;
  line-height: 180%;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.hirad--our-option-vertical-slider-carts-detail-wrapper {
  border-radius: 16px;
  border: 2px solid #e7e5ec;
  padding: 15px;
}

.hirad--our-option-vertical-slider-carts-detail-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hirad--our-option-vertical-slider-carts-detail-wrapper ul li {
  position: relative;
  padding-right: 16px;
  display: flex;
  align-items: center;
  cursor: text;
  color: #22242b;
  text-align: right;

  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
  opacity: 0.7;
}

.hirad--our-option-vertical-slider-carts-detail-wrapper ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(
    --purple-linear,
    linear-gradient(91deg, #5e20d1 34%, #7b63a6 91%)
  );
}
.swiper-button-wapper {
  position: relative;
}

.swiper-button-wapper-vertical-content span.at-swiper-button-prev {
  left: 25px !important;
  top: 10px !important;
  right: unset !important;
  z-index: 10;
}

.swiper-button-wapper-vertical-content span.at-swiper-button-next {
  left: 60px !important;
  right: unset !important;
  top: 10px !important;
  z-index: 10;
}

/* Hirad Faq */
.hirad--faq-content-wrapper {
}

.hirad--faq-search-wrapper {
  position: relative;
}

#hirad--faq-search-input {
  border-radius: 50px;
  background: #e7e5ec;
  border: none;
  padding: 16px;
  width: 100%;
}

#hirad--faq-search-input::placeholder {
  color: #22242b;
  text-align: right;
  font-size: 14px;
  font-weight: 100;
  line-height: 180%;
  opacity: 0.4;
}

#hirad--faq-search-input:focus {
  border: 1px solid #cfcdd7;
  outline: none;
}

.hirad--faq-searchstatus-container {
  background-color: #fff;
  border-radius: 100%;
  border: 1.5px solid #5e20d1;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  position: absolute;
  top: 15%;
  left: 10px;
  cursor: pointer;
}

.hirad--faq-searchstatus-container i {
  color: #5e20d1;
  font-size: 20px;
}

.hirad--faq-question {
  background-color: unset;

  border: none;
  line-height: 180%;
  width: 100%;
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}
.hirad--faq-question span {
  color: #22242b;
  text-align: right;
  font-size: 14px;
  font-weight: 800;
}

.hirad--faq-answer-wrapper {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #e7e5ec;
  display: none;
}

.hirad--faq-answer-wrapper-show {
  display: block;
  margin-bottom: 10px;
}

.hirad--faq-answer-text {
  padding: 17px 12px;
  line-height: 2.3em;
  color: rgba(34, 36, 43, 0.7);

  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.hirad--faq-answer-title {
  color: #fff;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  border-radius: 6px;
  margin-left: 5px;
  opacity: 1 !important;
  padding: 4px 8px;
  background: var(
    --orange-linear,
    linear-gradient(270deg, #ff9885 0%, #e75035 100%)
  );
}

.hirad--faq-question i {
  color: #e75035;
  font-size: 17px;
  font-weight: 900;
}

.hirad--faq-answer-wrapper a {
  color: #e75035;
  text-align: center;

  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 10px;
}

.hirad--faq-answer-wrapper a i {
  transform: rotate(45deg);
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
}

.hirad--faq-question-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #dcd8e6;
  padding: 0 0 10px 0;
}
.hirad--faq-question-item:last-child {
  border-bottom: unset;
}

.hirad--faq-questions-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hirad-faq-show-all-questions {
  color: #22242b;
  text-align: center;
  font-size: 14px;
  font-weight: 100;
  border-radius: 50px;
  background: #e7e5ec;
  text-decoration: none;
  padding: 10px 17px;
  word-spacing: -2px;
  transition: background-color 0.3s ease;
}

.hirad-faq-show-all-questions:hover {
  background-color: #d3d0da;
}

.hirad-faq-footer-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* change log widget */

.hirad--change-list-item {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
}

.hirad--change-list-month-name {
  color: #22242b;
  text-align: right;

  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  margin: 0;
  list-style: none;
}

.hirad--change-list-version-number-value {
  padding: 4px 12px;
  border-radius: 50px;
  background: var(
    --purple-linear,
    linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%)
  );
  color: #fff;
  text-align: right;

  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 180%;
}

.hirad--change-list-show-btn {
  border-radius: 50%;
  border: 2px solid rgba(34, 36, 43, 0.3);
  background-color: unset;
  display: inline-flex;
  padding: 2px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.hirad--change-list-show-btn i {
  font-size: 18px;
  color: #fff;
  background: rgba(34, 36, 43, 0.3);
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.4s ease;
  transform-origin: center center;
}

.hirad--change-list-show-btn:hover {
  border-color: #7b63a6;
  background-color: rgba(126, 81, 214, 0.1);
}

.hirad--change-list-show-btn:hover i {
  background: linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%);
}

.hirad--change-list-show-btn.active {
  border-color: #5e20d1;
  background-color: rgba(94, 32, 209, 0.15);
}

.hirad--change-list-show-btn.active i {
  background: linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%);
  transform: rotate(-180deg);
}

.hirad--change-list-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hirad--change-list-version-number {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hirad--change-list-like-line {
  width: 100%;
  height: 1px;
  background: #dcd8e6;
  margin-top: 13px;
  margin-bottom: 4px;
}

.hirad--change-list-detail-item {
  color: rgba(34, 36, 43, 0.7);
  margin: 0;
  text-align: right;

  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hirad--change-list-detail-item span {
  color: #fff;
  text-align: right;

  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  padding: 0 7px;
  border-radius: 6px;
  background: var(
    --orange-linear,
    linear-gradient(270deg, #ff9885 0%, #e75035 100%)
  );
}

.hirad--change-list-details-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.hirad--change-list-details-wrapper.active {
  min-height: fit-content; /* adjust as needed */
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

span.hirad--change-list-type.hirad--change-type--added {
  background: linear-gradient(270deg, #6ddf90 0%, #1faa59 100%);
}

span.hirad--change-list-type.hirad--change-type--fixed {
  background: linear-gradient(270deg, #ffd36e 0%, #f1a208 100%);
}

span.hirad--change-list-type.hirad--change-type--improved {
  background: linear-gradient(270deg, #a384f3 0%, #6a3dc9 100%);
}
span.hirad--change-list-type.hirad--change-type--changed {
  background: linear-gradient(270deg, #7ea9f3 0%, #3a57e8 100%);
}
span.hirad--change-list-type.hirad--change-type--removed {
  background: linear-gradient(270deg, #fc6e6e 0%, #d63447 100%);
}

/* Hirad Vertical Price Plan */
.hirad-price-plan-vertical-body {
  position: relative;
  height: 100% !important;
}
.hirad-price-plan-vertical-swiper {
  width: 100%;
  height: 100% !important;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}
.hirad-price-plan-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  width: 100%;
  justify-content: flex-start;
  border: 2px solid #e1e1e1;
}

.hirad-price-plan-vertical-swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hirad-price-plan-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  width: 100%;
  justify-content: flex-start;
}
span.hirad-price-plan-flot-item-o {
  position: absolute;
  z-index: 1;
  bottom: -25px;
  right: -32px;
}
span.hirad-price-plan-flot-item-t {
  position: absolute;
  z-index: 1;
  top: -30px;
  left: -10px;
}

span.hirad-price-plan-header-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  border-radius: 6px;
  background: linear-gradient(270deg, #ff9885 0%, #e75035 100%);
  padding: 3px 9px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}
.hirad-price-plan-header-title * {
  color: #5e20d1;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}
span.hirad-price-plan-header-price-num {
  color: #e75035;
  text-align: right;
  
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
}
span.hirad-price-plan-header-price-syb {
  color: #22242b;
  text-align: right;
  font-family: IRANYekanX;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.hirad-price-plan-header {
  border-radius: 24px;
  border: 2px solid #ffffff;
  background: #fff;
  margin: 0;
  padding: 20px 50px;
  min-width: 20%;
}
.hirad-price-plan-body {
  display: flex;
  color: #22242b;
  text-align: right;
  font-family: IRANYekanX;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  width: 50%;
  justify-content: center;
}
.hirad-price-plan-footer-title {
  color: #22242b;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}
.hirad-price-plan-footer-link a {
  border-radius: 50px;
  border: 1px solid #5e20d1;
  padding: 4px 11px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 28.8px */
}
.hirad-price-plan-footer-link a {
  border-radius: 50px;
  border: 1px solid #5e20d1;
  padding: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
span.hirad-price-plan-footer-link-txt {
  border-radius: 50px;
  background: var(
    --purple-linear,
    linear-gradient(91deg, #5e20d1 0%, #7b63a6 100%)
  );
  padding: 2px 8px;
}
.hirad-price-plan-header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hirad-price-plan-vertical-swiper-slide .hirad-price-plan-header-img {
  opacity: 0;
  margin-top: -65px;
  display: none;
}
.hirad-price-plan-vertical-swiper-slide.active .hirad-price-plan-header-img {
  opacity: 1;
  display: block;
}
.hirad-price-plan-header-img {
  margin-top: -65px;
  width: 125px;
  height: 125px;
}
.hirad-price-plan-bf {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hirad-price-plan-footer {
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: center;
}
.hirad-price-plan-vertical-swiper-slide {
  transition: all 0.3s ease;
  filter: blur(1px);
}

.hirad-price-plan-vertical-swiper-slide {
  filter: blur(0px);
  z-index: 1;
  /* transform: scale(1.1); */
}
.hirad-price-plan-header {
  padding: 20px;
  min-width: 30%;
}
.hirad-price-plan-vertical-swiper-slide.active .hirad-price-plan-header {
  border-radius: 24px;
  border: 2px solid #5e20d1;
  background: #fff;
  margin: -15px;
}
.hirad-price-plan-vertical-swiper-container {
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.hirad-price-plan-vertical-swiper-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
  padding-top: 60px;
}

.hirad-price-plan-vertical-swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.9);
}

.hirad-price-plan-vertical-swiper-slide.active {
  opacity: 1;
  transform: scale(1);
  padding: 0 25px;
  z-index: 3;
}

.hirad-price-plan-swiper-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}
/* 
.swiper-nav-buttons button {
  padding: 8px 14px;
  border: none;
  background-color: #ff6b6b;
  color: white;
  cursor: pointer;
  font-size: 18px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.swiper-nav-buttons button:hover {
  background-color: #e04848;
} */
.hirad-price-plan-swiper-nav-buttons span.at-swiper-button-prev {
  left: -25px;
  top: 47%;
  z-index: 10;
  right: unset;
}
.hirad-price-plan-swiper-nav-buttons span.at-swiper-button-next {
  left: -25px;
  top: 40%;
  z-index: 10;
}
.hirad-price-plan-footer-link {
    margin-top: 10px;
}
/* horizental */

.hirad-price-plan-horizental-swiper-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.hirad-price-plan-wrapper.is-horizental-swiper-inner {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.hirad-price-plan-bf.is-horizental-swiper-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hirad-price-plan-vertical-swiper-container.is-horizental-swiper-inner {
  max-height: fit-content;
}
.swiper-slide.hirad-price-plan-vertical-swiper-slide.is-horizental-swiper-inner {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
  transform: unset !important;
  overflow: visible;
}

.swiper-slide.hirad-price-plan-vertical-swiper-slide.is-horizental-swiper-inner
  .hirad-price-plan-header-img {
  opacity: 1;
  margin-top: -65px;
  display: block;
}
.swiper.hirad-price-plan-swiper.is-horizental-swiper-inner {
  padding: 50px 30px;
}

.is-horizental-swiper-inner .hirad-price-plan-header {
  padding: 20px;
  min-width: calc(100% + 35px);
  border-radius: 24px;
  border: 2px solid #5e20d1;
  background: #fff;
  margin-top: -5px;
}
.hirad-price-plan-wrapper.is-horizental-swiper-inner {
  width: 95%;
}

.is-horizental-swiper-inner .hirad-price-plan-body,
.is-horizental-swiper-inner .hirad-price-plan-footer {
  width: 100%;
}

.is-horizental-swiper-inner .hirad-price-plan-body {
  padding-top: 0px;
  padding-bottom: 20px;
}
.is-horizental-swiper-inner .hirad-price-plan-footer {
  border-top: 1px solid #e1e1e1;
  padding-top: 20px;
  padding-bottom: 10px;
}

.hirad-price-plan-bf.is-horizental-swiper-inner {
  padding: 20px;
}
.hirad-price-plan-swiper-pagination {
  text-align: center;
  padding: 30px 0 0 0;
  color: #fff;
}

.hirad-price-plan-swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(91deg, #fff 0%, #ffffff65 100%);
  width: 25px !important;
  border-radius: 5px;
}

.hirad-price-plan-swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
/*  Hirad Time Line */
.aria-timelineTwo-holder {
  position: relative;
}
.aria-timelineTwo-counter {
  color: #5e20d1;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
}
.aria-timelineTwo-counter span {
  color: #5e20d1;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  background: #fff;
  border-radius: 50px;
  padding: 0 25px;
}
.aria-timelineTwo-title-hoder {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
}
.timelineTwo-content-heading {
  color: #22242b;
  text-align: right;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

.aria-timelineTwo-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aria-timelineTwo-img i {
  color: #e95235;
  font-size: 24px;
  size: 24px;
}
.timelineTwo-content-excerpt {
  color: #22242b;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  padding-top: 15px;
}
.aria-timelineTwo-itemholder {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.aria-timelineTwo-main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
}

.aria-timelineTwo-main-wrapper:nth-child(2n + 1) {
  gap: 25px;
  flex-direction: column-reverse;
}

.hirad--wavy-line {
  /* Customizable variables */
  --s: 100px; /* wave size (wavelength) */
  --b: 1px; /* line thickness */
  --m: 0.6; /* curvature factor [0..2] */
  --dash: 5; /* dash length in px (number only) */
  --gap: 10; /* gap length in px (number only) */
  --color: #5e20d1; /* line color */

  /* Dashed background along X axis */
  background: repeating-linear-gradient(
    90deg,
    var(--color) 0 calc(var(--dash) * 1px),
    transparent calc(var(--dash) * 1px) calc((var(--dash) + var(--gap)) * 1px)
  );

  /* Wave geometry */
  --R: calc(var(--s) * sqrt(var(--m) * var(--m) + 1) + var(--b) / 2);
  height: calc(2 * var(--R));
  width: 100%;
  --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;

  /* Mask the background into a wavy stroke */
  -webkit-mask: radial-gradient(
        var(--R) at left 50% bottom calc(-1 * var(--m) * var(--s)),
        var(--_g)
      )
      calc(50% - 2 * var(--s)) calc(50% - var(--s) / 2 - var(--b) / 2) /
      calc(4 * var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(
        var(--R) at left 50% top calc(-1 * var(--m) * var(--s)),
        var(--_g)
      )
      50% calc(50% + var(--s) / 2 + var(--b) / 2) / calc(4 * var(--s))
      calc(var(--s) + var(--b)) repeat-x;
  mask: radial-gradient(
        var(--R) at left 50% bottom calc(-1 * var(--m) * var(--s)),
        var(--_g)
      )
      calc(50% - 2 * var(--s)) calc(50% - var(--s) / 2 - var(--b) / 2) /
      calc(4 * var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(
        var(--R) at left 50% top calc(-1 * var(--m) * var(--s)),
        var(--_g)
      )
      50% calc(50% + var(--s) / 2 + var(--b) / 2) / calc(4 * var(--s))
      calc(var(--s) + var(--b)) repeat-x;
}

.hirad--wavy-line {
  position: absolute;
  bottom: 0;
}


.hirad-price-plan-footer-link a span.aria-icon {
    color: #5e20d1;
    font-size: 20px;
    margin: 0 5px;
    display: flex;
}