/* page styles */
.ax-hidden {
  visibility: hidden;
  position: absolute;
}

/* iwj-flip-carousel styles */
.iwj-flip-carousel {
  --iwj-flip-carousel-height: 400px;
  --iwj-flip-carousel-width: 1000px;
  --iwj-flip-carousel-item-height: 285px;
  --iwj-flip-carousel-item-width: 150px;

  width: 100%;
  background-image: url(../imgs/bg-interview-slider.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 30px;
}

.item-prev .item-content,
.item-next .item-content{
    display: none;
}
.iwj-flip-carousel-container {
  align-items: center;
  display: flex;
  min-height: var(--iwj-flip-carousel-height);
  margin: 0 auto;
  max-width: var(--iwj-flip-carousel-width);
  position: relative;
  overflow: hidden;
}

.iwj-flip-carousel-item {
  height: var(--iwj-flip-carousel-item-height);
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: 50%;
  z-index: 0;
}

/*.item-prev {
}*/

.item-prev,
.item-next {
  z-index: 1;
  transform: translateX(0);
}

.item-prev {
  left: 0;
  opacity: 1;
}

.item-active {
  opacity: 1;
  left: 25%;
  z-index: 2;
  transform: scale(1.3);
}

.item-next {
  left: 50%;
  opacity: 1;
}

/*.iwj-flip-carousel-item-5 {
  left: 85%;
}*/

.iwj-flip-carousel-controls {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}


/* play button */
.iwj-flip-carousel-control-play::before {
  border-bottom: 5px solid transparent;
  border-left: 6px solid;
  border-top: 5px solid transparent;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  left: 7px;
  top: 4px;
  width: 0;
}

/* pause button */
.iwj-flip-carousel-control-play.playing::before {
  border-bottom: 0;
  border-left: 2px solid;
  border-right: 2px solid;
  border-top: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 6px;
  position: absolute;
  left: 6px;
  top: 6px; 
  width: 6px;
}

/* add button */
.iwj-flip-carousel-control-add::after,
.iwj-flip-carousel-control-add::before {
  background: currentColor;
  border-radius: 5px;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 4px;
  top: 8px;
  width: 10px;
}
.iwj-flip-carousel-control-add::after {
  height: 10px;
  left: 8px;
  top: 4px;
  width: 2px;
}