
body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  color: #4d4d4d;
  background: #ffffff;
}

.img-thumbnail2 {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    background-color: #ffffff;
}

.img-thumbnail3 {
    width: 350px;
    height: 350px;
    object-fit: scale-down;
    border-radius: 5px;
    background-color: #ffffff;
}

a:link    { color: #929191; text-decoration: none; }
a:visited { color: #929191; text-decoration: none; }
a:hover   { color: #363bd6; text-decoration: underline; }
a:active  { color: #363bd6; text-decoration: underline; }

a.menu1:link    { color: #929191; font-size: 13px; text-decoration: none; }
a.menu1:visited { color: #929191; font-size: 13px; text-decoration: none; }
a.menu1:hover   { color: #363bd6; font-size: 13px; text-decoration: underline; }
a.menu1:active  { color: #363bd6; font-size: 13px; text-decoration: underline; }

a.menu2:link    { color: #ffffff; font-size: 15px; text-decoration: none; }
a.menu2:visited { color: #ffffff; font-size: 15px; text-decoration: none; }
a.menu2:hover   { color: #363bd6; font-size: 15px; text-decoration: underline; }
a.menu2:active  { color: #363bd6; font-size: 15px; text-decoration: underline; }

a.menu3:link    { color: #31be62; font-size: 15px; text-decoration: none; }
a.menu3:visited { color: #31be62; font-size: 15px; text-decoration: none; }
a.menu3:hover   { color: #363bd6; font-size: 15px; text-decoration: underline; }
a.menu3:active  { color: #363bd6; font-size: 15px; text-decoration: underline; }

.prd_nombre { color: #6f6f6f; font-size: 16px; font-weight: bold; }
.prd_clave { color: #31be62; font-size: 16px; }
.prd_caracteristicas { color: #616262; font-size: 17px; }
.prd_existencias { color: #31be62; font-size: 15px; }
.prd_precio { color: #31be62; font-size: 18px; font-weight: bold; }

* {
    box-sizing: border-box;
}


nav.navR {
    background-color: #21C658; /* ff6600 anaranjado */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

ul.ulR {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

li.liR {
    text-align: left;
    position: relative;
}

a.menuR:link {
    display: block;
    padding: 10px 15px; /* 15px 20px; */
    text-decoration: none;
    color: #fff; /* fff blanco */
    transition: background-color 0.3s;
}

a.menuR:hover {
    color: #fff;
    background-color: #929191;
}

a.menuR:visited {
    color: #fff;
    background-color: #929191;
}

a.menuR:active {
    color: #fff;
    background-color: #929191;
}

ul.ulR ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ff8000; /* ff9900 anaranjado */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

ul.ulR ul ul {
    top: 0;
    left: 100%;
    background-color: #ffcc66; /* ffcc66 anaranjado claro */
}

li.liR:hover > ul {
    display: flex;
    flex-direction: column;
}


.carrito-div {
    /*border: 5px solid #FFFF00;
    width: 80%;
    display: flex;
    justify-content: center;

    position:-ms-page;*/
    width: 300px;
    height: 200px;
    z-index: 15;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -150px;
    background: red;    
}

.login-block {
    width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid hsl(120, 2%, 76%); /* #0099FF */
    margin: 0 auto;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block button {
    width: 100%;
    height: 40px;
    background: #5dd388; /* 0099FF */
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #c4c4bc; /* e15960 */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #ff7b81; /* ff7b81 */
}

.container {
    padding: 16px;
    background-color: white;
}
  
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}
  
input[type=text]:focus, input[type=password]:focus {
   background-color: #ddd;
   outline: none;
}

hr {
   border: 1px solid #f1f1f1;
   margin-bottom: 25px;
}
  
.registerbtn {
    background-color: #5dd388; /* 426dca */
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}
  
.registerbtn:hover {
    opacity: 1;
}
  
a {
    color: dodgerblue;
}
  
.signin {
    background-color: #f1f1f1;
    text-align: center;
}


.modalDialog {
	position:fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: -100px;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }

.rodio-table {
    border: solid 1px #DDEEEE;
    border-collapse: collapse;
    border-spacing: 0;
    font: normal 12px Arial, sans-serif;

    position: relative;
    border-collapse: collapse;
}

.rodio-table thead th {
    background-color: #DDEFEF;
    border: solid 1px #DDEEEE;
    color: #336B6B;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #fff;

    position: sticky;
    top: 0;
}

.rodio-table tbody td {
    border: solid 1px #DDEEEE;
    color: #333;
    padding: 10px;
    text-shadow: 1px 1px 1px #fff;
}

.select_marcas {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 1;
    width: 85px;
    height: 50px;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
  }

.button {
    font-weight: bold;
    padding: 12px 15px;
    background: #3f8abf;
    color: #fff !important;
    font-size: 14px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 1px 0px rgba(0,0,0,0.15);
    border-width: 1px 1px 3px !important;
    border-style: solid;
    border-color: #326e99;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
    -moz-box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
    box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
}

.button-primary {
    background-color: #5fcf80 !important;
    border-color: #3ac162 !important;
}

.button-notavailable {
    background-color: #dfba5b !important;
    border-color: #ebdc54 !important;
}

ul    { border:0; margin:0; padding:0; text-align:center; }
#paginacion li          { border:0; margin:0; padding:0; font-size:11px; list-style:none; /* savers */ float:left; }
#paginacion a           { border:solid 1px #9aafe5; margin-right:2px; }

#paginacion .previous-off,
#paginacion .next-off   { border:solid 1px #DEDEDE; color:#888888; display:block; float:left; font-weight:bold; margin-right:2px; padding:3px 4px; }
#paginacion .next a,
#paginacion .previous a { font-weight:bold; }
#paginacion .active     { background:#2e6ab1; color:#FFFFFF; font-weight:bold; display:block; float:left; padding:4px 6px; /* savers */ margin-right:2px; }
#paginacion a:link,
#paginacion a:visited   { color:#0e509e; display:block; float:left; padding:3px 6px; text-decoration:none; }
#paginacion a:hover     { border:solid 1px #0e509e; }

.rodio-table {
    border: solid 1px #DDEEEE;
    border-collapse: collapse;
    border-spacing: 0;
    font: normal 12px Arial, sans-serif;
}

.rodio-table thead th {
    background-color: #DDEFEF;
    border: solid 1px #DDEEEE;
    color: #336B6B;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #fff;
}

.rodio-table tbody td {
    border: solid 1px #DDEEEE;
    color: #333;
    padding: 10px;
    text-shadow: 1px 1px 1px #fff;
}

.menu {
    /*position: relative; absolute*/
    position: relative;
    z-index: 1;
    /*
    position:fixed;
    top:5px;
    left:0;
    */
    width: auto; /* 100%; auto  */
    font:13px/27px Arial,sans-serif;
    color:#3366cc;
    height:30px;
    background:#FFF; /* E17012 */

    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
}

.menu a:hover {
    background-color:#FFFFFF;
    color:#bbbab8; /* E17012 */
}

.menu a {
    text-decoration:none;
    padding:6px 8px 7px;
    color:#bbbab8; /* FFF */
    outline:none;
}

.menu ul {
    list-style:none;
    margin:0;
    padding:0 0 0 10px;
}
.menu ul li {
    padding:0;
    /*float:left;*/
    float:left;
}

.menu ul li ul li {
    padding:0;
    float:none;
    margin:0 0 0 0px;
    width:100%;
}

.menu ul li ul {
    position:absolute;
    border:1px solid #CCCCCC; /* C3D1EC */
    /*box-shadow*/
    -webkit-box-shadow:0 1px 5px #CCCCCC;
    -moz-box-shadow:0 1px 5px #CCCCCC;
            box-shadow:0 1px 5px #CCCCCC;
    margin-top:-1px;
    display:none;
    padding:0px 16px 0px 0;
}

.active ul {
    display:block !important;
}

.single ul {
    display:block !important;
}

.active a {
    background-color:white;
    border:1px solid #CCCCCC; /* C3D1EC */
    border-bottom:0;
    /*box-shadow*/
    -webkit-box-shadow:0 -1px 5px #CCCCCC;
    -moz-box-shadow:0 -1px 5px #CCCCCC;
            box-shadow:0 -1px 5px #CCCCCC;
    display:block;
    height:29px;
    padding:0 8px 0 8px;
    position:relative;
    z-index:1;
    color:#E17012;
}

/*Styling for the link of the current page*/
.current a {
    background-color:#FFF;
    border-top:2px solid #CCCCCC;/*red ribbon at top*/
    border-bottom:0;
    display:block;
    height:25px;
    padding:0 8px 0 8px;
    position:relative;
    z-index:1;
    color:#E17012;
    font-weight:bold;
}

.active a:hover {
    background-color:white;
    color:#E17012;
}

.active ul a:hover {
    background-color:#E17012; /* e4ebf8 */
    color:#FFFFFF;
}

.active ul a {
    border:0 !important;
    /*box-shadow
    -webkit-box-shadow:0 0 0 #CCCCCC;
    -moz-box-shadow:0 0 0 #CCCCCC;
            box-shadow:0 0 0 #CCCCCC;
    */
    -webkit-box-shadow:0 -1px 5px #CCCCCC;
    -moz-box-shadow:0 -1px 5px #CCCCCC;
            box-shadow:0 -1px 5px #CCCCCC;
    border:0;
    width:100%;
}

.arrow {
    border-color:#C0C0C0 transparent white;
    border-style:solid dashed dashed;
    margin-left:5px;
    position:relative;
    top:10px;
}

.mid-line {
    background-color:#FFF;
    border-top:1px solid #e5e5e5;
    font-size:0;
}

.comentarios {
    position: fixed;
    bottom:1px;
    display: none;
    background: #FFF;
    border:1px solid #111111;
    -moz-border-radius-topright: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -webkit-border-bottom-right-radius: 20px;
    /* width: 160px; */
    width: 300px; /*97%;*/
    height: 500px; /*95%;*/
    padding: 10px 10px 10px 5px;
    filter: alpha(opacity=85);
    opacity: .85;
}
    
a.comentarios_ver{
    position: fixed;
    text-decoration: none;
    bottom:1px;
    font-size: 16px;
    letter-spacing:-1px;
    font-family: verdana, helvetica, arial, sans-serif;
    color:#CCC;
    /* alto, ancho, , espacio a la izquierda*/
    padding: 32px 5px 10px 30px;
    font-weight: 200;
    background:#FFF url(../imgs/icons/icon_comentarios.png) 85% 55% no-repeat;
    border:1px solid #444444;
    -moz-border-radius-topright: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-bottom-left-radius: 0px;
    display: block;
}
    
a.comentarios_ver:hover{
    position: fixed;
    text-decoration: none;
    bottom:1px;
    font-size: 16px;
    letter-spacing:-1px;
    font-family: verdana, helvetica, arial, sans-serif;
    color:#FFF;
    padding: 32px 5px 10px 33px;
    font-weight: 700;
    background:#FFF url(../imgs/icons/icon_comentarios_over.png) 85% 55% no-repeat; /*#E17012*/
    border:1px solid #444444;
    -moz-border-radius-topright: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-bottom-left-radius: 0px;
    display: block;
}
    
a.active.comentarios_ver { 
    background:#FFF url(../imgs/icons/icon_comentarios_over.png) 85% 55% no-repeat; /*#E17012*/
}

#whatsapp_chat_widget{display: none !important;}

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
}
  
.whatsapp-icon {
    margin-top:13px;
}