/* Toggle Flip Switch Styles */
.toggle-flip {
    position: relative;
    width: 50px;
    height: 28px;
    display: inline-block;
}
.toggle-flip input[type="checkbox"] {
    display: none;
}
.toggle-flip label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}
.toggle-flip .flip-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 34px;
    transition: background 0.3s;
}
.toggle-flip .flip-indicator:before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.toggle-flip input[type="checkbox"]:checked + .flip-indicator {
    background: #009688;
}
.toggle-flip input[type="checkbox"]:checked + .flip-indicator:before {
    transform: translateX(22px);
}
.toggle-flip .flip-indicator:after {
    content: attr(data-toggle-off);
    color: #fff;
    background: #b0b0b0;
    border-radius: 10px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
    padding: 2px 10px;
    min-width: 36px;
    text-align: center;
    transition: all 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.toggle-flip input[type="checkbox"]:checked + .flip-indicator:after {
    content: attr(data-toggle-on);
    left: 4px;
    right: auto;
    color: #fff;
    background: #009688;
}
.app-sidebar__toggle {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.app-sidebar__toggle::before {
    display: none;
}

.headerRegister, .header-success {
    background-color: #009688;
    color: #fff;
}

.headerUpdate {
    background-color: #00eeff;
    color: #fff;
}

.notBlock {
    display: none;
}

/* Loading part */

#divLoading {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(254, 254, 255, .65);
    z-index: 9999;
    display: none;
}

#divLoading img {
    width: 50px;
    height: 50px;
}

.required {
    color: red;
    font-size: 23px;
    font-weight: bold;
}


