/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: visible;
  /*width: 160px;*/
  width: 550px;
  height: auto;
  background-color: #009fda;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 5%;
  left: 1%;
  margin-left: 20px;
  padding: 15px;
}

.popup .popuptext ul.circle {
	list-style-type: circle !important;
	text-align: left;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}



/* Popucontent property */
#content {
	position:absolute; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	top: 35px; 
}
#closeiframe {
	width: 100%; 
	height: 35px; 
	background-color: #fa8300; 
	font-size: 1.5em; 
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight:300;

}
#closeiframe:hover {
	width: 100%; 
	height: 35px; 
	background-color: #fba240; 
	font-size: 1.5em; 
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight:300;

}
#closeiframe a {
	color: #fff;
	text-decoration: none;	
}
#closeiframe ahover {
	color: #fafafa;
}
img.btcloseigrame {
	width: 28px;
	height: 28px;
	margin-top: 2px;
	}

#preview-frame {width: 980px; height: 700px !important;}

