@charset "utf-8";
/* CSS Document */
.flex {
    display: flex;
}
.overlay {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0;
}

.overlay.visible {
    opacity: 1;
    display: block;
}

/******************** join-sidebar ***************/

.join-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    background: #65cffa;
    height: 100%;
    width: 390px;
    transform: translateX(100%);
    transition: all .5s;
    padding: 0;
}
.join-sidebar form{
	height: 100vh;
}
.join-sidebar input{
	height: auto;
}
.join-sidebar input[type="radio"], .join-sidebar input[type="checkbox"] {
    margin: 0 0 2px 2px;
}

.join-sidebar-active {
    transform: translateX(0%)
}

.join-sidebar-active .aside-button {
    left: -8px;
}

.aside-button {
    border: none;
    background-color: #00548e;
    position: absolute;
    left: -74px;
    top: 20%;
    border-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
    color: #fff;
    font-size: 16px;
	font-weight: 400;
    transition: all .4s;
    text-align: center;
    z-index: 9;
    padding: 10px 15px;
}
.join-sidebar .aside-button span{
    display: block;
    font-size: 14px;
	padding-top: 3px;
	font-family: 'Almoni-neue-light', sans-serif !important;
}
.join-sidebar-active .aside-button{
    display: none;
}
.aside-button:hover{
	border: none;
    background-color: #808285;
}
.display {
    display: none;
}


.join-sidebar .close {
   position: absolute;
   z-index: 10010;
   left: 15px;
   top: 15px;
   opacity: 1;
   
}
.inputClose{
	cursor: pointer;
}

/* FORM */

.form_out{
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	height: 100%;
	padding: 0 30px;
}
.form_out input[type=text], .form_out input[type=tel], .form_out input[type=password], .form_out input[type=email], .form_out select {
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    width: 100%;
    border-width: 0 0 1px 0;
    outline: none;
    border-bottom: 1px solid #e1e1e1;
    font-size: 18px;
    padding: 0 3px;
	margin: 2vh 0  1vh;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
    touch-action: auto;
}
.form_out select {
	color: #6e6e6e;
	padding: 0;
	margin-bottom: 4vh;
}
.form_out textarea{
	width: 100%;
	border: 1px solid #e1e1e1;
	font-size: 18px;
	padding: 5px;
	color: #6e6e6e;
	margin-bottom: 2vh;
}
.form_out .sign-up-button {
    border-radius: 0;
	border: none;
    width: 100%;
    background-color: #0088ce;
    color: #fff;
    font-size: 20px;
    height: 50px;
    margin-top: 0;
    padding: 0;
    cursor: pointer;
    -moz-transition: all linear 0.1s;
    -o-transition: all linear 0.1s;
    -webkit-transition: all linear 0.1s;
    transition: all linear 0.1s;
    -moz-transition-property: background-color,border-color,color;
    -o-transition-property: background-color,border-color,color;
    -webkit-transition-property: background-color,border-color,color;
    transition-property: background-color,border-color,color;
}
.form_out h4{
	font-size: 26px;
	color: #0088ce;
	font-weight: 300;
	margin-bottom: 2vh;
}
.form_out p{
	font-size: 20px;
	color: #a8a9ae;
	font-weight: 300;
	margin-bottom: 3vh;
}

.overlay {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0;
}

.overlay.visible {
    opacity: 1;
    display: block;
}

.mobile_cta {
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    font-size: 23px;
    background: #00548e;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    text-transform: none;
    color: #fff;
    border: none;
    border-radius: 0;
}

@media (max-width: 1024px) {
	.aside-button{left: -58px; padding: 10px 10px 7px 10px;}
	.join-sidebar .aside-button span{font-size: 12px;}
}
@media (max-width: 767px) {
	.flex.sm {display: block;}
	.join-sidebar {width: 100%; }
	.mobile_cta {display: block;}
	.aside-button{display: none;}
	.form_out input[type=text], .form_out input[type=tel], .form_out input[type=password], .form_out input[type=email], .form_out select {margin-bottom: 15px;}
	
	.form_out{padding: 50px 30px 70px; max-width: 450px; margin: 0 auto;}
	.form_out p{margin-bottom: 25px;}
}
