
.header {
	background: url('/common/images/theme/background/color-02.jpg') no-repeat center top !important;
}

.nav > li > a {
	color: maroon !important;
}
.nav > li > a:hover, .nav > li > a:focus {
	color: darkorange !important;
}

/* -------------------------------------- new login for kuiper --------------------------------------*/

#login-overlay {
	z-index: 999;
	top:0;
	left:0;
	position: fixed;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .3);
}

.login-popup {
	position: absolute;
	width: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	margin: 0 auto;
	height: auto;
	color: #ebebeb;
	font-family: 'BYekan';
}
.login-block {
	width: 320px;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	border-top: 5px solid #20c4f4;
	margin: 0 auto;
}

.login-block input {
	width: 100%;
	height: 42px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	font-size: 14px;
	font-family: Ubuntu;
	padding: 0 20px 0 50px;
	outline: none;
	text-align: left;
}

.login-block input#email {
	background: #fff url('/kuiper/images/login-username.png') 20px top no-repeat;
	background-size: 16px 80px;
}

.login-block input#email:focus {
	background: #fff url('/kuiper/images/login-username.png') 20px bottom no-repeat;
	background-size: 16px 80px;
}

.login-block input#password {
	background: #fff url('/kuiper/images/login-password.png') 20px top no-repeat;
	background-size: 16px 80px;
}

.login-block input#password:focus {
	background: #fff url('/kuiper/images/login-password.png') 20px bottom no-repeat;
	background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
	border: 1px solid #20c4f4;
}

.login-block button {
	width: 100%;
	height: 40px;
	background: #20b3de;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #1989aa;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	outline: none;
	cursor: pointer;
}

.login-block button:disabled {
	background-color: #ccc;
	border-color: gray;
}

.login-block button:hover,
.login-block button:active {
	background: #20c4f4;
	border: 1px solid #20b3de;
}

.login-block button.hollow {
	background-color: #fff;
	color: #20b3de;
	border-color: #20c4f4;
}
.login-block button.hollow:hover {
	background-color: #20c4f4;
	color: #fff;
}

.login-block a {
	color:#1989aa;
}
.login-block a:hover {
	color:#20b3de;
}

.text-on-line {
	margin-top: 20px;
	margin-bottom: 15px;
	border: 1px solid #eee;
	width: 100%;
	position: relative;
}
.text-on-line span {
	color: #cacaca;
	position: absolute;
	top: -14px;
	background-color: #fff;
	width: 20px;
	text-align: center;
	right: calc(50% - 10px);
	font-size: smaller;
}

#login-links a i {
	color: #1989aa;
}
#login-links a:hover i {
	color:#20b3de;
}

#js-login-result {
	border: 1px #f9bcbc solid !important;
	background-color: #fff0f1 !important;
	cursor: help;
	padding: 5px;
	margin-top: 10px;
	color: red;
	border-radius: 5px;
}