﻿

.titulo {
    color: #424242 !important;
}

.subtitulo {
    color: #424242 !important;
}

hr {
    border-top: 1px solid #424242;
}

.panel {
    border-radius: 0;
    border-top: solid 1px #424242;
    border-bottom: solid 1px #424242;
}

.border-left {
    border-color: #424242;
}

.btn-primary {
    background-color: #424242 !important;
    border-color: #424242 !important;
    opacity: 0.9
}

    .btn-primary:active,
    .btn-primary:focus,
    .btn-primary:hover {
        background-color: #424242 !important;
        border-color: #424242 !important;
        opacity: 1
    }

    .btn-primary:disabled {
        opacity: .65;
    }

.btn-secundary {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
    opacity: 0.9;
    color:white
    
}

    .btn-secundary:active,
    .btn-secundary:focus,
    .btn-secundary:hover {
        background-color: #5a6268 !important;
        border-color: #5a6268 !important;
        opacity: 1;
        color:white
    }

    .btn-secundary:disabled {
        opacity: .65;
    }

.img {
    min-width: 60px;
    min-height:30px;
}

/* Loader */

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(14, 95, 175, 0.1);
}

.loader {
    margin-top: 12em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 15px solid white;
    border-top: 15px solid #0c5dc5;
    background: rgba(1, 85, 50, 0.1);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 0.5s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-content {
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    z-index: 10000000;
    background: gray;
    height: 100%;
    width: 100%;
    margin: auto;
}

.spinner {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
    position: absolute;
    left: calc(50vw - 25px);
    top: calc(50vh - 20px);
}

    .spinner > div {
        z-index: 999;
        background-color: #424242;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
        border-color:white;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
        border-color: white;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
        border-color: white;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
        border-color: white;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}