:root {
  /* ── COLORES PRIMARIOS ───────────────────────────────── */
  --tx-violeta:           #7C3AED;  /* Color principal de marca */
  --tx-violeta-profundo:  #5B21B6;  /* Fondos, gradientes */
  --tx-violeta-oscuro:    #1A0E2E;  /* Tipografía, contraste */
  --tx-cian:              #22D3EE;  /* Acento, CTAs, llamados */
  --tx-off-white:         #F4F1F8;  /* Base, fondos claros */

  /* ── COLORES DE APOYO ────────────────────────────────── */
  --tx-violeta-claro:     #A78BFA;  /* Hover, sutiles */
  --tx-violeta-dark-2:    #3B2063;  /* Texto secundario oscuro */
  --tx-cian-oscuro:       #0E7490;  /* Hover acento */
  --tx-gris:              #8B7FA0;  /* Textos secundarios */

  /* ── GRADIENTES ──────────────────────────────────────── */
  --tx-grad-violeta:      linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
  --tx-grad-cian-violeta: linear-gradient(135deg, #22D3EE 0%, #7C3AED 100%);
  --tx-grad-iso:          linear-gradient(135deg, #9B6CFA 0%, #5B21B6 100%);

  /* ── TIPOGRAFÍAS ─────────────────────────────────────── */
  --tx-font-sans:    'Sora', system-ui, -apple-system, sans-serif;
  --tx-font-script:  'Caveat', cursive;

  /* ── PESOS TIPOGRÁFICOS ──────────────────────────────── */
  --tx-fw-light:     300;
  --tx-fw-regular:   400;
  --tx-fw-medium:    500;  /* Logo */
  --tx-fw-semibold:  600;
  --tx-fw-bold:      700;
  --tx-fw-extra:     800;  /* Headlines */

  /* ── ESPACIADO ───────────────────────────────────────── */
  --tx-space-xs:  0.5rem;
  --tx-space-sm:  1rem;
  --tx-space-md:  1.5rem;
  --tx-space-lg:  2.5rem;
  --tx-space-xl:  4rem;

  /* ── RADIOS ──────────────────────────────────────────── */
  --tx-radius-sm: 6px;
  --tx-radius-md: 10px;
  --tx-radius-lg: 18px;
  --tx-radius-pill: 999px;

  /* ── SOMBRAS ─────────────────────────────────────────── */
  --tx-shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.08);
  --tx-shadow-md: 0 8px 30px rgba(124, 58, 237, 0.15);
  --tx-shadow-lg: 0 20px 60px rgba(34, 211, 238, 0.25);

  /* ── PROPORCIÓN DE USO RECOMENDADA ───────────────────── */
  /* Off-white 50% · Violeta 32% · Oscuro 12% · Cian 6%   */
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important; /* color de fondo */
    -webkit-text-fill-color: #212529 !important;            /* color del texto */
    transition: background-color 9999s ease-in-out 0s;
}


.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
	clear: both
}
html { overflow-x: hidden }
a { text-decoration:none }
a, a:hover {
	color: var(--color-marca2);
	-webkit-transition: color .1s, background-color .1s;
	-moz-transition: color .1s, background-color .1s;
	-o-transition: color .1s, background-color .1s;
	transition: color .1s, background-color .1s;
	outline: none
}

body {
  font-family: var(--tx-font-sans);
  background: var(--tx-off-white);
  color: var(--tx-violeta-oscuro);
  -webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--tx-font-sans);
	background: var(--tx-off-white);
	color: var(--tx-violeta-oscuro);
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	font-size: 14px;
	padding-top: 0;
}

/* BOTONES */
.tx-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tx-cian);
  color: #063B44;
  font-family: var(--tx-font-sans);
  font-weight: var(--tx-fw-bold);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--tx-radius-sm);
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.tx-btn-primary:hover { background: var(--tx-cian-oscuro); color: #fff; }

.tx-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--tx-violeta);
  color: var(--tx-violeta);
  font-family: var(--tx-font-sans);
  font-weight: var(--tx-fw-semibold);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--tx-radius-sm);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.tx-btn-secondary:hover { background: var(--tx-violeta); color: #fff; }

/* CARDS */
.tx-card {
  background: #fff;
  border-radius: var(--tx-radius-lg);
  padding: var(--tx-space-lg);
  box-shadow: var(--tx-shadow-md);
  border: 1px solid rgba(124, 58, 237, 0.08);
}
/* HIGHLIGHT BOX (la cajita violeta del manual) */
.tx-highlight {
  background: var(--tx-violeta-profundo);
  color: #fff;
  padding: var(--tx-space-md) var(--tx-space-lg);
  border-radius: var(--tx-radius-md);
}
.tx-highlight__label {
  font-family: var(--tx-font-sans);
  font-weight: var(--tx-fw-bold);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--tx-cian);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tx-highlight__text {
  font-family: var(--tx-font-sans);
  font-weight: var(--tx-fw-bold);
  font-size: 22px;
  line-height: 1.3;
}





*:focus, button.btn.btn-buscartop:focus, button.btn.btn-buscartop:active, button:focus {
	outline: none
}
*::placeholder { padding-left:4px }

a.navbar-brand {
	margin-left: 35px;
    margin-top: 5px !important;
    margin-bottom: 2px;
    display: inline-block;
}
.form-control:focus, .search_box {
	outline: 0;
	box-shadow: none
}
  .form-control {
    transition: all .2s ease; font-size:13px
	}

	.form-control:focus {
    border-color: #ccc !important;
    outline: none;
    box-shadow: 0 0 8px rgba(124, 58, 137, .15) !important;
	}
header div.search input.search-form {
	background: none;
    border: 1px solid #c0a4ef;
}
header div.search input.search-form::placeholder { color:#000 }
b, strong { font-weight: 700 }
h1, h2, h3, h4, h5, h6 {
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	color: var(--color-marca2)
}
h1 { font-size: 250% }
h2 { font-size: 180% }
h3 { font-size: 140%; font-weight: 400; line-height: 24px }
h4 { font-size: 120% }
h5 {
	font-size: 115%;
	border-bottom: 1px solid var(--color-marca1);
	margin: 3% 0;
	padding-bottom: 10px
}

input[type=email], input[type=number], input[type=password], input[type=text] {
	border: 1px solid #ddd; color: #111;
	font-size: 14px; margin-bottom: 0px;
	height: 36px; border-radius: 10px
}
.btn { border-radius: 10px!important }
header#header {
	position: absolute;
	top: 0;
	width: 100%
}
header {
position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(239 230 255 / 85%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.top-bar {
	background: var(--color-marca1);
	color: var(--color-marca2);
	width: 100%;
	font-weight: 700;
	font-size: 15px
}

i { font-style:normal }
i.fa, i.far { font-family:'Fontawesome'; font-style:normal }
button.close { border:none; background:none }
ul.navbar-nav { margin:0 auto }
ul.navbar-nav a { font-weight:500; font-size: 13px; }
.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 180px !important;
}
.top-bar a, .top-bar i {
	color: var(--color-marca2)
}
.top-bar ul {
	margin-bottom: 0
}
.top-bar li.list-inline-item {
	border-left: 1px solid;
	padding: 5px 20px
}
.top-bar li.list-inline-item:last-child {
	border-right: 1px solid
}
.mediospago i {
	font-size: 30px
}
.search .input-group {
	display: block
}
.search, .search i {
	color: #222
}
.search {
	margin-right: 0;
	position: absolute;
	left: 50%;
	margin-left: -300px;
	top: 2px
}
input.search-form {
	background: #fff;
	border: 1px solid #999;
	width: 600px;
	color: #000;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	height: 45px;
	padding: 15px 12px;
	font-size: 14px;
	margin-bottom: 0;
	border-radius: 20px
}
.search-movil {
	display: none
}
input.search-form-movil {
	background: #fff;
	border: 1px solid #ccc;
	width: 90%;
	color: #999;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	height: 35px;
	padding: 6px 12px;
	font-size: 14px;
	margin-bottom: 0
}
span.input-group-btn {
	position: absolute;
    top: 3px;
    right: -40px;
}
button.btn.btn-buscartop {
	background: 0 0
}
button.btn.btn-buscartop i {
	color: #33a5b7
}
div.container { min-width:1280px }
@media (min-width:1600px) {
	div.container { min-width:1480px }
	
}
div.containerInner {
	    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    position: relative; margin-top:0px; padding:0px
}
div.collapse.navbar-collapse  { background: rgb(124, 58, 237); }
div.navbar-collapse a { text-transform:capitalize !important } 
li.nav-item a, li.nav-item a:hover, ul.nav.navbar-nav > li > a, ul.nav.navbar-nav > li > a:hover { color: #fff; text-transform:capitalize }
li.nav-item img { filter:invert(1) }




div.nav > div.container { width:100%; max-width:100%; padding-right:0; padding-left:0 }
div.container-fluid.header {
	position: relative;
	padding: 0
}
div#carritoDesktop {
	position: absolute;
	right: 0;
	top: 10%
}
span.carritotop, span.carritotop a {
	color: var(--color-marca2) !important
}
a#loginDesktop {
	border-radius: 10px;
	padding: 10px 20px
}
/*
div#navbarNavDropdown {
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 0;
	width: 100%;
	background: var(--color-marca2)
}
*/
div#navbarNavDropdown {
	border-top: 0px solid #666;
    /* border-image: linear-gradient(to right, #d20cdb, #1090d9, #0069a1, #004f79) 1; */
	
}
div.dropdown-menu.log1.show a:hover img { filter:invert(1) !important; border-right:1px solid #fff !important }
div.dropdown-menu.log1.show a:active { color:#666 } 
#icomovil {
	display: none
}
/*
div#navbarCollapse {
	background: #f1f1f1;
	position: absolute;
    width: 100%;
    top: 10px;
}
*/
.dropdown-menu {
	border-radius: 0;
	border: 0;
	-webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.1), -1px -1px 2px rgba(0,0,0,.1);
	box-shadow: 2px 2px 2px rgba(0,0,0,.1), -1px -1px 2px rgba(0,0,0,.1);
	color: #333;
	font-size: 1em;
	min-width: 200px;
	margin-top: 10px
}
.dropdown-menu ul li a {
	padding: 10px 20px;
	color: inherit
}
.dropdown-menu a:hover {
	background: #7996e4;
	color: #fff
}
.bootstrap-select.show>.dropdown-menu>.dropdown-menu {
	display: block
}
.bootstrap-select>.dropdown-menu>.dropdown-menu li.hidden {
	display: none
}
.bootstrap-select>.dropdown-menu>.dropdown-menu li a {
	display: block;
	width: 100%;
	padding: 3px 1.5rem;
	clear: both;
	font-weight: 400;
	color: #333;
	text-align: inherit;
	white-space: nowrap;
	background: 0 0;
	border: 0;
	font-weight: 400;
	outline: none
}
.bootstrap-select>.dropdown-menu>.dropdown-menu li a:hover {
	background: #eee;
	color: #333!important
}
.bootstrap-select .dropdown-menu {
	margin: 0!important;
	-webkit-transform: none!important;
	transform: none!important
}
.bootstrap-select .dropdown-menu::before, .bootstrap-select .dropdown-menu::after {
	display: none!important
}
.bootstrap-select .dropdown-menu {
	border-radius: 0;
	border: 0;
	-webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.1), -1px -1px 2px rgba(0,0,0,.1);
	box-shadow: 2px 2px 2px rgba(0,0,0,.1), -1px -1px 2px rgba(0,0,0,.1);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	margin-top: 15px;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	color: #333;
	font-size: 1em
}
.bootstrap-select .dropdown-menu.open {
	max-height: 230px!important
}
.bootstrap-select .dropdown-menu::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #fff;
	position: absolute;
	top: -5px;
	left: 30px
}
.bootstrap-select .dropdown-menu::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 8px solid #eee;
	position: absolute;
	top: -8px;
	left: 30px
}
.bootstrap-select .dropdown-menu .dropdown-item.active, .bootstrap-select .dropdown-menu .dropdown-item:hover {
	background: #9055a2;
	color: #fff
}
.bootstrap-select .dropdown-menu a {
	padding: 10px 20px
}
.bootstrap-select .dropdown-toggle {
	border: 1px solid #ddd!important;
	border-radius: 50px!important;
	color: #555!important;
	background: #fff
}
.dropdown-toggle {
	background: 0 0;
	outline: none;
	border-radius: 0
}
.dropdown-toggle span {
	color: #555
}
span.arrowCuenta::after {
    border: none !important;
    content: '\f107';
    vertical-align: baseline;
    font-family: fontawesome;
    margin-left: 0;
}
#logueadoDesktop.dropdown-toggle::after { display:none }
/*
.dropdown-toggle::after {
	border: none!important;
	content: '\f107';
	vertical-align: baseline;
	font-family: fontawesome;
	margin-left: 0
}*/
.bootstrap-select .dropdown-toggle:focus {
	outline: none!important;
	outline-offset: 0!important
}
ul.list-unstyled li { margin:0 }

/*
nav.navbar {
	background: #fff;
	padding: 0;
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.1);
	box-shadow: 0 2px 2px rgba(0,0,0,.1)
}
.navbar .container-fluid {
	padding: 0
}
nav.navbar .dropdown-item {
	padding: 0;
	margin-bottom: 30px
}
nav.navbar .dropdown-item:last-of-type {
	margin-bottom: 0
}
nav.navbar .nav-item {
	position: relative
}
nav.navbar a.nav-link {
	color: #565656;
	font-weight: 600;
	text-transform: uppercase
}
nav.navbar a.nav-link.active, nav.navbar a.nav-link:hover {
	color: #d37d00
}
nav.navbar a.nav-link i {
	margin-left: 3px
}
nav.navbar .cart .dropdown-menu {
	padding: 30px
}
nav.navbar a.view-cart {
	display: none
}
nav.navbar .cart-product {
	min-width: 320px
}
nav.navbar .cart-product span, nav.navbar .cart-product strong, nav.navbar .cart-product small {
	display: block
}
nav.navbar .total-price {
	padding: 10px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee
}
*/

  .sec-hd {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec-hd-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sec-accent {
    width: 4px;
    height: 28px;
    background: #7c3aed;
    border-radius: 2px;
    flex-shrink: 0;
}
.sec-title {
    font-size: 20px;
    font-weight: 900;
    color: #414141;
    letter-spacing: -0.5px;
}


span#montoCarrito {
	font-weight: 700;
	font-size: 22px
}
nav.navbar .CTA .btn, nav.navbar .CTA .btn-template-outlined {
	width: 50%
}
nav.navbar .CTA .btn:first-of-type, nav.navbar .CTA .btn-template-outlined:first-of-type {
	margin-right: 10px
}
.right-col {
	position: absolute;
	right: 0;
	width: 200px;
	top: 0;
	height: 50px
}
nav.navbar .right-col a.dropdown-toggle {
	color: #333;
	margin: 0 10px;
	text-decoration: none;
	cursor: pointer;
	font-size: 1.2em
}
nav.navbar .right-col a.dropdown-toggle::after {
	display: none
}
nav.navbar .right-col .cart {
	font-size: 1.1em;
	position: relative
}
a#cartdetails i {
	margin-right: 10px
}


input.btn-volver, input.botonfiltro {
	background: none;
    border: 1px solid #7c3aed;
    color: #7c3aed;
    font-size: 12px; transitio:all .3s
}
input.btn-volver:hover, input.botonfiltro:hover { background:#7c3aed; color:#fff }
.btn-success, .btn-success:hover {
    background: #8751ef;
    border: 0 !important;
    color: #fff !important;
    cursor: pointer; font-size: 12px !important; border:1px solid #8751ef !important
}
ul.nav.navbar-nav li { position:relative }
div#navbarNavDropdown {
	width: 100%;
    margin: 0;
    position: absolute;
    top: 63px;
}
div.nav {border-bottom: 0px solid #eee;}
div#logueado div.dropdown-menu p { font-size:12px; font-weight:normal !important }
a.dropdown-item { padding: 10px 20px 10px 10px; font-weight:400; font-size:12px }
nav.navbar .cart-no {
	min-width: 20px;
	min-height: 20px;
	border-radius: 50%;
	font-size: .6em;
	background: #9055a2;
	color: #fff;
	text-align: center;
	position: absolute;
	top: -5px;
	right: 0
}
nav.navbar .menu-large {
	position: static!important
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap>li>.dropdown-item {
    white-space: normal;
}
nav.navbar .dropdown-menu { border-radius:10px }
nav.navbar .dropdown-menu li:first-child > a:hover, nav.navbar .dropdown-menu li li:first-child > a:hover { border-radius:10px 10px 0 0  }
nav.navbar .dropdown-menu li:last-child > a:hover, nav.navbar .dropdown-menu li li:last-child > a:hover { border-radius: 0 0 10px 10px }
nav.navbar .dropdown-menu li:only-child > a:hover, nav.navbar .dropdown-menu li li:only-child > a:hover { border-radius: 10px }
nav.navbar div#navbarNavDropdown > ul > li {
	padding:5px 8px
	
}
nav.navbar div#navbarNavDropdown > ul.navbar-nav > li { margin:0; }
nav.navbar div#navbarNavDropdown > ul.navbar-nav > li > a { padding: 5px 15px; transition:all .3s}
nav.navbar div#navbarNavDropdown > ul.navbar-nav > li > a:hover {
	background: #9967ed;
    padding: 5px 15px;
    border-radius: 5px;
	
}
button.btn-ingresar {
	background: var(--tx-cian);
    color: #063B44;
    border-radius: 8px;
    border: none;
    padding: 8px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
}


.dropdown-menu {
	border-radius: 0;
	padding: 0;
	margin-top: 5px
}
.dropdown-menu>li a {
	padding: 7px 15px!important;
	color: #333;
	font-size: 14px; font-weight:normal;
}
.dropdown-menu>li a:hover {
	color: #000 !important; background:#ddd
}
.dropdown-menu>a:active {
	background-color: #fff
}
.dropdown-submenu {
	position: relative
}
.dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -2px;
	font-size: 1em
}
li.dropdown-submenu a {
	color: #000!important
}
.megamenu {
	width: 100%;
	padding: 40px 30px!important;
	margin-top: 0;
	z-index: 9999;
	background: #000
}
.megamenu strong {
	margin-bottom: 10px;
	display: block
}
.megamenu a, .megamenu a:hover, .megamenu a:focus {
	color: #fff
}
.megamenu ul {
	padding: 0;
	margin-bottom: 18px;
	font-size: 12px
}
.megamenu ul li {
	margin: 0px 0
}
ul.list-unstyled li a { padding-left:10px !important }


a.btn.btn-compra-rapida {
	background: var(--color-marca1);
	color: #fff
}
a:hover.btn.btn-compra-rapida, a:focus.btn.btn-compra-rapida {
	background: var(--color-marca2)
}


span#contador {
	color: #fff!important;
    background: #7a7a7a;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    font-weight: 500;
    position: relative;
    left: -5px;
    top: -5px
}
.dropdown-menu.megamenu a:hover {
	color: #000
}

@media(max-width:992px) {

a.view-cart {
	display: inline-block!important;
	font-size: .85em;
	text-decoration: none!important;
	margin-left: 10px;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
nav.navbar .search, nav.navbar .right-col a.dropdown-toggle {
	margin-bottom: 10px!important
}

nav.navbar .cart-no {
	right: auto;
	left: 55px
}

}
section.slider {
	padding: 0;
	margin: 0 auto
}
.flexslider {
	border: 0
}
.flex-direction-nav a {
	color: #fff!important;
	background: none;
	height: 70px!important;
	width: 70px!important;
	text-align: center!important;
	padding-top: 10px
}
.flex-direction-nav a:before {
	display: none!important
}

.title-sol span, .widget h5, h4.tit_categorias {
	text-transform: uppercase
}
.title-sol.style2::after {
	background: var(--color-marca1);
	content: "";
	display: block;
	height: 1px;
	margin-left: 0;
	position: absolute;
	top: 50px;
	width: 100%;
	z-index: 1;
	display: none
}
.title-sol.style2 {
	font-size: 25px;
	font-weight: lighter;
	line-height: 36px;
	margin: 0 0 20px;
	padding: 0;
	position: relative;
	border: none;
	font-family: 'Sora', sans-serif
}
.title-sol {
	font-family: 'Sora', sans-serif;
	color: var(--color-marca2);
	border-bottom: 0px solid #ddd;
	border-top: 0px solid #ddd;
	font-size: 22px;
	line-height: 24px;
	margin: 10px 0;
	padding: 0
}
.title-sol.style2 span {
	color: var(--color-marca2);
	background: none;
	display: table;
	position: relative;
	z-index: 2;
	padding: 5px 15px;
	text-align: left;
	text-transform: uppercase
}
.title-sol span {
	display: inline-block
}

#ofertas_home .container-fluid, #novedades_home .container-fluid {
	padding: 2% 10%
}
section#ofertas_home .col-md-prod, section#novedades_home .col-md-prod {
	width: 16.6666%;
	padding-left: 8px;
	padding-right: 8px;
	margin: 5px 0
}
section#ofertas_home div.owl-carousel .col-md-prod, section#novedades_home div.owl-carousel .col-md-prod {
	width: auto;
	padding-left: 8px;
	padding-right: 8px;
	margin: 5px 0
}
.row.owl-carousel.owl-theme.owl-loaded.owl-drag {
	margin: 0 auto!important
}
div.owl-nav span {
	font-size: 50px;
    color: #a19d9f;
    font-weight: 700;
}
div.owl-nav {
	position: relative
}
div.owl-nav .owl-prev {
	left: 30px
}
button.owl-next {
	float: right
}
section#novedades_home {
	margin: 0; background:none; padding-top:40px; padding-bottom:60px
}
#novedades_home hr {
	border-top: 1px solid var(--color-marca1)
}
section#noticiasHome {
	margin-top: 15px
}
.cajanove {
	background: #fff;
	padding: 8px
}

.cajanove h1 {
	font: 700 16px 'Sora', sans-serif;
	color: #3e9020
}
.cajanove h1 a {
	color: #3e9020
}

div#barrahormiga {
	border: 0px solid #ccc;
	margin-bottom: 20px;
	padding:0;
	background: 0 0;
	border-radius: 10px;
	margin:20px 0
}
div#barrahormiga i {
	color: var(--color-marca2)
}
div#barrahormiga a {
	font: 600 20px 'Sora', sans-serif;
	color: #444
}
div#barrahormiga > div { padding-left:0 }
div#barrahormiga select {
	padding: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-border-radius: 4px
}
div#barrahormiga div.col-md-8 {
	padding-top: 5px
}

/*** PRODUCTO CAJA ***/
.product {
	background: #fff;
	padding: 0;
	border-radius: var(--tx-radius-lg); -webkit-border-radius:var(--tx-radius-lg);
	padding:10px !important;
	position:relative;
}

.product div.image {
	display: flex; position:relative;
	justify-content: center;
    align-items: center;
    overflow: hidden;
	height: 280px !important;
	align-items: center;
	border-radius: var(--tx-radius-lg); -webkit-border-radius:var(--tx-radius-lg);
}

.product div.image a {
	width: 100%; height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product div.image img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    display: block; transition:all .4s
}
.product:hover {
	box-shadow:var(--tx-shadow-md)
}
.product:hover img { 
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.product h4 a {
    color: #3a3a3a;
    text-transform: none;
    font-family: 'Sora', sans-serif;
    font-weight: 400; font-size:14px;
	text-transform:capitalize
}
.product h4 a:hover {
    text-decoration:none
}
.product .precioReal {
	font-weight:normal !important; font-size:20px
}


.product .image {
	overflow: hidden;
	width: 100%;
	margin: 0;
	/* height: 285px!important */
}

.product .porcentaje_caja {
	position: absolute;
    background: #601cd3;
    padding: 3px;
    color: #fff;
    border-radius: 5px;
    bottom: 15px;
    left: 0;
    font-size: 12px;
    font-weight: 500; z-index:2
}

.product .badge-visto {
font-size: 11px;
    display: inline-block !important;
    color: #ffffff;
    background: #22d3ee;
    padding: 3px 8px;
    position: absolute;
    z-index: 2;
    -webkit-border-radius: 6px 0 6px 0;
    border-radius: 0px 6px 0px 6px;
    font-weight: bold;
    right: 0;
    top: 0;
    top: 13px;
    right: 15px;
}
  div.image a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
  
.imagen-principal,
.imagen-secundaria {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:all .35s;
}
.imagen-principal {
    opacity: 1;
    transform: scale(1);
}

.imagen-secundaria {
    opacity: 0;
    transform: scale(1.05);
}
/*
.image:hover .imagen-principal {
    opacity: 0;
    transform: scale(.98);
}

.image:hover .imagen-secundaria {
    opacity: 1;
    transform: scale(1);
}
*/
.image.hover .imagen-principal{
    opacity:0;
    transform:scale(.98);
}

.image.hover .imagen-secundaria{
    opacity:1;
    transform:scale(1);
}
/*
.imagen-principal {
    opacity: 1;
}

.imagen-secundaria {
    opacity: 0;
    pointer-events: none;
} 
  
  */
  
  div.image img {
	max-width: 80%;
	max-height: 100%;
	object-fit: contain;
  	margin: auto auto;
}
  



#detalleHome { margin-top:60px; margin-bottom:45px }
/* PRODUCTOS ASOCIADOS */
div.asociado { display:flex; align-items:center; border:1px solid #ccc; border-radius:10px; margin-bottom:10px; padding:10px }
div.asociado col-md-10 { padding-left:5px }
div.asociado h4 { margin:0 }
div.asociado h4 a  {     font-size: 14px;
    text-transform: capitalize; }
div.asociado .price { font-size:15px !important; padding:0 !important }

#detalle #tablaDescuentosCantidad.estilo {
	border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px; width:90%; font-size:12px

}
#detalle #tablaDescuentosCantidad > b { padding-left:7px }
#detalle table.tablaDescuentos { margin:0 !important }
#detalle table.tablaDescuentos tr:last-child td {
	border:none !important
}

#detalle div#productos_asociados_detalle h5 span {
	font-size:16px !important;
	text-transform:none !important
	
}









#articulos .product .image {
	overflow: hidden;
	width: 100%;
	margin: 0;
	/* height: 240px!important; */
	-webkit-border-radius: 8px 8px 0 0;
	border-radius: 8px 8px 0 0;
}
#articulos .product.modofila { margin-bottom:15px; display:flex; align-items:center }
#articulos .product.modofila .col-md-1 { display:flex; align-items:center; background:#fff; border-radius:10px }
#articulos .product.modofila .col-md-1 img { width:100% }
#articulos .product.modofila .description { align-items: center;
    display: flex; }
#articulos .product.modofila .description + div.col-md-3 { padding-top:0px; }

.price {
	font-size: 25px;
	color: #333;
	padding: 10px 0;
	font-weight: 700
}
.btn.btn-compra {
	background: #9d9d9d;
    font-size: 13px;
    color: #fff !important;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    padding: 6px 15px; cursor:pointer
}
.btn.btn-compra:hover {
	color: #fff;
	background: #5a5a5a
}
.art_cod_precios {
	display: block;
	padding: 5px
}
.movil {
	display: none
}



h1.botonfiltrar {
	border: 1px solid #ccc;
	padding: 8px;
	font: normal 16px 'Sora', sans-serif;
	display: none
}
h1.botonfiltrar a {
	display: block
}
div.filtros_left {
	display: block
}
div.filtros_left h3, li.menuLatTit {
	font: 600 14px 'Sora', sans-serif;
    color: #262752 !important;
    padding: 5px;
    padding-left: 0;
    background: NONE;
    padding: 5px 0;
    border-radius: 5px;
}
span.cateactual, span.subcateactual {     margin-bottom: 15px;
    display: inline-block;
	font-size:13px;
    margin-right: 8px;}
li.menuLatTit {
	margin-bottom: 10px!important
}
i.borrarcate, i.borrarsubcate, i.borrarmarca {
	color: #858487
}
span.cateactual, span.subcateactual, span.marcaactual {
	font-weight: 400;
	color: #000
}
span.cateactual b, span.subcateactual b, span.marcaactual b { font-weight:normal }
ul.cates, ul.subcates, ul.marcas {
	border-bottom: 0 solid #ddd;
	list-style-type: square;
	padding-bottom: 15px;
	margin-left: 0;
	padding: 0
}
ul.marcas { text-transform:capitalize; font-size:13px }
div.nav_subcat_p ul {
	padding: 0
}
ul.cates li label, ul.subcates li label, ul.marcas li label {
	cursor: pointer
}
ul.cates li label:hover, ul.subcates li label:hover, ul.marcas li label:hover {
	cursor: pointer
}
ul.marcas, ul.filtros, div.nav_subcat_p li {
	list-style: none!important
}
li.menuLatTit {
	font: 700 14px 'Sora', sans-serif;
	color: #59d802
}
ul.term-list {
	padding-left: 20px
}
div.col_pager {
	padding-left: 0;
	margin: 20px 0;
	width: 100%;
	text-align: center;
	display: inline-block
}
div.button-pager li {
	float: none;
	display: inline-block;
	list-style-type: none;
	margin: 0 10px 10px;
	min-width: 34px;
	min-height: 34px;
	padding: 7px 10px;
	vertical-align: middle;
	font-weight: 700
}
div.button-pager li a img {
	margin-top: 3px;
	display: block
}
div.button-pager li.button-pager a {
	padding: 7px;
	margin: -7px;
	padding-left: 12px;
	padding-right: 12px;
	margin-left: -12px;
	margin-right: -12px;
	color: var(--color-marca1)
}
li.button-rpager {
	background: 0 0!important
}
div.button-pager li:hover {
	background: #f3f3f3;
	border-radius: 100%
}
div.button-pager li a:hover {
	color: #000;
	text-decoration: none
}
.barraformato {
	text-align: right
}
#articulos .col-md-prod {
	width: 25%;
	padding-left: 8px;
	padding-right: 8px;
	margin: 5px 0
}
h1.prod-titulo {
	font: 700 25px 'Sora', sans-serif;
	color: #333; text-transform:capitalize; width:85%
}
.prod-codigo {
	font: 400 13px 'Sora', sans-serif;
	color: #999
}
#detalle span.precioCuota { color:#df2530; font-weight:bold }
#detalle .precios { margin:30px 0 }
#detalle div.price #precio { font-weight:bold }
#detalle .price {
	font-size: 40px;
	font-weight: 700
}
#detalle ul#cuotas {
    padding: 0;
    list-style: none;
    margin: 20px 0;
}
#detalle a.verTodasCuotas {
	background: #ccc;
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 5px;
}
#detalle ul#cuotas li { padding:8px 0 }
#relacionados .price {
	font-size: 20px;
	font-weight: 700;
	padding: 5px
}
#relacionados .product h4 {
	margin-bottom: 0
}
#relacionados .col-md-prod {
	width: 25%
}
#redessh {
	
	padding: 2% 0;
	margin: 5% 0;

}
span.stLarge {
	-webkit-border-radius: 100%;
	color: var(--color-marca2);
	border-radius: 100%;
	padding-top: 20px;
	font-size: 20px;
	height: 60px;
	width: 60px
}
#recomendar2 {
	top: -20px;
	border: 1px solid #000;
	border-radius: 100%;
	height: 32px;
	width: 32px;
	background: 0 0;
	position: relative;
	cursor: pointer;
	box-shadow: none;
	-webkit-box-shadow: none
}
.sp-wrap {
background:#fff!important; max-width:100% !important;
	border: 0px solid #ccc !important
}
.stButton .stLarge {
	height: 32px!important;
	width: 32px!important
}
.stButton .stLarge:hover {
	background-position: unset
}
.dlarga>h3 {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px;
	text-transform: uppercase;
	font-weight: 700
}
.dlarga_content .row .col-md-6 .row {
	margin: 0
}
.dlarga_content .row .col-md-6 .row .col-md-6 {
	background: #f3f3f3
}
span.dlarga_content h3 {
	border-bottom: 1px solid var(--color-marca1);
	padding-top: 10px
}
div.dcorta {
	margin: 15px 0
}
div.dlarga {
	margin: 15px 0
}
.dlarga_content .col-md-6 {
	margin: 10px 0
}
.detmp {
	width: 22%!important
}
button#cotizarEnvio {
	background: #ccc;
	border: 0;
	padding: 10px 30px;
	border-radius: 10px;
	margin-top: 20px
}
.login {
	max-width: 700px!important
}
.login h3, .login h4 {
	text-align: center;
	margin-bottom: 2%
}
.login span {
	color: var(--color-marca2)
}
.btn.btn-login {
	background: #3a1a70; font-size:15px;
	cursor: pointer;
	color: #fff;
	display: block;
	padding: 7px 22px; cursor:pointer
}
.btn.btn-login:hover {
	background: #6a43ad
}
span#errorlogin span, span#errorlogin2 span {
	color: red;
	padding: 8px 0;
	display: block!important;
	text-align: center!important
}
.login-help {
	color: var(--color-marca2)
}
form.form-registro div.input-group {
	padding: 10px 0
}
#log1 i, #nolog1 i {
	color: red
}
input#cuponid {
	width: 80%
}
.btn-cupon {
	margin-left: 8%
}
div.cabcarrito {
	background: #e0e0e0;
	border-bottom: 1px solid #aaa;
	padding: 8px
}
div.cabcarrito>div {
	padding-left: 15px;
	padding-right: 15px
}
div.filacarrito {
	padding: 15px 10px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 1px solid rgba(124, 58, 237, 0.08);
}
.titproditemcarrito {
	font-weight: 500;
    text-transform: capitalize;
}
.preciounitarioitemcarrito {
	font-weight: 700;
	color: var(--color-marca2)
}
.preciosubtotalitemcarrito {
	font-weight: 700;
	color: #000;
	font-size: 16px
}
.resumencarrito .cajaresumencarrito {
	padding: 20px;
	border: 0 solid #e0e0e0;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	margin: 5px 0
}
div.todocarrito {
	padding: 15px
}
.carritoeliminar span {
	font-family: sans-serif
}
i.carritoeliminar span {
	color: #ff7f76
}
ul#formaspago {
	list-style: none;
	margin: 0;
	padding: 0
}
ul#formaspago > li {
	border:1px solid #e5e5e5;
	padding:10px;
	margin-bottom:15px;
	border-radius:5px; cursor:pointer
	
}
ul#formaspago li ul {
    padding-left: 100px;
}
ul#formaspago li label {
	cursor: pointer
}
ul.op {
	list-style: none
}
span#titcheckout2 {
	font: 700 30px 'Sora', sans-serif;
	color: var(--color-marca2)
}
small.help-block {
	color: #f44336
}
.contacto {
	margin: 5% auto
}
.contacto i {
	border-radius: 100%;
	height: 50px;
	width: 50px;
	text-align: center;
	font-size: 20px;
	border: 1px solid;
	padding-top: 15px;
	margin-bottom: 10px
}
.contacto iframe {
	margin-top: 5%
}
.btn-success {
	background: 090;
	border: 0;
	color: #fff!important; cursor:pointer
}
.btn-focus:hover, .btn-success:hover, .btn-compra:hover, .btn-default:hover, .btn-success.focus .btn-success:focus, .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {
	background: #5f31b9
}
.modal h5.modal-title {
	font: 500 16px 'Sora', sans-serif!important;
	color: #3a1a70;
	letter-spacing: normal;
	text-align: center;
	padding: 8px;
	width: 100%;
	border-bottom: 0
}
.modal-header {
	padding: 8px
}
.modal-footer {
	display: block;
	text-align: center
}
a.modalcuotas {
	padding: 10px 20px;
	display: inline-block;
	background: var(--color-marca1);
	color: #fff;
	border-radius: 10px;
	margin-top: 10px;
	text-decoration: none
}
a.modalcuotas h3 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0
}
.modal-header {
	padding: 8px; background:#d6cde1
}
.modal-footer {
	display: block;
	text-align: center
}
div#ModalAgregar div.modal-body {
	background: #fff
}
div#ModalAgregar div.modal-footer {
	text-align: center;
	padding-bottom: 10px
}
div#ModalAgregar div.modal-footer a.btn.btn-primary {
	background: red
}
div#ModalAgregar div.modal-footer a.btn.btn-secondary {
	color: #fff!important
}
div.modal-content div.search {
	width: 100%
}
div.modal-content div.search div.input-group input.search-form {
	width: 100%
}
.armarpc {
	background: #000;
	color: #fff;
	padding-top: 20px
}
.armarpc h1, .armarpc h2 {
	color: #fff
}
div#componentesAgregados .tit-armado-2 {
	font: 700 16px 'Sora', sans-serif;
	background: var(--color-marca1);
	color: #fff;
	text-align: center;
	padding: 10px
}
div#detallearmado .row {
	padding: 10px 0;
	margin: 0;
	border-bottom: 1px dashed #ccc
}
img.img-componente-agregados {
	max-width: 60px;
	margin-right: 10px
}
div#componentesAgregados {
	border: 1px dotted #ccc
}
div.tit-parte-armado {
	font-size: 20px;
	padding: 10px;
	margin-bottom: 15px;
	border-bottom: 1px dotted #ccc
}
div.tit-parte-armado img {
	width: 50px
}
h4.desc-item-armado {
	padding: 5px;
    color: #3a3a3a;
    text-decoration: none;
    font-size: 14px;
    text-transform: none;
    font-weight: normal;
}
.pasoselect {
	background: #ccc
}
.precio-ami {
	font-family: 'Sora', sans-serif;
    font-size: 20px;
}
.componente {
	font-size: 15px
}
div#detallearmado .col-md-9 i {
	right: 5%!important;
	font-size: 20px
}
.marcamicro, .caja-prod-armado {
	cursor: pointer
}
.caja-prod-armado {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	padding: 10px;
    border-radius: 4px;
    background: #fff;
    border: none;
    
}
.caja-prod-armado:hover {
	border: 0px solid var(--color-marca1)
}
.caja-prod-armado div.img-item img {-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;}
.caja-prod-armado:hover div.img-item img { transform:scale(1.2) }
.marcamicro .caja-prod-armado, .marcamicro .caja-prod-armado:hover {
	border: 0
}
div#pasos { padding: 20px 0; }
.marcamicro h4 {
	font-weight: 700;
	font-size: 18px;
	margin-top: 10px
}
h6.tit-armado-2 { display:none }
div.armarpc-seleccionados div.col-md-armarpc {
	width: 20%
}
.resumentotal {
	margin-top: 20px
}
.totalpriceami {
	font-weight: 700;
	font-size: 25px
}
.modificar {
	float: right;
	width: 100%;
	text-align: right;
	color: var(--color-marca1)
}
.modificar a {
	color: #ee7202;
	text-decoration: none
}
.modificar a:hover {
	color: red;
	text-decoration: none
}
div#detallearmado h3 {
	font-weight: 100
}
.infoitemarmado {
	text-align: center
}
.sincantidad select {
	display: none
}
p#contenidoModalCotizacion {
	border: none;
	text-align: center
}
p#contenidoModalSelector select {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-right: 8px
}
div#modalEnvioPack div.modal-body {
	text-align: center
}
div#modalEnvioPack div.modal-footer {
	border: none
}

iframe#iframeUIE { display:none }
iframe#iframeUIE + script + div { background:#000 }
div#divGlobalBluePointFooter {
	background:#1A0E2E !important
}
.pwdEye {
    width: 20px;
    position: absolute;
    right: 20px;
    top: 40%;
    cursor: pointer;
    opacity: .5;
}

/* modales */
div.modal-content { background: #fff }








div.divGlobalBluePointContenedor div.divGlobalBluePointFirma p a { width:auto !important }
div.divGlobalBluePointFirma a:hover { color:#fff !important }
footer {
	background: #1a0e2e;
	padding: 5% 0%
}
footer, footer a, footer a:hover, footer a:focus {
	color: #eee
}
footer h1 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase
}
footer hr {
	width: 100px;
	border: 1px solid var(--color-marca1);
	margin-left: 0
}
footer li {
	margin: 4px 0; font-size:12.5px
}
footer div.footer-col a {
	display: block
}
footer div.footer-col h3 {
	color: #fff;
	font-weight: 700
}
footer .redes {
	margin-top: 15px
}
footer .redes a:hover {
	text-decoration: none
}
div.info_footer img.ico {
    width: 60px;
    opacity: .8;filter:invert(1);
    float: left; margin-right:10px
}
div.info_footer div { display:flex; align-items:center }
div.info_footer a { color:#fff; }
div.redesfooter i {
	font-size: 45px
}
b.titcontacto { margin-bottom:8px; display:block }
div.redesfooter .fa-facebook-square {
	color: #2d62ce;
	background: #fff;
	border-radius: 40% 50%;
	line-height: 38px
}
div.redesfooter .fa-youtube-play {
	color: red;
	background: #fff;
	border-radius: 100%;
	line-height: 30px
}
div.redesfooter .fa-instagram {
	color: #e1306c;
	background: #fff;
	border-radius: 50%;
	line-height: 38px
}
footer div.footer-col.redesfooter a {
	display: inline
}
#ctrlDataFiscal_image {
	width: 50px;
	margin-bottom: 20px
}
select.cant-prod-armado {
	    position: relative;
    top: -10px;
}
@media(min-width:480px) and (max-width:2500px) {
	div#link-ver-detalle-armado {
		display:none
	}
}
@media(min-width:1920px) {
	.product .image {
		/*height: 370px!important*/
	}
}

@media(max-width:1920px) and (min-width:1024px) {
#solapas a.nav-link {
	font-size: 14px;
	color: #aaa;
	font-weight: 700
}
#solapas a.nav-link.active {
	font-size: 14px;
	color: #59d802;
	font-weight: 700
}
}

@media(max-width:1440px) {
ul#menu-productos {
	padding-top: 25px;
	margin-left: 0!important
}
ul#menu-perifericos {
	left: -113px!important;
	padding-top: 25px
}
}

@media(max-width:1360px) {
ul#menu-productos {
	padding-top: 25px;
	margin-left: 0!important
}
ul#menu-perifericos {
	left: -78px!important;
	padding-top: 25px
}
}

@media(max-width:1280px) {
.cbp-hrmenu>ul>li>a {
	font-size: 12px!important
}
figure.menu-spots h2 {
	font: 100 30px calibri, sans-serif
}
}

@media(max-width:1160px) {
ul.dropdown-menu {
	width: 1100px!important;
	position: absolute;
	left: 0;
	background: #000
}
ul#menu-productos {
	padding-top: 25px;
	margin-left: -198px!important
}
ul#menu-perifericos {
	left: -40px!important;
	padding-top: 25px
}
input.search-form {
	width: 550px
}
.search {
	margin-left: -270px
}
}

@media(max-width:1024px) {
ul.dropdown-menu {
	width: 960px!important;
	position: absolute;
	left: 0;
	background: #000
}
ul#menu-productos {
	padding-top: 25px;
	margin-left: -121px!important
}
ul#menu-perifericos {
	left: -35px!important;
	padding-top: 25px
}
input.search-form {
	width: 400px
}
.search {
	margin-left: -220px
}
}

@media(min-width:769px) {
a#usuarioMovilSinLoguear, a#usuarioMovilLogueado {
	display: none!important
}
}

@media(max-width:768px) {
h1.botonfiltrar {
	display: block
}
div.filtros_left {
	display: none
}
/*
nav.navbar.navbar-expand-lg {
	position: relative
}
a.navbar-brand {
	margin-left: 35px;
	margin-top: 7px;
	margin-bottom: 2px
}
button.navbar-toggler {
	left: 0!important;
	position: absolute;
	top: 13px
}
a.navbar-brand img {
	max-width: 180px;
	margin-left: 0px
}*/
a#abrirpanelcarrito {
	position: absolute;
	top: 22px;
	right: 15px
}
a#usuarioMovilSinLoguear, a#usuarioMovilLogueado {
	position: absolute;
	top: 22px;
	right: 95px
}
a#abrirpanelbusqueda {
	position: absolute;
	top: 22px;
	right: 60px
}
a.nav-link {
	padding: 12px!important
}
ul.dropdown-menu.dropdown-cart {
	width: 100%;
	top: 50px;
	padding: 10px;
	color: #000
}
.col-md-prod, #articulos .col-md-prod {
	width: 100%;
	padding-left: 8px;
	padding-right: 8px
}
#relacionados .col-md-prod {
	width: 33.33%;
	padding-left: 8px;
	padding-right: 8px
}
ul.dropdown-menu {
	width: 100%!important;
	position: absolute;
	left: 0;
	background: #39255a
}
ul#menu-productos {
	padding-top: 25px;
	margin-left: 0!important
}
ul#menu-perifericos {
	left: 0!important;
	padding-top: 25px
}
.hidden-md, .hidden-lg {
	display: inline
}
input.search-form {
	width: 400px
}
.search {
	display: none
}
}

@media(max-width:767px) {
ul.logos-tarjetas li {
	width: 16%
}
div.texto-tarjetas {
	margin-top: 0
}
span.icono {
	margin-top: 15px
}
}

@media(min-width:481px) {
.ver_detalle_armado_pc {
	display: none
}
}

@media(max-width:480px) {
	.top-bar span {
		display: none
	}
	.top-bar li.list-inline-item {
		border: 0!important
	}
	div.barraformato {
		display: none
	}
	button.navbar-toggler {
		top: -45px
	}
	.right-col {
		position: absolute;
		right: 0;
		width: auto;
		height: auto;
		top: -45px
	}

	.input-group-btn {
		position: absolute;
		font-size: 0;
		white-space: nowrap;
		right: 0;
		top: 0
	}
	section.spots img {
		margin: 5px 0
	}
	input.search-form:focus, input.search-form:hover {
		width: 300px
	}
	#relacionados .col-md-prod {
		width: 50%;
		padding-left: 8px;
		padding-right: 8px
	}
	section#ofertas_home .col-md-prod, section#novedades_home .col-md-prod {
		width: 100%;
		padding-left: 8px;
		padding-right: 8px;
		margin: 5px 0
	}
	.barraformato {
		text-align: left
	}
	#detalle div#redessh {
		clear: both;
		margin-top: 50px
	}
	div.cabcarrito {
		display: none
	}
	header .container.header {
		width: 100%;
		padding: 0
	}
	.navbar {
		padding: 0
	}
	ul.nav.navbar-nav {
		background: #1A0E2E;
		padding: 0;
		width: 100%;
		margin-top: 0px
	}
	div#navbarNavDropdown {
		width: 100%;
		border: 0px solid;
		margin: 0;
		position: absolute;
		top: 70px;
	}
	div.redestop {
		display: none
	}
	span.ws {
		display: none
	}
	.no-js .owl-carousel, .owl-carousel.owl-loaded {
		margin-left: auto;
		margin-right: auto
	}

	div.ingresotop i {
		color: #65ba3c;
		font-size: 23px
	}
	.navbar a.navbar-brand img {
		margin-top: 10px;
		margin-bottom: 10px;
		margin-left: 20px
	}
	div.texto-tarjetas span {
		display: none
	}
	div.texto-tarjetas {
		width: 100%;
		text-align: center;
		font-size: 10px!important;
		font-family: 'Sora', sans-serif
	}
	ul.logos-tarjetas {
		margin-top: 6px
	}
	div.texto-tarjetas p {
		margin-bottom: 0!important
	}
	ul.logos-tarjetas li {
		width: 25%
	}
	span.icono p, a.verpromos {
		font-size: 10px!important;
		font-family: 'Sora', sans-serif;
		margin-bottom: 0!important;
		margin-top: 0!important;
		padding: 0
	}
	span.icono span {
		display: block
	}
	span.icono {
		margin-top: 0!important;
		margin-bottom: 0!important
	}
	ul.flex-direction-nav {
		display: none
	}
	#detallearmado {
		display: none
	}
	#componentesAgregados .col-xs-3 {
		width: 25%
	}
	#componentesAgregados .col-xs-9 {
		width: 75%
	}
	.ver_detalle_armado_pc {
		display: block;
		text-align: center;
		background: #666;
		color: #fff;
		padding: 10px;
		width: 90%;
		margin: 10px auto 0;
		cursor: pointer
	}
	.tit-parte-armado {
		margin-top: 15px
	}
	div.footer-col, div.footer-col h3 {
		text-align: left
	}
	div.ingresotop span {
		display: none
	}
	div.texto {
		width: 100%;
		text-align: center;
		margin-top: 8px
	}
	ul.no-margin.brand-carousel.slick-initialized.slick-slider {
		padding: 0
	}
	.slick-slide img {
		margin: 0 auto
	}
	span.icono img {
		width: 20%
	}
	span.icono p {
		font-size: 8px;
		font-weight: 700
	}
	.bajo-slide-pago .texto p {
		display: none
	}
	ul.logos-tarjetas li:nth-child(5), ul.logos-tarjetas li:nth-child(6) {
		display: none
	}
	ul.logos-tarjetas li img {
		width: 23px;
		margin: 0 auto;
		height: auto
	}
	.texto a {
		font-size: 8px;
		font-weight: 700
	}
	a.vertodoshome {
		margin-bottom: 30px
	}
	div.redesfooter img {
		width: 40px;
		height: auto
	}
	p.paginado {
		position: relative;
		top: -10px
	}
	p.paginado span.pagactual {
		display: block
	}
	p.paginado span.pipe {
		display: none
	}
	button.owl-next, button.owl-prev {
		display: none
	}
	.search-movil {
		display: inline;
		float: right;
		padding-top: 5%;
		margin-right: 22%
	}
	#content-mobile {
		display: block;
		position: relative;
		margin-left: 0;
		left: 0;
		top: 0
	}
	.price {
		padding: 10px 0
	}
	.contacto {
		text-align: center
	}
	#icomovil {
		display: inline-block!important
	}
	.ocultar, span#logeado {
		display: none
	}
	nav.navbar .right-col a.dropdown-toggle {
		margin-right: 10px
	}
	.cart .dropdown-menu.show {
		background: #f3f3f3;
		margin-top: 25%
	}
	.detmp {
		width: 10%!important
	}
	#detallearmado img {
		max-width: 80px;
		margin: 0 auto;
		display: block
	}
	div.tit-parte-armado img {
		width: 100%;
		max-width: 80px!important;
		display: block;
		margin: 0 auto;
		padding-bottom: 10px
	}
	.tit-parte-armado {
		padding-bottom: 15px
	}
	.precio-ami {
		text-align: center
	}
	.jumbotron h1 {
		text-align: center
	}
	.imagenitemarmado img {
		margin: 0 auto;
		display: block
	}
	#detallearmado {
		text-align: center
	}
	.modificar {
		float: none;
		text-align: center
	}
	.medios-promos {
		text-align: center;
		padding: 5%
	}
	.medios-promos i {
		display: none
	}
	.product .image {
		height: 160px!important
	}
	#articulos .product .image {
		/*height: 400px!important;*/
		        align-items: center;
        justify-content: center;
	}
	a.verTodasCuotas { display:block; margin-top:10px }
}

@media(max-width:460px) {
div.quickview {
	margin-top: 25%
}
}

@media screen and (max-width:400px) {
#sp-next, #sp-prev {
	bottom: 50%
}
}

@media(max-width:400px) {
div.quickview {
	margin-top: 35%
}
}

@media(max-width:360px) {
.search-movil {
	margin-right: 20%
}
.product .image {
	height: 180px!important
}
#articulos .product .image {
	height: 380px!important
}
}

@media(max-width:320px) {
	.search-movil {
		margin-right: 25%
	}
	a.navbar-brand img {
		margin-left: -15px;
		max-width: 160px
	}
	.product .image {
		height: 135px!important
	}
	#articulos .product .image {
		height: 330px!important
	}
}

div.botonWS {
    position: fixed;
    right: 20px;
    bottom: 10px;
    z-index: 99;
}

#relacionados .col-md-prod {
    width: 23%;
    margin: 10px;
}

#detalle input#boton-compra { display:inline-block; float:left; }
#detalle button#cotizarEnvio { clear:both; margin-top:45px; display:block }


#ofertas_home {
	padding-top:30px; padding-bottom:20px
}


section#spots1 { padding:0 0 0px 0; padding-top:50px }
	
footer h1 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Sora', sans-serif;
}


.img-responsive { width:100% }
div#divDevelopmentMode { display:none }

section#iconos_home { padding-top:50px }

@media (max-width:480px) {
div.medios-promos ul li { float:none; width:100%; text-align:center }

section#banners1 img { margin-bottom:0px }
section#boxprod div#maquinasarmadas { padding:10px; }
section#boxprod .row { margin:0 }


}

div.caja-prod-armado h4 { font-weight:normal; font-family:'Sora', sans-serif }

div.caja-prod-armado .precio-ami {
    font-family: 'Sora', sans-serif;
    font-size: 20px; font-weight:bold
}

@media (min-width:481px) {
	div.filtros h3 { font-weight:bold }
	div.filtros_left ul.cates a, div.filtros_left ul.subcates a,
	div.filtros_left ul.marcas a, div.filtros_left label { font-weight:400 }
	
}

span.dlarga_content { font-weight:400 }

.img-fluid { height:auto }
/*.owl-carousel .owl-item img { min-height:200px !important }*/





@media(max-width:480px) {
	#relacionados .col-md-prod {
		width: 50%;
		margin: 0px; margin-bottom:10px
	}
	#relacionados div.product div.image a.imagen-producto {
    min-height: 150px;
	}
	div#barrahormiga a {
		font: bold 14px 'Sora', sans-serif;
		color: #444
	}
	
	
}
div.elementoclass { border-bottom:0px solid #ccc; overflow:hidden; padding: 0 7px; }
.texto-item-armado { padding:0 }
.tit-parte-armado img { max-width:50px }
@media (max-width:480px) {
	.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 100% !important;
	}
	ul.navbar-nav .dropdown-menu { margin-top:0 }
	ul.navbar-nav .dropdown-menu a {
		background: #f4f4f4;
		color: #000 !important;
		padding-left: 35px !important;
	}
	.dropdown-item:focus, .dropdown-item:hover {
		color: #16181b;
		text-decoration: none;
		background-color: #cccccc;
	}
	img.super_ofertas_movil { display:block }
	img.super_ofertas_desktop { display:none }
	img.nuevos_ingresos_desktop { display:none }
	img.nuevos_ingresos_movil { display:block }
	section#ofertas_home > div.container > div.col-md-2 { padding-left:15px !important; padding-right:15px !important }
}

div#detallearmado .w-100 { width:80% !important }
@media (max-width:480px) {
	a.btn-primary.btn-compra { margin-left:8px; /*float:right*/ }
	#ofertas_home a.btn-primary.btn-compra, #novedades_home a.btn-primary.btn-compra,
	#relacionados a.btn-primary.btn-compra	{ width:90%; float:none; }
	.product { overflow:hidden }
}

div.owl-item div.col-md-prod div.product h4 {  }


div#contenedorBajoSlide {
    padding: 25px 0px;
    margin: 0px auto 0px;
    border-radius: 25px;
    margin-bottom: 40px;
    background: #e9e9e9;
    margin-top: 30px;
}
div.container.bajoslide { margin:0 auto }
div.bajoslide > div:nth-child(1), div.bajoslide > div:nth-child(2), div.bajoslide > div:nth-child(3) { border-right: 0px solid #fff; }
div.bajoslide > div { text-align:center; border:none }
div.bajoslide, div.bajoslide a, div.bajoslide i { color:#464646 }
div.bajada { text-align:left;}
div.bajoslide img { margin-right:20px }


section#accesosHome ul { list-style:none; padding:0; margin:0 }
section#accesosHome ul li { float:left; text-align:center }
section#accesosHome img { border-radius:50%; margin-bottom:15px }
#accesosHome .col-md-2 {
    font: bold 15px 'Sora', sans-serif;
    text-align: center;
}
.container.carousel_iconos {
	width:100%; max-width:100%; background:#fff; padding-top:20px;
}
ul.no-margin.brand-carousel {
    margin: 0 !important; padding-left:0; padding-right:0
}
.slick-slide img {
    height: 80px;  -webkit-transition: all .4s; -moz-transition: all .4s; -ms-transition: all .4s; -o-transition: all .4s; transition: all .4s;
    opacity:1; border-radius:10px
}
.slick-slide {
   background: none;
}

.slick-initialized .slick-slide { text-align:center }
.container.carousel_marcas {
    /*max-width: 100%;*/
    background: none; padding:25px 0
}
.slick-slide img:hover {
    transform: scale(1) ;  opacity:.9
}
.slick-prev:before { content: '\f137' !important }
.slick-next:before { content: '\f138' !important }
.slick-prev:before, .slick-next:before {
    font-family:'FontAwesome' !important    ;
    color:#ccc;font-size:20px
}
.slick-prev:hover:before, .slick-next:hover:before {
    font-family:'FontAwesome' !important    ;
    color:#ffc400;
}
li.slick-slide a {
    text-align:center; background: #f4f1f8;
    display: block;
}
li.slick-slide img {
    display:inline-block; mix-blend-mode:multiply
}
ul.iconos-carousel { padding:20px 0 }
ul.iconos-carousel li { text-align:center; font-weight:600 }


.caja_func_sup {
	width:200px; position:absolute; right:0; top:7px
}
.caja_func_sup #logueado, .caja_func_sup #no_logueado, .caja_func_sup .carritotop {
	float:right
}
.caja_func_sup #logueado, .caja_func_sup #no_logueado {
	margin:0 20px
}
header.header > .container { position:relative; }
.title-sol.style2 span {
    color: #454545;
    display: table;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 5px 15px;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    margin: 0 auto;
}
.title-sol.style2::after {
    background: #ccc;
    content: "";
    display: block;
    height: 1px;
    margin-left: 10%;
    position: absolute;
    top: 20px;
    width: 80%;
    z-index: 1;
}

section#iconos_home div.icono a {
   /* background: #f0f0f0;
    padding: 20px;
    display: inline-block;
    border-radius: 50%;*/
}

section#iconos_home div.icono a img { width:100px; height:auto; filter:grayscale(1); -webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s; }
section#iconos_home div.icono:hover a img { width:100px; height:auto; filter:grayscale(0); transform:scale(1.1) }
section#iconos_home div.icono { text-align:center }
section#iconos_home div.icono span { display:block; text-align:center; font-weight:bold }
section#iconos_home div.owl-nav .owl-prev {
    position: relative;
    top: -85px;
    left: -25px;
}
section#iconos_home div.owl-nav .owl-next {
    position: relative;
    top: -85px;
    left: 25px;
    height: 1px;
}

div.owl-carousel.owl-carousel-iconos {
	padding:0 30px;
}

ul.col-cat-1 { margin:0; padding:0; list-style:none }


@media (min-width:1024px) {
	.margen-pc { margin-top:30px }
}

#loginBody { padding:15px; }
div.cajalogin { width:100% }
.btn.btn-login.center-block { margin:0 auto }

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 400px;
		margin: 30px auto;
	}
}

img.img-caja-prod {
	/*max-height:170px; width:55% !important;*/ height:auto;
}

img.ahora12cajas {
	width:50px; height:50px; position:absolute; bottom:10px; right:5px;
	z-index:2
}

.nuevoTrue, .ofertaTrue {
	font-size:11px;
	display: inline-block !important;
	color:#fff;
	padding: 3px 8px;
    position: absolute;
	z-index: 2;
	-webkit-border-radius: 6px 0 6px 0;
	border-radius: 6px 0 6px 0; font-weight:bold
}

.ofertaTrue {
    background: #368b53;
    left: 15px;
    top: 13px;
}
.nuevoTrue {
    background: #e1dfe5;
    color: #ae52f1;
    left: 15px;
    top: 13px;
}
#ofertas_home .product .nuevoTrue {
	top:45px
}
#novedad_home .product .ofertaTrue {
	top:45px
}

#modalcompra a.btn.btn-secondary { font-size: 12px;
    background: #624d71;
    padding: 10px 15px; border:none  }
#modalcompra a.btn.btn-success { font-size: 12px;
    background: #4d1a67;
    padding: 10px 15px; border:none }

h1.titulos { text-align:center; margin:20px 0; font-size:22px }

.precioTachadoTrue {
	display:block !important; 
	font:700 16px 'Sora', sans-serif !important; color:#a7a7a7; text-decoration:line-through
}
.precioTachadoFalse { display:none !important } 

#relacionados .precioTachadoTrue {
	display:block !important; text-decoration:line-through;
	font:700 20px 'Sora', sans-serif !important; color:#f00
}
  a.btn.btn-compra {     
	background: #ffffff;
    border: 1px solid #7C3AED;
    color: #7C3AED !important;
    padding: 5px;
    border-radius: 7px !important;
    display: block;
    margin: 10px 0;
    font-size: 12px; text-transform:none;
    /* width: 50%; */
    margin: 10px auto; transition:all 0.3s
	}
  a.btn.btn-compra:hover { background:#7C3AED; color:#fff !important; border-radius:7px !important }

span.porcentaje {         background: #268eb8;
    color: #fff;; font-weight:bold;
    display: inline-block;
    padding: 5px;
    font-size: 12px;
    margin-left: 10px;
    border-radius: 5px; font:normal 12px 'roboto condensed',sans-serif }
ul.opc_micuenta li {
	background: #eee;
    padding: 8px;
    margin-bottom: 2px;
    border-radius: 5px;
}
ul.opc_micuenta li:hover {
	background: #ddd;
    padding: 8px;
    margin-bottom: 2px;
    border-radius: 5px;
}
ul.opc_micuenta li a { display:block; cursor:pointer; text-decoration:none }

div.cajasMiCuenta>div {
    padding: 10px;
}
div.cajasMiCuenta>div>div {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.08);
    height: 108px;
    padding: 15px;
	border-radius: 14px;
}
div.cajasMiCuenta>div>div img {
    margin-right: 15px;
    width: 80px;
}
div.cajasMiCuenta a {
    color: #6097fd !important;
    text-decoration: none;
}




#detalle section#iconos_home div.col-md-prod { margin:0 10px; }
#detalle div.owl-carousel.owl-carousel-iconos {
    padding: 0 20px 0 0px;
}
#detalle section#iconos_home .price {
	font-size:20px; font-weight:700; padding:5px
}
#detalle section#iconos_home .precioTachadoTrue { font-size:20px !important }


i.fa.fa-bars { color:#ee7202; font-size:30px }



#datos_bancarios64{
	display:block !important;
	margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}





  div#campana, #detalle div#relacionados div#campana {
	display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /* border: 1px solid; */
    position: absolute;
    top: 15px; right:15px;
    padding: 5px;
    padding-top: 5px;
    background: none; /*rgba(100,100,100,0.05);*/
    color: #ccc; font-size:1em; cursor:pointer;
	left:auto
  }
  #detalle div#campana { margin-top:0px; position:absolute; right:5px; top:0px; background:none }
  #detalle div#campana i { font-size:1em; top:0px; position:relative }
  .avisostock{
	font-size: 1em;
    color: #303133;
    cursor: pointer;
}
.avisostock:hover{
	font-size: 1em;
    color: red;
    cursor: pointer;
}
.avisostockon{
	font-size: 1em;
    color: #ff0000;
    /*padding-top: 10px;*/
    cursor: pointer;
}
.avisostockon:focus{
	font-size: 1.5em;
    color: red;
    /*padding-top: 10px;*/
    cursor: pointer;
}
#campana.fa-bell:hover{
	cursor:pointer;
	color:red;
}
#detalle .avisostock, #detalle .avisostockon { font-size:1em !important; top:0px; position:relative }

/*.fa-bell{
	color:#958f8f;
}*/
.fa-bell:focus{
	color:red;
}
.fa-bell:hover{
	color:red;
	cursor:pointer;
}
  ul#ui-id-1 { z-index:9999 }
  
.agregarAFavorito:focus{
	color:red;
}
 
div.quienes_somos_home { 
	text-align:center; padding:45px 
}


li.imagen_predictivo.ui-menu-item img { background:none !important; border-color:transparent !important}
.imagen_predictivo.ui-menu-item { font-size:11px; font-weight:400 }

#tags:focus { outline:none }



li.imagen_predictivo.ui-menu-item {
	font-weight: normal;
    font-size: 12px;
    text-transform: capitalize; border-bottom:1px dotted #ccc
}
ul.ui-autocomplete.ui-menu {
	border: none;
    background: #f2f2f2;
} 
ul.ui-autocomplete.ui-menu li:hover { background:#eaeaea }
li.imagen_predictivo.ui-menu-item img { background:none !important; border-color:transparent !important}

div.mt { margin-top:150px; margin-left:auto; margin-right:auto }

ul.navbar-nav.mx-auto { padding:0 !important }
a.nav-link { /* padding:10px 20px !important */ }

section#accesosHome {
    background: #f8f8f8;
    padding: 20px 0 !important;
    margin: 0;
}
section#accesosHome div.container {
    margin: 0 auto;
}
section#accesosHome ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
section#accesosHome ul li {
    float: left;
    width: 14.28%;
    padding: 10px;
    text-align: center;
    font: 700 14px 'Sora', sans-serif;
}
section#accesosHome ul li a {
    background: #fff;
    display: block;
    border-radius: 50%;
    display: block;
    transition: all .5s ease 0;
    -webkit-transition: all .5s ease 0;
    -moz-transition: all .5s ease 0;
    -ms-transition: all .5s ease 0;
    transition: all 0.5s ease;
    border-radius: 50%;
    padding: 24px 0px;
    text-align: center;
}

section#accesosHome ul li a { transition: all .5s ease 0;
    -webkit-transition: all .5s ease 0;
    -moz-transition: all .5s ease 0;
    -ms-transition: all .5s ease 0;
    transition: all 0.5s ease; }
section#accesosHome ul li:hover a { transform: scale(1.05); }
section#accesosHome ul li a  img { width:105px }
div.bajoslide img {
    width: 35px;
    float: left;
    margin-right: 0 18px;
}
div.bajoslide div.col-md-3 {
    text-align: left;
}
div.bajoslide > div:nth-child(1), div.bajoslide > div:nth-child(2), div.bajoslide > div:nth-child(3) {
    border-right: 0px solid #bbb;
}
/*
#novedades_home .owl-nav, #ofertas_home .owl-nav { display:none }
*/

div.owl-carousel { position:relative }
#novedades_home .owl-nav, #ofertas_home .owl-nav {
	position:absolute; top:45%;
	
}
div.owl-carousel svg { width:50px; height:50px }
div.owl-carousel svg {
    color: #7c3aed; transition:all .3s ease
}
div.owl-carousel svg:hover {
    background: rgb(239 230 255 / 85%);
    color: #7c3aed;
    border-radius: 10px;
}
div.owl-carousel .owl-prev { position:relative; left:-15px }
div.owl-carousel .owl-next { position:relative; right:4px }


/* solo detalle */
div#detalle_info {
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
	margin:0
}
div#detalle_info > .col-md-5 {
    border-left: 1px solid #ddd;
    padding-left: 35px;
}
div.sp-wrap.sp-non-touch { border:none !important }

.sp-thumbs {
    text-align: left;
    display: block;
    margin-top: 10px;
    width: 18% !important;
    float: left;
}
div.sp-wrap div.sp-thumbs a {
    border: 1px solid #bbb !important;
    margin-bottom: 8px !important;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
}
.sp-large {
    width: 80% !important;
    float: right;
    border: 0px solid #ddd;
}
.sp-thumbs a:link, .sp-thumbs a:visited {
    width: 90px !important;
    height: 90px !important;
}
div.dlarga {
    margin-top: 25px;
    background: #fff;
    font: 400 14px 'Sora', sans-serif;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

div.dlarga {
    margin-top: 25px;
    background: #fff;
    font: 400 14px 'Sora', sans-serif;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}
div.dlarga_content {
    padding: 20px 40px;
}
div#detalle_info2 {
    border-left: 1px solid #ddd;
    padding-left: 35px;
    padding-right: 40px;
    padding-top: 20px;
}

/* armador */
div#componentesAgregados {
    border: 0px dotted #ccc;
    padding: 0 30px;
}
div#componentesAgregados div.row {
    border-bottom: 1px dashed #ccc;
    padding-top: 8px;
    padding-bottom: 8px;
}



#slides_ofertas { display:block; margin-top:105px }
#slides_ofertas_mobile { display:none }

@media (max-width:2500px) and (min-width:481px) {
	div#info-mobile { display:none }
	#contenedorBajoSlide2 { display:none}
	.super_ofertas_movil, .nuevos_ingresos_movil { display:none }
}

@media (max-width:480px) {
	section#ofertas_home div.owl-carousel .col-md-prod, section#novedades_home div.owl-carousel .col-md-prod {
		width: auto;
		padding-left: 4px;
		padding-right: 4px;
		margin: 5px 0;
	}
	#detalleHome div.compraDetalle a { width:45% !important }
	div.product div.image {
	height:200px !important
}
	section#accesosHome { display:ncone }
	a.search-movil { display:none }
	section#iconos_home { /*display:none*/ }
	div#contenedorBajoSlide { display:none }
	div.container { min-width: 100% }
	header {         height: 65px;
        padding-top: 8px;
        padding-bottom: 8px; }
	a.navbar-brand img {  }
	section#iconos_home div.icono a img { width:80px }
	section#iconos_home div.icono span { font-size:13px }
	section#iconos_home { padding-top:20px }
	div.owl-carousel.owl-carousel-iconos { padding:0 }
	div.spots-x3 img { margin-bottom:15px; }
	div#info-mobile {
		background:#01aef0; color:#fff; text-align:center; display:block
	}
	div#info-mobile div { color:#fff;  text-align:center }
	
	#info-mobile div.col-md-3 {
		    padding: 10px 0; border-bottom: 1px dotted #fff;
	}
	#info-mobile div.row { margin:0 auto }
	div#no_logueado a img { width:27px !important }
	span.carritotop a img { width:28px !important }

	img#lupa-movil {
        width: 22px !important;
        position: absolute;
        top: 12px;
        right: 165px;
        z-index: 9;
        cursor: pointer;
        display: inline-block !important;
        filter: invert(1) brightness(10);
    }

	div.modal-content div.search.search-moviles {
		display:block; margin-left:0; left:0
	}
	#search-movil div.modal-content { background:none }
	
	#articulos div.col-md-prod div.description,
	#articulos div.col-md-prod div.price,
	#articulos div.col-md-prod div.precioTachadoTrue {
		/*width:60%; */
	}
	#articulos .btn.btn-compra.compracantidad {
		width:100%
	}
	#articulos .product .image {
        height: 150px !important;
        float: left;
        width: 30%;
    }
	.product .porcentaje_caja {

		font-size: 11px;

	}
	div.mt {
		margin-top: 100px;
	}
	img.ahora12cajas { width:30px; height:30px }
	#modalcompra a.btn.btn-secondary { color:#fff }
	div.filacarrito { margin-bottom:30px }
	footer .col-md-3 { margin-bottom:30px }
	#slides_ofertas { display:none }
	#slides_ofertas_mobile { display:block; margin-top:65px }
	.caja_func_sup {
		width: 200px;
		position: absolute;
		right: 0px;
		top: 7px;
	}
	.caja_func_sup #logueado, .caja_func_sup #no_logueado {
		margin:0 16px
	}
	
	button.navbar-toggler { position:absolute; left:0; top:5px }
	div.nav .container { padding-left:0; padding-right:0 }
	a.navbar-brand {
		margin-left: 30px;
		margin-top: -2px;
		margin-bottom: 0;
	}
	section#accesosHome ul li { width:33% }
	section#accesosHome ul li a img {
    width: 60px;
	}
	section#accesosHome ul li a { padding:15px 0 }
	section#accesosHome ul li {
		font: 700 12px 'Sora', sans-serif;
	}
	.hidden-xs { display:none }
	#contenedorBajoSlide2 { display:block; background:#e9f1f9 }
	#contenedorBajoSlide2  div.container > div { 
		border-right:none; padding-top:10px; padding-bottom:10px; border-bottom:1px solid #ddd 
	}
	li.imagen_predictivo img { display:none }
	li.imagen_predictivo.ui-menu-item {
		font-weight: normal;
		font-size: 11px;
		text-transform: capitalize;
		border-bottom: 1px dotted #ccc;
		padding: 10px;
	}
	ul.ui-menu.ui-widget { width:95% }
	.sp-large {
        width: 100% !important;
        float: right;
        border: 0px solid #ddd;
    }
	.sp-thumbs {
        text-align: left;
        display: block;
        margin-top: 10px;
        width: 100% !important;
        float: left;
    }
	div#detalle_info > .col-md-5 {
    border-left: none;
	}
	
	section#ofertas_home div.tit_ofertas a, section#novedades_home div.tit_ofertas a { display:none }
	section#accesosHome div.container > div { padding:15px !important }
	
	.product h4 a { font-size: 13px; }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}

ul.ui-menu.ui-widget { z-index:99999 }

.codigoEAN {
    font-size: 12px;
    color: #bbb;
}

div.cajaDesc ul { padding:0; margin:0; list-style:none }
div.cajaDesc ul li.tit { color:#0c88c1; font-weight:bold; border-bottom:1px solid #ccc; margin-bottom:10px; padding-bottom:10px }	
div.cajaDesc ul li { padding:4px 0; display:block; overflow:hidden }	
div.cajaDesc ul li span { width:50%; display:inline-block; float:left; font-weight:500 }	
div.cajaDesc ul li span + span { font-weight:400 }	

div.pasos img { width:20px }
div.pasos > span { display: inline-block;
    padding: 15px; font-weight:bold }
div.pasos a { color:#000; text-decoration:none; cursor:pointer !important }
div.filadelivery { padding:10px 0; border-bottom:1px dotted #ccc }
/* div.filadelivery:last-child { padding:10px 0; border-bottom:0px dotted #ccc } */
div.filadelivery label { margin:0 }
#dir_envio { margin-bottom:20px; background:#eee; border-radius:10px; padding:8px }
span.valorDelivery { font-weight:bold }
.dlSeleccionado { border:1px solid #090 !important; background:#f5f5f5 }
.dlSeleccionado img { mix-blend-mode: multiply; }
.filadelivery input[type=radio] { width:0 }
.filadelivery { text-align:center; width:24%; float:left; margin-right:5px; border:1px solid #ccc; border-radius:10px }



/* nuevos */

div.tit_ofertas h6 { font:bold 30px 'kumbh sans', sans-serif; margin-bottom:0; text-align:center; color:#262852  }
div.tit_ofertas a.ver_todos_ofertas {
	background: #ccc;
    padding: 10px;
    border-radius: 10px;
    float: right;
    text-decoration: none;
    font-weight: bold;
    color: #fff;position: relative;
    top: -20px; margin-bottom:25px
}

a.vermasCates, a.vermasSubCates, a.vermasMarcas {
        font-weight: 400 !important;
    color: #0e87be !important;
    padding: 10px 0;
    display: block;
    cursor: pointer;
}
#filtros_left ul { margin-bottom:0 }
h1.tit_nota {
	font-size:150%; margin:15px 0
}

a.btn.link { background: #e0e0e0;
    font-size: 14px; }

div.cajasnovehome img { border-radius:20px; -webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s; 
	 }
div.cajasnovehome img:hover { opacity:.8 }
div.container.detalle_contenido {
	min-width:auto; max-width:1100px; padding:25px 
	
}
div.container.detalle_contenido img { max-width:100% }
div.container.detalle_contenido div.dlarga { background:none }
.container.row.spotSuperior3 {
    margin-bottom: 20px !important;
}
@media (max-width:480px) {
	.slick-initialized .slick-slide {
		text-align: center;
	}
	.container.row.spotSuperior3 {
    margin-bottom: 0px !important;
	}
	.container.row.spotSuperior3 > div, .container.row.spotSuperior2 > div {
		margin-bottom:15px
		
	}
	.navbar a.navbar-brand img {
        margin-top: 1px; width:110px !important;
        margin-left: 20px;
    }
	button.btn-ingresar {
    padding: 8px 10px;
	}

	i.fa.fa-bars {
    color: #6e2fd6;
    font-size: 25px;
	}
	button.navbar-toggler { border:none }
	.product h4 {
		font-size: 17px; line-height:1em
	}
	.precioTachadoTrue {
    font-size: 17px !important; }
	span.porcentaje.porcentajeTrue {
		display: block !important;
		width: auto !important;
		margin: 0 !important;
		margin-top:5px !important;
		width: 100% !important;
		margin-bottom: 10px;
	}
	.stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .stats .card{
        padding:25px 15px;
    }

    .stats .numero{
        font-size:36px;
    }

    .stats .titulo{
        font-size:15px;
    }
}
div.precios div.price { font-size:19px }
}


button.navbar-toggler { top:14px !important }





div.precios span.porcentaje {
padding:2px 5px; position:relative; top:-3px; display:none; font-size:15px
}
@media (min-width:768px) and (max-width:1400px) {
	
div.precios span.porcentaje {
padding:2px 2px; position:relative; top:-3px; display:none; font-size:14px
}
div.precioReal { font-size:20px !important }
	
}



/* loading carrito lateral */
.carritoLateral {
  position: relative;
  min-height: 200px; /* o lo que necesites */
}

/* overlay del loading */
#loading2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.7); /* opcional */
  z-index: 10;
}

/* oculto por defecto */
.hidden2 {
  display: none !important;
}

/* spinner simple */
.spinner2 {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: girar 1s linear infinite;
}

@keyframes girar {
  to {
    transform: rotate(360deg);
  }
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

div.latCant { border:1px solid #ccc; padding:0 8px; width:auto; border-radius:8px; }
div.latCant input { border:none; text-align:center; width:35px }
div.modal-body.carritoLateral { padding:0 }


