html{
	height: 100%;
	padding: 0;
	margin: 0;
}
body{
	padding: 0;
	margin: 0;
}
.H5_loading{
	z-index: 999999;
	display: none;
	background-color: rgba(0,0,0,.2);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	filter: alpha(0);
	-moz-opacity: 0;
}
.fileContent{
	border: 1px solid #000000;
	margin: 5px;
	padding: 10px;
}
.privateNote{
	min-width: 200px;
}
.editNote, .validNote, .openChat {
	font-size: 18px;
}

@-webkit-keyframes fadeIn{
	from{opacity: 0;}
	to{opacity: 1;}
}
@keyframes fadeIn{
	from{opacity: 0;}
	to{opacity: 1;}
}
@-moz-keyframes fadeIn{
	from{-moz-opacity: 0;}
	to{-moz-opacity: 1;}
}
@-ms-keyframes fadeIn{
	from{filter:alpha(0);}
	to{filter:alpha(1);}
}
@keyframes fadeOut{
	from{opacity: 1;}
	to{opacity: 0;}
}
@-webkit-keyframes fadeOut{
	from{opacity: 1;}
	to{opacity: 0;}
}
@-moz-keyframes fadeOut{
	from{-moz-opacity: 1;}
	to{-moz-opacity: 0;}
}
@-ms-keyframes fadeOut{
	from{filter:alpha(1);}
	to{filter:alpha(0);}
}
.H5_loading .H5_loading_process{
	width: 7rem;
	height: 7rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -3.5rem;
	margin-left: -3.5rem;
	border-radius: 50%;
}
.H5_loading .H5_loading_process div{
	width: 1rem;
	height: 1rem;
	position: absolute;
	border-radius: 50%;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
}
.H5_loading .H5_loading_process div:nth-child(1){
	top: 0;
	left: 50%;
	margin-left: -0.5rem;
	animation: loading_process 1s 0s infinite;
	-webkit-animation: loading_process 1s 0s infinite;
}
.H5_loading .H5_loading_process div:nth-child(2){
	top: 25%;
	right: 25%;
	margin-right: -1rem;
	margin-top: -0.75rem;
	animation: loading_process 1s 0.125s infinite;
	-webkit-animation: loading_process 1s 0.125s infinite;
}
.H5_loading .H5_loading_process div:nth-child(3){
	top: 50%;
	right: 0;
	margin-top: -0.5rem;
	animation: loading_process 1s 0.25s infinite;
	-webkit-animation: loading_process 1s 0.25s infinite;
}
.H5_loading .H5_loading_process div:nth-child(4){
	bottom: 25%;
	right: 25%;
	margin-right: -1rem;
	margin-bottom: -0.75rem;
	animation: loading_process 1s 0.375s infinite;
	-webkit-animation: loading_process 1s 0.375s infinite;
}
.H5_loading .H5_loading_process div:nth-child(5){
	bottom: 0;
	left: 50%;
	margin-left: -0.5rem;
	animation: loading_process 1s 0.5s infinite;
	-webkit-animation: loading_process 1s 0.5s infinite;
}
.H5_loading .H5_loading_process div:nth-child(6){
	bottom: 25%;
	left: 25%;
	margin-left: -1rem;
	margin-bottom: -0.75rem;
	animation: loading_process 1s 0.625s infinite;
	-webkit-animation: loading_process 1s 0.625s infinite;
}
.H5_loading .H5_loading_process div:nth-child(7){
	bottom: 50%;
	left: 0;
	margin-bottom: -0.5rem;
	animation: loading_process 1s 0.75s infinite;
	-webkit-animation: loading_process 1s 0.75s infinite;
}
.H5_loading .H5_loading_process div:nth-child(8){
	top: 25%;
	left: 25%;
	margin-left: -1rem;
	margin-top: -0.75rem;
	animation: loading_process 1s 0.875s infinite;
	-webkit-animation: loading_process 1s 0.875s infinite;
}

@keyframes loading_process{
	87.5% {transform: scale(1.1);}
	93.75% {transform: scale(1.5);}
	100% {transform: scale(1.1);}
}
@-webkit-keyframes loading_process{
	87.5% {-webkit-transform: scale(1.1);}
	93.75% {-webkit-transform: scale(1.5);}
	100% {-webkit-transform: scale(1.1);}
}


.big-btn{
	width: 150px;
	height: 100px;
}






.form-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    margin: 60px auto;
    padding: 2rem 1.5rem 1.7rem 1.5rem;
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}

.form-login-container img {
    width: 200px;
    max-width: 100%;
    margin-bottom: 1.7rem;
    display: block;
}

.form-login-container form {
    width: 100%;
}

.form-login-container .form-group {
    margin-bottom: 1.2rem;
}

.form-login-container label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
    color: #374151;
}

.form-login-container input[type="text"],
.form-login-container input[type="password"] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.6rem;
    background: #f9fafb;
    font-size: 1rem;
    transition: border 0.2s;
}

.form-login-container input[type="text"]:focus,
.form-login-container input[type="password"]:focus {
    border: 1.5px solid #6366f1;
    outline: none;
    background: #fff;
}

.form-login-container .btn-primary {
    width: 100%;
    padding: 0.9rem 0;
    background: linear-gradient(90deg,#6366f1,#2563eb);
    border: none;
    border-radius: 0.6rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(99,102,241,0.06);
    transition: background 0.2s;
}

.form-login-container .btn-primary:hover {
    background: linear-gradient(90deg,#2563eb,#6366f1);
}


.note-block {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    position: relative;
}

.note-text {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 11px;
    color: #374151;
    transition: background 0.2s;
    cursor: default;
    min-width: 60px;
    max-width: 160px;
    overflow-x: auto;
    white-space: pre-line;
}

.note-empty {
    color: #aaa;
    font-style: italic;
}

.note-input {
    min-width: 70px;
    max-width: 160px;
    font-size: 11px;
    padding: 3px 8px;
}

.icon-btn {
    background: none;
    border: none;
    padding: 0 3px;
    font-size: 13px;
    color: #6366f1;
    cursor: pointer;
    transition: color 0.15s;
    display: flex;
    align-items: center;
}

.icon-btn:focus {
    outline: 1px solid #6366f1;
}

.icon-btn:hover {
    color: #2563eb;
}

.validNote {
    color: #22c55e;
}

.validNote:hover {
    color: #15803d;
}

.cancelNote {
    color: #f43f5e;
}

.cancelNote:hover {
    color: #be123c;
}
.d-none { display: none !important; }
