/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
:root{
    --corporativo: #0085CC;
    --auxiliar: rgba(15, 186, 172, 1);
}
body {
    font-size: 14px;
    line-height: 1.4;
    background-color: #FFFFFF;
    color: #000000;
    text-rendering: optimizeLegibility;
}
button,
select,
input,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
button{
    border-radius: 8px;
}
small{
    font-size: .7em;
}
figure{
    margin: 0px;
}
input[type="submit"], button, select{
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
}
img {
    vertical-align: bottom;
}
ul, li{
    margin: 0px;
}
select{
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline:0px;
}
select::-ms-expand { /* for IE 11 */
    box-shadow: none;
    display: none;
    cursor: pointer;
    outline:0px;
}
:focus{
    outline:0px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #EEB21E inset;
    box-shadow: 0 0 0px 1000px #EEB21E inset;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #0085CC;
    color: #000000;
}

::selection {
    background: #0085CC;
    color: #000000;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    /*vertical-align: middle;*/
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */


ul, li {
  list-style-type:none;
  list-style-position: outside;
  margin-left: 0px;
  padding: 0px;
}


strong{
    font-family: 'fontBold', Arial, Helvetica, Verdana, sans-serif;
    color:#000000 !important;
    font-weight: normal;
}
a{
    text-decoration: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*
 Notas:
  - Para el cálculo de las medidas en 'em' se ha utilizado la referencia de 16 px por 1 em.
 */

/* ==========================================================================
   FUENTES
   ========================================================================== */
  

@font-face {
    font-family: 'fontLight';
    src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'fontNormal';
    src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'fontBold';
    src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
.lt-ie9{
  font-family: 'fontNormal', 'Arial', 'Verdana', 'Geneva', 'sans-serif';
  font-size: 13px;
}
html{
    font-family: 'fontNormal', arial, helvetica, verdana, sans-serif;
    overflow-y: scroll;
}


/* ==========================================================================
   LAYOUT GENERAL
   ========================================================================== */
h1{
    font-family: 'fontLight';
    font-size: 1.8em;
    font-weight: normal;
}
h2{
    font-family: 'fontBold';
    font-size: 1.4em;
    font-weight: normal;
}
h3{
    font-family: 'fontBold';
    font-size: 1em;
    font-weight: normal;
}
.posFix{
    position: fixed;
}

.texto{
  color: #FFFFFF;
  font-size: 1em;
  cursor: default;
  font-weight: normal;
}

.espacioP{
  margin-top: 20px;
  margin-bottom: 20px;
}
.txtNegro{
    color: #000000 !important;
}
.txtGris{
    color: #666666 !important;
}
.txtGrisC{
    color: #999999 !important;
}
.txtRojo{
    color: #CC0000 !important;
}
.inputTextError{
    color: #CC0000 !important;
    /*background-color: rgba(204, 0, 0, 0.1) !important;*/
    -webkit-animation: movErr 2s infinite;
    animation: movErr 2s infinite;
}
@-webkit-keyframes movErr {
    0% {
        background-color: rgba(204, 0, 0, 0.1);
    }50%{
        background-color: rgba(204, 0, 0, .3);
    }100%{
        background-color: rgba(204, 0, 0, 0.1);
    }
}
@keyframes movErr {
    0% {
        background-color: rgba(204, 0, 0, 0.1);
    }50%{
        background-color: rgba(204, 0, 0, .3);
    }100%{
        background-color: rgba(204, 0, 0, 0.1);
    }
}

.errorBorder{
    outline: 1px solid #CC0000 !important;
}
.okBorder{
    outline: 1px solid #34A853 !important;
}
.checkAvisoError{
    border: 1px solid #CC0000 !important;
    background-color: #FFCCCC !important;
}
.txtCorporativo{
    color: #0085CC; /* rgba(0, 133, 204, 1) */
}
.txtAuxiliar{
    color: rgba(15, 186, 172, 1); /* rgba(15, 186, 172, 1) */
}
.txtAuxiliar:hover, .txtAuxiliar:focus{
    text-decoration: underline;
}
.txtAuxiliar2{
    color: #89193c !important; /* rgba(137, 25, 60, 1); */
}
.txtBlanco{
    color: #FFFFFF !important;
}
.destacado{
    background-color: rgba(0, 204, 255, .5)!important;
    color: #000000 !important;
}

.ico{
    height: 50px;
    border: none;
    background-color: transparent;
    font-size: 1em;
    color: #0085CC;
    margin: 0px 0px 0px 25px;
    padding: 0px;
    transition: all .5s;
    display: block;
}
.ico:hover, .ico:focus{
    opacity: .5;
}
.ico::before {
    content: '';
    position: absolute;
    margin-top: -13px;
    margin-left: -45px;
    /*z-index: -1;*/
    width: 50px;
    height: 50px;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
}
.ico span{
    font-family: 'fontNormal';
}
.icoWha::before{
    background-position: 0px -125px;
}
.icoTel::before{
    background-position: -50px -125px;
}
.icoMai::before{
    background-position: -100px -125px;
}
.icoFax::before{
    background-position: -150px -175px;
}
.icoMap::before{
    background-position: -100px -175px;
}
.icoWeb::before{
    background-position: -200px -175px;
}
/* ==========================================================================
   Copyright
   ========================================================================== */
#copyright{
  position: fixed;
  right: 15px;
  top: 100%;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  font-size: 0.75em;
  color: #444444;
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 0;
}
#copyright:hover, .copyright:focus{
  color: #FFFFFF;
  text-shadow: 1px 1px #000000;
}
/* ==========================================================================
   Cookies
   ========================================================================== */
#leyDeCookies {
    position: fixed;
    width: 95%;
    max-width: 780px;
    height: auto;
    bottom: 10px;
    left: 50%;
    text-align: center;
    line-height: 1em;
    font-size: .85em;
    transition: all 0.5s ease 0s;
    padding: 8px 20px;
    cursor: pointer;
    display: none;
    z-index: 100;
    border-radius: 30px;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, .3);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
#leyDeCookies:hover, #leyDeCookies:focus{
    background-color: var(--corporativo);
}
#leyDeCookies a{
    color: #FFFFFF;
    
    text-decoration: none;
}
#leyDeCookies p{
    padding: 0px;
    display: block;
    animation: none;
}
#leyDeCookies button{
    border: none;
    color: #FFFFFF;
    margin: 10px 20px 0px 20px;
    transition: all .5s;
    padding: 5px 20px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 10px;
}
#leyDeCookies button:hover{
    background-color: rgba(0, 0, 0, .2);
}
#leyDeCookies strong{
    color: #FFFFFF !important;
    font-weight: normal !important;
}
/* ------------------------------------------------------------------------------
   ERRORES
   ------------------------------------------------------------------------------ */
.error{
    height: 100%;
    text-align: center;
    padding-top: 50px;
}
.imgCrash{
    background-image: url('/img/circuitos/notfound.jpg');
}
#logoError img{
    width: 140px;
}
#mainError{
    color: #FFFFFF;
    font-size: 2.5em;
    font-family: 'fontBold';
}
#mainError a{
    color: #FFFFFF;
}
#mainError a:hover{
    text-decoration: underline;
}

/* ==========================================================================
   Aviso
   ========================================================================== */
#aviso{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /*
    background: rgba(0,182,227,.8);
    background: -moz-linear-gradient(-65deg, rgba(0,182,227,.8) 0%, rgba(29,101,164,.8) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,182,227,.8)), color-stop(100%, rgba(29,101,164,.8)));
    background: -webkit-linear-gradient(-65deg, rgba(0,182,227,.8) 0%, rgba(29,101,164,.8) 100%);
    background: -o-linear-gradient(-65deg, rgba(0,182,227,.8) 0%, rgba(29,101,164,.8) 100%);
    background: -ms-linear-gradient(-65deg, rgba(0,182,227,.8) 0%, rgba(29,101,164,.8) 100%);
    background: linear-gradient(115deg, rgba(0,182,227,.8) 0%, rgba(29,101,164,.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085CC', endColorstr='#1d65a4', GradientType=1 );
    */
    transition: all .8s;
    display:none;
    z-index: 100;
}
#aviso picture{
    
}
#aviso picture img{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}
#cajAvi{
    position: absolute;
    top: 35px;
    left: 50%;
    width: 520px;
    min-height: 190px;
    margin-bottom: 50px;
    font-size: 1em;
    background-color: #FFFFFF;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display:none;
    z-index: 201;
}
#cajRes{
    position: absolute;
    top: -150px;
    left: 50%;
    width: 100%;
    max-width: 780px;
    min-height: 190px;
    margin-bottom: 50px;
    font-size: 1em;
    background-color: #FFFFFF;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display:none;
    z-index: 201;
}
#cajAvi h2{
    font-family: 'fontLight';
    font-size: 1.4em;
    font-weight: normal;
    color: #0085CC;
    width: 90%;
    text-align: center;
    margin: 0px;
    padding: 40px 5% 0px 5%;
}
#cajAvi p{
    color: #000000;
    width: 90%;
    text-align: center;
    padding: 5%;
}
#cajAvi p a{
    color: #0085CC;
}
input[type="text"], select{
    width: 86%;
    margin: 0px 5% 10px 5%;
    margin-top: 4px;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    color: #000000;
    resize: vertical;
    display: block;
}
 select{
    width: calc(90% + 2px);
    margin: 0px 5% 10px 5%;
    margin-top: 4px;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    color: #000000;
    resize: vertical;
    display: block;
}
textarea{
    width: 86%;
    min-height: 110px;
    margin: 0px 5% 10px 5%;
    margin-top: 4px;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    color: #000000;
    resize: vertical;
    display: block;
}
#cajAvi .btn{
    width: 90%;
    margin-left: 5%;
    color: #FFFFFF;
    background-color: #0085CC;
    border: none;
    transition: all .5s;
}
#cajAvi .btn:hover, #cajAvi .btn:focus{
    opacity: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5) !important;
    background-color: #0085CC;
    color: #FFFFFF;
}
.btnOkStandar{
    position: absolute;
    bottom: 20px;
    width: 150px;
    height: 35px;
    border: 1px solid #0085CC;
    background-color: #0085CC;
    color: #FFFFFF;
    transition: all .5s;
}
.btnOffStandar{
    position: absolute;
    bottom: 20px;
    width: 150px;
    height: 35px;
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #666666;
    transition: all .5s;
}
.btnOkStandar:hover, .btnOkStandar:focus, .btnOffStandar:hover, .btnOffStandar:focus{
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .5);
}
#btnOffAvi{
    left: 50px;
}
#btnOnAvi{
    right: 20px;
}
/* ==========================================================================
   AVISO SUPERIOR
   ========================================================================== */
#mensajeAviso{
    position: fixed;
    top: -80px;
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    opacity: .8;
    text-align: center;
    border-bottom: 1px solid #000000;
    z-index: 1500;
    padding: 15px 0px;
    font-size: 1em;
    color: #FFFFFF;
    -webkit-box-shadow: rgba(0, 0, 0, .3) 2px 2px 3px 0px;
    -moz-box-shadow: rgba(0, 0, 0, .3) 2px 2px 3px 0px;
    -ms-box-shadow: rgba(0, 0, 0, .3) 2px 2px 3px 0px;
    -o-box-shadow: rgba(0, 0, 0, .3) 2px 2px 3px 0px;
    box-shadow: rgba(0, 0, 0, .3) 2px 2px 3px 0px;
    display: block;
}
/* ==========================================================================
   AVISO LEGAL
   ========================================================================== */
#txtInfo{
    position: relative;
    padding-top: 100px;
    width: 100%;
    min-height: 500px;
    color: #000000;
    background-color: #FFFFFF;   
    z-index: 3;
}

#txtInfo canvas{
    width: 100%;
    margin: 0px;
    height: 15px;
    background-color: #183a5c;
    display: none;
}
#txtInfo img{
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    pointer-events: none;
    user-select: none;
    /*display: none;*/
}
#txtInfo .marca{
    width: 140px;
    height: auto;
    margin-top: 0px;
    margin-bottom: 40px;
    /*display: none;*/
}

#txtInfo section {
    left: 50%;
    width: 90%;
    max-width: 720px;
    padding: 0px 5% 150px 5%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #FFFFFF;
    position: relative;
}
#txtInfo section video{
    width: 100%;
}
#txtInfo section h1{
    font-family: 'fontBold';
    font-weight: normal;
    font-size: 1.8em;
    text-align: center;
}
.txtCenter{
    width: 100%;
    margin: 10px 0px 40px 0px;
    text-align: center;
    display: block;
}
/*#txtInfo section h2{
    font-family: 'fontBold';
    font-weight: normal;
    font-size: 1.2em;
    color: #000000;
    margin-top: 50px;
}*/
#txtInfo section p{
    font-family: 'fontNormal';
    font-weight: normal;
    font-size: 1em;
}
#txtInfo section ul{
    font-family: 'fontNormal';
    margin-left: 5%;
    font-size: 1em;
}
#txtInfo section ul li{
    list-style-type: initial;
}
#txtInfo section strong{
    color: #000000 !important;
    font-weight: normal;
    font-size: 1em;
    font-family: 'fontBold';
}
#txtInfo section a{
    color: #0085CC;
    text-decoration: none;
}
#txtInfo section a:hover{
    color: #FFFFFF;
    background-color: var(--corporativo);
    text-decoration: underline;
}


/* ==========================================================================
   LOGIN
   ========================================================================== */
.forLogin{
    width: 90%;
    margin-left: 5%;
    text-align: left;
    padding-bottom: 40px;
    display: none;
}
.forLogin input{
    width: calc(100% - 32px);
    border: 1px solid #CCCCCC;
    margin: 5px 0px;
    padding: 5px 15px;
    border-radius: 8px;
    display: block;    
}
.forLogin .btnRec{
  position: relative;
  float: right;
  width: fit-content;
  border-radius: 8px;
  padding: 5px 10px;
  margin: 5px 0px;
  border: 1px solid transparent;
  background-color: transparent;
  text-transform: uppercase;
  font-size: .75em;
  font-family: 'fontbold';
}
.forLogin .btnRec:hover{
  color: var(--corporativo);
}
button:hover{
  border-color: var(--auxiliar);
  color: #FFFFFF;
}
.forLogin h3{
    margin: 0px;
    font-family: 'fontLight';
    font-weight: normal;
    font-size: 3.2em;
    text-align: center;
}
.forLogin h3 span{
    padding: 0 20px;
    background-color: var(--corporativo_light);
}
.forLogin em{
    margin: 10px 0px 10px 0px;
    font-size: 1em;
    color: #999999;
    text-align: left;
    font-size: .85em;
    display: block;
}
.forLogin .label{
    color: var(--corporativo_light);
    color: #999;
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
}
.forLogin select{
    /* width: 228px; */
    height: auto;
    /* margin: 40px 0px -20px 0px; */
    padding: 2%;
    text-align: center;
    border: 1px solid var(--corporativo_light);
    color: #000000;
    background-color: #FFFFFF;
    /* display: block; */
}
.forLogin button{
    width: 100%;
}
#infoLogin{
    text-align: center;
    margin-top: 10px;
}

#cajAvi .imgConFon, #cajRes .imgConFon{
    width: 100%;
    pointer-events: none;
}
.fonImgFbk{
    background-image: url(../img/spriteF.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: -200px -289px;
    background-color: rgba(128, 130, 129, .8);
}
.btnMenu .fonImgFbk{ /* ajuste menú */
    margin-top: -65px;
    position: relative;
    top: 37px;
    float: left;
    width: 70px !important;
    height: 70px !important;
    margin-left: 0px;
    margin-right: 0px;
    background-size: 200px;
    background-position: -137px -193px;
}
.imgFbk{
    width: 100%;
}
.divCenter{ 
    position: relative;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
}
#neitFacebookSignInButton,
#neitFacebookSignOutButton {
    margin-top: 20px;
    width: 100%;
    height: auto;
    padding: 6px 0px;
    border: none;
    background-color: #4267B2;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    border-radius: 30px;
    transition: all .5s;
}

#neitFacebookSignInButton:hover,
#neitFacebookSignOutButton:hover {
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, .5);
}

.neitFacebookSignInIcon,
.neitFacebookSignOutIcon {
    width: 40px;
    height: 32px;
    background: url('/img/FB-f-Logo__white_57.png') transparent 5px no-repeat;
    background-size: 50%;
    display: inline-block;
    vertical-align: middle;
}

.neitFacebookSignInText,
.neitFacebookSignOutText {
    padding: 0px 10px;
    font-size: .85em;
    font-family: 'fontBold';   
    display:inline-block;
    vertical-align: middle;
}

#neitGoogleSignInButton,
#neitGoogleSignOutButton {
    margin-top: 20px;
    width: 100%;
    height: auto;
    padding: 8px 0px;
    border: none;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    color: #999999;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}

#neitGoogleSignInButton:hover,
#neitGoogleSignOutButton:hover {
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, .5);
}

.neitGoogleSignInIcon,
.neitGoogleSignOutIcon {
    width: 40px;
    height: 32px;
    background: url('/img/Google-logo.png') transparent 5px no-repeat;
    background-size: 50%;
    display: inline-block;
    vertical-align: middle;
}

.neitGoogleSignInText,
.neitGoogleSignOutText {
    margin-top: 5px;
    padding: 0px 10px;
    font-size: .75em;
    font-family: 'fontNormal';
    text-transform: uppercase;   
    letter-spacing: .1em; 
    display:inline-block;
    vertical-align: middle;
}

#login canvas{
    width: 100%;
    height: 1px;
    margin: 20px 0px;
    background-color: #E5E5E5;
}


.btnOkMinMar{
    width: 100%;
    height: 32px;
    border:  1px solid #E5E5E5;
    color: #999999;
    background-color: transparent;
    font-size: .95em;
    transition: all .5s;
}
.btnOkMinMar:hover, .btnOkMinMar:focus, .btnOkMin:hover, .btnOkMin:focus{
    color: #FFFFFF;
    border-color: #000000;
    background-color: #000000;  
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .5) !important; 
}
.btnOkMin{
    width: 100%;
    height: 42px;
    border: none;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #666666;
    color: #FFFFFF;
    font-family: 'fontNormal';
    font-size: 1.2em;
    transition: all .5s;
}
.btnBlanco {
  padding: 15px 20px;
  margin-right: 20px;
  border-radius: 18px;
  color: #444444;
  background-color: #FFFFFF;
  border: none;
  text-decoration: none;
  display: inline-block;
}
.btnForm {
  padding: 15px 20px;
  margin-right: 20px;
  border-radius: 18px;
  color: #FFFFFF;
  border: none;
  font-family: 'fontBold';
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  user-select: none;
}
.btnBlanco:hover, .btnForm:hover{
  background: var(--auxiliar) !important;
  border-color: var(--auxiliar);
  color: #FFFFFF !important;
}
.btnOffMin{
    width: 100%;
    height: 34px;
    margin-top: 15px;
    border: none;
    background-color: transparent;
    color: #999999;
    font-family: 'fontNormal';
    transition: all .5s;
}
.btnOffMin:hover, .btnOffMin:focus{
    color: var(--corporativo_light);
    background-color: transparent !important;
}
#combNIF{
    color: #FFFFFF;
    width: 100%;
    border-radius: 0px;
    border: 1px solid #000000;
    background-color: #000000;
    padding: 0px 1%;
}
#btnEnt{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    font-family: 'fontNormal';
    font-size: 1.2em;
    color: #FFFFFF;
    border: 1px solid #000000;
    background-color: #000000;
    transition: all .5s;
}
#btnEnt:hover, #btnEnt:focus{
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .5) !important;   
}
/* ==========================================================================
   BUSCAR
   ========================================================================== */
#bloqBus{
    position: fixed;
    width: 100%;
    height: 55px;
    right: 0px;
    background-color: #FFFFFF;
    z-index: 38;
    display: none;
    border-left: 4px solid var(--corporativo);
    text-align: center;
    -webkit-animation: movBus .7s normal;
    animation: movBus .7s normal;
}
@-webkit-keyframes movBus {
    0% {
        right: -80px;
        width: 1px;
    }100%{
        right: 0px;
        width: 100%;
    }
}
@keyframes movBus {
    0% {
        right: -80px;
        width: 1px;
    }100%{
        right: 0px;
        width: 100%;
    }
}

#bloqBus input {
    margin-top: 10px;
    width: 320px;
    height: 32px;
    margin-left: 10%;
    text-align: center;
    font-size: 1.2em;
    border-radius: 0px;
    border: 1px solid #0AA9B6;
}
#bloqBus button{
    width: 20px;
    height: 32px;
    margin-left: 10px;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    font-size: 2em;
    font-family: 'fontLight';
}
/* ==========================================================================
   SHOP ALERTAS
   ========================================================================== */
.ql-align-center {
  text-align: center;
}
.ql-align-justify {
  text-align: justify;
}
.ql-align-right {
  text-align: right;
}
/* ==========================================================================
   FONDOS
   ========================================================================== */
#fondoWeb{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    pointer-events: none;
    display: block;
    z-index: 0;
}
#fondoWeb picture{
    transition: all 2s;
    opacity: 0;
}
#fondoWeb picture img{
    position: fixed;
    left: 50%;
    top: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;    
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    transition: all 1.5s;
}
/* ==========================================================================
   FONDO VÍDEO
   ========================================================================== */
#textura{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/textura.png);
    background-repeat: repeat;
    background-position: 0px 0px;
}
#multimediaContent{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );
    display: block;
    overflow: hidden;
}
#multimediaContent .videoHome{ /* vídeos */
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
    opacity: 1;
}
#multimediaContent .videoHome:-webkit-full-screen {
    top: 0%;
    left: 0%;
    -webkit-transform: translateX(0%) translateY(0%);
    -ms-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%);
    width: 100%;
    height: 100%;
}
#multimediaContent .videoHome:-moz-full-screen {
    top: 0%;
    left: 0%;
    -webkit-transform: translateX(0%) translateY(0%);
    -ms-transform: translateX(0%) translateY(0%);
    transform: translateX(0%) translateY(0%);
    width: 100%;
    height: 100%;
}
/* activar para vidSpot */
#multimediaContent section{ 
    display: none;
}
/* ==========================================================================
   MENÚ
   ========================================================================== */
#btnMovil{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 75px;
    background-image: url(../img/recursos/fonMov.png);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: 0px 0px;
    cursor: pointer;
    display: block;
    transition: all .5s;
    z-index: 39;
}
#btnMovil:hover{
    background-size: 105px;
    width: 105px;
}
#bloqMov{
    position: fixed;
    top: 8px;
    left: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: transparent;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: -26px -24px;
    border-radius: 50%;
    border: none;
    padding: 0px;
    z-index: 40;
}
.btnMov{
    background-color: rgba(0,133,204,.8) !important;
}
#btnCestaMov{
    position: fixed;
    top: 8px;
    right: 68px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .2);
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: -87px -220px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    padding: 0px;
    display: none;
    z-index: 40;
}
.btnMov{
    background-color: rgba(0,133,204,.8) !important;
}
nav {
    top: 0px;
    right: 0px;
    width: auto;
    height: 100%;
    z-index: 10;
}

#fonMen{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );

    opacity: .8;
    transition: all .8s;
    display:none;
    z-index: 37;
    -webkit-animation: movOpa 1s normal;
    animation: movOpa 1s normal;
}
@-webkit-keyframes movOpa {
    0% {
        background-color: rgba(0, 0, 0, 0);
    }100%{
        background-color: rgba(0, 0, 0, .5);
    }
}
@keyframes movOpa {
    0% {
        background-color: rgba(0, 0, 0, 0);
    }100%{
        background-color: rgba(0, 0, 0, .5);
    }
}

#bloqMenu{
    position: fixed;
    top: 20px;
    left: 20px; /* 280px */
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background-color: #FFFFFF;
    box-shadow: 10px 0px 15px rgba(0, 0, 0, .5);
    transition: all .5s;
    text-align: center;
    overflow-y: auto;
    display: none;
    opacity: 1;
    z-index: 38;
}
#bloqMenu a{
    display: block;
}
#bloqMenu .marca {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    margin-left: calc(50% - 40px);
    display: block;
    width: fit-content;
}
#bloqMenu .scroller_alpha {
    position: fixed;
    left: 20px;
    bottom: 19px;
    width: calc(100% - 40px);
    height: 40px;
    background-image: url(../img/recursos/degradado.png);
    background-repeat: repeat-x;
    background-size: 100px;
    background-position: 0px 0px;
    pointer-events: none;
    z-index: 90000;
    /* background: red; */
}
/*nav:hover #bloqMenu, nav:focus #bloqMenu{
    left: 328px;
    opacity: 1;
}*/
#bloqMenu img{
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}
#bloqMenu ul {
    width: 230px;
    display: inline-block;
    margin-bottom: 80px;
}
#bloqMenu ul li{
    font-family: 'fontLight';
    font-size: 1.4em;
    text-align: left;
    margin-bottom: 0px;
    padding: 5px 0px;
    transition: all .5s;
    cursor: pointer;
    display: block;
}
#bloqMenu ul li a{
    font-family: 'fontLight';
    color: #000000;
    text-decoration: none;
    letter-spacing: 0em;
    transition: all .5s;
    display: block;
}

#bloqMenu ul li:hover, #bloqMenu ul li a:hover{
    color: #0085CC;
}
#bloqMenu ul li a:hover{
    padding-left: 10px;
}
#bloqMenu ul a.btnMenAct{
    opacity: 1 !important;
    color: var(--corporativo);
    text-decoration: line-through;
}
#bloqMenu ul .btnMenAct{
    color: #0085CC;
    text-decoration: line-through;
}
.subMenu{
    /*margin: 5% 0% 5% 10%;*/
    margin: 0% 0% 0% 10% !important;
    /*overflow: hidden;*/
    max-height: 0;
    transition: all 1s;
}
.subMenu .btnMenu a{
    font-size: .6em;
}
.btnMenu .pagos {
    width: 170px;
    height: auto;
    pointer-events: none;
    opacity: .5;
}
#menAux a{
    font-family: 'fontLight';
    color: #000000;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 1em;
}
#legal{
    margin-top: 20px;
    
}
#legal a{
    font-family: 'fontNormal';
    color: #999999;
    letter-spacing: 0em;
    transition: all .5s;
    font-size: .65em;
    text-align: left;
    text-transform: uppercase;
    display: block;
}
#legal a:hover{
    color: #0085CC;
    text-decoration: underline;
}
#legal span{
    color: #CCCCCC;
    margin: 0px 5px;
}
.linkAct, .btnMenAct{
    text-decoration: line-through;
    opacity: .5;
    pointer-events: none;
}
#menSoc {
    position: absolute;
    top: 10px;
    right: 0px;
    width: auto;
    height: 60px;
    font-size: .70em;
    text-align: center;
    transition: all .5s;
    /* background: rgba(0,133,204,1); */
    /* background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%); */
    /* background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1))); */
    /* background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%); */
    /* background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%); */
    /* background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%); */
    /* background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%); */
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 ); */
    /* -moz-box-shadow: inset 2px 0px 5px rgba(0, 0, 0, .3); */
    /* -webkit-box-shadow: inset 2px 0px 5px rgba(0, 0, 0, .3); */
    /* box-shadow: inset 2px 0px 5px rgba(0, 0, 0, .3); */
    /* overflow: hidden; */
    z-index: 35;
    /* display: none; */
}
#tela{
    position: fixed;
    top: 0px;
    right: 0px;
    width: 130px;
    height: 100%;
    background-image: url(../img/recursos/texturaTela.png);
    background-repeat: repeat-y;
    background-size: 35px;
    background-position: 0px 0px;
    pointer-events: none;
    z-index: 101;
}

/* botón mostrar menú con el logo */
#desMen{ 
    background-color: transparent;
    width: 100%;
    height: 88px;
    padding-top: 14px;
    margin-bottom: 0px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .5s;
    display: block;
}
#desMen canvas{
    width: 50px;
    height: 50px;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 310px;
    background-position: -50px -175px;
    margin: -7px 0px 7px 37px;
    padding: 0px;
    display: block;
}
#desMen:hover{
    color: #999999;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}
#desMen:hover canvas{
    background-position: 0px -175px;
}
/**/
#menSoc .btnMenSoc, #menSoc .btnMenSocIni {
    /* width: 90%; */
    height: 45px;
    margin: 0px 10px;
    /*padding-top: 10px;*/
    /* margin-left: 10%; */
    display: inline-block;
}

#menSoc .btnMenSocAct{
    background-color: rgba(0, 0, 0, .1);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, .2);
}
#menSoc .btnMenSoc a, #menSoc .btnMenSocIni a{
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    transition: all .5s;
    display: block;
}
#menSoc .btnMenSoc:hover a, #menSoc .btnMenSocIni:hover a{
    color: #000000;
}
#menSoc .btnMenSoc canvas, #menSoc .btnMenSocIni canvas{
    width: 30px;
    height: 30px;
    margin: 0px;
    padding: 0px;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
    display: inline-block;
}
#menSoc .btnMenSoc .inf, #menSoc .btnMenSocIni .inf {
    position: relative;
    font-size: 1em;
    width: 20px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background-color: #C00;
    text-align: center;
    padding-top: 4px;
    top: -8px;
    left: 4px;
    margin-top: -23px;
    opacity: 0;
    /* text-align: center; */
    color: #FFF;
    font-weight: bold;
    line-height: 1.2em;
}
#menSoc .btnMenSoc p, #menSoc .btnMenSocIni p{
    font-size: 2.3em;
    padding: 0px;
    margin: 0px;
}
#menSoc .btnMenSoc span, #menSoc .btnMenSocIni span{
    opacity: .5;
    transition: all .5s;
    display: flex;
  align-items: center;
}
#menSoc .btnMenSoc:hover span, #menSoc .btnMenSoc:focus span, #menSoc .btnMenSocIni:hover span, #menSoc .btnMenSocIni:focus span{
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 1.0);
}

#bloqImgFbk {
    position: relative;
    width: 28px;
    height: 28px;
    left: calc(50% - 14px);
    top: -8px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .3);
    margin: 0px 0px 0px 0px;
    overflow: hidden;
    transition: all .5s;
    display: block;
}
#bloqImgFbk:hover, #bloqImgFbk:focus{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0);
}
#bloqImgFbk figure{
    width: 100%;
    height: 100%;
    margin: 0px;
}
#bloqImgFbk figure img{
    max-width: 100%;
    min-height: 100%;
}
#bloqImgFbk .imgFbk {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #FFFFFF;
  margin: 0px;
  padding: 3px 0px;
}
#bloqImgFbk .imgFbk img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
}
#bloqImgFbk .imgFbk span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0px;
    z-index: 1;
    opacity: 1;
    text-align: center;
    display: block;
    font-size: 1.5em;
}

/* Redes */
#menAux{
    margin-top: 20px;
    transition: all .5s;
}
#redesMenu{
    position: relative;
    margin-left: -38px;
    transition: all 1s;
}
.btnInfo{
    width: 30px;
    height: 30px;
    padding: 15px;
    background-color: transparent;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
    border: 1px solid transparent;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    transition: all .5s;
}
.btnInfo:hover, .btnInfo:focus{
    /*border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.3);*/
    opacity: .3 !important;
}
#btnMap{
    background-position: -240px 0px;
}
#btnTel{
    background-position: -210px 0px;
}
#btnWhat{
    background-position: -150px 0px;
}
#btnMai{
    background-position: -180px 0px;
}
#btnFbk{
    background-position: -60px 0px;
}
#btnIns{
    background-position: -90px -30px;
}
#btnTwi{
    background-position: -120px -30px;
}
#btnYou{
    background-position: -150px -30px;
}
#btnHou{
    background-position: -180px -30px;
}

#btnMut{
    background-position: -240px -30px;
}
#btnPin{
    background-position: -270px -30px;
}
#redesCentrado{
    position: relative;
    left: 50%;
    display:inline-flex !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 50px;
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer{
    position: fixed;
    bottom: 0px;
    width: 92%;
    min-height: 310px;
    padding: 70px 4% 30px 4%;
    z-index: 0;
}
footer > div {
    width: 50%; /* Ajusta el ancho según tus necesidades */
    display: inline-block;
    vertical-align: top;
}

footer > div:nth-child(2) {
    text-align: right;
}
footer li{
    margin: 6px 0px;
    color: #FFFFFF;
    font-size: 1.2em;
}
footer a{
    color: #FFFFFF;
    transition: all .5s;
}
footer a:hover{
    padding-left: 10px;
    text-decoration: line-through;
    opacity: .7;
}
footer > div:nth-child(2)  a:hover{
    padding-left: 0px;
    padding-right: 10px;
}
footer li .subMenu{
    margin: 5px 0% 30px 20px !important;
    max-height: 500px;
}
footer li .subMenu .btnMenu a{
    font-size: .7em;
}
footer .info{
    font-size: .85em;
}
footer .info_payment{
    margin-top: 160px;
}
/* ==========================================================================
   CUADRO HOME - LISTADOS
   ========================================================================== */
#cuaHom {
    position: absolute;
    top: 12px;
    left: 50%;
    /* width: 100%; */
    /* max-width: 690px; */
    z-index: 5;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#cuaHom h1{
    margin: 0px;
    padding: 0px;
    font-family: 'fontLight';
    font-size: 2.2em;
    font-weight: normal;
    color: #000000;
    display: block;
}
#cuaHom p{
    margin: -10px 0px 20px 0px;
    padding: 0px;
    font-family: 'fontLight';
    font-size: 1em;
    font-weight: normal;
    color: #000000;
    display: block;
}
#cuaHom h2{
    margin: 0px 0px 10px 0px;
    padding: 0px;
    font-family: 'fontBold';
    font-size: .9em;
    font-weight: normal;
    color: #000000;
    display: block;
}
#cuaHom .btnRepCom{
    width: calc(100% - 10px);
    margin-bottom: 20px;
    margin-left: 2px;
    padding: 5px 0px;
    color: #FFFFFF;
    border: 1px solid #0085CC;
    background-color: #0085CC;
    transition: all .5s;
    display: block;
}
#filtro {
    width: 549px;
    /* max-width: 650px; */
    padding: 0px .5px;
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );
}
#filtro [name="selMod"]{
    width: calc(100% - 1px);
}
.cheCol {
    width: 182px;
    font-size: .9em;
    border: none;
    background-color: #FFFFFF;
    color: #000000;
    padding: 7px 7px;
    /* margin: 2px 0px; */
    transition: all .5s;
    display: inline-block;
    text-align: center;
    margin: 1px .5px;
}
.cheCol:hover{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5) !important;
}
.cheCol .btnAct{
    color: #FFFFFF;
    border-color: rgba(0, 133, 204, 1);
    background-color: rgba(0, 133, 204, 1);
}
.cheCol .btnAct:hover{
    background-color: #CCCCCC;
    border-color: #CCCCCC;
}
#bloqAle{
    position: relative;
    margin-top: 0px;
    margin-left: .5%;
    width: 99%;  
    margin-bottom: 40px;
    border-radius: 16px;
    border: 1px solid rgba(15, 186, 172, 1);
    color: #FFFFFF;
}
#bloqAle h2{
    font-size: 2em;
}
#bloqAle h3{
    font-size: 1.6em;
}
#bloqAle h4{
    font-size: 1.3em;
}
#bloqAle h5{
    font-size: 1.1em;
}
#bloqAle h6{
    font-size: .9em;
}
#bloqAle p{
    text-align: center;
    color: #FFFFFF;
    font-family: 'fontLight';
    padding: 0px 20px;
    font-size: 1.2em;
}
/* ==========================================================================
   LISTADO ARTÍCULOS
   ========================================================================== */
.degradado{
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );
    transition: background 0.5s;
}
#listArt{
    position: relative;
    padding-top: 100px;
    width: 100%;
    min-height: 500px;
    background-color: #FFFFFF;
    padding-bottom: 250px;
    z-index: 3;
}
.tela{
    position: relative;
    width: 100%;
    height: 35px;
    background-image: url(../img/recursos/texturaTelaV.png);
    background-repeat: repeat-x;
    background-size: 300px;
    background-position: 0px 0px;
    margin-bottom: 450px;
    padding-bottom: 35px;
    pointer-events: none;
    z-index: 2;
}
.recorte_papel {
  position: relative;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  margin-bottom: -35px;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.ruta {
    margin: 0px;
    padding: 0px;
    top: -20px;
    left: 20px;
    width: fit-content;
    position: relative;
    color: #666666;
    font-family: 'fontLight';
    font-size: 1.4em;
    user-select: none;
}
.ruta a{
    color: #666666;
    transition: all .5s;
}
.ruta a:hover{
    color: var(--corporativo);
    text-decoration: line-through;
}
.ruta a:nth-child(2):hover{
    margin-left: 5px;
}
#listArt .titBus{
    width: 90%;
    margin: 0px;
    padding: 0px;
    font-family: 'fontLight';
    font-size: 1.4em;
    font-weight: normal;
    color: #000000;
    display: block;
    left: 15px;
    position: relative;
    color: rgba(0, 133, 204, 1);
    display: block;
}
.artListado {
    position: relative;
    width: calc(19% - 2px);
    margin: .5%;
    overflow-y: hidden;
    vertical-align: top;
    border: 1px solid transparent;
    /*border-bottom: 1px solid #CCCCCC;*/
    background-color: #FFFFFF;
    transition: all .5s;
    display: inline-block;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.artListado:hover, .artListado:focus{
    /*border-color: rgba(0, 133, 204, .2);*/
    /*box-shadow: 0px 10px 8px -6px rgba(0, 0, 0, .3);*/
}
.artListado .artDet {
    position: absolute;
    bottom: 26px;
    left: 0px;
    width: 100%;
    z-index: 6;
}
.artListado .artDet .verFic {
    position: relative;
    /* top: -45px; */
    left: 0px;
    text-align: center;
    padding: 10px 25px;
    color: #000000;
    border: none;
    font-size: 1em;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    display: block;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.artListado:hover .artDet .verFic, .artListado:focus .artDet .verFic{
    top: 0px;
    opacity: 1;
    visibility: visible;
}
.artListado .artDet .verFic .info{
    /* position: relative; */
    /* bottom: 0px; */
    /* position: absolute; */
    /* left: 0px; */
    /* width: 100%; */
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8%;
    /* border-top-right-radius: 8px; */
    margin-bottom: 15px;
    transition: all .5s;
}
.artListado .artDet .verFic .info_txt{
    color: var(--corporativo);
    transition: all .5s;
}

.artListado .artDet .verFic:hover .info{
    box-shadow: 0px 10px 20px rgba(0,0,0,.5);
}
.artListado .artDet .verFic:hover .info_txt{
    letter-spacing: .1em;
}
.anadirCesta {
    position: relative;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding: 10px 25px;
    margin-top: 5px;
    color: #FFFFFF;
    border: none;
    background-color: rgba(255, 255, 255, 1);
    font-size: 1em;
    /* text-transform: uppercase; */
    visibility: hidden;
    opacity: 0;
    display: block;
    height: 80px;
    border-radius: 8px;
    font-size: 1.4em;
    transition: all .5s;
}

.artListado:hover .artDet .anadirCesta, .artListado:focus .artDet .anadirCesta{
    top: 0px;
    opacity: 1;
    visibility: visible;
}
.anadirCesta:hover{
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(-135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );
    letter-spacing: .1em;
    box-shadow: none;
    z-index: 10;
}

.artListado .artImg{
    position: relative;
    margin: 0px 0px 0px 0px;
    width: 100%;
    z-index: 2;
}
.artListado .artImg img{
    width: 100%;
    height: auto;
    transition: all .5s;
}
.artListado:hover .artImg img, .artListado:focus .artImg img{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: .5;
}
.artListado .img_detalle{
    position: relative;
    float: right;
    width: 150px;
    height: 150px;
    top: -150px;
    margin-bottom: -150px;
    border-radius: 18px 18px 0px 0px;
    border: 1px solid #FFFFFF;
    pointer-events: none;
    z-index: 2;
}
.artListado:hover .img_detalle, .artListado:focus .img_detalle{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: .5;
}
.artListado .artTextos{
    position: relative;
    padding: 20px 0px 30px 0px;
    z-index: 4;
}
.eco {
    position: absolute;
    right: 10px;
    width: 36px;
    height: 36px;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 284px;
    background-position: -198px -240px;
    background-color: transparent;
    pointer-events: none;
    opacity: .8;
    top: 63%;
    z-index: 5;
}

.artListado .artTextos .artImp{
    position: relative;
    width: 110px;
    margin: -36px 0px 8px calc(100% - 100px);
    padding: 6px 0px 0px 0px;
    text-align: center;
    font-size: 1.4em;
    font-weight: normal;
    background-color: rgb(255, 255, 255);
    border-radius: 0px 0px 0px 0px;
    border-top: 1px solid rgba(0, 133, 204, 1);
    box-shadow: 3px -7px 5px rgba(0,0,0,.2);
    transition: all .5s;
    display: block;
    z-index: 1;    
}
.artListado:hover .artTextos .artImp, .artListado:focus .artTextos .artImp{
    margin: -17px 0px -12px calc(100% - 100px);
    opacity: 0;
    visibility: hidden;
}

.artListado .artTextos .artUni{
    font-family: 'fontNormal';
    font-size: 1.2em;
    font-weight: normal;
    color: #000000;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}
.artListado .artTextos .artNom{
    font-family: 'fontNormal';
    font-size: .9em;
    font-weight: normal;
    color: #666666;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}
.artListado .artTextos .artNom .precio{
    color: var(--corporativo);
    display: block;
    font-size: 1.2em;
    margin-top: 8px;

}
.artListado .artTextos .artNom .precio .sin_dto{
    text-decoration: line-through;
    color: #CC0000;
    margin-right: 5px;
}
/* ==========================================================================
   FICHA
   ========================================================================== */
#ficha{
    position: relative;
    margin-top: 0px;
    width: calc(100% - 130px);
}
#ficha{
    position: relative;
    padding-top: 100px;
    width: 100%;
    min-height: 500px;
    color: #000000;
    background-color: #FFFFFF;   
    z-index: 3;
}

#ficha .detFicha {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #FFFFFF;
}
#ficha .detFicha .subTit {
    width: calc(50% - 1px);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-family: 'fontBold';
    background: #E5E5E5;
    border-radius: 16px;
    font-size: 1.5em;
    line-height: .8em;
    margin-top: 8px;
}
#ficha .detFicha .subTit .sin_dto{
    color: #CC0000;
    font-size: .75em;
    font-family: 'fontLight';
    display: block;
    margin-bottom: 10px;
    text-decoration: line-through;
}
#ficha .detFicha .subTit .unidad{
    color: #666666;
    font-family: 'fontLight';
    font-size: .5em;
}
#ficha .detFicha .textos .anadirCesta {
    visibility: visible;
    opacity: 1;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    height: 70px;
}
div[name="modulo_pago"]{
    font-size: .85em;
    text-align: center;
    opacity: .5;
}
div[name="modulo_pago"] p:nth-child(1){
    margin-top: 7px;
    margin-bottom: 0px;
}
div[name="modulo_pago"] #infEnv p{
    margin-top: 2px;
}
.col2 > *{
    width: calc(50% - 1px);
    height: auto;
    margin: 0px;
    border-radius: 0px;
    vertical-align: top;
    display: inline-block;
}
.col2 img{
    pointer-events: none;
    user-select: none;
    vertical-align: top;
}
.bloqPVP{
    background-color:#E5E5E5;
    border-radius:16px;
}
.col2 > :nth-child(1){
    margin-right: 1px;
}
.col2 > :nth-child(2){
    margin-left: 0px;
    border-radius: 18px;
}
.col2 img:nth-child(2){
    margin-left: 0px;
    border-radius: 0px 18px 0px 0px ;
}
#ficha .textos h1{
    font-family: 'fontLight';
    font-size: 2.3em;
    font-weight: normal;
    color: var(--corporativo);
    padding: 0px;
    margin: 0px 0px 30px 0px;
}
#ficha .textos h2, #txtInfo h2{
    font-family: 'fontNormal';
    font-size: .85em;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--auxiliar);
    margin-top: 40px;
    margin-bottom: -10px;
}
#ficha p{
    font-size: 1.1em;
}
#ficha .textos .eco{
    position: relative;
    width: 40px;
    height: 40px;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: -261px -252px;
    background-color: transparent;
    margin: 40px 0px -35px 7px;
    display: block;
}
.pc{
    display: block;
}
.mov{
    display: none;
}
#ficha .titAux{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 120px;
}
#ficha .titAux h3{
    font-family: 'fontNormal';
    font-weight: normal;
    font-size: .85em;
    color: var(--auxiliar);
    text-transform: uppercase;
}
#ficha .titAux p{
    font-size: .95em;
}
#ficha .titAux .artListado{
    width: 320px;
}
#ficha .titAux .artTextos h2{
    margin-top: 10px;
    text-align: left;
}
#ficha .titAux .artTextos p{
    text-align: left;
}
/*
#ficha .titAux p{
    font-family: 'fontNormal';
    font-size: .85em;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--auxiliar);
}
#ficha .titAux ul{

}
#ficha .titAux ul li{
    width: 26%;
    margin: 2%;
    display: inline-block;
}
#ficha .titAux ul li img{
    width: 100%;
    height: auto;
}*/
#ficha .art{
    width: 100%;
    display: block;
}
#ficha .art .multimedia{
    width: calc(100% - 520px);
    vertical-align: top;
    display: inline-block;
}
#ficha .art .textos{
    width: 420px;
    padding: 0px 50px;
    vertical-align: top;
    display: inline-block;
}
#ficha .art .tela {
    transform: scaleY(-1);
    padding: 0px;
    margin: 0px;
    position: relative;
    top: -35px;
}
/*
#bloqImg{
    position: fixed;
    z-index: 2;
}

#bloqImg .max{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 45%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}
#bloqImg .max img{
    min-height: 100%;
    min-width: 100%;
}


#ficha article{
    position: absolute;
    top: 0px;
    left: calc(45% + 58px);
    width: 100%;
    max-width: 410px;
    background-color: #FFFFFF;
    box-shadow: 2px 2px 5px rgba(0,0,0,.5);
    z-index: 2;
}
#ficha article .det{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 340px;
    overflow: hidden;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 133, 204, 1);
    display: block;
    z-index: 1;
}
#ficha article .det img{
    height: auto;
    width: 100%;
}
#ficha article .info{
    padding: 20px 20px 20px 20px;
}
#ficha article .info h1{
    font-family: 'fontLight';
    font-size: 1.8em;
    font-weight: normal;
    color: #000000;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}
#ficha article .subTit{
    font-family: 'fontLight';
    font-size: 1.4em;
    font-weight: normal;
    color: rgba(0, 133, 204, 1);
    padding: 0px;
    margin: 0px 0px 0px 0px;
}
#ficha article .eco{
    width: 40px;
    height: 40px;
    background-image: url(../img/spriteC.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: -210px -252px;
    background-color: transparent;
    margin-bottom: 0px;
    display: block;
}
#ficha article h2{
    font-family: 'fontLight';
    font-size: 1em;
    font-weight: normal;
    color: #999999;
    padding: 0px;
    margin: 20px 0px 0px 0px;
}
#ficha article p{
    text-align: justify;
    font-size: 1em;
    font-weight: normal;
    color: #000000;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}
#ficha article canvas{
    margin: 10px 0px 60px 0px;
    padding: 0px;
    width: 100%;
    height: 1px;
    background-color: #999999;
}
#ficha article .titAux{
    font-family: 'fontLight';
    font-size: 1.2em;
    font-weight: normal;
    color: #999999;
    text-align: center;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}
#ficha article ul{
    margin-top: 10px;
    padding-bottom: 90px;
    width: 100%;
}
#ficha article ul li{
    width: 50%;
    margin: 10px 0px;
    vertical-align: top;
    display: inline-block;
}
#ficha article ul li a img{
    width: 100%;
    height: auto;
}
#ficha article ul li a .pvp{
    font-family: 'fontBold';
    font-size: 1.4em;
    text-align: center;
}
#ficha article ul li a .uni{
    text-align: center;
    font-size: .85em;
    color: #999999;
}*/
.btnStandar{
    width: 100%;
    padding: 5px 0px;
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 133, 204, 1);
    border-radius: 0px;
    transition: all .5s;
}
.btnStandar:hover, .btnStandar:focus{
    background-color: rgba(0, 133, 204, 1);
    color: #FFFFFF;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .8);
}
/*
.anadirCesta{
    width: 100%;
    padding: 5px 0px;
    color: #FFFFFF;
    background-color: rgba(0, 133, 204, 1);
    border: 1px solid rgba(0, 133, 204, 1);
    border-radius: 0px;
    transition: all .5s;
}
.anadirCesta:hover, .anadirCesta:focus{
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .8);
}
.anadirCesta .detImp{
    font-size: 1.4em;
}

@-webkit-keyframes movBtnCes {
    0% {
        border-color: rgba(0, 133, 204, 1);
    }50%{
        border-color: rgba(0, 133, 204, .2);
    }100%{
        border-color: rgba(0, 133, 204, 1);
    }
}
@keyframes movBtnCes {
    0% {
        border-color: rgba(0, 133, 204, 1);
    }50%{
        border-color: rgba(0, 133, 204, .2);
    }100%{
        border-color: rgba(0, 133, 204, 1);
    }
}*/
/* ==========================================================================
   SOCIOS PERFIL
   ========================================================================== */
.bloqForm{
    position: relative;
    width: 540px;
    height: auto;
    padding: 80px 50px 30px 150px;
    color: #000000;
}
.bloqForm h1{
    width: 73%;
    color: #000000;
    font-size: 2.3em;
    font-family: 'fontLight';
    font-weight: normal;
    margin: 0px;
}
.bloqForm h2{
    width: 73%;
    color: #0085CC;
    font-size: 1.5em;
    font-family: 'fontLight';
    font-weight: normal;
    margin: 20px 0px 30px 0px;
}
.bloqForm h3{
    color: #0085CC;
    font-size: 1em;
    font-family: fontLight;
    font-weight: normal;
    border-left: 1px solid #0085CC;
    margin: 0px 0px 10px 0px;
    padding-left: 10px;
}
.bloqForm h4{
    color: #999999;
    font-weight: normal;
    font-family: 'fontLight';
    margin: 20px 0px 0px 0px;
}
.bloqForm .logo{
    float: right;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #FFFFFF;
    overflow: hidden;
    border: 4px solid transparent;
    transition: all .5s;
}


.bloqForm .logo img{
    width: 100%;
    height: auto;
    transition: all .5s;
}
.bloqForm .logo:hover img{
    width: 104%;
    margin-top: -2%;
    margin-left: -2%;
}
.bloqForm form{
    width: 100%;
    height: auto;
    
}
.bloqForm form .bloq{
    width: 90%;
    padding: 4% 5%;
    background-color: #FFFFFF;
    margin: 0px;
    border-bottom: 1px solid #0085CC;
    display: block;
}
.bloqForm form .bloq img{
    width: 100%;
    height: auto;
}
.bloqForm form .bloq iframe{
    width: 100%;
    height: 274px;
}
.bloqForm form .bloq button{
    margin-top: -10px;
    display: block;
}
.txtMap{
    text-align:left;
    font-size: 1em; 
    margin-top: 20px !important; 
    margin-bottom:20px; 
    height:auto;
    display: block;
}
.bloqForm form .separacion{
    width: 90%;
    height: 20px;
    background-color: rgba(0, 133, 204, .1);
    margin: 0px 0px 0px 5%;
}
.bloqForm form input{
    width: 100%;
    margin: 4px 0px;
    border: none;
    color: #000000;
    display: block;
}
.bloqForm form input[type="checkbox"]{
    width: auto;
    margin: 20px 5px 2px 0px;
    display: inline-flex;
}

.bloqForm ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #0085CC;
}
.bloqForm ::-moz-placeholder { /* Firefox 19+ */
  color: #0085CC;
}
.bloqForm :-ms-input-placeholder { /* IE 10+ */
  color: #0085CC;
}
.bloqForm :-moz-placeholder { /* Firefox 18- */
  color: #0085CC;
}

.bloqForm form .first{
    font-size: 1.2em;
    font-family: 'fontBold';
    margin-bottom: 20px;
}
.bloqForm form .firstSmall{
    font-family: 'fontBold';
}
.bloqForm form .cif{
    width: 70px;
    display: inline-block;
}
.bloqForm form .letraCif{
    width: 60%;
    display: inline-block;
    text-transform: uppercase;
}
.bloqForm form textarea{
    width: 96%;
    min-height: 110px;
    margin: 4px 0px;
    padding: 2%;
    border: 1px solid #CCCCCC;
    color: #000000;
    resize: vertical;
    display: block;
}
.bloqForm .bloqBtn{
    margin-top: 10px;
    width: 100%;
    text-align: left;
}
.bloqForm .bloqBtn button{
    width: 100%;
    height: 42px;
    color: #FFFFFF;
    background-color: #0085CC;
    border: none;
    transition: all .5s; 
}

.bloqForm .bloqBtn .btnSec{
    width: 49.5%;
    opacity: .5;
}
.bloqForm .bloqBtn button:hover, .bloqForm .bloqBtn button:focus{
    opacity: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5) !important;
    background-color: #0085CC;
    color: #FFFFFF;
}
.bloqForm .info{
    padding: 3%;
    font-size: .85em;
    background-color: #DDDDDD;
    color: #666666;
}
/* Listado facturación */
#bloqSocPer ul{
    margin: 0px !important;
}
#bloqSocPer .linFac li{
    margin: 10px 0px;
    padding: 10px;
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );
    transition: background 0.5s;
    text-align: center;
    border-radius: 18px;
    transition: all .5s;
    display: block;
}
#bloqSocPer .linFac li:hover{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
}
#bloqSocPer .linFac li .idFac{
    margin: 0px 0px 5px 0px;
    color: rgba(255,255,255, .9);
    font-size: 1em;
    font-family: 'fontNormal';
}
#bloqSocPer .linFac li .tot{
    margin: 0px;
    color: #FFFFFF;
    font-size: 1.4em;
    font-family: 'fontBold';
}
/* ==========================================================================
   VENTA AL POR MAYOR
   ========================================================================== */
#bloqSocPer{
    position: relative;
    width: 540px;
    height: auto;
    padding: 80px 50px 30px 150px;
    color: #000000;
}
#bloqSocPer h1{
    width: 73%;
    color: #000000;
    font-size: 2.3em;
    font-family: 'fontLight';
    font-weight: normal;
    margin: 0px;
}
#bloqSocPer h2{
    width: 73%;
    color: #0085CC;
    font-size: 1.5em;
    font-family: 'fontLight';
    font-weight: normal;
    margin: 20px 0px 30px 0px;
}
#bloqSocPer h3{
    color: #0085CC;
    font-size: 1em;
    font-family: fontLight;
    font-weight: normal;
    border-left: 1px solid #0085CC;
    margin: 0px 0px 10px 0px;
    padding-left: 10px;
}
#bloqSocPer h4{
    color: #999999;
    font-weight: normal;
    font-family: 'fontLight';
    margin: 20px 0px 0px 0px;
}
#bloqSocPer .logo{
    float: right;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #FFFFFF;
    overflow: hidden;
    border: 4px solid transparent;
    transition: all .5s;
}


#bloqSocPer .logo img{
    width: 100%;
    height: auto;
    transition: all .5s;
}
#bloqSocPer .logo:hover img{
    width: 104%;
    margin-top: -2%;
    margin-left: -2%;
}
#bloqSocPer form{
    width: 100%;
    height: auto;
    
}
#bloqSocPer form .bloq{
    width: 90%;
    padding: 4% 5%;
    background-color: #FFFFFF;
    margin: 0px;
    border-bottom: 1px solid #0085CC;
    display: block;
}
#bloqSocPer form .bloq img{
    width: 100%;
    height: auto;
}
#bloqSocPer form .bloq iframe{
    width: 100%;
    height: 274px;
}
#bloqSocPer form .bloq button{
    margin-top: -10px;
    display: block;
}
.txtMap{
    text-align:left;
    font-size: 1em; 
    margin-top: 20px !important; 
    margin-bottom:20px; 
    height:auto;
    display: block;
}
#bloqSocPer form .separacion{
    width: 90%;
    height: 20px;
    background-color: rgba(0, 133, 204, .1);
    margin: 0px 0px 0px 5%;
}
#bloqSocPer form input{
    width: 100%;
    margin: 4px 0px;
    border: none;
    color: #000000;
    display: block;
}
#bloqSocPer form input[type="checkbox"]{
    width: auto;
    margin: 20px 5px 2px 0px;
    display: inline-flex;
}

#bloqSocPer ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #0085CC;
}
#bloqSocPer ::-moz-placeholder { /* Firefox 19+ */
  color: #0085CC;
}
#bloqSocPer :-ms-input-placeholder { /* IE 10+ */
  color: #0085CC;
}
#bloqSocPer :-moz-placeholder { /* Firefox 18- */
  color: #0085CC;
}

#bloqSocPer form .first{
    font-size: 1.2em;
    font-family: 'fontBold';
    margin-bottom: 20px;
}
#bloqSocPer form .firstSmall{
    font-family: 'fontBold';
}
#bloqSocPer form .cif{
    width: 70px;
    display: inline-block;
}
#bloqSocPer form .letraCif{
    width: 60%;
    display: inline-block;
    text-transform: uppercase;
}
#bloqSocPer form textarea{
    width: 96%;
    min-height: 110px;
    margin: 4px 0px;
    padding: 2%;
    border: 1px solid #CCCCCC;
    color: #000000;
    resize: vertical;
    display: block;
}
#bloqSocPer .bloqBtn{
    margin-top: 10px;
    width: 100%;
    text-align: left;
}
#bloqSocPer .bloqBtn button{
    width: 100%;
    height: 42px;
    color: #FFFFFF;
    background-color: #0085CC;
    border: none;
    transition: all .5s; 
}

#bloqSocPer .bloqBtn .btnSec{
    width: 49.5%;
    opacity: .5;
}
#bloqSocPer .bloqBtn button:hover, #bloqSocPer .bloqBtn button:focus{
    opacity: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5) !important;
    background-color: #0085CC;
    color: #FFFFFF;
}
#bloqSocPer .info{
    padding: 3%;
    font-size: .85em;
    background-color: #DDDDDD;
    color: #666666;
}
.txtCheAvi{
    color: #000000;
    font-size: .85em;
    font-weight: normal;
    margin: 0px 0px 10px 0px;
}
.txtCheAvi a{
    color: #0085CC;
    transition: all .5s;
    text-decoration: none;
}
.txtCheAvi a:hover{
    color: #FFFFFF;
    background-color: rgba(15, 186, 172, 1);
}
.linkWha{
    text-align: center;
    background-color: #128c7e;
    color: #FFFFFF;
    padding: 7px 10px;
    margin: 20px 0px 10px 0px;
    transition: all .5s;
    display: block;
}
.linkBtn{
    width: calc(100% - 20px);
    text-align: center;
    background-color: rgba(0, 133, 204, 1);
    color: #FFFFFF;
    padding: 7px 10px;
    margin: 10px 0px 0px 0px;
    border-radius: 0px;
    border: none;
    transition: all .5s;
    display: block;
}
.linkWha:hover, .linkBtn:hover{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .8);
}
/* ==========================================================================
   EMPRESA
   ========================================================================== */
#bloqEmp{
    position: relative;
    width: 540px;
    height: auto;
    padding: 3% 60px 30px 7%;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 20px 20px 0px rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(0, 133, 204, 1);
    color: #000000;
    display: block;
}
#bloqEmp img{
    width: 115px;
}
#bloqEmp h1{
    font-size: 1.4em;
}
#bloqEmp p{
    color: #999;
}

/* ==========================================================================
   CESTA
   ========================================================================== */
#cesta .resumen{

}
#cesta{
    overflow: hidden;
}
#cesta form{
    position: relative;
    background-color: rgba(0, 0, 0, .1);
    padding: 30px;
}
#cesta form .infNueAge{
    color: #666;
    text-align: left;
    padding: 0px 0px 0px 24px;
    font-size: .85em;
    text-align: justify;
    margin-top: -20px;
    margin-bottom: 20px;
}
#cesta form input[name="checkAvi"]{
    margin: 5px 10px 0px 0px !important;
}
#cesta form .infNueAge a{
    color: #0085CC;
}
#cesta .separacion{
    width: 100%;
    height: 20px;
    background-color: transparent;
    border-bottom: 1px dotted #000000;
    margin: 0px 0px 10px 0px;
}
#cesta h3{
    color: #0085CC;
    font-size: 1em;
    font-family: fontLight;
    font-weight: normal;
    border-left: 1px solid #0085CC;
    margin: 0px 0px 10px 0px;
    padding-left: 10px;
}
#cesta form input{
    width: 100%;
    margin: 4px 0px;
    border: none;
    color: #000000;
    background-color: transparent;
    padding: 4px 15px;
    display: block;
}
#cesta form input[type="checkbox"]{
    width: auto;
    margin: 20px 5px 2px 0px;
    display: inline-flex;
}

#cesta ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #0085CC;
}
#cesta ::-moz-placeholder { /* Firefox 19+ */
  color: #0085CC;
}
#cesta :-ms-input-placeholder { /* IE 10+ */
  color: #0085CC;
}
#cesta :-moz-placeholder { /* Firefox 18- */
  color: #0085CC;
}

#cesta form .first{
    font-size: 1.2em;
    font-family: 'fontBold';
    margin-bottom: 20px;
}
#cesta form .firstSmall{
    font-family: 'fontBold';
}
#cesta form .cif{
    width: 70px;
    display: inline-block;
}
#cesta form .letraCif{
    width: 60%;
    display: inline-block;
    text-transform: uppercase;
}
#cesta form textarea{
    width: 96%;
    min-height: 110px;
    margin: 4px 0px;
    padding: 2%;
    border: 1px solid #CCCCCC;
    color: #000000;
    resize: vertical;
    display: block;
}
#cesta .bloqBtn{
    margin-top: 10px;
    width: 100%;
    text-align: left;
}
#cesta .bloqBtn button{
    width: 100%;
    height: 42px;
    color: #FFFFFF;
    background-color: #0085CC;
    border: none;
    transition: all .5s; 
}

#cesta .bloqBtn .btnSec{
    width: 49.5%;
    opacity: .5;
}
#cesta .bloqBtn button:hover, #cesta .bloqBtn button:focus{
    opacity: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5) !important;
    background-color: #0085CC;
    color: #FFFFFF;
}
#cesta .info{
    padding: 3%;
    font-size: .85em;
    background-color: #DDDDDD;
    color: #666666;
}
#cesta #listCes{
    width: 100%;
    padding: 30px 30px 220px 30px;
}
#cesta #listCes .resFicha{
    position: relative;
    width: 100%;
    min-height: 90px;
    border-bottom: 1px dotted #666666;
        padding-bottom: 10px;
    margin-bottom: 20px;
}
#cesta #listCes .resFicha img{
    width: auto;
    height: 75px;
    vertical-align: top;
    display: inline-block;
}
#cesta #listCes .resTextos {
    display: inline-block;
    vertical-align: top;
    margin-left: 4%;
    width: calc(96% - 115px);
}
#cesta #listCes .resTextos .resNom{
    margin: 10px 0px 10px 0px;
    padding: 0px;
    font-family: 'fontLight';
    font-weight: normal;
    font-size: 1.2em;
    text-align: left;
    color: #000000;
    display: block;
}
#cesta #listCes .resTextos .resUni{
    margin: 0px;
    padding: 0px;
    font-family: 'fontNormal';
    font-weight: normal;
    font-size: .9em;
    text-align: left;
    color: rgba(0, 133, 204, 1);
}
#cesta #listCes .resTextos .resImp{
    margin: 0px 20px 0px 0px;
    padding: 0px;
    font-family: 'fontNormal';
    font-weight: normal;
    font-size: 1.6em;
    text-align: left;
    color: #000000;
    border: none;
    display: inline-block;
    vertical-align: middle;
}
#cesta #listCes .resTextos .cheCol{
    width: 60px;
    margin-right: 20px;
    color: #FFFFFF;
    display: inline-block;
    vertical-align: middle;
}
#cesta #listCes .resTextos .del {
    margin: 0px 0px 0px 10px;
    padding: 8px 20px;
    font-weight: normal;
    font-size: .85em;
    text-align: left;
    background-color: #FFFFFF;
    color: #CC0000;
    text-transform: uppercase;
    border: none;
    opacity: .5;
    transition: all .5s;
    display: inline-block;
    vertical-align: middle;
    border: 1px dotted;
    border-radius: 16px;
}
#cesta #listCes .resTextos .del:hover, #cesta #listArt .resTextos .del:focus{
    opacity: 1;
    color: #FFFFFF;
    background-color: #CC0000;
}
#combTipTran{
    width: fit-content;
    display: block;
}
#logCes{
    width: 100%;
    margin-bottom: 20px;
    display: block;
}
#cesta .txtEnv{
    text-align: right;
    color: #666666;
    font-size: .85em;
}

#bloqDes {
    border-right: 1px solid #CCCCCC;
    width: 320px;
    padding: 0px 15px 0px 0px;
    margin: 0px;
    position: fixed;
    left: calc(50% - 500px);
    top: 100px;
}
#bloqDes p{
    text-align: right;
    margin-bottom: 0px;
}
#bloqDes .tot span{
    color: #CCCCCC;
    font-family: 'fontNormal';
    font-size: .5em;
}
#ref_total {
    margin: 0px 0px 0px 0px;
    padding-bottom: 0px !important;
    font-family: 'fontBold';
    font-weight: normal;
    font-size: 2.3em;
    line-height: 1em;
}

#bloqDes .tot{
    margin: 0px;
    padding-top: 0px;
    color: #999;
    font-family: 'fontNormal';
    font-size: 1.2em;
    display: block;
}
#bloqDes p span{
    color: #999;
    font-family: 'fontNormal';
    display: block;
}
#bloqDes .tra{
    margin: 0px 0px 0px 0px;
    padding: 10px 0px;
    font-weight: normal;
    font-size: 1em;

}
#bloqDes .traIva{
    margin: 0px 0px 0px 0px;
    padding: 10px 0px;
    font-weight: normal;
    font-size: 1em;
}
#bloqDes .bas, #bloqDes .iva{
    margin: 0px 0px 0px 0px;
    padding: 10px 0px;
    font-weight: normal;
    font-size: 1em;
}
#bloqDes .totArt{
    margin: 0px 0px 40px 0px;
    padding: 10px 0px;
    font-weight: normal;
    font-size: 1em;
}
#bloqBtnPag{
    position: fixed;
    bottom: 0px;
    left: 50%;
    width: 520px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 16px 16px 0px 0px;
    overflow: hidden;
    display: none;
    z-index: 205;
}
#bloqBtnPag #btnPagar{
    width: 100%;
    height: 60px;
    color: #FFFFFF;
    background-color: #0085CC;
    font-size: 1.4em;
    border: none;
    transition: all .5s;
}
#bloqBtnPag #btnCanCom{
    width: 100%;
    height: 45px;
    color: #999999;
    background-color: #FFFFFF;
    font-size: 1em;
    border: 1px solid #CCC;
    transition: all .5s;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
}
/* ==========================================================================
    NUEVA CESTA
   ========================================================================== */
.nueva_cesta{
    width: 100% !important;
    top: 0px !important;
    min-height: 100% !important;
}
.nueva_cesta #resumen, .nueva_cesta #lineas{
    width: 50%;
    display: inline-block;
    vertical-align: top;
}
.nueva_cesta #resumen{
    position: fixed;
    height: 100%;
    background-color: rgb(241, 246, 248);
}
.nueva_cesta #lineas{
    position: relative;
    left: 50%;
}
.nueva_cesta #lineas .sin_dto{
    color: #CC0000;
    font-size: .75em;
    font-family: 'fontLight';
    display: block;
    margin-bottom: 1px;
    text-decoration: line-through;
}
/* ==========================================================================
   POP-UP DE LA CESTA
   ========================================================================== */
#resumen_cesta {
    position: fixed;
    top: 80px;
    width: 220px;
    right: -300px;
    padding: 10px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 16px;
    z-index: 35;
    transition: right 1s;
    display: none;
}
#resumen_cesta .tot {
    font-family: 'fontBold';
    font-size: 2.3em;
    margin: 0px 0px 0px 0px;
    padding-top: 20px;
}
#resumen_cesta .txt {
    font-family: 'fontNormal';
    font-size: 1em;
    opacity: .8;
    padding: 0px;
    margin: 0px 0px 20px 0px;
}
#resumen_cesta button{
    width: 100%;
}
@keyframes slideInOut {
    0% {
        right: -300px;
    }
    50% {
        right: 10px;
    }
    75% {
        right: 10px;
    }
    100% {
        right: -300px;
    }
}

#resumen_cesta {
    animation: slideInOut 4s forwards;
}
/* ==========================================================================
   MÉTODOS DE PAGO
   ========================================================================== */
#contResumen {
    position: relative;
    padding: 40px 0px;
    left: 50%;
    width: 94%;
    max-width: 520px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#contResumen p{
    margin: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}
#contResumen input[type="submit"]{
    margin: 10px 0px;
    border-radius: 16px;
    width: 100%;
}

/*
#contResumen input[type="submit"]{
    width: 100%;
    height: 42px;
    margin: 10px 0px;
    border: none;
    border: 1px solid #0085CC;
    color: #FFFFFF;
    font-size: .85em;
    background-color: #0085CC;
    border-radius: 0px;
    transition: all .5s;
}
#contResumen input[type="submit"]:hover, #contResumen input[type="submit"]:focus{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
    background-color: #0085CC;
    color: #FFFFFF;
}*/
/* ==========================================================================
   HISTORIAL
   ========================================================================== */
#cesta .bloqHis{
    width: 100%;
    margin: 10px 0px;
    text-align: center;
    padding: 0px 0px 20px 0px;
    border: 1px solid #CCC;
    cursor: pointer;
    transition: all .5s;
}
#cesta .bloqHis:hover, #cesta .bloqHis:focus{
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
}
#cesta .bloqHis time{
    padding: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'fontLight';
    font-size: 1em;
    background: rgba(0,133,204,1);
    background: -moz-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(0,133,204,1)), color-stop(100%, rgba(15,186,172,1)));
    background: -webkit-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    background: linear-gradient(135deg, rgba(0,133,204,1) 0%, rgba(15,186,172,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0085cc', endColorstr='#0fbaac', GradientType=1 );
    color: #FFFFFF;
    display: block;
}
#cesta .bloqHis img{
    height: 90px;
    width: auto;
    display: inline-block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media only screen and (max-width: 1340px){
    /* listados */
    .artListado{
        width: calc(24% - 2px);
    }
    #cuaHom{
        top: 100px;
    }
    #listArt{
        padding-top: 170px;
    }
}
@media only screen and (max-width: 1260px){
    /* ficha */
    #ficha .multimedia .col2 > *{
        width: 100%;
    }
    #ficha .multimedia .col2 > :nth-child(1){
        margin-right: 0px;
        border-radius: 0px 18px 0px 0px;
    }
    #ficha .multimedia .col2 > :nth-child(2){
        margin-top: 1px;
        margin-left: 0px;
        border-radius: 0px;
    }
    .pc{
        display: none;
    }
    .mov{
        display: block;
    }
}
@media only screen and (max-width: 1130px){
    /* listados */
    .artListado{
        width: calc(32% - 2px);
    }
    /* ficha */
    #ficha .art .multimedia{
        width: calc(55% - 40px);
    }
    #ficha .art .textos{
        width: 45%;
        padding: 0px 20px;
    }
}
@media only screen and (max-width: 980px){

    #bloqImg .max{
        width: 100%;
    }
    /* Formularios */
    .bloqForm{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        padding: 20px 110px 30px 0px;
    }
}
@media only screen and (max-width: 920px){
    /* listados */
    .artListado{
        width: calc(49% - 2px);
    }
    /* Empresa */
    #bloqEmp{
        width: 50%;
    }
     /* Formularios */
    #bloqSocPer{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        padding: 20px 110px 30px 0px;
    }
}
@media only screen and (max-width: 860px){
    /* Cesta */
    .nueva_cesta #resumen, .nueva_cesta #lineas {
        width: 100%;
        display: block;
    }
    .nueva_cesta #resumen {
        position: relative;
        height: auto;
        background-color: rgb(241, 246, 248);
        padding: 20px 0px;
    }
    #bloqDes {
        width: 220px;
        padding: 0px 15px 0px 0px;
        margin: 0px;
        position: relative;
        left: calc(50% - 110px);
        top: 0px;
    }
    .nueva_cesta #lineas{
        position: relative;
        left: 0px;
    }
}
@media only screen and (max-width: 730px){
    /* Ficha */
    #ficha .art .multimedia {
        width: 100%;
        display: block;
    }
    #ficha .art .textos{
        width: calc(100% - 40px);
        display: block;
    }
    #ficha .multimedia .col2 > *{
        width: calc(50% - 1px);
    }
    #ficha .multimedia .col2 > :nth-child(1){
        margin-right: 1px;
        border-radius: 0px 0px 0px 0px;
    }
    #ficha .multimedia .col2 > :nth-child(2){
        margin-top: 0px;
        border-radius: 0px 18px 0px 0px;
    }
    .bloqPVP {
        position: fixed;
        bottom: 0px;
        width: calc(100% - 2px);
        left: 0px;
        border-radius: 0px;
        z-index: 35;
        box-shadow: 0px -3px 5px rgba(0, 0, 0, .5);
        padding: 1px;
    }
    div[name="modulo_pago"]{
        display: none;
    }
    /* Formularios */
    #bloqSocPer{
        left: 0px;
        width: calc(100% - 10px);
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        padding: 40px 5px 20px 5px;
    }
    #bloqSocPer h1{
        font-size: 1.8em;
    }
    #bloqSocPer h2{
        width: 65%;
        font-size: 1.2em;
        margin: 10px 0px 20px 0px;
    }
    #bloqSocPer .logo{
        width: 100px;
        height: 100px;
        margin-top: 20px;
    }
    .bloqForm{
        left: 0px;
        width: calc(100% - 40px);
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        padding: 40px 20px 20px 20px;
    }
    .bloqForm h1{
        font-size: 1.8em;
    }
    .bloqForm h2{
        width: 65%;
        font-size: 1.2em;
        margin: 10px 0px 20px 0px;
    }
    .bloqForm .logo{
        width: 100px;
        height: 100px;
        margin-top: 20px;
    }
    /* Empresa */
    #bloqEmp{
        width: 70%;
        top: 80px;
        left: 0px;
        padding: 30px 5% 30px 15%;
        right: unset;
    }
    /* Aviso legal */
    #txtInfo{
        width: 100%;
    }
}
@media only screen and (max-width: 660px){
    /* Ficha */
    #ficha .titAux .artListado{
        width: calc(50% - 20px);
    }
    /* Contactar */
    .txtCenter button{
        width: 100%;
        margin: 5px 0px;
        display: block;
    }
}
@media only screen and (max-width: 580px){
    /* Filtro */
    #filtro {
        width: 310px;
        padding-top: .1px;
        padding-bottom: .1px;
    }
    #listArt {
        padding-top: 230px;
    }
    #filtro select{
        width: calc(100% - 1px);
        display: block;
    }
    #filtro select:nth-child(1){
        margin-top: 1px;
    }
    /* Footer */
    footer{
        padding-bottom: 100px;
    }
    footer > div{
        width: 100%;
        display: block;
    }
    footer > div:nth-child(2){
        padding-top: 0px;
        text-align: left;
    }
    footer li{
        margin: 2px 0px;
        font-size: 1em;
    }
    footer li .subMenu{
        margin: 0px 0px 10px 0px !important;
    }
    footer li .subMenu li{
        margin: 0px 0px 0px 20px;
        font-size: 1.4em;
    }
    footer .info{
        font-size: 1em;
    }
    footer .info_payment{
        display: none;
    }
    footer .redes{
        display: none;
    }
    /* Avisos */
    #cajAvi{
        position: absolute;
        top: 35px !important;
        left: 1%;
        width: 98%;
        -webkit-transform: translateX(0%) translateY(0%) !important;
        -ms-transform: translateX(0%) translateY(0%) !important;
        transform: translateX(0%) translateY(0%) !important;
    }
    #cajAvi.nueva_cesta{
        top: 0px !important;
        left: 0%;
        width: 100%;
    }
   /*#cajAvi button{
        position: relative;
        width: 94%;
        left: 3%;
        right: auto;
        display: block;
        margin-bottom: 5px;
    }*/
    #cajAvi .btn{
        width: 90%;
        left: 0px;
    }
    
    #bloqBtnPag{
        left: 0%;
        width: 100%;
        -webkit-transform: translateX(0%) translateY(0%) !important;
        -ms-transform: translateX(0%) translateY(0%) !important;
        transform: translateX(0%) translateY(0%) !important;
    }
}
@media only screen and (max-width: 505px){
    /* Ficha */
    #ficha .titAux .artListado{
        width: calc(100% - 10px);
        max-width: 400px;
    }
}
@media only screen and (max-width: 480px){
    /* Menú */
    #menSoc ul li[ref="11"], #menSoc ul li[ref="13"]{
        display: none;
    }
    /* Empresa */
    #bloqEmp{
        width: 80%;
        box-shadow: none;
    }
}
@media only screen and (max-width: 420px){
   
    /* listados */
    .artListado{
        width: calc(99% - 2px);
    }
    /* Actualizar perfil */
    form .cheCol, #combTipTran{
        width: 100%;
    }
    #cesta #listCes{
        padding: 30px 10px 220px 10px;
    }
    #cesta #listCes .resFicha {
        margin-bottom: 50px;
        text-align: center;
        padding-bottom: 10px;
    }
    #cesta #listCes .resFicha img{
        height: 120px;
        display: block;
        margin-left: calc(50% - 60px);
    }
    #cesta #listCes .resTextos{
        margin-left: 0px;
        width: 100%;
    }
    #cesta #listCes .resTextos .resNom{
        width: calc(100% - 20px);
        text-align: center;
    }
    #cesta #listCes .resTextos .resImp{
        margin: 0px 10px;
        min-width: 80px;
        text-align: center;
    }
}
@media only screen and (max-width: 380px){
    /* Actualizar perfil */
    .bloqForm .bloqBtn button{
        width: 100% !important;
        margin: 2px 0px;
        display: block;
    }
    /* Cesta */
    #cesta #listCes .resTextos .resImp{
        font-size: 1.2em;
    }
}













