#quotePopup {
        width: 120px;
        height: auto;
}

.quoting {
	display: block;
	position: fixed;
	right: 25px;
	top: 75px;
	width: 120px;
	height: auto;
	padding: 2px;
	
	text-align: center;
	cursor: pointer;
	z-index:99999 !important;
}
.quoting > a {
	display: block;
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 10px;
	transition: quoting .5s;
	font-size:18px;
}
.quoting_text{
	color:red;
	display: inline-block;  
	font-size:18px;
	font-weight: bold;
}
.animation1 {
	animation: fadein1 1.5s;
}
.animation2 {
	animation: fadein2 1.5s;
}		
@keyframes fadein1 {
	from {
		opacity: 0;
		top: -10px;
	}
	to {
		opacity: 1;
		top: 10px;
	}
}

@-o-keyframes fadein1{
  from {
		opacity: 0;
		top: 0px;
	}
	to {
		opacity: 1;
		top: 10px;
	}
}
@-moz-keyframes fadein1{
 from {
		opacity: 0;
		top: 0px;
	}
	to {
		opacity: 1;
		top: 10px;
	}
}
@-webkit-keyframes fadein1{
  from {
		opacity: 0;
		top: 0px;
	}
	to {
		opacity: 1;
		top: 10px;
	}
}
@keyframes fadein2 {
	from {
		opacity: 0;
		left: -5px;
	}
	to {
		opacity: 1;
		left: 10px;
	}
}
@-o-keyframes fadein2{
 from {
		opacity: 0;
		left: -5px;
	}
	to {
		opacity: 1;
		left: 10px;
	}
}
@-moz-keyframes fadein2{
from {
		opacity: 0;
		left: -5px;
	}
	to {
		opacity: 1;
		left: 10px;
	}
}
@-webkit-keyframes fadein2{
  from {
		opacity: 0;
		left: -5px;
	}
	to {
		opacity: 1;
		left: 10px;
	}
}

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 99999 !important; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(1,1,1,0); /* Black w/ opacity */

}
/* Modal Content/Box */
.modal-content {
    background-color: transparent;
    margin: 3%auto; /* 15% from the top and centered */
    padding: 5px;
    border: 0px solid #888;
    width: 100%; /* Could be more or less, depending on screen size */
    animation: fadein1 2s;
}
/* The Close Button */
.close {
    color: #FF6600;
    float: right;
    font-size: 32px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #777;
    text-decoration: none;
    cursor: pointer;
}
iframe {
	
        width: 490px;
	height: 680px;
	margin: 0 auto;
	display:block;
        border: 0px solid #888;
}

