
.formTitle {
    background-color: #fafbfb;
}
.mouseClick {
    cursor: pointer !important;
    color: #1A92CE; /**/
}
.item:hover {
    background-color: #eceff5;
    padding:0px 3px;
}

.selected {
    background-color: #eceff5;
    padding: 0px 3px;
}

.appName {
    font-weight: 600;
    color: rgb(34, 183, 131);
    position: absolute;
    margin-top: 5px;
}

    .appName span {
        color: rgba(239, 77, 86, 0.8);
    }
.localPrimary, .localPrimary:focus {
    background-color: rgba(75, 192, 192, 0.2);
    border-bottom: 1px rgba(75, 192, 192, 1) solid;
    color: #1A92CE;
}

    .localPrimary h4, .localPrimary a {
        font-size: 14px;
        font-weight: bold;
    }

.divTable {
    height: 265px;
}


.custom-tooltip {
    padding: 2px 10px 5px;
}

    .custom-tooltip .group:nth-child(3) {
        border-top: 1px solid #e4e4e4;
    }

.group1 {
    color: #22b783;
}

.group2 {
    color: rgba(239, 77, 86, .90);
}

.group {
    padding: 4px 0;
    font-weight: light;
    color: #111;
}

    .group span {
        font-style: normal !important;
        color: #888;
    }

.input-validation-error {
    border: 1px solid red;
    background-color: #fcdbdd;
}
/*Estilos personalizados*/
.loader {
    background-color: #2c3e50;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: .8;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 1000;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.kinetic {
    position: relative;
    height: 80px;
    width: 80px;
}

    .kinetic::after, .kinetic::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border: 50px solid transparent;
        border-bottom-color: rgb(250, 250, 250);
        animation: rotateA 2s linear infinite 0.5s;
    }

    .kinetic::before {
        transform: rotate(90deg);
        animation: rotateB 2s linear infinite;
    }

.no-scroll {
    overflow-y: hidden;
}

@keyframes rotateA {
    0%, 25% {
        transform: rotate(0deg);
    }

    50%, 75% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateB {
    0%, 25% {
        transform: rotate(90deg);
    }

    50%, 75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(450deg);
    }
}
/*Custom Notification*/


.notify-container {
    position: fixed;
    z-index: 202020;
    margin: auto;
    padding-bottom: 5px;
    max-width: 60%;
}

    .notify-container.center {
        left: 40%;
    }

    .notify-container.left {
        left: 20px;
    }

    .notify-container.top {
        top: 25px;
    }

    .notify-container.bottom {
        bottom: 25px;
    }

    .notify-container.right {
        right: 20px;
    }

.notify {
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    display: none;
    margin-bottom: 10px;
    max-width: 420px;
}

    .notify.active {
        transform: translateX(0%);
        display: block;
        background-color: #e6eaed;
        border: 1px solid #ddd;
        margin: 10px;
    }

    .notify .notify-content {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }

.notify-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #4070f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.notify-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
}

    .message .text.text-1 {
        font-weight: 600;
        color: #333;
    }

.notify .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

    .notify .close:hover {
        opacity: 1;
    }

.notify .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    margin-top: 10px;
}

    .notify .progress:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background-color: #4070f4;
    }

.notify .error:before {
    background-color: #f45740;
}

.notify .success:before {
    background-color: #109618;
}


.notify .info:before {
    background-color: #4096d1;
}

.notify .warning:before {
    background-color: #f4c340;
}

.notify .question:before {
    background-color: #f45740;
}

.progress.active:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

/*Efectos fadein*/
.animated {
    background-repeat: no-repeat;
    background-position: left top;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

.input-date input {
    border: none;
    box-sizing: border-box;
    outline: 0;
    padding: .75rem;
    position: relative;
    width: 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}