/* ====================== Mobile and Up ========================== */

#virtual-advisor-window-header {
	background-color: #275D38;
}

#virtual-advisor-overlay {
	pointer-events: none;
	position: fixed;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin-right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 99998;
}
#virtual-advisor-window {
	position: fixed;
	z-index: 99999;
	background-color: #f1f1f1;
	border: none;
	box-shadow: 5px 5px 10px rgba(128,128,128, 0.2);
	border-radius: 0px;
	text-align: center;
	min-width: 600px;
	right: -100%;
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	box-sizing: content-box !important;
	width: 600px;
	top: 0;
	bottom: 0;
	padding-bottom: 30px; /* Prevent a cutoff of the bottom of the text input */
}
#virtual-advisor-window-header {
	padding: 10px;
	z-index: 10;
	color: #fff;
	border-radius: 0px;
	padding: 8px 10px 13px 0px;
	height: 10px;
	box-sizing: content-box !important;
	line-height: 1.4
}
#virtual-advisor-window-header-close, #virtual-advisor-window-header-minimize {
	display: flex;
	align-items: center;
	float: right;
	cursor: pointer;
	margin-top: -6px;
	font-size: 24px;
	padding-left: 5px;
}
#virtual-advisor-window-header .fa-minus {
	font-size: 20px;
	padding-right: 15px;
	padding-top: 8px;
}
#virtual-advisor-window-iframe {
	border: none;
	padding: 0px 0px 20px 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
}
#virtual-advisor-open-button {
	background-color: #ffb700;
	position: fixed;
 	right: 16px;
	bottom: 4.5rem;
/*	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif; */
	border-radius: 24px;
    box-shadow: 0 0 16px -3px rgb(0 0 0 / 50%);
	font-family: Raleway, Montserrat, Arial, sans-serif;
/*     font-family: Roboto, Helvetica, Arial, sans-serif !important; */
    font-weight: 610 !important;
    font-size: 0.875rem !important;
    line-height: 1.75 !important;
    letter-spacing: 0.02857em !important;
    text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	box-sizing: content-box !important;
	z-index: 10;
	visibility: visible;
}

#virtual-advisor-open-button figure {
/* 	width: 49px; */
	position: absolute;
/* 	left: 0px; */
/* 	bottom: -2px; */
	z-index: 2;
	
	width:33px !important;
	bottom: 7.5px !important;
	left: 8px !important;
}

#virtual-advisor-open-button figure + div {
/* 	border: 2px solid black; */
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 40px;
/* 	box-shadow: 0 0 18px -3px rgb(255, 255, 255, .5); */
	background-color: #fcb513;
	text-align: left;
	text-transform: uppercase;
}


#virtual-advisor-open-button figure + div p {
	margin: 0;
	padding-inline-start: 50px;
	padding-inline-end: 20px;
	color: black;
/* 	font-weight: 500; */
}


#virtual-advisor-open-button figure + div p:last-child {
	padding-block: 12px ;
    line-height: 1.75 ;
}

#virtual-advisor-open-button-text {
	float: left;
	padding: 5px;
}

/*End mobile and up styles*/
@media (max-width:768px) {
	#virtual-advisor-content {
		/* position: fixed; */
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		border: none;
		margin: 0;
		padding: 0;
		overflow: hidden;
		z-index: 999999;
	}
	#virtual-advisor-window {
		top: 0 !important;
		left: 0 !important;
		margin-right: 0 !important;
		min-width: 100%;
		min-height: unset;
		width: 100%;
	}
	
	#virtual-advisor-open-button figure {	
		width: 33px;
    	bottom: 4.5px;
    	left: 8px;
	}
	
	
}
/*iOS specific styling */
@supports (-webkit-touch-callout: none) {
	/* Add this janky rule so Safari doesn't try and zoom in on input fields when focused...so annoying */
	select, textarea, input[type="text"], input[type="password"],
	input[type="datetime"], input[type="datetime-local"],
	input[type="date"], input[type="month"], input[type="time"],
	input[type="week"], input[type="number"], input[type="email"],
	input[type="url"] {
		font-size: 16px;
	}
}
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {

	#virtual-advisor-open-button {
		bottom: 1rem !important;
		right: 68px;
	}
	
	.headroom--top #virtual-advisor-open-button {
		right: 30px;
	}
	

}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {


	.headroom--bottom #virtual-advisor-open-button {
		right: 88px;
	}
	
	.headroom--not-bottom #virtual-advisor-open-button {
		right: 30px;
	}
	
	
	#virtual-advisor-open-button figure + div{
		opacity: 0;
		width: 48px;
		animation-name: chatbtn;
		animation-duration: 2.5s;
		animation-fill-mode: forwards;
		animation-delay: 1s;
	}

	@keyframes chatbtn {
		from   {
			opacity: 0;
			width: 48px;
		}
		to  {
			opacity: 1;
			width: 255px;
		}
	}

}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	#virtual-advisor-open-button {
		bottom: 2.5rem !important;
	}

	.headroom--bottom #virtual-advisor-open-button {
		bottom: 10rem !important;
		right: 30px;
	}

}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/