.listVideo {
  position:relative;
}
.listVideo video {
  width:272px;
  height:153px;
  display:block;
  margin:0 auto;
  /*background-color: #000;*/
  padding-left:10px;
  padding-right:10px;
  outline:none;
}
.listVideo .slick-list {
  overflow:visible;
}
.listVideo .slick-arrow {
  padding: 10px;
  position: absolute;
  top:calc(76.5px - 28.65px); /*(video height / 2) - (arrow height / 2)*/
  font-size: 4em;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 3;
  opacity: .5;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: none;
}
.listVideo .prev {
    left: -2%;
}
.listVideo .next {
    right: -2%;
}
.listVideo svg {
  display:block;
}
.listVideo .slick-arrow path {
    fill: #999;
}
.listVideo .slick-disabled {
  display:none !important;
}
.listVideo .slick-dots {
  margin-top:10px;
}
@media screen and (min-width:375px) {
  .listVideo video {
    width:320px;
    height:180px;    
  }
  .listVideo .slick-arrow {
    top:calc(90px - 28.65px); /*(video height / 2) - (arrow height / 2)*/
  }
}
@media screen and (min-width:425px) {
  .listVideo video {
    width:360px;
    height:202.5px;    
  }
  .listVideo .slick-arrow {
    top:calc(101.25px - 28.65px); /*(video height / 2) - (arrow height / 2)*/
  }
}
@media screen and (min-width:768px) {
  .listVideo video {
    width:670px;
    height:377px;
  }
  .listVideo .slick-arrow {
    top:calc(188.5px - 28.65px); /*(video height / 2) - (arrow height / 2)*/
  }
  .listVideo .prev {
    left: 0%;
  }
  .listVideo .next {
    right: 0%;
  }  
  .listVideo .slick-dots {
    margin-top:20px;
  }
}

@media screen and (min-width:1200px) {
  .listVideo video {
    width:1040px;
    height:585px;
  }
  .listVideo .slick-arrow {
    top:calc(292.5px - 28.65px); /*(video height / 2) - (arrow height / 2)*/
  }
  .listVideo .slick-dots {
    margin-top:50px;
  }
}