﻿.Button {
    background-color: #05599D;
    border-radius: 4px;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    color: White;
    cursor: pointer;
    display: inline-block;
    width: 80px;
    transition: all .2s ease-out;
    text-align: center;
    padding: 6px 12px;
    /*Ini: Christian Ramirez - GIIT[Caso47013] - 20180818*/
    font-size: 14px;
    border-color: transparent;
    /*
    font-family: Arial;
    height: 28px;
    margin: 5px auto;
    */
    /*Fin: Christian Ramirez - GIIT[Caso47013] - 20180818*/
}

.Button:hover 
{
    background-color: #043964;
    /*border-bottom: 3px solid #043964;*//*Se comenta: Christian Ramirez - GIIT[Caso47013] - 20180817*/
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.popup 
{
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
}

.popup-main {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    font-family: Arial;
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    padding-bottom: 10px;
}

.popup-main-espera {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2px;
    text-align: center;
    vertical-align: middle;
    width: 200px;
}


.popup-main .popup-header {
        /*background-color: #BFCA3F;*/
        padding: 10px;
    }

        .popup-main .popup-header h4 {
            color: #ffffff;
            margin: 0;
            padding: 0;
            text-align: center;
        }

    .popup-main .popup-content {
        padding: 10px;
    }

        .popup-main .popup-content p {
            width: 80%;
            margin: 20px auto;
            text-align: center;
            color: gray;
            line-height: 17px;
            font-size: 15px;
        }

    .popup-main .popup-footer {
        text-align: center;
        padding: 5px;
        border-top: 1px solid black;
    }
