.topbar {
	
	position: fixed;
    z-index: 100;
    top: 0;
    height: 80px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
	
}

.play-button {
	
	width: 150px;
	height: 50px;
	position: relative;
	border: none;
	background: #4fffbc;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Rajdhani, sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #000;
	cursor: pointer;
	opacity: .85;
	transition: opacity .3s;
	margin-right:20px;

}

.play-button:hover {
 
	opacity: 1;

}

.login-frame {
	
	position:fixed;
	z-index:100;
	top:0px;
	width:100%;
	height:100vh;
	background-color:#101010eb;
	display:none;	
}

.login-cnt {
	
	width:100%;
	height:100%;
	display: flex;
    justify-content: center;
    align-items: center;
	
}

.login-box {
	
	width:100%;
	max-width:500px;	
	margin:20px;
	background-color:hsl(0deg 0% 6% / 90%);	
	border-top: 1px solid #5ccbcb;
    border: 1px solid #1e2625;
    border-top-color: #5ccbcb;
	font-family: Rajdhani;
    color: white;
    font-size: 30px;
	padding: 40px;
    box-sizing: border-box;
	position:relative;
		
}

.login-box div {
	
	margin-bottom:10px;
	
}

.is-open { }

.is-open-display { display:block; }

input[type=email], input[type=password], input[type=text], select, textarea {
    
	background: #272727;
    border: 1px solid #474746;
	width: 100%;
    font-size: 20px;
    padding: 10px;
    color: white;
	
}

input[type=button], input[type=submit] {
	
	width:100%;
	text-transform: uppercase;
	border:none;
	padding:10px;	
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: #4fffbc;
	font-family: Rajdhani;
    color: black;
    font-size: 20px;
	font-weight: 600;
	margin-top:15px;
	cursor:hand;cursor:pointer;
	transition: 0.3s;
	
}

input[type=button]:hover, input[type=submit]:hover {

	filter:saturate(2);

}

.label {
	
	color: #b0b0b0;
	font-size: 22px;
    margin-bottom: 5px !important;
    margin-top: 15px !important;
	
}
	
.login-close {
		
	position: absolute;
    top: 5px;
    right: 5px;
    font-size: 30px;
    font-weight: 300;
    color: #5ccbcb;
	cursor:hand;cursor:pointer;
	transition: 0.3s;
	
}

.login-close:hover {
	
	transform:scale(1.1);
	
}

.create-account-button {
	
	text-transform: uppercase;
    border: 1px solid #303030 !important;
    background-color: transparent !important;
    color: white !important;
	cursor:hand;cursor:pointer;
	transition: 0.3s;
	
}

.create-account-button:hover {

	background-color: rgba(255,255,255,0.1) !important;

}

a { 
	
	color:#4fffbc; 
	text-decoration:none; 
	transition: 0.3s;
	
}

a:hover { 

	text-decoration:underline; 

}

.cd-nav:hover {
	
    transform: scale(1.2);
	
}

.cd-nav {
	
    transition: transform .3s;
    position: relative;
    z-index: 101;
    right: 5px;
    width: 40px;
    height: 40px;
    cursor: hand;
    cursor: pointer;
	display:none;
	margin-right:20px;
	
}

.cd-icon {
	
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    width: 18px;
    height: 3px;
    background-color: #ffffff;
    z-index: 10;
    margin: 0;
	
}

.cd-icon::before {
	
    transform: translateY(-6px) rotate(0deg);
    right: -5px !important;
    top: -3px !important;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: transform .3s;
	
}

.cd-icon::after {
	
    transform: translateY(6px) rotate(0deg);
    right: -5px !important;
    top: 3px !important;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: transform .3s;
	
}

.cd-nav-trigger {
	
	background-color: rgba(255, 255, 255, 0);
		
}

.cd-nav-trigger::before {
	
	transform: translateY(0) rotate(45deg);
    right: -5px !important;
    top: 3px !important;
	
}

.cd-nav-trigger::after {
	
	transform: translateY(0) rotate(-45deg);
	
}

@media screen and (max-width: 900px) {

	.cd-nav { display:block; }
	.play-button { display:none; }

}
