.quoting {
	display: block;
	position: fixed;
	right: 50px;
	bottom: 30px;
	width: 150px;
	height: 40px;
	padding: 10px;
	background: radial-gradient(
			      yellow,
			      #f06d06
			    );
	border-radius: 28px 28px 0 28px;
	box-shadow: 1px 1px 5px gray;
	text-align: center;
	cursor: pointer;
	z-index:9999;
}

.quoting::before {
	content: "";
    width: 20px;
    height: 100%;
    border-radius: 0px;
    z-index: 10000;
    background: radial-gradient(
  				yellow,
  				#f06d06
				);
    position: absolute;
    bottom: 0;
    right: -20px;
}
.quoting::after {
	content: "";
    width: 20px;
    height: 150%;
    border-radius: 0 0 0 20px;
    z-index: 10001;
    background: white;
    position: absolute;
    bottom: -1px;
    right: -20px;
}
.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: 1; /* 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: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
    animation: fadein1 1s;
}
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
iframe {
	width: 474px;
	height: 620px;
	margin: 0 auto;
	display:block;
}