/*div principal del calendario*/
#calendario {
    background-color: #ffffff;
    text-align: center;
    width: 400px;
}

/*tabla del calendario*/
#diasc {
    border-collapse: separate;
    border-spacing: 4px;
    color: black;
}

#diasc th,
#diasc td {
    font: normal 14pt arial;
    width: 40px;
    height: 25px;
    text-align: center;
    font-size: 20px;
    color: black;
}

#diasc th {
    color: #990099 !important;
    background-color: #5ecdec !important;
}

/*cabecera del calendario*/
#anterior {
    float: left;
    width: 100px;
    font: bold 12pt arial;
    padding: 0.5em;
    cursor: pointer;
}

#posterior {
    float: right;
    width: 100px;
    font: bold 12pt arial;
    padding: 0.5em;
    cursor: pointer;
}

#anterior:hover {
    color: blue;
    text-decoration: underline;
}

#posterior:hover {
    color: blue;
    text-decoration: underline;
}

#titulos {
    font: normal 20pt "arial black";
}

/* Posibilidad de citas mensajes */
.manana-naranja {
    background: #fff;
    border: 2px solid #EFB956;
    color: #EFB956;
    transition-duration: 0.3s;
    transition-property: color, background-color;
}

.tarde-verde {
    background: #fff;
    border: 2px solid #61B964;
    color: #61B964;
    transition-duration: 0.3s;
    transition-property: color, background-color;
}

.manana-naranja:hover,
.tarde-verde:hover {
    background: #fff;
}

.seleccionado-azul {
    background-color: #fff;
    border: 2px solid #428FE0;
    color: #428FE0;
}

.manana-naranja,
.tarde-verde,
.seleccionado-azul {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: block;
    float: left;
    height: 8px;
    margin-right: 10px;
    margin-top: 2px;
    width: 8px;
    padding: 2px;
}

/* Cita Propuesta: */
.contenidoCentrado {
    text-align: left;
}

.centrado {
    margin: auto;
}

.centrado.estrecho {
    width: 75%;
}

.separarArribaMas {
    margin-top: 30px;
}

.separarAbajoMas {
    margin-bottom: 30px;
}

h2.cita-propuesta {
    background: none repeat scroll 0 0 #dbd8fc;
    color: #00336d;
    border-radius: 10px;
    font-size: 14pt;
    margin-bottom: 20px;
    padding: 5px;
    position: relative;
    text-align: center;
    line-height: normal;
}

#contenido-texto {
    clear: left;
    padding-top: 10px;
}

/* Seleccionar dia texto */
h2.seleccion-dia {
    background: none repeat scroll 0 0 #dbd8fc;
    color: #00336d;
    display: inline-block;
    border-radius: 10px;
    font-size: 14pt;
    padding: 5px;
    line-height: normal;
    margin-bottom: 10px;
}

h2.seleccion-dia .numero1 {
    bottom: 2px;
    color: #023979;
    font-family: "tahoma";
    font-size: 1.3em;
    font-weight: bold;
    left: 10px;
    position: left;
}

h2.seleccion-horario {
    background: none repeat scroll 0 0 #dbd8fc;
    color: #00336d;
    display: inline-block;
    border-radius: 10px;
    font-size: 14pt;
    padding: 5px;
    line-height: normal;
    margin-bottom: 10px;
}

h2.seleccion-horario .numero2 {
    bottom: 2px;
    color: #023979;
    font-family: "tahoma";
    font-size: 1.3em;
    font-weight: bold;
    left: 0px;
    position: left;
}

/* Espaciado calendario-horario */
.horario {
    float: static;
    width: 350px;
}

/* CURSOR SELECCIONABLE PARA LAS CELDAS */
td {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* TAMAÑO HORAS */
#horas td {
    font-size: 20px;
}

/* ESTILOS ALERTA GIF */
.overlay {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        background-color: rgba(0, 0, 0, 1);

    }

    .overlay img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        max-height: 90%;
    }

