.loaderUser {
    width: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
    top: 50%;
    left: 50%;
}

.loaderUser:before,
.loaderUser:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFF;
    transform: translate(-50%, 100%) scale(0);
    animation: push 2s infinite ease-in;
}

.loaderUser:after {
    animation-delay: 1s;
}

@keyframes push {
    0% {
        transform: translate(-50%, 100%) scale(1);
    }

    15%,
    25% {
        transform: translate(-50%, 50%) scale(1);
    }

    50%,
    75% {
        transform: translate(-50%, -30%) scale(0.5);
    }

    80%,
    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}


#loading {
    display: none;
    width: 100%;
    background: #5f5f5f7a;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: 100%;
}

.g--margin-4px {
    margin: 4px;
}

.g--margin-bottom-14px {
    margin-bottom: 14px;
}

.g--margin-right-14px {
    margin-right: 14px;
}

.g--text-align-right {
    text-align: right;
}

.g--padding-left-0 {
    padding-left: 0;
}

.g--padding-bottom-0 {
    padding-bottom: 0!important;
}

.g--border-0 {
    border: 0;
}

.g--font-size-14px {
    font-size: 14px!important;
}

/* The container-checkmark */
.container-checkmark {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkmark input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: -10px;
    left: 5px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #838383;
}

/* On mouse-over, add a grey background color */
.container-checkmark:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkmark input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkmark input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkmark .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ck-editor__editable {
    min-height: 250px;
    color: #555555;
}

.ck-editor__editable p {
    font-size: 14px;
}

.badge {
    text-transform: uppercase;
}

.badge-active {
    background-color: #daf3ce !important;
    color: #59ad2c !important;
}

.badge-inactive {
    background-color: #ffd4cd !important;
    color: #e76049 !important;
}

.row-btn{
    display: inline-flex;
    width: 100%;
}
.row-btn .btn{
    display: block;
    margin:0px 2px;
}

.notify-red {
    position: relative;
}

.notify-red::after {
    content: '';
    position: absolute;
    background-color: red;
    border-radius: 50%;
}

.notify-btn::after {
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
}

.notify-menu::after {
    top: -5px;
    right: -10px;
    width: 5px;
    height: 5px;
}

/* Botón con punto rojo animado */
.notify-red::after {
    animation: pulsar 1s infinite;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}
