﻿
#cuadro {
    border: 0px;
    border-spacing: 0px 20px;
    margin-left: auto;
    margin-right: auto;
    max-width:400px;
}

#logo {
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

#cuadroGeneral {
    border: 1px solid black;
    border-color: grey;
    border-radius: 5px;
    border-spacing: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #666666;
    margin-left: auto;
    margin-right: auto;
}

#cuadroDatos {
    border: 1px solid black;
    border-color: grey;
    border-radius: 5px;
    border-spacing: 10px 10px;
    font-size: 11px;
    padding: 5px;
}

#btnMostrar {
    width: 110px;
    height: 25px;
    text-align: center;
    cursor: pointer;
}

#titulo {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    height: 26px;
    margin-top:5px;
    margin-bottom:5px;
    margin-left: auto;
    margin-right: auto;
}

.label {
    text-align: left;
}

.campo {
    text-align: right;
}

.panelAvisos {
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 100000;
}
.messageAlert {
    width:300px;  
    position:static;
    padding: 15px;
    font-size: 15px;
    opacity: 1;
    transition: opacity 0.6s; /* 600ms to fade out */

    color: white;
    margin-bottom: 5px;
    border-radius: 5px;
}

.successMsg {
    background-color: #04AA6D; /* Green */
}

.errorMsg {
    background-color: #f44336; /* Red */
}

.closebtn {   
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}
