/* Outer */
.popup {
	width:100%;
	height:100%;
	display:none;
	position:fixed;
	top:0;
	left:0;
	background:rgba(0,0,0,0.5);
	z-index: 99999;
}

/* Inner */
.popup-inner {
	max-width:700px;
	width:90%;
	padding: 40px 40px 10px 40px;
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	box-shadow:0 2px 6px rgba(0,0,0,1);
	border-radius:3px;
	background:#fff;
	border: 1px solid #2d2d2d;
}
.popup-inner h2 {padding: 0 20px 15px 20px;
	width: 100%;
	font-weight: 700;
	text-align: center;
	position: relative;
	border-bottom: 1px solid #009de0;
	padding-bottom: 5px;
}

/* Close Button */
.popup-close {
	width:30px;
	height:30px;
	padding-top:4px;
	display:inline-block;
	position:absolute;
	top:0;
	right:0;
	transition: all 0.25s  ease;
	-webkit-transform:translate(50%, -50%);
	transform:translate(50%, -50%);
	border-radius:1000px;
	background:#fff;
	font-size:20px;
	text-align:center;
	line-height:100%;
	color:#009de0;
	border: 2px solid #009de0;
	cursor: pointer;
}
.popup-close:before {
	content: '\f00d';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	left: 0;
	top: 3px;
	bottom: 0;
	font-size: 20px;
	margin: 0 auto;
}

.popup-close:hover {
	-webkit-transform:translate(50%, -50%) rotate(180deg);
	transform:translate(50%, -50%) rotate(180deg);
	background:rgba(0,0,0,1);
	text-decoration:none;
}

#callback {
	position: relative;
	display: inline-block;
	width: 100%;
}
#callback .group{
	position: relative;
	margin: 25px 0 0 0;
}



.sticky-container{
	padding: 0 ;
	margin:0;
	position:fixed;
	right: -190px;
	top: 230px;
	width: 260px;
	z-index: 1100;
}
.sticky li{
	list-style-type:none;
	color:#efefef;
	padding: 0;
	float: left;
	margin:0 0 1px 0;
	border: 2px solid #009de0;
	border-right: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	background: #ffffff;
	box-shadow: 0 0 15px 1px rgba(0,0,0,0.4);
	-webkit-transition:all 0.25s ease-in-out;
	-moz-transition:all 0.25s ease-in-out;
	-o-transition:all 0.25s ease-in-out;
	transition:all 0.25s ease-in-out;
	cursor:pointer;
}
.sticky li:hover{
	margin-left:-180px;
}
.sticky li h2:before{
	content: '\f095';
	font-family: 'FontAwesome';
	position: absolute;
	color: #009de0;
	left: 12px;
	top: 22px;
	font-size: 34px;
}
.sticky li h2{
	padding: 20px 20px 20px 60px;
	position: relative;
	width: 240px;
	font-size: 18px;
	text-align: center;
	background: #2d2d2d;
	color: #fff;
	font-weight: 700;
	border-bottom: 2px solid #009de0;
	margin-bottom: -2px;
}
.sticky li a div{
	opacity: 0;
	visibility: hidden;
	height: 0;
	-webkit-transition: visibility 0s, opacity 0.8s linear;
	-moz-transition:visibility 0s, opacity 0.8s linear;
	-o-transition:visibility 0s, opacity 0.8s linear;
	transition:visibility 0s, opacity 0.8s linear;
}
.sticky li:hover > a div {
	padding: 10px 20px 10px 50px;
	width: 240px;
	height: auto;
	text-align: center;
	visibility: visible;
	opacity: 1;
	
}

@media screen and (max-width: 768px){
	
	#callback .group {
		position: relative;
		margin: 20px 0 0 0;
	}
	.wpcf7-submit {
		width: 100%;
		float: right;
		margin: 5px 0 0 0;
	}
	.popup-inner {
		width: 92%;
		padding: 10px 10px 10px 10px;
		top:5%;
		left:0;
		right:0;
		margin: 0 auto;
		-webkit-transform: unset;
		transform:unset;
	}
}
