.easyel-image-accordion {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.easyel-image-accordion .easyel-image-item {
  flex: 1;
  transition: flex 0.5s ease;
  position: relative;
  overflow: hidden;
}
.easyel-image-accordion .easyel-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
  display: block;
}
.easyel-image-accordion .easyel-image-item:hover, .easyel-image-accordion .easyel-image-item.active {
  flex: 2;
  z-index: 2;
}
.easyel-image-accordion .easyel-image-item .easyel_image_meta {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -130px;
  background-color: var(--e-global-color-secondary);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  text-align: center;
}
.easyel-image-accordion .easyel-image-item .easyel_image_meta .easyel-image-title {
  color: #fff;
}
.easyel-image-accordion .easyel-image-item.active .easyel_image_meta {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
  transition-delay: 0.4s;
}
.easyel-image-accordion:hover .easyel-image-item {
  flex: 0.4;
}

.easyel-image-accordion.eel-image-accordion-vertical {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
}

.easyel-image-accordion.eel-image-accordion-vertical .easyel-image-item {
  flex: 1;
  transition: flex 0.6s ease, height 0.6s ease;
  position: relative;
  overflow: hidden;
}

.easyel-image-accordion.eel-image-accordion-vertical .easyel-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.eel-img-acrdn-video {
  text-align: center;
  margin-top: 20px;
  display: none;
  transition: all 0.4s;
}

.easyel-image-item.active .eel-img-acrdn-video {
  display: block;
}

.eel-img-acrdn-v-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--e-global-color-primary);
  will-change: transform;
}

/* Text around circle */
.eel-img-acrdn-v-text text {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  fill: #fff;
}

/* Rotating circle */
.eel-img-acrdn-v-text .spinner {
  width: 100%;
  height: 100%;
  animation: spinText 12s linear infinite;
  transform-origin: center;
}

/* Disable pointer on SVG */
.eel-img-acrdn-v-text svg {
  pointer-events: none;
}

/* Icon center */
.eel-img-acrdn-v-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eel-img-acrdn-v-icon svg,
.eel-img-acrdn-v-icon i {
  width: 35px;
  height: 35px;
  color: #fff;
  fill: currentColor;
  transition: transform 0.3s ease, color 0.3s ease;
}

.eel-img-acrdn-v-icon svg path {
  fill: #fff;
}

/* Hover effect */
.eel-img-acrdn-v-text:hover .eel-img-acrdn-v-icon svg {
  transform: scale(1.1);
  color: #fff;
}

@keyframes spinText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=image-accordion.css.map */