/**
 * Styles for the connect homepage popup
 */
.connect-popup {
	position: fixed;
	top: 350px;
	left: -500px;
	transition: all 0.5s ease;
	background-image: url('/wp-content/uploads/connect-overlay-bg.png');
	width: 500px;
	height: 460px;
	padding-top: 50px;
	z-index: 20;
	background-size: cover;
	background-position: 0 0;
	background-repeat: no-repeat;
}
.connect-popup.live {
	left: 0;
}
.connect-popup .connect-closeout {
	position: absolute;
	top: 25px;
	left: 500px;
	width: 30px;
	height: 30px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: #0675c1;
	cursor: pointer;
	transition: all 0.5s ease;
}
.connect-popup.live .connect-closeout {
	left: 489px;
}
.connect-popup .connect-closeout img {
	position: absolute;
	top: 7px;
	left: 7px;
	transition: all 0.5s ease;
	transform: rotate(180deg);
}
.connect-popup.live .connect-closeout img {
	transform: rotate(0deg);
}
.connect-popup .connect-wrap:after {
	clear: both;
	content: '';
	display: table;
}
.connect-popup .connect-wrap .connect-logo {
	float: left;
	width: 190px;
	text-align: center;
}
.connect-popup  .textwidget {
	float: left;
	width: 280px;
	color: #ffffff;
	font-family: 'PT Sans', sans-serif;
}
.connect-popup .textwidget .title {
	font-weight: 700;
	font-size: 30px;
}
.connect-popup .textwidget .info {
	font-size: 20px;
	margin-top: 5px;
}
.connect-popup .textwidget .info strong {
	font-size: 18px;
	display: block;
	margin-top: 10px;
	text-transform: uppercase;
}
.connect-popup .textwidget .cta .button {
	font-size: 16px;
	background: #82bd41;
	border: 0;
	padding: 8px 20px;
	width: auto;
}
.connect-popup .textwidget .cta .button:after {
	background: #0675c1;
}
@media screen and (max-width:768px){
	.connect-popup {
		top: 200px;
		background-position: 65% 0;
	}
}
@media screen and (max-width:550px){
	.connect-popup {
		width: 90%;
		left: -90%;
	}
	.connect-popup.live {
		left: 0;
	}
	.connect-popup .connect-closeout {
		left: 100%;
	}
	.connect-popup.live .connect-closeout {
		left: 100%;
	}
	.connect-popup .connect-wrap .connect-logo {
		float: none;
		width: 90%;
    text-align: right;
    position: absolute;
    bottom: 135px;
	}
	.connect-popup .textwidget {
		float: none;
		width: 100%;
		text-align: center;
		padding: 0 10px;
	}
}
