﻿/* PARA LOS AVISOS */
.popup-aviso 
{
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.popup-aviso:before 
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #666;
    opacity: 0.4;
}

.popup-aviso > div.cont-aviso 
{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: white;
    border: solid 1px #999;
    border-radius: 3px;
    box-shadow: 0px 0px 15px 1px #999;
    z-index: 999;
}

.popup-aviso > div.cont-aviso > a
{
    font-size: 1.5rem;
    text-align: right;
    cursor: pointer;
}

.popup-aviso > div.cont-aviso > h3
{
    font-size: 1.5rem;
    color: #333;
    text-align: center;
}

.popup-aviso > div.cont-aviso > div.texto-aviso
{
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 2rem;
}

.popup-aviso > div.cont-aviso > div.check-ok
{
    font-size: 1.2rem;
    color: #333;
}

.popup-aviso > div.cont-aviso > div.check-ok > input[type='checkbox'] 
{
    height: 20px;
    width: 20px;   
}

/* CABECERA DE LA TIENDA */
.header-tienda 
{
    display: flex;
    justify-content: space-between;
    height: 136px;
}

a.boton-nuevo 
{
    display: block;
    background: #e20025;
    color: White;
    padding: 10px;
    font-size: 1.0em;
    border-radius: 2px;
    text-decoration: none!important;
    text-shadow: 1px 1px 1px #666;
    text-align: center; 
}

a.boton-nuevo.disabled 
{
    opacity: 0.5;
    cursor: not-allowed;
}
a.boton-gris 
{
    display: block;
    background: #AAA;
    color: White;
    padding: 10px;
    font-size: 1.0em;
    border-radius: 2px;
    text-decoration: none!important;
    text-shadow: 1px 1px 1px #666;
    text-align: center; 
}

a.boton-secundario 
{
    display: block;
    background: #5a95ca;
    color: White;
    padding: 10px;
    font-size: 1.0em;
    border-radius: 2px;
    text-decoration: none!important;
    text-shadow: 1px 1px 1px #666;
    text-align: center; 
}

a.boton-secundario.peque 
{
    font-size: 1.1em;    
}

a.boton-nuevo > i,
a.boton-secundario > i,
a.boton-gris > i
{
    margin-right:10px;
    color: White;   
    text-shadow: 1px 1px 1px #666;    
}

a.boton-nuevo:hover 
{
    background: #bf0d0d; 
}

a.boton-secundario:hover 
{
    background: #2e8bde; 
}

a.boton-gris:hover 
{
    background: #999; 
}

.header-tienda > div.logo 
{
    display: flex;
}

.header-tienda > div.logo > a 
{
    margin-top:29px;
    margin-left:10px;
} 

.header-tienda > div.header-area-cliente 
{
    display: flex;
    flex-direction:column;
    margin-top: 10px;
    margin-right:8px;
}

.header-tienda > div.header-area-cliente > div 
{
    display: flex;
    height:38px;
    margin-bottom: 5px;
}

.header-tienda > div.header-area-cliente a.lnk-carrito 
{
    flex-grow: 1;
    background: #e20025;
    color: White; 
    padding: 10px;
    font-size: 1.2em;
    border-radius: 2px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #666;
}

.header-tienda > div.header-area-cliente a.lnk-carrito:hover,
.header-tienda > div.header-area-cliente a.lnk-sesion:hover 
{
    background: #bf0d0d;    
}

.header-tienda > div.header-area-cliente a.lnk-carrito > i 
{
    margin-right:10px;
    color: White;   
    text-shadow: 1px 1px 1px #666;
}

.header-tienda > div.header-area-cliente a.lnk-sesion 
{
    margin-left: 5px;  
    background: #e20025; 
    padding: 10px;
    font-size: 1.2em;
    border-radius: 2px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #666; 
    display:none;   
}

.header-tienda > div.header-area-cliente a.lnk-sesion.activo 
{
    display:flex;   
}


.header-tienda > div.header-area-cliente a.lnk-sesion > i 
{
    color: #FFF;
    text-shadow: 1px 1px 1px #666;     
}

.header-tienda > div.header-area-cliente a.lnk-carrito-compra 
{
    background: #5a95ca;
    margin:0px;
    padding:10px;
    display:flex;
    justify-content: space-between;
    width:100%;
    border-radius: 2px;
    font-size: 1.1em;
    text-decoration:none;
    color: #fff;
    text-shadow: 1px 1px 1px #666;
}

.header-tienda > div.header-area-cliente a.lnk-carrito-compra > span > i 
{
    margin-right:10px; 
    font-size: 1.2em;   
    color: #fff;
}

.header-tienda > div.header-area-cliente a.lnk-carrito-compra > span.label-numero 
{
    margin-left:10px;
    background: #bf0d0d;
    color: #FFF;
    padding: 2px 5px;
    line-height: 13px;
    border-radius: 2px;
    font-weight: bold;
    height:16px;
}

.header-tienda > div.header-area-cliente a.lnk-carrito-compra > span.label-numero.hay-productos 
{
    background: green;   
} 

.header-tienda > div.header-area-cliente a.lnk-carrito-compra:hover 
{
    background: #2e8bde;
}

.header-tienda > div.header-area-cliente a.boton-buscar 
{
    background: #AAA;
    margin: 0px 0px;
    padding:10px;
    width:100%;
    border-radius: 2px;
    font-size: 1.1em;
    text-decoration:none;
    color: #FFF;
    text-shadow: 1px 1px 1px #666;
}

.header-tienda > div.header-area-cliente a.boton-buscar > i 
{
    margin-right:10px; 
    font-size: 1.1em;   
    color: #FFF;
    text-shadow: 1px 1px 1px #666;
}

.header-tienda > div.header-area-cliente a.boton-buscar:hover 
{
    text-decoration:none;
    background-color: #999;
}

#divBusquedaGoogle 
{
    border: solid 1px #CCC;
    border-radius: 2px;
    background: #FFF;
    width:600px;
    height:120px;
    display:none;
    position:absolute;
    top: 0;
    left:0;
    z-index: 30;
    padding: 0px;
    left: calc(50% - 300px);
    top: calc(50% - 120px);
    box-shadow: 0px 0px 15px 0px #CCC;
}

#divBusquedaGoogle > h4 
{
    background: #e20025;
    color: #FFF;
    text-shadow: 1px 1px 1px #444;
    text-transform: none;
    margin:0px;
    padding:0px;
    line-height: 40px; 
    border-radius:0px;   
    display:flex;
    justify-content: space-between;
    padding-left: 10px;
    width:100%;
    box-sizing: border-box;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

#divBusquedaGoogle > p 
{
    box-sizing: border-box;
    padding:10px;
}

#divBusquedaGoogle > h4 > a > i 
{
    color: #FFF;
    line-height: 40px;
    font-size: 1.5em; 
    margin-right:10px; 
 
}

#divBusquedaGoogle > h4 > a:hover > i 
{
    color: #fbf49e;
}

.ProductoCatalogo
{
    width:660px;
    height:180px;
}

.ProductoCatalogo .foto
{
    width:130px;
    height:160px;
    float:left;
}

.ProductoCatalogo .DescripcionProducto
{
    width:520px;
    float:right;
    height:130px;
}

.ProductoCatalogo .DescripcionProducto H5
{
    background:url(/images/list_1-marker.gif) left 8px no-repeat;
    padding-top:5px;
    padding-bottom:5px;
    padding-left: 25px;
    font-size:1.4em;
    text-transform:none;

}

.ProductoCatalogo .DescripcionProducto H5 a
{
  color:#444444;   
}


/* Destacados */

.ProductoDestacado
{
    width:660px;
    height:180px;
}

.ProductoDestacado .foto
{
    width:130px;
    height:160px;
    float:left;
}

.ProductoDestacado .DescripcionProducto
{
    width:520px;
    float:right;
    height:130px;
}
.ProductoDestacado .DescripcionProducto p
{
    padding-top:8px;
}

.ProductoDestacado .DescripcionProducto H5
{
    background:url(/images/list_1-marker.gif) left 8px no-repeat;
    padding-top:5px;
    padding-bottom:15px;
    padding-left: 25px;
    font-size:1.4em;
    text-transform:none;
}

.ProductoDestacado .DescripcionProducto H5 a
{
  color:#444444;   
}

.Paginador
{
    text-align:center;
}
.Paginador span
{
    margin-left:5px;
    margin-right:5px;
}

.Paginador span a
{
    text-decoration:none;
}

.Paginador span a:hover
{
text-decoration:underline;
color:#444444;
}



/* Table styling */
.tabla-componentes
{
    border: 1px solid #9cc4dd;
    width: 670px;
}

.tabla-componentes thead th
{
    text-align: left;
    background: url(/images/table-bg.gif) left top repeat-x #5eb2db;
    font-size: 1em;
    color: #fff;
    font-weight: normal;
    border: 1px solid #53b4d7;
    border-bottom: 2px solid #a9d2ec;
    border-top: 2px solid #a9d2ec;
    padding-right: 9px;
    padding-left: 9px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.tabla-componentes tbody td
{
    padding-right: 9px;
    padding-left: 9px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #e9e9e9;
    border: 1px solid #bfbfbf;
    color: #4d4d4d;
}
.tabla-componentes tr:hover td
{
    background-color: #f5f5f5;
}

.tabla-componentes a
{
    color:#d10f0f;
}

/* Tabla de componentes del producto del catálogo nueva */
div.tabla-componentes-nueva, 
div.tabla-componentes-nueva * 
{
    box-sizing: border-box;
}

div.tabla-componentes-nueva > div.cabecera-comp,
div.tabla-componentes-nueva > div.item-comp
{
    display:flex;
}

div.tabla-componentes-nueva > div.item-comp 
{
    border: solid 1px #DDD;
    border-radius: 2px;
}

div.tabla-componentes-nueva > div.item-comp > div 
{
    margin:5px;
}

div.tabla-componentes-nueva > div.item-comp > div > h6,
div.tabla-componentes-nueva > div.item-comp > div > h5 
{
    margin:0px;
    padding:0px;
    line-height:25px;
    font-size: 1em;    
    display:flex;
    justify-content: space-between;
}

div.tabla-componentes-nueva > div.item-comp > div > h6 > span,
div.tabla-componentes-nueva > div.item-comp > div > h5 > span 
{
    font-size: 0.7em;   
    text-transform: none;
} 

div.tabla-componentes-nueva > div.item-comp > div > h5 
{
    font-size: 1.2em;
    color: #e20025;    
}

div.tabla-componentes-nueva > div.item-comp:not(:last-child) 
{
    margin-bottom:2px;    
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(1),
div.tabla-componentes-nueva > div.item-comp > div:nth-child(3)
{
    width: 110px;
    min-width: 110px;    
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(2)
{
    flex-grow: 1;  
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(3) 
{
   
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(4) 
{
    width: 45px;
    min-width: 45px;
    text-align:center;   
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(4) > a 
{
    display:block;
    margin-top: 11px;
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(4) > a > i 
{
    font-size: 2em;  
    color: #e20025;
    text-shadow: 1px 1px 1px #CCC;  
}

div.tabla-componentes-nueva > div.item-comp > div:nth-child(4) > a:hover > i 
{
    color: #c10826;
}

div.tabla-componentes-nueva > div.item-comp > div > span.label-ref 
{
    color:White;
    background:#CCC;
    border-radius: 2px; 
    padding:5px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #444;   
    display:block;
    border: solid 1px #AAA;
    text-align:center;    
}

/* Carro compra */
.carrito
{
 height:30px;
 float:right;   
 color:#d10f0f;
 font-weight:bold;
}

.carrito  a
{
    text-decoration:none;
    color:#000000;
}

.carrito  a:hover
{
    text-decoration:underline;
}

.
{
}

.tabla-carrito
{
    border: 1px solid #9cc4dd;
    width: 770px;
    text-align:left;
}

.tabla-carrito .cabecera
{
    text-align: left;
    background: url(/images/table-bg.gif) left top repeat-x #5eb2db;
    font-size: 1em;
    color: #fff;
    font-weight: normal;
    border: 1px solid #53b4d7;
    border-bottom: 2px solid #a9d2ec;
    border-top: 2px solid #a9d2ec;
    padding-right: 9px;
    padding-left: 9px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.tabla-carrito .cabecera th
{
    text-align:left;
padding-left:5px;
}
.tabla-carrito .linea td
{
    text-align:left;
    padding-left:5px;
}
.tabla-carrito .linea
{
    padding-right: 9px;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #e9e9e9;
    border: 1px solid #bfbfbf;
    color: #4d4d4d;
}
.tabla-carrito .linea:hover td
{
    background-color: #f5f5f5;
}

.tabla-carrito a
{
    color:#d10f0f;
}

/* Tables ---------------------- */
.table_promo { background: #fff; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; margin: 0 0 18px; border: 1px solid #dddddd; }
.table_promo thead, table tfoot { background: #f5f5f5; }
.table_promo thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; font-size: 14px; line-height: 18px; text-align: left; }
.table_promo thead tr th, table tfoot tr td { padding: 4px 5px 4px; }
.table_promo thead tr th:first-child, table tfoot tr td:first-child { border-left: none; }
.table_promo thead tr th:last-child, table tfoot tr td:last-child { border-right: none; }
.table_promo .titulo { text-align: left; background-color: #e20025; font-size: 1em; color: White; font-weight: normal;}
.table_promo .titulo th { text-align:left; padding-left:5px; }
.table_promo tbody tr.even, table tbody tr.alt { background: #f9f9f9; }
.table_promo tbody tr:nth-child(even) { background: #f9f9f9; }
.table_promo tbody tr td { color: #333; padding: 4px 4px; vertical-align: top; border: none; text-align: left; }	
.table_promo tbody tr:hover td { background-color: #f5f5f5;} 


/* POPUP DE CIERRE */
.modal-gris 
{
    height: 100%;
    width: 100%;
    position: absolute;
    background: #CCC;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.modal-cargando 
{
    position:absolute;
    top:0;
    left:0;
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    position:absolute;
    width: 100%;
    height:100%;
}

.modal-cargando > h4 
{
    width: 200px;
    height: 50px;
    line-height: 65px;
    /*background: white;
    border: solid 1px #999;
    border-radius: 3px;*/
    z-index: 99;
    margin: 0 auto;
    text-align: center;
    font-family: 'Open Sans-Serif', Sans-Serif;
    /*box-shadow: 0px 0px 5px 0px #AAA;*/
}

.modal-cargando > h4 > i 
{
    color: White;
    font-size:2em;
    text-shadow: 1px 1px 1px #333;    
}

.popup-cierre 
{
    border: solid 1px #DDD;
    background: white;
    height: 315px;
    width: 646px;
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 300px);
    box-shadow: 0px 0px 15px 2px #999;
    border-radius: 5px;
    text-align: center;    
}

.popup-cierre > a 
{
    float: right;
    margin-right: 10px;
    margin-top: 5px;
}

.popup-cierre > a:hover 
{
    text-decoration:none;
    color: Red;
}

.div-cierre-area-cliente 
{
    text-align:center;
}

/* MENÚ DE LA WEB */

.nav-menu
{
	padding: 0px 0 0px 0;
	min-height: 3px;
	height: 40px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	z-index: 20;
	background-color: #e20025;
	margin-bottom: 15px;
	width:940px;
	border: solid 1px #bf0d0d;
}

.nav-menu > ul 
{
    display:flex;
    justify-content: space-between;
    list-style: none;
    padding:0px;
    margin:0px;
    border-radius:2px;   
}

.nav-menu > ul > li 
{
    font-size: 1.2em;
    height:40px;
    position: relative;
}

.nav-menu > ul > li > a 
{
    text-decoration:none;
    line-height:38px;
    padding: 0px 15px;
    color: White;
    height:40px;
    display:block;    
    text-shadow: 1px 1px 1px #666;
    cursor:pointer;
}

.nav-menu > ul > li > a > i 
{
    color:White;
}

.nav-menu > ul > li > a:hover 
{
    background: #bf0d0d;    
} 

.nav-menu > ul > li:last-child > ul
{
    left: -105px;
}

/* Submenú */
.nav-menu > ul > li > ul 
{
    position:absolute;
    background:#FAFAFA;
    z-index:99;
    list-style: none;
    padding:0px;
    margin:0px;
    border: solid 1px #CCC;
    box-shadow: 0px 0px 5px 0px #AAA;
    width:237px;
    display:none;    
}

.nav-menu > ul > li > ul.activo 
{
    display:flex;
    flex-direction:column;
}

.nav-menu > ul > li > ul > li
{
    height:40px;
    border-bottom: solid 1px #CCC;
    overflow:hidden;
}

.nav-menu > ul > li > ul > li:last-child 
{
    border-bottom: none;
}

.nav-menu > ul > li > ul > li > a 
{
    color: #e20025;
    text-decoration:none;
    padding: 0px 10px;
    line-height:40px;
    display:block;
    text-shadow: 1px 1px 1px #DDD;
    font-size: 0.9em;
}

.nav-menu > ul > li > ul > li > a > i 
{
    color: #e20025;
}


.nav-menu > ul > li > ul > li > a:hover 
{
    background:#e20025;
    color: White;
    text-shadow: 1px 1px 1px #666;
}

.nav-menu > ul > li > ul > li > a:hover > i 
{
    background:#e20025;
    color: White;
    text-shadow: 1px 1px 1px #666;   
}

/* To change position of close button to Top Right Corner */
#colorbox #cboxClose
{
    top: 0;
    right: 0;
}
#cboxLoadedContent{
    margin-top:28px;
    margin-bottom:0;
}

/* MODAL PARA AÑADIR AL CARRITO UN PRODUCTO */

.add-carrito 
{
           
}

.add-carrito > h5 
{
    margin: 0px 15px;
    color: #666;
}

.add-carrito > ul
{
    list-style: none;
    padding:0px;
    margin:0px 15px;
    display: flex;
    border: solid 1px #DDD;
    border-radius: 2px;
}

.add-carrito > ul > li:not(:last-child)
{
    border-right: solid 1px #DDD;
}
.add-carrito > ul > li 
{
    padding:10px;
    flex-grow:1;
}

.add-carrito > ul > li > h6 
{
    color: #333;
    margin:0px;
    padding:0px;
    text-transform:none!important;
    font-size:1.1em;
    border-bottom: dashed 1px #DDD;
    padding-bottom: 5px;
}

.add-carrito > ul > li > h5 
{
    margin:0px;
    padding:0px;
    margin-top: 5px;
    color: #bd1934;
    line-height: 35px;
}

.add-carrito > ul > li > h5 > input 
{
    border: solid 1px #DDD;
    padding: 5px;
    border-radius: 2px;
    background: white;
    box-shadow: inset 0px 0px 3px #DDD;
    width: 50px;
    text-align: center;
    font-size: 0.9em;  
    color:#333;
}

.add-carrito > ul > li > h5 > input.error 
{
    background: red;
    color:white;
}

.add-carrito > ul > li > span:last-child
{
    color: #bd1934;    
}

.add-carrito > div 
{
    margin: 15px 15px 0px 15px;    
}

.add-carrito > div > a 
{
    background: #e20025;
    color: White;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 2px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #666;
    display:block;
    text-align: center;
}

div.spin-boton-compra 
{
    height: 50px;
    width:100%;
    text-align:center;
    display:none;
}

div.spin-boton-compra > i 
{
    font-size: 2em;   
}

/* MODAL DEL CARRITO DE LA COMPRA */

.modal-carrito 
{
    position: absolute;
    width: 320px;
    height: 454px!important;
    background: white;
    border: solid 1px #AAA;
    display: none!important;
    top: 136px;
    right: 28px;
    z-index: 99;
    box-shadow: 0px 0px 5px 0px #AAA;
}

.modal-carrito.activo 
{
    display: flex!important;    
    flex-direction:column;
}

.modal-carrito > h4 
{
    text-transform: none;
    margin: 0px;
    padding: 3px;
    background: #5a95ca;
    color: #fff;
    border-bottom: solid 1px #CCC;
    font-size: 1.4em;
    display: flex;
    text-shadow: 1px 1px 1px #666;
    line-height: 35px;
    min-height: 35px;
}

.modal-carrito > h4 > i 
{
    color: #fff; 
    font-size: 1.4em;
    margin-left:5px;
    margin-right:10px;
    text-shadow: 1px 1px 1px #666;   
    line-height:35px; 
}

.modal-carrito > div.tramitar-pedido 
{
    background: #EEE;
    border-bottom: solid 1px #CCC;    
}

.modal-carrito > div.cargando 
{
    flex-grow: 1;
    text-align: center;
    font-size: 3em;
    margin-top: 50px;    
}

.modal-carrito > div.tramitar-pedido > h5 
{
    display:flex;
    justify-content: space-between;
    margin:0px;
    padding:10px;
}

.modal-carrito > div.tramitar-pedido > h5 > span:first-child 
{
    font-size: 0.9em;    
}

.modal-carrito > div.tramitar-pedido > h5 > span:last-child 
{
    color: #bf0d0d;
}


.modal-carrito > div.tramitar-pedido > a 
{
    background: #e20025;
    color: White;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 2px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #666;
    display:block;
    text-align: center;   
    margin: 10px; 
}

.modal-carrito > div.tramitar-pedido > a:hover 
{
    background: #bf0d0d;
}

.modal-carrito > div.articulos-pedido 
{
    overflow-y: auto;
    flex-grow: 1; 
}

.modal-carrito > div.articulos-pedido > ul 
{
    list-style:none;
    padding:10px;
    margin:0px;
}

.modal-carrito > div.articulos-pedido > ul > li 
{
    display:flex;
    border: solid 1px #DDD;
    border-radius: 2px;
    min-height: 90px;
}

.modal-carrito > div.articulos-pedido > ul > li > div 
{
    padding:5px;
    height: 72px;
}

.modal-carrito > div.articulos-pedido > ul > li:not(:last-child) 
{
    margin-bottom: 5px;    
}

.modal-carrito > div.articulos-pedido > ul > li > div:first-child 
{
    flex-grow: 1;
    color: #333;
    overflow: hidden!important;
    height: 72px;
}

.modal-carrito > div.articulos-pedido > ul > li > div:last-child  
{
    width: 75px;
    min-width: 75px; 
    text-align:right;   
    white-space:nowrap;
}

.modal-carrito > div.articulos-pedido > ul > li > div > h6 
{
    margin:0px;
    color: #bd1934;
    padding:0px;
    font-size: 0.9em;
    text-transform:none;

}

.modal-carrito > div.articulos-pedido > ul > li > div > h6.unidades
{
    background: #AAA;
    color: white;
    padding: 5px;
    margin-top:0px;
    border-radius:2px;
    margin-bottom:5px;
    text-align:center;
    margin-left:5px;
}

.modal-carrito > div.articulos-pedido > ul > li > div > h6 > a 
{
    background: #e20025;
    color: White;
    padding: 6px 5px;
    font-size: 1em;
    border-radius: 2px;
    text-decoration: none;
    text-shadow: 1px 1px 1px #666;
    display: block;
    text-align: center;
    margin-left: 5px;
}

.modal-carrito > div.articulos-pedido > ul > li > div > h6 > a:hover 
{
    background: #bf0d0d;
}

.modal-carrito > div.articulos-pedido > ul > li > div > h6 > a > i
{
    color: White;   
    font-size: 1.3em; 
}


.modal-carrito > div.articulos-pedido > ul > li > div > h5
{
    margin:0px;
    color: #bd1934;
    padding:0px;
    font-size: 1.1em;
    margin-bottom:5px;
}

/* LOGIN EN LA TIENDA */

.login-web 
{
    display:flex;   
    box-sizing: border-box;
    width:940px;
}

.login-web > div 
{
    width: 460px;
    min-width:460px;  
    flex-grow:1;
}

.login-web > div.col-izquierda 
{
    margin-right:10px;    
}

.login-web > div.col-derecha 
{
    margin-left:10px;
    display:flex;
    flex-direction: column;
    position:relative;
}

.login-web > div > h3 
{
    text-transform: none;
    margin:0px;
    padding:0px;
    line-height:1.8em;
    padding-bottom:10px;
    border-bottom: dotted 1px #bf0d0d;
    text-shadow: 1px 1px 1px #AAA;
}

.login-web > div > h3 > i 
{
    margin:0px;
    font-size: 1.8em;
    margin-right: 15px;
    color: #bf0d0d;
    text-shadow: 1px 1px 1px #999;
}

.login-web > div > p
{
    color: #333;
    font-size: 1.1em;
    line-height:20px;
}

.login-web > div > p > i 
{
    color: #bd1934;
}

.login-web > div > p.info 
{
    color: #bd1934;
    font-weight: bold;
    font-size:1.3em;
}

.login-web > div > p > label 
{
    margin-left:10px;
    display:block;
    font-weight:bold;
    margin-bottom:5px;
    color: #bd1934;
}

.login-web > div > p > input 
{
    margin-left:10px;
    border: solid 1px #DDD;
    padding:10px;    
    border-radius: 2px;
    width:420px!important;
    background: white;
    box-shadow: inset 0px 0px 3px #DDD;
}

.error-login-message[style*="inline"]
{
    display:block !Important;
    padding: 10px 0px;  
}

.error-login-message[style*="inline"]:before 
{
    content: '* ';    
}

.login-web > div > div.botones-login
{
    margin: 10px 5px;
    display:flex;
}

.login-web > div > div.botones-login.derecha 
{
    flex-grow:1;
    position:absolute;
    bottom:0;
    width:450px;
}

.login-web > div > div.botones-login > a 
{
    flex-grow:1;
    margin: 0px 5px;  
    width:250px;
}

.login-web > div > div.botones-login.derecha > a 
{
    flex-grow:1;
    margin: 0px 5px;
    width:auto;  
}

/* PANTALLA DE VALIDAR PEDIDO */

div.pedido-ok 
{
    border: solid 1px #e20025;
    border-radius: 2px;
    width: 940px;            
}

div.pedido-ok > h3 
{
    margin:0px;
    padding:0px;
    text-transform:none;
    line-height: 40px;
    text-align: center;
    margin-top:10px;
    color:#e20025;
    text-shadow: 1px 1px 1px #CCC;  
}

div.pedido-ok > h3 > i 
{
    color:#e20025;  
}

div.pedido-ok > h3 > i 
{
    line-height: 40px;
}

div.pedido-ok > p 
{
    color: #333;
    text-align:center;
    margin:0px 25px 25px 25px;
    font-size: 1.1em;
}

div.pedido-ok > p > strong 
{
    font-size: 1.2em;    
}

/* INPUTS */

.input-nuevo,
.select-nuevo 
{
    box-sizing:border-box;
    border: solid 1px #DDD;
    padding:10px;    
    border-radius: 2px;
    /*width:420px!important;*/
    height:40px;
    background: white;
    box-shadow: inset 0px 0px 3px #DDD;
    font-size:1.1em;
    width:100%;
}

.textarea-nuevo 
{
    box-sizing:border-box;
    border: solid 1px #DDD;
    padding:10px;    
    border-radius: 2px;
    background: white;
    box-shadow: inset 0px 0px 3px #DDD;
    font-size:1.1em;
    width:100%;   
}

/* CATÁLOGO */

div.catalogo-content 
{
    display: flex;    
}

div.catalogo-content > div.catalogo-izq 
{
    width: 230px;
    min-width: 230px;
    padding-right:10px;
}

div.catalogo-content > div.catalogo-dcha 
{
    width: 700px;
    min-width: 700px;
}

div.catalago-items 
{
    display: flex;
    flex-direction: column;
}

div.catalago-items > div.catalogo-item 
{
    display:flex;
    margin-bottom:10px;
    padding-bottom:10px;
    border-bottom: dashed 1px #DDD;
    position:relative;
}

div.catalago-items > div.catalogo-item > div.miniatura > a 
{
    border: solid 1px #DDD;
    border-radius: 2px;
    padding:5px;
    display:block;   
}

div.catalago-items > div.catalogo-item > div.miniatura > a > img 
{
    border: solid 1px #d2d2d2;
    max-width:120px;
    max-height:160px;
    width:120px;
    height:160px;
}

div.catalago-items > div.catalogo-item > div.descripcion 
{
    margin-left:10px;
}

div.catalago-items > div.catalogo-item > div.descripcion > h4 
{
    font-size: 1.5em;
    text-transform: none;
    color: #333;
    display:flex;
    margin:0px;
    padding:0px;
}

div.catalago-items > div.catalogo-item > div.descripcion > h4 > i 
{
    color: #e20025;
    margin-top:2px;
    margin-right:10px;
    font-size:1.2em;
    text-shadow: 1px 1px 1px #444;
}

div.catalago-items > div.catalogo-item > div.descripcion > h4 > a 
{
    color: #333;    
    text-decoration:none;
}

div.catalago-items > div.catalogo-item > div.descripcion > h4 > a:hover 
{
    color:#2e8bde;
}

div.catalago-items > div.catalogo-item > div.descripcion > h5 
{
    font-size: 1em;
    font-weight:100;
    color:#2e8bde;
    padding:0px;
    padding-left: 30px;
    margin:0px;
    line-height:25px;
}

div.catalago-items > div.catalogo-item > div.descripcion > p 
{
    margin:0px;
    padding:10px 0px 0px 30px;
    margin-bottom:10px;
    text-align:justify;
    color: #555;
}

div.catalago-items > div.catalogo-item > div.descripcion > a 
{
    position:absolute;
    width: 100px;
    bottom: 10px;
    right:0px; 
}

div.novedades 
{
    background: #5a95ca;
}

div.novedades > h3 
{
    color: #FFF;
    text-align:center;
    text-shadow: 1px 1px 1px #444;
    margin:0px;
    padding:0px;
    line-height: 40px;
    text-transform:none;
    font-size:1.6em;
    margin-bottom:15px;
    border: solid 1px #2e8bde;
    border-radius: 2px;
}

div.novedades2 
{
    background: #beefeb;
}

div.novedades2 > h3 
{
    color: #000;
    text-align:center;
    margin:0px;
    padding:0px;
    line-height: 40px;
    text-transform:none;
    font-size:1.4em;
    margin-bottom:15px;
}

div.nuestros-catalogos 
{
    margin-top:15px;
}

div.nuestros-catalogos > h5
{
    margin: 0px;
    font-size: 1.3em;
    padding: 0px;
    border-bottom: dotted 1px #999;
    color: #666;
    text-shadow: 1px 1px 1px #CCC;
    padding-bottom:10px;
    text-align:justify;
}

div.nuestros-catalogos > div.escolar 
{
    margin-top: 10px;
    border: solid 1px #DDD;
    border-radius: 2px;
}

div.nuestros-catalogos > div.escolar > h6 
{
    margin: 0px;
    padding:0px;
    padding: 5px;
    text-transform:none;
    border-bottom: solid 1px #DDD;
    background: #5a95ca;
    color: #FFF;
    text-align:center;
    text-shadow: 1px 1px 1px #444;
    font-size: 1.2em;
}

div.nuestros-catalogos > div.escolar > div.miniatura 
{
    padding: 15px 0px 5px 0px;
    text-align:center;
}

div.nuestros-catalogos > div.escolar > div.miniatura > img 
{
    border: solid 1px #CCC;
    border-radius: 2px;
}

div.nuestros-catalogos > div.escolar > div.miniatura > p 
{
    font-size: 10px; 
    padding-top: 5px; 
    color: Red; 
    font-weight: bold;  
}


div.nuestros-catalogos > div.escolar > div.botonera 
{
    display: flex;
    padding:5px;  
    justify-content:space-between;  
}

div.nuestros-catalogos > div.escolar > div.botonera > a 
{
    font-size: 1em;
    flex-grow: 1;
}

div.nuestros-catalogos > div.escolar > div.botonera > a:first-child 
{
    margin-right:5px;
}

div.productos-destacados
{
    margin-top: 15px;
}

div.productos-destacados > h5 
{
    margin: 0px;
    font-size: 1.5em;
    padding: 0px;
    line-height: 40px;
    border-bottom: dotted 1px #999;
    margin-bottom: 10px;
    color: #666;
    text-shadow: 1px 1px 1px #CCC;    
}

div.productos-destacados > ul 
{
    padding:0px;
    list-style:none;
}

div.productos-destacados > ul > li 
{
    display:flex;
    margin-bottom:3px;
}

div.productos-destacados > ul > li > i {
    color: #e20025;
    margin-top: 2px;
    margin-right: 10px;
    font-size: 1.2em;
    text-shadow: 1px 1px 1px #444;
}

div.productos-destacados > ul > li > a 
{
    text-decoration:none;
    color: #333;
}

div.productos-destacados > ul > li > a:hover 
{
    color: #2e8bde;    
}

/* FICHA DE PRODUCTOS */

ul.lista-enlaces 
{
    padding:0px;
    list-style: none;        
}

ul.lista-enlaces > li 
{
    display:flex;
}

ul.lista-enlaces > li > a 
{
    line-height: 25px;    
    text-decoration: none;
    color: #333;
}

ul.lista-enlaces > li > a:hover 
{
    color: #5a95ca;
} 

ul.lista-enlaces > li > i 
{
    color: #e20025;
    margin-right: 10px;
    font-size: 1.2em;
    text-shadow: 1px 1px 1px #444;  
    line-height: 25px;      
}