/* General styles for all menus */
#showLeftPush {
	z-index: 999;
	position: absolute;
	top: 30px;
	left: 20px !important;
	width: 60px
}

.cbp-spmenu {
	background: #002d56;
	position: fixed;
}

.cbp-spmenu h3 {
	color: #afdefa;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
}

.cbp-spmenu a {
	display: block;
	color: #fff;
	font-size: 1.3em;
	font-family: 'Libre Caslon Text', serif;
	font-weight: 400;
	letter-spacing: 0px;
}

.cbp-spmenu a:hover {
	color: #0674ac
}

.cbp-spmenu a:active {
	color: #0674ac
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 400px;
	height: 100%;
	top: 0;
	padding-top: 50px;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	padding-top: 0.4em;
	padding-bottom: 0.6em;
	padding-left: 1em;
	padding-right: 1em;
	border-bottom: solid;
	border-bottom-color: #033765;
	border-bottom-width: 1px;
	background-image: url("../img/cd-top-arrow3.svg");
	background-repeat: no-repeat;
	background-position: right;
}



.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -400px;
}

.cbp-spmenu-right {
	right: -400px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
	padding-top: 50px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 400px;
}

.cbp-spmenu-push-toleft {
	left: -400px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (max-width: 55.1875em) {

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em) {

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -190px;
	}

	.cbp-spmenu-right {
		right: -190px;
	}

	.cbp-spmenu-push-toright {
		left: 190px;
	}
}

/* Individual button styles */


/* Aylen */
.button.button--aylen {
	background: #0674ac;
	color: #fff;

	overflow: hidden;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
	text-align: center;
	text-decoration: none;
	margin-top: 30px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 400;

	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
	-webkit-appearance: none;

}



.button--aylen.button--inverted {
	background: #0060df;
	color: #fff;

}

.button--aylen::before,
.button--aylen::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	-o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);

}

.button--aylen::after {
	background: #002d56;

}

.button--aylen:hover {
	color: #fff;
	background: #222 !important;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}

.button--aylen:hover::before,
.button--aylen:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.button--aylen:hover::after {
	-webkit-transition-delay: 0.175s;
	-o-transition-delay: 0.175s;
	transition-delay: 0.175s;
}

/* Aylen2 */
.button.button--aylen2 {
	background: #0674ac;
	color: #fff !important;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
	text-align: center;
	text-decoration: none;

	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 400;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);


}

.button--aylen2.button--inverted {
	background: #002444;
	color: #fff !important;

}

.button--aylen2::before,
.button--aylen2::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 100%;
	left: 0;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	-o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button--aylen2::after {
	background: #002444;
	color: #fff !important;
}

.button--aylen2:hover {
	color: #fff;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
}

.button--aylen2:hover::before,
.button--aylen2:hover::after {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.button--aylen2:hover::after {
	-webkit-transition-delay: 0.175s;
	-o-transition-delay: 0.175s;
	transition-delay: 0.175s;
}