@charset "utf-8";
/* CSS Document */

.toggle {
	background: #7e287e;
	border: 2px solid #7e287e;
	border-radius: 0 28px 28px 0;
	cursor: pointer;
	transition: all 0.25s ease-out 0s;
	padding: 13px 0 13px 26px;
	position: relative;
	z-index: 9999;
}
.toggle:after { 
	content: ""; 
	width: 3000%; 
	height: 108%; 
	background: #7e287e; 
	border-top: 2px solid #7e287e;
	border-bottom: 2px solid #7e287e;
	transition: all 0.25s ease-out 0s;
	position: absolute; 
	top: -4%; 
	left: -2980%;
}
.toggle-text1 {
	float: left;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 0.20px;
	line-height: 14px;
	display: inline-block;
	transition: all 0.25s ease-out 0s;
	margin: 0 0 0 16px;
	font-family: 'Poppins', sans-serif; font-weight: 400;
}
.toggle-row1 {
	width: 18px;
	float: left;
	margin: 0 0 0;
}
.toggle:hover {
	background: #ffffff;
	border-top:2px solid #7e287e;
	border-bottom:2px solid #7e287e;
}
.toggle:hover .toggle-text1 {
	color: #7e287e;
}
.toggle:hover:after { 
	background: #ffffff; 
	border-top: 2px solid #7e287e;
	border-bottom: 2px solid #7e287e;
}
.toggle:hover .bar {
	background: #7e287e;
}
.bar {
	width: 100%;
	height: 3px;
	background: #ffffff;
	display: block;
	margin: 3px 0 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}
.middle {
	top: 11px;
}
.bottom {
	top: 22px;
}
.toggle-active .toggle-text1 {
	color: #ffffff;
}
.toggle-active .bar {
	background: #ffffff;
}
.toggle-active .top {
	-webkit-transform: translateY(6px) translateX(0) rotate(45deg);
	position: relative;
	top: -4px;
}
.toggle-active .middle {
	opacity: 0;
}
.toggle-active .bottom {
	-webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
	position: relative;
	top: 8px;
}
.overlay {
	position: fixed;
	z-index: 9999999;
	background-image: linear-gradient(120deg, #7e287e 0%, #3853a4 100%);
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
}
.nav-active {
	opacity: 1;
	visibility: visible;
	height: 100%;/*    max-height: 340px;*/
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.toggle { padding:12px 0 11px 0;}
.toggle:after { left:-3000%;}
.toggle-text1 { font-size:13px; line-height:16px; margin:0 0 0 12px;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.toggle { padding:12px 0 11px 0;}
.toggle:after { left:-3000%;}
.toggle-text1 { font-size:13px; line-height:16px; margin:0 0 0 12px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.toggle { padding:12px 0 11px 0;}
.toggle:after { left:-3000%;}
.toggle-text1 { font-size:13px; line-height:16px; margin:0 0 0 12px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.toggle { padding:11px 0 13px 20px;}
.toggle-text1 { font-size:12px; line-height:12px; margin:2px 0 0 10px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.toggle { padding:12px 0 13px 23px;}
.toggle-text1 { font-size:13px; line-height:13px; margin:1px 0 0 13px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {

}