/* Quick-login 1.1.4
--------------------------------------------- */

.headerspace {
	display: none;
}

#quick-login-bg {
	display: none;
	position: fixed;
	/*background: #000000;
	opacity: 0.1;*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 40;
}

#quick-login-panel {
	display: none;
}

.quick-login-panel {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: fixed;
	margin: 0 auto;
	padding: 10px 15px;
	width: 370px;
	max-height: 98%;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 50;
	transform: translateY(-50%);
	overflow: auto;
}

.quick-login-panel hr {
	margin: 10px 0;
}

.quick-login-panel .ql-options span {
	vertical-align: middle;
}

.quick-login-panel .ql-oauth {
	font-weight: bold;
	margin: 0;
	text-align: center;
}

.quick-login-panel .close {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 12px;
	height: 12px;
	background: transparent url("./images/close.png") no-repeat 0 0;
	opacity: 0.4;
}

.quick-login-panel .close:hover {
	opacity: 0.8;
}

@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
{
	.quick-login-panel {
		width: 350px;
	}
}

@media only screen and (max-width: 360px), only screen and (max-device-width: 360px)
{
	.quick-login-panel {
		width: auto;
	}
}


.quick-login-panel h3 {
	border: 0 !important;
	padding-bottom: 10px;
	font-size: 2rem;
	text-align: center;
	color: #e6e6e6;
}

.quick-login-panel .ql-input {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-login-panel .ql-inputbox {
	position: relative;
    display: inherit;
	width: 100%;
}

.quick-login-panel .ql-options {
	margin: 5px auto 10px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.ql-options label {	
color: #dbdbdb !important;
}
.ql-inputbox input
{
	position: relative;
    width: 100%;
    background: #81818178;
    padding: 25px 10px 7.5px;
    margin: 0;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 1em;
}
.ql-inputbox i
{
	position: absolute;
	left: 0;
	padding: 15px 10px;
	font-style: normal;
	color: #aaa;
	transition: 0.5s;
	pointer-events: none;
}
.ql-inputbox input:focus ~ i,
.ql-inputbox input:valid ~ i
{
	transform: translateY(-7.5px);
	font-size: 0.8em;
	color: #fff;
}



fieldset label {
	line-height: 1.1;
	display: flex;
	grid-template-columns: 1em auto;
	gap: 0.5em;
	align-items: center;
}



.btn-login {
	background-color: #38af38 !important;
	padding: 10px 25px !important;
	color: #fff !important;
	font-weight: 400 !important;
	font-size: 1rem !important;
	border-radius: 5px !important;
}

a.btn-reg {
	background-color: #2da0bd !important;
	padding: 10px 25px !important;
	color: #fff !important;
	font-weight: 400 !important;
	font-size: 0.75rem !important;
	border-radius: 5px !important;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	width: 80px !important;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
}
.btn-reg span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
.btn-reg span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}
.btn-reg:hover span {
	padding-right: 15px;
}
.btn-reg:hover span:after {
	opacity: 1;
	right: 0;
}



#quick-login-panel>div {
	text-align: center;
}
p.login-txt {
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}


/* HIDE-SHOW PASSWORD */
#password, #username {
	box-sizing: border-box;
}
/*#password,*/
#ql-password {
	padding-right: 2em;
}
input[type="password"]::-ms-reveal {
	display: none;
}
#imcger-pw-toggelbutton {
	position: relative;
	height: 26px;
	width: 26px;
	margin-left: -2.0em;
	/*vertical-align: text-bottom;*/
	display: inline-flex;
	align-items: center;
    justify-content: center;
}
#imcger-pw-toggelbutton:focus {
  outline: none;
}
.ql-inputbox #imcger-pw-toggelbutton {
	position: relative;
	height: 50px;
	width: 32px;
	right: 5px;
	/*margin-left: -2.0em;*/
	/*vertical-align: middle;*/
	/*display: flex;
	align-items: center;
	justify-content: center;*/
}
