.relative
{
  position: relative;
}

.icj-items {
  position: relative;
  left: 50%;
  transform: translatex(-50%);
  user-select: none;
  height: auto;
  width: 100%;
}

.icj-items .icj-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  transition: all 300ms ease-in-out;
  z-index: -1;
  opacity: 0;
  width: 100%;
}

.icj-item img {
  width: auto;
  height: auto;
  object-fit: cover;
}

.icj-item.icj-active {
  opacity: 1;
  z-index: 99;
  box-shadow: 0px 0px 105px -35px rgba(0, 0, 0, 0.icj-75);
}

.icj-item.icj-prev {
  z-index: 2;
  opacity: 0.icj-25;
  transform: translate(-125%, -50%);
}

.icj-item.icj-next {
  z-index: 2;
  opacity: 0.icj-25;
  transform: translate(25%, -50%);
}



.icj-button {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  position: absolute;
  opacity: 0.75;
  /*transition: all 300ms ease-in-out;*/
}

#icj-left-btn {
  left: 0;
  z-index: 1;
}
#icj-right-btn {
  right: 5vw;
} 

 .icj-button:hover {
  opacity: 1;
}

.icj-button:before {
  content: "";
  position: absolute;
  top: 70%;
  left: 57%;
  width: 25px;
  height: 25px;
  background-color: #7e7e7e;
  border-radius: 50%;

}

#icj-container {
    position: relative;
    width: 100%;
    height: 410px;
    max-height: 50vw;
    align-items: center;
    display: flex;
  }


#icj-left-btn:before {
  transform: translate(-63%, -50%);
}
#icj-right-btn:before {
  transform: translate(-45%, -50%);
} 


.icj-button:nth-child(1) {
  float: left;
}
.icj-button:nth-child(2) {
  float: right;
}

.icj-button {
  background: none;
}

#icj-right-btn .icj-arrow {
  transform: rotate(-45deg);
}
#icj-left-btn .icj-arrow {
  transform: rotate(135deg);
}
.icj-button .icj-arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transition: transform 0.3s ease-out;
  outline: none;
}











.video-js-responsive-container.vjs-hd {
  padding-top: 56.25%;
}
.video-js-responsive-container.vjs-sd {
  padding-top: 75%;
}
.video-js-responsive-container {
  width: 100%;
  position: relative;
}
.video-js-responsive-container .video-js {
  height: 100% !important; 
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}