@import url(btn.css);
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,700);

:root {
  --color-marca1: #4a7700;
  --color-marca2: #8fbf2c;
  --color-oscuro: #1a1a1a;
  --grad-oscuro: linear-gradient(
    180deg,
    rgba(43, 43, 43, 1) 0%,
    rgba(0, 0, 0, 1) 100%,
    rgba(26, 26, 26, 1) 50%
  );
  --font: "Roboto", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 500 !important;
}

footer,
footer a:hover {
  color: #fff;
}

.search,
.social-share,
ul.social-share li {
  display: inline-block;
}

.form-control:focus,
.search_box {
  outline: 0;
  box-shadow: none;
}

.title-sol span,
.widget h5,
h4.tit_categorias {
  text-transform: uppercase;
}

div#autocompletar {
  width: initial;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
}

body {
  padding-top: 173px;
  background: #fafafa;
  /* color: #656363; */
  color: #171717;
  font-weight: 300;
  line-height: 19px;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #688e00;
}

h1 {
  font-size: 220%;
}

h2 {
  font-size: 160%;
}

h2#pie_seo {
  font-size: 14px;
}

.controls .fa,
.form-control,
.form-group label,
h2#pie_seo b {
  font-weight: 300;
}

h3 {
  font-size: 120%;
  color: #787878;
  font-weight: 400;
  line-height: 24px;
}

h4 {
  font-size: 140%;
}

input[type="email"],
input[type="number"],
input[type="password"],
input[type="text"] {
  border-color: #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  color: #111;
  font-size: 14px;
  margin-bottom: 10px;
  height: 36px;
}

.bg-warning {
  background-color: #fcf8e3;
}

.container.general {
  padding-bottom: 30px;
}

footer {
  /* background: linear-gradient(
    130deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(74, 119, 0, 1) 100%
  ); */
  padding: 30px 0;
  text-align: center;
  background: var(--grad-oscuro);
}

footer a {
  color: #ddd;
}

footer .foot_netone {
  border-top: 1px solid #ddd;
  padding-top: 5px;
  font-size: 85%;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  footer .foot_netone {
    width: 100%;
  }
}
.hormigafoot {
  text-align: center;
  padding: 0;
  margin-top: 40px;
}

.hormigafoot h2 {
  color: #444;
  display: none;
}

p.iva {
  background: #ddd;
  padding: 5px;
  margin-bottom: 0;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.widget.login [class*="col-"] {
  padding-right: 0;
}

.widget.login p {
  margin: 10px 0 0;
}

.close {
  font-size: 24px !important;
}

.gallery,
div.recom {
  margin-bottom: 20px;
}

.gallery {
  padding: 0 15px;
}

.gallery .img-responsive {
  border: 2px solid #fff;
}

.gallery [class*="col-"] {
  padding: 0;
}

.productFilter.productFilterLook2 small a {
  background: var(--color-oscuro);
  padding: 8px 20px;
  border-radius: 3px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.productFilter.productFilterLook2 small a:hover {
  background: var(--color-marca1);
}

a {
  color: #656363;
  -webkit-transition: color 0.1s, background-color 0.1s;
  -moz-transition: color 0.1s, background-color 0.1s;
  -o-transition: color 0.1s, background-color 0.1s;
  transition: color 0.1s, background-color 0.1s;
}

hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}

a:focus,
a:hover {
  color: #111;
  text-decoration: none;
  outline: 0;
}

body > section {
  padding: 70px 0;
}

@media (max-width: 991px) {
  body > section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  body > section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  body > section {
    padding: 30px 0;
  }
}

.center {
  text-align: center;
  padding-bottom: 20px;
}

ul.nav.navbar-nav#nav {
  /*margin-top: 0px;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -260px;*/
  clear: both;
  width: 100%;
  /* border-top: 1px solid var(--color-marca2);  */
  margin-top: 14px;
  margin-left: -17px;
}

.aparece,
.social {
  text-align: right;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.col-derecha,
.col-izquierda {
  background: #f5f5f5;
}

.fixednav {
  position: fixed;
  top: 0;
  -webkit-animation: mymove 1s;
  animation: mymove 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  width: 100%;
  z-index: 1030 !important;
}

@-webkit-keyframes mymove {
  from {
    top: -40px;
  }

  to {
    top: 0;
  }
}

@keyframes mymove {
  from {
    top: -40px;
  }

  to {
    top: 0;
  }
}

.navbar-default .navbar-nav > li > a {
  color: var(--color-oscuro);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
  padding: 10px 8px;
}

.navbar > .container .navbar-brand {
  margin-left: 0;
}

.top-bar {
  padding: 0px;
  /* background: var(--color-marca1); */
  background: var(--color-oscuro);
  border-bottom: 1px solid #ddd;
  height: 38px;
}

.top-bar a {
  color: var(--color-marca2);
}

.social-share {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-lead-image img {
  float: left;
  margin-right: 25px;
}

ul#menutop li a,
ul.social-share li a {
  display: inline-block;
  padding: 8px 3px;
}

ul#menutop li a:hover,
ul.social-share li a:hover {
  color: var(--color-marca2);
}

.search,
.search i {
  color: #222;
}

.search {
  margin-right: 45px;
}

.fixed-search {
  position: fixed;
  top: 18px;
  z-index: 9999999999 !important;
  left: 50%;
  margin-left: -221px;
}

.fixed-share {
  left: 50%;
  margin-left: -245px;
}

.fixed-share {
  position: fixed;
  top: 18px;
  z-index: 9999999999 !important;
}

.navbar-nav.sm-collapsible .caret,
.navbar-nav.sm-collapsible ul .caret {
  background: var(--color-marca2) !important;
}

@media (max-width: 350px) {
  .ban-top-izquierda {
    max-width: 200px;
  }
}

a.dropdown-toggle.pull-right.hidden-md.hidden-lg {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  div#leyenda_gral_top {
    display: none;
  }

  .social {
    margin-left: -75px !important;
  }

  .caja_func_sup {
    margin-left: 30px !important;
  }

  .navbar-fixed-top .caja_func_sup {
    display: none;
  }

  a.ircarrito::before {
    font-size: 24px !important;
  }

  div#carrito_top {
    margin-left: 245px !important;
  }
}

@media only screen and (max-width: 998px) and (min-width: 828px) {
  .caja_func_sup {
    margin-left: 80px !important;
  }

  div#leyenda_gral_top {
    display: none;
  }

  .social {
    margin-left: -65px !important;
  }

  .navbar-fixed-top .caja_func_sup {
    display: none;
  }
}

@media (max-width: 828px) {
  .navbar-fixed-top .caja_func_sup {
    display: none;
  }

  div#leyenda_gral_top {
    display: none;
  }

  .caja_func_sup {
    margin-left: 10px !important;
  }

  .social {
    margin-left: -85px !important;
  }
}

@media (max-width: 480px) {
  .item-slide {
    position: relative;
  }

  .leyenda_slide {
    text-align: center !important;
    padding-left: 0px !important;
  }

  .slick-slide img {
    display: block;
    max-width: 640px;
  }

  .spot_ofertas_sup img {
    float: left;
    margin-right: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 352px) {
  .slick-slide img {
    display: block;
    max-width: 540px;
  }

  .leyenda_slide {
    font-size: 20px !important;
  }
}

@media (max-width: 1024px) {
  .navbar-default .navbar-nav > li > a {
    padding: 10px;
  }

  .spot_ofertas_sup img {
    width: 460px;
  }

  .navbar-nav > li {
    margin-left: 0px;
  }

  .caja_func_sup {
    margin-left: 165px;
  }

  .social {
    margin-left: -205px;
  }

  div#carrito_top {
    margin-left: 225px !important;
  }

  a.ircarrito::before {
    font-size: 18px !important;
  }
}

@media (max-width: 990px) {
  .spot_ofertas_sup img {
    width: 350px;
  }
}

@media (max-width: 767px) {
  div#leyenda_gral_top {
    display: none;
  }

  .social {
    text-align: center !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin-left: -80px !important;
    z-index: 999999999999999 !important;
    padding-top: 5px !important;
    padding-bottom: 0 !important;
    float: none !important;
  }

  .fixed-search {
    display: none;
  }

  .fixed-share {
    display: none;
  }

  input.search-form {
    margin-right: -17px !important;
  }

  .search {
    margin: 0 auto !important;
    font-size: 11px !important;
  }

  ul.nav.navbar-nav#nav {
    margin-top: 0px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-left: -15px !important;
  }

  .btn.btn-buscartop {
    padding: 8px 10px;
  }
}

.search .input-group {
  display: block;
}

input.search-form {
  background: #fff;
  border: 1px solid #ccc;
  width: 280px;
  color: #999;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 35px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
}

.result-busqueda {
  border: 1px solid #f0f0f0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 35px;
}

.widget.search {
  border: 1px solid red;
}

input.search-form:focus,
input.search-form:hover {
  width: 290px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-default {
  background-color: #fff;
  margin: 0;
  border: none;
  -webkit-box-shadow: 0 11px 8px -10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 11px 8px -10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 25px -30px rgba(0, 0, 0, 0.8);
  margin-top: -3px;
}

.ban-top-izquierda img {
  margin-top: -5px;
  margin-bottom: -5px;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 0;
  }

  ul.nav.navbar-nav {
    margin-top: 25px;
    margin-left: 60px;
  }

  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  input.search-form {
    width: 150px;
  }

  input.search-form:focus,
  input.search-form:hover {
    width: 170px;
  }

  .navbar-nav .open .dropdown-menu .dropdown-header,
  .navbar-nav .open .dropdown-menu > li > a {
    padding-left: 15px;
  }

  .navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #ddd;
  }

  .ico_usuario,
  a.ircarrito:before {
    font-size: 20px !important;
    top: 0px !important;
  }
}

.navbar-header {
  padding-top: 10px;
}

.dropdown-cart {
  background: #fff !important;
  color: var(--color-marca1) !important;
}

.dropdown-cart a {
  color: var(--color-marca1) !important;
}

#carrito_top,
#login_sup,
#micuenta_top,
#nombre_usuario {
  text-align: right;
  line-height: 2em !important;
  margin-right: 10px !important;
}

li#carrito_top {
  margin-bottom: 10px;
}

li#login_sup {
  margin-bottom: 10px;
}

li.text-center.irapedido a {
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
}

ul#menutop {
  font-size: 15px;
  letter-spacing: 0.2px;
  font-weight: 700;
  /* display: none; */
}

.dropdown-menu {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 7px !important;
  padding: 0;
  /* background-color: var(--color-marca1); */
  background-color: var(--color-oscuro);
  color: #fff;
  font-size: 12px;
}

.dropdown-menu > li > a {
  padding: 10px 20px;
  color: #fefefe;
}

.dropdown-menu > li > a:hover {
  color: #fff;
  background-color: var(--color-marca1);
  border-radius: 7px;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: var(--color-marca1);
  border-color: var(--color-marca1);
  color: #fff;
}

h4.tit_categorias {
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
  font-size: 16px;
  color: #4e4e4e;
}

.redes .fa {
  font-size: 26px;
  color: #999;
  margin: 0 0.2em;
}

.page-scroll {
  font-size: 40px;
  display: none;
  right: 20px !important;
  width: 40px !important;
}

.aparece {
  display: block;
  width: 40px !important;
  position: fixed;
  bottom: 35px;
  -webkit-animation: myscroll 1s;
  animation: myscroll 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  z-index: 999 !important;
}

a.page-scroll.aparece:hover {
  color: #555555;
}

@-webkit-keyframes myscroll {
  from {
    bottom: -200px;
  }

  to {
    bottom: 20px;
  }
}

@keyframes myscroll {
  from {
    bottom: -200px;
  }

  to {
    bottom: 20px;
  }
}

.in_seguridad {
  width: 100% !important;
  margin-left: 5px !important;
}

textarea#message {
  resize: none;
  padding: 10px;
}

.search_box {
  background-position: 97%;
  background-repeat: no-repeat;
  border-color: #dedede;
  height: 48px;
}

.spot_top .img-responsive,
spot_bot .img-responsive {
  margin: 15px auto;
}

.spot_ofertas_inf .img-responsive {
  float: left;
  border: 2px solid #fff;
  margin-right: 8px;
  margin-top: 20px;
}

.list-group {
  margin-bottom: 0;
}

.msj_error,
.widget {
  margin-bottom: 20px;
}

#nav2 .list-group .in {
  border-left: 1px solid #ddd;
  margin-left: 10px;
}

a.list-group-item:focus,
a.list-group-item:hover {
  text-decoration: none;
  background-color: transparent;
}

.list-group .list-group-item {
  border-width: 0;
  padding-right: 5px;
}

.list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.list-group .list-group-item:last-child {
  border-bottom: 0;
}

.owl-prev {
  left: 0 !important;
}

.owl-next {
  right: 0 !important;
}

.form-group label {
  color: #4e4e4e;
  font-size: 16px;
}

.form-group .form-control {
  padding: 7px 12px;
  border-color: #cccccc;
  box-shadow: none;
  border-radius: 25px;
}

textarea#consulta {
  resize: none;
  padding: 10px;
}

.msj_error {
  padding: 15px;
  border: 1px solid #ebccd1;
  border-radius: 4px;
  color: #a94442;
  background-color: #f2dede;
}

.widget {
  border-bottom: 0;
  padding-bottom: 20px;
  padding-left: 0;
}

.widget.proy_lateral.right1,
div#servicios {
  border-right: 1px solid #ddd;
}

div#servicios {
  margin-top: -20px;
}

.widget.proy_lateral.right1 .cajar {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.widget.proy_lateral.right1 h4 {
  display: none;
}

.widget h5 {
  color: #000;
}

@media (max-width: 767px) {
  .caja-busqueda-izquierda {
    display: none;
  }
}

.social .img-responsive {
  display: inline;
}

.brand {
  text-align: left !important;
  font-size: 22px;
  padding-left: 20px;
  line-height: 50px !important;
}

a.dropdown-toggle {
  padding-top: 7px;
}

.dropdown-cart {
  background: #999;
  color: #fff;
  padding-bottom: 0;
  top: 30px;
}

.dropdown-cart a {
  color: #fff;
}

.scroll_der,
.scroll_izq {
  width: 180px;
}

.scroll_der ul,
.scroll_izq ul {
  text-align: center;
  padding: 0;
  list-style: none;
  margin: 0 auto;
}

.scroll_der li,
.scroll_izq li {
  margin: 0 5px;
  text-align: center;
  padding: 0;
}

.scroll_inf,
.scroll_sup {
  padding: 30px 0;
  margin: 0 auto;
}

.scroll_inf ul,
.scroll_sup ul {
  text-align: center;
  padding: 0;
  list-style: none;
  margin: 0 auto;
}

.clearfix {
  float: none;
  clear: both;
}

@media (max-width: 767px) {
  .scroll_inf,
  .scroll_sup {
    padding: 30px 0;
    width: 92%;
  }
}

.carousel-control {
  background-image: none !important;
  filter: none !important;
  font-size: 36px;
}

.carousel-control .fa-arrow-left,
.carousel-control .fa-arrow-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
  position: absolute;
  top: 40%;
  left: 20px;
  z-index: 5;
  display: inline-block;
}

.carousel-control .fa-arrow-right,
.carousel-control .icon-next {
  left: auto;
  right: 20px !important;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  top: 30px;
  left: 50%;
  margin-left: -500px;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  text-align: left;
  text-shadow: none;
}

.carousel-caption h3 {
  font-size: 46px;
  font-weight: 300;
  color: #2778bc;
  text-shadow: none;
  text-align: left;
  line-height: 40px;
}

.carousel-caption h3 span {
  font-size: 55%;
  color: #222;
  margin-top: 20px;
  line-height: 26px;
  display: block;
}

@media (max-width: 767px) {
  .carousel-control {
    font-size: 20px;
  }

  .carousel-control .fa-arrow-left,
  .carousel-control .fa-arrow-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    left: 5px !important;
  }

  .carousel-control .fa-arrow-right,
  .carousel-control .icon-next {
    right: 5px !important;
    text-align: right;
  }

  .carousel-caption {
    position: absolute;
    right: 15%;
    top: 0;
    left: 5%;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: left;
  }

  .carousel-control .fa-arrow-left,
  .carousel-control .fa-arrow-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    position: absolute;
    top: 40%;
    z-index: 5;
    display: inline-block;
  }

  .carousel-caption h3 {
    font-size: 30px;
    line-height: 30px;
  }

  .carousel-caption h3 span {
    font-size: 70%;
    color: #222;
    margin-top: 10px;
    line-height: 25px;
  }
}

@media (max-width: 480px) {
  .carousel-indicators {
    display: none !important;
  }

  .carousel-caption h3 {
    font-size: 20px;
    line-height: 18px;
  }

  .carousel-caption h3 span {
    font-size: 70%;
    color: #222;
    margin-top: 10px;
    line-height: 15px;
  }
}

.controls {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 25px;
}

.controls .fa {
  margin-left: 10px;
  color: #999;
}

.ircarrito {
  position: relative;
}

#cantidad_carrito.badge {
  position: absolute;
  left: 15px;
  top: -15px;
  background: var(--color-marca2);
}

.ico_usuario,
a.ircarrito:before {
  font-family: FontAwesome;
  content: "\f291";
  display: inline-block;
  font-size: 24px;
  position: relative;
  top: 4px;
  padding-right: 10px;
}

#login_sup:before,
#nombre_usuario:before,
.cambiar_cuenta_top:before,
.registracion:before,
.terminar_sesion_top:before {
  font-family: FontAwesome;
  content: "\f2bd";
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 3px;
  padding-right: 0;
  margin-left: 10px;
}

#login_sup:before {
  font-family: FontAwesome;
  content: "\f090";
}

.registracion:before {
  content: "\f234";
}

.cambiar_cuenta_top:before {
  content: "\f013";
}

.terminar_sesion_top:before {
  content: "\f08b";
}

#carrito_top.cart_top a.ircarrito:before,
#carrito_top.cart_top span.ico_usuario {
  font-family: FontAwesome;
  content: "\f291";
  display: inline-block;
  font-size: 14px;
  position: relative;
  top: 0;
  padding-right: 0 !important;
}
/*
.caja_func_sup {
  margin-top: 87px;
  line-height: 35px;
  font-size: 12px;
  position: absolute;
  left: 50%;
  margin-left: 150px;
  color: var(--color-marca1);
}
*/
.caja_func_sup {
  margin-top: 0;
  line-height: 35px;
  font-size: 12px;
  position: relative;
  left: -20px;
  margin-left: 0;
  /* color: var(--color-marca1); */
  color: #171717;
  top: 70px;
  display: flex;
}
.navbar-fixed-top .caja_func_sup {
  margin-left: 200px;
}

div#carrito_top {
  /* margin-top: -35px; */
  /* margin-left: 270px; */
  margin: 0 !important;
}

.caja_func_sup.pull-right.hidden-xs a {
  /* color: var(--color-marca1); */
  color: #171717;
}

#carrito_top,
#login_sup,
#micuenta_top,
#nombre_usuario {
  text-align: right;
  line-height: 1.2em;
}

#carrito_top.cart_top,
#login_sup.cart_top,
#micuenta_top.cart_top,
#nombre_usuario.cart_top {
  text-align: center;
  line-height: 20px;
}

#nombre_usuario.cart_top span.ico_usuario {
  display: none;
}

.social {
  text-align: right;
  position: absolute;
  top: 60px;
  right: auto;
  left: 30%;
  margin-left: 0;
  z-index: 11 !important;
}

.dropdown-cart .irapedido a {
  background: #aac961;
}

.modal-header-primary {
  color: #fff;
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
  background-color: #000;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
}

.modal-body,
.modal-content {
  background: #fff;
}

.modal-header {
  border: none;
}

.modal-footer {
  border: none;
  padding: 0;
}

.modal-body {
  padding: 15px;
  overflow: hidden;
  margin: 0 !important;
  width: 100% !important;
  text-align: center;
  font-size: 13px;
}

.modal-body h3 {
  margin-top: 0;
  font-size: 140%;
  color: #222;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.loginmodal-container,
.modal-prod-agregado-container {
  width: 100% !important;
  margin: 0 auto;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.loginmodal-container {
  padding: 25px;
  max-width: 350px;
  background-color: #f7f7f7;
}

.modal-prod-agregado-container {
  padding: 0;
  max-width: 450px;
  background-color: none;
}

.modal span#nombre_prod_alert {
  font-size: 120%;
  font-weight: 600;
  color: #000;
}

.modal .fa.close {
  position: absolute !important;
  right: 10px !important;
  top: 10px !important;
  z-index: 999 !important;
}

.modal .fa {
  position: relative !important;
  right: 0 !important;
  top: 0 !important;
}

.modal h5 {
  font-weight: lighter;
  padding: 0;
  position: relative;
  border: none;
  margin: 0 0 15px !important;
  font-size: 24px !important;
  line-height: 24px !important;
  letter-spacing: -1px;
  color: var(--color-oscuro);
}

.modal h5 span {
  background: #f7f7f7 !important;
  padding: 15px !important;
}

.modal-header-primary h5 {
  color: #fff;
  font-weight: 400;
  font-size: 20px !important;
}

.modal-prod-agregado-container h5 {
  font-size: 1.2em;
  margin: 15px 0 !important;
}

.loginmodal-container input[type="submit"] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.loginmodal-container input[type="text"],
input[type="password"] {
  height: 35px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.loginmodal-container input[type="text"]:hover,
input[type="password"]:hover {
  border: 1px solid #0070b7;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.loginmodal {
  text-align: center;
  height: 36px;
  padding: 0 8px;
}

.loginmodal-submit {
  border: 0;
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  background-color: #4d90fe;
  padding: 17px 0;
  font-family: roboto;
  font-size: 14px;
}

.loginmodal-submit:hover {
  border: 0;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  background-color: #357ae8;
}

.loginmodal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
}

.login-help {
  font-size: 12px;
}

.title-sol {
  font-family: "Roboto", sans-serif;
  color: #454545;
  border-bottom: 2px solid #ddd;
  border-top: 2px solid #ddd;
  font-size: 22px;
  line-height: 24px;
  margin: 10px 0;
  padding: 0;
}

.title-sol span {
  color: #454545;
  display: inline-block;
  padding: 5px 15px 5px 0;
  width: auto;
}

.style2 .title-sol,
.title-sol.style2 {
  font-size: 27px;
  font-weight: lighter;
  line-height: 36px;
  margin: 30px 0 20px;
  padding: 0;
  position: relative;
  border: none;
}

.title-sol-style2,
.title-sol.style2 {
  position: relative;
}

.style2 .title-sol:after,
.title-sol-style2:after,
.title-sol.style2:after {
  background: #ddd;
  content: "";
  display: block;
  height: 1px;
  margin-left: 10%;
  position: absolute;
  top: 28px;
  width: 80%;
  z-index: 1;
}

.title-sol-style2 span,
.title-sol.style2 span {
  background: #fff;
  display: inline-block;
  padding: 10px;
  position: relative;
  width: auto;
  z-index: 2;
}

.style2 .title-sol span,
.title-sol.style2 span {
  color: #7e807c;
  display: table;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 5px 15px;
  text-align: center;
  text-transform: uppercase;
  width: auto;
  margin: 0 auto;
  font-weight: 400;
}

.cajasnove .fecha_nov {
  font-size: 80%;
}

.cajasnove {
  margin-bottom: 15px;
}

.cajasnove h4 {
  margin-top: 0;
}

.cajasnove .des_nov {
  margin-top: 7px;
}

.cajasnove .des_nov p {
  margin-bottom: 0;
}

.cajasnove .mas_nov a {
  font-size: 13px;
  color: #3276b1;
  display: block;
  text-align: right;
}

.image,
.item.list-view .image,
.product,
div.quickview {
  text-align: center;
}

.novedades-home-row .vertodos-noticias {
  margin: 0 auto;
  background: #fafafa;
  color: #454545;
  text-align: center;
  padding: 5px;
  border: 1px solid #ddd;
  font-size: 12px;
  font-weight: 600;
}

.cajasnuevo,
.cajasoferta {
  border: 0 solid #ddd;
  padding: 5px;
}

.novedadesrow.row,
.ofertasrow.row {
  margin-left: -5px;
  margin-right: -5px;
}

.productslider {
  width: 100%;
  display: block;
}

.item {
  display: block;
  height: auto;
  transition: all 0.3s ease 0;
  -moz-transition: all 0.3s ease 0;
  -webkit-transition: all 0.3s ease 0;
  -o-transition: all 0.3s ease 0;
  -ms-transition: all 0.3s ease 0;
}

.owl-theme .owl-controls .owl-page span {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) inset;
}

.owl-theme .owl-controls .owl-has-nav {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  height: 22px;
  position: relative;
  width: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 1;
}

.owl-has-nav:hover {
  opacity: 0.5;
}

.owl-has-nav i {
  position: absolute;
  top: 0;
}

.owl-has-nav.owl-next i {
  right: 0;
}

.owl-has-nav.owl-prev i {
  left: 0;
}

.product {
  transition: all 0.3s ease 0;
  -moz-transition: all 0.3s ease 0;
  -webkit-transition: all 0.3s ease 0;
  -o-transition: all 0.3s ease 0;
  -ms-transition: all 0.3s ease 0;
  border: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  padding-bottom: 10px;
}

.product:hover {
  background: #fafafa;
}

h3.leyendaConStock,
h3.leyendaSinStock {
  clear: both;
  margin: 5px auto;
  font-size: 100%;
  color: #171717;
  border-radius: 25px;
  width: fit-content;
  padding: 1px 10px;
}

#tabla_listados h3.leyendaConStock,
#tabla_listados h3.leyendaSinStock {
  clear: both;
  margin: 0;
  font-size: 14px;
}

.product h3.leyendaConStock:before,
.product h3.leyendaSinStock:before,
h3.leyendaConStock:before,
h3.leyendaSinStock:before {
  content: "\f056";
  display: inline-block;
  text-rendering: auto;
  margin-right: 3px;
}

h3.leyendaSinStock:before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  color: red;
}

.product h3.leyendaSinStock:before,
h3.leyendaConStock:before {
  font: normal normal normal 14px/1 FontAwesome;
}

h3.leyendaConStock:before {
  font-size: inherit;
  color: green;
}

.product h3.leyendaSinStock:before {
  font-size: inherit;
  color: #c00;
  content: "\f057";
}

.product h3.leyendaConStock:before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  color: var(--color-marca2);
  content: "\f058";
}

.discount,
.new-product,
.product h4 {
  font-family: Calibri, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.featuredImgLook2 .inner:hover,
.product:hover {
  border: 1px solid #4ec67f;
}

.product .marca {
  display: block;
  padding: 5px 0;
}

.product .marca_span {
  font-size: 90%;
  font-style: italic;
}

.image,
.image a {
  display: block;
  overflow: hidden;
}

.image {
  position: relative;
  width: 100%;
  max-height: 240px;
  transition: all 0.5s ease 0;
  -moz-transition: all 0.5s ease 0;
  -webkit-transition: all 0.5s ease 0;
  -ms-transition: all 0.5s ease 0;
  -o-transition: all 0.5s ease 0;
}

.prod-top {
  margin-bottom: 25px;
}

.prod-top .image,
.prod-top .image a img {
  max-height: 100%;
}

.prod-top .product {
  padding-bottom: 0;
}

.image a img {
  transition: all 0.5s ease 0;
  -moz-transition: all 0.5s ease 0;
  -webkit-transition: all 0.5s ease 0;
  -ms-transition: all 0.5s ease 0;
  -o-transition: all 0.5s ease 0;
  max-height: 240px;
  margin: 0 auto;
}

.product:hover .image a img {
  transform: scale(1.15) rotate(-1.5deg);
  -webkit-transform: scale(1.1) rotate(-1.5deg);
  -moz-transform: scale(1.1) rotate(-1.5deg);
  -ms-transform: scale(1.1) rotate(-1.5deg);
  -o-transform: scale(1.1) rotate(-1.5deg);
}

.recomendadosrow .image a img {
  max-height: auto !important;
  max-width: 100%;
}

.recomendadosrow .product:hover .image a img {
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
}

.promotion {
  position: absolute;
  z-index: 8;
  bottom: 20px;
  left: 0;
  height: 24px;
  width: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  line-height: 18px;
}

.description {
  margin: 5px auto;
}

.prod-top .description h4 {
  margin: 10px 0;
}

.description a.masinfo20 {
  display: none;
}

.discount,
.new-product {
  display: inline-block;
  float: left;
  font-size: 16px;
  font-weight: lighter;
  height: 100%;
}

.price,
.product h4,
.product h4 a {
  font-weight: 700;
}

.new-product {
  color: #fff;
  padding: 3px 10px;
  background-color: #4ec67f !important;
  background-color: rgba(78, 198, 127, 0.95) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f24ec67f, endColorstr=#f24ec67f) !important;
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f24ec67f, endColorstr=#f24ec67f) !important;
}

.discount {
  background: #eb5e58;
  border-radius: 0 4px 4px 0;
  color: #fff;
  padding: 3px 5px;
}

.product h4,
.product h4 a {
  color: #3a3a3a;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

.product h4 {
  margin: 0;
  display: block;
  line-height: 18px;
}

.prod-top .product h4 {
  margin-top: 20px;
}

.prod-top .product h4,
.prod-top .product h4 a {
  font-size: 22px;
  line-height: 22px;
}

.price {
  font-size: 18px;
  color: #616161;
}

@media (max-width: 767px) {
  .CartProduct .price {
    font-size: 14px;
  }
}

.action-control {
  border: 0;
  display: block;
  height: auto;
  padding: 5px 0 15px;
  width: 100%;
}

.action-control a {
  cursor: pointer;
}

.action-control a.active,
.action-control a:hover {
  color: #fff;
  background: #27ae60;
}

.cart a {
  font-size: 20px;
  color: #454545;
  margin: 0;
  display: inline-block;
  transition: all 0.3s ease-out 0;
  -webkit-transition: all 0.3s ease-out 0;
  -moz-transition: all 0.13s ease-out 0;
  -ms-transition: all 0.3s ease-out 0;
  -o-transition: all 0.3s ease-out 0;
}

div.quickview {
  display: block;
  margin-top: 40%;
  max-height: 50px;
  position: absolute;
  width: 100%;
  z-index: 2;
  visibility: hidden;
}

.sp-large,
.sp-wrap,
.swatches li {
  position: relative;
}

.product:hover div.quickview {
  visibility: visible;
}

.btn-quickview {
  border-radius: 2px;
  font-family: Calibri, Helvetica Neue, Arial, sans-serif;
  letter-spacing: 2px;
  color: #fefefe !important;
  text-transform: uppercase;
  background: var(--color-marca1);
  /* background: rgba(255, 255, 255, 0.9); */
  border: 1px solid var(--color-marca1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-o-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  left: auto;
  min-width: 100px;
  max-height: 40px;
  height: 40px !important;
  opacity: 1;
  -webkit-opacity: 1;
  -ms-opacity: 1;
  padding: 10px;
  visibility: hidden;
  width: auto;
  display: inline-block !important;
  z-index: 2;
  transform: scale(0.75);
  -webkit-transform: scale(0.75);
  -o-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -moz-transform: scale(0.75);
  transition: all 0.3s ease 0;
  -webkit-transition: all 0.3s ease 0;
  -moz-transition: all 0.3s ease 0;
  -ms-transition: all 0.3s ease 0;
  border-radius: 25px;
}

#precant,
.swatches li {
  box-shadow: 1px 1px 2px #c5c5c5;
}

.product:hover .btn-quickview {
  visibility: visible;
  opacity: 0.85;
  -webkit-opacity: 0.85;
  -ms-opacity: 0.85;
  transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
}

@media (max-width: 460px) {
  div.quickview {
    margin-top: 25%;
  }
}

@media (max-width: 400px) {
  div.quickview {
    margin-top: 35%;
  }
}

.product > .btn-quickview:hover {
  opacity: 0.95;
}

@media screen and (max-width: 440px) {
  .productFilter > .pull-left,
  .productFilter > .pull-right {
    display: block;
    width: 100%;
    text-align: center;
  }

  .productFilter > p {
    margin-bottom: 5px;
    margin-top: 0;
  }

  .productFilter > .pull-right > div {
    display: inline-block;
    float: none !important;
    width: 50%;
  }

  .productFilter > .pull-right > div.change-order .form-control {
    float: left;
    font-size: 12px;
  }

  .productFilter > .pull-right > div.change-view {
    margin-right: 0 !important;
    width: auto !important;
  }
}

.change-view {
  margin-right: 10px;
}

.subCategoryTitle {
  font-size: 13px;
  color: #444;
  font-weight: 600;
}

.change-view a {
  border: 1px solid #ccc;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  height: 34px;
  line-height: 23px;
  margin-left: 5px;
  overflow: hidden;
  padding: 5px 8px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.productFilter input,
.productFilter select {
  font-size: 14px;
  font-weight: 500;
}

.item.list-view {
  display: block;
  height: auto !important;
  width: 100% !important;
  overflow: hidden;
  margin-bottom: 20px;
}

.item.list-view .product {
  padding: 10px;
}

.item.list-view h3.leyendaConStock,
.item.list-view h3.leyendaSinStock {
  margin: 0;
}

.item.list-view .image .img-responsive {
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
  transition: all 0.5s ease 0;
  -moz-transition: all 0.5s ease 0;
  -webkit-transition: all 0.5s ease 0;
  -o-transition: all 0.5s ease 0;
  -ms-transition: all 0.5s ease 0;
}

.item.list-view .action-control,
.item.list-view .description,
.item.list-view .price {
  text-align: right;
}

.item.list-view .image a {
  display: block;
  height: 100%;
  max-height: 100% !important;
}

.item.list-view .image img {
  max-height: 260px;
  width: auto !important;
}

.item.list-view h4 {
  height: auto;
  margin: 0 0 5px;
  font-size: 24px;
}

.item.list-view h4 a {
  font-weight: 600;
}

.item.list-view .description p {
  text-align: right;
  min-height: 10px;
}

.item.list-view .price {
  font-size: 22px;
}

.item.list-view .product .btn-compra {
  float: right !important;
}

.pagination {
  margin-top: 10px;
}

.ley_sol_productos {
  display: none;
}

div#hormiga h1,
ul.lista-filtros-aplicados {
  font-weight: 600;
  font-size: 16px;
  color: #4e4e4e;
  font-family: Calibri;
  text-transform: uppercase;
  margin-bottom: 0;
}

ul.lista-filtros-aplicados {
  margin-top: 10px;
  color: #999;
}

.hormigafoot h2 {
  font-size: 14px;
  margin: 0 0 10px;
}

.recomendadosrow {
  padding-left: 15px;
  padding-right: 15px;
}

h5.preguntas_clientes,
h5.recomendados,
h5.tit_form_detalle {
  font-size: 24px;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 0;
  font-weight: 400;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  letter-spacing: -1px;
  margin-top: 20px;
  text-transform: uppercase;
}

.breadcrumb {
  border: 1px solid #ddd;
  background: 0 0;
}

.sp-large a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}

.sp-large {
  overflow: hidden;
}

.sp-large a {
  display: inline-block;
}

.style3 .sp-large {
  border: 1px solid #ddd;
  max-width: 100% !important;
}

.sp-wrap {
  border: none !important;
  width: 100%;
  background: 0 0 !important;
  display: none;
  line-height: 0;
  font-size: 0;
  margin: 0 25px 15px 0;
  float: left;
}

.product-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.25px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: 0;
  color: var(--color-oscuro);
}

.product-price {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: normal;
  color: var(--color-marca1);
}

.price-standard,
.precio-tachado {
  color: #999;
  font-size: 90%;
  margin-right: 10px;
  text-decoration: line-through;
  text-align: center;
  width: 100%;
  display: block;
}

div#detalle .detalle_producto .price-standard,
div#detalle .detalle_producto .precio-tachado {
  display: inline-block;
  text-align: left;
}

span.precio-tachado {
  display: none;
}

.price-sales,
.precio-promo {
  font-size: 120%;
  color: red;
}

.cart-actions .btn-cart,
.cart-actions .wishlist,
.cart-actions button,
.product-code {
  font-family: Calibri, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  font-weight: lighter;
  text-transform: uppercase;
}

.product-code {
  letter-spacing: 1px;
  margin: 0 0 5px;
  padding: 0;
}

.cart-actions {
  margin-top: 0;
  margin-bottom: 12px;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  clear: both;
}

.cart-actions .btn-cart,
.cart-actions .wishlist,
.cart-actions button {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  line-height: 1em;
  margin: 0;
  padding: 10px 20px;
  float: right;
  transition: all 0.25s ease 0;
  -moz-transition: all 0.25s ease 0;
  -webkit-transition: all 0.25s ease 0;
  -o-transition: all 0.25s ease 0;
  -ms-transition: all 0.25s ease 0;
}

.col-form-label {
  padding-top: 7px;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 700 !important;
}

button.first {
  margin-right: 20px;
  margin-bottom: 10px;
}

.cart-actions input[type="button"] {
  background: #4ec67f;
  border: 2px solid #27ae60;
  margin-top: -60px;
  margin-left: 200px;
}

.cart-actions button:hover {
  background: #fff;
  color: #2a2a2a;
  border: 2px solid #4ec67f;
}

.incaps {
  display: block;
  float: none;
  font-family: Calibri, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 20px 0 0;
  text-transform: uppercase;
}

.semaf_amarillo,
.semaf_rojo,
.semaf_verde {
  min-width: 10px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
}

.semaf_verde {
  background-color: #58d68d;
  border-color: #58d68d;
  color: #fff;
}

.semaf_amarillo {
  color: #8a6d3b;
  background-color: #faebcc;
  border-color: #faebcc;
}

.semaf_rojo {
  color: #a94442;
  background-color: #ebccd1;
  border-color: #ebccd1;
}

.estrella,
.puntuacion,
.titvalor {
  float: left;
}

.incaps i {
  font-size: 20px;
}

.color-in {
  color: #4cc94a;
}

.color-out {
  color: red;
}

.socialIcon a,
.stButton .stLarge {
  -ms-behavior: none !important;
  color: #fff;
  display: inline-block;
  text-align: center;
}

.product-share {
  clear: both;
  display: inline-block;
  width: 100%;
  margin-top: 15px;
  font-weight: 700;
}

.socialIcon a {
  background: #ccc !important;
  font-size: 22px;
  padding-top: 5px;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  transition: all 0.15s ease-in-out 0;
  -moz-transition: all 0.15s ease-in-out 0;
  -webkit-transition: all 0.15s ease-in-out 0;
  -o-transition: all 0.15s ease-in-out 0;
  -ms-transition: all 0.15s ease-in-out 0;
}

.stButton .stLarge {
  background: 0 0 !important;
  font-size: 0;
  padding: 0;
  margin-right: 0;
  width: 0 !important;
  height: 0 !important;
  transition: all 0.15s ease-in-out 0;
  -moz-transition: all 0.15s ease-in-out 0;
  -webkit-transition: all 0.15s ease-in-out 0;
  -o-transition: all 0.15s ease-in-out 0;
  -ms-transition: all 0.15s ease-in-out 0;
}

.stButton {
  margin: 0 !important;
  background: #ccc;
  width: 35px;
  height: 35px;
  padding-top: 10px;
  text-align: center !important;
  top: 2px !important;
}

.st_facebook_large .stButton:after {
  font-family: fontawesome;
  color: #fff;
  font-size: 22px;
  content: "\f09a";
}

.st_twitter_large .stButton:after {
  font-family: fontawesome;
  color: #fff;
  font-size: 22px;
  content: "\f099";
}

.st_googleplus_large .stButton:after {
  font-family: fontawesome;
  color: #fff;
  font-size: 22px;
  content: "\f1a0";
}

.socialIcon a:hover {
  color: #fff;
}

.recommended {
  border-top: solid 2px #ddd;
  margin-top: 20px;
  padding-top: 20px;
}

.recommended h1 {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

#valoracion {
  margin-top: 15px;
}

#valoracion br[clear="all"] {
  clear: none !important;
}

.puntuacion {
  cursor: pointer;
  margin-right: 5px;
  display: block;
  overflow: visible;
}

#printArea,
.caps,
.detalle-form,
.estrella,
.img-block,
.img-link,
.lista-medios-pago {
  overflow: hidden;
}

.puntuacion:after {
  content: ".";
  display: block;
  height: 0;
  width: 0;
  visibility: hidden;
}

.estrella {
  width: 20px;
  height: 18px;
  display: inline-block;
  text-indent: -999em;
  cursor: pointer;
}

.estrella_der,
.estrella_izq {
  width: 10px;
}

.estrella,
.estrella a {
  background: url(../imagenes/estrella_sprite3.png) no-repeat;
}

.estrella_izq,
.estrella_izq a {
  background: url(../imagenes/estrella_sprite_izq3.png) no-repeat;
}

.estrella_der,
.estrella_der a {
  background: url(../imagenes/estrella_sprite_der3.png) no-repeat;
}

.estrella a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: 0 0;
}

.product-tab,
.rating span,
.swatches li {
  display: inline-block;
}

div.puntuacion div.on a {
  background-position: 0 -25px;
}

div.puntuacion div a:hover,
div.puntuacion div.hover a {
  background-position: 0 -50px;
}

div#msjvaloracion {
  text-align: left;
  margin-top: 15px;
}

.ratingInfo {
  margin-left: 10px;
}

.nav-tabs {
  margin-bottom: 20px;
  border-bottom: 3px solid #bfc9ca;
}

.product-tab {
  width: 100%;
  clear: both;
}

.nav-tabs li a {
  font-family: Calibri, sans-serif;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  padding: 10px !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li:hover > a {
  background: #bfc9ca;
}

.nav-tabs > li,
.nav-tabs > li.active {
  background: 0 0;
}

.nav-tabs > li > a {
  border: 0;
  border-radius: 0;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li:hover > a {
  color: #fff !important;
  border: 0;
  border-radius: 0;
}

.color-details {
  margin-top: 14px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.swatches {
  margin: 0.5em 0;
  padding-left: 0;
  list-style: none;
}

.swatches .selected,
.swatches li:hover {
  border: 2px solid #ddd;
}

.swatches li {
  margin: 2px 1px;
  vertical-align: top;
  list-style: none;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  height: 40px;
  text-align: center;
  transition: all 0.25s ease 0;
  width: 55px;
}

.swatches li img {
  width: 100%;
}

.swatches .selected:after,
.swatches li:after {
  content: "\f00c";
  font-family: fontawesome;
  font-weight: lighter;
  transition: font-size 0.25s ease 0.1s;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.swatches li.li-color {
  width: 33px;
  height: 33px;
  overflow: hidden;
}

.swatches.talle li {
  border: 2px solid #f0f0f0;
  background: #f5f5f5;
  padding: 5px;
}

.swatches li:after {
  font-size: 0;
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
  color: #fff;
}

.swatches .selected:after {
  height: 33px;
  width: 33px;
  font-size: 120%;
  color: #4ec67f;
}

.productFilter {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  clear: both;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 7px;
  padding-top: 10px;
  margin-top: 10px;
}

.productFilter p {
  display: block;
  font-size: 14px;
  margin-top: 6px;
}

.marca_imagen {
  position: relative;
  top: 0;
  border: 0 solid #ddd;
  z-index: 1;
  right: 0;
}

.marca_imagen img {
  max-width: 200px;
}

.spacer {
  padding: 20px 0;
}

#precant {
  border: 0 solid #ddd;
  padding: 5px;
  font-size: 12px;
}

#precant h5 {
  display: none;
}

#precant .table {
  margin: 0;
}

.orderStep {
  clear: both;
  display: inline-block;
  height: auto;
  padding: 0;
  margin-bottom: 30px;
  width: 100%;
}

.orderStep li {
  float: left;
  margin: 0;
  min-height: 55px;
}

.orderStep li.active {
  color: #fff;
  position: relative;
}

.orderStep li.active:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-width: 10px;
  margin-left: -10px;
  border-top-color: #4ec67f !important;
  display: none;
}

.orderStep li {
  display: inline-block;
  height: 100%;
  line-height: normal;
  padding: 20px 0 0;
  text-align: center;
  vertical-align: middle;
  width: 33.33333333%;
  text-transform: uppercase;
  font-size: 13px;
}

.orderStep li i {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  display: block;
  font-size: 20px;
  height: auto;
  left: 0;
  line-height: 40px;
  margin-top: -20px;
  padding: 0;
  text-align: center;
  width: auto;
  float: none !important;
}

.orderStep li.active i {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.orderStep li span {
  display: block;
  padding: 5px 0;
}

.orderStep li.active {
  background: #4ec67f;
}

.orderStep li {
  background: #66de97;
}

.cartFooter,
.cartTableHeader {
  background: var(--color-marca1);
  color: #fff;
}

.caps {
  border-top: 0 none;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 16px;
  padding: 0 0 16px;
  text-align: right;
  text-transform: uppercase;
}

h1.tit-checkout {
  margin: 0;
  padding: 0;
}

.rightSidebar #cart-summary {
  margin-top: 0;
}

.rightSidebar #cart-summary tr:first-child td {
  border: none;
}

.cartMiniTable {
  border: 1px solid #ddd;
  padding: 10px;
}

.couponForm {
  line-height: 16px;
}

.couponForm input[type="text"] {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  height: 35px;
}

.ley_cupon {
  font-size: 90%;
  display: block;
  margin-bottom: 5px;
}

#tabla_listados p,
.CartDescription h4 {
  margin: 0;
}

.couponForm .btn {
  border-radius: 0 3px 3px 0;
}

p.success div.success,
span.success {
  color: #8bb418;
}

#total-price {
  font-size: 18px;
  font-weight: 700;
}

label.error {
  color: #e74c3c;
  font-size: 90%;
}

.quanitySniper {
  height: 30px;
  padding: 0;
  text-align: center;
  width: 40px;
}

.content_marcas {
  margin-bottom: 30px;
}

.content_marcas img,
.lista-medios-pago li img {
  height: auto;
  max-width: 100%;
}

tr.CartProduct td,
tr.CartProduct th {
  text-align: center;
  padding: 10px 0;
}

#tabla_listados tr.CartProduct td,
#tabla_listados tr.CartProduct th {
  text-align: left;
  padding: 5px 10px;
}

@media (max-width: 767px) {
  tr.CartProduct td,
  tr.CartProduct th {
    font-size: 11px;
  }
}

tr.CartProduct td:nth-child(2) {
  text-align: left;
}

.CartProduct .delete i {
  font-size: 2.5em;
  position: relative;
  top: -5px;
}

@media (max-width: 767px) {
  .CartProduct .delete i {
    font-size: 20px;
  }
}

.CartProductThumb img {
  width: 86px;
  max-width: 100% !important;
}

tr.CartProduct {
  border-bottom: 1px solid #e7e9ec;
}

.cartTable {
  border-top: solid 1px #ebedef;
}

.cartFooter {
  padding: 20px;
  border-top: solid 1px #eee;
  display: inline-block;
  width: 100%;
}

#cart-summary tr td:nth-child(2) {
  text-align: right;
}

.boxes-title-1,
.lista-medios-pago li,
.product-slide-img,
.product-slide-left,
.ps-nav {
  text-align: center;
}

.CartDescription h4 a {
  font-size: 14px !important;
  line-height: normal;
}

@media (max-width: 767px) {
  .CartDescription h4 a {
    font-size: 12px !important;
  }
}

.couponQuitar {
  background: #f5f5f5;
  padding: 8px;
  margin: 0;
}

ul.datos_cupon {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

h6 {
  border-bottom: 1px solid #dee0db;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 15px;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
}

.item-blog-post h2,
.item-blog-post h2 a {
  font-size: 26px;
  font-weight: 700;
}

.bg-msj {
  padding: 15px;
}

.bg-msj-rosa {
  background-color: #e5097f;
  color: #fff;
  margin: 15px 0;
}

.bg-info {
  background-color: #d9edf7;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.panel-default > .panel-heading {
  border-top: 4px solid #4ec67f;
}

.lista-medios-pago li {
  border: 2px solid #fff;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.lista-medios-pago li:hover {
  border: 2px solid #0070b7;
}

.lista-medios-pago .bordePago2 {
  border: 2px solid #0070b7;
  background: #f5f5f5;
}

.item-blog-post {
  margin: 0 auto 30px;
}

.item-blog-post h2 {
  border-bottom: 1px solid #ddd;
  letter-spacing: 0;
  margin: 28px 0 10px;
  padding: 15px 0;
  position: relative;
  margin-top: 0px;
}

.item-blog-post .post-header {
  border-top: 1px solid #e6e6e6;
}

.item-blog-post .post-header .post-info {
  line-height: inherit;
  margin-bottom: 5px;
  display: none;
}

.item-blog-post .post-main-view {
  background: #fafafa;
}

.item-blog-post .post-main-view .post-description {
  padding: 15px;
  font-size: 15px;
  line-height: 1.625;
  font-weight: 300;
}

.item-blog-post .post-description .vermas:after {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f178";
  padding-left: 5px;
}

.loadMoreBlog .btn:hover {
  background: #ededed;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .post-header {
    margin-bottom: 15px;
  }
}

.datos_usuario ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.datos_usuario ul li:before {
  font-family: FontAwesome;
  display: inline-block;
  content: "\f0da";
  padding-right: 5px;
}

div.cajamarca div.imgmarca {
  display: flex;
  align-items: flex-start;
  max-width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  min-height: 75px;
}

.content_marcas .cajamarca {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 0 5px #ddd;
}

.content_marcas .cajamarca:hover {
  box-shadow: 0 0 5px #ccc;
}

.content_marcas .verprod {
  background: #ccc;
  display: block;
}

.brand-carousel li {
  float: left;
  display: inline-block;
}

#imageShowCase,
.img-block,
.img-link,
.product-slide-img,
.product-slide-img img,
.product-slide-inner,
.ps-nav {
  display: block;
}

.brand-carousel li img {
  max-width: 100%;
  width: 100%;
}

.carousel-nav {
  font-size: 26px;
  margin-left: 10px;
  padding-bottom: 3px;
  padding-top: 3px;
}

.detalle-form {
  background: #f5f5f5;
  border-radius: 5px;
  margin-top: 20px;
  border-top: 4px solid #4ec67f;
}

h5.tit_form_detalle {
  border: none;
}

.show-case-wrapper {
  margin: 0 auto 30px;
  float: none;
}

#productShowCase .owl-controls {
  margin-top: 0;
}

.product-slide-inner {
  margin-top: 12%;
  max-width: 98%;
}

@media (max-width: 767px) {
  .product-slide-inner {
    display: block;
    max-width: 98%;
    margin: 5% auto 0;
    text-align: center;
  }

  #productShowCase .owl-controls {
    margin-top: 10px;
  }

  #ps-next {
    right: 15px;
  }

  #ps-prev {
    left: 15px;
  }
}

#productShowCase .btn-stroke-dark i {
  font-size: 0;
  transition: font 0.3s ease;
}

#productShowCase .btn-stroke-dark:hover i {
  font-size: inherit;
}

#productShowCase .details-description {
  margin-bottom: 15px;
}

.product-slide-img img {
  text-align: center;
  margin: 0 auto;
}

#detalle div.impuestoprecio,
#detalle div.ivaprecio,
#print-articulo-detalle {
  text-align: left;
}

#productShowCase .product-title {
  font-family: Calibri;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 36px;
  margin-bottom: 0;
}

.ps-nav {
  font-size: 68px;
  height: auto;
  position: absolute;
  top: 38%;
  width: auto;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

#detalle_print #img_prod,
.relative {
  position: relative;
}

#ps-next {
  right: 15px;
}

#ps-prev {
  left: 15px;
}

@media screen and (max-width: 767px) {
  .ps-nav {
    top: 30%;
  }

  .ps-nav img {
    width: 60px;
  }
}

.boxes-title-1 {
  background: #ebebeb;
  font-family: Calibri;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
  padding: 7px 0;
}

.featuredImgLook2 .inner {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 15px;
}

.featuredImgLook2 .inner:hover {
  border: 1px solid #4ec67f;
}

.img-link img {
  width: 100%;
}

.featuredImgLook2 h3 {
  color: #454545;
  font-weight: 600;
  padding: 20px 0;
  text-transform: uppercase;
}

.featuredImgLook2 h3 span {
  color: #eb5e58;
  display: block;
  font-size: 14px;
  font-weight: lighter;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featuredImgLook2 .btn-link {
  border-radius: 0;
  color: #7f8c8d;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
}

.featuredImgLook2 p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .featuredImgLook2 .col-md-3 {
    margin-bottom: 30px;
  }
}

@media (max-width: 460px) {
  .featuredImgLook2 .col-md-3 {
    width: 100%;
  }
}

#imageShowCase {
  clear: both;
  background: red;
}

.image-show-case-wrapper .ps-nav {
  opacity: 0;
  transform: scale(1.15);
  -moz-transition: all 0.3s ease 0;
  -webkit-transition: all 0.3s ease 0;
  -ms-transition: all 0.3s ease 0;
  -o-transition: all 0.3s ease 0;
}

.image-show-case-wrapper:hover .ps-nav {
  transform: scale(1);
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.featuredImageLook3 .inner .box-text-cell-inner h1 {
  font-size: 20px;
}

.featuredImageLook3 .inner:hover .box-content-overly-white {
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
  visibility: visible;
}

#detalle_print {
  width: auto !important;
}

#detalle_print h1 {
  color: #069;
  border-top: 1px solid #ccc;
  margin-top: 10px !important;
  padding-top: 10px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
}

#detalle_print h5 {
  font-size: 14px !important;
  font-weigth: 400 !important;
  color: #222;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
}

#detalle_print h3 {
  font-size: 110%;
  color: #222;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 2px;
  margin: 3px 0;
}

#detalle_print ul {
  margin-left: 10px;
  list-style-type: circle;
}

#detalle_print #img_prod .img-responsive {
  max-width: 30% !important;
  margin: 0 auto !important;
}

#detalle_print span.marca_print {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

#detalle_print .cajasoferta {
  clear: both;
  width: 95%;
}

#detalle_print .imagenart {
  float: left;
  margin-right: 10px;
  padding-bottom: 0;
}

#printArea .modal-body,
.modal-content {
  background: #fff;
  font-size: 13px;
}

#printArea .img_empresa .img-responsive {
  float: left !important;
  max-width: 25% !important;
}

#printArea .btn-print-modal {
  position: relative;
  top: 0;
}

.sp-wrap,
.sp-zoom {
  z-index: 0 !important;
}

@media (min-width: 768px) {
  #navbar-sidebar .container-fluid,
  #navbar-sidebar .navbar-collapse {
    padding: 0;
  }

  #navbar-sidebar .navbar-left {
    margin-left: 0;
  }

  #navbar-sidebar .nav > li {
    width: 100%;
  }
}

.navbar-lateral {
  z-index: 9 !important;
  box-shadow: none;
  border-bottom: 1px solid #ddd;
}

.navbar-lateral .navbar-collapse {
  width: 100% !important;
}

.navbar-lateral .navbar-toggle {
  float: left;
}

.navbar-lateral span.caret {
  float: right;
  margin-left: 2px;
  vertical-align: middle;
  border: none !important;
}

.navbar-lateral span.caret:before {
  font-family: FontAwesome;
  content: "\f0da";
}

.navbar-lateral .dropdown-menu span.caret:before {
  position: relative;
  top: -5px;
}

@media (max-width: 767px) {
  .navbar-lateral .dropdown-menu span.caret:before {
    top: 0;
  }

  .navbar-lateral .ley_cate_lateral_xs {
    float: left;
    position: relative;
    top: 15px;
    font-family: Calibri;
    color: #454545;
    font-size: 18px;
    font-weight: lighter;
  }

  .detalle_producto {
    clear: both;
  }
}

.navbar-lateral .ley_cate_lateral_xs {
  font-family: Calibri;
  color: #454545;
  font-size: 18px;
  font-weight: lighter;
}

.login_sup,
.micuenta_top {
  display: none;
}

#detalle div.ivaprecio {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

#detalle div.pricefinal {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0 solid #ddd;
}

#detalle .details-description {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.precio-sugerido {
  display: block;
}

.msgalerta,
.msgexito {
  padding: 15px;
  margin-bottom: 20px;
}

td.FA,
td.NC {
  color: #090;
}

td.ND,
td.RE {
  color: red;
}

.msgexito {
  color: #3c763d;
  background-color: #dff0d8;
  border: 1px solid transparent;
  border-radius: 4px;
}

.msgalerta {
  color: #31708f;
  background-color: #d9edf7;
  border: 1px solid transparent;
  border-radius: 4px;
}

.form-control-feedback {
  right: 15px !important;
  padding-top: 7px !important;
  font-size: 18px !important;
  font-weight: 300 !important;
}

.has-feedback label ~ .form-control-feedback {
  top: 0;
}

#print_this_form table td {
  padding: 5px;
  border: 1px solid #ddd;
}

.map-responsive iframe {
  pointer-events: none;
}

.input-group-btn:last-child > .btn {
  background: var(--color-marca2) !important;
}

li.menutopcontacto {
  display: none;
}

li a.linkbotones_top.empresa_top {
  display: none !important;
}

li a.linkbotones_top.marcas_top {
  display: none !important;
}

li a.linkbotones_top {
  display: none !important;
}

#leyenda_gral_top {
  position: absolute;
  top: 50px;
  color: var(--color-marca1);
  text-align: center;
  left: 50%;
  font-size: 120%;
  line-height: 140%;
  margin-left: 250px;
  z-index: 99 !important;
  font-weight: 700;
}

.ico_usuario,
a.ircarrito:before {
  font-family: FontAwesome;
  content: "\f07a";
  display: inline-block;
  font-size: 25px;
  position: relative;
  top: 3px;
  left: 0;
  padding-right: 10px;
}

.btn.btn-compra {
  background: var(--color-oscuro) !important;
  text-transform: uppercase;
  margin-top: 10px;
  border-radius: 25px;
}

.btn.btn-compra:hover {
  background: var(--color-marca1) !important;
}

span.dcorta {
  display: none;
}

ul.subcate {
  list-style: none;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

ul.subcate li {
  color: #fff;
  float: left;
  border: 1px solid var(--color-marca2);
  background: var(--color-marca2);
  padding: 0px;
  text-align: center;
  margin: 5px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

ul.subcate a:hover {
  color: var(--color-marca2);
}

.container.leyenda_slide {
  position: absolute;
  margin-left: 0px;
}

.leyenda_slide {
  position: absolute;
  text-align: left;
  width: 100%;
  color: #fff;
  background: transparent;
  /*background: rgba(74, 119, 0, 0.31);*/
  bottom: 0px;
  font-size: 26px;
  line-height: 1px;
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  padding: 27px;
  padding-left: 100px;
}

.navbar-fixed-top ul.nav.navbar-nav#nav {
  margin-top: 0;
  margin-left: 0;
  border: none;
  position: absolute;
  left: 34%;
  top: 15px;
}
.navbar-fixed-top .caja_func_sup {
  margin-top: 20px;
  color: #565656;
}

.navbar-fixed-top .caja_func_sup.pull-right.hidden-xs a {
  color: #565656;
}

ul.breadcrumb {
  color: var(--color-marca1);
  font-weight: 400;
  background: #fff;
  font-style: italic;
  border-radius: 7px;
}

ul.breadcrumb a {
  color: #717171;
  font-weight: 700 !important;
}

ul.breadcrumb a + a {
  color: var(--color-marca1) !important;
}

ul.breadcrumb a {
  font-weight: 700;
  font-style: normal;
}

ul.breadcrumb li.pull-right a {
  font-weight: 400;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: var(--color-marca1);
  border-color: var(--color-marca1);
  color: #ffffff;
}

.btn-primary {
  background-color: var(--color-oscuro) !important;
  color: #ffffff;
  margin-top: 10px;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: var(--color-marca1) !important;
}

span.imaprod img {
  max-width: 190px;
  height: auto;
  /* text-align: center; */
}

span.titprod {
  color: white;
  display: block;
  padding: 5px 0px;
  background: var(--color-oscuro);
  border-radius: 0 0 15px 15px;
}

ul.subcate li:hover {
  background: var(--color-marca1);
  border: 1px solid var(--color-marca1);
}

div#imgcate img {
  display: none;
}

@media (max-width: 434px) {
  span.imaprod img {
    max-width: 152px !important;
    height: auto;
  }

  span.titprod {
    font-size: 85%;
  }
}

@media (max-width: 768px) {
  span.imaprod img {
    max-width: 165px;
    height: auto;
  }

  span.titprod {
    font-size: 85%;
  }

  ul.slick-dots {
    display: none !important;
  }

  .spot_ofertas_inf .img-responsive {
    width: 350px;
  }
}

div.item-slide {
  position: relative;
}

.container.leyenda_slide {
  position: absolute;
  width: 100%;
  display: block;
}

span.simbmoneda {
  color: #999;
  font-size: 100%;
  margin-right: -5px;
}

.slick-prev,
.slick-next {
  z-index: 9 !important;
}

a.btn.btn-primary.btn-md.pull-right {
  margin-top: 0px;
}

input#iniciarpago {
  background: var(--color-marca2);
  color: #ffff;
}

.lista-medios-pago .bordePago2 {
  background: #ffffff;
}

span#nombre_usuario {
  /* margin-left: -70px; */
}

@media (max-width: 1300px) {
  .price.text-right {
    padding: 8px 0px;
    width: 60%;
  }

  .price.text-right {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  div#carrito_top {
    margin-top: -45px;
    margin-left: 270px;
  }

  .navbar-fixed-top ul.nav.navbar-nav#nav {
    margin-top: -40px;
    margin-left: 210px;
    border: none;
  }

  .navbar-default .navbar-nav > li > a {
    padding: 10px 8px;
  }

  .ban-top-izquierda {
    width: 210px;
  }

  span#nombre_usuario {
    margin-left: -110px;
  }

  .navbar-fixed-top .caja_func_sup {
    margin-top: 10px;
    color: #565656;
  }
}

.boton-footer a {
  padding: 20px 10px;
  text-transform: uppercase;
  color: #dddddd;
}

.whatsapp-footer {
  position: fixed;
  right: 0;
  margin-right: 20px;
  bottom: 90px;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation: myscroll 1s;
  animation: myscroll 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  z-index: 9999999999999 !important;
  background: #25d366;
  font-size: 24px;
  border-radius: 50%;
  width: 36px;
  height: 34px;
  line-height: 33px;
  text-align: right;
  padding-right: 3px;
  color: #fff;
}

a.whatsapp-footer:hover {
  color: #fff;
}

.contacto-footer h5 {
  font-size: 27px;
  /* color: #7e807c; */
  color: var(--color-oscuro);
  z-index: 2;
  background: #fff;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  padding: 5px 10px;
}

.contacto-footer i {
  font-size: 18px;
  color: var(--color-marca1);
  font-weight: bold;
}

.contacto-footer p {
  font-size: 16px;
  padding: 10px 0;
}

.contacto-footer a {
  font-size: 16px;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 8;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #1b1b1b;
  border: 2px solid #7b7a7a;
}

.slick-dots li.slick-active {
  background: var(--color-marca2);
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.spot_ofertas_sup {
  clear: both;
  display: inline-block;
}

.spot_ofertas_sup img {
  float: left;
  margin-right: 10px;
  width: 560px;
}

.caja_talle div#preview_color {
  display: none;
}

.productFilter.productFilterLook2 small {
  margin-top: 20px;
  display: block;
}

/* .navbar-fixed-top .caja_func_sup {
  margin-left: 300px;
} */

.navbar-fixed-top .caja_func_sup {
  margin: 0 !important;
  top: 20px;
  left: 30px;
  z-index: 9999;
}

.spot_ofertas_sup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.spot_ofertas_sup img {
  width: 100%;
  height: auto;
}

/* .spot_ofertas_sup a:nth-child(1),
.spot_ofertas_sup a:nth-child(2) {
  flex: 0 0 49%;
  margin: 0;
}

.spot_ofertas_sup a:last-child {
  flex: 0 0 100%;
  margin-top: 10px;
} */

.search,
.search i {
  color: white;
}

.btn-default {
  color: #ffffff;
  text-shadow: none;
  background: var(--color-oscuro) !important;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}
.btn-default:hover {
  background: var(--color-marca1) !important;
}

.cart-actions input[type="button"] {
  background: var(--color-oscuro) !important;
  border: 2px solid var(--color-oscuro) !important;
  margin-top: -60px;
  margin-left: 200px;
}

.nav-tabs {
  margin-bottom: 0px;
  border-bottom: 3px solid var(--color-marca1) !important;
}

.nav-tabs li.active a {
  background: var(--color-marca1) !important;
}

.detalle-form {
  background: #fefefe;
  border-radius: 5px;
  margin-top: 20px;
  border-top: 4px solid var(--color-marca1);
  box-shadow: 0 0 5px #ccc;
}

button.btn.load.btn-success.pull-right {
  background: var(--color-oscuro);
  border-radius: 25px;
}

button.btn.load.btn-success.pull-right:hover {
  background: var(--color-marca1);
}

.content_marcas .verprod {
  background: var(--color-oscuro);
  display: block;
  padding: 5px 10px;
  border-radius: 0 0 7px 7px;
}

.verprod a.tds {
  color: white;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.dropdown-menu.dropdown-cart li#nombre_usuario {
  color: var(--color-marca1) !important;
}

button#SubmitRegistro {
  background: var(--color-marca2) !important;
}

/* .btn.btn-detalle:before {
	content: "\f07a";
} */

.costDetails a.btn.btn-default.btn-lg.btn-block {
  width: auto;
}

button#iniciarpago {
  background: var(--color-oscuro) !important;
}

.orderStep li {
  background: var(--color-marca1);
  color: white;
}

.orderStep li.active {
  background: var(--color-marca2) !important;
}

.cartMiniTable button.btn.btn-default {
  width: 100%;
  margin-bottom: 5px;
  border-radius: 7px;
}

button#boton_confirmar {
  background: var(--color-marca1);
}

button#boton_confirmar:hover {
  background: var(--color-marca2);
}

@media screen and (min-width: 1300px) {
  /* div#ModalGrilla .modal-body {
    width: 1300px !important;
    margin-left: -372px !important;
  } */
  /* div#ModalGrilla .modal-body {
    width: auto !important;
    max-width: 1170px;
    border-radius: 25px;
    box-shadow: 0 0 5px var(--color-oscuro);
  } */
}

@media screen and (max-width: 480px) {
  a.cambiar_cuenta_top {
    display: inline-block !important;
  }

  a.terminar_sesion_top {
    display: inline-block !important;
  }

  .spot_ofertas_sup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .spot_ofertas_inf {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }

  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 35%;
    margin-bottom: 0;
  }

  .addto.row .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 50%;
  }

  .addto.row input#boton_compra {
    width: 50%;
    font-weight: bold;
    margin-left: 0 !important;
    margin-top: -37px;
  }

  .detalle .addto.row input#boton_compra {
    width: 50%;
    font-weight: bold;
    margin-left: 100px !important;
    margin-top: -55px;
  }
}

.autocomplete-item.autocomplete-active {
  background: #9ec802 !important;
  color: white;
  font-weight: bold;
}

.input-group-btn:last-child > .btn {
  background: var(--color-marca1) !important;
  color: white;
}

/*
.product .marca_span {
    font-size: 110%;
    font-style: italic;
    font-weight: bold;
    background: #9ec802;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
}
*/

form#grilla table tbody tr td {
  position: relative;
}

/* form#grilla table tbody tr td input[type="number"]:hover {
  transform: scale(1.05) !important;
  width: fit-content;
  top: 0px;
  z-index: 10;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  position: sticky;
  right: -100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
} */

small#caja_compra_minima {
  display: block;
}

/* ajustes B2C */

/* Menu top  */
ul#menutop li a {
  color: #ddd;
}

ul#menutop li a:hover {
  color: #fff;
}

#menutop li.b2c a {
  background: #fff;
  color: var(--color-oscuro);
  padding: 10px 20px;
  text-decoration: none;
}

ul#menutop li.b2c a:hover {
  color: #000;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp img {
  width: 80px;
  transition: all 0.5s ease-in-out;
}

.whatsapp img:hover {
  transform: translateY(-10px);
}

.aparece {
  left: 20px;
}

div#slides_ofertas_t {
  margin-top: 20px;
}

.slick-slide img {
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.promociones_3 img.img-responsive {
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 0 5px #666;
}

.spot_ofertas_inf img {
  border: none !important;
  margin: 0 !important;
  border-radius: 10px;
  box-shadow: 0 0 5px #666;
  padding: 0;
}

.product {
  border: none;
  border-bottom: none;
  background: #fefefe;
  padding-bottom: 10px;
  border-radius: 5px 5px 10px 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 20%);
  transition: all 0.3s ease-in-out;
}

.product:hover {
  border: none;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 60%);
  border-radius: 5px 5px 10px 10px;
}

.image a img {
  padding: 10px;
  opacity: 0.9;
}

.product:hover .image a img {
  transform: none;
  opacity: 1;
}

#precant {
  border: none;
  padding: 5px;
  font-size: 12px;
  box-shadow: none;
}

.btn-primary:hover {
  background-color: var(--color-marca1) !important;
}

.social-share {
  display: none;
}

ul.subcate li {
  color: #fff;
  float: left;
  border: none;
  background: #fff;
  padding: 0px;
  text-align: center;
  margin: 5px;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  transition: all 0.3s ease-in-out;
}

ul.subcate li:hover {
  background: var(--color-oscuro);
  border: none;
  box-shadow: 0 0 5px #1a1a1a9c;
}

span.imaprod img {
  /* max-width: 190px; */
  max-width: 150px;
  height: auto;
  /* padding: 10px; */
  background: #fff;
  border-radius: 10px 10px 0 0;
}

.product h4 {
  padding: 0 10px;
}

div#productslider-notas {
  display: flex;
}

.noticiashome1 {
  margin: 0px auto;
}

.row.noticiashome1-titproy {
  display: none;
}

.noticiashome1 .owl-item {
  padding-bottom: 20px;
}

.noticiashome1 img {
  border-radius: 50%;
  margin: 20px auto;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.noticiashome1 img:hover {
  opacity: 1;
}

.noticiashome1 h4 {
  position: absolute;
  bottom: 0;
  text-align: center;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.noticiashome1 a.btn.btn-default.btn-vernota {
  display: none;
}

.noticiashome1 a.titnotlink {
  color: var(--color-oscuro);
}

.image {
  background: #fff;
  border-radius: 10px;
}

#slides_ofertas_m {
  padding: 0;
}

.spot_ofertas_sup img {
  /* width: 50%; */
  /* width: 370px; */
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 0 5px;
}

.spot_ofertas_inf {
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}

.spot_ofertas_inf_inf {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto;
}

.spot_ofertas_inf_inf img {
  border-radius: 10px;
  width: 250px;
  height: auto;
  box-shadow: 0 0 5px #666;
}

#modal-prod-agregado .modal-body {
  text-align: left;
}

#modal-prod-agregado a.btn.btn-primary.btn-md.pull-right {
  background: var(--color-marca1) !important;
}

#modal-prod-agregado a.btn.btn-primary.btn-md.pull-right:hover {
  background: #000 !important;
}

#modal-prod-agregado .modalcont a.btn.btn-danger.btn-md.pull-left {
  background: #000 !important;
}

div.seguir_inferior a,
div.seguir_superior a {
  display: none;
}

body.checkout {
  padding-top: 190px;
}

ul {
  margin-left: 0;
}

.couponForm input[type="text"] {
  width: 100%;
  border-radius: 3px;
}

button#iniciarpago {
  width: 50%;
}

.lista-medios-pago .bordePago2 {
  border: 2px solid var(--color-marca1);
  border-radius: 7px;
}

.lista-medios-pago li:hover {
  border: 2px solid var(--color-marca2);
}

.cartMiniTable .price {
  font-size: 15px;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  color: #fefefe !important;
  background-color: var(--color-marca1) !important;
}

#leyenda_gral_top {
  text-align: left;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
  color: #fefefe;
  background-color: var(--color-marca1);
}

.dropdown-menu {
  scroll-behavior: smooth;
}

.dropdown-menu {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
div#slides_ofertas_b {
  margin: 30px 0 !important;
  width: 1170px;
  padding: 0;
}

div#slides_ofertas_b img {
  width: 1134px;
  padding: 0;
  margin: 0;
}

.footer-bh {
  color: #f1f1f1;
  padding: 50px 0 25px;
  font-size: 15px;
  background: transparent;
}

.footer-bh h4 {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-bh a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bh a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bh i {
  color: var(--color-marca2);
  margin-right: 6px;
}

/* Logo + descripción */
.footer-brand .logo-footer {
  max-width: 180px;
  margin-bottom: 15px;
}
.footer-brand p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* Listas */
.footer-bh ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.footer-bh h4 {
  text-align: left;
}

.footer-bh ul li {
  margin-bottom: 10px;
}

/* QR Fiscal */
.footer-qrfiscal img {
  margin-top: 15px;
  border: 2px solid #3f5600;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  transition: transform 0.2s ease;
}
.footer-qrfiscal img:hover {
  /* transform: scale(1.05); */
}

/* Separador */
.footer-bh hr {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 30px 0 20px;
}

/* Copy */
.footer-copy p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 767px) {
  .footer-bh {
    text-align: center;
  }
  .footer-bh h4 {
    margin-top: 25px;
  }
  .footer-brand {
    margin-bottom: 25px;
  }
  .footer-qrfiscal img {
    margin: 20px auto 0;
  }
}

div.boton_arrepentimiento {
  display: none;
}

p.datos_pie,
p.leyenda {
  display: none;
}

a.afip {
  position: absolute;
  right: 0;
  bottom: 17px;
}

a.afip img {
  width: 50px;
}

.solofertas,
.solnuevo,
.solpostnuevo {
  display: none;
}

div#productsliderPost {
  background: linear-gradient(
    180deg,
    rgba(76, 76, 76, 1) 0%,
    rgba(75, 75, 79, 1) 50%,
    rgba(23, 23, 23, 1) 100%
  );
  border-radius: 0 0 25px 25px;
  padding: 0 15px;
}
div#divofertas,
div#divlonuevo {
  background: var(--grad-oscuro);
}
div#productslider,
div#productslider-news,
div#productsliderPost {
  margin: 0 auto;
  padding: 15px;
}
div#divofertas,
div#divlonuevo,
div#divPostLonuevo {
  margin-top: 50px;
  border-radius: 25px;
}
.proyector-ofertas,
.proyector-novedades,
.proyector-postnovedades {
  width: 100% !important;
}
.proyector-ofertas-img,
.proyector-novedades-img,
.proyector-postnovedades-img {
  width: 100% !important;
}
.proyector-ofertas-img img,
.proyector-novedades-img img,
.proyector-postnovedades-img img {
  border-radius: 25px 25px 0 0;
}
.proyector-ofertas-img-mobile,
.proyector-novedades-img-mobile,
.proyector-postnovedades-img-mobile {
  display: none;
}

/* --- SECCIÓN NOSOTROS --- */

body.nosotros h1.titulo {
  display: none;
}
.nosotros-section {
  color: #333;
}

/* --- BANNER --- */
.nosotros-banner {
  position: relative;
  background: url("../b/banner-nosotros.jpg") center center/cover no-repeat;
  /* background: linear-gradient(
130deg, rgba(0, 0, 0, 1) 0%, rgba(74, 119, 0, 1) 100%); */
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 25px;
}

.nosotros-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 25px;
}

.nosotros-banner .banner-content {
  position: relative;
  z-index: 2;
}

.nosotros-banner h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fefefe;
}

.nosotros-banner p {
  font-size: 18px;
  font-weight: 300;
  color: #ddd;
}

/* --- HISTORIA --- */
.historia {
  padding: 60px 15px;
}

.historia h2 {
  color: #2f4f2f;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 3rem;
  margin-top: 0;
}

.historia p {
  font-size: 16px;
  line-height: 1.7;
}

/* --- PVM (Propósito / Visión / Misión) --- */
.pvm {
  padding: 60px 0;
  /* background-color: #f5f7f4; */
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.card i {
  font-size: 40px;
  color: #7ca63d;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 22px;
  color: #2f4f2f;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 15px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* --- VALORES --- */
.valores-wrapper {
  /* background-color: #ffffff; */
  padding: 0 0 70px 0;
}

.valores-wrapper h2 {
  /* color: #2f4f2f; */
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 3rem;
}

.valor-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  min-height: 200px;
}

.valor-card:hover {
  background: var(--color-marca1);
  color: #fff;
  transform: translateY(-4px);
}

.valor-card:hover h4 {
  color: #fff;
}

.valor-card i {
  font-size: 36px;
  color: #7ca63d;
  margin-bottom: 10px;
  transition: 0.3s;
}

.valor-card:hover i {
  color: #fff;
}

.valor-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.valor-card p {
  font-size: 15px;
  color: #555;
}

.valor-card:hover p {
  color: #fff;
}

.frase-final {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #2f4f2f;
}

/* --- RESPONSIVE --- */
@media (max-width: 767px) {
  .nosotros-banner {
    height: 250px;
  }

  .nosotros-banner h1 {
    font-size: 28px;
  }

  .card {
    margin-bottom: 25px;
  }

  .valor-card {
    margin-bottom: 20px;
  }
}

body.detalle {
  padding-top: 225px;
}
body.detalle .leyendaConStock,
body.detalle .leyendaSinStock {
  margin: 10px 0;
  padding: 0;
}
body.detalle .cart-actions input#cantidad {
  border-radius: 25px;
  width: 40%;
  text-align: center;
  margin: 0;
  padding: 0;
}

body.detalle .cart-actions input#boton_compra {
  margin: 0;
  position: relative;
  left: 75px;
  bottom: 36px;
  padding: 5px 20px;
  background: var(--color-oscuro);
  border-color: var(--color-oscuro);
  transition: all 0.3s ease-in-out;
}
input#boton_compra:hover {
  background: var(--color-marca1) !important;
  border-color: var(--color-marca1) !important;
}
.product-share {
  display: none;
}
a#detalle_solapa_descripcion {
  border-radius: 10px 10px 0 0;
  /* background: var(--color-marca1); */
}
.tab-content {
  background: #fff;
  padding: 5px 20px;
  border-radius: 0 0 25px 25px;
}
body.detalle .sp-large {
  border-radius: 25px !important;
  box-shadow: 0 0 5px #ccc;
  border: none !important;
  padding: 20px;
  background: #fff;
}
.detalle_producto {
  background: #fff;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 0 5px #ccc;
}
.recomendadosrow .cajasoferta .product {
  border-radius: 7px !important;
}
body.detalle .productFilterLook2 + b input#boton_compra {
  left: -57%;
  bottom: 36px;
  border-radius: 25px;
  padding: 8px 20px;
}
.orderStep li {
  display: none;
}
.orderStep li.active {
  background: #000 !important;
  display: block;
  width: 100%;
  border-radius: 7px;
}
.row.detalle-pedido {
  background: #fff;
  padding: 10px 0;
  border-radius: 15px;
}
body.carrito .detalle-pedido .col-lg-3.col-md-3.col-sm-5.rightSidebar {
  display: none;
}
body.carrito .detalle-pedido .col-lg-9.col-md-9.col-sm-7 {
  width: 100%;
}
body.carrito h6 {
  color: #000;
  font-size: 2rem;
}
form#form_envio h6 {
  margin-top: 20px;
  border-radius: unset;
}
table#entrega,
table#resumen {
  background: #fff;
}
table#resumen .bg-info {
  background-color: var(--color-oscuro);
  color: #fefefe;
}
table#resumen button#iniciarpago:hover {
  background: var(--color-marca1) !important;
}
.alert-info {
  color: #fff !important;
  background-color: #db6c6c !important;
  border-color: #db6c6c !important;
}
.lista-medios-pago li {
  background: #fff;
  border-radius: 15px;
}
.cartMiniTable {
  background: #fff;
  border-radius: 15px;
}
#total-price {
  font-size: 17px;
}
.opcionesTipo {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  width: fit-content;
}
.spot_pie {
  max-width: 1170px;
  margin: 0 auto;
}

.spot_pie img {
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 50%);
}

.banda-final-3 {
  background: #222;
  color: #fff;
  padding: 60px 0;
}
.card-final {
  background: #2f2f2f;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  min-height: 210px;
}
.card-final:hover {
  background: var(--color-marca1);
  transform: translateY(-5px);
}
.card-final:hover h4 {
  color: #fff;
}
.card-final i {
  font-size: 40px;
  margin-bottom: 15px;
}
.card-final h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.card-final p {
  color: #ddd;
  font-size: 14px;
}

.fa-search:before {
  font-weight: 300;
}

.buscador {
  float: left;
  top: 0;
  margin-left: 0;
  margin-top: 0;
  position: relative;
  z-index: 9999;
}

.buscador ul.dropdown-menu {
    width: 1100px;
    top: 55px;
    background: #fff;
    border: none;
    left: auto;
    /* position: relative; */
    right: 40%;
}
.navbar-fixed-top .buscador ul.dropdown-menu {
    right: 184%;
}

.buscador ul.dropdown-menu input.search-form {
    padding: 20px;
    width: 100%;
    margin: 0;
    letter-spacing: 0.8px;
    border-bottom: 0px !important;
    border: none;
    font-weight: 500;
    height: 45px;
    z-index: 9999999999999999999;
}

.buscador ul.dropdown-menu li {
  width: 100%;
  margin: 0 auto;
}

.buscador ul.dropdown-menu i {
  /* color: var(--color-oscuro); */
  color: #fefefe;
}

.buscador ul.dropdown-menu input.search-form {
  padding: 20px;
  width: 100%;
  margin: 0;
  letter-spacing: 0.8px;
  border-bottom: 0px !important;
  border: none;
  font-weight: 500;
  height: 45px;
}

.buscador ul.dropdown-menu input.search-form:active {
  border: 0px;
}

.buscador a.btn.btn-lg,
a.registracion {
  padding: 0px 10px;
}

.buscador a:hover i {
  font-weight: 700;
}

.buscador form#form-buscar {
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  padding: 0;
  flex-direction: row;
}

.buscador button.btn.btn-default.btn-close {
  background: #f0f0f0;
  border: none;
  box-shadow: none;
  color: var(--color-marca1);
  font-size: 20px;
  border-radius: 3px;
}

.buscador button.btn.btn-buscartop {
  font-size: 20px;
  background: var(--color-oscuro);
}

.buscador a.dropdown-toggle {
  padding: 10px;
  padding-top: 7px;
  font-size: 15px;
  font-weight: bold;
  color: #fefefe !important;
}

span#nombre_usuario {
  order: 1;
}
span#micuenta_top {
  order: 2;
}
.cotizacion {
  order: 4;
  background: var(--color-oscuro);
  border-radius: 50%;
  margin-left: 5px;
}
.navbar-fixed-top .cotizacion {
  background: #565656;
}
div#carrito_top {
  order: 3;
}

.loginmodal-container {
  background-color: #fefefe;
  border-radius: 15px;
}
#ModalLogin h5 span {
  background: transparent !important;
  color: #000;
}
#ModalLogin .title-sol.style2:after {
  display: none;
}
#ModalLogin .btn {
  width: 100%;
  background: var(--color-marca1);
  border-radius: 25px;
}
#ModalLogin .btn:hover {
  background: var(--color-marca2);
}
.col-md-12.contact-form {
  background: #fefefe;
  border-radius: 15px;
  margin-top: 20px;
  padding: 10px 20px;
  box-shadow: 0 0 5px #ccc;
}
#contacto .form-group:nth-child(5) {
  display: none;
}
#contacto .form-group.col-md-4 {
  width: 25%;
}
#contacto .form-group.col-md-4.col-sm-4.col-xs-12 {
  width: 100%;
}
div.cajamarca div.imgmarca img {
  margin-left: auto;
  margin-top: 15px;
  padding: 10px;
}
body.nosotros {
  padding-top: 200px;
}
.top-bar .social-share + .search {
  display: none;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  width: max-content;
  max-width: 400px;
  box-shadow: 0 0 5px #999;
}
.autocomplete-items div {
  color: #000;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
.precio-sin-imp span {
  font-weight: 300;
  font-size: 12px;
  color: #666;
}
div#hormiga h1 .separador_hormiga + a {
  font-weight: bold;
  color: var(--color-oscuro);
}
div#hormiga {
  margin-bottom: 10px;
}
ul.breadcrumb .separador_hormiga + li {
  font-weight: bold;
}
div#custom-search-input input#palabra {
  width: 100%;
  border-radius: 15px 0 0 15px;
}
div#custom-search-input button.btn {
  background: var(--color-oscuro) !important;
  border-radius: 0 15px 15px 0;
}
#custom-search-input .fa-search:before {
  color: #fefefe;
  font-weight: 400 !important;
}
/* body.ofertas  */
.product span.marca_span {
  color: #fafafa;
  border-radius: 15px;
  padding: 2px 20px;
  border: 1px solid var(--color-marca1);
  background: linear-gradient(
    180deg,
    rgba(74, 119, 0, 1) 0%,
    rgba(26, 26, 26, 1) 100%
  );
}
.description img {
  /* max-width: 120px; */
  max-width: 80px;
  padding: 0;
  margin: 0 auto;
}
.caja_nov_listar {
  box-shadow: 0 0 5px #ccc;
  border-radius: 25px;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
}
.caja_nov_listar:hover {
  box-shadow: 0 0 5px #999;
}
body.default .caja_nov_listar .desdoc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
  max-height: 150px;
  position: relative;
}
.caja_nov_listar a.btn.btn-default.btn-vernota {
  margin: 20px auto;
  width: 100%;
}
#imagen_listar img.img-responsive {
  border-radius: 25px;
}
.col-listar {
  margin-bottom: 20px;
}
.caja_nov_listar h3 a {
  color: #1a1a1a;
  font-weight: bold;
}
body.default .caja_nov_listar .desdoc p {
  font-weight: 400;
  margin-top: 5px;
}
body.default .bann_listar1 + h1 {
  margin: 40px auto;
}
body.default .post-info + h1.titulo {
  font-size: 30px;
  margin: 20px 0;
}
.post-description .nov_dcorta p {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 20px;
}
.post-lead-image img {
  float: left;
  margin: 0 25px 0 0;
  /* width: 100%; */
  /* max-width: 600px; */
  border-radius: 25px;
}
.post-lead-image + span.epigrafe {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
body.default .nov_dlarga {
  font-weight: 400;
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: normal;
}
body.default .nov_dlarga h4 {
  font-size: 27px;
  margin: 20px 0;
}
span.dcorta + br {
  display: none;
}
.product .price {
  font-size: 25px;
  color: var(--color-oscuro);
  margin: 10px auto;
}
/* #login_sup a:first-child:after {
    content: "\e4b2";
    font-family: 'Font Awesome 6 Pro';
    font-size: 17px;
} */
.product:hover .btn-quickview {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  border-radius: 25px;
  box-shadow: 0 0 5px #1a1a1a;
}
div#slides_ofertas {
  margin: 10px auto 0 auto;
}
div#slides_ofertas img {
  max-width: 70%;
  margin: 0 auto;
}
.loginmodal-container #opciones_delivery .form-group.col-md-4.pull-right {
  width: 100%;
}
.hormigafoot .col-md-12 {
  background: #fff;
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px #ccc;
}
body.ofertas .description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.carrito #form_envio h6.cotizacion {
    color: #fff;
    padding: 10px 15px;
    margin-left: 0;
}
.btn-success {
    background-color: var(--color-oscuro);
    color: #ffffff;
    border-radius: 25px;
}
.btn-success:hover {
    background-color: var(--color-marca1);
}

#ModalGrilla .modal-body {
    overflow-x: auto !important;
    padding: 10px;
    border-radius: 15px;
}

/* #ModalGrilla table {
    table-layout: fixed; 
    width: auto;
    min-width: 1000px; 
    border-collapse: collapse;
} */
#ModalGrilla table {
    table-layout: fixed;
    width: max-content;
    /* min-width: 1000px; */
    border-collapse: collapse;
    overflow: scroll;
}
#ModalGrilla input[type="number"] {
    width: 100% !important;
    max-width: 80px;
    padding: 4px 0;
    font-size: 12px;
    text-align: center;
    border: 1px solid #ccc !important;
    margin: 2px 0;
}

/* #ModalGrilla input::placeholder {
    color: transparent; 
} */

#ModalGrilla td:first-child {
    position: sticky;
    left: 0;
    background-color: #f1f1f1 !important;
    z-index: 5;
    font-weight: bold;
    width: 120px; 
    border-right: 2px solid #ddd;
}


#ModalGrilla .modal-dialog {
  max-width: 95% !important;
  /* width: 100% !important; */
  width: fit-content !important;
}

body.detalle .grilla-tooltip {
  position: fixed;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
}

body.detalle .grilla-tooltip.show {
  opacity: 1;
  transform: translateY(-8px);
}

body.detalle .grilla-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}


.contactoHome {
  margin: 60px auto;
}

.contactoHome-wrapper {
  display: flex;
  align-items: stretch;
}

.contactoHome-info {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
  text-align: left;
}

.contactoHome-title {
  font-size: 22px;
  font-weight: 700 !important;
  margin-bottom: 22px;
  color: #222;
}

.contactoHome-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.4;
}

.contactoHome-item i {
  color: var(--color-marca1);
  font-size: 16px;
}

.contactoHome-mail {
  text-decoration: none;
}

.contactoHome-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 26px;
  background: var(--grad-oscuro);
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all .3s ease;
}

.contactoHome-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #1a1a1a47;
  color: #fff;
}

.contactoHome-map {
  padding-left: 20px;
}

.contactoHome-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

#ModalLogin div#viejos {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#ModalLogin div#viejos input {
    margin-top: 20px;
    margin-bottom: 0;
    background: var(--grad-oscuro);
    border-radius: 25px;
    color: #fefefe;
    border-color: transparent;
    padding: 3px 15px;
}

div#viejos input.cargarViejos {
    background: var(--color-marca1) !important;
}
#ModalGrilla #pgs_sueltas .msj a {
    border-bottom: 1px solid var(--color-marca1);
    padding: 2px 10px;
    color:var(--color-marca1);
}
#ModalGrilla #pgs_sueltas .msj {
    line-height: 30px;
    padding: 0 20px;
}

#palabra-autocomplete-list{
    position: absolute;
    width: 100%;
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
}

#palabra-autocomplete-list::-webkit-scrollbar{
    width:6px;
}
#palabra-autocomplete-list::-webkit-scrollbar-thumb{
    background: var(--grad-oscuro);
    border-radius:4px;
}
body.search-open{
    overflow:hidden;
}

.scroll_sup.container {
    max-width: 1120px;
}
.detalle-form .form-group.col-sm-4.col-xs-12 {
    width: 100%;
}

.nav-tabs > li > a{border-radius: 15px 15px 0 0 !important;}
.nav-tabs > li:hover > a {
    background: var(--color-oscuro);
}

.acciones-pago-carrito button#iniciarpago {
    width: auto;
}

@media (max-width: 768px) {
  .contactoHome-wrapper {
    flex-direction: column;
  }

  .contactoHome-map {
    padding-left: 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .autocomplete-items div {
    width: 1100px;
}
.autocomplete-items {
    max-width: 1100px;
}
}
@media screen and (max-width: 1666px) {
  .navbar-fixed-top ul.nav.navbar-nav#nav {
    left: 30%;
  }
}
@media screen and (max-width: 1366px) {
  .navbar-fixed-top ul.nav.navbar-nav#nav {
    left: 27%;
  }
}
@media screen and (min-width: 767px) {
    .cambiar_cuenta_top2, .terminar_sesion_top2 {
    display: inline-block !important;
}
  .cambiar_cuenta_top2 span, .terminar_sesion_top2 span {
    display: none;
}

a.cambiar_cuenta_top, a.terminar_sesion_top {
    display: none;
}
}
@media (max-width: 768px) {
  /**** MENU DESPLEGABLE PERFIL ****/
  .estaLogueado span#login_sup {
    display: none !important;
  }
  span#micuenta_top {
    display: block;
  }
  .estaLogueado span#micuenta_top,
  span#login_sup {
    position: relative;
    display: flex !important;
    gap: 10px;
    padding: 10px !important;
    margin: 0 -16px;
    cursor: pointer;
    background: white;
    flex-direction: column;
  }
  span#micuenta_top:hover::after,
  span#login_sup:hover::after {
    content: "";
    top: 0;
    right: 0;
    position: absolute;
    display: block;
    height: 100px;
    width: 140px;
  }
  span#micuenta_top::before {
    padding-top: 4px;
  }
  span#micuenta_top::before,
  span#login_sup::before {
    content: "\f2bd";
    font-family: "Font Awesome 6 Pro";
    font-size: 18px;
    display: block;
    /* color: var(--color-marca2); */
    margin: 0;
    font-weight: bold;
  }
  .fa-search:before {
    font-weight: bold;
    color: var(--color-oscuro);
  }
  header .caja_func_sup span:hover::before,
  header .caja_func_sup a:hover i,
  header .caja_func_sup a:hover::before {
    color: var(--color-marca1) !important;
  }
  #micuenta_top .cambiar_cuenta_top,
  #micuenta_top .terminar_sesion_top,
  span#login_sup a {
    display: none;
    position: absolute;
    background: white;
    white-space: nowrap;
    z-index: 100;
    right: 0;
    text-decoration: none;
    color: #333;
    width: 120px;
    min-width: min-content;
    top: 100%;
    padding: 10px 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  }
  span#login_sup:hover a,
  span#login_sup:focus a {
    display: block;
  }
  #micuenta_top:hover .cambiar_cuenta_top,
  #micuenta_top:hover .terminar_sesion_top,
  #micuenta_top:focus .cambiar_cuenta_top,
  #micuenta_top:focus .terminar_sesion_top {
    display: block;
  }
  a.cambiar_cuenta_top {
    border-radius: 7px 7px 0 0;
  }
  a.terminar_sesion_top {
    transform: translateY(100%);
    border-radius: 0 0 7px 7px !important;
  }
  span#login_sup a.registracion {
    transform: translateY(100%);
    border-radius: 0 0 7px 7px !important;
  }
  span#login_sup a {
    border-radius: 7px 7px 0 0;
  }

  .registracion:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f234";
    font-size: 18px;
  }

  #login_sup:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f090";
    font-size: 18px;
  }

  .terminar_sesion_top:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f08b";
    font-size: 18px;
  }

  .cambiar_cuenta_top:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f013";
    font-size: 18px;
  }

  #login_sup:before,
  #nombre_usuario:before,
  .cambiar_cuenta_top:before,
  .registracion:before,
  .terminar_sesion_top:before {
    margin-left: 0;
  }
  #login_sup:before {
    margin-top: -3px !important;
  }

  @media (max-width: 768px) {
    .primero > div {
      pointer-events: none;
    }

    .container > .navbar-header {
      order: -1;
    }

    .caja_func_sup.pull-right.hidden-xs {
      position: static;
      display: flex !important;
      margin-top: 0;
      flex: 1;
      justify-content: center;
      align-items: center;
    }
    .cotizacion {
      background: transparent !important;
    }

    .caja_func_sup.pull-right.hidden-xs span.whatsapp-top {
      display: none;
    }

    #login_sup,
    #micuenta_top,
    #nombre_usuario,
    #login_sup a,
    #login_sup:before,
    a.cambiar_cuenta_top,
    a.terminar_sesion_top {
      display: none;
    }
  }

  .navbar-default::before,
  .navbar-default::after {
    display: none;
  }
  .nav .open > a,
  .nav .open > a:focus,
  .nav .open > a:hover {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-oscuro) !important;
  }
  .buscador ul.dropdown-menu li {
    width: fit-content;
    margin: 0 auto;
    max-width: 380px;
  }
  .buscador ul.dropdown-menu input.search-form {
    width: 300px !important;
  }

  /**** FIN MENU DESPLEGABLE PERFIL ****/

  @media (max-width: 767px) {
    .navbar-superior .container {
      display: flex;
      width: 100%;
      gap: 20px;
      align-items: center;
      padding: 15px;
      position: relative;
      margin: 0;
    }

    .navbar-superior .container::before,
    .navbar-superior .container::after {
      display: none;
    }

    .navbar-header {
      display: flex;
      position: static;
      align-items: center;
    }

    div#navbar-menu-superior {
      position: absolute !important;
      left: 0;
      top: 100%;
      background: white;
      order: 10;
      width: 100%;
      max-height: 85vh;
      margin: 0;
      border-top: none !important;
      /* display: none; */
    }
    header ul.nav.menu-info {
      flex-direction: column;
      left: 0 !important;
      padding: 0 !important;
      border-top: 1px solid var(--color-marca9) !important;
    }
    .navbar-superior .container {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
      /* padding: 15px; */
      padding: 0;
      position: relative;
    }
  }

  .ban-top-izquierda {
    width: 170px;
  }
  .social.pull-right > a.dropdown-toggle,
  span.totalCarritoConMoneda {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  body.productos .recomendadosrow button.btn.btn-primary.btn-compra {
    font-size: 11px;
    max-width: 100%;
    width: 90%;
    text-wrap: auto;
}
  body.ofertas .precant_ofe {
    display: none;
}
  div#slides_ofertas img {
    max-width: 100%;
  }
  .fa-shopping-cart:before {
    content: "\f2bd" !important;
  }
  body {
    padding-top: 100px;
  }
  div#slides_ofertas_b {
    width: 100%;
  }
  .top-number.pull-left.hidden-xs {
    display: block !important;
  }
  ul#menutop li {
    display: none;
  }
  .slick-slide img {
    max-width: 100%;
  }
  .spot_ofertas_sup img {
    width: 100%;
    height: auto;
    margin: 10px auto;
    float: none !important;
  }
  .proyector-ofertas-img-mobile,
  .proyector-novedades-img-mobile,
  .proyector-postnovedades-img-mobile {
    display: block;
  }
  .proyector-ofertas-img-mobile img,
  .proyector-novedades-img-mobile img,
  .proyector-postnovedades-img-mobile img {
    border-radius: 25px 25px 0 0;
    width: 100%;
    padding: 0;
  }
  .spot_ofertas_inf a {
    /* width: 50%; */
    padding: 5px;
  }
  .spot_ofertas_inf_inf,
  .spot_ofertas_sup {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px auto;
  }
  .spot_ofertas_inf_inf a,
  .spot_ofertas_sup a {
    width: 100%;
    margin: 0;
  }
  .spot_ofertas_sup a:last-child {
    width: 100%;
  }
  .noticiashome1 img {
    opacity: 1;
  }
  a.dropdown-toggle.pull-right.hidden-md.hidden-lg {
    color: var(--color-marca1);
  }
  ul.nav.navbar-nav#nav {
    margin-top: 20px !important;
  }
  body.detalle {
    padding-top: 150px;
  }
  .detalle_producto {
    margin: 0 15px;
  }
  body.detalle .addto.row input#boton_compra {
    position: relative;
    left: -80px;
    bottom: 32px;
    padding: 5px 20px;
    margin: 0 !important;
    width: auto;
  }
  body.detalle .form-group button {
    width: 100%;
    background: var(--color-marca1) !important;
  }
  .buscador {
    width: 100% !important;
    text-align: right;
  }
  .buscador a.dropdown-toggle {
    z-index: 9999;
    position: relative;
    color: var(--color-marca1) !important;
    font-weight: bold !important;
    font-size: 20px;
    top: 2px;
  }
  div#carrito_top {
    margin-top: 3px !important;
  }
  .pvm .row {
    margin: 0;
    padding: 0;
  }
  .nosotros-banner {
    max-width: 90%;
    margin: 0 auto;
  }
  .spot_ofertas_inf {
    justify-content: center;
  }
  #contacto .form-group.col-md-4 {
    width: 100%;
  }
  #contacto .form-group.col-md-4.col-sm-4.col-xs-12 {
    width: 100%;
  }
  body.busquedaAvanzada {
    padding-top: 130px;
  }
  #Descripción table {
    max-width: 100%;
  }
  .spot_ofertas_inf_inf img {
    width: 100%;
    margin: 10px auto;
  }
  span.ultimaact {
    display: block;
  }
  ul#menutop {
    display: flex;
  }
  body.default {
    padding-top: 125px;
  }
  body.default .cols-grals .row {
    margin: 0;
  }
  body.default .nov_dlarga {
    font-size: 17px;
  }
  body.default .post-info + h1.titulo {
    font-size: 25px;
  }
  .buscador ul.dropdown-menu li {
    max-width: 360px;
  }
  .buscador ul.dropdown-menu {
    left: -325px;
  }
  .autocomplete-items {
    position: absolute !important;
    overflow-y: scroll;
    max-height: 400px;
  }
  button.btn.btn-primary.btn-detalle {
    font-size: 12px;
    padding: 10px 15px;
  }
  h3.leyendaConStock,
  h3.leyendaSinStock {
    padding: 0;
  }
  .product .price {
    font-size: 22px;
  }
  .recomendadosrow .precio-sin-imp {
    padding: 0 5px;
  }
  .form-group .btn {
    width: 100%;
  }
  table#carrito {
    display: flex;
    overflow-x: scroll;
  }
  body.carrito .row.userInfo .col-xs-12 {
    padding: 0 !important;
  }
  body.carrito .detalle-pedido .col-lg-9.col-md-9.col-sm-7 {
    padding: 0;
  }
  table#resumen button#iniciarpago {
    width: 100%;
    background: var(--color-oscuro) !important;
  }
  .lista-medios-pago li {
    width: 100%;
  }
  div#loginUsuario p > a {
    display: flex;
    justify-content: center;
    width: fit-content;
    background: #993b3b;
    margin: 0 auto;
    border-radius: 25px;
    padding: 5px 15px;
    color: #fff;
  }
  .buscador ul.dropdown-menu {
    width: 350px;
}
.buscador button.btn.btn-buscartop i:before {
    color: #fefefe;
    font-weight: 100;
}
.buscador button.btn.btn-default.btn-close {
    z-index: 99999;
}
.buscador ul.dropdown-menu {
    right: 63%;
}
.navbar-fixed-top .buscador ul.dropdown-menu {
    right: 65%;
}
.autocomplete-items {
    max-width: 360px;
}
}
