html, body {
    margin:0;
    padding:0;
}
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.eot');
    src: url('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
         url('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.woff') format('woff'),
         url('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
         url('https://netdna.bootstrapcdn.com/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}
/*
LOS ELEMENTOS DEL INTRO
*/
div.intro {
    margin:0;
    padding:0;
    width:629px;
    height:400px;
    background-image: url(../graficos/index.jpg);
    background-repeat: no-repeat;
    background-position: 0 0;
    position:relative;
}
div.intro .introInner {
    width:90%;
    height:52px;
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-295px;
    margin-top:110px;

}
div.intro .introInner img {
    float:left;

}
/*
FIN INTRO
*/
/*
CABECERA
*/
.flashCabecera {

    width:774px;
    height:78px;
    background-image:url(../graficos/bg_cabcera.jpg);
    background-repeat:no-repeat;
    background-position: 0 0;
    position:relative;
    /*border:1px solid teal;*/
}
.flashCabecera a:link,.flashCabecera a:visited, .flashCabecera a:hover {
    background:none;
}
.flashCabecera .logo {
    display:inline-block;
    float:left;
    width:153px;
    margin:5px 0;
    padding-left:10px;
    border:none;
    /*border:1px solid blue;*/

}
.flashCabecera .derecha {
    display:inline-block;
    /*float:right;*/
    width:420px;
    /*height:78px;*/
    float:right;
    /*background:yellow;*/
    margin:0;
    margin-right:7px;
    text-align:right;
    /*border:1px solid red;*/
    overflow:hidden;

}
.flashCabecera .loggedin {
    padding-right: 10%;
    padding-top: 3.5%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    /*font-weight: bold;*/
    color: rgba(0, 170, 42, 1);
}
.flashCabecera .cierresesion {
    font-size: 7px;
    font-weight: bold;
    color: #fff;
    background-color: #109812;
    border-color: #0c730e;
    line-height: 1;
    padding: 7px 4px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 2px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.flashCabecera .logouticon {
    font-family: 'Glyphicons Halflings';
}
.logouticon:before { 
    content: "\e163"; 
}
.padreRotulos {
    position:relative;


}
.portes {
    width:100px;
    height:100px;
    background-position:0 0;
    background-repeat:no-repeat;
    position:absolute;
    top:-80px;
    left:150px;


}
.portes.lang {
    background-image:url("../graficos/portes_esp.png");
    background-position: 0 0;
    background-repeat: no-repeat;
/*background:red;*/
}

.portes.lang_por {
    background-image:url("../graficos/portes_por.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    /*background:red;*/
}
.descuentos {
    width:100px;
    height:100px;
    background-position:0 0;
    background-repeat:no-repeat;
    position:absolute;
    top:-80px;
    left:230px;


}
.descuentos.lang {
    background-image:url("../graficos/descuentos_esp.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    /*background:red;*/
}

.descuentos.lang_por {
    background-image:url("../graficos/descuentos_por.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    /*background:red;*/
}

/*AJUSTE BLOQUE CENTRAL*/
.headerfix {
    position: relative;
    z-index: 1;
}
.bloquecentral {
    position: relative;
    left: -3px;
    top: -6px;
}
.cierrebloquecentral {
    position: relative;
    top: -6px;
    left: -3px;
}
blockquote {
    text-align: center;
    width: 95%;
}
/*FIN AJUSTE BLOQUE CENTRAL*/

.avisolegal {
    padding: 40px;
    text-align: left;
}

/*AJUSTE IMAGENES PROMOCIONES*/
.promos {
    width: 50%;
}
.promos img {
    display: block;
    width: 100%;
    height: auto;
}
.promos img:hover {
    opacity: 0.7; /* opacidad para hacer obvio que es clickable */
}
/* contenedor del modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Mantener estático */
    z-index: 5; /* Traer al frente */
    padding-top: 100px; /* Posición de la caja */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Habilitar scroll si es necesario */
    background-color: rgb(0,0,0); /* Color de respaldo */
    background-color: rgba(0,0,0,0.9); /* Negro con opacidad */
}
/* Contenido del modal (imagen) */
.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px;
}
/* Añadir animación - Zoom al modal */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}
/* Botón de cerrar */
.modalclose {
    font-family: "Glyphicons Halflings";
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.modalclose:before {
    content: "\e014";
}
.modalclose:hover, .modalclose:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* 100% Tamaño de imagen en pantallas pequeñas */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
/*FIN AJUSTE IMAGENES PROMOCIONES*/

/*CAJA SUSCRIPCIÓN*/
.closeicon {
    font-family: "Glyphicons Halflings";
    margin: 20px;
    font-size: 18px;
    cursor: pointer;
}
.closeicon:before {
    content:"\e014";
}
.parent-wrapper {
    position: fixed;
    bottom: 12px;
    left: 30px;
    z-index: 2;
    width: 280px;
    height: 183px;
    margin: 40px auto 0;
    background-image: url('https://i.imgur.com/Jp3YY4b.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: -600%;
    background-color: #000;
    border-radius: 4px;
    color: #FFF;
    box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
}
.subscribe-wrapper {
    position: absolute;
    left: -30px;
    right: -30px;
    top: 25px;
    height: 140px;
    width: 300px;
    padding: 15px 25px 15px 25px;
    background-image: url('https://i.imgur.com/MRjF1PL.png?1');
    background-position-x: 272%;
    background-position-y: -1px;
    background-repeat: no-repeat;
    background-color: #FFF;
    border-radius: 4px;
    color: #333;
    box-shadow: 0px 0px 60px 5px rgba(0, 0, 0, 0.4);
}
.subscribe-wrapper:after {
    position: absolute;
    content: "";
    right: -10px;
    bottom: 104px;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #7149c7;
}
.subscribe-wrapper h4 {
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 17px;
    position: absolute;
    padding: 0px 20px;
    bottom: 98px;
}
label.legal {
    position: absolute;
    bottom: 10px;
    left: 45px;
    font-size: 9px;
}
a.legal {
    font-size: 8px;
    background-color: white;
}
a.legal:hover {
    background-color: #53621e;
}
.subscribe-wrapper input {
    position: absolute;
    bottom: 70px;
    border: none;
    border-bottom: 1px solid #d4d4d4;
    padding: 10px;
    width: 65%;
    background: transparent;
    transition: all .25s ease;
}
.subscribe-wrapper input:focus {
    outline: none;
    border-bottom: 1px solid #a77cf4;
}
.subscribe-wrapper .check {
    left: -86px;
    bottom: 34px;
}
.subscribe-wrapper .submit-btn {
    position: absolute;
    border-radius: 30px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    background-color: #a77cf4;
    color: #FFF;
    padding: 12px 15px;
    display: inline-block;
    font-size: 7px;
    font-weight: bold;
    letter-spacing: 2px;
    right: -10px;
    width: 95px;
    bottom: 70px;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: -5px 6px 20px 0px rgba(51, 51, 51, 0.4);
}
.subscribe-wrapper .submit-btn:hover {
    background-color: #8e62dc;
}
/*FIN CAJA SUSCRIPCIÓN*/

#slideshow {
    position: relative;
    overflow: hidden;
    height: 400px;
}
#slideshow > div {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0px;
    bottom: 0px;
    height: 430px;
}
#slideshow > div > img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/*FORM LOGIN*/
.flashCabecera .formLogin {
    height:35px;
    /*float:right;*/
    /*background:orange;*/
    margin:0;
    /*border: 1px solid orange;*/
}
form#form_login{
    /*border:1px solid green;*/
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    margin-top:5px;
    margin-right:10px;
    font-size:10px;
}
form#form_login label, form#form_login label:link, form#form_login label:visited, form#form_login label:hover {

    color:#9A2A70;
    font-size:10px;
}

form#form_login input {
    color:black;
    font-size:10px;
    border: 1px #000 solid;
    outline: none;
    height: 15px;
    margin-top: 6px;
    text-transform: uppercase;
    width: 66px;
}
form#form_login button {
    color:black;
    font-size:10px;
    height:16px;
    border: #000 1px solid;
    background: #fcfcfb; /* Old browsers */
    background: -moz-linear-gradient(top, #fcfcfb 0%, #d8decb 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfb), color-stop(100%,#d8decb)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fcfcfb 0%,#d8decb 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fcfcfb 0%,#d8decb 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fcfcfb 0%,#d8decb 100%); /* IE10+ */
    background: linear-gradient(to bottom, #fcfcfb 0%,#d8decb 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfb', endColorstr='#d8decb',GradientType=0 ); /* IE6-9 */
}
/*FIN FORM LOGIN*/
.flashCabecera .nav a:link, .flashCabecera .nav a:visited {
    display:inline-block;
    /*float:right;*/
    width:99px;
    height:27px;
    background-color: white;
    background-image:url(../graficos/pestanaVerde.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    text-transform:uppercase;
    padding:0;
    margin:0;
    text-align:center;
    padding-top:5px;
    padding-bottom:0px;
    /*border:1px solid red;*/
    margin-top:8px;
    margin-bottom:-10px;

}
.flashCabecera .nav a.Rosa {
    background-image:url(../graficos/pestanaRosa.png);
}
.flashCabecera .nav a:hover {
    /*background-position: 0 -23px;*/
    background-position: 0 3px;
    color:black;
}
.flashCabecera .nav a.current {
    background-position: 0 -23px;
    pointer-events: none;
    cursor:default;
}
/*.flashCabecera nav a:first-child {*/
    /*display:none;*/
/*}*/

/*

FIN CABECERA
*/
.clear {
    clear: both;
}
