/**
 * Modal Snippet
 */
@import url(./swiper-bundle.min.css);
/* Element Styles */
/* Overlay ( Background of Modal ) */
.iv2-modal-overlay.show {
  display: inherit;
}
.iv2-modal-overlay.hide {
  display: none;
}

/* Modal Element */
.iv2-modal {
  position: fixed;
}

.iv2-modal.show {
  display: flex;
}
.iv2-modal.hide {
  display: none;
}

/* accordion */
.iv-accordion dt:hover {
  cursor: pointer;
}
.iv-accordion dd {
  display: none;
  -webkit-animation: appear 0.5s ease;
          animation: appear 0.5s ease;
}
.iv-accordion dd.active {
  display: block;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * Other Snippet
 */
/* ... */