@charset "utf-8";
/* CSS Document */

.popup-overlay {
  /*Hides pop-up when there is no "active" class*/
  
  position: absolute;
  background: #ffffff;
  border: 1px solid #C0C0C0;
  top: 300px;
  width: 90%;
  height: auto;
  left: 5%;
	opacity: 0;
	-webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
	visibility: hidden;
}

.popup-overlay.active {
  /*displays pop-up when "active" class is present*/
  -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
	opacity: 1;
	visibility: visible;
  
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
 
	opacity: 0;
	-webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
	visibility: hidden;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
 
	opacity: 1;
	-webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
	visibility: visible;
}


.open:hover {
	cursor: pointer;
}

.close {
	opacity: 1;
}