/**
 * Modal Snippet
 */
/* Animations */
@-webkit-keyframes fadeinOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.25;
  }
}
@keyframes fadeinOverlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes fadeinModal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeinModal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Element Styles */
/* Overlay ( Background of Modal ) */
.iv2-modal-overlay {
  position: fixed;
  z-index: 12000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-animation: fadeinOverlay 0.25s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation: fadeinOverlay 0.25s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

/* Modal Element */
.iv2-modal {
  z-index: 12001;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  align-items: center;
  -webkit-animation: fadeinModal 0.25s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation: fadeinModal 0.25s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.iv2-modal__wrap {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 15px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  max-height: 70%;
  overflow-y: scroll;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
.iv2-modal__wrap .iv2-modal__wrap-dismiss {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #a0a0a0;
  background: none;
  border: none;
}
.iv2-modal__wrap .iv2-modal__wrap-header {
  padding: 0 10px 5px;
  border-bottom: 1px solid #e0e0e0;
}
.iv2-modal__wrap .iv2-modal__wrap-content {
  padding: 10px;
}
.iv2-modal__wrap .iv2-modal__wrap-footer {
  padding: 5px 10px 0;
  border-top: 1px solid #e0e0e0;
}

/* Block Element Fade In Animation */
.fadein .iv2-article > .container-fluid > .row {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 300ms;
}
.fadein .iv2-article > .container-fluid > .row.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/* Swiper Slider */
.iv-swiper-bg {
  background: #265195;
}
.iv-swiper-bg h3.theme__heading-text, .iv-swiper-bg p.theme__heading-subtext {
  color: #fff;
}
.iv-swiper-bg div.theme__heading::before, .iv-swiper-bg div.theme__heading::after {
  background-color: #fff;
}
.iv-swiper-bg div.swiper-pagination {
  bottom: -10px;
}
.iv-swiper-bg span.swiper-pagination-bullet {
  background-color: #fff;
}
.iv-swiper-bg span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

.iv-swiper {
  width: 100%;
  padding: 0 30px 30px !important;
}

.swiper-slide {
  width: 350px;
  margin: 0 30px 30px 0;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  float: left;
}
.swiper-slide__image {
  background: transparent;
}
.swiper-slide h4 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0 0 50px;
}
.swiper-slide h4::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #000;
}
.swiper-slide .swiper-small {
  margin: 0 0 20px;
  font-size: 14px;
  color: #7B7B7B;
}
.swiper-slide .swiper-description {
  margin: 0;
  font-size: 16px;
}

/* accordion */
.iv-accordion {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #adadad;
}
.iv-accordion dt {
  position: relative;
  padding: 30px 60px 30px 30px;
}
.iv-accordion dt p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
}
.iv-accordion dt::after {
  position: absolute;
  content: "+";
  top: 25px;
  right: 30px;
  color: #2a2a2a;
  font-size: 26px;
  font-weight: normal;
}
.iv-accordion dt.active::after {
  content: "-";
  font-weight: normal;
}
.iv-accordion dd {
  position: relative;
  padding: 0 30px 30px;
}
.iv-accordion dd p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

/**
 * Other Snippet
 */
/* ... */
