body.platform__unpublished {
	overflow:hidden;
}

header .profile-user_avatar {
	width: 50px;
    height: 50px;
	border-radius: 50%;
	position: relative;
    display: flex;
    align-items: center;
	justify-content: center;
	background-color: #0169FF26;
    color: #0169FF;
	flex-shrink: 0;
}

header .profile-user_avatar .profile-user_avatar-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	padding: 10px;
	z-index: 1000;
	min-width: 150px;
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

header .profile-user_avatar.active .profile-user_avatar-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

header .profile-user_avatar img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	object-position: center;
	cursor: pointer;
	border-radius: 50%;
	border: none;
	outline: none;
	box-shadow: none;
	background: none;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 0;
	transition: all 0.3s ease;
}

header .profile-login {
	width: 50px;
    height: 50px;
	border: 1px solid #D6DCEA;
	border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

header .profile-login img {
	width: 22px;
    height: 22px;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    object-position: center;
    margin-right: 2px;
}

input:-internal-autofill-selected {
	background-color:#fff;
}

.overlay_is_unpublished {
	position:relative;
}

.overlay_is_unpublished .fly_unpublished {
	position: absolute;
    top: 5%;
    left: 50%;
    z-index: 9999;
    /* background: #eee; */
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4f748b;
    text-shadow: 0 0 4px #4f748b;
}

.overlay_is_unpublished::after {
	content: "";
	position: absolute;
	background-image: 
    linear-gradient(45deg, transparent 65%, rgba(255,255,255,0.5) 65%, transparent 70%),
    linear-gradient(-45deg, transparent 65%, rgba(255,255,255,0.5) 65%, transparent 70%);
	background-size: 30px 30px;
	opacity: 0.3;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:999;
}

.overlay_is_unpublished::before {
	content: "";
	background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2b0 100%);
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:998;
}

.location-lk-wrapp-form {
	display: flex;
    justify-content: center;
	padding: 60px 0;
    height: 100%;
	flex-direction: column;
    align-items: center;
}

.location-lk-wrapp-form .notice {
	margin-bottom: 30px;
	padding: 20px 25px;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.location-lk-wrapp-form .notice.login-error {
	box-shadow: inset 4px 0px 0px 1px #cc3549, 2px 0 0px 1px #cc35498f;
}

.location-lk-wrapp-form .notice.login-message {
	box-shadow: inset 4px 0px 0px 1px #31bc3c, 2px 0 0px 1px #31bc3c6b;
}

.location-lk-wrapp-form .field:not(:last-child) {
	margin-bottom:15px;
}

.location-lk-wrapp-form .field label {
	display: flex;
    align-items: center;
    border: 1px solid #00000036;
    overflow: hidden;
    border-radius: 20px;
}

.location-lk-wrapp-form .field label .icon {
	display: block;
    width: 35px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.location-lk-wrapp-form .field label input {
	font-size: 16px;
    padding: 0 10px;
	border: none;
}

.location-lk-wrapp-form .field label input::placeholder {
	font-size: 16px;
}

.location-lk-wrapp-form .actions {
	margin-top:15px;
}

.location-lk-wrapp-form button {
	padding: 6px 30px;
	width: 100%;
}

.location-lk-wrapp-form .links {
	margin-top: 10px;
	display: flex;
    justify-content: space-between;
}

.location-lk-wrapp-form .links a {
	font-size: 12px;
    text-decoration: none;
}

.icon.icon-login {
	background-image:url(../imgs/svg/login.svg);
}

.icon.icon-pass {
	background-image:url(../imgs/svg/lock.svg);
}

.location-lk-wrapp-form .field-privacy-consent {
	margin-top: 20px;
	margin-bottom: 4px;
	max-width: 420px;
	width: 100%;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox {
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: none;
    border-radius: 0;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__icon {
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 6px;
	border: 1px solid #0169FF;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px 12px;
	flex-shrink: 0;
	margin-top: 1px;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__input:checked + .vds-custom-checkbox__icon {
	background-image: url(../../../../assets/imgs/checkbox.svg);
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__input:focus-visible + .vds-custom-checkbox__icon {
	box-shadow: 0 0 0 3px #0169FF26;
	outline: none;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox:hover .vds-custom-checkbox__icon {
	border-color: #0156d4;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__text {
	gap: 10px;
	line-height: 1.35;
	font-size: 13px;
	font-weight: 600;
	color: #4D5B7C;
	letter-spacing: 0.2px;
}



.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__text a {
	color: #0169FF;
	text-decoration: underline;
}

.location-lk-wrapp-form .field-privacy-consent .vds-custom-checkbox__text a:hover {
	text-decoration: none;
}