﻿/********************************
ESTILOS GENERALES
*********************************/
* {
    box-sizing: border-box;
    transition: all 0.5s ease;
    font-family:Montserrat;
}

html,body,form {
    height:100%;
    padding:0px;
    margin:0px;
}

body {
    background-image: url(../images/opa/opa50w.png),url(../images/fondo.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
    /*Hacemos espacio para la barra de menú:*/
    padding-top: 80px;
}
.columna {
    margin-bottom: 7px;
}

a {
    color: #9e4639;
    text-decoration: none;
    text-shadow:1px 1px white;
}
    a:hover {
        color: #237dc4;
    }

#contenedorMenu{
    /*background-image:url(../images/opa/opa50w.png);*/
    background-color:white;
    color:white;
    padding:10px;
    position:fixed;
    top:0px;
    width:100%;
    height:80px;
    line-height:60px;
}
    #contenedorMenu a {
        /*font-family: 'Oswald';*/
        font-family:Montserrat;
    }

.imgLogo {
    position: relative;
    height:60px;
    cursor:pointer;
}

#linksIdioma{
    position:fixed;
    top:5px;
    right:30px;
    font: 10px 'Oswald';
    z-index:1;
}
#linksIdioma a {
    font: 10px 'Oswald';
    font-weight:bold;
}

#titulo {
    font-family: Montserrat,'Oswald';
    font-size: 1.3em;
    color:#444444;
    padding: 12px 0px 0px 0px;
    line-height:1.1em;
    font-weight:bold;
    margin-left:16px;
}

h2 {
    /*font-family: 'Oswald';*/
    font-family: Montserrat;
    line-height:1em;
    margin: 0 0 8px 0;
    text-shadow:1px 1px white;
}

*:focus {
    outline: none;
}

.labelBonita{
    text-shadow: 1px 1px white;
    font:0.9em 'Montserrat';
    font-weight:bold;
}
.labelBonitaDiscreta {
    text-shadow: 1px 1px white;
    /*font: 0.8em 'Oswald';*/
    font: 0.8em Montserrat;
}

.textoBonito{
    border-radius:4px;
    padding:5px;
    border:1px solid #666666;
    /*font: 1em 'Oswald';*/
    font: 1em Montserrat;
}
    .textoBonito option {
        padding: 5px;
        /*font: 1em 'Oswald';*/
        font: 1em Montserrat;
    }
.botonBonito {
    border-radius: 4px;
    padding: 5px;
    border: 1px solid #666666;
    font: 1em Montserrat;
    cursor: pointer;
}

.textoBonitoDiscreto {
    border-radius: 3px;
    padding: 3px;
    border: 1px solid #cccccc;
    font: 0.8em Montserrat;
}
.textoBonitoDiscreto::placeholder {
    color:#cccccc;
    font-style:italic;
}
.botonBonitoDiscreto {
    border-radius: 3px;
    padding: 3px;
    border: 1px solid #cccccc;
    font: 0.8em Montserrat;
}


.contenido {
    text-shadow: 1px 1px white;
    margin-top:5px;
    font-family:Montserrat;
}

.contenido p{
    text-shadow:1px 1px white;
    font-family: Montserrat;
}

    .contenido.destacado {
        background-color: #4566ae;
        color: white;
        padding: 30px;
    }

        .contenido.destacado a {
            color: white !important;
            text-decoration: none;
            font-size: 2em;
            text-shadow: none;
        }


.controlFicheros{
    background-color:white;
    border: 1px solid #cccccc;
    border-radius:5px;
    padding: 10px;
}
.controlFicherosRojo {
    background-color: white;
    border: 1px solid red;
    border-radius: 5px;
    padding: 10px;
}

.linkDiscreto {
    font-size:0.8em;
    color:#666699;
    text-decoration:none;
}

.cab1 {
    padding: 22px 20px 20px 10px;
    background-image: url(../images/opa/opa70w.png);
}

.cab2 {
    padding: 8px;
    text-align: center;
    background-image: url(../images/opa/opa50w.png);
    margin-bottom: 10px;
    width:80%;
}
.cab2 a{
    font:1.2em Montserrat;
}
.cab2 h2{
    margin-bottom:0px;
}

.tabla td {
    padding: 3px 6px 3px 6px;
    font-size: 13px;
    background-image: url(../images/opa/opa70w.png);
    border:1px solid #eeeeee;
}

table.listView tr:hover {
    background-color: #bbb;
}


/***********************************************************************************************
ESTILOS PARA MENSAJES DE ERROR FLOTANTES
***********************************************************************************************/
.contError {
    /*position: absolute;*/
    position:fixed;
    z-index: 255;
    bottom: 20px;
    width: 100%;
}

    .contError .cuadroError {
        position: relative;
        padding: 10px;
        overflow: hidden;
        width: 70%;
        height: 180px;
        border-radius: 5px;
        box-shadow: 0px 0px 10px #666666;
        /*background-color: #FFFACD;*/
        background-color: #f4f4f4;
        margin: 0 auto 0 auto;
        -webkit-animation: myfirst 1s; /* Chrome, Safari, Opera */
        animation: myfirst 1s;
    }

        .contError .cuadroError .texto {
            color: #5D570B;
            text-shadow: 1px 1px white;
            font: 1em Roboto;
            overflow: auto;
            width: 95%;
            height: 160px;
        }

    .contError .botX {
        position: absolute;
        right: 10px;
        top: 10px;
    }

.errorRojo {
    color: #CC4444;
    font: 20px Montserrat;
    font-weight: bold;
    font-variant:small-caps;
    display:block;
    margin-bottom:6px;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Standard syntax */
@keyframes myfirst {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} 

/***********************************************************************************************
ESTILOS PARA MENSAJES DE INFORMACIÓN FLOTANTES
***********************************************************************************************/
.contMensaje {
    position: fixed;
    z-index: 255;
    bottom: 20px;
    width: 100%;
}

    .contMensaje .cuadroMensaje {
        position: relative;
        font: 1em Roboto;
        padding: 10px;
        overflow: hidden;
        width: 70%;
        height: 100px;
        border-radius: 5px;
        box-shadow: 0px 0px 10px #666666;
        background-color: #f4f4f4;
        margin: 0 auto 0 auto;
        -webkit-animation: myfirst 1s; /* Chrome, Safari, Opera */
        animation: myfirst 1s;
    }

        .contMensaje .cuadroMensaje.confirm {
            height: 200px;
        }

        .contMensaje .cuadroMensaje .texto {
            color: #444444;
            text-shadow: 1px 1px white;
            font: 1em Roboto;
            overflow: auto;
            width: 95%;
            height: 160px;
        }

.cuadroMensaje.confirm .texto {
    height: 112px;
    font-size: 1.3em;
    margin:12px;
}

.contMensaje .botX {
    position: absolute;
    right: 10px;
    top: 10px;
}

.botonDiscreto {
    padding: 0px;
    border-width: 0px !important;
    background-color: transparent;
    box-shadow: 0px 0px 0px transparent !important;
    margin: 0px;
}


/***********************************************************************************************
ESTILOS COMBINATIVOS
***********************************************************************************************/

.show {display: block !important;}
.gone{display:none !important;}
.bloque{display:block;}
.bloqueinl{display:inline-block;}
.w100{width:100%;}
.w1 {width: 1px;}

.ar{text-align:right;}
.al {text-align:left;}
.ac{text-align:center;}

.bld {font-weight:bold;}

.backw {background-color: white;}
.back50w {background-image:url(../images/opa/opa50w.png)}

.bb1 {border-bottom:1px solid black;}

.nw {white-space:nowrap;}

.mt5 {margin-top:5px;}
.mb0 {margin-bottom:0px;}

.listaDefault {
    font-size: 1.2em;
    font-family: 'Open Sans';
}

