/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16 янв. 2023 г., 11:31:11
    Author     : grechkosiy
*/

.open-video-popup {
    display: block;
    width: 100%;
    cursor: pointer;
  }
  .open-video-popup img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #ddd;
  }
  #wrap-popup-video.hide{
    display: none;
  }
  #wrap-popup-video {
    background-color: rgb(0 0 0 / 40%);
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 1060;
  }
  .popup-video {
    position: relative;
    width: 100%;
    max-width: 1600px;
    padding: 4rem 0;
  }
  #wrap-popup-video button.close {
    position: fixed;
    border: 0;
    opacity: .75;
    background-color: transparent;
    color: #fff;
    font-size: 5rem;
    right:0;
    top: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 100;
  }
  #wrap-popup-video button.close:hover{
    opacity: 1;
    background: black;
  }
  @media (min-height: 540px) and (max-height: 720px){
    .popup-video {
      height: 100%;
      width: auto;
      padding: 1rem;
  }
  }
  @media (max-width: 1000px){
    .popup-video {
      display: flex;
      justify-content: center;
  }
  }