
.cover-image {

  $transition-property: opacity, visibility;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  @include apply_transition($transition-property, $transition-duration, $transition-timing);


  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;

  opacity: 1;
  visibility: visible;
}
.vplayer{


  &[data-img]{
    >.vp-inner{
      .dzsvg-video-container{
        opacity: 0;

        $transition-property: opacity, visibility;
        $transition-duration: 0.3s;
        $transition-timing: ease-out;
        @include apply_transition($transition-property, $transition-duration, $transition-timing);
      }
    }
  }



  .cover-image > .the-div-image {

    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #444;

  }

  &.cover-image-loaded {
    .the-div-image {
    }
  }


  .cover-image {

    > .the-div-image {

      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;

      background-position: center center;
    }

    .big-description {
      position: absolute;
      top: 18px;
      right: 30px;
      font-size: 40px;
      color: #FFFFFF;
      line-height: 1.2;
      font-family: "Lato", arial, serif;
      text-align: right;
      font-weight: 300;

      .headline {
        font-size: 50px;
        font-weight: 900;
      }
    }
  }


  &.first-played{

    >.vp-inner{
      .cover-image {
        opacity: 0;
        visibility: hidden;
      }
      .dzsvg-video-container{
        opacity: 1;
      }
    }
  }
}