/*
 * popup.css 
 *  CSS POPUP --> https://taegon.kim/archives/10088
 */
#windowAlert{
  display: none;
  position: absolute;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 9999;
} 

.popup{
  position: absolute;

  top:100px; left:150px; 
  width: 980px; height: 600px;

  padding:10px 0;

  border-radius: 20px;
  border:10px solid white;
  box-shadow: 5px 7px 10px rgba(0,0,0,0.5);
  background-color: #ffa50a;
  background: radial-gradient(circle, #ffb71c, #ffb71c, #ffa50a);

  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  font-family: 'Jua', sans-serif;
  font-size: 28px;
  line-height: 150px;
  font-weight: bold;

  text-align: center;
}
#windowExit,#windowDuplicated,#windowSocketError{
  display: none;
  position: fixed;
  top:50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  z-index: 999;
  background-color: rgba(0,0,0,0.5);
}

#msgClassExit,#msgDuplicated{
  top: 50%; left: 50%; 
  transform: translate(-50%, -50%);
  width: 500px; height: 100px;
  padding: 20px;
  line-height: 100px;
}	
#msgSocketError{
  top: 50%; left: 50%; 
  transform: translate(-50%, -50%);
  width: 600px; height: 100px;
  padding: 20px;
  line-height: 100px;
}
button#popup_error_yes{ 
  border:1px solid red;
  position: absolute;
  top: 110px; left: 250px;

  outline: 0;
  width: 100px;
  height: 40px;
  border: 0;
  margin:10px;
  padding: 10px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  background: #ffcc00;#fff;4CAF50;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);

  color: #fff;#ffcc00;
  font-family: 'Jua', sans-serif;
  text-transform: uppercase;
  text-shadow: 0px 0px 2px rgba(0,0,0,0.9);
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  border-radius: 5px;

}
button.popupMenuButton,
#msgClassExit button {
  outline: 0;
  min-width: 100px;
  border: 0;
  margin:0 10px;
  padding: 10px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  background: #ffcc00;#fff;4CAF50;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);

  color: #fff;#ffcc00;
  font-family: 'Jua', sans-serif;
  text-transform: uppercase;
  text-shadow: -0.2px -0.3px 0.5px rgba(0,0,0,0.5);
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  border-radius: 5px;
} 



