#cs_password_protection_wrap{
	position: fixed;

	top:0;
	right: 0;
	bottom: 0;
	left: 0;

	width:100%;
	height: 100%;

	background: white;

	z-index: 128000;

	display: flex;
	align-items:center;
	justify-content:center;


	
}

#cs_password_protection_wrap .title{
	font-weight: bold;
	font-size: 36px;

	color: #2a2a2a;

	margin-bottom: 20px;
}	

#cs_password_protection_inner{
	padding:15px;
}

#cs_password_protection_wrap .description{
	color: #333;
	font-size: 16px;

	margin-bottom: 15px;
}

#cs_password_protection_wrap form #cs_password{
	margin-bottom: 10px;

	border:1px solid #ebebeb;
}

#cs_password_protection_wrap form input[type='submit']{
	color: white;
	background: #2a2a2a;
	margin-top: 10px;
}

#cs_password_protection_wrap form input[type='submit']:hover{
	background: #2196f3;
}
#cs_password_protection_wrap #incorrect_password{
	background: #f44336;
	font-size: 10px;
	padding:5px;
	color: white;
	line-height: 1em;
	position: absolute;
	top:0;
	right: 0;
	display: none;

}

#cs_password_protection_wrap .password_wrap{
	position: relative;
}

@media (max-width: 767px){ 

	#cs_password_protection_wrap .title{
		font-size: 32px;
	}

}

