@charset "UTF-8";
/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: rgb(0, 132, 203);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: rgb(34, 34, 34);
  text-decoration: underline;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("ttf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("ttf");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.ttf") format("ttf");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.ttf") format("ttf");
  font-style: normal;
  font-weight: lighter;
}
:root {
  --font-primary: "verdana", "Lato";
  --font-secondary: "verdana";
  /* set base values */
  --text-base-size: 16px;
  --text-scale-ratio: 1.2;
  /* type scale */
  --text-xs: calc(var(--text-base-size) / (var(--text-scale-ratio) * var(--text-scale-ratio)));
  --text-sm: calc(var(--text-base-size) / var(--text-scale-ratio));
  --text-md: calc(var(--text-base-size) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  /* line-height */
  --heading-line-height: 1.2em;
  --body-line-height: 1.4em;
  /* spacing values */
  --space-xxxs: 0.25em;
  --space-xxs: 0.375em;
  --space-xs: 0.5em;
  --space-sm: 0.75em;
  --space-md: 1.25em;
  --space-lg: 2em;
  --space-xl: 3.25em;
  --space-xxl: 5.25em;
  --space-xxxl: 8.5em;
}
@media (min-width: 768px) and (max-resolution: 96dpi) and (max-width: 1600px) {
  :root {
    --text-base-size: 12px;
  }
}
@media (min-resolution: 97dpi) and (max-resolution: 144dpi), (min-resolution: 1.01dppx) and (max-resolution: 1.5dppx) {
  :root {
    --text-base-size: 14px;
  }
}

/**
 * Basic typography style for copy text
 */
body {
  font-size: var(--text-base-size);
  font-family: var(--font-primary);
  color: var(--color-text);
  margin-bottom: var(--space-xxs);
  line-height: var(--heading-line-height);
}

h1, h2, h3, h4, form legend {
  font-family: var(--font-secondary);
  color: var(--color-text-heading);
  margin-bottom: var(--space-xxs);
  line-height: var(--heading-line-height);
  font-weight: bold;
}

/* text size */
.text--xxxl {
  font-size: var(--text-xxxl);
}

h1, .text--xxl {
  font-size: var(--text-xxl);
}

h2, .text--xl {
  font-size: var(--text-xl);
}

h3, .text--lg {
  font-size: var(--text-lg);
}

h4, .text--md {
  font-size: var(--text-md);
}

.text--sm, small {
  font-size: var(--text-sm);
}

.text--xs {
  font-size: var(--text-xs);
}

p {
  line-height: var(--body-line-height);
}

h2, h3, h4 {
  margin-top: var(--space-sm);
}

ul, ol, p {
  margin-bottom: var(--space-md);
}

a {
  color: rgb(0, 132, 203);
}

b, strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

strong em {
  font-weight: bold;
  font-style: italic;
}

.text-color-brand {
  color: rgb(0, 132, 203);
}

.text-color-alert {
  color: rgb(159, 0, 0);
}

.text-center-flex {
  justify-content: center !important;
}

.text-center {
  text-align: center;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1440px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 20px; /* 3 */
  padding-right: 20px; /* 3 */
  width: 100%; /* 1 */
}
@media (max-width: 767px) {
  .container {
    padding: 0;
  }
}
.container__full-width {
  width: 100%;
  margin: 0 auto;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  position: relative;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

header {
  background: linear-gradient(rgba(255, 180, 68, 0.9), rgba(255, 180, 68, 0.9)), url("/resources/static/img/nau-qf.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
  padding: 40px;
}

.container--reset {
  padding: 0;
}
.container--product-view {
  max-width: 1366px; /* 1 */
}

.row {
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
}
.row--reset {
  padding: 0 !important;
}

.col {
  flex-shrink: 1;
  flex-basis: 0;
  flex-grow: 1;
}

[class*=col] {
  padding: 0.5rem;
}

[class*=col].no-gutter {
  padding: 0;
}

/**
* EXTRA SMALL (XS)
*/
/*------------------------------------*\
# COLUMNS
\*------------------------------------*/
.col-xs-1 {
  width: 8.3333333333%;
  position: relative;
}

.col-xs-2 {
  width: 16.6666666667%;
  position: relative;
}

.col-xs-3 {
  width: 25%;
  position: relative;
}

.col-xs-4 {
  width: 33.3333333333%;
  position: relative;
}

.col-xs-5 {
  width: 41.6666666667%;
  position: relative;
}

.col-xs-6 {
  width: 50%;
  position: relative;
}

.col-xs-7 {
  width: 58.3333333333%;
  position: relative;
}

.col-xs-8 {
  width: 66.6666666667%;
  position: relative;
}

.col-xs-9 {
  width: 75%;
  position: relative;
}

.col-xs-10 {
  width: 83.3333333333%;
  position: relative;
}

.col-xs-11 {
  width: 91.6666666667%;
  position: relative;
}

.col-xs-12 {
  width: 100%;
  position: relative;
}

/*------------------------------------*\
# OFFSET COLUMNS
\*------------------------------------*/
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
  position: relative;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
  position: relative;
}

.col-xs-offset-3 {
  margin-left: 25%;
  position: relative;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
  position: relative;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
  position: relative;
}

.col-xs-offset-6 {
  margin-left: 50%;
  position: relative;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
  position: relative;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
  position: relative;
}

.col-xs-offset-9 {
  margin-left: 75%;
  position: relative;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
  position: relative;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
  position: relative;
}

.col-xs-offset-12 {
  margin-left: 100%;
  position: relative;
}

/**
* SMALL (SM), MEDIUM (MD), LARGE (LG), EXTRALARGE (XL)
*/
@media (min-width: 768px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-sm-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-sm-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-sm-3 {
    width: 25%;
    position: relative;
  }
  .col-sm-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-sm-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-sm-6 {
    width: 50%;
    position: relative;
  }
  .col-sm-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-sm-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-sm-9 {
    width: 75%;
    position: relative;
  }
  .col-sm-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-sm-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-sm-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media (min-width: 992px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-md-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-md-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-md-3 {
    width: 25%;
    position: relative;
  }
  .col-md-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-md-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-md-6 {
    width: 50%;
    position: relative;
  }
  .col-md-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-md-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-md-9 {
    width: 75%;
    position: relative;
  }
  .col-md-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-md-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-md-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-md-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-md-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-md-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-md-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-lg-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-lg-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-lg-3 {
    width: 25%;
    position: relative;
  }
  .col-lg-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-lg-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-lg-6 {
    width: 50%;
    position: relative;
  }
  .col-lg-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-lg-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-lg-9 {
    width: 75%;
    position: relative;
  }
  .col-lg-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-lg-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-lg-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media (min-width: 1600px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-xl-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-xl-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-xl-3 {
    width: 25%;
    position: relative;
  }
  .col-xl-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-xl-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-xl-6 {
    width: 50%;
    position: relative;
  }
  .col-xl-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-xl-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-xl-9 {
    width: 75%;
    position: relative;
  }
  .col-xl-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-xl-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-xl-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .row {
    padding: 20px 20px;
  }
}
footer {
  color: white;
  background-color: #585858;
  border-bottom: 20px solid #333;
}
footer h2 {
  color: rgb(255, 180, 68);
}
footer h3 {
  font-family: "Lato";
  font-weight: lighter;
}
footer h3::first-letter {
  text-transform: uppercase;
}
footer a {
  color: rgb(0, 132, 203);
}

.heed-effect {
  transition: all 0.3s;
}
.heed-effect:hover {
  transform: scale(1.2);
  transform: translateY(2);
}
.heed-effect--light {
  transition: all 0.3s;
}
.heed-effect--light:hover {
  transform: scale(1.05);
}
.heed-effect--light--and-fast {
  transition: all 0.1s;
}
.heed-effect--light--and-fast:hover {
  transform: scale(1.05);
}

@keyframes fade-in-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes growRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
}
@keyframes growRotateInverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@keyframes upDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.zoom-wrapper:hover {
  cursor: zoom-in;
  border: 1px solid rgb(51, 51, 51);
}

.zoom-lens {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  border: 1px solid rgb(51, 51, 51);
  background-color: white;
  background-repeat: no-repeat;
  display: none;
  -webkit-box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
  -moz-box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
  box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
}
@media (max-width: 767px) {
  .zoom-lens {
    display: none !important;
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.icon {
  width: 48px !important;
  height: 48px !important;
}
.icon-rotate {
  margin: 8px;
}
.icon-rotate:hover, .icon-rotate:active, .icon-rotate:focus {
  text-decoration: none;
}
.icon-rotate i {
  transition: all 0.4s;
}
.icon-rotate:hover i {
  transform: rotate(360deg);
}
.icon-small {
  width: 24px !important;
  height: 24px !important;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-left: 1em;
}

.flag {
  width: 48px;
}

.close-icon:after {
  padding: 8px;
}

@media only screen and (max-width: 992px) {
  .contact-icon {
    margin-left: 0;
  }
}
#triangle-down {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgb(51, 51, 51);
}

#triangle-up {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgb(51, 51, 51);
}
#triangle-up--white {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

#cross {
  background: rgb(51, 51, 51);
  height: 16px;
  position: relative;
  width: 4px;
  transform: rotate(45deg);
}
#cross::after {
  background: rgb(51, 51, 51);
  content: "";
  height: 4px;
  left: -6px;
  top: 6px;
  position: absolute;
  width: 16px;
}

.formatted-list ul {
  list-style: none;
}
.formatted-list ul li:before {
  content: "👉";
  margin-right: 8px;
}
.formatted-list ul span {
  color: mediumseagreen;
}
.formatted-list ol {
  counter-reset: my-counter;
  list-style: none;
  position: relative;
}
.formatted-list ol li {
  counter-increment: my-counter;
  margin-bottom: 16px;
  line-height: 40px;
}
.formatted-list ol li:before {
  content: counter(my-counter);
  font-weight: bold;
  margin-right: 1em;
  --border_size: 4px;
  border-radius: 50%;
  height: 32px;
  border: var(--border_size) solid white;
  color: white;
  width: 32px;
  line-height: calc(var(--border_size) * 2 + 16px);
  text-align: center;
  display: inline-block;
}
.formatted-list--dark ol li:before {
  border: var(--border_size) solid rgb(51, 51, 51);
  color: rgb(51, 51, 51);
}
.formatted-list--light ol li:before {
  border: var(--border_size) solid white;
  color: white;
}

.button {
  position: relative;
  cursor: pointer;
  border: none;
  color: rgb(51, 51, 51);
  padding: 15px 32px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
}
.button i {
  pointer-events: none;
}
.button:focus, .button:active, .button:hover {
  text-decoration: none;
}
.button__mini {
  padding: 8px 16px;
  width: 100%;
  display: inline-block;
}
.button__mini--primary {
  background-color: rgb(0, 132, 203);
  color: white;
}
.button__mini--primary:hover {
  background-color: rgba(0, 132, 203, 0.8);
  text-decoration: none;
}
.button__mini--primary-outlined {
  font-size: var(--text-sm);
  background-color: white;
  padding: 4px 8px;
  color: rgb(51, 51, 51);
  max-width: 100%;
  border: 1px solid rgb(0, 132, 203);
  cursor: pointer;
  opacity: 0.7;
  transition-duration: 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.button__mini--primary-outlined:hover {
  opacity: 1;
  scale: 1.1;
  color: white;
}
.button__mini--secondary {
  background-color: rgb(51, 51, 51);
  color: white;
}
.button__mini--secondary:hover, .button__mini--secondary:focus {
  background-color: rgb(205, 205, 205);
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.button__mini--promotion {
  background-color: rgb(255, 140, 0);
  color: white;
}
.button__mini--promotion:hover {
  background-color: rgba(255, 140, 0, 0.8);
}
.button__mini--promotion[disabled] {
  background-color: rgba(255, 140, 0, 0.8);
  cursor: not-allowed;
}
.button__mini--promotion[disabled]:hover {
  background-color: rgba(255, 140, 0, 0.8);
}
.button__primary {
  background-color: rgb(0, 132, 203);
  color: white;
}
.button__primary--pop {
  animation: button_animation 1s ease forwards;
  transition: box-shadow 1s;
  -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
  -moz-box-shadow: 15px 15px rgb(51, 51, 51);
  box-shadow: 15px 15px rgb(51, 51, 51);
}
.button__primary--pop:hover {
  -webkit-box-shadow: 0px 0px rgb(51, 51, 51);
  -moz-box-shadow: 0px 0px rgb(51, 51, 51);
  box-shadow: 0px 0px rgb(51, 51, 51);
}
.button__primary:hover {
  background-color: rgba(0, 132, 203, 0.8);
  text-decoration: none;
}
.button__primary--mini {
  padding: 8px 16px;
  width: 100%;
  display: inline-block;
}
.button__primary[disabled] {
  background-color: rgba(0, 132, 203, 0.8);
  cursor: not-allowed;
}
.button__primary[disabled]:hover {
  background-color: rgba(0, 132, 203, 0.8);
}
.button__secondary {
  background-color: rgb(51, 51, 51);
  color: white;
  display: block;
}
.button__secondary:focus, .button__secondary:active {
  background-color: rgb(51, 51, 51);
  color: white;
}
.button__secondary:hover {
  background-color: rgb(205, 205, 205);
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.button__secondary--mini {
  padding: 4px;
  display: inline-block;
}
.button__secondary--mini--red {
  background-color: rgb(212, 51, 0);
}
.button__secondary--outlined {
  color: rgb(51, 51, 51);
  border: 1px solid rgb(51, 51, 51);
  background-color: white;
}
.button__special {
  background-color: rgb(204, 156, 0);
  display: block;
  color: white;
}
.button__special:hover {
  background-color: rgba(204, 156, 0, 0.8);
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.button__special--edited {
  background-color: #997500;
}
.button__special--edited:hover {
  background-color: #b38900;
}
.button__directa {
  background-color: rgb(51, 51, 51);
  color: white;
}
.button__directa:hover {
  background-color: rgba(51, 51, 51, 0.8);
  text-decoration: none;
  color: white;
}
.button__confirmation {
  background-color: rgb(0, 73, 112);
  color: white;
}
.button__confirmation:not(:disabled):hover {
  background-color: rgba(0, 132, 203, 0.8);
  text-decoration: none;
}
.button__confirmation:disabled {
  cursor: not-allowed;
}
.button__product-filter {
  background-color: white;
  color: rgb(51, 51, 51);
  padding: 0;
  margin-left: 16px;
}
.button__product-filter--active > div {
  background-color: rgb(51, 51, 51);
  border: 1px solid rgb(51, 51, 51);
  color: white;
}
.button__product-filter > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  height: 100%;
  min-width: 2.5em;
  border: 1px solid rgb(205, 205, 205);
}
.button__product-filter > div > img {
  max-width: 2em;
}
.button__product-filter > div:hover {
  background-color: rgb(51, 51, 51);
  border: 1px solid rgb(51, 51, 51);
  color: white;
}
.button__product-filter > div:hover > #triangle-down {
  border-top-color: white;
}
.button__product-filter:hover {
  text-decoration: none;
}
.button__product-filter--toggle-cross {
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  color: rgb(51, 51, 51);
}
.button__product-filter--toggle-cross div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  height: 100%;
  min-width: 2.5em;
  transition: opacity 0.3s;
}
.button__product-filter--toggle-cross:before, .button__product-filter--toggle-cross:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%; /* Width of the "X" lines */
  height: 2px; /* Thickness of the "X" lines */
  background-color: rgb(159, 0, 0);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.button__product-filter--toggle-cross:before {
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
}
.button__product-filter--toggle-cross:after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
}
.button__product-filter--toggle-cross:hover:after, .button__product-filter--toggle-cross:hover:before, .button__product-filter--toggle-cross--active:after, .button__product-filter--toggle-cross--active:before {
  opacity: 1;
  animation: growRotate 0.3s forwards;
}
.button__product-filter--toggle-cross:hover:after, .button__product-filter--toggle-cross--active:after {
  animation: growRotateInverse 0.3s forwards;
}
.button__product--discount {
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 4px;
  border: 2px solid rgb(212, 51, 0);
  background-color: #FFEDED;
  color: rgb(212, 51, 0);
}
.button__product--discount:hover, .button__product--discount:active, .button__product--discount:focus {
  background-color: rgb(212, 51, 0);
  color: white;
  text-decoration: none;
}
.button__category-homepage {
  display: flex;
  flex-direction: row !important;
}
.button__category-homepage:hover a {
  color: white;
}
.button__category-homepage > a {
  padding: 4px;
  margin-left: 8px;
}
.button__category-homepage > a:hover {
  background-color: rgb(0, 132, 203);
  color: white;
}
.button__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-left: 16px;
}
.button__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.button__switch input:checked + .slider {
  background-color: #2196F3;
}
.button__switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.button__switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.button__switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button__switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button__switch--filter {
  width: 6em;
  height: 100%;
  border: 1px solid rgb(51, 51, 51);
}
.button__switch--filter input:hover + .slider {
  background-color: rgb(51, 51, 51);
}
.button__switch--filter input:hover + .slider::before {
  background-image: url("/resources/static/icons/view-gallery-products-icon-white.png");
}
.button__switch--filter input:focus + .slider {
  box-shadow: 0 0 1px rgb(245, 245, 245);
}
.button__switch--filter input:checked:hover + .slider {
  background-color: rgb(51, 51, 51);
}
.button__switch--filter input:checked + .slider {
  background-color: rgb(245, 245, 245);
}
.button__switch--filter input:checked + .slider:before {
  background-image: url("/resources/static/icons/view-list-products-icon.png");
  -webkit-transform: translateX(3em);
  -ms-transform: translateX(3em);
  transform: translateX(3em);
}
.button__switch--filter input:checked:hover + .slider:before {
  background-image: url("/resources/static/icons/view-list-products-icon-white.png");
}
.button__switch--filter .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(245, 245, 245);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button__switch--filter .slider:hover {
  background-color: rgb(51, 51, 51);
}
.button__switch--filter .slider::before {
  position: absolute;
  content: "";
  height: 2em;
  width: 2em;
  left: 4px;
  background-color: transparent;
  background-image: url("/resources/static/icons/view-gallery-products-icon.png");
  background-size: contain;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button__icon {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 0px;
  height: 60px;
  border: 4px solid black;
}
.button__icon:hover {
  background-color: rgb(245, 245, 245);
  text-decoration: none;
}
.button__icon:hover * {
  color: rgb(51, 51, 51);
}
.button__icon:hover .button__icon--img {
  background-color: wheat;
}
.button__icon--img {
  border-right: 4px solid black;
  width: 60px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 8px;
}
.button__icon--img > img {
  width: 40px !important;
}
.button__icon--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 100%;
  padding: 8px 20px;
  color: white;
}
.button__dropdown-cart {
  position: relative;
  display: inline-block;
}
.button__dropdown-cart:hover > a {
  color: rgb(0, 132, 203);
}
.button__dropdown-cart > a {
  color: white;
  display: block;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}
.button__dropdown-cart__content {
  display: none;
  position: absolute;
  right: 0px;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.button__dropdown-cart__content > ul {
  font-size: var(--text-sm);
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0px;
}
.button__dropdown-cart__content > ul > li {
  list-style: none;
  border-bottom: 1px solid rgb(205, 205, 205);
}
.button__dropdown-cart__content > ul > li:hover {
  background-color: rgb(0, 132, 203);
}
.button__dropdown-cart__content > ul > li:hover a {
  color: white !important;
}
.button__dropdown-cart__content > ul > li > a {
  color: rgb(34, 34, 34);
  display: block;
  text-align: left;
  padding: 16px;
  text-decoration: none;
}
.button__dropdown-cart__content > ul > li > a:hover {
  color: rgb(0, 132, 203);
}
.button__dropdown-cart__content > ul > li > a > span {
  color: rgb(255, 180, 68);
}
.button__dropdown-cart:hover .button__dropdown-cart__content {
  display: block;
}
.button__tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgb(245, 245, 245);
  border-bottom: 1px solid rgb(205, 205, 205);
  border-right: 1px solid rgb(205, 205, 205);
}
.button__tab:last-child {
  border-right: none;
}
.button__tab--active {
  background-color: white;
  color: rgb(51, 51, 51);
  border-right: 1px solid rgb(205, 205, 205);
  border-bottom: none;
}
.button__tab:hover {
  text-decoration: none;
  background-color: rgb(51, 51, 51);
  color: white;
}
.button__stock {
  background-color: rgb(51, 51, 51);
  color: white;
  padding: 0px;
  font-weight: normal;
  display: flex;
  text-transform: uppercase;
  flex-direction: row;
  border: 1px solid rgb(51, 51, 51);
}
.button__stock > div:nth-child(1) {
  background-color: white;
  color: rgb(51, 51, 51);
}
.button__stock > div:nth-child(1):hover {
  background-color: rgb(245, 245, 245);
}
.button__stock > div {
  padding: 4px 8px;
}
.button__stock > div:nth-child(2) {
  background-color: rgb(51, 51, 51);
  color: white;
  text-align: center;
  width: 60px;
}
.button__product-selection {
  font-weight: bold;
  color: rgb(51, 51, 51);
  padding: 8px;
}
.button__product-selection:hover, .button__product-selection--active, .button__product-selection:focus, .button__product-selection:active {
  background-color: rgb(51, 51, 51);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  padding: 8px;
}
.button__file-upload {
  color: rgb(51, 51, 51);
  padding: 8px;
  margin: 0;
  display: inline !important;
  background-color: white;
  width: fit-content;
  border: 1px solid rgb(205, 205, 205);
}
.button__file-upload:hover {
  cursor: pointer;
}
.button__back {
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  padding: 8px 16px;
  color: rgb(51, 51, 51);
}
.button__back:hover {
  background-color: rgb(51, 51, 51);
  color: white;
  cursor: pointer;
  border: 1px solid rgb(51, 51, 51);
}
.button__scroll-up {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 100px;
  right: 20px;
  height: 50px;
  width: 50px;
  padding: 0;
  border: 1px solid rgb(205, 205, 205);
  background-color: white;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.button__scroll-up.show {
  opacity: 1;
  visibility: visible;
}
.button__pagination--first > div, .button__pagination--previous > div, .button__pagination--next > div, .button__pagination--last > div {
  border: none;
}
.button__pagination--first > div {
  border-right: 1px solid rgb(205, 205, 205);
}
.button__pagination--previous > div, .button__pagination--next > div {
  border-left: 1px solid rgb(205, 205, 205);
  border-right: 1px solid rgb(205, 205, 205);
}
.button__pagination--last > div {
  border-left: 1px solid rgb(205, 205, 205);
}
.button__comparison {
  display: block;
  position: absolute;
  border-radius: 4px;
  font-weight: bold;
  padding: 8px 12px;
  top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.button__comparison--add {
  border: 2px solid rgb(40, 199, 0);
  color: rgb(40, 199, 0);
  background-color: white;
}
.button__comparison--add:hover {
  background-color: rgb(40, 199, 0);
  color: white;
}
.button__comparison--remove {
  border: 2px solid rgb(212, 51, 0);
  color: rgb(212, 51, 0);
  background-color: white;
  opacity: 1;
}
.button__comparison--remove:hover {
  background-color: rgb(212, 51, 0);
  color: white;
}
.button__comparison--remove-search {
  border: 1px solid rgb(51, 51, 51);
}
.button__comparison--go-to-search {
  background-color: rgb(52, 171, 235);
  color: white;
  border: 1px solid rgb(0, 73, 112);
}
.button__comparison--go-to-search:hover {
  background-color: rgb(0, 73, 112);
  color: white;
}

.clipboard-button {
  color: rgb(51, 51, 51);
  position: relative;
  margin-right: 4px;
}
.clipboard-button > .fa-clipboard {
  color: rgb(0, 73, 112);
  transition: transform 0.2s;
}
.clipboard-button:hover {
  cursor: context-menu;
}
.clipboard-button:hover > .fa-clipboard {
  animation: shake 0.5s;
}

.cursor-hover:hover {
  cursor: pointer;
}

.pagination-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

@-webkit-keyframes button_animation {
  0% {
    -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
    -moz-box-shadow: 15px 15px rgb(51, 51, 51);
    box-shadow: 15px 15px rgb(51, 51, 51);
  }
  25% {
    -webkit-box-shadow: 5px 5px rgb(51, 51, 51);
    -moz-box-shadow: 5px 5px rgb(51, 51, 51);
    box-shadow: 5px 5px rgb(51, 51, 51);
  }
  50% {
    -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
    -moz-box-shadow: 15px 15px rgb(51, 51, 51);
    box-shadow: 15px 15px rgb(51, 51, 51);
  }
  75% {
    -webkit-box-shadow: 5px 5px rgb(51, 51, 51);
    -moz-box-shadow: 5px 5px rgb(51, 51, 51);
    box-shadow: 5px 5px rgb(51, 51, 51);
  }
  100% {
    -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
    -moz-box-shadow: 15px 15px rgb(51, 51, 51);
    box-shadow: 15px 15px rgb(51, 51, 51);
  }
}
.card {
  position: relative;
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
  -moz-box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
  box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.card__header {
  padding: 20px 40px;
  background-image: url("/resources/static/img/biblioteca/actas.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
}
.card__header--video video {
  width: 100%;
}
.card__header > * {
  position: relative;
  z-index: 2;
}
.card__header > .tag {
  align-self: end;
  margin: 0;
}
.card__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 132, 203, 0.8);
  z-index: 1;
}
.card__body {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
}
.card__body-fecha {
  align-self: end;
  font-size: var(--text-sm);
  color: rgb(51, 51, 51);
}
.card__body p:not(:first-child) {
  margin-bottom: 0;
}
.card__footer {
  padding: 0 40px 40px 40px;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip__text {
  font-size: var(--text-sm);
  visibility: hidden;
  background-color: #555;
  color: #fff;
  padding: 8px;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  right: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip__text:hover {
  visibility: hidden !important;
  opacity: 0 !important;
}
.tooltip:hover .tooltip__text {
  visibility: visible;
  cursor: pointer;
  opacity: 0.9;
  top: 100%;
}
.tooltip__for-icon {
  border-bottom: none;
}
.tooltip__for-icon:hover .tooltip__text {
  left: auto;
}

.alert {
  border: 4px dashed rgb(51, 51, 51);
  padding: 20px 40px;
  background-color: rgb(255, 244, 209);
}
.alert p {
  margin: 0;
}
.alert__top {
  padding: 16px;
  border: 1px solid;
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
  background-color: white;
}
.alert__top > a {
  color: rgb(51, 51, 51);
}
.alert__top > a:hover {
  color: rgb(153, 153, 153);
}
.alert__top--green {
  background-color: rgb(143, 255, 143);
  color: rgb(16, 104, 31);
}
.alert__top--orange {
  background-color: rgb(255, 214, 143);
  color: rgb(173, 109, 0);
}
.alert__top--red {
  background-color: #ffd2c3;
  color: rgb(159, 0, 0);
}

.tag {
  padding: 8px 8px;
  font-size: var(--text-sm);
  display: inline-block;
}
.tag__rounded {
  display: inline-block;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
}
.tag__search-filter {
  text-transform: uppercase;
  background-color: rgb(0, 132, 203);
  color: white;
  cursor: pointer;
}
.tag__search-filter::before {
  content: "x ";
  font-family: "Courier New", Courier, monospace;
}
.tag--lighter-grey {
  background-color: rgb(245, 245, 245);
  color: rgb(51, 51, 51);
}
.tag--mid-grey {
  background-color: rgb(153, 153, 153);
  color: white;
  width: fit-content;
}
.tag--blue {
  background-color: rgb(0, 132, 203);
  color: white;
  font-weight: bold;
  width: fit-content;
}
.tag--white {
  background-color: white;
  color: rgb(51, 51, 51);
  font-weight: bold;
  width: fit-content;
}
.tag--orange {
  background-color: rgb(255, 140, 0);
  color: white;
}
.tag__availability {
  font-size: var(--text-sm);
}
.tag__availability--orange {
  color: rgb(255, 140, 0);
  font-weight: bold;
  width: fit-content;
}
.tag__availability--red {
  color: rgb(212, 51, 0);
  font-weight: bold;
  width: fit-content;
}
.tag__availability--green {
  color: rgb(40, 199, 0);
  font-weight: bold;
  width: fit-content;
}
.tag__new {
  color: white;
  background-color: rgb(159, 0, 0);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: var(--text-xs);
}
.tag__mini {
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(205, 205, 205);
}
.tag__mini--orange {
  border: 1px solid rgb(255, 140, 0);
  background-color: rgb(255, 214, 143);
  color: rgb(51, 51, 51);
}
.tag__precompra {
  background-color: rgb(255, 140, 0);
  border: 1px solid rgb(159, 0, 0);
  color: white;
}

.maincontainer {
  display: flex;
  flex-direction: column;
  margin-top: 72px;
}

.navbar {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  background-color: rgb(0, 132, 203);
}
.navbar__notifications {
  margin: 20px;
}
.navbar__mobile {
  display: none;
}
.navbar__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  background-color: rgb(51, 51, 51);
  color: white;
  height: 100%;
  transition: 0.4s;
}
.navbar__button > div {
  width: 34px;
  height: 34px;
}
.navbar__button:hover {
  background-color: rgb(245, 245, 245);
}
.navbar__button--pedidos {
  background-color: transparent;
}
.navbar__button--pedidos > div {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("/resources/static/icons/pedidos-resumen-icon-white.png");
}
.navbar__button--pedidos:hover > div {
  background-image: url("/resources/static/icons/pedidos-resumen-icon.png");
}
.navbar__button--shopping-cart > div {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/sales-icon-white.png");
}
.navbar__button--shopping-cart > div > div {
  width: 12px;
  height: 12px;
  background-color: rgb(40, 199, 0);
  border: 1px solid rgb(51, 51, 51);
  position: absolute;
  bottom: -8px;
  right: -8px;
  border-radius: 50%;
}
.navbar__button--shopping-cart:hover > div {
  background-image: url("/resources/static/icons/sales-icon.png");
}
.navbar__button--notifications > div {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/bell-white.png");
}
.navbar__button--notifications > div > div {
  width: 12px;
  height: 12px;
  background-color: rgb(244, 219, 0);
  border: 1px solid rgb(51, 51, 51);
  position: absolute;
  bottom: -8px;
  right: -8px;
  border-radius: 50%;
}
.navbar__button--notifications:hover > div {
  background-image: url("/resources/static/icons/bell-dark.png");
}
.navbar__button--filter {
  border-top: 1px solid rgb(205, 205, 205);
}
.navbar__button--filter > div {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/filter-icon-white.png");
}
.navbar__button--filter > div > div {
  width: 12px;
  height: 12px;
  background-color: rgb(244, 219, 0);
  border: 1px solid rgb(51, 51, 51);
  position: absolute;
  bottom: -8px;
  right: -8px;
  border-radius: 50%;
}
.navbar__button--filter:hover > div {
  background-image: url("/resources/static/icons/filter-icon.png");
}
.navbar__button--left-side > div {
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/navbar-menu-icon-white.png");
}
.navbar__button--left-side:hover > div {
  background-image: url("/resources/static/icons/navbar-menu-icon.png");
}
.navbar__menu {
  margin: auto 46px;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: calc(100% - 288px - 92px);
}
.navbar__menu--buttons {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.navbar__menu-logo {
  margin-right: 16px;
}
.navbar__menu-logo img {
  height: 2.5rem;
}
.navbar__menu--search-box {
  width: 100%;
}
.navbar__menu-username {
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .navbar__menu-username {
    display: none;
  }
}
.navbar__menu-username > small {
  color: white;
  white-space: nowrap;
  padding: 4px 8px;
}
.navbar__menu-username > small:first-child {
  padding-bottom: 2px;
}
.navbar__menu-username > small:nth-child(2) {
  padding-top: 2px;
}
.navbar__menu-search {
  width: 100%;
}
.navbar__menu-search > form {
  display: flex;
}
.navbar__menu-search > form input {
  width: 100%;
  margin: 0px;
}

@media only screen and (max-width: 992px) {
  .maincontainer {
    margin-top: 136px;
  }
  #boton-registro-horario-oculto {
    display: none;
  }
  .navbar__mobile {
    display: flex;
    flex-direction: row;
    z-index: 10;
    align-items: center;
    position: fixed;
    top: 72px;
    height: 64px;
    background-color: rgb(245, 245, 245);
    border-bottom: 1px solid rgb(205, 205, 205);
    width: 100%;
  }
  .navbar__mobile form > select {
    display: none;
  }
  .navbar__mobile form > input {
    width: 100%;
    border: 1px solid rgb(205, 205, 205) !important;
    margin: 8px 24px !important;
    max-width: 100%;
  }
  .navbar__menu--search-box {
    display: none;
  }
}
.slider__main {
  height: 100%;
  position: relative;
}
.slider__main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slider__main--right, .slider__main--left {
  position: absolute;
  width: 50%;
  height: 100%;
  opacity: 0.1;
}
.slider__main--right:hover, .slider__main--left:hover {
  cursor: pointer;
  background-color: rgb(51, 51, 51);
}
.slider__main--right {
  right: 0;
}
.slider__main--left {
  left: 0;
}
.slider__main--selector {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 8px;
  width: 100%;
  text-align: center;
  padding: 20px;
}
.slider__main--selector-option {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.7);
  border: 2px solid white;
  margin-right: 8px;
  transition: all 0.3s;
}
.slider__main--selector-option:last-child {
  margin-right: 0;
}
.slider__main--selector-option--current {
  background-color: rgb(0, 132, 203);
  transform: scale(1.4);
}
.slider__main--selector-option:hover {
  background-color: rgba(0, 132, 203, 0.8);
}

.orders-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 8px;
}
.orders-container > .order-card {
  margin-right: 20px;
}
.orders-container > .order-card:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .orders-container-only-mobile {
    display: flex;
  }
}
@media (min-width: 768px) {
  .orders-container-only-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .orders-container-only-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .orders-container-only-desktop {
    display: table;
  }
}

.order-card {
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  border-radius: 4px;
  color: rgb(51, 51, 51);
  width: 256px;
  flex-shrink: 0;
}
.order-card__header {
  border-bottom: 1px solid rgb(245, 245, 245);
  padding: 16px;
}
.order-card__header > h4 {
  text-align: center;
  margin: 0;
}
.order-card__body {
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.order-card__body-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.order-card__body-attribute {
  display: flex;
  flex-direction: column;
  justify-content: left;
  width: 50%;
}
.order-card__body-attribute > label {
  margin-bottom: 4px;
}
.order-card__body-attribute > span {
  margin-bottom: 0.8em;
  font-weight: bold;
}
.order-card__footer {
  padding: 16px;
  border-top: 1px solid rgb(245, 245, 245);
}
.order-card__footer .button {
  width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
  padding: 20px;
  border: 1px solid rgb(205, 205, 205);
}
.table__total-cell-title {
  background-color: rgb(245, 245, 245);
}
.table th {
  background-color: rgb(245, 245, 245);
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  font-weight: bold;
}
.table th, .table td {
  border: 1px solid rgb(205, 205, 205);
  border-collapse: collapse;
  padding: 8px 16px;
}

.product-card__stock-table {
  border: none;
}
.product-card__stock-table tbody {
  background-color: white;
  font-size: 14px;
}
.product-card__stock-table--selector {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.tabulator {
  border-radius: unset !important;
  margin-top: 0px !important;
  border: 1px solid rgb(205, 205, 205) !important;
}

.tabulator .tabulator-header {
  background-color: rgb(245, 245, 245) !important;
}
.tabulator .tabulator-header .tabulator-col {
  background-color: rgb(245, 245, 245) !important;
  height: fit-content !important;
  vertical-align: top !important;
}

.tabulator-footer {
  background-color: rgb(245, 245, 245) !important;
}

.tabulator-headers {
  height: fit-content !important;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  padding: 0 !important;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {
  padding: 0 !important;
}

.tabulator-header-filter {
  position: relative;
}
.tabulator-header-filter input[type=search] {
  border: 1px solid rgb(205, 205, 205);
  padding-left: 24px !important;
}
.tabulator-header-filter::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free"; /* Specify Font Awesome font family */
  position: absolute;
  top: 50%;
  left: 6px; /* Adjust position as needed */
  transform: translateY(-50%);
}

.tabulator .tabulator-col-resize-handle {
  padding: 0 !important;
}

.background__dotted {
  background-image: radial-gradient(rgb(245, 245, 245) 8%, transparent 8%), radial-gradient(rgb(245, 245, 245) 8%, transparent 8%);
  background-color: white;
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
}
.background__dotted--yellow {
  background-image: radial-gradient(rgb(244, 219, 0) 8%, transparent 8%), radial-gradient(rgb(244, 219, 0) 8%, transparent 8%);
}
.background__dotted--green {
  background-image: radial-gradient(rgb(40, 199, 0) 8%, transparent 8%), radial-gradient(rgb(40, 199, 0) 8%, transparent 8%);
}
.background__dotted--blue {
  background-image: radial-gradient(rgb(0, 132, 203) 8%, transparent 8%), radial-gradient(rgb(0, 132, 203) 8%, transparent 8%);
}
.background__dotted--red {
  background-image: radial-gradient(rgb(212, 51, 0) 8%, transparent 8%), radial-gradient(rgb(212, 51, 0) 8%, transparent 8%);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.form {
  padding: 40px;
}
.form .form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.form .form-group__column {
  display: flex;
  width: 100%;
  flex-direction: row;
  padding: 0px;
}
.form .form-group__column > .form-group:first-child {
  margin-right: 8px;
}
.form__alert {
  margin: 8px 0px;
  background-color: rgb(255, 244, 209);
  border: 1px solid rgb(204, 156, 0);
  border-radius: 4px;
  padding: 8px 16px;
}
.form__alert > span {
  color: rgb(204, 156, 0);
}

textarea {
  width: 100%;
  border: 1px solid rgb(205, 205, 205);
  padding: 8px 16px;
  resize: none;
}

label {
  margin-bottom: 0.8em;
  display: flex;
  font-size: var(--text-sm);
}
label.checkbox-label {
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  margin: 0;
}

input {
  width: 100%;
  height: 2.5em;
  border-color: rgb(153, 153, 153);
  outline: transparent;
  border: none;
  padding: 8px 16px;
}
input[type=text], input[type=password], input[type=email], input[type=date], input[type=number] {
  border: 1px solid rgb(205, 205, 205);
}
input[type=submit] {
  background-color: rgb(0, 73, 112);
  color: white;
}
input[type=submit]:hover {
  cursor: pointer;
}
input[type=checkbox] {
  width: 16px;
  margin: 0;
  height: 16px;
}
input[type=file] {
  padding: 0;
  display: none;
}

.input-file-group {
  align-items: end;
}
.input-file-name {
  display: none;
  margin-bottom: 8px;
}
.input-file-upload {
  color: rgb(51, 51, 51);
  padding: 8px;
  margin: 0;
  display: inline;
  background-color: white;
  width: fit-content;
  border: 1px solid rgb(205, 205, 205);
}
.input-file-upload:hover {
  cursor: pointer;
}

.sidemenu {
  z-index: 20;
  display: none;
  position: fixed;
  flex-direction: column;
  top: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100%;
  background-color: white;
  padding: 0px 32px;
  width: 400px;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .sidemenu {
    width: 85vw;
  }
}
.sidemenu__right, .sidemenu__left {
  padding-top: 32px;
  padding-bottom: 32px;
}
.sidemenu__right h3, .sidemenu__left h3 {
  margin-top: 0;
}
.sidemenu__right h3, .sidemenu__right h4, .sidemenu__left h3, .sidemenu__left h4 {
  color: rgb(51, 51, 51);
}
.sidemenu__left {
  left: 0;
}
.sidemenu__left--user {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.sidemenu__left--user-profile {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.sidemenu__left--user-profile--detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgb(51, 51, 51);
  padding: 16px;
  background-color: rgb(245, 245, 245);
  width: 100%;
}
.sidemenu__left--user-profile--detail > h4 {
  color: rgb(51, 51, 51);
  margin-bottom: 8px;
  margin-top: 4px;
}
.sidemenu__left--user-profile--id {
  align-items: center;
  background-color: rgb(51, 51, 51);
  font-weight: bold;
  color: white;
  padding: 16px;
}
.sidemenu__left--user-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
}
.sidemenu__left--user-buttons > .button {
  width: 100%;
  padding: 8px;
  font-size: 12px;
}
.sidemenu__left--user-buttons > .button:first-child {
  margin-right: 8px;
}
.sidemenu__left--user ul {
  list-style: none;
  padding: 0;
}
.sidemenu__left--password-recovery {
  text-align: center;
  background-color: white;
  padding: 40px;
  border: 1px solid rgb(205, 205, 205);
  border-radius: 20px;
}
.sidemenu__right {
  right: 0;
}
.sidemenu ul {
  list-style: none;
  padding: 10px 0 0;
}
.sidemenu ul > li {
  padding: 5px 0px;
}
.sidemenu__dropdown {
  padding: 16px;
  border: 1px solid rgb(245, 245, 245);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sidemenu__dropdown:hover {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(51, 51, 51);
}
.sidemenu__dropdown:hover span {
  text-decoration: underline 4px;
}
.sidemenu__dropdown span {
  color: rgb(51, 51, 51);
  font-weight: bold;
}
.sidemenu__dropdown--content {
  display: none;
  height: 0;
  overflow: hidden;
}
.sidemenu__dropdown--content ul {
  background-color: rgb(245, 245, 245);
  list-style: none;
  padding-left: 65px;
  border: 1px solid rgb(205, 205, 205);
}
.sidemenu__dropdown--content ul li {
  padding: 8px 4px;
}
.sidemenu__dropdown--content ul li a {
  color: rgb(51, 51, 51);
}
.sidemenu__dropdown--content ul li a:hover {
  text-decoration: underline !important;
}

#main-menu {
  display: none;
  justify-content: space-between;
  padding: 0px;
}
#main-menu li > a:hover {
  text-decoration: none;
}
#main-menu__top {
  padding-left: 32px;
  padding-right: 32px;
  overflow-y: auto;
}
#main-menu #logout-button {
  width: 100%;
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  color: rgb(159, 0, 0);
}
#main-menu #logout-button:hover {
  background-color: rgb(0, 132, 203);
  color: white;
}

#cart-menu .menu-shopping-cart__container {
  overflow-y: auto;
}
#cart-menu .menu-shopping-cart__container-element {
  display: flex;
  flex-direction: column;
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(205, 205, 205);
  padding: 20px;
  margin-bottom: 16px;
}
#cart-menu .menu-shopping-cart__container-element-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#cart-menu .menu-shopping-cart__container-element-body .button {
  padding: 20px 10px;
}
#cart-menu .menu-shopping-cart__container-element-body p, #cart-menu .menu-shopping-cart__container-element-body h3 {
  margin: 0px;
}
#cart-menu .menu-shopping-cart__container-element-body h4 {
  margin-top: 0;
  margin-bottom: 8px;
}
#cart-menu .menu-shopping-cart__container-element-footer {
  margin-top: 16px;
}
#cart-menu .menu-shopping-cart__container-element:last-child {
  margin-bottom: 0px;
}
#cart-menu .menu-shopping-cart__summary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
#cart-menu .menu-shopping-cart__summary span:first-child {
  font-weight: bold;
}

#recover-password {
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}
#recover-password .recovery__form--close {
  display: flex;
  justify-content: end;
}

.dropdown {
  padding: 16px;
  border: 1px solid rgb(205, 205, 205);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.dropdown__with-image {
  padding: 0;
}
.dropdown__with-image--image {
  width: 150px;
  object-fit: contain;
  margin-right: 20px;
  border-right: 1px solid rgb(205, 205, 205);
}
.dropdown__with-image--image img {
  width: 150px;
  height: 100%;
  object-fit: contain;
}
.dropdown__with-image--text {
  padding-top: 16px;
  padding-bottom: 16px;
}
.dropdown__with-image--icon {
  padding-right: 16px;
  padding-left: 16px;
}
.dropdown > span {
  font-size: 20px;
  color: rgb(51, 51, 51);
  font-weight: bold;
}
.dropdown--content {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  border: 1px solid rgb(51, 51, 51);
  border-top: none;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.dropdown--content.active {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}
.dropdown--description {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.dropdown--text {
  display: flex;
  flex-direction: column;
  align-items: start;
  color: rgb(51, 51, 51);
}
.dropdown--text > span {
  font-size: var(--text-sm);
}
.dropdown--text span:first-child {
  font-weight: bold;
}
.dropdown--icon {
  color: rgb(51, 51, 51);
  font-size: var(--text-xl);
  transition: transform 0.3s;
}
.dropdown--icon.active {
  transform: rotate(-180deg);
}
.dropdown:hover, .dropdown:active, .dropdown:focus, .dropdown.active {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(51, 51, 51);
  text-decoration: none;
}
.dropdown__anchor {
  cursor: pointer;
}
.dropdown__anchor:hover, .dropdown__anchor:active, .dropdown__anchor:focus {
  text-decoration: none;
}

select {
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.4em 3.5em 0.4em 1em;
  border-radius: 0;
  border: 1px solid rgb(205, 205, 205);
  width: 100%;
  cursor: pointer;
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
select:hover {
  background-color: rgb(245, 245, 245);
}
select:focus {
  background-image: linear-gradient(45deg, rgb(0, 132, 203) 50%, transparent 50%), linear-gradient(135deg, transparent 50%, rgb(0, 132, 203) 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: rgb(51, 51, 51);
  outline: 0;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: relative;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.product-card {
  perspective: 150rem;
  position: relative;
  width: 320px;
  min-width: 320px;
  height: 584px;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100vw - 84px);
}
.product-card:hover .product-card__family-link {
  opacity: 1;
  pointer-events: auto;
}
.product-card:hover .button__comparison {
  opacity: 1;
  animation: shake 0.5s;
}
@media (min-width: 768px) and (max-resolution: 96dpi) and (max-width: 1600px) {
  .product-card {
    width: 256px;
    min-width: 256px;
    height: 496px;
  }
}
@media (min-resolution: 97dpi) and (max-resolution: 144dpi), (min-resolution: 1.01dppx) and (max-resolution: 1.5dppx) {
  .product-card {
    width: 256px;
    min-width: 256px;
    height: 496px;
  }
}
.product-card__body {
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
.product-card__family-link {
  display: flex;
  position: absolute;
  bottom: 0;
  max-width: 90%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .product-card__family-link {
    opacity: 1;
  }
}
@media (min-width: 768px) and (max-resolution: 96dpi) and (max-width: 1600px) {
  .product-card {
    width: 240px;
  }
}
@media (min-resolution: 97dpi) and (max-resolution: 144dpi), (min-resolution: 1.01dppx) and (max-resolution: 1.5dppx) {
  .product-card {
    width: 240px;
  }
}
.product-card__double-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.product-card-discharged .product-card__side, .product-card-obsequio .product-card__side {
  background-color: rgba(245, 245, 245, 0.6);
}
.product-card-normal {
  background-color: white;
}
.product-card-edited {
  background-color: #f0faff;
}
.product-card-special {
  background-color: white;
}
.product-card-special--edited {
  background-color: #fff9e6;
}
.product-card--turn {
  position: absolute;
  top: 215px;
  right: -5px;
  z-index: 2;
}
.product-card--turn > button {
  position: relative;
  perspective: 150rem;
  border: 1px solid rgb(51, 51, 51);
  padding: 12px 24px;
  background-color: rgb(51, 51, 51);
  color: white;
  overflow: hidden;
}
.product-card--turn > button:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.product-card--turn > button:hover {
  background-color: rgb(51, 51, 51);
}
.product-card--turn > button:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.product-card--turn > button:hover i {
  transition: all 0.5s ease-in-out;
  transform: rotateY(360deg);
}
.product-card__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(205, 205, 205);
  box-shadow: 2px 5px 5px rgba(51, 51, 51, 0.2);
  border-radius: 4px;
  transition: all 0.8s ease;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  overflow-y: auto;
}
.product-card__side-back {
  background-color: rgb(245, 245, 245);
  transform: rotateY(-180deg);
}
.product-card__side-back table th td {
  padding: 8px;
}
.product-card__side-back table input[type=radio] {
  width: auto;
  height: auto;
}
.product-card__side-back .product-card__body {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.product-card__side-back .product-card__body > .product-card__image {
  height: auto;
  width: auto;
}
.product-card__side-back .product-card__body > .product-card__image-back {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.product-card__side-back .product-card__body > .product-card__image > img {
  object-fit: cover;
  height: 100px;
  width: 100px;
}
.product-card__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.product-card__tags--on-list-view {
  display: flex;
  flex-direction: row;
}
.product-card__tags--on-list-view > *:not(:last-child) {
  margin-right: 8px;
}
.product-card__tags--absolute {
  position: absolute;
  right: 12px;
  top: 5px;
  align-items: end;
}
.product-card__badge {
  color: white;
  z-index: 1;
}
.product-card__badge__icon {
  width: 32px;
}
.product-card__badge--outlet > div {
  background-color: rgb(212, 51, 0);
  border: 2px solid rgb(159, 0, 0);
  color: white;
  height: 32px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  font-size: var(--text-sm);
  font-weight: bold;
}
.product-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--body-line-height);
  min-height: calc(var(--body-line-height) * 2);
  text-align: center;
  margin-bottom: 0;
}
.product-card__brand {
  margin-bottom: 16px;
}
.product-card__sustitutivoAlternativo {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(0, 132, 203);
  background-color: white;
}
.product-card__sustitutivoAlternativo--header {
  background-color: rgb(0, 132, 203);
  color: white;
  padding: 8px;
}
.product-card__sustitutivoAlternativo--body {
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.product-card__reference {
  color: rgb(153, 153, 153);
}
.product-card__rotation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(51, 51, 51);
  padding: 8px;
  position: absolute;
  top: 8px;
  background-color: white;
  z-index: 2;
  left: 8px;
  font-size: var(--text-md);
}
.product-card--more-products {
  background-color: rgba(0, 132, 203, 0.2);
  display: flex;
  flex-direction: column;
  width: 320px;
  justify-content: space-evenly;
  box-shadow: 2px 5px 5px rgba(51, 51, 51, 0.2);
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(0, 132, 203, 0.2);
}
.product-card--more-products > div {
  font-size: 128px;
  line-height: 128px;
}
.product-card--more-products:hover, .product-card--more-products:focus, .product-card--more-products:active {
  background-color: rgb(0, 132, 203);
  color: white;
  text-decoration: none;
}
.product-card__image {
  width: 100%;
  object-fit: contain;
  position: relative;
  margin-bottom: 8px;
  height: 140px;
  border: 1px solid gainsboro;
}
@media (max-width: 767px) {
  .product-card__image {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .product-card__image {
    height: 240px;
  }
}
.product-card__image object {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: white;
}
.product-card__image img {
  background-color: transparent;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, border 0.3s ease;
}
.product-card__image img:hover {
  cursor: pointer;
  border: 1px solid rgb(245, 245, 245);
  transform: scale(1.05);
  z-index: 2;
}
.product-card__image--right {
  right: 0;
}
.product-card__image--left {
  left: 0;
}
.product-card__image--right, .product-card__image--left {
  position: absolute;
  width: 50%;
  height: 140px;
  opacity: 0.1;
  z-index: 1;
}
@media (max-width: 767px) {
  .product-card__image--right, .product-card__image--left {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .product-card__image--right, .product-card__image--left {
    height: 240px;
  }
}
.product-card__image--right:hover, .product-card__image--left:hover {
  cursor: pointer;
  background-color: rgb(51, 51, 51);
}
.product-card__footer {
  width: 100%;
}
.product-card__footer > p {
  margin: 0px;
}
.product-card__purchase-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
.product-card__purchase-details > div {
  display: flex;
  flex-direction: column;
  font-size: var(--text-sm);
  justify-content: center;
  align-items: center;
}
.product-card__purchase-details > div > label {
  margin-bottom: 4px;
  font-weight: bold;
  text-transform: uppercase;
}
.product-card__purchase-details__previous-price {
  text-decoration: line-through;
}
.product-card__purchase-details__pvp {
  margin-bottom: 0px;
}
.product-card__purchase-details__pvp > strong {
  padding: 0;
}
.product-card__purchase-details__stock {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(51, 51, 51);
  padding: 4px 12px;
  background-color: rgb(245, 245, 245);
  color: rgb(51, 51, 51);
  overflow: hidden;
  margin: 0;
}
.product-card__purchase-details__stock:hover {
  background-color: rgb(51, 51, 51);
  color: white;
  text-decoration: none;
}
.product-card__purchase-details__stock:active, .product-card__purchase-details__stock:focus {
  text-decoration: none;
}
.product-card__purchase-details__stock > label {
  margin-bottom: 0px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: var(--text-sm);
}
.product-card__purchase-details__stock > label:hover {
  cursor: pointer;
}
.product-card__purchase-details__stock--close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.product-card__purchase-details__stock--close > button {
  padding: 12px 15px;
}
.product-card__purchase-details__stock-dropdown {
  position: relative;
  display: inline-block;
}
.product-card__purchase-details__stock-dropdown--content {
  display: none;
  flex-direction: column;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 10;
  border-top: 0;
  border: 1px solid rgb(0, 132, 203);
}
.product-card__purchase-details__stock-dropdown--content > a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px;
  color: rgb(51, 51, 51);
}
.product-card__purchase-details__stock-dropdown--content > a small {
  text-transform: uppercase;
}
.product-card__purchase-details__stock-dropdown--content > a:hover {
  background-color: rgb(51, 51, 51);
  text-decoration: none;
  color: white;
}
.product-card__purchase-details__stock-dropdown--content > a:first-child {
  border-bottom: 1px solid rgb(0, 132, 203);
}
.product-card__purchase-savings {
  display: none;
  margin-top: 8px;
  flex-direction: column;
}
.product-card__purchase-savings small:first-child {
  color: rgb(40, 150, 59);
}
.product-card__purchase-action {
  display: grid;
  grid-template-columns: 40% 30% 30%;
  background-color: white;
  margin-top: 16px;
  width: 100%;
}
.product-card__purchase-action--list {
  display: flex;
  flex-direction: row;
}
.product-card__purchase-action--list .button {
  padding: 8px 16px;
}
.product-card__purchase-action--list .button img {
  height: 24px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .product-card__purchase-action .product-price {
    font-size: var(--text-sm);
  }
}
.product-card__purchase-action--special-product {
  grid-template-columns: 40% 60%;
}
.product-card__purchase-action--price-updated {
  color: rgb(0, 132, 203);
}
.product-card__purchase-action span {
  inline-size: max-content;
}
.product-card__purchase-action__box-normal {
  border-color: rgb(0, 132, 203) !important;
}
.product-card__purchase-action__box-edited {
  border-color: rgb(0, 73, 112) !important;
}
.product-card__purchase-action__box-special {
  border-color: rgb(204, 156, 0) !important;
}
.product-card__purchase-action__box-special label {
  color: rgb(51, 51, 51);
}
.product-card__purchase-action__box-special--edited {
  border-color: #997500;
}
.product-card__purchase-action div {
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-width: 2px;
  border-style: solid;
}
.product-card__purchase-action div label {
  margin: 0;
  text-transform: uppercase;
}
.product-card__purchase-action div:nth-child(2) {
  border-left: none;
  border-right: none;
}
.product-card__purchase-action div:last-child {
  padding: 0;
  border-right-width: 2px;
  border-right-style: solid;
}
.product-card__purchase-action div > input {
  margin: 0px;
  padding: 0px;
  height: auto;
  background-color: rgb(245, 245, 245);
  text-align: center;
}
.product-card__purchase-action .button {
  width: 100%;
  height: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card__purchase-action .button img {
  height: 24px;
  object-fit: contain;
}
.product-card__purchase-discounts {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.product-card__purchase-discounts--label {
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 4px;
  border: 2px solid rgb(212, 51, 0);
  background-color: #FFEDED;
  color: rgb(212, 51, 0);
}
.product-card__purchase-discounts-per-units {
  width: 100%;
}
.product-card__purchase-discounts > a:hover, .product-card__purchase-discounts > a:active, .product-card__purchase-discounts > a:focus {
  text-decoration: none;
}
.product-card__purchase-discounts-table__content {
  font-size: var(--text-sm);
  background-color: white;
  padding: 4px;
  border: 1px solid rgb(51, 51, 51);
  border-top: none;
  width: 100%;
}
.product-card__purchase-discounts-table__content table {
  border-collapse: collapse;
  width: 100%;
}
.product-card__purchase-discounts-table__content table tr > td:nth-child(2) {
  text-align: center;
}
.product-card__purchase-discounts-table__content table tr > td:last-child {
  text-align: right;
}
.product-card__purchase-discounts-table__content td, .product-card__purchase-discounts-table__content th {
  border: 1px solid rgb(205, 205, 205);
}
.product-card__details {
  margin-bottom: 8px;
}
.product-card__details ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.product-card__details ul label {
  display: inline;
}
.product-card__stock {
  overflow-y: scroll;
}
.product-card__stock td {
  padding: 8px;
}
.product-card--contact-provider {
  margin-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.products-grid {
  padding: 0;
  display: grid;
  row-gap: 24px;
  column-gap: 24px;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, 320px);
}
@media (min-width: 768px) and (max-resolution: 96dpi) and (max-width: 1600px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, 240px);
  }
}
@media (min-resolution: 97dpi) and (max-resolution: 144dpi), (min-resolution: 1.01dppx) and (max-resolution: 1.5dppx) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, 240px);
  }
}

#bg-overlay-first-layer {
  z-index: 1020;
}

#bg-overlay, #bg-overlay-first-layer {
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 20;
  display: none;
}
#bg-overlay:hover, #bg-overlay-first-layer:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.68);
}
#bg-overlay__close--right, #bg-overlay__close--left, #bg-overlay-first-layer__close--right, #bg-overlay-first-layer__close--left {
  position: absolute;
  top: 20px;
  color: white;
  font-size: var(--text-xxxl);
}
#bg-overlay__close--right, #bg-overlay-first-layer__close--right {
  display: block;
  right: 4vw;
}
#bg-overlay__close--left, #bg-overlay-first-layer__close--left {
  display: none;
  left: 4vw;
}

.tabs {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(205, 205, 205);
  height: inherit;
  background-color: white;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .tabs {
    border-top: 0;
  }
}
.tabs__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.tabs__body {
  height: 100%;
  padding: 20px;
  overflow-y: scroll;
}
.tabs__body--tab {
  display: none;
  opacity: 0;
  animation: fade-in-effect 0.2s ease-in-out;
}

.notifications {
  margin-top: 16px;
}

.notification {
  min-height: 72px;
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  border: 1px solid rgb(205, 205, 205);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.notification__container {
  position: relative;
}
.notification__container > .close-icon {
  position: absolute;
  top: 0;
  right: 2px;
  z-index: 4;
  font-weight: bold;
  padding: 8px;
}
.notification__container > .close-icon > a {
  color: rgb(51, 51, 51);
  padding: 8px;
}
.notification__container > .close-icon > a:hover {
  color: rgb(205, 205, 205);
  text-decoration: none;
}
.notification__container > a {
  color: rgb(51, 51, 51);
}
.notification__container > a:hover {
  text-decoration: none;
}
.notification__container > a:hover .notification {
  background-color: rgb(245, 245, 245);
}
.notification > a {
  display: block;
}
.notification__alert {
  background-color: ivory;
}
.notification > img {
  width: 80px;
  position: absolute;
  object-fit: contain;
  height: 100%;
  left: 0;
}
.notification__description {
  display: flex;
  margin-right: 12px;
  flex-direction: column;
}
.notification__description > p:first-child {
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: bold;
}
.notification__description > p:last-child {
  margin: 0;
}
.notification .module-content-margin {
  margin-left: 72px;
}
.notification .new-notification-icon {
  width: 12px;
  height: 12px;
  background-color: rgb(244, 219, 0);
  border: 1px solid rgb(51, 51, 51);
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-radius: 50%;
}

.push-notification__box {
  position: fixed;
  right: 0;
  z-index: 151;
  display: flex;
  justify-content: flex-end;
  flex-direction: column-reverse;
  pointer-events: none;
  height: 100%;
  width: 320px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.push-notification__card {
  position: relative;
  display: none;
  width: 95%;
  padding: 16px;
  margin-bottom: 16px;
  min-height: 72px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 1px solid rgb(51, 51, 51);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  animation: pushNotificationShow 0.8s ease-out forwards;
}
.push-notification__card-icon {
  margin-right: 16px;
}
.push-notification__card-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
}
.push-notification__card--info {
  background: #e5f6ff;
}
.push-notification__card--alert {
  background: #ffe8cc;
}
.push-notification__card--success {
  background: #e7ffe1;
}
.push-notification__card--danger {
  background: #fff2ee;
}
.push-notification__card-out {
  animation: pushNotificationHide 0.8s ease forwards;
}
.push-notification__card--title {
  font-weight: bold;
}

@keyframes pushNotificationShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pushNotificationHide {
  from {
    opacity: 1;
    right: 16px;
    margin-bottom: 16px;
  }
  to {
    opacity: 0;
    right: -500px;
    height: 0;
    margin-bottom: 0px;
  }
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 90px;
  height: 52px;
  box-shadow: 0 3px 0 rgb(51, 51, 51);
  position: relative;
  clip-path: inset(-40px 0 -5px);
}

.loader:before {
  content: "";
  position: absolute;
  inset: auto calc(50% - 17px) 0;
  height: 50px;
  --g: no-repeat linear-gradient(#333 0 0);
  background: var(--g), var(--g), var(--g), var(--g);
  background-size: 16px 14px;
  animation: l7-1 2s infinite linear, l7-2 2s infinite linear;
}

@keyframes l7-1 {
  0%, 100% {
    background-position: 0 -50px, 100% -50px;
  }
  17.5% {
    background-position: 0 100%, 100% -50px, 0 -50px, 100% -50px;
  }
  35% {
    background-position: 0 100%, 100% 100%, 0 -50px, 100% -50px;
  }
  52.5% {
    background-position: 0 100%, 100% 100%, 0 calc(100% - 16px), 100% -50px;
  }
  70%, 98% {
    background-position: 0 100%, 100% 100%, 0 calc(100% - 16px), 100% calc(100% - 16px);
  }
}
@keyframes l7-2 {
  0%, 70% {
    transform: translate(0);
  }
  100% {
    transform: translate(200%);
  }
}
/* Set the width and height of the scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Track style */
::-webkit-scrollbar-track {
  background-color: rgb(205, 205, 205);
}

/* Handle style */
::-webkit-scrollbar-thumb {
  background-color: rgb(51, 51, 51);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: black;
}

.secondary-scrollbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
}
.secondary-scrollbar::-webkit-scrollbar {
  height: 8px;
}
.secondary-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.secondary-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d4d4d4;
  border-radius: 4px;
}
.secondary-scrollbar__horizontal {
  padding-bottom: 8px;
}

.news {
  margin-top: 16px;
}
.news-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 246px;
  padding: 16px;
  margin-right: 8px;
  border: 1px solid rgb(205, 205, 205);
}
.news-mini h4 {
  word-break: break-word;
}
.news-mini:last-child {
  margin-right: 0px;
}
.news-mini small {
  color: rgb(153, 153, 153);
}
.news-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  border: 1px solid rgb(153, 153, 153);
  border-radius: 4px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  padding: 20px;
  z-index: 2;
  position: relative;
}
.news-card .highlight-tag {
  position: absolute;
}
.news-card--highlighted {
  border-color: rgb(0, 132, 203) !important;
  background-color: rgba(0, 132, 203, 0.05) !important;
}
.news-card__image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.news-card__image > img {
  max-width: 100%;
  max-height: 100%;
  width: 64px;
  height: 64px;
}
.news-card__body {
  flex: 4;
  display: flex;
  flex-direction: column;
}
.news-card__body > small {
  color: rgb(153, 153, 153);
}
.news-card__actions {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-card__display {
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgb(153, 153, 153);
  background-color: white;
  margin-top: -4px;
  padding-top: 4px;
  z-index: 1;
  display: flex;
  padding: 20px;
  flex-direction: column;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
}
.news-card__display.visible {
  visibility: visible;
  opacity: 1;
  max-height: 200px;
}
.news-card__display > p {
  margin-top: 8px;
  margin-bottom: 0px;
}

#main-expandable-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 72px;
  left: 0;
  height: calc(100% - 72px);
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-right: 1px solid rgb(205, 205, 205);
}
#main-expandable-menu__top {
  display: flex;
  flex-direction: column;
}
#main-expandable-menu__top--profile > div {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/profile-icon.png");
}
#main-expandable-menu__top--profile:hover > div, #main-expandable-menu__top--profile:active > div, #main-expandable-menu__top--profile:focus > div {
  background-image: url("/resources/static/icons/profile-icon-white.png");
}
#main-expandable-menu__top--sales > div {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/sales-icon.png");
}
#main-expandable-menu__top--sales:hover > div, #main-expandable-menu__top--sales:active > div, #main-expandable-menu__top--sales:focus > div {
  background-image: url("/resources/static/icons/sales-icon-white.png");
}
#main-expandable-menu__top--herramientas > div {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/herramientas-icon.png");
}
#main-expandable-menu__top--herramientas:hover > div, #main-expandable-menu__top--herramientas:active > div, #main-expandable-menu__top--herramientas:focus > div {
  background-image: url("/resources/static/icons/herramientas-icon-white.png");
}
#main-expandable-menu__top--administracion > div {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/administracion-icon.png");
}
#main-expandable-menu__top--administracion:hover > div, #main-expandable-menu__top--administracion:active > div, #main-expandable-menu__top--administracion:focus > div {
  background-image: url("/resources/static/icons/administracion-icon-white.png");
}
#main-expandable-menu__top--biblioteca > div {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/resources/static/icons/biblioteca-icon.png");
}
#main-expandable-menu__top--biblioteca:hover > div, #main-expandable-menu__top--biblioteca:active > div, #main-expandable-menu__top--biblioteca:focus > div {
  background-image: url("/resources/static/icons/biblioteca-icon-white.png");
}
#main-expandable-menu__top > a {
  background-color: rgb(245, 245, 245);
  border-bottom: 1px solid rgb(205, 205, 205);
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#main-expandable-menu__top > a > small {
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(51, 51, 51);
}
#main-expandable-menu__top > a > img {
  margin: 0px 0px 4px;
}
#main-expandable-menu__top > a:hover, #main-expandable-menu__top > a:active, #main-expandable-menu__top > a:focus {
  background-color: rgb(51, 51, 51);
  border: none;
  text-decoration: none;
}
#main-expandable-menu__top > a:hover > small, #main-expandable-menu__top > a:active > small, #main-expandable-menu__top > a:focus > small {
  color: white;
}
#main-expandable-menu__top > a:hover > *, #main-expandable-menu__top > a:active > *, #main-expandable-menu__top > a:focus > * {
  text-decoration: none;
}
#main-expandable-menu__top > a:active, #main-expandable-menu__top > a:focus {
  text-decoration: none;
}
#main-expandable-menu__top > a:active > *, #main-expandable-menu__top > a:focus > * {
  text-decoration: none;
}

.menu-exp {
  width: 0px;
  z-index: 20;
  display: none;
  height: calc(100% - 72px);
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: fixed;
  flex-direction: column;
  left: 72px;
  border-right: 1px solid rgb(205, 205, 205);
  padding: 0px 32px;
}
.menu-exp__body {
  display: flex;
  flex-direction: column;
}

#promo-banners {
  margin-top: 0;
  max-height: 250px;
}
#promo-banners > a {
  display: inline-block;
  height: 100%;
  width: 100%;
}
#promo-banners > a > img {
  width: 100%;
  height: 100%;
}

#desktop-filters {
  display: none;
}
@media (min-width: 992px) {
  #desktop-filters {
    display: block;
  }
}

.search-box {
  width: 100%;
}
.search-box__header {
  color: rgb(51, 51, 51);
  padding: 0px 40px 20px;
}
.search-box__header-box-header {
  display: flex;
  align-items: baseline;
}
.search-box__header-box-header > small {
  margin-left: 8px;
}
.search-box__header-box-filters {
  display: flex;
  white-space: nowrap;
  overflow-x: scroll;
}
.search-box__header-box-filters > i {
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.search-box__header-box-filters > small {
  background-color: rgb(245, 245, 245);
  color: rgb(51, 51, 51);
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 4px;
  margin-right: 4px;
  padding-right: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.search-box__header-box-filters > small > .close-circle {
  padding: 4px;
  border-radius: 50%;
  margin-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.search-box__header-box-filters > small > .close-circle:hover {
  background-color: rgb(205, 205, 205);
  cursor: pointer;
}
.search-box__section {
  display: flex;
  flex-direction: column;
  padding: 0px 40px 20px;
}
.search-box__section > h4 {
  margin-top: 0;
  margin-bottom: 16px;
}
.search-box__section label:last-child {
  margin: 0px;
}
.search-box__section--dropdown {
  border-bottom: 1px solid rgb(205, 205, 205);
}
.search-box__section--dropdown > input[type=checkbox]:first-child {
  display: none;
}
.search-box__section--dropdown > input[type=checkbox]:first-child:checked ~ .search-box__section--dropdown-content {
  max-height: 1000px;
  transition: all ease 1s;
  padding: 8px 16px 16px;
}
.search-box__section--dropdown > input[type=checkbox]:first-child:checked ~ label {
  background-color: rgb(51, 51, 51);
  color: white;
  background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%);
  background-position: calc(100% - 15px) calc(50% - 2.5px), calc(100% - 20px) calc(50% - 2.5px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border-color: rgb(0, 132, 203);
  outline: 0;
}
.search-box__section--dropdown > label {
  font-size: var(--text-base-size);
  cursor: pointer;
  margin: 0;
  padding: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2.5px), calc(100% - 15px) calc(50% - 2.5px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.search-box__section--dropdown > label:hover {
  background-color: rgb(51, 51, 51);
  color: white;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2.5px), calc(100% - 15px) calc(50% - 2.5px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border-color: rgb(0, 132, 203);
  outline: 0;
}
.search-box__section--dropdown > label:focus {
  background-color: rgb(51, 51, 51);
  color: white;
  background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%);
  background-position: calc(100% - 20px) calc(50% - 2.5px), calc(100% - 15px) calc(50% - 2.5px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border-color: rgb(0, 132, 203);
  outline: 0;
}
.search-box__section--dropdown-content {
  max-height: 0;
  transition: all ease-out 0.2s;
  overflow: hidden;
  padding: 0px 16px 0px;
}
.search-box__section--dropdown-content-list {
  max-height: 180px;
  overflow-y: scroll;
}
.search-box__section--dropdown-content-list input {
  margin-right: 4px;
  min-width: 16px;
}
.search-box-display {
  position: absolute;
  display: none;
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  height: auto;
  max-height: 70vh;
  width: 70vw;
  left: 15%;
  top: 72px;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .search-box-display {
    width: 100%;
    left: 0;
    top: 64px;
    max-height: calc(100vh - 64px - 72px);
  }
}
@media (min-width: 768px) {
  .search-box-display {
    width: 100%;
    left: 0;
    top: 72px;
    max-height: calc(100vh - 72px);
  }
}
@media (min-width: 1600px) {
  .search-box-display {
    width: 1400px;
    left: calc(50vw - 700px) !important;
  }
}
.search-box-display h5 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.search-box-display > .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.search-box-display > .container > .row {
  padding: 0px;
}
.search-box-display__left {
  padding: 20px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  background-color: rgb(245, 245, 245);
}
.search-box-display__right {
  padding: 20px;
  padding-right: 40px;
}
.search-box-display__categories, .search-box-display__providers {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.search-box-display__categories > small, .search-box-display__providers > small {
  margin-bottom: 8px;
  color: rgb(51, 51, 51);
  font-style: italic;
}
.search-box-display__categories a, .search-box-display__providers a {
  font-size: var(--text-sm);
  height: 100%;
  padding: 8px 16px;
  background-color: rgb(245, 245, 245);
  margin-right: 4px;
  border-radius: 8px;
  color: rgb(51, 51, 51);
}
.search-box-display__categories--box, .search-box-display__providers--box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  height: auto;
  white-space: nowrap;
}
.search-box-display__results a:hover {
  text-decoration: none;
}
.search-box-display__results__product {
  height: 240px;
  margin: 8px;
  padding: 8px;
  border: 1px solid rgb(245, 245, 245);
}
.search-box-display__results__product:hover {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(51, 51, 51);
  cursor: pointer;
}
.search-box-display__results__product-image {
  height: 100px;
  margin-bottom: 8px;
}
.search-box-display__results__product-image > object, .search-box-display__results__product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-box-display__results__product-description {
  display: flex;
  flex-direction: column;
}
.search-box-display__results__product-description p {
  margin: 0;
  margin-top: 4px;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: var(--body-line-height);
  height: calc(var(--body-line-height) * 3);
  font-size: var(--text-sm);
}
.search-box-display__results__product-description small {
  align-self: center;
  color: rgb(51, 51, 51);
}
.search-box-display__results__product-description small:first-of-type {
  color: rgb(0, 132, 203);
}
.search-box-display__results__product-description small:last-of-type {
  color: rgb(153, 153, 153);
}

.footer {
  background-color: rgb(51, 51, 51);
  color: white;
}
.footer a {
  color: wheat;
}
.footer__main {
  padding: 60px 60px 20px;
}
.footer__main img {
  width: 120px;
}
.footer__main--column {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__main--column > small {
  margin-bottom: 8px;
}
.footer__main--column-optimus {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px;
}
.footer__main--column-optimus > a {
  margin-bottom: 8px;
}
.footer__main--column > h4 {
  margin-bottom: 20px;
}
.footer__main--almacen {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.footer__main--almacen h5 {
  margin: 0;
  margin-bottom: 16px;
}
.footer__main--contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__main--contact > small, .footer__main--contact a {
  margin-bottom: 8px;
}
.footer__main--contact-buttons {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.footer__main--contact-buttons > .button {
  background-color: black;
}
.footer__main--contact-buttons > .button:hover {
  background-color: wheat;
  color: rgb(51, 51, 51);
  text-decoration: none;
}
.footer__bottom {
  padding: 20px 60px;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom img {
  width: 24px;
}

.product-popup {
  background-color: white;
  z-index: 100;
  width: 800px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: row;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgb(51, 51, 51);
}
.product-popup__description {
  font-weight: bold;
}
.product-popup__close {
  background-color: white;
  color: rgb(51, 51, 51);
  font-weight: bold;
  font-size: 24px;
}
.product-popup__close:hover {
  color: rgb(205, 205, 205);
}
.product-popup__tags {
  display: flex;
  flex-direction: row;
  margin-top: 12px;
  align-items: baseline;
}
.product-popup__tags > div:not(:first-child) {
  margin-left: 8px;
}
.product-popup__tags .icon {
  width: 32px !important;
  height: 32px !important;
  margin-left: 8px;
}
.product-popup__tags .icon:first-child {
  margin-left: 0;
}
.product-popup__tags .tooltip__for-icon:hover .tooltip__text {
  right: auto;
}
.product-popup__product-dropdown-container {
  display: flex;
  flex-direction: column;
}
.product-popup__product-dropdown-container ul {
  list-style-type: circle;
  margin: 0px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .product-popup-hide-on-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-popup-only-show-on-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .product-popup-only-show-on-mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .product-popup-only-show-on-mobile {
    display: none;
  }
}
@media (min-width: 1600px) {
  .product-popup-only-show-on-mobile {
    display: none;
  }
}
.product-popup-previous-price {
  text-decoration: line-through;
}
@media (max-width: 767px) {
  .product-popup {
    overflow: hidden;
    height: 86vh;
    max-height: 86vh;
    width: 96vw;
  }
}
.product-popup__discount-outlet-section {
  display: flex;
  flex-direction: row;
}
.product-popup__discount-outlet-section > a {
  width: 100%;
}
.product-popup__discount-outlet-section > .product-popup-price-outlet {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 8px;
}
.product-popup__discount-outlet-section .product-popup-price-outlet--title {
  margin-right: 8px;
}
.product-popup__discount-outlet-section .product-popup__discount-table {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.product-popup__discount-table {
  font-weight: bold;
  text-align: center;
}
.product-popup__discount-table__content {
  font-size: var(--text-sm);
  background-color: white;
  padding: 4px;
  border: 1px solid rgb(51, 51, 51);
  border-top: none;
  margin-bottom: 8px;
  width: 100%;
}
.product-popup__discount-table__content table {
  border-collapse: collapse;
  width: 100%;
}
.product-popup__discount-table__content table tr > td:nth-child(2) {
  text-align: center;
}
.product-popup__discount-table__content table tr > td:last-child {
  text-align: right;
}
.product-popup__discount-table__content td, .product-popup__discount-table__content th {
  border: 1px solid rgb(205, 205, 205);
}
.product-popup__id {
  margin-top: 8px;
  margin-bottom: 8px;
}
.product-popup__description {
  margin-top: 8px;
  margin-bottom: 16px;
}
.product-popup__main-image {
  border: 1px solid gainsboro;
  display: flex;
}
.product-popup__main-image > object {
  width: 100%;
  height: 100%;
  display: flex;
}
.product-popup__main-image > object > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: white;
}
.product-popup h5 {
  margin-top: 16px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .product-popup h5 {
    margin-top: 0px;
  }
}
.product-popup .row, .product-popup .container {
  padding: 0px;
}
.product-popup--title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.product-popup-other-details {
  display: flex;
  flex-direction: column;
}
.product-popup-other-details > small {
  margin-bottom: 8px;
}
.product-popup-price__section {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.product-popup-price-outlet {
  color: white;
  padding: 8px;
  margin-right: 8px;
  border: 2px solid rgb(159, 0, 0);
  background-color: rgb(212, 51, 0);
}
.product-popup-price-outlet--title {
  font-size: var(--text-sm);
}
.product-popup-price-outlet--percent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.product-popup-price-outlet--percent > i {
  margin-left: 4px;
}
.product-popup-price-tag {
  display: flex;
  padding: 4px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 2px solid rgb(51, 51, 51);
}
.product-popup-price-tag > label {
  margin: 0;
  text-transform: uppercase;
}
.product-popup-price-discount {
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
.product-popup-price-discount > label {
  margin: 0;
}
.product-popup--stock-box {
  border: 1px dashed rgb(205, 205, 205);
}
.product-popup--stock-details {
  display: none;
  background-color: rgb(245, 245, 245);
  border-style: solid;
  border-color: rgb(205, 205, 205);
  border-width: 1px;
  border-top: none;
}
.product-popup--stock-details__data {
  display: none;
  margin: 0px;
  padding: 1rem;
  padding-left: 2rem;
  font-size: var(--text-sm);
}
.product-popup--stock-details #product-popup-loading-box {
  display: none;
  height: 120px;
}
.product-popup--stock > select {
  text-transform: uppercase;
}
.product-popup--stock input[type=radio] {
  width: auto;
  height: auto;
}
.product-popup--stock-option > label {
  display: inline;
  margin-left: 8px;
}
.product-popup--stock-option > input[type=radio] {
  width: auto;
  height: auto;
}
.product-popup--options {
  display: flex;
  flex-direction: row;
}
.product-popup--options > label {
  display: inline;
  margin: 0px;
}
.product-popup--options > label:nth-child(2) {
  margin-right: 16px;
}
.product-popup--options > input {
  margin-right: 4px;
}
.product-popup__order-product {
  background-color: rgb(245, 245, 245);
}
.product-popup__order-product-data {
  padding: 16px 16px 8px 16px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.product-popup__order-product-data > p {
  margin: 0px;
  margin-bottom: 8px;
}
.product-popup__order-cart {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-popup__order-cart--header {
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .product-popup__order-cart--header {
    border-bottom: 1px solid rgb(205, 205, 205);
    box-shadow: 0px 4px 8px rgba(51, 51, 51, 0.1);
  }
}
.product-popup__order-cart--footer {
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .product-popup__order-cart--footer {
    border-top: 1px solid rgb(205, 205, 205);
    box-shadow: 0px -4px 8px rgba(51, 51, 51, 0.1);
  }
}
.product-popup__order-cart--footer--prices {
  display: flex;
  flex-direction: column;
}
.product-popup__order-cart--body {
  padding: 0.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

#product-popup-tags--mobile {
  margin-bottom: 8px;
}

.product-popup__action-box {
  padding: 0.5em !important;
}
.product-popup__action-box > .product-card__purchase-action {
  margin-top: 0;
}

#custom-confirm-popup {
  z-index: 1150;
}

.popup {
  background-color: white;
  z-index: 150;
  width: 800px;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: row;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  border: 1px solid rgb(51, 51, 51);
}
.popup table {
  font-size: 12px;
}
.popup table * {
  font-size: 12px;
}
@media (max-width: 767px) {
  .popup {
    overflow: hidden;
    max-height: 86vh;
    width: 96vw;
  }
}
@media (min-width: 768px) {
  .popup {
    overflow: hidden;
    max-height: 86vh;
    max-width: 96vw;
  }
}
.popup > .container {
  padding: 0px;
  max-height: 100%;
  overflow-y: auto;
}
.popup__header {
  border-bottom: 1px solid rgb(205, 205, 205);
}
.popup__header h3 {
  color: rgb(0, 73, 112);
}
.popup__header div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.popup__body {
  background-color: white;
}
.popup__footer {
  border-top: 1px solid rgb(205, 205, 205);
}
.popup__alert .popup__header {
  background-color: rgb(255, 140, 0);
}
.popup__alert .popup__header h3 {
  color: white;
}
.popup__zoom-img {
  display: flex;
  justify-content: center;
  height: 50vh;
}

#popup-close {
  background-color: white;
  color: rgb(51, 51, 51);
  font-weight: bold;
  font-size: 24px;
}
#popup-close:hover {
  color: rgb(205, 205, 205);
}

.product-list--flex-content-row {
  display: flex;
  flex-direction: column;
}

.products-table--mobile {
  display: none;
}
@media (max-width: 767px) {
  .products-table--desktop {
    display: none !important;
  }
  .products-table--mobile {
    display: table-row !important;
  }
}
@media (min-width: 768px) {
  .products-table--desktop {
    display: none !important;
  }
  .products-table--mobile {
    display: table-row !important;
  }
}
@media (min-width: 992px) {
  .products-table--desktop {
    display: table-row !important;
  }
  .products-table--mobile {
    display: none !important;
  }
}
.products-table tr {
  border-bottom: 1px solid rgb(205, 205, 205);
}
@media (max-width: 767px) {
  .products-table tr:nth-child(3n-2), .products-table tr:nth-child(3n-1) {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .products-table tr:nth-child(3n-2), .products-table tr:nth-child(3n-1) {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .products-table tr:nth-child(3n-2), .products-table tr:nth-child(3n-1) {
    border-bottom: 1px solid rgb(205, 205, 205);
  }
}
.products-table td {
  vertical-align: top !important;
  border: none;
  padding: 8px;
}
.products-table th {
  border: none;
  padding: 8px;
  text-align: left;
}
.products-table-discharged {
  background-color: rgba(245, 245, 245, 0.6);
}
.products-table__image img {
  width: 100%;
  max-width: 200px;
  min-width: 150px;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease, border 0.3s ease;
}
.products-table__image img:hover {
  cursor: pointer;
  border: 1px solid rgb(245, 245, 245);
  transform: scale(1.05);
  z-index: 2;
}
.products-table-flex {
  display: flex;
  flex-direction: column;
}
.products-table-no-wrap {
  white-space: nowrap;
}

.filters-box {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(205, 205, 205);
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.filters-box__container {
  display: flex;
  flex-direction: row;
}
.filters-box__section {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid rgb(205, 205, 205);
}
.filters-box__action {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
}

.loading-box {
  width: 100%;
  height: 207px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-form-section {
  padding-left: 0;
}
.contact-form-section form {
  padding: 0;
}
.contact-form-section__contacts {
  display: flex;
  flex-direction: column;
}
.contact-form-section__contacts--card:first-child {
  margin-bottom: 40px;
}
.contact-form-section__contacts--card {
  border: 1px solid rgb(205, 205, 205);
  padding: 40px;
  background-color: white;
}
.contact-form-section__contacts--card > p:first-child {
  margin-top: 0;
}

.promotion-card {
  border: 1px solid rgb(205, 205, 205);
  margin-bottom: 8px;
  padding: 16px;
  width: 400px;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promotion-card:not(:last-child) {
  margin-right: 16px;
}
.promotion-card__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.promotion-card__header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.promotion-card__header-description {
  display: flex;
  flex-direction: row;
}
.promotion-card__header-image {
  margin-right: 8px;
}
.promotion-card__header-image img {
  width: 80px;
  height: 80px;
}
.promotion-card__header-detail__title {
  margin: 0 0 8px;
}
.promotion-card__header-action {
  margin-left: 8px;
}
.promotion-card__body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid rgb(205, 205, 205);
  padding-top: 8px;
  margin-top: 8px;
}
.promotion-card__body-description > h4 {
  margin-top: 0;
}
.promotion-card__body-description > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.promotion-card__body-action {
  margin-left: 8px;
}
.promotion-card__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgb(205, 205, 205);
}
.promotion-card__footer > *:not(:last-child) {
  margin-right: 8px;
}

.floating-left-bottom {
  display: none;
  flex-direction: row;
  position: fixed;
  z-index: 10;
  bottom: 100px;
  left: 20px;
}

/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
.login {
  height: 100vh;
  display: flex;
  flex-direction: row;
}
.login__form > h4 {
  color: rgb(0, 73, 112);
  margin-bottom: 40px;
}
.login__form > form {
  padding: 0px;
}
.login__form-selector {
  position: relative;
  display: flex;
  flex-direction: column;
}
.login__form-selector--usertype {
  text-align: center;
  margin-bottom: 16px;
}
.login__form-selector--usertype > a {
  width: 100%;
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
  display: inline-block;
  padding: 40px;
  color: rgb(51, 51, 51);
  cursor: pointer;
}
.login__form-selector--usertype > a:hover {
  text-decoration: none;
  background-color: rgb(0, 132, 203);
  color: white;
  border-color: white;
  font-weight: bold;
}
.login__form-container {
  height: 100%;
  width: 40%;
  background-image: linear-gradient(to bottom, rgba(0, 132, 203, 0.73), rgba(0, 132, 203, 0.73)), url("/resources/static/img/almacen-qfplus.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
}
.login__form-container-box {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 70%;
  height: 100%;
}
.login__form-container-box__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login__form-container-box__header img {
  width: 200px;
}
.login__form-container-box__header h1 {
  color: white;
}
.login__form-container-box__body {
  height: auto;
  background-color: rgb(245, 245, 245);
  padding: 40px;
  border-radius: 4px;
}
.login__form-container-box__body > img {
  display: block;
  margin: 20px auto 0px;
}
.login__form-container-box__footer {
  padding: 20px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: white;
}
.login__form-container-box__footer a {
  color: white;
}
.login__gallery-container {
  border-left: 4px solid rgb(0, 73, 112);
  height: 100%;
  width: 60%;
  position: relative;
}
.login__gallery-container--thumbnail {
  position: absolute;
  z-index: 10;
  background-size: cover;
  background-color: white;
  border: 8px solid white;
  right: 10%;
}
.login__gallery-container--thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login__gallery-container--thumbnail--top {
  height: 100px;
  width: 100px;
  top: -108px;
}
.login__gallery-container--thumbnail--bottom {
  display: none;
}
.login-selector--usertype {
  width: 100%;
  background-color: white;
}
.login-selector--usertype > a {
  width: 100%;
  padding: 40px;
}

@media only screen and (max-width: 768px) {
  .login__gallery-container {
    border-top: 8px solid white;
  }
  .login__gallery-container--thumbnail--top {
    height: 64px;
    width: 64px;
    top: -72px;
  }
  .login__gallery-container--thumbnail--bottom {
    height: 64px !important;
    width: 64px !important;
    bottom: 0px;
  }
}
@media only screen and (max-width: 1200px) {
  .login {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .login__form h2 {
    margin-top: 0;
  }
  .login__form-selector--usertype > a {
    padding: 20px;
  }
  .login__form-container {
    height: 100vh;
    width: 100%;
  }
  .login__form-container-box {
    width: 100%;
  }
  .login__form-container-box__header {
    font-size: var(--text-sm);
  }
  .login__form-container-box__header img {
    width: 100px;
  }
  .login__form-container-box__body img {
    margin-top: 0;
  }
  .login__gallery-container {
    border-top: 8px solid white;
    width: 100%;
    height: 100vh;
    border-left: 0;
  }
  .login__gallery-container--thumbnail--bottom {
    color: white;
    background-color: rgb(0, 132, 203);
    text-decoration: none;
    font-weight: bold;
    height: 100px;
    width: 100px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    border-bottom: none;
    align-items: center;
  }
  .login__gallery-container--thumbnail--bottom:hover {
    color: white;
    text-decoration: none;
  }
}
/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
.shopping-cart__summary {
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(205, 205, 205);
  padding: 40px;
}
.shopping-cart__summary--detail {
  display: flex;
  justify-content: space-between;
}
.shopping-cart__summary--detail > span {
  font-size: var(--text-sm);
  margin-bottom: 4px;
}
.shopping-cart__summary--detail-total {
  font-weight: bold;
  font-size: var(--text-md);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgb(51, 51, 51);
}
.shopping-cart__summary--detail-buttons {
  display: flex;
  flex-direction: column;
}
.shopping-cart__summary--detail-buttons-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.shopping-cart__summary--detail-buttons-submit > a {
  margin-top: 8px;
  width: 100%;
}

/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
#nomenclaturas-container {
  display: none;
}
#nomenclaturas-search-options {
  position: relative;
}
#nomenclaturas-search-options a, #nomenclaturas-search-options--mini a {
  color: rgb(51, 51, 51);
  margin-bottom: 8px;
  position: relative;
}
#nomenclaturas-search-options a:hover, #nomenclaturas-search-options--mini a:hover {
  color: rgb(159, 0, 0);
}
#nomenclaturas-search-options a:hover:after, #nomenclaturas-search-options--mini a:hover:after {
  content: " x";
  position: absolute;
  right: -16px;
  top: 0;
}
#nomenclaturas-search-options--mini a:hover:after {
  right: 0px;
}
#nomenclaturas-search-options--mini {
  display: none;
  overflow: hidden;
}
#nomenclaturas__box {
  width: 100%;
}

.nomenclaturas__selection {
  border: 1px solid rgb(205, 205, 205);
}
@media (max-width: 767px) {
  .nomenclaturas__selection {
    display: none;
  }
}
@media (min-width: 768px) {
  .nomenclaturas__selection {
    display: none;
  }
}
@media (min-width: 992px) {
  .nomenclaturas__selection {
    display: block;
  }
}
.nomenclaturas__selection-header {
  padding: 20px 40px;
  color: rgb(153, 153, 153);
}
.nomenclaturas__selection--mini {
  position: fixed;
  bottom: 0px;
  background-color: white;
  color: white;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  .nomenclaturas__selection--mini {
    display: fixed;
  }
}
@media (min-width: 768px) {
  .nomenclaturas__selection--mini {
    display: fixed;
  }
}
@media (min-width: 992px) {
  .nomenclaturas__selection--mini {
    display: none;
  }
}
.nomenclaturas__selection--mini__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(51, 51, 51);
  padding: 20px;
}
.nomenclaturas__selection--mini__header > .button__secondary {
  color: white;
}
.nomenclaturas__selection--mini__header > .button__secondary:hover {
  color: rgb(51, 51, 51);
}
.nomenclaturas__selection--mini__body {
  display: flex;
  padding: 20px;
  flex-direction: column;
  background-color: white;
  color: rgb(51, 51, 51);
}
.nomenclaturas__box--card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
}
.nomenclaturas__box--card-header {
  border-bottom: 1px solid rgb(205, 205, 205);
}
.nomenclaturas__box--card-header:hover {
  background-color: rgba(0, 132, 203, 0.1);
  cursor: pointer;
}
.nomenclaturas__box--card-header > label {
  padding: 16px 16px 16px 16px;
  cursor: copy;
  margin: 0;
  cursor: copy;
}
.nomenclaturas__box--card-header > label > input {
  margin-right: 8px;
  cursor: copy;
}
.nomenclaturas__box--card-header--no-hover:hover {
  background-color: transparent;
}
.nomenclaturas__box--card-header--no-hover > label {
  cursor: auto;
}
.nomenclaturas__box--card-header--no-hover > label > input {
  cursor: auto;
}
.nomenclaturas__box--card-body {
  cursor: pointer;
  padding: 16px;
  height: 100%;
  font-weight: bold;
}
.nomenclaturas__box--card-body:hover {
  background-color: rgb(51, 51, 51);
  color: white;
}
.nomenclaturas__box--card-body--no-hover {
  cursor: auto;
  font-weight: normal;
}
.nomenclaturas__box--card-body--no-hover:hover {
  color: rgb(51, 51, 51);
  background-color: white;
}
.nomenclaturas__container {
  background-color: rgb(245, 245, 245);
}
.nomenclaturas__container--header {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}
.nomenclaturas__container--card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  border: 1px solid rgb(205, 205, 205);
}
.nomenclaturas__container--card-header {
  border-bottom: 1px solid rgb(205, 205, 205);
}
.nomenclaturas__container--card-header:hover {
  background-color: rgba(0, 132, 203, 0.1);
  cursor: copy !important;
}
.nomenclaturas__container--card-header > label {
  padding: 16px 16px 16px 16px;
  margin: 0;
}
.nomenclaturas__container--card-header > label > input {
  margin-right: 8px;
}
.nomenclaturas__container--card-header--no-hover:hover {
  background-color: transparent;
}
.nomenclaturas__container--card-body {
  height: 100%;
}
.nomenclaturas__container--card-body > object, .nomenclaturas__container--card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nomenclaturas__container--card-body > object:hover, .nomenclaturas__container--card-body img:hover {
  cursor: pointer;
  filter: brightness(0.5);
}
.nomenclaturas__container--card-body--no-hover > object:hover, .nomenclaturas__container--card-body--no-hover img:hover {
  cursor: auto;
  filter: none !important;
}

/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
.recommended-products {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
}
.recommended-products > .product-card {
  margin-left: 16px;
  min-width: 300px !important;
}
.recommended-products > .product-card:first-child {
  margin-left: 0;
}

.attribute-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.attribute-box > label {
  font-weight: bold;
  font-size: var(--text-sm);
  margin: 0;
}
.attribute-box__rotation {
  font-weight: bold;
  background-color: rgb(0, 132, 203);
  color: white;
  padding: 4px;
  border-radius: 2px;
  width: min-content;
}

.product-detail__pricing {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.product-detail__pricing--tarif {
  display: flex;
  flex-direction: column;
}
.product-detail__pricing--tarif > label {
  margin-bottom: 0;
}
.product-detail__pricing--tarif > span {
  text-transform: uppercase;
}
.product-detail__pricing--recommended {
  text-align: end;
  display: flex;
  flex-direction: column;
}
.product-detail__outlet {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgb(159, 0, 0);
  background-color: #ffd2c3;
  padding: 20px;
  margin-top: 8px;
}
.product-detail__outlet-actions {
  margin-left: 16px;
}
.product-detail__outlet-actions > a {
  padding: 8px 16px;
  background-color: rgb(51, 51, 51);
  color: white;
}
.product-detail__outlet-actions > a:hover {
  background-color: white;
  color: rgb(51, 51, 51);
}
.product-detail__outlet-link, .product-detail__outlet-link:hover, .product-detail__outlet-link:focus, .product-detail__outlet-link:active {
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.product-detail__outlet-image {
  width: 40px;
  height: 40px;
}
.product-detail__outlet h4 {
  color: rgb(159, 0, 0);
  margin-top: 0;
}
.product-detail__outlet-details {
  width: 100%;
  margin-left: 20px;
}
.product-detail__stock {
  display: flex;
  flex-direction: column;
  background-color: rgb(245, 245, 245);
  margin-bottom: 8px;
}
.product-detail__stock--update {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(205, 205, 205);
  margin-bottom: -1px;
}
.product-detail__stock--update form {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
}
.product-detail__stock--update form > label {
  margin-bottom: 0;
  margin-left: 8px;
}
.product-detail__stock--update > a {
  margin-right: 8px;
}
.product-detail__stock--card {
  border: 1px solid rgb(205, 205, 205);
  padding: 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: -1px;
}
.product-detail__stock--card:last-child {
  margin-bottom: 0px;
}
.product-detail__stock--container {
  width: 100%;
}
.product-detail__promotion {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  background-color: #c2eaff;
  border: 1px solid rgb(0, 132, 203);
  padding: 20px;
  margin-top: 8px;
}
.product-detail__promotion:hover {
  background-color: rgb(0, 132, 203);
  color: white !important;
}
.product-detail__promotion:hover h4 {
  color: white !important;
}
.product-detail__promotion-link, .product-detail__promotion-link:hover, .product-detail__promotion-link:focus, .product-detail__promotion-link:active {
  text-decoration: none;
}
.product-detail__promotion-image {
  width: 40px;
  height: 40px;
}
.product-detail__promotion h4 {
  color: rgb(0, 73, 112);
  margin-top: 0;
}
.product-detail__promotion-details {
  width: 100%;
  margin-left: 20px;
}
.product-detail__header {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
  justify-content: space-between;
}
.product-detail__header > div {
  display: flex;
  align-items: center;
}
.product-detail__header > div > img {
  margin-right: 8px;
  width: 32px !important;
  height: 32px !important;
}
.product-detail__header--left > *:not(:last-child) {
  margin-right: 8px;
}
.product-detail__removed-text {
  color: rgb(159, 0, 0);
  font-weight: bold;
}
.product-detail__main-provider-details {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
  justify-content: space-between;
}
.product-detail__main-title {
  margin-top: 4px;
}
.product-detail__characteristics {
  padding: 20px;
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(205, 205, 205);
}
.product-detail__characteristics > p {
  margin: 0;
}
.product-detail__characteristics > h4 {
  margin-top: 0px;
}
.product-detail__comments {
  background-color: rgb(255, 244, 209);
  border: 1px solid rgb(204, 156, 0);
  padding: 20px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
}
.product-detail__comments--icon {
  margin-right: 16px;
}
.product-detail__comments--icon > img {
  width: 56px;
}
.product-detail__comments--text > h5 {
  margin: 0;
  color: rgb(51, 51, 51);
}
.product-detail__comments--text > p {
  margin: 0;
}
.product-detail__image {
  margin-bottom: 16px;
}
.product-detail__image-show {
  position: relative;
  margin-bottom: 16px;
}
.product-detail__image-show object, .product-detail__image-show img, .product-detail__image-show video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(245, 245, 245);
  object-fit: contain;
}
.product-detail__image-show--download {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 64px;
  opacity: 0.7;
  color: rgb(51, 51, 51);
}
.product-detail__image-show--download:hover {
  opacity: 1;
}
.product-detail__image-list > a {
  display: inline-block;
  border: 1px solid rgb(245, 245, 245);
  width: 100px;
  height: 80px;
  position: relative;
}
.product-detail__image-list > a:hover {
  border: 1px solid rgb(51, 51, 51);
  cursor: pointer;
}
.product-detail__image-list > a:hover > .fa-play {
  color: rgb(0, 132, 203);
}
.product-detail__image-list > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 8px;
}
.product-detail__image-list > a > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 8px;
}
.product-detail__image-list > a > .fa-play {
  color: white;
  position: absolute;
  top: calc(50% - 14px);
  right: calc(50% - 10.5px);
  font-size: var(--text-xl);
}
.product-detail__tab {
  display: none;
}
.product-detail__tab-button {
  text-align: center;
  padding: 16px;
  display: block;
  width: 100%;
  color: rgb(51, 51, 51);
  background-color: rgb(245, 245, 245);
  border-bottom: 1px solid rgb(205, 205, 205);
  border-left: 1px solid rgb(205, 205, 205);
  border-right: 1px solid rgb(205, 205, 205);
  margin-left: -1px;
  margin-right: -1px;
}
.product-detail__tab-button:focus, .product-detail__tab-button:active, .product-detail__tab-button:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .product-detail__tab-button {
    font-size: var(--text-sm);
  }
}
.product-detail__tab-button--active {
  background-color: white;
  color: rgb(51, 51, 51);
  border: none;
  border-right: 1px solid rgb(205, 205, 205);
  border-left: 1px solid rgb(205, 205, 205);
}
.product-detail__tab-button:hover {
  text-decoration: none;
  background-color: rgb(51, 51, 51);
  color: white;
}
.product-detail__tabs--buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .product-detail__tabs--buttons {
    flex-wrap: wrap;
  }
}
.product-detail__tabs--buttons > a {
  color: rgb(51, 51, 51);
  box-sizing: border-box;
  padding: 12px 20px;
  border-bottom: 4px solid rgb(205, 205, 205);
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.product-detail__tabs--buttons > a:active, .product-detail__tabs--buttons > a:focus {
  text-decoration: none;
}
.product-detail__tabs--buttons > a:hover {
  text-decoration: none;
  border-bottom: 4px solid rgb(245, 245, 245);
  font-weight: bold;
  color: rgb(51, 51, 51);
}
.product-detail__contact-card {
  display: flex;
  flex-direction: column;
  background-color: rgb(245, 245, 245);
  border: 1px solid rgb(205, 205, 205);
  margin: 16px;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .product-detail__contact-card {
    padding: 16px 16px;
    margin: 0px;
  }
}
.product-detail__contact-card > p {
  margin-bottom: 8px;
}
.product-detail__contact-card > a {
  margin-bottom: 8px;
}
.product-detail__contact-card--sat {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
}
.product-detail__contact-card--sat a {
  margin-bottom: 0;
}
.product-detail__contact-card--sat h4 {
  margin-left: 16px;
}
.product-detail__contact-card--sat:hover > a, .product-detail__contact-card--sat:hover a:focus, .product-detail__contact-card--sat:hover a:active {
  text-decoration: none;
}
.product-detail__contact-card--sat-icon {
  background-color: rgb(212, 51, 0);
  color: white;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  border: 1px solid rgb(51, 51, 51);
}
.product-detail__contact-card--sat-icon:hover {
  background-color: white;
  color: rgb(51, 51, 51);
}
.product-detail__contact-card--sat-icon--mini {
  background-color: rgb(212, 51, 0);
  color: white;
  padding: 4px;
}

#product-detail__packaging h4 {
  margin-bottom: 24px;
}
#product-detail__packaging ul, #product-detail__packaging li {
  list-style: none;
  padding: 0;
  margin: 0;
}
#product-detail__packaging-measures {
  text-align: center;
  background-color: rgb(255, 244, 209);
  padding: 20px;
  border: 1px solid rgb(204, 156, 0);
}
#product-detail__packaging-measures-detail {
  text-align: start;
}
#product-detail__packaging-measures-detail > table {
  width: 100%;
  margin-top: 16px;
}
#product-detail__packaging-measures-detail > table td, #product-detail__packaging-measures-detail > table tr {
  border: none;
}
#product-detail__packaging-measures-detail > table td {
  padding: 4px;
}
#product-detail__packaging-measures-detail > table td:nth-child(2) {
  text-align: end;
}
#product-detail__packaging-measures-detail > table td:nth-child(1) {
  font-weight: bold;
}

/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
.products-search-options {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: normal !important;
}
.products-search-options > .product-pagination-container {
  margin-right: 16px;
}
@media (min-width: 768px) {
  .products-search-options > .product-pagination-container {
    display: none;
  }
}
@media (min-width: 1200px) {
  .products-search-options > .product-pagination-container {
    display: flex;
  }
}
.products-search-options__mobile {
  display: none;
}
.products-search-options__mobile--close-btn {
  display: none;
}
@media (max-width: 767px) {
  .products-search-options__mobile {
    display: flex;
    position: fixed;
    background-color: white;
    padding: 16px;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: start;
    flex-direction: column;
    border-top: 1px solid rgb(245, 245, 245);
    overflow-x: scroll;
  }
  .products-search-options__mobile > div:first-child {
    margin-bottom: 4px;
  }
  .products-search-options__mobile > div:last-child {
    display: flex;
    align-items: normal;
  }
  .products-search-options__mobile--close-btn {
    display: block;
  }
}
@media (min-width: 768px) {
  .products-search-options__mobile--close-btn {
    display: block;
  }
}
@media (min-width: 992px) {
  .products-search-options__mobile--close-btn {
    display: none;
  }
}
@media (min-width: 1600px) {
  .products-search-options__mobile {
    display: none;
  }
}
.products-search-options form {
  display: flex;
  flex-direction: row;
}
.products-search-options__box {
  width: 480px;
  margin: 0;
  border: 1px solid rgb(51, 51, 51) !important;
  border-left: none !important;
}
.products-search-options__box--homepage {
  border: 1px solid rgb(245, 245, 245) !important;
  width: 100%;
  margin: auto;
}
.products-search-options__search-filter {
  height: 100%;
}
.products-search-options__search-filter--homepage {
  height: 2.5rem;
  width: 220px;
  border: 1px solid rgb(245, 245, 245) !important;
  background-color: white;
}
.products-search-options-floating-filters {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: row;
}
.products-search-options-floating-filters > .button {
  border: 1px solid white;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.products-search-options-floating-filters > .button #enabledFiltersFloatingButton {
  background-color: rgb(205, 205, 205);
  color: rgb(51, 51, 51);
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.products-search-options-floating-filters > .button:hover {
  border: 1px solid rgb(51, 51, 51);
}
.products-search-options-floating-filters > .button:hover #enabledFiltersFloatingButton {
  background-color: rgb(51, 51, 51);
  color: white;
}
@media (max-width: 767px) {
  .products-search-options-floating-filters {
    display: none;
  }
}
@media (min-width: 1600px) {
  .products-search-options-floating-filters {
    display: none;
  }
}
.products-search-options__promotions-box {
  display: flex;
  flex-direction: row;
  border: 1px solid black;
}
.products-search-options__promotions-box input, .products-search-options__promotions-box select {
  border: none;
}
.products-top-filters {
  position: sticky;
  z-index: 8;
  top: calc 136px;
  border-bottom: 1px solid rgb(245, 245, 245);
  background-color: white;
}
@media (max-width: 767px) {
  .products-top-filters > div:first-child, .products-top-filters > div:nth-child(2) {
    display: none;
  }
}
.products-top-filters select {
  width: auto;
}
.products-top-filters__promotions {
  position: sticky;
  z-index: 8;
  top: calc 136px;
  border-bottom: 1px solid rgb(245, 245, 245);
  background-color: white;
}
.products-top-filters__promotions--title {
  margin: 0 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.products-top-filters__promotions--title span {
  margin-right: 16px;
  color: rgb(51, 51, 51);
}
.products-top-filters__promotions--title small {
  border: none;
}
.products-top-filters__promotions-filtros {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .products-top-filters__promotions-filtros {
    display: none;
  }
}
@media (min-width: 768px) {
  .products-top-filters__promotions-filtros {
    display: none;
  }
}
@media (min-width: 992px) {
  .products-top-filters__promotions-filtros {
    display: flex;
  }
}
@media (max-width: 767px) {
  .products-top-filters {
    padding: 0;
  }
}
.products-search-filter-box-promotion {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  background-color: #f0faff;
  padding: 16px;
}
.products-search-filter-box-promotion img {
  margin-right: 8px;
}
@media (min-width: 1200px) {
  .products-search-filter-box-promotion {
    display: none;
  }
}

@media (min-width: 1600px) {
  #facet-container {
    display: flex;
  }
}

.open-facets {
  display: flex;
  position: fixed;
  z-index: 25;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: white;
  flex-direction: column;
  align-items: end;
}

.closed-facets {
  display: none;
}

.filter-tag-remove-boolean-filter i {
  pointer-events: none;
}

.product-pagination-container {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(205, 205, 205);
  width: fit-content;
  justify-self: center;
}
.product-pagination-container div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100%;
}
.product-pagination-container div:first-child > * {
  margin: 0;
}
.product-pagination-container div:first-child > *:not(:last-child) {
  margin-right: 8px;
}
.product-pagination-container input {
  width: auto;
  border: none;
  border-left: 1px solid rgb(205, 205, 205);
  border-right: 1px solid rgb(205, 205, 205);
  margin: 0 8px;
}
.product-pagination-container__body {
  display: flex;
  align-items: center;
}

/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
.home-section {
  margin-bottom: 40px;
}

.background-light-grey {
  background-color: rgb(245, 245, 245);
}

.home-hero-section {
  width: 100%;
  position: relative;
}
.home-hero-section--background {
  background-image: linear-gradient(to bottom, rgba(0, 132, 203, 0.73), rgba(0, 132, 203, 0.73)), url("/resources/static/img/almacen-qfplus.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.home-hero-section h2 {
  color: white;
  margin-bottom: 20px;
}
.home-hero-section__wrapper form {
  display: flex;
}
.home-hero-section__wrapper--categories {
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}

.webinars-section__main {
  padding: 0;
}
.webinars-section__main > .row {
  padding: 0;
  margin-bottom: 20px;
}
.webinars-section__main--video video {
  object-fit: contain;
  width: 100%;
}
.webinars-section__main--title-container {
  height: 100%;
  padding: 40px;
  background-image: radial-gradient(rgb(245, 245, 245) 8%, transparent 8%), radial-gradient(rgb(245, 245, 245) 8%, transparent 8%);
  background-color: white;
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  border: 2px solid rgb(245, 245, 245);
  border-radius: 20px;
}
.webinars-section__main--title-container-flex {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(205, 205, 205);
}
.webinars-section__main--title-container-flex--head {
  padding: 32px;
  color: white;
  background-color: rgb(0, 73, 112);
}
.webinars-section__main--title-container-flex--head > h3 {
  margin: 0;
  margin-bottom: 8px;
  font-size: var(--text-xxl);
}
.webinars-section__main--title-container-flex--head > label {
  margin-bottom: 0;
}
.webinars-section__main--title-container-flex--head > label:first-of-type {
  text-transform: uppercase;
  margin-bottom: 8px;
}
.webinars-section__main--title-container-flex--foot {
  padding: 32px;
}
.webinars-section__main--title-container-flex--foot > p {
  margin: 0;
}
.webinars-section__list {
  height: 200px;
  background-color: rgb(245, 245, 245);
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
}
.webinars-section__list--video {
  height: 100%;
  width: 25%;
  display: inline-block;
  position: relative;
  transition: width 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.webinars-section__list--video img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.webinars-section__list--video--layer {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: normal;
  background-image: linear-gradient(to bottom, rgba(0, 132, 203, 0.73), #0084cb);
  z-index: 2;
}
.webinars-section__list--video--layer p {
  padding: 4px;
  padding-top: 8px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  word-wrap: break-word;
  margin: 0;
}
.webinars-section__list--video:hover .webinars-section__list--video--layer {
  display: flex;
}
.webinars-section__list--video:hover {
  cursor: pointer;
}

.statistics-section {
  margin-top: 40px;
}
.statistics-section__chart {
  padding: 0;
  background-color: rgb(245, 245, 245);
  height: 500px;
  display: flex;
  justify-content: end;
  overflow: hidden;
}
.statistics-section__chart > img {
  height: 100%;
}
.statistics-section__chart > .row {
  flex-direction: column;
}
.statistics-section__chart canvas {
  max-width: 100%;
}
@media (max-width: 767px) {
  .statistics-section__chart {
    display: none;
  }
}
@media (min-width: 768px) {
  .statistics-section__chart {
    height: 300px;
  }
  .statistics-section__chart > img {
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .statistics-section__chart {
    height: auto;
  }
  .statistics-section__chart > img {
    height: 100%;
  }
}
.statistics-section__description {
  padding: 40px;
  color: white;
  background-color: rgb(51, 51, 51);
}
.statistics-section__buttons > .button {
  background-color: rgb(245, 245, 245);
  margin-bottom: 8px;
}
.statistics-section__buttons > .button:hover {
  text-decoration: none;
  color: white;
  background-color: rgb(0, 132, 203);
}

.main-section {
  background-color: rgb(245, 245, 245);
  overflow: hidden;
}
.main-section__container {
  display: flex;
  flex-direction: row;
}
.main-section__container-main {
  background-color: rgba(0, 132, 203, 0.2);
  padding: 40px;
  color: rgb(0, 132, 203);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-evenly;
}
.main-section__container-main > img {
  max-width: 100%;
  margin-bottom: 8px;
  max-height: 360px;
  object-fit: contain;
}
.main-section__container-main > h2 {
  margin: 0;
  margin-bottom: 10px;
}
.main-section__container-main__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.main-section__container-main__primary-button {
  display: flex;
  flex-direction: column;
}
.main-section__container-main__secondary-buttons {
  display: flex;
  flex-direction: column;
}
.main-section__container-main__secondary-buttons > .button {
  margin-bottom: 8px;
}
.main-section__container-categories {
  padding: 40px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.main-section__container-categories .tabs__header {
  overflow-x: scroll;
}
.main-section__container-categories .tabs__body {
  overflow-y: auto;
}
@media (max-width: 767px) {
  .main-section__container-categories {
    padding: 0 0 0 0 !important;
  }
}
.main-section__container-categories--cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: scroll;
  padding: 24px 0;
}
.main-section__container-categories--cards-tab {
  flex-direction: column;
  display: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  padding-bottom: 8px;
  animation: fade-in-effect 0.2s ease-in-out;
}
.main-section__container-categories--cards-tab--section {
  display: flex;
  flex-direction: row;
}
.main-section__container-categories--buttons {
  display: flex;
  margin-bottom: 20px;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.main-section__container-categories--card--more-link .main-section__container-categories--card {
  background-color: rgba(0, 132, 203, 0.2);
}
.main-section__container-categories--card--more-link:hover {
  text-decoration: none;
  color: white;
}
.main-section__container-categories--card--more-link:hover .main-section__container-categories--card {
  background-color: rgb(0, 132, 203);
}

.own-brands-section__brands {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.own-brands-section__brands--brand {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.own-brands-section__brands--brand:hover {
  cursor: pointer;
}
.own-brands-section__brands--brand:hover > .own-brands-section__brands--brand--overlay {
  display: flex;
}
.own-brands-section__brands--brand--overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 2;
  display: none;
  color: white;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.own-brands-section__brands--brand--overlay:hover .own-brands-section__brands--brand--overlay--actions button:first-child {
  left: 0;
}
.own-brands-section__brands--brand--overlay:hover .own-brands-section__brands--brand--overlay--actions button:last-child {
  left: 0;
}
.own-brands-section__brands--brand--overlay--actions {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  padding: 0 8px;
  overflow: hidden;
}
.own-brands-section__brands--brand--overlay--actions button {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.own-brands-section__brands--brand--overlay--actions button:first-child {
  margin-right: 8px;
  left: -100%;
}
.own-brands-section__brands--brand--overlay--actions button:last-child {
  left: 100%;
}
.own-brands-section__brands--brand--overlay--actions button:hover {
  background-color: rgb(0, 132, 203);
  color: white;
}
.own-brands-section img {
  max-height: 100px;
  max-width: 180px;
}

.promotion-section__list {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
}

.modules-section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.modules-section__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-evenly;
}
.modules-section__container img {
  max-width: 100%;
  max-height: 100px;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
.modules-section__container img:hover {
  filter: grayscale(0%);
}

.news-section__main > .news {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  margin: 0;
}
.news-section__main > .news-card {
  margin-right: 20px;
  margin-left: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}
.news-section__main > .news-card__img {
  height: 300px;
  width: 300px;
  object-fit: cover;
}
.news-section__main > .news-card:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-section {
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 768px) {
  .webinars-section__main--title-container-flex--head {
    padding: 16px 24px;
  }
  .webinars-section__main--title-container-flex--head > h3 {
    font-size: 24px;
  }
  .webinars-section__main--title-container-flex--foot {
    padding: 16px 24px;
  }
  .webinars-section__list--video {
    width: 160px;
  }
  .webinars-section__list--video--layer > p {
    padding: 4px;
    font-size: 12px;
  }
  .statistics-section__buttons {
    text-align: center;
  }
}