.open-popup .media-video {
  opacity: 0.5;
}

.popup-video{
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;                                                                                                                                                                                                   
  top: 0;                                                                                                                                                                                                         
  bottom: 0;                                                                                                                                                                                                      
  padding: 35px;                                                                                                                                                                                                  
  background-color: rgb(255, 255, 255);                                                                                                                                                                           
  color: rgb(0, 0, 0);                                                                                                                                                                                            
  height: 300px;                                                                                                                                                                                                  
  max-width: 100%;
  width: 600px;                                                                                                                                                                                                  
  z-index: 10;                                                                                                                                                                                                    
}                                                                                                                                                                                                                 
.popup-video .exit{                                                                                                                                                                                               
  text-align: right;                                                                                                                                                                                              
}                                                                                                                                                                                                                 
.popup-video img{                                                                                                                                                                                                 
  cursor: pointer;                                                                                                                                                                                                
}                                                                                                                                                                                                                 
.popup-video h3{                                                                                                                                                                                                  
  margin-bottom:15px;                                                                                                                                                                                             
}                                                                                                                                                                                                                 
.popup-video .yes-no{                                                                                                                                                                                             
  margin-top: 40px;                                                                                                                                                                                               
  text-align: center;                                                                                                                                                                                             
}                                                                                                                                                                                                                 
.popup-video .yes-no button{                                                                                                                                                                                      
 margin: 0 2%;                                                                                                                                                                                                    
}                                                                                                                                                                                                                 
.popup-video .yes-no .rte-blue-button:hover{                                                                                                                                                                      
  background-color: #00CEFF;                                                                                                                                                                                      
}

@media only screen and (max-width: 768px) {
  .popup-video {
    height: 150px;
    padding: 10px;
  }

  .popup-video h3 {
    font-size: 15px;
  }

  .popup-video p {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .popup-video .yes-no {
    margin-top: 5px;
  }

  .popup-video .rte-blue-button {
    min-height: 30px;
    font-size: 12px;
    width: 75px;
  }
} 
