/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    border-width: 0;
    box-sizing: border-box;
}

body {
    margin: 0px;
    margin-top: 0px;
    font-family: 'Poppins',sans-serif;
    background-color: rgb(255,255,255);
}

h1, h2, h3 {
    /* color: rgb(174, 72, 191); */
    color: #000;
    text-align: center;
    font-weight: 400;
}

h3 {
    font-weight: 600;
}

h2 {
    font-size: 1.8rem;
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.display-false {
    display: none !important;
}

.bg-alerta {
    background-color:crimson !important;
}

.alerta {
    color:crimson;
}

.observacion {
    color: rgb(174, 72, 191);
}

.bg-observacion {
    background-color: rgb(174, 72, 191) !important;
}

.bg-ok {
    background-color:forestgreen;
}

.ok {
    color:forestgreen;
}

.bg-gris {
    background-color: #ccc !important;
}

.centrado {
    text-align: center;
}

.texto-destacado {
    font-weight: 800;
}

select {
    border-radius: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: #999;
    padding: 10px;
    font-size: 1rem;
    color: #666;
}

a {
    text-decoration: none;
}

hr {
    height: 1px;
    background-color: #ccc;
}

p {
    margin-bottom: 20px !important;
}