:root {
  --font-small: 0.7rem;
}

/*********************************
BEGIN ANIMATIONS
**********************************/

@keyframes kf-animate-marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

@keyframes kf-animate-slide-down {
      0% { opacity: 0; transform: translateY(-100%); }   
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes kf-animate-hide-up {
      0% { opacity: 1; transform: translateY(0); }   
    100% { opacity: 0; transform: translateY(-100%); }
}

@keyframes kf-animate-slide-right {
      0% { opacity: 0; transform: translateX(-100%); }   
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes kf-animate-slide-left {
      0% { opacity: 0; transform: translateX(100%); }   
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes kf-animate-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes kf-animate-fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes kf-animate-spin { 
	0% { transform: rotate(0); } 
    100% { transform: rotate(360deg); } 
}

@keyframes kf-animate-spin-45 { 
	0% { transform: rotate(0); } 
    100% { transform: rotate(45deg); } 
}

@keyframes kf-animate-bounce-4 {
    0%   { transform: scale(1,1)    translateY(0); }
    10%  { transform: scale(1.1,.9) translateY(0); }
    30%  { transform: scale(.9,1.1) translateY(-100px); }
    50%  { transform: scale(1,1)    translateY(0); }
    100% { transform: scale(1,1)    translateY(0); }
}

@keyframes kf-animate-roll {
  0% { opacity: 0; transform: scale(0, 0) rotate(360deg); }
  100% { opacity: 1; transform: scale(1, 1) rotate(0deg); }
}

@keyframes kf-animate-pop {
  0% { opacity: 0; transform: scale(0.5, 0.5); }
  100% { opacity: 1; transform: scale(1, 1); }
}

@keyframes kf-animate-glow {
  0% {
    opacity: 0;
    filter: brightness(3) saturate(3);
    transform: scale(0.8, 0.8);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: scale(1, 1);
  }
}
@keyframes kf-animate-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes kf-animate-rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, .95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes kf-animate-bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes kf-animate-flip
{
	0%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg)}to{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg)}}.animate__animated.animate__flip{-webkit-animation-name:flip;animation-name:flip;-webkit-backface-visibility:visible;backface-visibility:visible
}

.animate {
  animation-duration: 0.7s;
  animation-delay: 0;
  animation-name: kf-animate-fade;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
  animation-fill-mode: backwards;
}

.animate.animate-hover {
  animation-play-state: paused;
}

.animate.animate-hover:hover {
  animation-play-state: running; 
  animation-iteration-count: 1;
}


.animate-pop { animation-name: kf-animate-pop; }
.animate-fadein { animation-name: kf-animate-fadein; }
.animate-fadeout { animation-name: kf-animate-fadeout; }
.animate-roll { animation-name: kf-animate-roll; }
.animate-glow { animation-name: kf-animate-glow; }
.animate-bounceIn { animation-name: kf-animate-bounceIn; }
.animate-rubberBand { animation-name: kf-animate-rubberBand; }
.animate-flip { animation-name: kf-animate-flip; }
.animate-pulse { animation-name: kf-animate-pulse; }
.animate-spin-45 { animation-name: kf-animate-spin-45; }


.animate.animate-delay-1 {
  animation-delay: 0.4s;
}
.animate.animate-delay-2 {
  animation-delay: 0.5s;
}
.animate.animate-delay-3 {
  animation-delay: 0.6s;
}
.animate.animate-delay-4 {
  animation-delay: 0.7s;
}
.animate.animate-delay-5 {
  animation-delay: 0.8s;
}
.animate.animate-delay-6 {
  animation-delay: 0.9s;
}


@media screen and (prefers-reduced-motion: reduce) {
  .animate {
    animation: none !important;
  }
}

/*********************************
END ANIMATIONS
**********************************/

/*ACCORDION*/
.accordion.accordion-nocolor .accordion-button:not(.collapsed) {
	background-color: inherit;
	color: inherit;
	/*box-shadow: 0 8px 17px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 7%);*/
}

/*Marquee*/
.marquee {
  white-space: nowrap;
  overflow: hidden;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  /* show the marquee just outside the paragraph */
  will-change: transform;
  animation: kf-animate-marquee 15s linear infinite;
}

.marquee span:hover {
  animation-play-state: paused
}


.color-picker-round {
  width: 2.5rem; /* Adjust size as needed */
  height: 2.5rem; /* Adjust size as needed */
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent; /* Ensures no extra color showing */
  cursor: pointer; /* Shows pointer cursor for better UX */
}

/**/
@media print {
  body {
    contain: size !important; /*Chrome bug: https://support.google.com/chrome/thread/191619088/print-preview-broken-in-last-update?hl=en*/
  }
  .d-print-none {
    display: none !important; /*no se porque no lo toma del bootstrap. lo pongo aca*/
  }
  .d-print-block{
    display: block !important; /*no se porque no lo toma del bootstrap. lo pongo aca*/
  }

	a[href]:after {
		content: none !important;
	}
	
	main > div.container, 
	main > div.container-fluid {
		max-width: 100%; /*en firefox se rompe sino, imprime muy angosto*/
	}
      
	@page {
		size: a3;
	}
	
	tr,
	th {
		break-inside: avoid !important;
		page-break-inside: avoid !important;
	}
  
  	/*Esto se agrea sobre todo para el pedido*/
  	#tituloCabecera .lead, #tituloCabecera label {
  		font-size: 1rem !important;	
  		font-weight: 300;
  	}
	.table-sm {
		font-size: 0.9rem;
  	}
  	.table-sm>:not(caption)>*>* {
  		padding: 0.15rem 0.19rem;
  	}
}

/*
@font-face {
  font-family: 'Theorem';
  font-style: normal;
  font-weight: normal;
  src: local('Theorem'), url('/fonts/Theorem.woff') format('woff');
}
*/

html {
	height: 100%;
}

body {
  min-height: 100%;

  font-display: swap;
}

body > main {
	margin-bottom: 25px;	
}


hr.vertical-separator-1 {
  border : 0;
  height : 100%;
  width : 2px;
  background-image: -webkit-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);
  background-image: -moz-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);
  background-image: -ms-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);
  background-image: -o-linear-gradient(top, #FFFFFF, #000000, #FFFFFF);
  background-image: linear-gradient(top, #FFFFFF, #000000, #FFFFFF);
}


.navbar-smarty {
	margin-bottom: 19px;
}
.navbar-smarty .navbar-brand {
	background-color: #FFF;
}
.navbar-smarty .navbar-brand:hover {
	background-color: #FFF;
	color: #000;
	box-shadow: 0 8px 17px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 7%) !important;
}
.navbar-smarty .navbar-nav>li>a {
	color: #eee;
}
.navbar-smarty {
    background-color: #009688;
    border-color: #008579;
}
.navbar-smarty .navbar-nav>.open>a, .navbar-smarty .navbar-nav>.open>a:focus, .navbar-smarty .navbar-nav>.open>a:hover {
	background-color: #008579;
}

.navbar-smarty .navbar-nav .nav-link, .navbar-smarty .navbar-nav span, .navbar-smarty #catalog-main-search-form .btn-outline-secondary {
	color: #eee;
}

@media (max-width: 767px) {
	.navbar-smarty .navbar-nav .open .dropdown-menu>li>a {
    	color: #eee;
	}
}

#footer {
	width: 100%;
	z-index: 997;
}

#footer > .container {
	margin: 45px auto;
}

#footer a{
	color: inherit;
}

#footer .icons-title {
	font-weight: 700;
}
	
#footer .icon-logo {
	height: 24px;
	margin: 2px;
}

#footer .nav-list-item {
	list-style:none;
}
#footer .nav-list-item .collapse, 
#footer .nav-list-item .collapsing {
	margin-bottom: 0;
}
#footer .nav-list-item a {
	text-decoration:none;
	position:relative;
}

#footer .nav-list-item a.desktop-nav-link:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0.08em;
	bottom: 0;
	left: 0;
	background: #666;
	visibility: hidden;
	border-radius: 5px;
	transform: scaleX(0);
	transition: .15s linear;
}
#footer .nav-list-item a.desktop-nav-link:hover:before,
#footer .nav-list-item a.desktop-nav-link:focus:before {
	visibility: visible;
	transform: scaleX(1);
}
#footer .footer-social a {
	text-decoration: none;
	transition: transform 0.9s ease;
}
#footer .footer-social a:hover img {
	transform: scale(1.05); /* (105% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
#footer .footer-social .social-icon-logo {
	width: 30px;
	margin-right: 8px;
}
#footer .footer-social a:hover .social-icon-logo {
	animation: kf-animate-pulse 0.4s ease-out;
}

#footer .icon-seal-title {
	font-weight: 700;
}
	
#footer .icon-seal-link {
	text-decoration: none;
}
#footer .icon-seal {
	height: 4em;
	margin: 2px 10px;
}


#footer .footer-copyright {
	box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .05); /*hack to make it darker*/
    margin-top: 12px;
    padding-top: 10px;
}

#footer.footer-smarty {
	background-color: #009688 !important;
	color: #eee !important;
}

#footer.footer-smarty {
	color: #eee !important;
}
#footer.footer-smarty a {
	color: #fff !important;
}

#footer .modal {
	color: #212529 !important;
}
#footer .modal a {
	color: #337ab7 !important;
}

/*row row-cols-md-auto g-2*/
/*
.row row-cols-md-auto g-2 input {
	display: inline-block;
}
*/

/*AUTOCOMPLETE*/
.ui-autocomplete {
	z-index: 997;
}

/**/
.square-grid { 
	background:
        linear-gradient(-90deg, rgba(0,0,0,.05) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px), 
        linear-gradient(-90deg, rgba(0, 0, 0, .04) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(transparent 3px, #f2f2f2 3px, #f2f2f2 78px, transparent 78px),
        linear-gradient(-90deg, #aaa 1px, transparent 1px),
        linear-gradient(-90deg, transparent 3px, #f2f2f2 3px, #f2f2f2 78px, transparent 78px),
        linear-gradient(#aaa 1px, transparent 1px),
        #f2f2f2;
    background-size:
        4px 4px,
        4px 4px,
        80px 80px,
        80px 80px,
        80px 80px,
        80px 80px,
        80px 80px,
        80px 80px;
}

/*Modal*/
.modal.left .modal-dialog {
	position:fixed;
	left: 0;
	margin: auto;
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content {
	height: 100%;
	overflow-y: auto;
}


/*BEGIN SUBMENU*/
/*
.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 6px;
  border-radius:0 6px 6px 6px;
}
.dropdown-submenu>a:after{
  display:block;
  content:" ";
  float:right;
  width:0;
  height:0;
  border-color:transparent;
  border-style:solid;
  border-width:5px 0 5px 5px;
  border-left-color:#cccccc;
  margin-top:5px;margin-right:-10px;
}
.dropdown-submenu:hover>a:after{
  border-left-color:#555;
}
.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;
}
*/
/*END SUBMENU*/



/*BEGIN FLOATING LABELS*/

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > textarea,
.form-label-group > label {
  height: 3.125rem;
  padding: .75rem;
}

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0; /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  cursor: text; /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder,
.form-label-group textarea::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder,
.form-label-group textarea:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder,
.form-label-group textarea::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder,
.form-label-group textarea::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder,
.form-label-group textarea::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown),
.form-label-group textarea:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: .25rem;
}

.form-label-group input:not(:placeholder-shown) ~ label,
.form-label-group textarea:not(:placeholder-shown) ~ label {
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-size: 12px;
  color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Fallback for IE
-------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-label-group > label {
    display: none;
  }
  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}

/*END FLOATING LABELS*/



/*en cakephp no puedo poner la clase page-link a los links del paginador asi que lo hago por css directamente*/
.page-item > a {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

/**/
tr.unread { font-weight: bold; }
tr.deleted { text-decoration: line-through; }

.bg-pending {background-color: #d3d3d3;}

a.language-link {
	padding-left:0 !important; 
	padding-right:0 !important; 
	margin:4px 0 0 0 !important; 
	display: inline-block !important;
}
a.language-link span {
	padding: 0px 8px; 
	vertical-align:middle; 
}

textarea.notebook, div.notebook {
	padding: 3px 12px;
	background: url(/img/notebook.png) repeat;
	line-height: 24px;
}
textarea.notebook2, div.notebook2 {
	background: url(/img/notebook2.png) repeat;
	/*background: url(/img/notebook2.png) repeat-y;
	width: 600px;*/
	max-width: 900px;
	line-height: 25px;
	padding: 2px 10px 2px 110px;
	border: solid 1px #ddd;
}


/**/

.form-filter-list {
	margin-bottom: 15px;
}

/**/
tr.totales {
	border: 0;
    padding: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important;
    white-space: nowrap;
}
tr.totales td {
	border: 0;
}

.rowLabel {
    margin-right: 3px;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #999;
    padding: 2px 3px;
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important;
}

/*POSTIT*/
.postit {
  display: block;
  overflow:hidden;
  padding:0 0 0.5em 0.5em;  
  margin-bottom:0;
}
.postit .postit-title {
  font-size:0.95em;
  text-decoration: underline;
  font-weight:bold;
  padding-bottom:10px;
  display:block;
  color:#b2b28e;
}
.postit .postit-body {
  margin: 0.5em 2.5em 1em 1.5em;  
  float:left;  
}
.postit .postit-body a{
  font-family:"Reenie Beanie",arial,sans-serif;
  font-size:0.9em;
  width: 100%;
  text-decoration:none;
  color:#222;
  background:#ffc;
  display:block;
  min-height:3em;
  max-height:10em;
  min-width:10em;
  max-width:15em;
  padding:0.75em;
  overflow-y: auto;
  box-shadow: inset 0 -0.3px 2px rgba(0, 0, 0, 0.2), inset 0 5px 10px rgba(0, 0, 0, 0.2), 4px 4px 6px rgba(33,33,33,.7);
  transition:-webkit-transform .15s linear;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
  border-radius: 0 0 0 10px / 45px;
}
.postit .postit-body a:hover, .postit .postit-body a:focus{
  box-shadow: inset 0 -0.3px 2px rgba(0, 0, 0, 0.2), inset 0 5px 10px rgba(0, 0, 0, 0.2), 5px 5px 7px rgba(0,0,0,.7);
  transform: scale(1.25);
  position:relative;
  z-index:5;
}
.postit .postit-body a:before {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 7px;
  background: #ffc;
  box-shadow: 3px -2px 10px rgba(0, 0, 0, 0.2), inset 2px -2px 3px rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: skewX(25deg);
} 
.postit .postit-body a[href="#"] {
  cursor: default;
}
.postit .postit-body:nth-child(even) a{
  transform:rotate(4deg);
  position:relative;
  top:5px;
  background:#cfc;
}
.postit .postit-body:nth-child(3n) a{
  transform:rotate(-3deg);
  position:relative;
  top:-5px;
  background:#ccf;
}
.postit .postit-body:nth-child(5n) a{
  transform:rotate(5deg);
  position:relative;
  top:-10px;
}



/*PAGINATOTION*/
.pagination-center {
	display: block;
	text-align: center;
}
.page-item.active > a {
	color: inherit;
}

/*DISCREET ALERT*/
#discreetAlert{position:fixed;z-index:999999;max-width:500px;top:-150px;opacity:0;left:50%;margin-left:-250px;-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-o-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;padding:5px 35px 0 20px;}
#discreetAlert .btn-close{height:18px;width:19px;display:inline-block;position:absolute;top:5px;right:5px;}

/*shortcuts*/
.shortcuts {
	text-align: center;
}
.shortcuts .shortcut {
	width: 150px;
	display: inline-block;
	padding: 15px 15px;
	margin: 0 5px 1em;
	vertical-align: top;
	text-decoration: none;
	background: #F3F3F3;
	background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee));
	background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%);
	background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
	background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
	border: 1px solid #ddd;
	box-sizing: border-box;
	border-radius: 5px;
}
.shortcuts .shortcut:hover {
	background: #E8E8E8;
	background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fafafa), to(#e1e1e1));
	background-image: -webkit-linear-gradient(top, #fafafa, 0%, #e1e1e1, 100%);
	background-image: -moz-linear-gradient(top, #fafafa 0%, #e1e1e1 100%);
	background-image: linear-gradient(to bottom, #fafafa 0%, #e1e1e1 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffe1e1e1', GradientType=0);
}
.shortcuts .shortcut .shortcut-icon {
	width: 100%;
	margin-top: .25em;
	margin-bottom: .35em;
	font-size: 32px;
	color: #555;
}
.shortcuts .shortcut:hover .shortcut-icon {
	color: #666;
}
.shortcuts .shortcut-label {
	display: block;
	margin-top: .75em;
	font-weight: 500;
	color: #666;
  min-height: 3em; /*para albergar 2 lineas*/
}


/*Form Wizard Step */
.bs-wizard {border-bottom: solid 1px #e0e0e0; padding: 0 0 10px 0;}
.bs-wizard > .bs-wizard-step {padding: 0; position: relative;}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {color: #595959; font-size: 16px; margin-bottom: 5px;}
.bs-wizard > .bs-wizard-step .bs-wizard-info {color: #999; font-size: 14px;}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {position: absolute; width: 30px; height: 30px; display: block; background: #fbe8aa; top: 45px; left: 50%; margin-top: -15px; margin-left: -15px; border-radius: 50%;} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {content: ' '; width: 14px; height: 14px; background: #fbbd19; border-radius: 50px; position: absolute; top: 8px; left: 8px; } 
.bs-wizard > .bs-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 20px 0;}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #fbe8aa;}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {width:100%;}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {width:50%;}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {width: 100%;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {background-color: #f5f5f5;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {opacity: 0;}
.bs-wizard > .bs-wizard-step:first-child  > .progress {left: 50%; width: 50%;}
.bs-wizard > .bs-wizard-step:last-child  > .progress {width: 50%;}
/*.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ pointer-events: none; }*/

.bs-wizard.success > .bs-wizard-step > .progress > .progress-bar {background: #dff0d8;}
.bs-wizard.success > .bs-wizard-step > .bs-wizard-dot:after {background: #5cb85c;} 
.bs-wizard.success > .bs-wizard-step > .bs-wizard-dot {background: #dff0d8;}
/*END Form Wizard Step*/

/*LOADING*/
.imgLoading { display: none; z-index: 99; background: url(/img/loading.gif) no-repeat; width: 16px; height: 16px;}
.imgLoading span { padding-left: 20px; vertical-align: top; font-size: 12px; text-decoration: none; font-weight: normal !important; color: #999999; }
ul.loading .imgLoading, li.loading .imgLoading, div.loading .imgLoading, form.loading .imgLoading, tr.loading .imgLoading, td.loading .imgLoading, p.loading .imgLoading { display: block; }
ul.loading .imgLoading.inlineLoading, li.loading .imgLoading.inlineLoading, div.loading .imgLoading.inlineLoading, form.loading .imgLoading.inlineLoading, tr.loading .imgLoading.inlineLoading, td.loading .imgLoading.inlineLoading, p.loading .imgLoading.inlineLoading { display: inline-block; }

ul.loading, li.loading, div.loading, tr.loading, td.loading, p.loading, form.loading { filter: alpha(opacity=50); }
input.loading, select.loading { background: #e5e5e5 url('/img/loading.gif') right center no-repeat; }

.btn.loading, .loading .btn {
	opacity: 0.5;
}

.btn.loading::before, .loading .btn::before {
	content:"";
	margin-right: 0.3em;
	
	display: inline-block;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
    
    /*
    background-image: url(/img/logo_letra.png);
    background-size: cover;
	background-repeat: no-repeat;
	*/
}

.spinner-loading { display: none; }
.spinner-loading span { padding-left: 20px; vertical-align: top; font-size: 12px; text-decoration: none; font-weight: normal !important; color: #999999; }
ul.loading .spinner-loading, li.loading .spinner-loading, div.loading .spinner-loading, form.loading .spinner-loading, tr.loading .spinner-loading, td.loading .spinner-loading, p.loading .spinner-loading { display: block; }

/*FONT*/
.font-small {
  font-size: var(--font-small)
}
.font-smallest {
  font-size: var(--font-smallest) !important
}

/**/
.dropdown-menu > li > a.active {font-weight: bold;}

/*INPUT FILE*/
.fileUpload {
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center; 
}
.fileUpload input.upload {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
	height: 100%;
	width: 100%;
}
.fileUpload.fileUploadBig {
	width: 100%;
    height: 100px;
    font-size: 20px;
    text-align: center;
}
.fileUpload.fileUploadBig span {	
    line-height: 100px;
}

.error .form-control {
    border-color: #a94442;
}
.error .error-message {
	color: #a94442;
	width: 100%;
}

/*multiple select checkboxes*/
.selectAllResultsContainer {
	display: none;
	margin: 10px 0;
	padding: 10px 0;
	text-align: center;
	background-color: #FFFFCC;
}

.selectAllResultsContainer .clearContainer {
	display: none;
}

/**/
.dropdown-large{ 
	padding:1rem; 
	column-count: 4; /*default columns*/
    column-gap: 1em;
}
.dropdown-columns-1 {
	column-count: 1;
}
.dropdown-columns-2 {
	column-count: 2;
}
.dropdown-columns-3 {
	column-count: 3;
}
.dropdown-columns-4 {
	column-count: 4;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	.dropdown-large{width:90vw;}
	.dropdown-large.dropdown-columns-2{width:45vw;}
}	
/* ============ desktop view .end// ============ */
		
.dropdown-label {
    font-weight: bold;
    background-color: transparent;
    border-bottom: 0;
    border-color: transparent;
    border-radius: 4px 4px 0 0;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

/*images*/
.procesandoImagen {
	display: none;
	height: 100px;
	width: 100px;
	padding-top: 25px;
	position: absolute;
	z-index: 9999;
	left: 0;
	top: 0;
	text-align: center;
	background: rgba(255,255,255,0.8) url(/img/procesandoImagen.gif) no-repeat center;
}

.fotoProcesando .procesandoImagen {
	display: block;
}

/*DASHBOARD*/
.dashboardTitle  {
	display: inline-block;
}
#dashboardDateRange  {
	border-color: transparent !important;
	width: 250px;
	cursor: pointer;
}

.dashboardResultItem {
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: 15px 15px;
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
.dashboardResultItem:hover {
	box-shadow: 0 8px 17px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 7%) !important;
}
.dashboardResultItem:hover a {
	display: inline-block !important;
}
.dashboardResultItem .lastParagraph a {
	margin-top: -5px;
}
.dashboardResultItem .lastParagraph > span {
	display: inline-block;
    padding: 0.10rem 0;
}
.dashboardResultItem:hover .lastParagraph a {
	display: inline-block !important;
}
.dashboardResultItem:hover .lastParagraph > span {
	display: none !important;
}
.dashboardResultItem .resultTitle {
	font-weight: bold;
	font-size: 16px;
}

.dashboardResultItem h2 {
	margin-top: 15px;
	white-space: nowrap;
}
.dashboardResultItem .lastParagraph {
	margin-bottom: 0px;
}

/*.bg-danger { background-color: #65cea7; color: #fff; }*/
.bg-danger { background-color: #fc8675; color: #fff; }
.bg-warning { background-color: #f3ce85; color: #fff; }
.bg-info { background-color: #6bafbd; color: #fff; }
.bg-stat { background-color: #3366cc; color: #fff; }


/*STICK TO NABVAR*/
#stick-to-navbar {
	margin-top: -20px;	
	margin-left: auto;
	margin-right: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	border-bottom: 1px solid #aaa;
	border-radius: 10px;
	width: 80%;
}
#stick-to-navbar .btnHideStickToNavbar {
	margin-right: 10px;
}
.btnShowStickToNavbar {
	display: block;
	margin-top: -20px;	
	margin-left: auto;
	margin-right: auto;
	border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/*PRODUCTOS*/
.imgInPopover { max-height: 120px; }

.origDiscountPrice {text-decoration: line-through; font-size: 0.9em;display: block;}
.discountPrice {color: #dc3545!important; /*display: block;*/}


/*ORDERS*/
.label-remito {font-weight: bold; padding: 3px; color: green;display:inline;}
.label-external-id {font-weight: bold; padding: 3px; color: #aaa;display:inline;}
tr .btn-change-remito {visibility:hidden;}
tr:hover .btn-change-remito {visibility:visible !important;}

/*NOTIFICATIONS*/
.notification-list {padding: 0; margin:0 auto;max-width:800px;}
.notification-list .notification-item {position:relative;transition: transform 0.3s ease,box-shadow 0.9s ease;box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important; margin:15px 0; border-radius:5px; overflow:auto; padding:10px;}
.notification-list .notification-item:hover {transform: scale(1.01);box-shadow: 0 8px 17px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 7%) !important;}
.notification-list .notification-item.loading {background: #e5e5e5 url('/img/loading.gif') center center no-repeat;}
.notification-list .notification-item .notification-title {font-weight:bold;}
.notification-list .notification-item .unreadIndicator {display:none;position:absolute;top:3px;left:3px;font-size:40px;line-height:12px;color:#4DB1FA;margin-bottom:5px;float:right;}
.notification-list .notification-item.unread .unreadIndicator {display:block;}
.notification-list .notification-item .btnMarkUndread {display:none;float:right;}
.notification-list .notification-item.unread .btnMarkUndread {display:block;} 
.notification-list .notification-item .notification-image-container span {font-size: 50px; color:#AAA;}
.notification-list .notification-item .notification-body .notification-date {float:left; color:#AAA; clear:both;}
.notification-list .notification-item .notification-tecnical-data {font-size: 0.9em; color: #666;}


/* CUSTOMER CONTACTS */
.contact-box {
  background-color: #ffffff;
  border: 1px solid #e7eaec;
  padding: 20px;
  margin-bottom: 20px;
}
.contact-box > .contact-box-body {
  color: inherit;
}
.contact-box.center-version {
  border: 1px solid #e7eaec;
  padding: 0;
}
.contact-box.center-version > .contact-box-body {
  display: block;
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  
  /*
  text-decoration:none !important;
  cursor: pointer !important;
  */
}
.contact-box.center-version > .contact-box-body img {
  width: 80px;
  height: 80px;
  /*margin-top: 10px;
  margin-bottom: 10px;*/
}
.contact-box.center-version > address, .contact-box.center-version > div {
  margin-bottom: 0;
}
.contact-box .contact-box-footer {
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid #e7eaec;
  padding: 15px 20px;
}

/*ZIG ZAG*/
.zig-zag-wrapper .zig-zag-top:before{
	background: 
				linear-gradient(-45deg, #E5FFDA 16px, red 16px, blue 16px,  transparent 0), 
				linear-gradient(45deg, #E5FFDA 16px, transparent 0);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 22px 32px;
  content: " ";
  display: block;

  height: 32px;
	width: 100%;

	position: relative;
	bottom: 32px;
	left:0;
}

.zig-zag-wrapper .zig-zag-bottom{
	margin: 32px 0;
	margin-top: 0;
	background: #E5FFDA;
}

.zig-zag-wrapper .zig-zag-top{
	margin: 32px 0;
	margin-bottom: 0;
	background: #E5FFDA;
}

.zig-zag-wrapper .zig-zag-bottom,
.zig-zag-wrapper .zig-zag-top{
  padding: 10px 0;
}

.zig-zag-wrapper p {
	  text-align:center;
	  color:#666;
	  font-weight:900;
}

.zig-zag-wrapper .zig-zag-bottom:after{
	background: 
				linear-gradient(-45deg, transparent 16px, #E5FFDA 0), 
				linear-gradient(45deg, transparent 16px, #E5FFDA  0);
       background-repeat: repeat-x;
	background-position: left bottom;
       background-size: 22px 32px;
       content: "";
       display: block;

	width: 100%;
	height: 32px;

	position: relative;
	top:32px;
	left:0px;
}


.btn-whatsapp-fixed { float:left; position:fixed; bottom: 85px; right: 0; left: inherit; z-index:998; padding: 0.9em; background-color: #25D366; border-radius: 50px 0 0 50px; color:#fff; font-weight:bold; }
.btn-whatsapp-fixed:hover { box-shadow: 0px 0px 10px #aaa; text-decoration:none; color: #fff; }
.btn-whatsapp-fixed span { display: none; opacity: 0; padding: 0 1em; }
.btn-whatsapp-fixed:hover span { display: inline-block; opacity: 1; animation: kf-animate-slide-left 0.5s ease-out; } 
.btn-whatsapp-fixed:pressed, .btn-whatsapp-fixed:visited, .btn-whatsapp-fixed:active { text-decoration:none; color: #fff; }
.btn-whatsapp-fixed img { margin:-4px 5px 0 5px;}
@media (max-width: 768px) {
	.btn-whatsapp-fixed { padding: 0.9em 0.5em;}
}


.btn-whatsapp { padding: 0.9em; background-color: #25D366; border-radius: 15px; box-shadow: 0px 0px 5px #aaa; color:#fff; font-weight:bold; text-decoration:none !important; text-wrap: nowrap; }
.btn-whatsapp:hover { box-shadow: 0px 0px 10px #aaa; }
.btn-whatsapp span { line-height: 4em; display: inline-block; text-decoration:none; color: #fff; } 
.btn-whatsapp:pressed, .btn-whatsapp:visited, .btn-whatsapp:active { text-decoration:none; color: #fff; }
.btn-whatsapp img { margin:-4px 5px 0 5px; }
.btn-whatsapp.btn-sm { padding: 0.5em; }

/*
.btn-whatsapp.btn-whatsapp-top {padding-top: 18px;border-radius: 0 0 10px 10px;}
.btn-whatsapp.btn-whatsapp-top span {padding-bottom: 12px; padding-top: 2px;}
*/
.btn-whatsapp.btn-whatsapp-top {position: absolute; top: 0; border-radius: 0 0 10px 10px; left: calc(50vw - (/* width */160px / 2)); width: 166px; text-align: center;}
.btn-whatsapp.btn-whatsapp-top span {padding-top: 2px; line-height: inherit;}

.btn-link-whatsapp,
.btn-link-whatsapp:hover {
  color: #25D366 !important;
}


/* PROMOTIONS */

#selected_customers_list li {
	padding: 5px 0;
	border-bottom: 1px solid #ccc;
	
	transition: background-color 0.3s ease-out;
}
#selected_customers_list li:last-child {
	border: none;
}
#selected_customers_list li:hover {
	background-color: #f5f5f5;
}

#selected_products_list {
	max-height: 20em;
	overflow-y: auto;
}
#selected_products_list li {
	padding: 2px 0;
}
#selected_products_list li:hover {
	background-color: #f5f5f5;
}

/******************************/
/*RIBBONS*/
/******************************/

.ribbon {  
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #e43;
}
.ribbon span {
  z-index: 2;
  position: absolute;
  display: block;
  width: 225px;
  padding: 7px 0;
  background-color: #e43;
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  color: #fff;
  font: 700 14px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
  cursor: default;
  user-select: none;
}

/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -49px;
  top: 30px;
  transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
  border-radius: 0 0 0 100%; /*saco borde para que no moleste con los clicks*/
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -45px;
  top: 35px;
  transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}
.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}
.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}
.ribbon-bottom-left span {
  right: -49px;
  bottom: 30px;
  transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}
.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}
.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}
.ribbon-bottom-right span {
  left: -49px;
  bottom: 30px;
  transform: rotate(-225deg);
}


.grecaptcha-badge { 
    top:50% !important; 
}





.stamp {
    transform: rotate(12deg);
	color: #555;
	font-size: 2rem;
	font-weight: 700;
	border: 0.25rem solid #555;
	display: inline-block;
	padding: 0.25rem 1rem;
	text-transform: uppercase;
	border-radius: 1rem;
	font-family: 'Courier';
  mix-blend-mode: multiply;

  mask-image: url('images/grunge.png');
  mask-size: 944px 604px;
}
.stamp.danger {
    color: #f5c6cb;
    border: 0.5rem double #f5c6cb;
    transform: rotate(3deg);
    mask-position: 2rem 3rem;
}
.stamp.warning {
    color: #ffeeba;
    border: 0.5rem double #ffeeba;
    transform: rotate(6deg);
    mask-position: 2rem 3rem;
}
.stamp.success {
	color: #c3e6cb;
	border: 0.5rem solid #c3e6cb;
	transform: rotate(-14deg);
  border-radius: 0;
	mask-position: 13rem 6rem;
} 
.stamp.info {
	color: #bee5eb;
	border: 1rem double #bee5eb;
	transform: rotate(-5deg);
	font-family: "Open sans", Helvetica, Arial, sans-serif;
	border-radius: 0;
	padding: 0.5rem;
}



ul.list-sortable > li {
	cursor: grab;
}


.pretty_dump_wrapper {
	font-size: 1em;	
}

.pretty_dump_wrapper .pretty_dump_key {
	font-weight: 900;
}

span.color-sample {
	display:inline-block;
	vertical-align: middle;
	width:1em;
	height:1em;
	border-radius: 50%;
	box-shadow: 0px 0px 3px #999;
}


.card-result-success {
	border-bottom: 10px solid #6CE679;
	border-top: 10px solid #6CE679;
}

.card-result-warning {
	border-bottom: 10px solid #fff3cd;
	border-top: 10px solid #fff3cd;
}


/*json editor*/ 
input.property-selector-input, 
.je-object__controls .json-editor-btn-add.json-editor-btntype-add {
	display: none;	
}


.bd-callout {
  --bs-link-color-rgb: var(--bd-callout-link);
  --bs-code-color: var(--bd-callout-code-color);
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--bd-callout-color, inherit);
  background-color: var(--bd-callout-bg, var(--bs-gray-100));
  border-left: 0.25rem solid var(--bd-callout-border, var(--bs-gray-300));
}
.bd-callout-info {
  --bd-callout-color: var(--bs-info-text-emphasis);
  --bd-callout-bg: var(--bs-info-bg-subtle);
  --bd-callout-border: var(--bs-info-border-subtle);
}

/***********************************************************************************/
/*CUSTOMER THEME*/ 




/*HEADER*/
#mainHeader-wrapper {
	height: auto;
	padding-right: 0;
	padding-left: 0;
	
	z-index: 999;
	position: fixed;
    top: 0;
    right: 0;
    left: 0;
	width: 100%;
}
#mainHeader {
	display: flex;
	flex-flow: column;
}
#mainHeader > .container-fluid {
	align-items: center;
	padding: 0.8rem 1rem;
	margin-right: 0;
	margin-left: 0;
}
#mainHeader .navbar-brand {
	margin-right: 0;
	margin-left: 0;
}
#mainHeader-wrapper > .topbar {
	font-size: 0.9em;
	padding: 3px 0;
    text-align: center!important;
    
    box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .05);
	animation: kf-animate-pulse 0.5s ease-out;
	white-space: nowrap;
}
#mainHeader-wrapper.compress > .topbar.compressable {
	display:none !important;
	animation: kf-animate-fadeout 0.2s ease-out;
}
#mainHeader-wrapper > #desktop-nav-wrapper {
	animation: kf-animate-fadein 0.2s ease-out;
}
#mainHeader-wrapper.compress > #desktop-nav-wrapper.compressable {
	display:none !important;
	animation: kf-animate-fadeout 0.2s ease-out;
}
#mainHeader ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#mainHeader .header-item {
	display: flex;
	align-items: center;
}
#mainHeader .header-item > a {
	text-decoration:none;
}
#mainHeader .searchMainCheckContainer label {
	font-size: 0.70em;
	color: #666;
	margin-bottom: 0;
}
#mainHeader .result-search-param {
	display:inline-block;
	padding: 0.4em 1.5em;
}
#mainHeader[data-bs-theme=dark] a.btn-link,
#mainHeader[data-bs-theme=dark] a.header-info-button, 
#mainHeader[data-bs-theme=dark] .header-item > span, 
#mainHeader[data-bs-theme=dark] .topbar span {
	color: #eee;
}
#mainHeader[data-bs-theme=dark] .search-query {
  background-color: #fff;
  color: inherit;
}
#mainHeader[data-bs-theme=light] a.btn-link, 
#mainHeader[data-bs-theme=light] a.header-info-button, 
#mainHeader[data-bs-theme=light] .header-item > span, 
#mainHeader[data-bs-theme=light] .topbar span,
#mainHeader[data-bs-theme=light] #catalog-main-search-form .btn-outline-light {
	color: rgba(0,0,0,.5);
}
#mainHeader[data-bs-theme=light] #catalog-main-search-form .btn-outline-light {
	border-color: #ced4da;
}


.header-info-button.dropdown-toggle::after {
	display:none;
}
.header-info-button {
	position: relative;
	display: inline-block;
	text-align:center;
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}
.header-info-button > .header-info-button-label {
	font-size: 0.8rem;
	display: block;
}
.header-info-button > .header-info-notification-badge {
	position:absolute;
	top:-4px;
	right:1px;
}
.header-info-button > .header-info-notification-badge.animate {
	animation: kf-animate-roll 0.5s;
}


@media (max-width: 768px) {
	#mainHeader > .container-fluid {
	    padding-left: 0.3rem;
	    padding-right: 0.3rem;
	}
	
	.header-info-button > .header-info-button-label {
		font-size: 0.6rem;
	}
}

.desktop-nav {
	width: 100%;
	text-align: center;
	list-style: none;
	margin: 0;
	user-select: none;
}
.desktop-nav .desktop-nav-item {
    position: relative;
    display: inline-block;
    padding: 1em;
}
.desktop-nav .desktop-nav-link {
    letter-spacing: 0.05em;
    outline : none;
    text-decoration: none;    
}
.desktop-nav-item .desktop-nav-link:hover, .desktop-nav-item .desktop-nav-link:focus {
    text-decoration: none;
    opacity: 0.6;
    background-color: transparent;
}
.desktop-nav .dropdown-menu {
	max-height: 90vh;
	overflow-y: auto;
}
.dropdown-menu .desktop-nav-item {
	display: block;
	padding: 0.3em 0.8em;
	font-size: 0.85em;
}
.dropdown-menu .desktop-nav-item .nav-list-item-depth-level-prefix:before {
	content: "      ";
  white-space-collapse: preserve;
}

.video-thumbnail {
  position: relative;
}
.video-thumbnail::after {
	content:"";
    position:absolute;
    top: 50%;
    left: 50%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="%23FFF" class="bi bi-play-circle" viewBox="0 0 16 16"><path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/><path d="M6.271 5.055a.5.5 0 0 1 .52.038l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445z"/></svg>') center no-repeat;
    width: 30px;
    height: 30px;
    margin-left: -15px;
   	margin-top: -15px;
}

/*LAZYSIZES*/
img[data-sizes="auto"] { display: block; width: 100%; }

.lazyload {
	opacity: 0;
}

.lazyloading {
	opacity: 1;
	transition: opacity 300ms;
	/*background: #f7f7f7 url(/img/loading.gif) no-repeat center;*/
}

.lazyloading::before{
	content:"";
	margin-right: 0.3em;
	
	display: inline-block;
    width: 2rem;
    height: 2rem;
    border-width: 0.2em;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

/*Remove broken image symbol*/
img.lazyload:not([src]),
img.lazyloading:not([src]) {
	visibility: hidden;
}

/*SWIPER*/
.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  color: #000000;
}


/*MAIN MENU MODAL*/

#mainMenuModal {
	font-size: 1.2em;
	user-select: none;
}

/*SECTIONS*/
.mkt_popup .modal-body > a{
  text-decoration: none;
}

.banner-service {
	width: 100%;
	color: #666;
	padding-top: 20px;
	padding-bottom: 20px;
  
}
.banner-service svg {
  color: #666;
}
.banner-service .banner-service-item a { 
	text-decoration: none !important;
}
.banner-service .banner-service-item-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-left: 9px;
}
.banner-service .banner-service-item-container svg {
  height: +3em;
  padding-right: 12px;
}
.banner-service .banner_service-title {
  text-align: start;
  font-size: +1.5em;
	font-weight: 700;
}
.banner-service .banner_service-text {
  text-align: start;
}
.banner-service .banner-service-pagination {
  margin-bottom: -15px;
}



.banner {
	/*older browsers*/
	width: calc(100% + 1.5rem);
	margin-left: 1.5rem;
	margin-left: 1.5rem;
	/**/
	
	width: calc(100% + (2*0.5*var(--bs-gutter-x)));
	margin-left: calc(-0.5*var(--bs-gutter-x));
	margin-right: calc(-0.5*var(--bs-gutter-x));

  max-width: 100vw;
}
.banner img {
	max-width: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.banner.banner-full-responsive {
	    height: 60vh; /*crop image responsive*/
	}
}
.banner.banner-full-responsive .banner-image-wrapper,
.banner.banner-full-responsive img
 {
    height: 100%; /*crop image responsive*/
}

.banner_slider {
	/*
  #older browsers
	width: calc(100% + 1.5rem);
	margin-left: -1.5rem;
	margin-right: 1.5rem;
	*/
	
	width: calc(100% + (2*0.5*var(--bs-gutter-x)));
	margin-left: calc(-0.5*var(--bs-gutter-x));
	margin-right: calc(-0.5*var(--bs-gutter-x));

  max-width: 100vw;
}
.banner_slider .swiper {
	height: 100%;
}
.banner_slider .swiper .banner_slider-item {
	height: 100%;
}
.banner_slider .swiper .banner_slider-item .banner_slider-item-slider {
    height: 100%;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.banner_slider .swiper .banner_slider-item .banner_slider-item-slider img {
	height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
	.banner_slider.banner-full-responsive {
		height: 60vh; /*crop image responsive*/
	}
}

.banner-text {
  transition: all 0.5s ease;
  position: absolute;
  width: 92%;
  top: 50%;
  bottom: auto;
  left: 50%;
  padding: 0 25px;
  text-align: center;
  transform: translate(-50%,-50%);
}
.banner-title {
  font-size: 1.6em;
  font-weight: 900;
  color: #FFF;
  text-shadow: 0 0 9px #000000;
}
.banner-button {
  padding-left: 2em;
  padding-right: 2em;
  margin-top: 1.5em;
}
.banner-description {
  letter-spacing: 3px;
}
@media (min-width: 768px) {
	.banner-text {
	    max-width: 800px;
	}
	.banner-title {
		font-size: 2.2em;
	}
}
.banner-group img {
	width: 100%;
	max-width: 100%;
	padding: 8px;
  
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); 
  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}
.banner-group .banner-group-item:hover img, .banner-group .banner-group-item:focus img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05); 
}
.banner-group .banner-group-item {
	overflow: hidden;
	position: relative;	
}
.banner-group .banner-group-item-text {
  transition: all 0.5s ease;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  padding: 0.25em 25px;
  text-align: center;
  transform: translate(-50%,-50%);
  
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
.banner-group .banner-group-item-text .banner-group-item-text-title {
  font-size: 1.4em;
  font-weight: 900;
  color: #FFF;
  text-shadow: 0 0 9px #000000;
}
.banner-group .banner-group-item-text .banner-button {
	padding-left: inherit;
	padding-right: inherit;
}
.featured-products .featured-products-title {
  text-align: center;
}
.featured-products .featured-products-subtitle {
  text-align: center;
}
.featured-products .swiper-slide {
	width: 220px;
}
.featured-products .featured-product-item {
    margin: 4px 0 16px 0;
    padding: 0 10px 10px 10px;
	text-align: left;
}
.featured-products .featured-product-item .ribbon-top-right {
  right: 0;
}
.featured-products .featured-product-item .featured-product-item-image-container {
	max-height: 270px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.featured-products .featured-product-item .featured-product-item-image-container img {
	/*width: 100%;*/
	max-height: 270px;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 7%), 0 2px 10px 0 rgb(0 0 0 / 7%) !important;
}
.featured-products .featured-product-item .featured-product-item-body-container {
  padding-right: 1rem;
  padding-left: 1rem;
}
.featured-products .featured-product-item-link {
	color: inherit;
	text-decoration: none;
}
.featured-products .featured-product-title {
	text-align: left;
	font-weight: 700;
}
.featured-products .featured-product-price {
	font-weight: 700;
  font-size: 1.25em;
}
.featured-products .origDiscountPrice {
	font-weight: 700;
	display: inline-block;
}
.featured-products .featured-product-price.origDiscountPrice {
	font-weight: normal;
}
.featured-products .price-note {
	font-size: 0.45em;
  font-weight: normal;
}
.featured-products .item-info-line {
  display:none;
	font-size: 0.65em;
  font-weight: normal;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.section_brands .section_brands-item-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
}
.section_brands .banner-slider-button-prev,
.section_brands .banner-slider-button-next {
  display: none !important;
}
.section_brands .section_brands-title {
  text-align: center;
}
.section_brands .section_brands-item img {
  max-height: 180px;
  vertical-align: middle;
  filter: grayscale(1.0);
}
.section_brands .section_brands-item:hover img {
  filter: inherit;
}

.social-logo-facebook::before {
  display: inline-block;
  content: "";
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}


/*service worker notifications*/
.swnotif-container {
	position: fixed;
	display: none;
	flex-direction: column;
	z-index: 1000;
	width: 100%;
	background-color: #fff;
	color: #333;
	padding: 0.5rem;
	text-align: center;
	box-shadow: 0 15px 30px 0 rgba(0,0,0,.21);
	
	bottom: 12px;
	left: 0;
}

.swnotif-container p {
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2147483642;
	font-size: 1.1em;
}

.swnotif-banner {
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
}

.swnotif-banner-title {
	text-align: center;
	font-size: 1rem;
}

.swnotif-container img {
	max-height: 60px;	
}


.swnotif-guidance img {
	position: absolute;
	bottom: 0;
}

@media (min-width: 992px) {
	.swnotif-container {
		border-radius: 10px;
		width: 50%;
		left: 25%;
	}

	.swnotif-container img {
		left: 15%;
	}

}


/*HOME*/
.home_section_container {
	margin-bottom: 5rem;
}
section[id^=sectionHome_8_] {
	margin-left: auto;
    margin-right: auto;
}
section[id^=sectionHome_8_] [class*=col-] {
   padding-left: 0;
   padding-right: 0;
}

section[id^=sectionHome_5_] {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
        section[id^=sectionHome_5_], 
        section[id^=sectionHome_8_] {
			max-width: 80%;
        }
}
@media (min-width: 992px) {
        section[id^=sectionHome_5_], 
        section[id^=sectionHome_8_] {
			max-width: 60%;
        }
}
