/* Menu Button */
.menu-button {
	position: fixed;
	z-index: 1000;
	padding: 0 40px 0 0;
	width: 2.5em;
	height: 2.25em;
	border: none;
	color: #e72f26;
	text-indent: 2.5em;
	font-size: 14px;
	color: transparent;
	background: transparent;
	background:rgba(0,0,0,0.3) ;
	box-shadow:none;
	margin: 13px 0px 0px -22px;
}
.menu-button::before {
	top: 0.4em;
	right: 0.4em;
	bottom: 0.3em;
	left: 0.5em;
	position: absolute;
	background:rgba(0, 0, 0, 0) linear-gradient(#e72f26 20%, transparent 0px, transparent 40%, #e72f26 0px, #e72f26 59%, transparent 57%, transparent 80%, #e72f26 0px) repeat scroll 0 0;
	content: '';
}
.menu-button:hover {
	opacity: 0.6;
}
.menu-button:focus{
	box-shadow:none;
	border:none;
}

/* Close Button */
.close-button {
	width: 16px;
	height: 16px;
	position: absolute;
	right:20px;
	top: 34px;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	background: transparent;
	color: transparent;
}
.close-button::before, .close-button::after {
	background: #fff none repeat scroll 0 0;
	content: "";
	height: 63%;
	left: 46%;
	position: absolute;
	top: 6px;
	width: 3px;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	top:6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	left:0px;
	top: 0;
	position: fixed;
	z-index: 999999;
	width: 329px;
	padding:0 30px;
	height: 100%;
	font-size: 17px;
	background: #161719 ;
	-webkit-transform: translate3d(-329px,0,0);
	transform: translate3d(-329px,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
}

.menu {
	position: relative;
	z-index: 1000;
	padding: 3em 1em 0;
}

.menu,
.close-button {
	opacity: 0;
	-webkit-transform: translate3d(-160px,0,0);
	transform: translate3d(-160px,0,0);
	-webkit-transition: opacity 0s 0.3s, -webkit-transform 0s 0.3s;
	transition: opacity 0s 0.3s, transform 0s 0.3s;
	-webkit-transition-timing-function: cubic-bezier(.17,.67,.1,1.27);
	transition-timing-function: cubic-bezier(.17,.67,.1,1.27);
}

.icon-list a {
	display: block;
	padding: 0.8em;
}

.icon-list i {
	font-size: 1.5em;
	vertical-align: middle;
	color: #282a35;
}

.icon-list a span {
	margin-left: 10px;
	font-size: 0.85em;
	font-weight: 700;
	vertical-align: middle;
}

/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	fill: #161719 ;
}

/* Shown menu */
.show-menu .menu-wrap,
.show-menu .content::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.show-menu .menu-wrap,
.show-menu .menu,
.show-menu .close-button,
.show-menu .morph-shape,
.show-menu .content::before {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.show-menu .menu,
.show-menu .close-button {
	opacity: 1;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
	background: #e72f26;
	width: 32px;
	height: 32px;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
}
.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
/**************************************************************/
.sidetop-menu,.sidebottom-menu {
	float: left;
	position: relative;
	width: 100%;
	margin: 100px 0 0;
	z-index: 999999999;
}
.sidetop-menu ul,.sidebottom-menu ul {
	margin: 0;
	padding: 0;
	list-style:none;
}
.sidetop-menu ul li{
	position: relative;
}
.sidetop-menu ul li a{
	color: #fff;
	text-decoration: none;
	display: block !important;
	border-bottom: 1px solid #222326;
	padding: 22px 20px 22px 0 !important;
}
.sidetop-menu ul li a i{
	color: #e72f26;
	width:30px
}
.sidetop-menu ul li a:hover,.sidetop-menu ul li a:focus{
	color: #e72f26;
}
.sidetop-menu ul li a:hover i{
	color: #e72f26;
}
.sidetop-menu ul li a .angle {
	float: right;
	width: 7px;
	margin: 0;
	height: 18px;
	background:url("../images/new-header/angle-right.png") no-repeat right;
}
.sidetop-menu ul li ul{
	width: 100%;
	display: none;
}
.sidetop-menu ul li ul li a{
	padding:12px 20px 12px 0 !important;
	color: #fff;
	font-size: 16px;
}
.sidetop-menu ul li ul li a:hover{
	color: #e72f26;
}
.sidetop-menu ul li.side-dropdown.open a .angle{
	width: 12px;
	background:url("../images/new-header/angle-down.png") no-repeat right;
}
.sidetop-menu ul li.side-dropdown.open a i{
	color: #e72f26;
}
.sidebottom-menu{
	margin:50px 0 0;
}
.sidebottom-menu ul li{
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	text-transform: uppercase;
}
.sidebottom-menu ul li .fa{
	font-size: 21px;
	width:30px
}
.sidebottom-menu ul li a{
	font-size: 16px;
	vertical-align: top;
	display: inline-block !important;
	padding: 0 !important;
	text-transform: none;
}
.sidebottom-menu ul li span.style,.sidebottom-menu ul li span.style a{
	color: #007897;
}
.sidebottom-menu ul li .fa{
	color:#e72f26;
	float:left;
	margin:5px 0 0
}
.sidebottom-menu ul li a{
	color:#007897;
}
/*****************NEW HEADER*********************/
@media screen and (max-width:920px) {
	.menu-button {
		margin-left: 20px;
	}
}
@media screen and (max-width:800px) {
	.side-menu {
		text-align: left;
	}
	.menu-button{
		margin: 13px 0 0;
	}
}
@media screen and (max-width:420px) {
	.menu-button {
		margin: 8px 0 0;
	}
	.menu-wrap {
		width: 200px;
		-webkit-transform: translate3d(-200px,0,0);
		transform: translate3d(-260px,0,0);
		-webkit-transition: -webkit-transform 0.4s;
		transition: transform 0.4s;
	}
	.sidetop-menu ul li a{
		font-size: 14px;
		padding: 12px 14px !important;
	}
	.sidebottom-menu ul li .fa {
		font-size: 20px;
		margin: 0;
	}
	.sidebottom-menu ul li a{
		font-size:12px;
	}
	.sidebottom-menu ul li{
		margin: 0;
		font-size: 12px;
	}
}