

/*=========================================================================*/


/*@import url(https://fonts.googleapis.com/css?family=Lato:400,700);*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

.container-sub {	
	width: 400px;
	height: 50px;
	margin: -20px auto 0;
	max-width: 100% !important;
}

.login_bar {
	width: 400px;
	height: 50px;
	background: white;
	border-radius: 10px;
	top: 50%;
	position: relative;
 	z-index: 1;
	overflow: hidden;
	border: thin 2px grey;
	max-width: 100% !important;
	display: inline-block;
	
}

.login {
	background: transparent;
	position: absolute;
	height: 100%;
	width: 280px;
	padding-left: 10px;
	text-align: left;
	line-height: 50px;
	vertical-align: middle;
	z-index: 10;
	-webkit-transition: transform 0.2s ease-in-out 0s;
	   -moz-transition: transform 0.2s ease-in-out 0s;
	     -o-transition: transform 0.2s ease-in-out 0s;
	        transition: transform 0.2s ease-in-out 0s;
	-webkit-box-shadow: inset 0px 5px 4px -1px rgba(0,0,0,0.53);
	   -moz-box-shadow: inset 0px 5px 4px -1px rgba(0,0,0,0.53);
			box-shadow: inset 0px 5px 4px -1px rgba(0,0,0,0.53);
				
}

.login_active {
	-webkit-transform: translateX(400px);
	   -moz-transform: translateX(400px);
	    -ms-transform: translateX(400px);
	     -o-transform: translateX(400px);
	        transform: translateX(400px);
}

.subscribe_button:hover{
	background-color: #222A33;
	cursor:pointer;
}

.subscribe_button {
	background: #171D23;
	position: absolute;
	top: -50px;
	left: 280px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	height: 150px;
	width: 120px;
	text-align: center;
	line-height: 150px;
	vertical-align: middle;	
	color: white;
	-webkit-transition: transform 0.5s ease 0s;
	   -moz-transition: transform 0.5s ease 0s;
	     -o-transition: transform 0.5s ease 0s;
	        transition: transform 0.5s ease 0s;
}

.subscribe_button_active{
	-webkit-transform: translateY(50px);
	   -moz-transform: translateY(50px);
	    -ms-transform: translateY(50px);
	     -o-transform: translateY(50px);
	        transform: translateY(50px);
}

.subscribing{
	background: #CDD4DC;
	height: 100%;
	width: 400px;
	z-index: 5;
	position: absolute;
	left:-400px;
	display: inline-block;
	-webkit-transition: transform 1s ease 0s ;
	   -moz-transition: transform 1s ease 0s ;
	     -o-transition: transform 1s ease 0s ;
	        transition: transform 1s ease 0s ;
}

.subscribing_active {
	-webkit-transform: translateX(400px);
	   -moz-transform: translateX(400px);
	    -ms-transform: translateX(400px);
	     -o-transform: translateX(400px);
	        transform: translateX(400px);
}

.thanks{
	background: transparent;
	height: 100%;
	width: 400px;
	z-index: 5;
	text-align: left;
	line-height: 50px;
	vertical-align: middle;
	padding-left: 10px;
	position: absolute;
	top:50px;
	display: inline-block;
	-webkit-transition: transform 0.5s ease 0s ;
	   -moz-transition: transform 0.5s ease 0s ;
	     -o-transition: transform 0.5s ease 0s ;
	        transition: transform 0.5s ease 0s ;
}

.thanks_active {
	-webkit-transform: translateY(-50px);
	   -moz-transform: translateY(-50px);
	    -ms-transform: translateY(-50px);
	     -o-transform: translateY(-50px);
	        transform: translateY(-50px);
}

