

::selection {
	background-color: #EBEBF2;
	color: #83828D;
}


/* ==================================== */
/*		  	  Navigaton Menu
/* ==================================== */

.menu-wrap {
	/*background-color: #6968AB;*/
	background: #eee; /* For browsers that do not support gradients */
	 background: -webkit-linear-gradient(#fff,#ee); /* For Safari 5.1 to 6.0 */
	 background: -o-linear-gradient(#fff,#eee); /* For Opera 11.1 to 12.0 */
	 background: -moz-linear-gradient(#fff,#eee); /* For Firefox 3.6 to 15 */
	 background: linear-gradient(#fff,#eee); /* Standard syntax */
	position: fixed;
	top: 0;
	height: 100%;
	width: 310px;
	margin-left: -310px;
	font-size: 0.8em;
	font-weight: 700;
	overflow: auto;
	transition: .25s;
	z-index: 100;
	display:none;
}
.menu-show {
	margin-top:35px;
	margin-left: 0;
	box-shadow: 4px 2px 15px 1px #ccc;
	display: block;
}
.menu-sidebar {
	margin: 25px 0 10px 10px;
	position: relative;
	}
.menu-sidebar li {
	padding: 18px 22px 0;
	/*padding: 8px 12px 0;*/
}
.menu-sidebar li > a {
	/*color: #f3f3f3;*/
	color:#7e96a2;
	font-size: 1.18em;
	position: relative;
}
.menu-sidebar li > a::after {
	content: "";
	display: block;
	height: 0.15em;
	position: absolute;
	top: 100%;
	width: 100%;
	left: 50%;
	transform: translate(-50%);
	background-image: linear-gradient(to right, transparent 50.3%, #F00 50.3%);

	transition: background-position .2s .1s ease-out;
	background-size: 200% auto;
}
.menu-sidebar li > a:hover::after {
	background-position: -100% 0;
}
.menu-sidebar .menu-item-has-children {
	position: relative;
	border:1px solid #ccc;
	margin:3px;
	display: inline-block;
	width:90%;
	padding: 2px;
	text-transform: initial;
}
.menu-sidebar .menu-item-has-children .sub-menu {
	display: none;
}
.sidebar-menu-arrow::after {
	content: "\f107";
	font-family: 'FontAwesome';
	padding: 10px;
	color: #7e96a2;;
	position: relative;
}
.sidebar-menu-arrow:hover::after {
	cursor: pointer;
	color: #fff;
}
.sidebar-menu-arrow:active::after {
	top: 2px;
}
/*filter-left*/
.menu-wrap-filter {
	/*background-color: #6968AB;*/
	background: #fff /* For browsers that do not support gradients */
	 background: -webkit-linear-gradient(#eee,#fff); /* For Safari 5.1 to 6.0 */
	 background: -o-linear-gradient(#eee,#fff); /* For Opera 11.1 to 12.0 */
	 background: -moz-linear-gradient(#eee,#fff); /* For Firefox 3.6 to 15 */
	 background: linear-gradient(#eee,#fff); /* Standard syntax */
	position: fixed;
	/*top: 0;*/
	height: 100%;
	width: auto;
	max-width: 310px;
	min-width: 310px;
	margin-left: -310px;
	font-size: 0.8em;
	font-weight: 700;
	overflow: auto;
	transition: .25s;
	z-index: 10;
	left: 0;
	display: none;
}
.menu-show-filter {
	margin-left: 0;
	box-shadow: 4px 2px 15px 1px #ccc;
	margin-top:50px;
	display: block;
}
.menu-sidebar-filter {
	margin: 25px 0 10px 10px;
	position: relative;

}
.menu-sidebar-filter li {
	/*padding: 18px 22px 0;*/
	padding: 8px 12px 0;
}
.menu-sidebar-filter li > a {
	/*color: #f3f3f3;*/
	color:#7e96a2;
	font-size: 1.18em;
	position: relative;
}
.menu-sidebar-filter li > a::after {
	content: "";
	display: block;
	height: 0.15em;
	position: absolute;
	top: 100%;
	width: 100%;
	left: 50%;
	transform: translate(-50%);
	background-image: linear-gradient(to right, transparent 50.3%, #ccc 50.3%);
	transition: background-position .2s .1s ease-out;
	background-size: 200% auto;
}
.menu-sidebar-filter li > a:hover::after {
	background-position: -100% 0;
}
.menu-sidebar-filter .menu-item-has-children {
	position: relative;
}
.menu-sidebar-filter .menu-item-has-children .sub-menu {
	display: none;
}
.sidebar-menu-arrow-filter::after {
	content: "\f107";
	font-family: 'FontAwesome';
	padding: 10px;
	color: #7e96a2;;
	position: relative;
}
.sidebar-menu-arrow-filter:hover::after {
	cursor: pointer;
	color: #fff;
}
.sidebar-menu-arrow-filter:active::after {
	top: 2px;
}
/*end filter menu*/

/*Hamburger Button*/
.toggle-button {
	position: relative;
	width: 34px;
	height: 30px;
	top: 8px;
	left: 10px;
	padding: 4px;
	transition: .25s;
	z-index: 115;
	float:left;
}
.toggle-button:hover {
	cursor: pointer;
}
.toggle-button .menu-bar {
	position: absolute;
	border-radius: 2px;
	width: 100%;
	transition: .5s;
}
.toggle-button .menu-bar-top {
	border: 4px solid #262626;
	border-bottom: none;
	top: 0;
}
.toggle-button .menu-bar-middle {
	height: 4px;
	background-color: #262626;
	margin-top: 7px;
	margin-bottom: 7px;
	top: 4px;
}
.toggle-button .menu-bar-bottom {
	border: 4px solid #262626;
	border-top: none;
	top: 22px;
}
.button-open {
	left: 25px;
}
.button-open .menu-bar-top {
	border-color: #ccc;
	transform: rotate(45deg) translate(8px, 8px);
	transition: .5s;
}
.button-open .menu-bar-middle {
	background-color: #ccc;
	transform: translate(230px);
	transition: .1s ease-in;
	opacity: 0;
}
.button-open .menu-bar-bottom {
	border-color: #ccc;
	transform: rotate(-45deg) translate(7px, -7px);
	transition: .5s;
}

/*Filter Button*/
.toggle-button-filter {
	position: relative;
	width: 34px;
	height: 30px;
	top: 10px;
	left: 10px;
	padding: 4px;
	transition: .25s;
	z-index: 15;
	float:left;
}
.toggle-button-filter:hover {
	cursor: pointer;
}
.toggle-button-filter .menu-bar-filter {
	position: absolute;
	border-radius: 2px;
	width: 80%;
	transition: .5s;
}
.toggle-button-filter .menu-bar-top {
	border: 4px solid #555;
	border-bottom: none;
	top: 0;
}
.toggle-button-filter .menu-bar-middle {
	height: 4px;
	background-color: #555;
	margin-top: 7px;
	margin-bottom: 7px;
	top: 4px;
}
.toggle-button-filter .menu-bar-bottom {
	border: 4px solid #555;
	border-top: none;
	top: 22px;
}
.button-open-filter {
	left: 25px;
}
.button-open-filter .menu-bar-top {
	border-color: #ccc;
	transform: rotate(45deg) translate(8px, 8px);
	transition: .5s;
}
.button-open-filter .menu-bar-middle {
	background-color: #ccc;
	transform: translate(230px);
	transition: .1s ease-in;
	opacity: 0;
}
.button-open-filter .menu-bar-bottom {
	border-color: #ccc;
	transform: rotate(-45deg) translate(7px, -7px);
	transition: .5s;
}

/* Text Block */
.wrapper {
	width: 100%;
	margin: 10px auto 0;

}
.wrapper .text {
	padding: 3px;
}
.wrapper .text .heading {
	margin-bottom: 40px;
	font-size: 2em;
}
.wrapper .text p {
	line-height: 1.6em;
}
.wrapper .text .buttons {
	margin-top: 40px;
}

/* Buttons */
.wrapper .buttons .button {
	display: inline-block;
	margin-right: 20px;
	padding: 20px 25px;
	border-radius: 2em;
	background-color: #70CE64;
	color: #fff;
	font-size: .9em;
	font-weight: 700;
	transition: background-color .3s;
}
.wrapper .buttons .button-secondary {
	background-color: #FF6746;
}
.wrapper .buttons .button-primary:hover {
	background-color: #84D07A;
}
.wrapper .buttons .button-secondary:hover {
	background-color: #FF7D60;
}

/*Active state for the buttons*/
.wrapper .buttons .button-primary:active {
	background-color: #70CE64;
}
.wrapper .buttons .button-secondary:active {
	background-color: #FF6746;
}

/*Icons*/
.wrapper .buttons .button span {
	position: relative;
	display: inline-block;
	padding-right: 20px;
}
.wrapper .buttons .button span::after {
	position: absolute;
	font-family: "FontAwesome";
	right: -3px;
	font-size: 14px;
	top: 0;
	transition: top .3s, right .3s;
}
.wrapper .buttons .button-primary span::after {
	content: "\f019";
}
.wrapper .buttons .button-secondary span::after {
	content: "\f178";
}
/*Slight icons animation*/
.wrapper .buttons .button-primary:hover span::after {
	top: 4px;
}
.wrapper .buttons .button-secondary:hover span::after {
	right: -6px;
}
