/* #user-menu , #user-menu *{
    outline: 2px solid red !important;
} */

.layer-login{
    color: #3D87B0;
	z-index: 100 !important;
	
}

.slide-menu {
	/* background: rgba(0, 47, 64, 0.92); */
	/* box-shadow: 0px -4px 32px rgba(0, 0, 0, 0.3); */
	/* backdrop-filter: blur(15px); */
}

.btn-primary {
/* 	background: linear-gradient(179.84deg, #FDD504 0%, #FF9900 100%) padding-box, linear-gradient(to bottom, rgba(7, 23, 33, 0.00), rgba(7, 23, 33, 1.00)) border-box;
 */	
 box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	color: var(--color-brown);
	font-size: 32px;
	font-family: 'TobiBlack';
	font-weight: normal;
	border: 0px solid transparent;
	background: url(img/btn_login_large.svg) no-repeat;
    background-size: 100% 100%;
	background-color: none !important;
	-webkit-text-stroke-width: 4.320000171661377;
	-webkit-text-stroke-color: #000;
	text-shadow: 0px 4px 0px rgba(253, 194, 49, 0.70);
	transition: all 0.3s ease-in-out;

}

.layer-login .banner {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 334px;
	height: 110px;
	font-size: 42px;
	top: -2.5rem;
	line-height: 94px;
}

.layer-login .banner img {
	max-width: 200%;
	width: 130%;
	position: relative;
	left: -15%;
	top: 7px;
}


.btn-close {
	position: absolute;
	right: -17px;
	transform: translateX(50%) translateY(-50%) scale(1.0) ;
	width: 62px;
	height: 62px;
	top: -18px;
	background: url(img/btn_close.svg) no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	transition: transform 0.1s ease-in-out;
}

@media (hover: hover) {
	/* .btn-close:hover {
		transform: translateX(50%) translateY(-50%) scale(1.2) ;
	} */
}

.form{
     border-radius: 24px;
    background: #0D426C;
    padding: 3rem;
}


.layer-login .box {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	/* background: rgba(0,0,0,0.5); */
	padding: 1rem;
	border-style: solid;
	border-width: 32px;
	border-image: url('img/bg.svg') 30 30 30 30 fill stretch;
	/* border: 2px solid #0A435C; */
	/* border-radius: 1.5rem; */
	/* clip-path: polygon( 0 0, 20px 0, 30px 15px, 40px 0, calc(100% - 40px) 0, calc(100% - 30px) 15px, calc(100% - 20px) 0, 100% 0, 100% 100%, 0 100% ); */
	/* margin: 2px; */
	backdrop-filter: none !important;
}

.dropdown {
	background: none;
	border-style: solid;
	border-width: 12px;
	border-image: url('img/dropdown.svg') 12 12 12 12 fill stretch;
	background-position: center bottom;
	background-size: 100% auto;
	box-sizing: border-box;
}

.dropdown-toggle {
	padding: 0;
	width: auto;
	box-sizing: border-box;
}

.dropdown-menu {
	width: auto;
}

.dropdown-menu a {
	padding: 0 !important;
	padding-top: 10px !important;
	margin-bottom: 0 !important;
	font-size: 18px;
}

.btn-login-open{
	background: url(img/btn_login2.svg) no-repeat;
    background-size: 100% 100%;
	width: 148px;
	height: 48px;
	cursor: pointer;
	color: #000;
	font-size: 24px;
	font-weight: bolder;
	text-shadow: 0px 4px 0px rgba(253, 194, 49, 0.70);
	padding-top: 2px;
	/*filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, 0.25));*/
	transition: all 0.3s ease-in-out;
}

.filtershadow{
	filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, 0.25));
}

@media (hover: hover) {
	.btn-primary:hover,.btn-login-open:hover {
	  filter: brightness(1.2) /*drop-shadow(0px 4px 0px rgba(0, 0, 0, 0.25))*/ !important;
	  /* transform: scale(1.05); */
	}
  }

.icon-login{
	background: url(img/icon_login2.svg) no-repeat;
    background-size: 100% 100%;
	width: 24px;
	height: 24px;
	display: inline-block;
}


/* input */

:root{
	--input-icon-width: 36px;
}

input[type="text"] {
	padding: 25px 10px 20px;
	height: 48px;
	line-height: 48px;
	color: var(--color-light-blue);
	transition-property: all;
	transition-duration: 0.0s;
	outline-width: 0;
	box-shadow: none;
	--tw-ring-color: transparent !important;
	border-radius: 8px;
	border: 3px solid #000;
	background: #012640;
	font-size: 32px;
}


:focus-visible {
	outline: none !important;
}



.defaulticon, .erroricon{
	background: url(img/input_icon_default.svg) no-repeat;
    background-size: 100% 100%;
	width: var(--input-icon-width) !important;
	height: var(--input-icon-width) !important;
}

.erroricon{
	background-image: url(img/input_icon_error.svg);
}


.formcontrol #characterid.input:valid+.defaulticon {
    display: block;
}

input:not([value=""])+.defaulticon {
    display: block;
}

#characterid.input:invalid+.defaulticon {
    display: none;
}

#characterid.input:focus:valid+.defaulticon {
    filter: brightness(5);
}

input:not([value=""]):focus+.defaulticon {
    filter: brightness(5);
}


.input-error input {
    color: rgb(239 68 68) !important;
}

.input-error .errortext {
    display: block;
}

.input-error .erroricon {
    display: block;
}

.formcontrol.input-error .defaulticon,
.formcontrol.input-error .focusicon {
    display: none !important;
}

.formcontrol-email.input-error .defaulticon{
    display: block !important;
}

.formcontrol-email.input-error .defaulticon span::before{
   color: var(--color-red) !important;
}

.formcontrol-email.input-error .defaulticon{
    filter: brightness(1) !important;
 }

.input-found input {
    color: var(--color-green);
}

.input-found .foundtext {
    display: block;
}

.input-found .foundicon {
    display: block !important;
}

.formcontrol.input-found .defaulticon,
.formcontrol.input-found .focusicon {
    display: none !important;
}

.icon-circle-check:before {
    color: #59bc6c !important;
}

.input-found input[type="text"] {
    border-color: var(--color-green) !important;
}


.input-found input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: linear-gradient(180deg, #002F40 0%, #115777 100%) !important;
    color: var(--color-green) !important;
    border-color: var(--color-green) !important;
}

input:-internal-autofill-selected {
    appearance: none !important;
    background-image: none !important;
    background-color: linear-gradient(180deg, #002F40 0%, #115777 100%) !important;
    color: #fff !important;
}


.input-found input:-webkit-autofill,
.input-found input:-webkit-autofill:hover,
.input-found input:-webkit-autofill:focus,
.input-found textarea:-webkit-autofill,
.input-found textarea:-webkit-autofill:hover,
.input-found textarea:-webkit-autofill:focus,
.input-found select:-webkit-autofill,
.input-found select:-webkit-autofill:hover,
.input-found select:-webkit-autofill:focus {
    border: 3px solid var(--color-green);
    -webkit-text-fill-color: var(--color-green);
    -webkit-box-shadow: 0 0 0px 1000px #002F40 inset;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: inset 0 1.5em 1.5em 0 #002F40, inset 0 -2.5em 1em 0 #115777;
}

@-webkit-keyframes autofillfound {
    to {
        color: var(--color-green);
        background: linear-gradient(180deg, #002F40 0%, #115777 100%);
    }
}

.input-found input:-webkit-autofill {
    -webkit-animation-name: autofillfound;
    -webkit-animation-fill-mode: both;
    caret-color: #fff;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 3px solid #000;
    -webkit-text-fill-color: #012640;
    -webkit-box-shadow: 0 0 0px 1000px #012640 inset;
    transition: background-color 5000s ease-in-out 0s;
    /* -webkit-box-shadow: inset 0 1.5em 1.5em 0 #002F40, inset 0 -2.5em 1em 0 #115777; */
}

@-webkit-keyframes autofill {
    to {
        color: #5A99B0;
        background: linear-gradient(180deg, #002F40 0%, #115777 100%);
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
    caret-color: white;
}

.input-error input:-webkit-autofill,
.input-error input:-webkit-autofill:hover,
.input-error input:-webkit-autofill:focus,
.input-error textarea:-webkit-autofill,
.input-error textarea:-webkit-autofill:hover,
.input-error textarea:-webkit-autofill:focus,
.input-error select:-webkit-autofill,
.input-error select:-webkit-autofill:hover,
.input-error select:-webkit-autofill:focus {
    border: 1px solid var(--color-red);
    -webkit-text-fill-color: var(--color-red);
    -webkit-box-shadow: 0 0 0px 1000px #002F40 inset;
    transition: background-color 5000s ease-in-out 0s;
   /*  -webkit-box-shadow: inset 0 1.5em 1.5em 0 #002F40, inset 0 -2.5em 1em 0 #115777; */
}

@-webkit-keyframes autofillerror {
    to {
        color: var(--color-red);
        background: linear-gradient(180deg, #002F40 0%, #115777 100%);
    }
}

.input-error input:-webkit-autofill {
    -webkit-animation-name: autofillerror;
    -webkit-animation-fill-mode: both;
    caret-color: #fff;
}

input:focus {
    -webkit-text-fill-color: #fff;
}

.input-error input {
    -webkit-text-fill-color: var(--color-red);
}


input:focus:-webkit-autofill,
input:focus:-webkit-autofill:hover,
input:focus:-webkit-autofill:focus,
textarea:focus:-webkit-autofill,
textarea:focus:-webkit-autofill:hover,
textarea:focus:-webkit-autofill:focus,
select:focus:-webkit-autofill,
select:focus:-webkit-autofill:hover,
select:focus:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
}

@-webkit-keyframes autofillfocus {
    to {
        color: #fff !important;
        background: linear-gradient(180deg, #002F40 0%, #115777 100%);
    }
}

input:focus:-webkit-autofill {
    -webkit-animation-name: autofillfocus;
    -webkit-animation-fill-mode: both;
    caret-color: #fff;
}


.input-error input:focus:-webkit-autofill,
.input-error input:focus:-webkit-autofill:hover,
.input-error input:focus:-webkit-autofill:focus,
.input-error textarea:focus:-webkit-autofill,
.input-error textarea:focus:-webkit-autofill:hover,
.input-error textarea:focus:-webkit-autofill:focus,
.input-error select:focus:-webkit-autofill,
.input-error select:focus:-webkit-autofill:hover,
.input-error select:focus:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-red) !important;
}


.formcontrol input:focus::-webkit-input-placeholder {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

.formcontrol input:focus:-moz-placeholder {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

/* FF 4-18 */
.formcontrol input:focus::-moz-placeholder {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

/* FF 19+ */
.formcontrol input:focus:-ms-input-placeholder {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}



@media only screen and (max-width: 767px) {
	.form {
		border-radius: 16px;
		padding: 1rem;
	}

	.btn-close {
		position: fixed;
		right: 10px;
		transform: translateX(00%) translateY(00%) scale(1.0);
		top: 10px;
		width: 44px;
		height: 44px;
	}

	.layer-login .box {
		padding: 1rem;
		border-width: 22px;
		max-width: calc(100% - 24px);
	}
	.language-switcher {
		transform: scale(0.6);
		transform-origin: top right;
    }
}
