/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18/02/2020, 9:28:34
    Author     : ernesto.ruales
*/
/* Don't add this code except if you are using Daemonite material UI which is still BS 4.1.1 */

.uppercase{
    text-transform: uppercase;
}

.bloquear{
    background:#000000;
    width: 100%;
    height: 100%;
    filter:alpha(opacity=50);
    opacity:0.5;
    margin: 0px;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index:1000;
    cursor: wait;  
    margin: 0px;
    padding: 0px;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

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

@media screen and (min-width: 900px) {
    .listaMobile{
        display: none;
    }
}

@media screen and (max-width: 899px) {
    .listaTabla{
        display: none;
    }
}

.bg-c-gris {
    background-color: #6c757dc9;
}
.img-negro{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.btn-morado{
        color: #fff;
        background-color: #7C0AFF;
        border-color: #7C0AFF;
    }
    .texto-modal{
        color: white;
    }
    .btn-redondo{
        color: white;
        border-radius: 10px;
    }
    .col-img{
        width: 22.22%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .img-negro{
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    @media screen and (min-width: 999px) {
        .titulo-modal{
            min-width: 760px;
        }
    }
    @media screen and (max-width: 575px) {
        .img-btn-etapa {
            max-width: 150px;
        }
    }

    .balloon{
        background-color: #313592;
        color: white;
    }

    .balloon:before {
        content:"";
        width: 0;
        height: 0;
        position: absolute;
        margin: 30px 0 0 50px;
        border-top: 20px solid chocolate;
        border-right: 18px solid transparent;
        border-left: 18px solid transparent;
    }