/*
	Floating lead stylesheet
*/

#floating_lead{
	position: fixed;
	bottom: 0;
	left: 10%;
	z-index: -99999;
	width: 310px;
	max-width: 100%;	
	opacity: 0;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
#floating_lead.visible{
	z-index: 99999;
	opacity: 1;
	
}
#floating_lead *{
	-webkit-appearance: none;
}
#floating_lead_overlay{
	background-color: rgba(255, 255, 255, 0.3);
	position: fixed;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;	
	z-index: 9999;
}
.lead_btn{
	background-color: rgba(71, 73, 172, 0.95);
	height: 45px;
	padding: 10px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	color: #fff;
	cursor: pointer;
	border: 1px solid #4749ac;
	border-bottom: 0;
}

.lead_btn span{
	font-size: 22px;
	font-weight: 300;
}

.lead_btn i {
    width: 46px;
    height: 46px;
    background-color: #212226;
    color: #fff;
    position: absolute;
    right: -49px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #4749ac;
    border-bottom: 0;
}

.lead_content{
	padding: 20px 10px 20px 10px;
	background-color: rgba(23, 24, 29, 0.86);
	color: #FFF;
	text-align: center;
	display: none;
}
.lead_content:before{
	content: " ";
	height: 5px;
	width: 100%;
background-color: #7F9DD5;
    position: absolute;
    top: 0;
    right: 0;
}
.lead_content a{
	color: #FFF;
}
#floating_lead .lead_title{
	font-size: 32px;
	font-weight: 400;
}

.lead_sub_ttl{
	font-size: 17px;
	font-weight: 400;	
}

.lead_callus{
	font-size: 19px;
	font-weight: 300;
}

#floating_lead .wpcf7-response-output{
/* 	color: #010101; */
}
#floating_lead .wpcf7-not-valid {
    background-color: #ffb6b6 !important;
}
#floating_lead div.wpcf7 .ajax-loader {
	position: absolute;
}
@media (max-width: 768px){
	#floating_lead{
		left: 0;
		right: 0;
		margin: auto;
		max-width: calc(100% - 40px);
		width: 100%;
		bottom: 20px;
	}
	.lead_btn{
		background-color: rgba(33, 34, 38, 0.95);
		padding: 0;
		border-bottom: 1px solid #4749ac;
	}
	.lead_btn span{
		color: #fff;
	}
	.lead_btn i{
		width: 44px;
        height: 44px;
		/* background-color: #7692C4; */
		/* color: #fff; */
		/* position: absolute; */
		/* left: 10px; */
		/* display: -webkit-box; */
		display: -moz-box;
		display: -ms-flexbox;
		/* display: -webkit-flex; */
		/* display: flex; */
		/* flex-flow: row wrap; */
		/* align-items: center; */
		/* justify-content: center; */
		position: static;
		margin-left: 10px;
	}
}

@media (max-width: 425px){
	#floating_lead .lead_title{
		font-size: 7vw;
	}
	.lead_btn span {
    	font-size: 5.5vw;
	}
	p.lead_sub_ttl {
    	font-size: 4.5vw;
	}
	a.lead_callus {
    	font-size: 5vw;
	}
	#floating_lead{
	    max-height: 95%;
		overflow-y: scroll;
	}
}