label.successLabel{
	color: #23c994;
    visibility: hidden;
    margin: 10px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
label.hidden-label{
	width: 0px;
	height: 0px;
	overflow: hidden;
}
section.sign-up label.successLabel{
	justify-content: flex-start;
    margin-left: 80px;
    margin-top: 20px;
}
header{
	flex-wrap: wrap;
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 20px 150px;
	box-shadow: 0 2px 10px 0 rgba(200, 200, 200, 0.5);
	background-color: #ffffff;
	z-index: 2;
	transition: background-color 0.2s ease;
}
header .header-right ul{
	margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header-right ul li:not(:last-child){
	margin-right: 55px;
	cursor: pointer;
}
header .header-right ul li a{
	font-size: 14px;
	color: #17182d;
	font-weight: 500;
}
header .header-right ul li a.highlighted-button{
	padding: 12px 20px;
	color: #ffffff;
	border-radius: 20px;
	background-color: #286df5;
}
#hamburgerMenu{
	text-decoration: none;
}

.mobile-menu{
	border:none;
	position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
	z-index: 99;
	transition: width 0.5s;
	width: 0px;
	display: none;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	flex-direction: row-reverse;
}
.mobile-menu-contents{
	height: 100%;
	background: var(--theme-white);
	padding: 10px 20px;
	transition: width 0.5s;
	width: 0px;
}
.mobile-menu-header{
	display: flex;
	justify-content: space-between;
	width: 235px;
	align-items: center;
	margin:10px 0px 30px 0px;
}
.gamma-mobile-icon{
	height: 25px;
}
.gamma-mobile-menu-link{
	margin: 20px 0px;
	width: 235px;
}
.gamma-mobile-menu-link a{
	font-style: 14px;
	color: var(--theme-primary-blue);
	font-weight: 600;
}
.header-req-btn{
	width: 150px;
}
.header-left{
	margin-right: 10px;
}
header .header-right ul#menuLinks li:hover{
	text-decoration: underline;
}
@media only screen and (min-width: 521px) and (max-width: 1200px){
	header{
		padding: 20px 40px;
	}
	header .header-right ul li:not(:last-child){
		margin-right: 55px;
	}
	header .header-right ul li:last-child{
		margin-right: 0px
	}
}

@media only screen and (min-width: 521px) and (max-width: 650px){
	header .for-desktop{
		display: none !important;
	}
	header .for-mobile{
		display: flex !important;
	}
	header .header-left a img{
		width: 110px;
	}
	header .header-right a#hamburgerMenu{
		cursor: pointer;
	}
	header .header-right a#hamburgerMenu:hover{
		cursor: pointer;
	}
	header .header-right a#hamburgerMenu i{
		color: #286df5;
		font-size: 24px;
		font-weight: 100;
		cursor: pointer;
	}
	header .header-right ul#menuLinks{
		flex-wrap: nowrap !important;
		display: none;
		flex-flow: column;
		position: absolute;
		top: 60px;
		right: 0;
		left: 0;
		background: #fff;
		z-index: 2;
		padding-bottom: 20px;
	}
	header .header-right ul#menuLinks li{
		margin: 0px !important;
	}
}

@media only screen and (max-width: 520px){
	.for-desktop{
		display: none !important;
	}
	.for-mobile{
		display: flex !important;
	}
	header{
		padding: 20px !important;
		overflow: hidden !important;
	}
	header .header-left a img{
		width: 110px;
	}
	header .header-right a#hamburgerMenu{
		cursor: pointer;
	}
	header .header-right a#hamburgerMenu:hover{
		cursor: pointer;
	}
	header .header-right a#hamburgerMenu i{
		color: #286df5;
		font-size: 24px;
		font-weight: 100;
		cursor: pointer;
	}
	header .header-right ul#menuLinks{
		flex-wrap: nowrap !important;
		display: none;
		flex-flow: column;
		position: absolute;
		top: 60px;
		right: 0;
		left: 0;
		background: #fff;
		z-index: 2;
		padding-bottom: 20px;
	}
	header .header-right ul#menuLinks li{
		margin: 0px !important;
	}
}