
@media only screen and (min-width: 600px) {
   .popover{
	   max-width:600px;
	}
}

@media only screen and (min-width: 900px) {
	.popover{
		max-width:900px;
	 }
 }

.alert.alert-dismissible > p {
	margin-bottom: 0;
}

/*PAGINATION*/
.pagination-center {
	margin-top: 30px;
}
.page-item > span {
	position: relative;
    display: block;
	border: 0;
	padding-left: 6px;
	padding-right: 6px;
}
.page-item > a {
	border: 0;
	padding-left: 16px;
	padding-right: 16px;
}
.page-item.active > a {
	color: inherit;
}
.pagination-center:hover .page-item > a {
	transition: all 0.3s;
	box-shadow: 2px 2px 5px 0px #aaa;
}
.page-item > a:hover {
	box-shadow: 2px 2px 12px 0px #aaa !important;
}

/**/

.sticky-top {
	z-index: 998; /*asi no interfiere con el modal*/
}

.sticky.is-sticky {
  position: fixed;
  z-index: 997;
  transition: all 0.3s;
  animation: kf-animate-fadein 0.5s;
}

.sidebar .sidebar-container.sticky.is-sticky {
	left: 0;
	top: 56px;
 	width: 250px; 
 	
 	height: calc(100vh - 127px);
}
.sidebar.active .sidebar-container.sticky.is-sticky {
 	left: -250px; 
	top: 56px; 	
}
#top-nav-catalog.sticky.is-sticky {
  /*position abajo el header*/
  left:0; /*250px*/
  right: 0;
  top: 83px; /*este valor lo reemplaza dinamicamente*/
}
#top-nav-catalog.sticky.is-sticky #sidebarCollapse{
  display: none;
}

.sidebar.active + #content .sticky.is-sticky {
	left: 0;
}

@media (max-width: 768px) {
	#top-nav-catalog.sticky.is-sticky {
		left: 0;
	}
}

.bg-gradient-to-light {
	background-image: linear-gradient(#DDDBE0, #f9f8fa ,#f8f9fa) !important;
}
	
/*
para contrarestar el container-fluid
#top-nav-catalog {
	margin-left: -15px;
	margin-right: -15px;
}
*/

#top-nav-catalog .applied-filter {
	background-color: rgba(0,0,0,.08);
	color: #fff;
	font-size: 0.8em;
	font-weight: normal;
}
#top-nav-catalog .applied-filter .btn-close {
	background-color: #fff;
	color: rgba(0,0,0,.08);
	border-radius: 50%;
	padding: 5px;
	font-size: 0.8em;
	font-size: 0.9em;
}
#top-nav-catalog .applied-filter .applied-filter-val {
	font-weight: bold;
}

.prev_page, .next_page {
	display:none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a img {
	display:inline-block;
	vertical-align: middle;
} 
.dropdown-submenu>a span {
	display:inline-block;
	width: 115px;
	vertical-align: middle;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    width: 0;
    height: 0;
    /*
    border-color: transparent;
    border-width: 5px 0 5px 5px;
    */
    border-style: solid;
    border-top-color: #ccc;
    
	position: absolute;
    right: 7px;
    top: 60%;
    margin-top: -0.5em;
}

.dropdown-submenu.float-start {
    float: none;
}

.dropdown-submenu.float-start>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


/*SIDEBAR AND CONTENT*/
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
}

#main-sidebar {
	z-index: 997;
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;    
        
    color: #fff;
    transition: all 0.3s;
    
    margin-left: -15px; /*para contrarestar el container-fluid*/
}

#main-sidebar.active {
    margin-left: -265px; /*250 + 15 para contrarestar el container-fluid*/
    margin-right: 0;
}

@media (max-width: 768px) {
    #main-sidebar {
        margin-left: -265px; /*250 + 15 para contrarestar el container-fluid*/
        margin-right: 15px; /*para contrarestar el container-fluid*/
    }
    #main-sidebar.active {
        margin-left: 0;
    }
    
    #main-sidebar .sidebar-container.sticky.is-sticky {    	
    	left: -265px;
    }
    #main-sidebar.active .sidebar-container.sticky.is-sticky {
    	left: 0;  
    	top: 110px;  
    }
}

.sidebar .sidebar-container {
	border-radius: 0 0 5px 5px;
	overflow-y:auto;	
	height: 100%;
}
.sidebar .sidebar-body {
	padding: 10px;
}
.sidebar .sidebar-header {
	padding: 9px;	
	text-align: center;
}
.sidebar .sidebar-header h3 {
	font-size: 1.5em;
	color: #999;
}

.sidebar a[data-bs-toggle="collapse"] {
    position: relative;
}

/*
.sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    margin: auto 0;
}
*/

.sidebar .sidebar-body h4 {
	font-size: 1.3em;
	padding: 5px 10px 0 10px;
}
.sidebar .sidebar-body h5 {
	font-size: 1em;
	padding: 5px 10px 0 10px;
}

.sidebar ul {
	list-style:none;
	padding: 0;
}

.sidebar ul:first {
    padding-top: 10px;    
}

.sidebar ul p {
    color: #fff;
    padding: 10px;
}

.sidebar ul li a {
    padding: 5px 10px;
    font-size: 0.9em;
    outline: none;
    display: block;
}
.sidebar ul li a:hover,
.sidebar ul li label {
    color: #666;
    background: #fff;   
}
.sidebar ul li a.btn-link {
    color: var(--bs-link-color);
}

.sidebar ul li.active > a, 
.sidebar ul li.active > a:hover, 
.sidebar a[aria-expanded="true"],
.sidebar a[aria-expanded="true"]:hover {
    background: #fff;
	font-weight: bold;	    
}
.sidebar ul ul a {
    font-size: 0.85em !important;
    padding-left: 30px !important;    
}
.sidebar ul ul ul a {
	padding-left: 55px !important;    
}
.sidebar ul ul ul ul a {
	padding-left: 65px !important;    
}

.sidebar ul li a > img {
    margin-right: 10px;
}
.sidebar ul li a > .mockimg {
	width:48px;
	height:48px;
	margin-right: 10px;
	text-align: center;
	font-weight: bold;
	line-height: 48px;
	border: 1px solid #EEE;
	border-radius: 2px;
}
.sidebar ul li a > span {
    display: inline-block;
    max-width: 115px;
    vertical-align: middle;
	white-space: pre-line;
}

.sidebar a, .sidebar a:hover, .sidebar a:focus, .sidebar button, .sidebar button:hover, .sidebar button:focus {
    text-decoration: none;
    transition: all 0.1s;
    
    font-weight: 300;
    line-height: 1.7em;
    
    color: #333;
}

.sidebar a:hover, .sidebar a:focus, .sidebar button:hover, .sidebar button:focus {
    opacity: 0.7;
    background-color: transparent;
}


.filter-section-container li.selected a {
	font-weight: bold;
}

.filter-section-container li:not(.show-more-section-filters-container):not(.selected) a::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke="currentColor" stroke-width="1" viewBox="0 0 16 16"><path d="M3 14.5a1.5 1.5 0 0 1-1.5-1.5V3A1.5 1.5 0 0 1 3 1.5h10A1.5 1.5 0 0 1 14.5 3v10a1.5 1.5 0 0 1-1.5 1.5H3z"/></svg>');

	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

.filter-section-container li:not(.show-more-section-filters-container).selected a::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check2-square" viewBox="0 0 16 16"><path d="M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5z"/><path d="m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.js-filter-input-price-group-container {
	display: flex;
	margin-bottom: 10px;
	padding: 5px 10px;
}
.js-filter-input-price-group-container .filter-input-price-container {
    position: relative;
    display: inline-block;    
    margin-right: 5px;
	width: 85px;
}
.js-filter-input-price-group-container .filter-input-price-container label {
	font-size: 0.8em;
}
.js-filter-input-price-group-container .filter-input-price-container .filter-input-price {
    padding: 10px 25px 10px 10px;
    font-size: 0.7em;
}
@media(min-width: 768px) {
	.js-filter-input-price-group-container .filter-input-price-container {
        width: calc(50% - 25px)
    }
	.js-filter-input-price-group-container .filter-input-price-container .filter-input-price {
        padding: 8px
    }
}
.js-filter-input-price-group-container .js-btn-price-filter {
	width: 25px;
	padding: 0 !important;
	margin-bottom: 3px;	

	position: absolute;
	bottom: 0;
	border-radius: 50%;
}
.js-filter-input-price-group-container .js-btn-price-filter span {
	vertical-align: text-bottom;
}


/**/

.btn-fixed-down {
	position: fixed;
	bottom: 25px;
	right: 18px;
	z-index: 999;
	box-shadow: 2px 2px 5px 0px #aaa;
}
@media (max-width: 768px) {
	.btn-fixed-down {
		right: 8px;
	}
}

.btn-finalizar-cart {
	animation: kf-animate-pop 0.6s;
}
/**/

#gallery {
	margin-left: 0;
	margin-right: 0;
}

.blueimp-gallery > .slides > .slide-loading {
	background: url("/img/loading_big.gif") center no-repeat !important;
	background-size: 64px 64px;
}
.blueimp-gallery .modal-content {
	height: 100%;
	margin-top: 50px;
}
.blueimp-gallery .modal-main-image {
	min-height: 200px;
}
.blueimp-gallery .modal-main-image img[role="presentation"]{
	/*esto es para el zoom*/
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: inherit;
}
.blueimp-gallery .modal-other-images {
	position: absolute;
	bottom: 0;
	max-height: 56px;
	z-index: 999;
	/*width: 100%;*/
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	text-align: center;
	overflow-x: hidden;
	overflow-y: auto;
}
.blueimp-gallery .modal-other-images::-webkit-scrollbar {
  width: 15px;
}
.blueimp-gallery .modal-other-images::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
.blueimp-gallery .modal-other-images::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}

.blueimp-gallery .modal-other-images li {
	/*display: inline-block;*/
	padding-left: 2px;
	padding-right: 2px;
}
.blueimp-gallery .modal-other-images img {
	position: relative !important;
	height: 45px;
}

.blueimp-gallery .modal-description {
	padding: 40px 40px 40px 40px;
	text-align: left;	
	overflow-x: hidden;
	overflow-y: auto;		
	max-height: inherit;
}    

@media (max-width: 768px) {
	.blueimp-gallery .modal-other-images {
		top: 0;
		right: 0;
		height: 100%;
		max-height: 100%;
		width: inherit;
		padding-left: 2px;
		padding-right: 0;
	}
	.blueimp-gallery .modal-other-images::-webkit-scrollbar {
		width: 10px;
	}
	
	.blueimp-gallery .modal-other-images li {
		display: block;
    	margin: 2px 0 2px 0;
	}
	
	.blueimp-gallery .modal-description {
		padding-top: 20px;
		max-height: 50%;
	}
}


.blueimp-gallery .modal-title, .blueimp-gallery .name-text {
	font-weight: bold;
	font-size: 1.25rem;
}

.blueimp-gallery .reference-title {
	font-weight: bold;
}

.blueimp-gallery .price {
	color: #222;
	font-size: 1.5rem;    
	
	/*
    position: absolute;
    bottom: 80px;
    right: 40px;
    */    
}
.blueimp-gallery .price span {
	display: inline-block;
	background: #FFF;
    border-radius: 5px;
	font-weight: bold;
}
.blueimp-gallery .price .price-note {
	font-size: 0.7rem;	
	font-weight: normal;
	#margin-right: -100px; /*compenso para que quede centrado*/
}
.blueimp-gallery .stock-warning-message {
	display:none;	
	font-size: 0.7rem;
}
.blueimp-gallery .warn-stock .stock-warning-message {
	display:block !important;
}
.blueimp-gallery .min-quantity-sell-warning-message {
	display:none;	
	font-size: 0.7rem;
}
.blueimp-gallery .warn-min-quantity-sell .min-quantity-sell-warning-message {
	display:block !important;
}


.blueimp-gallery .addQuantityToCart.btn-link {
	text-decoration: none;
}

/*Esto lo necesito para que la galeria se vea masomenos bien en IE8*/
.blueimp-gallery .modal-dialog,
.blueimp-gallery .modal-content {
	min-height: calc(100vh - 90px);
}
.blueimp-gallery .modal-body > .container-fluid, 
.blueimp-gallery .modal-body > .container-fluid > .row {
	height: 100%;
}

@media (min-width:768px) {
	.blueimp-gallery .modal-body > .container-fluid > .row > div {
		height: 100%;
	}
}


.blueimp-gallery .modal-body IMG {
	width: auto;
}

.chooseQuantityContainer {
	overflow-x: hidden;
	z-index: 1000000;	
}
.chooseQuantityContainer input[type=number] {
	padding-left: 3px;
	padding-right: 3px;
	min-width: 50px;	
}
.chooseQuantityContainer .attribute-cell-title {
	--bs-table-color-type: var(--bs-table-striped-color);
	--bs-table-bg-type: var(--bs-table-striped-bg);
}

.chooseQuantityContainer table  {
	border-collapse: collapse;
	border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
	overflow: hidden;
}


.selectCategoryContainer li img {
	margin-right: 9px;
}

/* Items */

.item {
   position:relative;
   margin-left: auto;
   margin-right: auto;
   margin-bottom: 15px;   
   padding: 10px 10px 12px 10px;
   background:#fff;
   border-radius:4px;
   box-shadow: 0 10px 20px 0 rgba(0,0,0,0.05); /*0px 1px 2px 0 rgba(0,0,0,0.1)*/
   text-align: left;
}

.item:hover {
	box-shadow: 0 12px 25px 0 rgba(0,0,0,0.05); /*0px 3px 9px 0 rgba(0,0,0,0.1);*/
}

.item-icon{
   position:absolute;
   top:5px;
   left:7px;
}

.item-icon span{
   width:35px;
   height:20px;
   background:#16cbe6;
   display:inline-block;
   color:#fff;
   text-align:center;
   font-size:10px;
   font-weight:bold;
   line-height:18px;
   border-radius:5px;
}

.item-image {
	position: relative;
	
	overflow: hidden;
	margin-left: -5px;
	margin-right: -5px;	
}
.item-image img {	
	width: auto;	
	display: block;
	margin: 0 auto;
	padding: 0px;
	
	transition: transform 0.7s ease;

	max-height: 270px;
}
.item-image.item-image-scale .item-image-primary:hover {
	transform: scale(1.075); /* (110% zoom - Note: if the zoom is too large, it will go outside of the viewport) */	
}

.item-image .item-image-secondary {	
	opacity: 0 !important;
	width: 0px !important;
    height: 0px !important;
    min-width: 0px !important;
    min-height: 0px !important;
    position: absolute;
  	  
    display: inline;
}
.item:hover .item-image.item-image-change .item-image-primary {
	display: none;
}
.item:hover .item-image.item-image-change .item-image-secondary {
	opacity: 1 !important;
	width: initial !important;
    height: initial !important;
    min-width: initial !important;
    min-height: initial !important;
    position: initial;
    
    display: block !important;
    
    transition: opacity 0.4s ease;
}

.item-categories {
	 color: #CCC;
     overflow-x: hidden;
     font-size: 0.65em;
     text-overflow: ellipsis;
     white-space: nowrap;
}

.item-no-stock-label {
	font-size: 1em;
	line-height: 1.5em;
	font-weight: normal;
	font-style: italic;
	padding: 4px 24px;
	
	color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity));
	background: rgba(var(--bs-light-rgb),var(--bs-bg-opacity));
}

.item-check-price-whatsapp {
	font-size: 0.6em;
	color: #25D366;
	position: absolute; bottom:0; left: 50%; transform: translate(-50%, -50%);
}

.itemWrapper {
	animation: kf-animate-pop 0.3s;
}

.itemWrapper .item-details h5 {   
   font-weight:bold;
   font-size:1em;
   color: #777;
   overflow: hidden;
   text-overflow: ellipsis;
}

.itemWrapper:hover .item-details h5{
	overflow-x: auto;
	text-overflow: unset;
}
.itemWrapper:hover .item-details h5::-webkit-scrollbar, .item-description.description::-webkit-scrollbar {
   	width: 6px;
   	height: 6px;
   	background-color: F5F5F5;
} 
.itemWrapper:hover .item-details h5::-webkit-scrollbar-thumb, .item-description.description::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	background-color: #555;
}
.itemWrapper:hover .item-details h5::-webkit-scrollbar-track, .item-description.description::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.itemWrapper .stock-warning-message,
.itemWrapper .min-quantity-sell-warning-message {
	display:none;
	white-space: normal;
	font-size: 9px;
	
	position: absolute;
	bottom: 3px;
}
.grid-items .itemWrapper.warn-stock .stock-warning-message,
.grid-items .itemWrapper.warn-min-quantity-sell .min-quantity-sell-warning-message {
	display:block !important;
}
.list-items .itemWrapper.warn-stock .stock-warning-message, 
.list-items .itemWrapper.warn-min-quantity-sell .min-quantity-sell-warning-message {
	display:inline-block !important;
	right: 3px;
}

.item .item-details hr{
	margin: 5px 0px;
}

.item-details p{
   color:#888;
   font-size:1rem;
   line-height:20px;
}


.item-details .item-description { 
	font-size: 0.7em;
	max-height: 80px;
	overflow: hidden;
}
.item-details:hover .item-description { 	
	overflow-y: auto;
	text-overflow: unset;
}


.item-info-line {
	color: #777;
	font-size: 0.7em;
	display: block;	
}

.item-info-line-title {
	font-weight: bold;
}


.item-price, .item-points {
	margin: 7px 0;
	border-radius: 5px;
	font-size: 1.25em;
	font-weight: bold;
	text-align:left;
}
.item-price span, .item-points span{
	display: inline-block;
	background: #FFF;
    border-radius: 5px;
}
.item-points {
	color: orange;
}
.item-points span > span {
	font-size: 0.7em;
}
.item-price .price-note {
	font-size: 0.45em;
	font-weight: normal;
	display:inline-block;
}
.item-price .price-empty-note {
	font-style: italic;
}


.cart-controls.loading input {
   pointer-events: none;
}
.cart-controls h6{
	font-weight: bold;
	margin-bottom: 5px;
}
.cart-controls .selectQuantityButton {
	min-width: 5em;
}
.cart-controls .addQuantityToCart.btn-link {
	text-decoration: none;
}

.price-bulk {
	font-size: 0.6em;
	font-weight: normal;
	margin-left: 0px;
	overflow-x: auto;
}
.price-bulk li {	
	padding: 0 5px 0 5px;
}

.grid-items .price-bulk .list-group-item {
	flex: 1 1 auto!important;
}
.blueimp-gallery .price-bulk ul {
	justify-content: center;
}

.blueimp-gallery .price-empty-note {
	font-style: italic;
}

.item-color-preview {
	display: inline-block;
	width:1em;
	height:1em;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%);	
    border-radius: 50%!important;
    transition: transform 0.7s ease;
}
.item-color-preview.item-color-preview-big {
	width:2em;
	height:2em;
}
.item-color-preview:hover {
	transform: scale(1.15); /* (110% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/******************************/
/*GRID*/
/******************************/

.grid-items .btn{
   margin-top:5px;
}

.grid-items .item {
	max-width: 280px;
	height: calc(100% - 20px);
	/* Set our transitions */
	-webkit-transition: max-width 0.3s;
	-moz-transition: max-width 0.3s;
	transition: max-width 0.3s;
}

.grid-items .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.grid-items .item .item-image {
	flex-shrink: 1;
}
.grid-items .item .item-details {
    flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: start;
}
.grid-items .item .item-details .cart-controls {
    margin-top: auto;
}

.grid-items .item-details p{
	text-align: left;
}
.grid-items .item-description {
	max-height: 37px;
}

.grid-items .item-image {
	padding-top: 10px;
	padding-bottom: 15px;
}

.grid-items .item-image .item-count-images {
	position: absolute;
    color: #AAA;
    font-size: 0.7em;
    right: 7px;
    bottom: 0;
}
.grid-items .item-categories {
    position: absolute;
    top: 2px;
    right: 6px;
    max-width: 95%;
}
.grid-items .item-info-line {
	text-align:left;
}
.grid-items .cart-controls {
    text-align: center;
    margin-bottom: 12px;
}


/******************************/
/*LIST*/
/******************************/

.list-items .item {
	float: left;
	display: block;
	max-width: 100%;
	width: 100%;
	
	/* Set our transitions */
	-webkit-transition: max-width 0.3s;
	-moz-transition: max-width 0.3s;
	transition: max-width 0.3s;
}

.list-items .item-image {
	float: left;
	display: inline-block;
	width: 150px;
}
.list-items .item-image img{
	max-width: 140px;
    max-height: 290px;
}
.list-items .item-image .item-count-images {
	position: absolute;
    color: #AAA;
    font-size: 0.7em;
    left: 5px;
    bottom: 1px;
}
.list-items .item-categories {
	position: absolute;
    top: 4px;
    right: 6px;
    max-width: 95%;
}
@media (max-width: 1024px) {
	.list-items .item-categories {
		display:none;
	}
}
.list-items .item-details {
	display: block;	
	margin: 10px 5px 10px 170px;
}

.list-items .item-details h5{
	text-align: left;
	display: inline-block;
    max-width: 100%;
}
.list-items .item-details p{
	text-align: left;
}
.list-items .item-description {	
	display: block;	
}
.list-items .item-price {
	text-align: left;
	display: block;
}
.list-items .cart-controls {
	margin: 0 auto;
    vertical-align: bottom;
}

@media (min-width: 767px){
	.list-items .chooseQuantityContainer {
		padding-left: 8.3%;
		padding-right: 8.3%;	
	}

	.list-items .item-price {
		display: inline-block;
	}
	.list-items .cart-controls {
		float: right;
	}
	
	.grid-items .item-image img {
		min-height: 144px;
	}
}

/******************************/
/*TAGS*/
/******************************/

.list-items .item-tags {
	position: absolute;
	left: 4px;
	top: 1px;
	transition: all 0.3s linear;
}

.grid-items .item-tags {
    position: absolute;
    top: 0;
    margin-top: 3px;
    margin-left: -8px;
    width: 100%;
    text-align: left;   
}

.item-tags .tag {
  /*background: url(/img/tag_tail_red.png) no-repeat scroll 0 0 #EE2E24;*/
  background: url(/img/tag_tail.png) no-repeat scroll 0 0 #6BAFBD;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  color: #FFF;
  display: inline-block;
  font-size: 0.8em;
  padding: 0 10px 0 10px;  
  margin: 3px 0 3px 3px; 
  text-align: center;
  box-shadow: 2px 1px 3px rgba(0,0,0,0.1);
  white-space: nowrap;
  overflow: hidden;    
  text-overflow: ellipsis;
  /*
  height: 21px;
  line-height: 21px;
  */
}

.grid-items .item-tags .tag {
	max-width: 158px;
}

/*
.item-tags .tag:hover {
  box-shadow: 2px 3px 2px #666;
}
*/

/* PROMOTIONS */
.btn-show-couponcodes {
	color: #28a745!important;
	font-weight: bold;
}
.applied-coupon {
	font-size: 1.5em;
	display: block;
}
.sidebar .couponcode-wrapper {
	padding: 19px;	
	border-radius: 4px;
}

.list-items .item-promos {
	transition: all 0.3s linear;
}

.grid-items .item-promos {
    margin-left: -8px;
    width: 100%;
    text-align: left;   
}

.item-promos .promo {
  border-radius: 4px;  
  color: #FFF;
  background-color: #e43;
  display: inline-block;
  font-size: 0.8em;
  padding: 0 10px 0 10px;  
  margin: 3px 0 3px 3px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;    
  box-shadow: 2px 1px 3px rgba(0,0,0,0.1);
}

/*Brand y Category modals*/
#categoryListModal ul li::marker {
	content: "";
  	list-style-position: inside;
	color: #ccc;	
}
	
#categoryListModal ul ul:not(:first-child) li::marker {
	content: "| ";
  	list-style-position: inside;
	color: #ccc;	
}

#categoryListModal li, 
#brandListModal li {
	padding: 0.5rem 0 0.3rem;
    overflow-wrap: break-word;
}
/*
#categoryListModal ul a, 
#brandListModal ul a {
	color: #333;
}
*/

/*CART - Checkout*/
table.cart-items-rows {
    max-height: 95vh;
    overflow-y: auto;
}
.cart-items-totals li { 
	border: 0;
    white-space: nowrap;
}
.cart-items-totals li.order_total .total, .cart-items-totals li.shipment_grand_total .total {
	font-weight: 700;
}

.accordion-button > span{ 
	margin-left: 1rem;
}

#cart-preview-modal {
	min-width: 35%;
}
#cart-preview-modal img {
	max-width: 100%;
}

/*CART - ADDRESSES*/
.cart-address-selection-container {
	margin-bottom: 1em;
}
.cart-address-selection-item {
	cursor: pointer;
	margin-bottom: 1em;
}
.cart-address-selection-item input[type=radio] {
	display: none;
}
.cart-address-selection-item .radio-check-symbol {
	display: none;
}
.cart-address-selection-item.active .radio-uncheck-symbol {
	display: inline-block;
}
.cart-address-selection-item.active {
	border-color: #007bff;
	box-shadow: 0 8px 17px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 7%) !important;
}
.cart-address-selection-item.active .radio-check-symbol {
	animation: kf-animate-spin 0.5s;
	display: inline-block;
	color: #007bff;
	#filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}
.cart-address-selection-item.active .radio-uncheck-symbol {
	display: none;
}

.cart-address-selection-item .card-body {
	font-size: 0.8rem;
	padding: 0.5em;	
}
.cart-address-selection-item .card-title {
	font-size: 1rem;
}



/*MARKETING*/
#sectionCatalogTop.featured-products {
	padding-top: 24px;
	padding-bottom: 24px;
}

