/* css/popup_window.css */
#popup-window {
  color: white;
  
  position: fixed;
  left: 0; 
  right: 0; 
  top: 0; 
  bottom: 0;
  
  display: none;
  
  z-index: 99999;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#popup-window .pw-wrap {
  background: #0197d6;
  
  padding: 12px 19px 20px 16px;
  
  width: 90%;
  max-width: 326px;
  
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

@media  screen and (max-width:360px){
  #popup-window .pw-wrap {
        max-width: 305px;
  }
}

#popup-window .pw-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  margin-bottom: 15px;
}

#popup-window .pw-title {
  margin: 0 10px 0 0;
  font-size: 25px;
}

@media  screen and (max-width:360px){
    #popup-window .pw-title {
      margin: 0 10px 0 0;
      font-size: 23px;
    }    
}

#popup-window .pw-desc {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 258px;
}

#popup-window .pw-btn {
  display: inline-block;
  cursor: pointer;
  background: white;
  color: #0197d6;
  border-radius: 4px;
  
  font-size: 17px;
  font-weight: bold;
  padding: 5px 8px;
  
  border: none;  
  border-radius: 20px;  
}