.p-image-wrapper .p-image{
    position :relative;
  }
  #productVideosToggle{
    display: flex;
    background: #fff;
    font-size: 14px;
    padding: 10px 15px 10px 40px;
    position: absolute;
      bottom: 10px;
    left: 10px;
    z-index: 0;
    line-height: 1;
    background-image: url("https://www.benlemi.cz/user/documents/theme/dist/icons/youtube.svg");
      background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 22px;
    cursor: pointer;
  }
  
  
  #productVideos{
    display: none;
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
      align-items: center;
  justify-content: center;
    background: rgba(0,0,0,0.1);
  }
  #productVideos iframe{
    max-width: 800px;
    height: 460px;
  }
  body.--showVideo{
    overflow: hidden;
  }
  body.--showVideo #productVideos{
    display: flex;
  }
  @media screen and (max-width: 991px){
    #productVideos iframe{
    height: 360px;
  }
  }
  @media screen and (max-width: 575px){
    #productVideos iframe{
    height: 320px;
  }
  }