body {
    margin: 0;
    padding: 0;
}
.button-sub{
    display: flex;
}
.button-sub .selectMovieType{
    background-image: linear-gradient(90deg, #ffe985 0%, #f9732b 100%);
    cursor: pointer;
    border: unset;
    width: 20%;
    height: 30px;
}
.button-sub .selectMovieType:focus{
    outline: unset;
}
.active{
    background: #464646!important;
    color: #fff;
}
.button-sub .selectMovieType[data-type="main"]{
    border-radius: 5px 0 0 5px;
}
.button-sub .selectMovieType[data-type="sub"]{
    border-radius: 0 5px 5px 0;
}

#moviePlayer{
  position:relative;
  padding-bottom:56.25%;
  height:0;
  margin:0 auto;
  background: #000000;
}
#moviePlayer iframe{
  position:absolute;
  /* top:0; */
  /* left:0; */
  width:100%;
  height:100%;
}