﻿/* LANDING */
/*POPUP*/
/*BUTTON*/
/*GRAY*/
/* MENU */
/*ALERT*/
/*INFO*/
/*WARNING*/
/*DANGER*/
.text-color--primary {
  color: #BF2C88;
}

.text-color--secondary {
  color: #2E70B5;
}

.text-color--black {
  color: #271c18;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-italic {
  font-style: italic;
}

.text-white {
  color: #fff !important;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  Updated version with modern browser support

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  /*padding: 35px;*/
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
  z-index: 99;
}
@media only screen and (max-width: 992px) {
  .remodal-close {
    color: white;
  }
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: "Ionicons";
  font-size: 30px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\f404";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 400px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*! 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;
}

/**
 * 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;
}

/**
* Tooltip Styles
*/
/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

/* Directions */
/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  /*left: 50%;*/
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  /*margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;*/
  /*border-top-color: hsla(0, 0%, 20%, 0.9);*/
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -40px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  transform: translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

.fast-search {
  width: 100%;
}
.fast-search .loader-search {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 14px;
  right: 4em;
  z-index: 100;
  display: none;
}
.fast-search .target-result {
  background: #fff;
  padding: 1em;
  border: 1px solid #ccc;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 450px;
  z-index: 99999;
}
@media only screen and (max-width: 992px) {
  .fast-search .target-result {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 98%;
    margin: 0 1%;
    top: 2%;
    z-index: 99;
    max-height: initial;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 5px 10px rgba(39, 28, 24, 0.3);
  }
}
.fast-search .target-result a:hover {
  text-decoration: underline;
}
.fast-search .target-result .viewmore {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin-top: 1em;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
  color: #303030;
}
@media only screen and (max-width: 992px) {
  .fast-search .target-result .viewmore {
    padding-bottom: 1em;
    border-bottom: 1px solid #303030;
  }
}
.fast-search .target-result .autocomplete-product {
  width: 60%;
}
@media only screen and (max-width: 992px) {
  .fast-search .target-result .autocomplete-product {
    width: 100%;
  }
}
.fast-search .target-result .autocomplete-product ::-webkit-scrollbar {
  display: none;
}
.fast-search .target-result .autocomplete-product .product {
  overflow: hidden;
}
.fast-search .target-result .autocomplete-product .product a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.fast-search .target-result .autocomplete-product .product .badge-special {
  position: absolute;
  background-color: #fff;
  padding: 0.5em 0;
  font-size: 1em;
  bottom: 0.5em;
  color: #ccc;
  left: 15%;
  padding-left: 2.7em;
}
.fast-search .target-result .autocomplete-product .product .badge-special .deal {
  display: inline-block;
  padding: 0 0.4em 0 0;
  font-weight: bold;
  color: #cc2529;
}
.fast-search .target-result .autocomplete-product .product .product-img {
  float: left;
  width: 15%;
  text-align: center;
  min-height: 55px;
}
.fast-search .target-result .autocomplete-product .product .product-img img {
  width: 55px;
  max-height: 55px;
  margin-left: -10px;
}
.fast-search .target-result .autocomplete-product .product .product-info {
  float: left;
  width: 70%;
  position: relative;
}
.fast-search .target-result .autocomplete-product .product .product-info h3 {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  font-weight: 500;
  display: block;
  width: 100%;
  color: black;
  font-size: 1.1em;
}
.fast-search .target-result .autocomplete-product .product .product-info h3:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}
.fast-search .target-result .autocomplete-product .product .price {
  width: 15%;
  color: #BF2C88;
  font-weight: bold;
  font-size: 1em;
  white-space: nowrap;
}
.fast-search .target-result .autocomplete-product .product .price-wrap {
  position: absolute;
  right: 0;
  bottom: -1em;
}
.fast-search .target-result .autocomplete-product .product .price-wrap .old-price {
  display: inline-block;
  padding: 0 0.5em 0 0;
  text-decoration: line-through;
}
.fast-search .target-result .autocomplete-category {
  border-left: 1px solid #ccc;
  width: 40%;
  cursor: default;
}
@media only screen and (max-width: 992px) {
  .fast-search .target-result .autocomplete-category {
    width: 100%;
    border: none;
  }
}
.fast-search .target-result .autocomplete-category h2 {
  color: #303030;
  padding: 0 1em;
  font-size: 1.1em;
}
.fast-search .target-result .autocomplete-category li {
  border: 0;
  padding: 0.5em 2em;
}
.fast-search .target-result .autocomplete-category .category-item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
}
.fast-search .target-result .autocomplete-category .category-item .category-name {
  font-size: 1.1em;
  color: #303030;
  font-weight: 600;
  width: 70%;
  text-transform: lowercase;
}
.fast-search .target-result .autocomplete-category .category-item .category-name:first-letter {
  text-transform: uppercase;
}
.fast-search .target-result .autocomplete-category .category-item .category-name:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}
.fast-search .target-result .autocomplete-category .category-item .count-product {
  padding: 0;
  font-size: 1.1em;
  color: #303030;
  width: 30%;
}
.fast-search .target-result .autocomplete-category .category-item .count-product:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
  font-weight: 600;
}
.fast-search .target-result ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 500px;
}
.fast-search .target-result ul li {
  display: block;
  width: 100%;
  height: auto;
  cursor: default;
  font-size: 12px;
  overflow: hidden;
  padding: 0.5em;
  /*border-bottom: 1px solid #ccc;*/
  position: relative;
}
.fast-search .target-result ul li .product-info {
  text-transform: lowercase;
}
.fast-search .target-result ul li .product-info:first-letter {
  text-transform: uppercase;
}
.fast-search .target-result ul li:last-child {
  border-bottom: 0;
}
.fast-search .product-item:hover .tooltip-search {
  display: flex !important;
}
.fast-search .tooltip-search {
  position: absolute;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 0 0.5em;
  z-index: 9999;
  display: none;
  border-radius: 5px;
  margin-top: -5em;
}
.fast-search .tooltip-search small {
  font-size: 0.8em;
  white-space: nowrap;
}
.fast-search .table-style {
  padding: 0.5em 0.2em;
  font-weight: 600;
  text-align: right;
}
.fast-search .table-style .label {
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
}

/*TO_DO*/
.ui-autocomplete .autocomplete-product-item a {
  display: block;
  text-decoration: none;
  padding: 10px;
}

.ui-autocomplete .autocomplete-product-item img {
  max-width: 64px;
  max-height: 64px;
  margin: 10px;
}

/* ----------------------------------------------
* Generated by Animista on 2017-4-20 8:47:19
* http://animista.net
* T: @cssanimista
* ---------------------------------------------- */
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
/*FOR SPINNING*/
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*FOR CHECKBOX*/
@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.2em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.2em;
    height: 0.5em;
    border-color: #fff;
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}
/*FOR PRODUCT*/
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  /*overflow: hidden;*/
}

[class^=hvr-] {
  margin: 0.4em;
  padding: 1em;
  cursor: pointer;
  background: #e1e1e1;
  text-decoration: none;
  color: #666;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
}

.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2E70B5;
  height: 1px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  border-radius: 5px;
  font-size: 1.3em;
  padding: 7px;
}
.button.button--full-w {
  width: 100% !important;
}

.alert {
  font-size: 1.1em;
  padding: 10px;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
}
.alert.alert--info {
  background-color: #fff;
  color: #31708f !important;
  text-transform: uppercase;
}
.alert.alert--confirm {
  background-color: #51B751;
  color: #fff !important;
  font-weight: 600;
}
.alert.alert--warning {
  background-color: #fff;
  color: #8a6d3b !important;
}
.alert.alert--danger {
  background-color: #f2dede;
  color: #a94442 !important;
}
.alert.alert--default {
  background-color: #f8f8f8;
  color: #808080 !important;
}
.alert.alert__background-pattern, .alert .alert__background-pattern {
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 250px;
  height: 150px;
  margin: 5px 20px;
}
.alert.left-side-flex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.alert.left-side-flex i {
  font-size: 2em;
  margin: 0 10px;
}
.alert .ion-close {
  position: absolute;
  top: 10px;
  right: 5px;
  font-weight: bold;
  cursor: pointer;
}
.alert .font-size-1 {
  font-size: 1em !important;
}
.alert.no-product {
  margin-top: 10px;
  text-align: center;
  background-color: transparent;
  margin: 0 auto;
}
.alert.no-product div > i {
  font-size: 3em;
  line-height: 1em;
}
.alert.no-product div {
  padding: 10px;
}
.alert.no-product .button {
  margin: 1rem;
  display: block;
}
.alert.no-product .button a {
  text-decoration: none;
}

.button {
  border-radius: 5px;
  color: #271c18;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.button.no-text-decoration {
  text-decoration: none;
}
.button.full-width {
  width: 100% !important;
}
.button:hover {
  background-color: #BF2C88;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button--load-more {
  background-color: #2E70B5;
  text-decoration: none;
  color: #fff !important;
}
.button.button-confirm {
  width: auto;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  color: #fff;
  background-color: #BF2C88;
  font-size: 1.3rem !important;
  font-weight: bold;
  padding: 25px 0px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.34);
  display: inline-block;
  position: relative;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 768px) {
  .button.button-confirm {
    border-radius: 0;
  }
}
.button.button-confirm:hover {
  background-color: rgba(191, 44, 136, 0.95);
}
.button.button--primary {
  background-color: #51B751;
  border-color: #51B751;
  color: #fff;
  border-width: 2px;
  border-style: solid;
  padding: 0.8em 7px;
}
.button.button--primary:hover {
  background-color: #fff;
  border-color: #51B751;
  color: #51B751;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button.button--danger {
  border-color: #ebcccc;
  color: #a94442;
  text-decoration: none;
}
.button.button--danger:hover {
  background-color: #a94442;
  border-color: #a94442;
  color: #fff;
}
.button.button--secondary {
  background: transparent;
  border: 0px;
}
.button.button--secondary:hover {
  background: transparent;
  color: #000;
  border: 0px;
}
.button.button--disabled {
  background-color: #999;
  color: #fff;
  border-color: #999;
  padding: 5px 20px;
  opacity: 0.6;
  text-decoration: none;
  border-radius: 0;
}
.button.button--disabled:hover {
  cursor: not-allowed;
}

/*$marginTopContent: 115px;*/
a, a:link, a:active, h1 {
  color: #BF2C88;
  outline: none;
}

h2 {
  color: #BF2C88;
}

header, section, footer {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 1366px) {
  a:hover {
    outline: none;
  }
}
.block-body {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.ticketing-support-button {
  z-index: 10 !important;
  width: 150px !important;
}

#mega-slider {
  -webkit-animation: 0.5s ease fade-in;
  animation: 0.5s ease fade-in;
}
#mega-slider .owl-prev {
  background-color: rgba(68, 68, 68, 0.07);
  display: -webkit-flex;
  display: flex;
}
#mega-slider .owl-next {
  background-color: rgba(68, 68, 68, 0.07);
  display: -webkit-flex;
  display: flex;
}
#mega-slider i {
  color: #fff;
  font-size: 1.5em;
  font-weight: 100;
}
#mega-slider i:hover {
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #mega-slider .owl-nav {
    display: none;
  }
}
#mega-slider .owl-theme .owl-nav [class*=owl-] {
  color: #002D72;
}
#mega-slider .owl-theme .owl-nav [class*=owl-]:hover {
  color: #002D72;
  background-color: rgba(255, 255, 255, 0.78);
}
#mega-slider .owl-next:hover {
  color: #002D72;
}
#mega-slider .owl-dots {
  display: none;
}
#mega-slider .owl-item {
  width: 100%;
}
#mega-slider .imgMobile {
  display: none !important;
}
@media screen and (max-width: 768px) {
  #mega-slider .imgMobile {
    display: inline !important;
  }
  #mega-slider .imgDesktop {
    display: none !important;
  }
}

.timeslotsection, .selecttimeslots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 1em auto;
}
@media only screen and (max-width: 992px) {
  .timeslotsection, .selecttimeslots {
    display: block;
  }
}
.timeslotsection .day-block, .selecttimeslots .day-block {
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .timeslotsection .day-block, .selecttimeslots .day-block {
    display: block;
  }
}
.timeslotsection .day-block .day-title, .selecttimeslots .day-block .day-title {
  color: #BF2C88;
  font-weight: 600;
  font-size: 1.5em;
}
.timeslotsection .title, .selecttimeslots .title {
  color: #BF2C88;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2em;
}

#main-content {
  /*margin-top: 86px;*/
  padding-top: 0px;
  margin-top: 8rem;
  min-height: 60vh;
}
@media only screen and (max-width: 992px) {
  #main-content {
    margin-top: 0rem;
  }
}

.boring-toggle {
  font-size: 0.8em;
  text-align: right;
  margin: -1em 0 0;
  color: black;
}
.boring-toggle .with-cookie {
  display: none;
}
.boring-toggle.cookie-on .with-cookie {
  display: block;
}

/*HOME CONSIGLIATI */
.title-consigliati {
  color: #F38208;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 30px !important;
}

.white-bg {
  padding-bottom: 2em;
}

/* HOME BOX CONSIGLIATI*/
.box-consigliati .consigliati {
  background-color: #fff;
  height: 400px;
  width: 70%;
  border-radius: 5px;
  margin: 10px 15px;
  padding-bottom: 10px;
  flex-direction: column;
  box-shadow: 0 4px 2px -2px rgba(128, 128, 128, 0.65);
}
.box-consigliati .consigliati .txt-consigliati {
  padding: 15px;
  width: 100%;
}
.box-consigliati .consigliati .txt-consigliati p {
  color: #0C3283;
}
.box-consigliati .consigliati .txt-consigliati h3 {
  color: #1E2C40;
}
.box-consigliati .consigliati .pp-price {
  width: 100%;
  padding: 0 30px;
}
.box-consigliati .consigliati .pp-price a {
  background-color: #BF2C88;
  color: #fff;
  padding: 15px;
}

/*HOME EXPAND SECTION*/
.for-all-tastes-section {
  padding: 0;
}
.for-all-tastes-section label {
  color: #2E70B5;
}
.for-all-tastes-section .for-all-tastes1 {
  background-image: url(/content/images/home/home1.jpg);
  background-size: contain;
  background-position-y: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  width: 100%;
  height: 110px;
}
.for-all-tastes-section .for-all-tastes2 {
  background-image: url(/content/images/home/home2.jpg);
  background-size: contain;
  background-position-y: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  width: 100%;
  height: 110px;
}
.for-all-tastes-section .for-all-tastes3 {
  background-image: url(/content/images/home/home3.jpg);
  background-size: contain;
  background-position-y: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  width: 100%;
  height: 110px;
}
.for-all-tastes-section section {
  padding: 0px;
}
.for-all-tastes-section #toggle {
  display: inline-flex;
  width: 100%;
}
.for-all-tastes-section #toggle h1 {
  padding: 20px 0;
  flex-basis: 90%;
}
.for-all-tastes-section #toggle p {
  flex-basis: 10%;
  justify-content: flex-end;
  cursor: pointer;
  color: #2E70B5;
}
.for-all-tastes-section #toggle img {
  padding-left: 10px;
  height: 10px;
}

/*HOME PRODUCT CATEGORIES ROW*/
#MultiPartContainer {
  padding: 0 0.5rem;
}
@media only screen and (max-width: 992px) {
  #MultiPartContainer {
    padding: 0;
  }
}
#MultiPartContainer .product-cat-row {
  /*HOME-CATEGORY COLOR BACKGROUND */
  /*&:nth-of-type(1) .product-cat-row__background-pattern {
      background: #4AC29A;
      background: -webkit-linear-gradient(to top, #BDFFF3, #4AC29A); 
      background: linear-gradient(to top, #BDFFF3, #4AC29A); 
  }

  &:nth-of-type(2) .product-cat-row__background-pattern {
      background: #D66D75; 
      background: -webkit-linear-gradient(to top, #E29587, #D66D75);
      background: linear-gradient(to top, #E29587, #D66D75);
  }

  &:nth-of-type(3) .product-cat-row__background-pattern {
      background: #B2FEFA; 
      background: -webkit-linear-gradient(to top, #0ED2F7, #B2FEFA); 
      background: linear-gradient(to top, #0ED2F7, #B2FEFA); 
  }

  &:nth-of-type(4) .product-cat-row__background-pattern {
      background: #20002c;
      background: -webkit-linear-gradient(to top, #cbb4d4, #20002c);
      background: linear-gradient(to top, #cbb4d4, #20002c);
  }

  &:nth-of-type(5) .product-cat-row__background-pattern {
      background: #6190E8; 
      background: -webkit-linear-gradient(to top, #A7BFE8, #6190E8); 
      background: linear-gradient(to top, #A7BFE8, #6190E8); 
  }

  &:nth-of-type(6) .product-cat-row__background-pattern {
      background: #093028; 
      background: -webkit-linear-gradient(to top, #237A57, #093028);
      background: linear-gradient(to top, #237A57, #093028); 
  }

  &:nth-of-type(7) .product-cat-row__background-pattern {
      background: #DCE35B; 
      background: -webkit-linear-gradient(to top, #45B649, #DCE35B);
      background: linear-gradient(to top, #45B649, #DCE35B); 
  }

  &:nth-of-type(8) .product-cat-row__background-pattern {
      background: #DBE6F6;
      background: -webkit-linear-gradient(to top, #C5796D, #DBE6F6); 
      background: linear-gradient(to top, #C5796D, #DBE6F6);
  }

  &:nth-of-type(9) .product-cat-row__background-pattern {
      background: #ff7e5f;
      background: -webkit-linear-gradient(to top, #feb47b, #ff7e5f);
      background: linear-gradient(to top, #feb47b, #ff7e5f);
  }

  &:nth-of-type(10) .product-cat-row__background-pattern {
      background: #bdc3c7;
      background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7); 
      background: linear-gradient(to top, #2c3e50, #bdc3c7);
  }*/
}
#MultiPartContainer .product-cat-row.row {
  margin: 0;
  /*background-color: #fff;*/
  border-radius: 10px;
  margin-bottom: 20px;
  /* > .col-3, .col-9 {
                  border-bottom: 2px solid $topGray;
              }

              > .col-3 {
                  padding-left: 0;

                  @include bp(tablet) {
                      display: none;
                  }
              }
  */
}
@media only screen and (max-width: 992px) {
  #MultiPartContainer .product-cat-row.row {
    margin-bottom: 0;
  }
}
#MultiPartContainer .product-cat-row.row > .col-12 {
  /*border-bottom: 2px solid $topGray;*/
  padding-right: 0;
}
@media only screen and (max-width: 992px) {
  #MultiPartContainer .product-cat-row.row > .col-12 {
    display: block;
    /*border-bottom: 0;*/
    /*background-color: rgba(#dddddd, .4);*/
    /*@include border-radius(5px);
    border: 1px solid #dddddd;
    @include box-shadow(2px 2px 7px rgba($black, .2));*/
    padding: 0 5px;
  }
}
#MultiPartContainer .product-cat-row.row > .col-12 .cat-title {
  display: -webkit-flex;
  display: flex;
  margin: 0.5em;
  font-weight: 600;
  color: #BF2C88;
  border-bottom: 3px solid #9ea5ad;
  padding: 0.5em 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
#MultiPartContainer .product-cat-row.row > .col-12 .cat-title img {
  width: auto;
  height: 36px;
  margin: 0 1rem;
}
@media only screen and (max-width: 768px) {
  #MultiPartContainer .product-cat-row.row > .col-12 .cat-title {
    font-size: 1.3rem;
    background-color: transparent;
    color: #271c18;
    padding-left: 0;
    font-weight: 600;
  }
  #MultiPartContainer .product-cat-row.row > .col-12 .cat-title img {
    height: 24px;
    width: auto;
  }
}
@media only screen and (min-width: 1367px) {
  #MultiPartContainer .product-cat-row.row > .col-12 .cat-link {
    display: none;
  }
}
@media only screen and (max-width: 1366px) {
  #MultiPartContainer .product-cat-row.row > .col-12 .cat-link {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  #MultiPartContainer .product-cat-row.row > .col-12 .cat-link {
    display: block;
    text-align: right;
  }
  #MultiPartContainer .product-cat-row.row > .col-12 .cat-link a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
  }
}
#MultiPartContainer .product-cat-row__background-pattern {
  min-height: 450px;
  width: 100%;
  border: solid 1px #d8d8d8;
  border-left: none;
  border-bottom: none;
  border-top: none;
  /*@include background-size(cover);
  background-repeat: no-repeat;
  background-position: center;*/
}
#MultiPartContainer .product-cat-row__background-pattern h2 {
  text-align: left;
  margin: 0;
  padding: 2rem 1em;
  /*background-color: $mainColorDark;*/
  color: #BF2C88;
  font-size: 1.3rem;
  text-transform: uppercase;
  border-bottom: solid 1px lightgray;
  line-height: 1;
  margin-right: 10px;
  /*&:after {
      display: block;
      content: '';
      float: right;
      background-image: url(/content/images/svg/right-arrow.svg);
      background-repeat: no-repeat;
      background-size: 25px 25px;
      height: 25px;
      width: 25px;
      padding-right: 5px;
      margin-top: 0px;
  }*/
}
#MultiPartContainer .product-cat-row__background-pattern img {
  width: 20%;
  margin: 0 auto;
}
#MultiPartContainer .product-cat-row__background-pattern div {
  text-align: left;
  padding: 0.5rem 0;
  /*background-color: rgba($white, .5);*/
}
#MultiPartContainer .product-cat-row__background-pattern div a {
  color: #271c18;
  text-decoration: none;
  font-weight: 600;
  background-color: #fff;
  border-radius: 20px;
  padding: 0.5rem 1rem;
}
#MultiPartContainer .product-cat-row .product-list {
  margin: 0;
  padding: 0;
}
#MultiPartContainer .product-cat-row .product-list .li {
  width: 100%;
}
#MultiPartContainer .product-cat-row .product-list .li .product {
  width: 95%;
  padding: 1em;
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  #MultiPartContainer .product-cat-row .product-list .li {
    margin-bottom: 0;
  }
}
#MultiPartContainer .product-cat-row .product-list .owl-prev {
  margin-left: 0;
  color: #979797;
  top: 30%;
  font-size: 2em;
  padding: 7px 0px;
  background-color: #fff;
  box-shadow: 2px 0 15px 1px rgba(128, 128, 128, 0.65);
}
#MultiPartContainer .product-cat-row .product-list .owl-prev:hover {
  background-color: #2E70B5;
  color: #fff;
}
#MultiPartContainer .product-cat-row .product-list .owl-next {
  font-size: 2em;
  padding: 7px 0px;
  top: 30%;
  margin-right: 0;
  color: #979797;
  background-color: #fff;
  box-shadow: -2px 0 15px 1px rgba(128, 128, 128, 0.65);
}
#MultiPartContainer .product-cat-row .product-list .owl-next:hover {
  background-color: #2E70B5;
  color: #fff;
}

/*BANNER*/
.banner-wrap {
  width: 100%;
  padding: 2rem;
}
.banner-wrap .banner {
  width: 100%;
  height: 150px;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .banner-wrap {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .banner-wrap .banner {
    height: 100px;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inline-list > li {
  display: inline-block;
}

.notice {
  border: 1px solid #51B751;
  border-left: 5px solid #51B751;
  box-shadow: inset 0px 0px 0px 5px rgba(81, 183, 81, 0.1), 0px 3px 5px 0px rgba(48, 48, 48, 0.1);
  border-radius: 5px;
  padding: 1.5em;
  font-size: 0.875em;
  color: rgb(47.4146341463, 114.5853658537, 47.4146341463);
  margin-bottom: 1em;
  font-weight: 700;
}

p.center {
  text-align: center;
}

input::-webkit-input-placeholder {
  font-style: italic;
  color: #878787;
  font-family: Arial, Verdana, Sans-serif;
}
input::placeholder {
  font-style: italic;
  color: #878787;
  font-family: Arial, Verdana, Sans-serif;
}

.tornasu {
  position: fixed;
  bottom: 80px;
  right: 1em;
  background: rgba(191, 44, 136, 0.9);
  color: #fff;
  font-weight: bold;
  font-size: 0.875em;
  padding: 0.2em 1em 0.2em;
  line-height: 2em;
  border-radius: 3px;
  cursor: pointer;
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .tornasu {
    right: 0;
  }
  .tornasu span {
    /*display: none;*/
  }
}
.bottom-control {
  position: fixed;
  bottom: 0;
  z-index: 100;
  height: 50px;
  width: 100%;
  background-color: #f0f8ff;
  display: none;
  color: #BF2C88;
  box-shadow: 0 -1px 10px rgba(39, 28, 24, 0.3);
}
@media only screen and (max-width: 768px) {
  .bottom-control {
    display: -webkit-flex;
    display: flex;
  }
  .bottom-control .row {
    width: 100%;
  }
  .bottom-control .col-6 {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50% !important;
  }
  .bottom-control .col-6.border-right {
    border-right: 1px solid #dddddd;
  }
}
@media only screen and (max-width: 480px) {
  .bottom-control {
    height: 60px;
  }
}
.bottom-control #serviceBottom span {
  display: none;
}
.bottom-control #serviceBottom .visible-on-mobile {
  display: inline;
}
.bottom-control #serviceBottom .change--service {
  display: -webkit-flex;
  display: flex;
}
.bottom-control #serviceBottom .change--service img {
  display: none;
}
.bottom-control #serviceBottom .place--service {
  display: block !important;
}
.bottom-control #serviceBottom .place--service img {
  display: none;
}
.bottom-control #serviceBottom .place--service .nowrap-address {
  display: inline;
  font-size: 0.8rem;
}
.bottom-control #serviceBottom .place--service small {
  cursor: pointer;
  font-weight: bold;
  color: #BF2C88;
  font-size: 0.7rem;
}
.bottom-control #serviceBottom .change-btn {
  margin-left: 0.5rem;
  color: #BF2C88;
  cursor: pointer;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .bottom-control #cartBottom {
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-top: 0.4rem;
  }
}

label input {
  float: left !important;
  width: auto !important;
  margin: 0 0.5em 0 0;
  position: relative;
  top: 0.3em;
}

.inline-button, .inline-text {
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  font-family: "Lato", sans-serif;
}
.inline-button i, .inline-text i {
  display: inline-block;
  float: left;
  margin-right: 1em;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.special-btn {
  border-radius: 10px;
  background-color: #2E70B5;
  width: 100%;
  display: block;
  padding: 0.5em 1em;
  padding-left: 45px;
  padding-right: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.775em;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  line-height: 1;
}
.special-btn .right {
  float: right;
  position: relative;
  top: 2px;
  top: 50%;
  margin-top: -8px;
  right: 10px;
  position: absolute;
}
.special-btn .icon {
  background-repeat: no-repeat;
  -webkit-background-size: auto 40px;
  background-size: auto 40px;
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  margin-bottom: -5px;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: 15px;
}
@media screen and (min-width: 1024px) {
  .special-btn:hover {
    background-color: #BF2C88;
    color: #fff;
  }
  .special-btn:hover .icon {
    background-position: bottom center;
  }
}

.menu-overlay {
  background-color: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
}
.ie8 .menu-overlay {
  background-color: transparent;
  background-image: url("/content/images/pixel.png");
  background-repeat: repeat;
}
.menu-overlay.up {
  z-index: 21;
}

#popup-help {
  border: 3px solid #ccc;
  line-height: 1;
  padding: 1em;
}

.close-icon {
  display: inline-block;
  float: right;
  background-image: url("/content/images/menuclose2x.png");
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 33px;
  height: 32px;
  cursor: pointer;
  text-indent: -9999px;
  position: absolute;
  right: 1em;
  top: 1em;
  z-index: 100;
}
.ie8 .close-icon {
  background-image: url("/content/images/menuclose.png");
}
@media screen and (max-width: 768px) {
  .close-icon {
    width: 23px;
    height: 22px;
  }
}

label.error {
  color: #cc2529;
  font-size: 0.675em;
  padding: 0.5em 0;
  white-space: nowrap;
}

input.error, select.error {
  border: 1px solid #cc2529;
  color: #cc2529;
}
input.error::-webkit-input-placeholder, select.error::-webkit-input-placeholder {
  color: #cc2529;
}
input.error::placeholder, select.error::placeholder {
  color: #cc2529;
}

.form-group label {
  display: block;
  padding: 0.5em 0 0.3em;
  font-size: 0.875em;
  margin-top: 1em;
}
.form-group label.error {
  font-size: 0.775em;
  color: #cc2529;
  font-weight: bold;
  padding-top: 0;
  margin-top: 0.3em;
}
.form-group input, .form-group .selectric {
  margin-top: 0 !important;
  margin: 0;
}

.spinner-load {
  position: relative;
}

.spinner-load {
  z-index: 999999;
}
.spinner-load:before {
  content: "";
  font-family: "Ionicons";
  color: #BF2C88;
  -webkit-animation: spin 300ms infinite linear;
  animation: spin 300ms infinite linear;
  display: none;
  width: 43px;
  height: 21px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -21px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/content/images/ajax-loader.gif");
  z-index: 10;
}
.spinner-load:after {
  content: "";
  display: none;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
}
.spinner-load.loading:after, .spinner-load.loading:before {
  display: block;
}

.btn {
  display: block;
  width: 100%;
  background-color: #BF2C88;
  color: #fff;
  font-size: 1.5em;
  text-align: center;
  border-radius: 4px;
  font-family: "Lato", sans-serif;
  /*text-transform: uppercase;*/
  border: none;
  padding: 1em 1.2em;
  margin-top: 0.5em;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  /*font-weight: 600;*/
  letter-spacing: -0.03em;
  cursor: pointer;
}
.btn.tiny {
  width: auto;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.03em;
  padding: 0.5em 0.775em;
  border-radius: 3px;
}
.btn:active, .btn:focus {
  outline: none;
  box-shadow: none;
}
.btn.arrow {
  display: inline-block;
  width: auto;
  text-transform: inherit;
}
.btn.disabled {
  background-color: #eee;
  cursor: not-allowed;
  color: #fff !important;
}
.btn.inline {
  font-size: 1em;
  padding: 5px 0.5em;
  margin: 0;
}
.btn.back {
  display: inline-block;
  font-size: 0.875em;
  clear: both;
  width: auto;
  margin: 1em 0;
}
.btn.back .fa {
  position: relative;
  top: -1px;
  margin-right: 1em;
  margin-left: 0;
}
.btn:hover {
  color: #fff !important;
}

a.btn {
  color: #fff !important;
}

.product-popup-detail .fun {
  color: #BF2C88;
}
.product-popup-detail .popup-controls {
  margin: 1em 0;
  clear: both;
  border-top: 1px solid #9b8f8f;
  overflow: hidden;
  padding: 1.5em 0 0;
}
.product-popup-detail .popup-controls .btn {
  display: inline-block;
  width: auto;
  margin: 0 !important;
  padding: 1em 1.5em;
  font-size: 0.875em !important;
  background: #fff;
  border: 1px solid #BF2C88 !important;
  color: #BF2C88 !important;
}
.product-popup-detail .popup-controls .btn.right {
  float: right;
}

@media screen and (max-width: 768px) {
  select {
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0.5em;
  }
  select:disabled {
    background: #f8f8f8;
    border: 1px solid #ccc;
    color: #d1d1d1;
  }
  .btn {
    font-size: 1.225em;
  }
  h1, h2, h3, h4, h5 {
    line-height: 1.2;
  }
}
.mainblu {
  color: #BF2C88;
}

.page-title {
  font-family: "Lato", sans-serif;
  position: relative;
  padding: 1em 5px;
  margin: 0;
  color: #BF2C88;
  line-height: 1;
}
.page-title.h1 {
  font-size: 2em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .page-title {
    font-size: 1.5em;
  }
  .page-title.h1 {
    font-size: 1.5em;
  }
  .page-title:before {
    height: 15px;
    width: 15px;
    top: 0.15em;
    left: 0;
  }
}

.nice, .form--basso input:not([type=checkbox]):not([type=radio]), .view-data {
  display: block;
  width: 100%;
  padding: 0.475rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #464a4c;
  background-color: #fff;
  background-image: none;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.nice::-webkit-input-placeholder, .form--basso input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder, .view-data::-webkit-input-placeholder {
  font-size: 0.9em;
  font-style: normal;
  font-family: "Lato", sans-serif;
}
.nice::placeholder, .form--basso input:not([type=checkbox]):not([type=radio])::placeholder, .view-data::placeholder {
  font-size: 0.9em;
  font-style: normal;
  font-family: "Lato", sans-serif;
}

.view-data {
  display: block;
  margin: 0;
  border: none;
  padding-left: 0;
  font-weight: bold;
}

.mobile-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

.modal-info {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 30;
  padding: 0;
  box-shadow: 0px 5px 21px -5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-size: 1em;
  display: none;
  padding-bottom: 1em;
  padding-top: 1em;
}
.modal-info #hellotime {
  font-size: 1.3em;
}
.modal-info .column {
  padding-bottom: 2em;
}
.modal-info .men-picture {
  padding-bottom: 0;
  text-align: center;
}
.modal-info .men-picture img {
  max-height: 320px;
}
.modal-info h2 {
  color: #BF2C88;
  font-family: "Lato", sans-serif;
  padding: 0;
  margin: 1em 0 0;
  font-size: 1em;
}
.modal-info ul {
  margin: 0 0 0 1.4em;
  padding: 0;
  width: 100%;
  font-size: 1em;
}
.modal-info ul li {
  display: block;
  width: 50%;
  float: left;
  padding-bottom: 0.5em;
}
.modal-info ul li a {
  text-decoration: none;
}
.modal-info p {
  line-height: 1.2;
  margin: 0 0 0;
  padding: 0 0 1em;
}
.modal-info p strong {
  font-family: "Lato", sans-serif;
  color: #271c18;
}
.modal-info p b {
  color: #BF2C88;
  font-family: "Lato", sans-serif;
  display: block;
}
.modal-info p .help-link {
  text-decoration: none;
  color: #271c18;
}
.modal-info p .help-link i {
  color: #878787;
}
.modal-info .column {
  width: 50%;
  float: left;
  min-height: 1px;
}
@media screen and (max-width: 768px) {
  .modal-info {
    top: 55px;
  }
  .modal-info ul li {
    width: 100%;
  }
  .modal-info .column {
    width: 100%;
  }
  .modal-info .column.men-picture {
    max-height: 150px;
    overflow: hidden;
  }
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.main-search-bar {
  width: 20% !important;
  margin: 5px auto 0;
  position: relative;
  float: left;
}
.main-search-bar input {
  margin: 0;
  vertical-align: middle;
  background: #fff;
  text-align: left;
  width: 90%;
  height: 38px;
  padding: 0 10px;
  border: none;
  line-height: 38px;
  font-size: 0.775em;
  border: 1px solid #fff;
  font-family: "Lato", sans-serif;
  /*@include box-shadow(inset 0px 0px 10px -3px lighten($mainColor, 8%));*/
}
.main-search-bar input:focus {
  outline: none;
}
.main-search-bar input::-webkit-input-placeholder {
  font-family: "Lato", sans-serif;
}
.main-search-bar input::placeholder {
  font-family: "Lato", sans-serif;
}
.main-search-bar button {
  margin: 0;
  background: transparent;
  border: none;
  position: absolute;
  right: 0;
  height: 38px;
  width: 40px;
  text-align: center;
  top: 0;
  line-height: 30px;
  color: #BF2C88;
}
.main-search-bar button:focus {
  outline: none;
  box-shadow: none;
}
.main-search-bar button .fa {
  font-size: 1.2em;
  top: 1px;
  position: relative;
  left: -2px;
}
@media only screen and (max-width: 992px) {
  .main-search-bar {
    width: auto !important;
    margin-left: 50px;
    margin-right: 15px;
    margin-top: 0;
    float: none;
    box-sizing: border-box;
  }
  .main-search-bar input {
    font-size: 0.875em;
    width: 100% !important;
    padding: 0 0 0 10px;
  }
}

.boxed {
  background-color: white;
  border: 1px solid #9b8f8f;
  border-radius: 3px;
  padding: 2em 2.5em;
}
@media only screen and (max-width: 992px) {
  .boxed {
    margin: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .boxed {
    padding: 0;
    border: none;
    margin-top: 1em;
  }
}
.boxed .info-text {
  color: #BF2C88;
}

#adv-bar {
  height: 90px;
  margin: 10px 0;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #9b8f8f;
  display: none;
}

.icon-service {
  margin-right: 1em;
  width: 71px;
  height: 40px;
  -webkit-background-size: auto 200%;
  background-size: auto 200%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.icon-service.icon-service-consegna {
  background-image: url("/content/images/change-consegna.png");
}
.icon-service.icon-service-ritiro {
  background-image: url("/content/images/change-ritiro.png");
  width: 36px;
}
.icon-service.user-icon {
  background-image: url("/content/images/user-icon.png");
  width: 26px;
  height: 27px;
  background-position: top center;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .icon-service {
    width: 50px;
    height: 28px;
    margin: 0.5em auto;
    float: none;
    display: block;
    float: none !important;
  }
}

.nice-table {
  width: 100%;
  color: black;
}
.nice-table th, .nice-table td {
  padding: 0.5em;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dddddd;
}
.nice-table th {
  padding: 0 0.5em 1em;
  color: #271c18;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .nice-table {
    display: block;
    /*
        Label the data
        */
  }
  .nice-table thead, .nice-table tbody, .nice-table th, .nice-table td, .nice-table tr {
    display: block;
  }
  .nice-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .nice-table tr {
    border: 1px solid #ccc;
    margin-bottom: 1em;
  }
  .nice-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 6px;
    padding-top: 1.5em;
  }
  .nice-table td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-size: 0.7em;
  }
  .nice-table td:nth-of-type(1):before {
    content: "Numero ordine";
  }
  .nice-table td:nth-of-type(2):before {
    content: "Tipo di servizio";
  }
  .nice-table td:nth-of-type(3):before {
    content: "Supermercato";
  }
  .nice-table td:nth-of-type(4):before {
    content: "Data";
  }
  .nice-table td:nth-of-type(5):before {
    content: "Orario";
  }
  .nice-table td:nth-of-type(6):before {
    content: "Stato dell'ordine";
  }
}

.order-details {
  padding-bottom: 25px;
  margin: 0 1rem !important;
}
.order-details p {
  padding: 0;
  margin: 0;
  color: #271c18;
}
.order-details h3 {
  margin: 1em 0 0;
  color: #808080;
}
.order-details span {
  color: #BF2C88;
}
.order-details ol.prods {
  color: #271c18;
  list-style: none;
  margin: 1em 0 0;
  padding: 0;
  border: 1px solid #2E70B5;
  font-size: 0.875em;
  padding: 0 0.5em;
  width: 100%;
}
.order-details ol.prods li {
  display: block;
  border-bottom: 1px solid #2E70B5;
  font-size: 1.5em;
  padding: 0.5em;
}
.order-details ol.prods li:last-child {
  border-bottom: none;
}

.wysiwyg {
  color: #271c18;
  padding: 1em 0 0;
  min-height: 50%;
  padding-bottom: 50px;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg p {
  margin: 1em 0;
  padding: 0 20px;
}
.wysiwyg dd {
  margin: 0 10px;
}
.wysiwyg table {
  display: block;
  width: 100%;
  overflow-x: scroll;
  border: none;
}
.wysiwyg h2 {
  color: #BF2C88;
}
.wysiwyg h3 {
  margin-top: 0.5em;
}
.wysiwyg .contact {
  padding: 1em;
}
.wysiwyg .contact h3 {
  padding: 1em;
  margin: 0;
}
.wysiwyg .contact h3:hover {
  font-weight: bold;
}
.wysiwyg .contact i {
  font-size: 2.5em;
  color: #BF2C88;
  padding: 0.1em;
  border-radius: 5px;
  width: 25px;
  text-align: center;
}
.wysiwyg OL {
  counter-reset: item;
  margin-bottom: 2em;
  line-height: 1.5;
}
.wysiwyg OL strong {
  text-transform: uppercase;
}
.wysiwyg OL LI {
  display: block;
}
.wysiwyg OL LI:before {
  content: counters(item, ".") ".";
  counter-increment: item;
  padding-right: 10px;
  margin-left: -2em;
  display: none;
}

.error-message {
  color: #cc2529;
  font-size: 0.775em;
  padding: 0.5em 0;
  white-space: nowrap;
  white-space: normal;
}

#resultmessage {
  display: none;
  font-family: "Lato", sans-serif;
  color: #51B751;
}

/*
.time-pre {
    display: block;
    text-align: center;
    padding: 1em 0;

    span {
        display: block;

        &.time {
            font-size: 2em;
            font-weight: bold;
            line-height: 1;
        }
    }
}
*/
.select-time-container {
  width: 300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .select-time-container {
    width: 100%;
  }
}
.select-time-container .select-time-control {
  position: absolute;
  top: 50%;
  color: #bbb;
  margin-top: -18px;
}
.select-time-container .select-time-control.prev {
  left: 1px;
}
.select-time-container .select-time-control.next {
  right: 1px;
}
@media only screen and (max-width: 768px) {
  .select-time-container .select-time-control.prev {
    left: 0.5em;
  }
  .select-time-container .select-time-control.next {
    right: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .productCampaignMarker {
    position: relative;
    top: 50px;
  }
  .thankyou {
    font-size: 0.7em;
  }
  #bx-pager {
    display: none !important;
  }
}
#slider-home {
  margin: 0;
  position: relative;
  padding-bottom: 10px;
}
#slider-home ul {
  list-style: none;
  overflow: hidden;
}
#slider-home:hover .bx-navigation-custom {
  display: block;
}

.selectric-items ul, .selectric-items li, .selectric .label {
  font-size: 1em;
}

.selectric-items li {
  display: block;
  padding: 5px 8px;
  border-top: 0;
  border-bottom: 1px solid #EEE;
  color: #000;
  cursor: pointer;
  font-size: 0.775em !important;
  overflow: hidden;
  position: relative;
}
.selectric-items li .drive-label {
  position: absolute;
  right: 6px;
  top: 8px;
}

.selectric-items, .selectric-scroll {
  max-height: 190px;
}

.selectric .ellipsis, .selectric-items .ellipsis {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  max-width: 90%;
  overflow: hidden;
}

.drive-label {
  color: #BF2C88;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 1em;
  font-size: 12px;
}
.drive-label.small {
  margin: 0;
  font-size: 1em;
  cursor: pointer;
  padding: 2px 0;
  position: relative;
}
.drive-label.small .icon-drive {
  width: 20px;
  height: 20px;
  margin: 0;
  top: -2px;
}

.drive.alert {
  font-style: italic;
  font-size: 0.775em;
  line-height: 1;
  border: 1px dashed #BF2C88;
  padding: 10px 0 5px;
  display: block;
  text-align: center;
  color: #BF2C88;
}

.icon-drive {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: 100%;
  position: relative;
  top: -4px;
  margin-left: 10px;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/content/images/parked-car.png);
}

.selectric-wrapper {
  margin-top: 0.6em;
  text-align: left;
}
.selectric-wrapper.error .selectric {
  border: 1px solid #cc2529;
}
.selectric-wrapper.error .selectric .label {
  color: #cc2529;
}

.selectric {
  border-color: #D9D9D9;
  background: #fff;
  border-radius: 2px;
}
.selectric .drive-label {
  position: absolute;
  right: 30px;
  top: 2px;
}
.selectric p {
  margin: 0 !important;
  padding: 0 0.5em;
}
.selectric .label {
  height: 40px;
  line-height: 40px;
  font-size: 0.8rem;
}
.selectric .button {
  height: 50px;
}

.selectricWrapper.error .selectric {
  border-color: #cc2529;
}
.selectricWrapper.error .selectric .label {
  color: #cc2529;
}

.mCSB_inside > .mCSB_container {
  margin-right: 15px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #BF2C88;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #2E70B5;
}

#toast-container > div {
  box-shadow: none;
  border-radius: 3px;
  opacity: 1 !important;
  font-size: 0.875em;
}

#toast-container .toast-message {
  font-size: 0.775em;
}

@media screen and (max-width: 768px) {
  #toast-container {
    width: auto;
    box-sizing: border-box;
    overflow: hidden;
  }
  #toast-container .toast-message {
    font-size: 0.675em;
  }
  #toast-container > * {
    box-sizing: border-box;
  }
}
/*.privacypopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(#000, .8);
    z-index: 100000;

    .privacy-content {
        display: block;
        top: 0;
        max-width: 960px;
        background: #fff;
        padding: 4em;
        overflow-y: scroll;
        height: 100%;
        margin: 0 auto;
    }
}*/
.alert-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100000;
}
.alert-overlay .alert-content {
  display: block;
  top: 0;
  max-width: 450px;
  background: #fff;
  padding: 2em;
  height: auto;
  margin: 2em auto;
  text-align: center;
}
.alert-overlay .alert-content p {
  display: block;
}
.alert-overlay .alert-content a.btn {
  font-size: 0.875em;
  display: inline-block;
  width: auto;
}

.special-links {
  font-size: 0.875em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .special-links {
    display: none;
  }
}
.special-links .label {
  display: inline-block;
  line-height: 1;
  color: #BF2C88;
  text-transform: uppercase;
  margin-right: 1em;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
}
.special-links ul.links {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.special-links ul.links li {
  display: inline-block;
}
.special-links ul.links li a {
  display: inline-block;
  border: 1px solid #BF2C88;
  border-radius: 2px;
  padding: 6px 10px;
  line-height: 1;
  color: #BF2C88;
  margin-right: 0.5em;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-size: 0.875em;
}
.special-links ul.links li a:hover {
  background-color: #BF2C88;
  color: #fff;
}

.search-with-filters {
  /*
      #product-grid {
          li {
              width: 25%;

              .price-wrap {
                  white-space: nowrap;
              }

              .product {
                  padding: 1em;

                  .badge-special {
                      margin-left: 20px;
                  }
              }

              @media screen and (max-width: 1280px) {
                  width: 33%;
              }

              @include bp(tablet) {
                  width: 50%;
              }

              @media screen and (max-width: 767px) {
                  width: 100%;
              }
          }
      }
  */
}
@media only screen and (max-width: 1366px) {
  .search-with-filters .col-10 {
    max-width: 100%;
    width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.search-with-filters .noprod {
  margin: 2em 0;
}
.search-with-filters .wrong-search {
  /*border-top: 5px solid $grey;
  padding-bottom: 2em;*/
  overflow: hidden;
}
.search-with-filters .wrong-search h3 {
  margin: 30px 0 1em 30px;
}
.search-with-filters .wrong-search ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 30px;
}
.search-with-filters .wrong-search ul li {
  font-size: 0.875em;
}
.search-with-filters .wrong-search ul li a {
  text-decoration: none;
  font-weight: 600;
}
.search-with-filters .search-head {
  text-align: left;
  font-size: 1em;
  overflow: hidden;
}
.search-with-filters .search-head .page-title {
  color: #000;
}
@media only screen and (max-width: 768px) {
  .search-with-filters .search-head .page-title {
    padding: 0.5em 0;
  }
}
.search-with-filters .filter-main-title {
  color: #271c18;
  text-transform: uppercase;
  font-size: 1.2em;
  margin: 0;
  padding: 1.1em;
}
@media only screen and (max-width: 992px) {
  .search-with-filters .filter-main-title {
    border: 0;
  }
}
.search-with-filters .filter-block {
  overflow: hidden;
}
.search-with-filters .filter-block.many {
  position: relative;
  padding-bottom: 2em;
}
.search-with-filters .filter-block.many .more {
  position: absolute;
  bottom: 0;
  font-size: 0.675em;
  display: block;
  color: #BF2C88;
  cursor: pointer;
  background: #fff;
  width: 100%;
  padding: 5px 0 7px;
  box-shadow: 0px 0px 5px 10px #FFFFFF;
}
.search-with-filters .filter-block.long {
  max-height: none;
}
.search-with-filters .filter-block .filter-title {
  font-weight: 600;
  color: #BF2C88;
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 0;
  margin: 1em 0;
  font-family: "Lato", sans-serif;
}
.search-with-filters .filter-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-with-filters .filter-block ul li {
  display: block;
  margin: 0;
  font-size: 0.775em;
  margin: 0.6rem;
  margin-left: 0;
}
.search-with-filters .filter-block ul li input {
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  position: relative;
  top: 0;
  float: left;
}
.search-with-filters .filter-block ul li label {
  color: #271c18;
  line-height: 1rem;
  display: block;
  padding-left: 19px;
  text-indent: 0;
  font-size: 0.9rem;
}
@media only screen and (max-width: 992px) {
  .search-with-filters .filter-block ul li label {
    color: #271c18;
    font-size: 1rem;
    margin-bottom: 1em;
  }
}
.search-with-filters .filter-block ul li:hover label {
  color: #271c18;
  cursor: pointer;
}
.search-with-filters .filter-block ul li.disable input {
  opacity: 0.5;
  cursor: default;
}
.search-with-filters .filter-block ul li.disable label {
  color: #ccc;
  cursor: default;
}
.search-with-filters .filter-block ul li.disable:hover label {
  color: #ccc;
}
.search-with-filters .filter-block ul li.selected label {
  font-family: "Lato", sans-serif;
}

.slider-responsive .mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .slider-responsive .desktop {
    display: none;
  }
  .slider-responsive .mobile {
    display: block;
  }
}

#advTop {
  display: none;
}

#main-wrap-control {
  background: #fff;
  position: relative;
  z-index: 10;
  /*padding-bottom: 7.5em;*/
  min-height: 100%;
}
@media only screen and (max-width: 992px) {
  #main-wrap-control {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  #main-wrap-control {
    padding: 0;
  }
}
#main-wrap-control .close-layer {
  display: none;
}
#main-wrap-control.slide-mobile {
  -webkit-transform: translateX(70%);
  transform: translateX(70%);
}
@media only screen and (max-width: 480px) {
  #main-wrap-control.slide-mobile {
    -webkit-transform: translateX(90%);
    transform: translateX(90%);
  }
}
#main-wrap-control.slide-mobile .close-layer {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000000;
  background-color: rgba(0, 0, 0, 0.5);
}
#main-wrap-control.slide-mobile .close-layer .close__item {
  padding: 20px;
  color: #fff;
  font-size: 2em;
}
@media only screen and (max-width: 480px) {
  #main-wrap-control.slide-mobile .close-layer .close__item {
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #main-wrap-control {
    padding-top: 0 !important;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: transform, 0.3s, ease;
    transition: transform, 0.3s, ease;
  }
}

.full-header-bar {
  background: #BF2C88;
  width: 100%;
  font-family: "Lato", sans-serif;
}
.full-header-bar:after {
  content: "";
  display: table;
  clear: both;
}
.full-header-bar .tellme {
  color: #fff;
  font-size: 11px;
  float: left;
  padding: 0.7em 0;
  letter-spacing: 0.03em;
}
.full-header-bar ul.inline {
  float: right;
  text-align: right;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
  white-space: nowrap;
}
.full-header-bar ul.inline > li {
  border-left: 1px solid #fff;
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
}
.full-header-bar ul.inline > li .top-voice {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.7em 1em;
}
.full-header-bar ul.inline > li .fa {
  margin-right: 0.5em;
}
@media only screen and (max-width: 768px) {
  .full-header-bar .tellme {
    display: none;
  }
  .full-header-bar .top-1, .full-header-bar .top-2 {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  body.fixed #main-wrap-control.skinActive {
    padding-top: 0;
  }
  #main-wrap-control.skinActive {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    font-size: 0.875em;
    border: 1px solid #fff;
    z-index: 5;
  }
  #main-wrap-control.skinActive #cart .cart-recap .subtotal {
    font-size: 13px;
  }
  #main-wrap-control.skinActive .wrap {
    padding: 0 12px;
  }
  #main-wrap-control.skinActive .full-header-bar {
    width: auto;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0 12px;
  }
  #main-wrap-control.skinActive #cart:not(.open) {
    box-shadow: none;
  }
  #main-wrap-control.skinActive #main-header .main-header-top .header--icon {
    font-size: 1.3em;
    position: relative;
    top: 3px;
    left: 7px;
  }
  #main-wrap-control.skinActive #main-header .main-header-top .header--tab {
    padding-left: 35px;
  }
  #main-wrap-control.skinActive #main-header .main-header-top .header--tab.cart-recap {
    padding-top: 11px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  #main-wrap-control.skinActive:after {
    content: "";
    display: block;
    clear: both;
  }
  #main-wrap-control.skinActive #main-header {
    position: relative;
    font-size: 0.975em;
    padding: 0 12px;
  }
  #main-wrap-control.skinActive #main-header #lg {
    width: 170px;
    padding: 7px 0;
  }
  #main-wrap-control.skinActive #main-header .user-head-menulist {
    min-width: 390px;
  }
  #main-wrap-control.skinActive .product-list .li {
    width: 25%;
  }
  #main-wrap-control.skinActive .search-with-filters #product-grid li {
    width: 50%;
  }
  body.skinBody {
    padding-top: 100px !important;
    overflow-x: hidden;
  }
  body.skinBody #popup, body.skinBody .modal-info {
    padding: 2em;
    position: absolute;
  }
  .advSkinWrap {
    position: fixed;
    top: 0;
    height: 100%;
    width: 1280px;
    left: 50%;
    margin-left: -640px;
  }
  .advSkinWrap img {
    text-indent: -9999px;
  }
  #advLeft {
    display: block;
    width: 162px;
    height: 1000px;
    position: absolute;
    left: 0;
    top: -95px;
  }
  #advRight {
    display: block;
    width: 161px;
    height: 1000px;
    position: absolute;
    right: 0;
    top: -95px;
  }
  #advTop {
    display: block;
    height: 95px;
    width: 976px;
    margin: 0 auto;
  }
}
.faq-page h1 {
  padding: 0;
  padding-top: 0.5em;
}
.faq-page h2 {
  margin-top: 1.5em;
  padding-left: 0;
  margin-bottom: 0.5em;
}
.faq-page .question {
  border: 1px solid #9b8f8f;
  margin-top: -1px;
}
.faq-page .domanda {
  font-weight: 600;
  padding: 1em;
  cursor: pointer;
}
.faq-page .domanda:hover {
  background: #9b8f8f;
}
.faq-page .risposta {
  display: none;
  padding: 1em;
  line-height: 1.5;
}

.mfp-wrap {
  z-index: 999999 !important;
}

.mfp-bg {
  z-index: 99999;
}

.sliding-tiles {
  margin-bottom: 1em;
}
.sliding-tiles .sliding-tiles--slider {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
}
.sliding-tiles .slider--item {
  display: block;
  width: 100%;
  height: 90px;
}
.sliding-tiles .slider--link {
  display: block;
  height: 90px;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  padding: 1.5em 1em;
  position: relative;
  background-size: cover;
}
.sliding-tiles .slider--link:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 44, 80, 0.32);
  z-index: 0;
  position: absolute;
}
.sliding-tiles .slider--link span {
  display: block;
  font-weight: 800;
  font-size: 0.675em;
  position: relative;
  line-height: 1.2;
}
.sliding-tiles span.slider--link-top {
  vertical-align: middle;
  font-size: 1em;
}
.sliding-tiles span.slider--link-bottom {
  vertical-align: middle;
}
.sliding-tiles .bx-controls-direction {
  position: relative;
  top: -45px;
}
.sliding-tiles .bx-controls-direction a {
  background: transparent;
  text-indent: 0;
  text-align: center;
  color: #fff;
  padding: 3px 0;
}

.affarissimi .affarissimi-red {
  background: #cc2529;
  text-align: center;
  color: #fff;
  padding: 0.6em 1em;
  border-radius: 13px 3px 13px 3px;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.03em;
}
.affarissimi .affarissimi-red .fa {
  font-size: 0.8em;
  margin-right: 0.3em;
  color: #FFF315;
}
.affarissimi .affarissimi-desc {
  padding: 2em 0;
  border-bottom: 1px solid #cc2529;
  margin-bottom: 1em;
}
.affarissimi .affarissimi-desc h2 {
  margin: 0 0 1em;
  font-weight: 700;
  padding: 0;
  font-size: 1.3em;
  color: #cc2529;
}
.affarissimi .affarissimi-desc p {
  font-size: 1em;
  line-height: 1.5;
  color: #271c18;
  margin: 0;
  letter-spacing: -0.03em;
}
.affarissimi .affarissimi-desc p strong {
  color: #cc2529;
}

.specialComposerLayer {
  position: fixed;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 50%;
  z-index: 100;
  left: -100%;
  box-shadow: 0px 0px 50px -10px #000;
  -webkit-transition: left, 0.5s, ease;
  transition: left, 0.5s, ease;
}
.specialComposerLayer.open {
  left: 0;
}

.composerItems {
  overflow: hidden;
}
.composerItems .composerItem {
  width: 25%;
  float: left;
  padding: 10px;
  height: 200px;
}
.composerItems .composerItem__image {
  display: block;
  width: 100%;
  text-align: center;
}
.composerItems .composerItem__image img {
  max-width: 100%;
  max-height: 50px;
}
.composerItems .composerItem__name {
  font-size: 0.875em;
  display: block;
  font-weight: 800;
  text-align: center;
}

.dance {
  animation-name: dance;
  -webkit-animation-name: dance;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
}

@-webkit-keyframes dance {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  60% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes dance {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  60% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

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

.selectTimeTabs {
  max-width: 500px;
  margin: 0 auto;
}
.selectTimeTabs .selectTimeTabs__tab {
  margin-top: 3em;
  display: table;
  width: 100%;
}
.selectTimeTabs .selectTimeTabs__tab .small.link {
  display: inline-block;
  font-size: 0.6em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}
.selectTimeTabs .selectTimeTabs__tab .drive-label {
  vertical-align: top !important;
  font-size: 1em;
  margin-left: 4px !important;
}
.selectTimeTabs .selectTimeTabs__tab .drive-label .icon-drive {
  height: 1em;
  width: 1em;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab.selected {
  border: 1px solid #ccc;
  border-bottom: none;
  z-index: 10;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab.selected .selectTab__content:before {
  border: 1px solid #BF2C88;
  background: #BF2C88;
  box-shadow: inset 0px 0px 0px 2px #fff;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab__content {
  padding: 1.225em 0.5em 1.225em;
  display: block;
  cursor: pointer;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab__content:before {
  content: "";
  display: inline-block;
  border: 1px solid #ccc;
  width: 1.225em;
  height: 1.225em;
  vertical-align: middle;
  margin: 0 1em 0 0;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  .selectTimeTabs .selectTimeTabs__tab .selectTab__content {
    font-size: 0.775em;
  }
  .selectTimeTabs .selectTimeTabs__tab .selectTab__content:before {
    display: none;
  }
}
.selectTimeTabs .selectTimeTabs__tab .selectTab__content span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  text-align: left;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab__content span b {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.5em;
  letter-spacing: 1px;
}
.selectTimeTabs .selectTimeTabs__tab .selectTab__content span em {
  display: block;
  font-weight: 700;
  font-style: normal;
}
.selectTimeTabs .selectTimeTabs_panels {
  padding: 2em 0;
  border: 1px solid #ccc;
  border-radius: 0 0 6px 6px;
  position: relative;
  top: -1px;
}
@media only screen and (max-width: 768px) {
  .selectTimeTabs .selectTimeTabs_panels {
    top: -2px;
  }
}
.selectTimeTabs .selectTimeTabs__panel {
  display: none;
  text-align: center;
}
.selectTimeTabs .selectTimeTabs__panel h3 {
  font-size: 1em;
  color: #BF2C88;
}

.middle-bar-fidelity {
  background-color: rgba(211, 211, 211, 0.3);
  height: 200px;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .middle-bar-fidelity {
    height: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .middle-bar-fidelity {
    margin-top: 20px;
    height: auto;
    padding: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .middle-bar-fidelity .container {
    display: block;
  }
}
.middle-bar-fidelity .container .middle-bar-fidelity__card {
  width: 20%;
  height: 200px;
}
.middle-bar-fidelity .container .middle-bar-fidelity__card img {
  width: 80%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .middle-bar-fidelity .container .middle-bar-fidelity__card {
    width: 40%;
    height: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .middle-bar-fidelity .container .middle-bar-fidelity__card {
    display: none;
  }
}
.middle-bar-fidelity .container .middle-bar-fidelity__claim {
  width: 60%;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .middle-bar-fidelity .container .middle-bar-fidelity__claim {
    width: 100%;
  }
}
.middle-bar-fidelity .container .middle-bar-fidelity__claim .h1 {
  margin: 0px;
  color: #2E70B5;
}
@media only screen and (max-width: 992px) {
  .middle-bar-fidelity .container .middle-bar-fidelity__claim .h1 {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }
}
.middle-bar-fidelity .container .middle-bar-fidelity__claim .h1.h1--bolder {
  font-weight: 900;
}
.middle-bar-fidelity .container .middle-bar-fidelity__claim .h1.h1--uppercase {
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .middle-bar-fidelity .container .middle-bar-fidelity__claim .h1 {
    text-transform: uppercase;
  }
}
.middle-bar-fidelity .container .middle-bar-fidelity__claim h2 {
  margin: 0px;
  font-weight: 300;
  color: #808080;
}
@media only screen and (max-width: 992px) {
  .middle-bar-fidelity .container .middle-bar-fidelity__claim h2 {
    display: none;
  }
}
.middle-bar-fidelity .container .button {
  color: #fff;
  text-decoration: none;
}
.middle-bar-fidelity .container .button.middle-bar-fidelity__button {
  border-radius: 5px;
  padding: 5px 50px;
  color: #fff;
  background-color: #2E70B5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.middle-bar-fidelity .container .button.middle-bar-fidelity__button:hover {
  background-color: #BF2C88;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .middle-bar-fidelity .container .button.middle-bar-fidelity__button {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.4em;
  }
}

.title-middle-bar {
  padding: 15px;
}
.title-middle-bar h2 {
  color: #BF2C88;
  border-bottom: 4px solid rgb(238, 237, 237);
  padding-bottom: 10px;
}

/*LOADER*/
.blockPage {
  top: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ChangeServicePopup h2 {
  margin: 0;
  font-size: 1.2rem;
  padding: 10px;
}
.ChangeServicePopup div {
  margin-top: 50px;
}
.ChangeServicePopup div p {
  padding: 0 10px;
}

#product-grid1 {
  padding: 0 1em;
}

.error-page-header .top-claim {
  width: 40% !important;
}
.error-page-header .logo {
  padding-top: 1rem !important;
}
.error-page-header .middle-wrapper {
  padding-top: 1rem !important;
}
@media only screen and (min-width: 1367px) {
  .error-page-header {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 1366px) {
  .error-page-header {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .error-page-header .top-nav {
    width: 100% !important;
  }
  .error-page-header .logo {
    width: 20% !important;
  }
  .error-page-header .middle-wrapper {
    width: 80% !important;
  }
}
@media only screen and (max-width: 768px) {
  .error-page-header {
    padding-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .error-page-header .logo {
    width: 100% !important;
    display: block;
    text-align: center;
    padding: 0 !important;
  }
  .error-page-header .middle-wrapper {
    padding-top: 0 !important;
    width: 100% !important;
    display: block;
  }
  .error-page-header .middle-wrapper .search-prod {
    width: 100% !important;
    padding: 0 !important;
  }
}

.error-page {
  margin-top: 5rem;
}
.error-page .container {
  min-height: 400px;
  text-align: center;
}
.error-page .container img {
  height: auto;
  margin-top: 1rem;
}
.error-page .container h1 i {
  font-size: 2em;
  color: #BF2C88;
}
.error-page .container a {
  text-decoration: none;
}
.error-page .container a.button--secondary {
  border: 2px solid #BF2C88;
}
.error-page .container a.button--secondary:hover {
  background-color: #BF2C88;
  color: #fff !important;
}
.error-page .container a i {
  margin-right: 1rem;
}
.error-page .container p {
  margin: 2rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 992px) {
  .error-page {
    margin-top: 0;
  }
}

.light-footer {
  position: inherit !important;
  bottom: 0;
  width: 100%;
}
.light-footer.container-fluid {
  padding: 0;
}

/*OWL CAROUSEL SETTINGS
.owl-carousel {
    position: relative;

    .owl-stage{

    }

    .item {
        position: relative;


        img {
            position: relative;
        }

        p {
            position: absolute;
            font-size: 1.8rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
    }

    .owl-controls {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0%,-100%);
        width: 100%;
        height: 100vh;
    }

    .owl-nav {
        .owl-prev,
        .owl-next {
            position: absolute;
            top: 40%;
            margin-top: -10px; // Half of the prev/next buttons height here in negatives to center them perfectly
            font-size: 2rem;
            background-color: rgba(243, 245, 249, 0.7);
            width: 35px;
            height: 50px;
            @include flexbox();
            @include align-items(center);
            @include justify-content(center);
            @include transition(all .3s);

            &:hover {
                @include box-shadow(1px 1px 2px rgba($black, .2));
                background-color: rgba(138, 200, 239, 0.28);
                @include transition(all .3s);
            }

            &.disabled {
                display: none;
            }
        }

        .owl-prev {
            left: 0;
        }

        .owl-next {
            right: 0;
        }
    }

    .owl-dots {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
    */
/*CAROUSEL ARROW PRODUCT*/
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 40%;
  margin-top: -10px;
  font-size: 2rem;
  background-color: rgba(243, 245, 249, 0.7);
  width: 35px;
  height: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  box-shadow: 1px 1px 2px rgba(39, 28, 24, 0.2);
  background-color: rgba(138, 200, 239, 0.28);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  display: none;
}
.owl-nav .owl-prev {
  left: 0;
}
.owl-nav .owl-next {
  right: 0;
}

/*SLIDER*/
.content-carousel {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 5px 0 10px;
}
.content-carousel .imgMobile {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .content-carousel .imgMobile {
    display: inline !important;
  }
  .content-carousel .imgDesktop {
    display: none !important;
  }
}
.content-carousel .owl-carousel {
  width: calc(100% - 170px);
  display: block !important;
}
@media only screen and (max-width: 992px) {
  .content-carousel .owl-carousel {
    width: 100%;
  }
}
.content-carousel .owl-carousel div {
  width: 92%;
}
@media only screen and (max-width: 992px) {
  .content-carousel .owl-carousel div {
    width: 100%;
  }
}
.content-carousel .owl-carousel .owl-controls .owl-dot {
  background-size: cover;
  margin-top: 10px;
}
.content-carousel .owl-carousel .owl-dots {
  position: absolute;
  top: 0;
  right: -170px;
  width: 250px;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .content-carousel .owl-carousel .owl-dots {
    display: none;
  }
}
.content-carousel .owl-carousel .owl-dot {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 88px !important;
}

/*ELEMENT ORDER IN HOMEPAGE*/
@media only screen and (max-width: 768px) {
  .slide {
    -webkit-order: 1;
    order: 1;
  }
  .main-wrap {
    -webkit-order: 3;
    order: 3;
  }
  .main-wrap h2.visible-on-mobile {
    color: #BF2C88;
    padding-left: 15px;
  }
  .banner-wrap {
    -webkit-order: 2;
    order: 2;
  }
}
body.fixed {
  background-color: #fff;
}

/*ABOUT US PAGE*/
.about_us {
  font-family: "Lato", sans-serif;
}
.about_us header {
  /*.about_us__company {
      @include background-size(cover);
      background-repeat: no-repeat;
      background-position: center;
      width: 100%;
      height: 450px;
      background-image: url('/content/images/chi-siamo.png');
  }*/
}
.about_us header .title__wrap {
  width: 300px;
  height: 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #BF2C88;
  position: relative;
  top: -50px;
  left: 62px;
}
.about_us header .title__wrap h1 {
  color: #fff;
  font-weight: 300;
  font-size: 48px;
}
.about_us p {
  color: #BF2C88;
  line-height: 1.75rem;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.375rem;
}
.about_us h3 {
  margin: 0;
  margin-top: 3rem;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 400;
  color: #BF2C88;
}
.about_us .about_us__section {
  padding: 0rem 2rem;
  margin-bottom: 3rem;
}
.about_us .about_us__section div {
  padding: 0 3rem;
}
.about_us .about_us__aside div {
  background-color: #BF2C88;
  box-shadow: -13px 14px 0px 4px #BF2C88;
  padding: 3rem;
  color: #fff;
}
.about_us .about_us__aside div h4 {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0;
}
.about_us .about_us__aside div a {
  color: #fff;
  font-size: 1.25rem;
}
.about_us .about_us__aside div p {
  font-size: 1rem;
  line-height: 1.2rem;
  margin: 2rem 0;
  color: #fff;
}

@media only screen and (max-width: 992px) {
  .zopim {
    display: none !important;
  }
}

.debug-info {
  margin-left: 11px;
  text-align: left;
  position: absolute;
  font-size: small;
  z-index: 1;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.4);
}

.wrap {
  padding: 0 20px;
}

.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container {
  /*1200px*/
  /*max-width: 76rem;*/
  margin: 0 auto;
  /*1440px*/
  max-width: 90rem;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.col.reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-0,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-offset-0,
.col-offset-1,
.col-offset-2,
.col-offset-3,
.col-offset-4,
.col-offset-5,
.col-offset-6,
.col-offset-7,
.col-offset-8,
.col-offset-9,
.col-offset-10,
.col-offset-11,
.col-offset-12 {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
@media only screen and (max-width: 992px) {
  .col-0,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-offset-0,
  .col-offset-1,
  .col-offset-2,
  .col-offset-3,
  .col-offset-4,
  .col-offset-5,
  .col-offset-6,
  .col-offset-7,
  .col-offset-8,
  .col-offset-9,
  .col-offset-10,
  .col-offset-11,
  .col-offset-12 {
    padding: 0;
    margin: 0 !important;
  }
}

.col-0 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  -webkit-flex-basis: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -webkit-flex-basis: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-flex-basis: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -webkit-flex-basis: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-flex-basis: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -webkit-flex-basis: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-flex-basis: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -webkit-flex-basis: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-offset-0 {
  margin-left: 0;
}

.col-offset-1 {
  margin-left: 8.33333333%;
}

.col-offset-2 {
  margin-left: 16.66666667%;
}

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

.col-offset-4 {
  margin-left: 33.33333333%;
}

.col-offset-5 {
  margin-left: 41.66666667%;
}

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

.col-offset-7 {
  margin-left: 58.33333333%;
}

.col-offset-8 {
  margin-left: 66.66666667%;
}

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

.col-offset-10 {
  margin-left: 83.33333333%;
}

.col-offset-11 {
  margin-left: 91.66666667%;
}

@media only screen and (max-width: 992px) {
  .row {
    margin: 0;
    display: inherit;
  }
  .row .col-0,
  .row .col-1,
  .row .col-2,
  .row .col-3,
  .row .col-4,
  .row .col-5,
  .row .col-6,
  .row .col-7,
  .row .col-8,
  .row .col-9,
  .row .col-10,
  .row .col-11,
  .row .col-12,
  .row .col-offset-0,
  .row .col-offset-1,
  .row .col-offset-2,
  .row .col-offset-3,
  .row .col-offset-4,
  .row .col-offset-5,
  .row .col-offset-6,
  .row .col-offset-7,
  .row .col-offset-8,
  .row .col-offset-9,
  .row .col-offset-10,
  .row .col-offset-11,
  .row .col-offset-12 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
/*@media screen and (max-width: 1280px) {
    .container {
        padding: 0 10px;
    }
}*/
.flex {
  display: -webkit-flex;
  display: flex;
}

.start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.center {
  -webkit-justify-content: center;
  justify-content: center;
}

.end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.top {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.middle {
  -webkit-align-items: center;
  align-items: center;
}

.bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

.around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.first {
  -webkit-order: -1;
  order: -1;
}

.last {
  -webkit-order: 1;
  order: 1;
}

.wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.displayColumn {
  flex-flow: column;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased !important;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
}
body.slide-right {
  overflow: hidden;
}
body.slide-right #main-wrap-control, body.slide-right .landing {
  -webkit-transform: translateX(90%);
  transform: translateX(90%);
}
@media only screen and (max-width: 992px) {
  body.slide-right #main-wrap-control, body.slide-right .landing {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@media only screen and (max-width: 768px) {
  body.slide-right #main-wrap-control, body.slide-right .landing {
    -webkit-transform: translateX(70%);
    transform: translateX(70%);
  }
}
@media only screen and (max-width: 480px) {
  body.slide-right #main-wrap-control, body.slide-right .landing {
    -webkit-transform: translateX(85%);
    transform: translateX(85%);
  }
}
body.slide-right #main-wrap-control .close-layer, body.slide-right .landing .close-layer {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000000;
}
body.slide-left {
  overflow: hidden;
}
body.slide-left #main-wrap-control {
  -webkit-transform: translateX(-90%);
  transform: translateX(-90%);
}
@media only screen and (max-width: 992px) {
  body.slide-left #main-wrap-control {
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%);
  }
}
body.slide-left #main-wrap-control .close-layer {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000000;
}

/* LIST INLINE AND UNSTYLE */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.text-decoration--none {
  text-decoration: none;
}

/*Responsive visibility helpers*/
.visible-on-large {
  display: none !important;
}
@media only screen and (min-width: 1367px) {
  .visible-on-large {
    display: inline !important;
  }
}

.visible-on-mobile {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .visible-on-mobile {
    display: inline !important;
  }
}

.visible-on-tablet {
  display: none !important;
}
@media only screen and (max-width: 992px) {
  .visible-on-tablet {
    display: inline !important;
  }
}

.visible-on-small {
  display: none !important;
}
@media only screen and (max-width: 480px) {
  .visible-on-small {
    display: inline !important;
  }
}

.visible-on-desktop {
  display: none !important;
}
@media only screen and (max-width: 1366px) {
  .visible-on-desktop {
    display: inline !important;
  }
}

.hide-on-mobile {
  display: initial;
}
@media only screen and (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

.hide-on-tablet {
  display: initial;
}
@media only screen and (max-width: 992px) {
  .hide-on-tablet {
    display: none;
  }
}

.hide-on-small {
  display: initial;
}
@media only screen and (max-width: 480px) {
  .hide-on-small {
    display: none;
  }
}

.hide-on-large {
  display: initial;
}
@media only screen and (min-width: 1367px) {
  .hide-on-large {
    display: none;
  }
}

.hide-on-desktop {
  display: initial;
}
@media only screen and (max-width: 1366px) {
  .hide-on-desktop {
    display: none;
  }
}

/*CUSTOM SCROLLBAR*/
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #d4d4d4;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rrgba(0, 45, 114, 0.4);
}

#breadcrumb {
  line-height: 1;
  letter-spacing: 0;
  clear: both;
  font-size: 0.8em;
  text-transform: uppercase;
  padding: 1em 0;
  border-bottom: 1px dashed #eee;
}
@media only screen and (max-width: 768px) {
  #breadcrumb {
    padding: 0 0 0 0;
    text-align: center;
    font-size: 1.5em;
    margin-top: 10px;
    display: none;
  }
}
#breadcrumb .wrap {
  overflow: hidden;
}
#breadcrumb .crumbs {
  float: left;
  white-space: nowrap;
  text-align: left;
  max-width: 70%;
  width: 100%;
}
#breadcrumb .crumbs .inline-list {
  display: inline-block;
}
#breadcrumb .crumbs .sep {
  color: rgb(102.5, 102.5, 102.5);
  display: inline-block;
  padding: 0 0.2em;
}
#breadcrumb .crumbs li {
  padding-right: 1em;
  line-height: 1.3em;
}
@media only screen and (max-width: 768px) {
  #breadcrumb .crumbs li {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
#breadcrumb .crumbs li:after {
  content: "/";
  display: inline-block;
  position: relative;
  right: -0.575em;
  color: rgb(102.5, 102.5, 102.5);
}
@media only screen and (max-width: 768px) {
  #breadcrumb .crumbs li:first-child {
    display: none;
  }
}
#breadcrumb .crumbs li:last-child a span {
  color: #BF2C88;
  font-weight: bold;
}
#breadcrumb .crumbs li:last-child::after {
  display: none;
}
#breadcrumb a {
  color: #BF2C88;
  text-decoration: none;
}
#breadcrumb span {
  color: #808080;
}
#breadcrumb .help-small-label {
  float: right;
  margin: 0 !important;
  color: #BF2C88 !important;
  display: inline-block;
}
#breadcrumb .help-small-label .fa {
  margin-right: 0.5em;
}

/*#delivery-service {
    display: inline-block;
    padding: 0 1em;
    border: 1px solid $grey;
    border-width: 0 1px;
    height: 37px;

    @include bp(mobile) {
        display: none;
    }

    .selected-service {
        cursor: pointer;

        @media screen and (max-width:768px) {

            .ios-arrow-dropdown-circle {
                display: none !important;
            }
        }

        .selected-label {
            display: block;
            line-height: 1;
            position: relative;
            font-size: .875em;
            min-width: 240px;

            b {
                font-weight: inherit;
            }



            .service-info {
                font-size: .875em;
                display: block;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
                max-height: 1em;
            }

            .service-name {
                font-size: 1.225em;
                font-weight: bold;
                display: block;
                white-space: nowrap;
            }

            @media screen and (max-width: 1024px) {
                font-size: .875em;

                b {
                    display: none;
                }

                .service-name {
                    font-size: .875em;
                }
            }

            @media screen and (max-width: 768px) {
                display: none;
            }
        }
    }

    .service-icon {
        display: inline-block;
        width: 36px;
        background: $secondColor;
        color: #fff;
        height: 36px;
        text-align: center;
        border-radius: 50px;
        line-height: 0px;
        padding-top: 7px;
        font-size: 15px;
        vertical-align: middle;

        .fa {
            height: 8px;
            display: block;
        }
    }

    .service-info {
        white-space: nowrap;
        padding-right: .5em;
        position: relative;
        padding-top: 3px;
        display: inline-block;
        vertical-align: middle;

        .service-label {
            display: block;
            color: $secondColor;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 600;
            line-height: 1;
        }

        .service-name {
            line-height: 1;

            .service-name-image {
                line-height: 1;
            }

            .service-name-label {
                font-weight: 600;
                font-size: .8em;
                line-height: 1;
                text-transform: uppercase;
            }
        }
    }
}*/
.select-service.zipcode-select-service {
  overflow: hidden;
  min-height: 300px;
}
.select-service .zipCodeWrap {
  margin-top: 1em;
}
.select-service .zipcode-wrap h3 {
  margin: 0 0 0.5em;
}
.select-service .zipcode-wrap #recent-zipcode {
  font-size: 0.675em;
  float: none;
  margin: 0 0 0.5em;
  display: block;
}
.select-service .zipcode-wrap #recent-zipcode a {
  border: none;
}

.zipcode-wrap {
  position: relative;
  padding: 0;
  margin-left: -27px;
  margin-right: -27px;
  width: auto;
}
.zipcode-wrap h3 {
  margin: 1em 0;
}
.zipcode-wrap:after {
  content: "";
  width: 100%;
  display: block;
  clear: both;
}
.zipcode-wrap .zipcode-slider {
  position: relative;
  width: 200%;
  float: left;
  clear: both;
  /*@include calc(height, "(180px + 1em)");*/
  left: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.zipcode-wrap .zipcode-main, .zipcode-wrap .zipcode-alternative {
  position: relative;
  float: left;
  width: 50%;
  height: 133px;
  padding: 0 27px;
  text-align: left;
}
.zipcode-wrap .zipcode-main {
  text-align: left;
}
.zipcode-wrap .zipcode-alternative {
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.zipcode-wrap .zipcode-alternative .zipcode-slide-change {
  font-size: 0.775em;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  text-align: left !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zipcode-wrap .zipcode-alternative .zipcode-slide-change i {
  padding-right: 20px;
  font-size: 1.3em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zipcode-wrap .zipcode-alternative .zipcode-slide-change:hover i {
  padding-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zipcode-wrap .zipcode-alternative .good, .zipcode-wrap .zipcode-alternative .bad {
  display: block;
  font-size: 1em;
  padding: 0.5em 0;
  text-align: center;
}
.zipcode-wrap .zipcode-alternative .good {
  color: #000;
}
.zipcode-wrap .zipcode-alternative .bad {
  color: #cc2529;
}
.zipcode-wrap .zipcode-alternative #addressField.error {
  border-color: #cc2529;
}
.zipcode-wrap .zipcode-alternative #addressField.valid {
  border-color: #119b06;
  color: #119b06;
}
.zipcode-wrap .zipcode-address {
  font-size: 0.775em;
  margin-top: 1em;
  text-align: left;
}
.zipcode-wrap .zipcode-address .zipcode-slide-change {
  display: inline-block;
  cursor: pointer;
  margin-left: 5px;
  text-decoration: none;
}
.zipcode-wrap .zipcode-address .zipcode-slide-change:hover {
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zipcode-wrap #recent-zipcode {
  font-size: 0.775em;
}
.zipcode-wrap #recent-zipcode a {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .zipcode-wrap #recent-zipcode {
    text-align: left;
    float: none;
    margin-top: 0;
    margin-bottom: 1em;
    clear: both;
    display: block;
  }
}
.zipcode-wrap input {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .zipcode-wrap input {
    font-size: 14px !important;
  }
}
.zipcode-wrap input:focus {
  outline: none;
  box-shadow: inset 0px 0px 4px 0px #ccc;
}
.zipcode-wrap input:focus::-webkit-input-placeholder {
  font-size: 1em;
  font-style: italic;
  color: #e1e1e1;
}
.zipcode-wrap input:focus::placeholder {
  font-size: 1em;
  font-style: italic;
  color: #e1e1e1;
}
.zipcode-wrap input.error:focus {
  border: 1px solid #cc2529;
}
.zipcode-wrap input::-webkit-input-placeholder {
  font-size: 1em;
  font-style: italic;
}
.zipcode-wrap input::placeholder {
  font-size: 1em;
  font-style: italic;
}
.zipcode-wrap .zipCodeWrap, .zipcode-wrap .addressWrap {
  position: relative;
  margin: 1em 0;
  display: flex;
}
.zipcode-wrap .zipCodeWrap input, .zipcode-wrap .addressWrap input {
  border: 1px solid #aaa;
  margin: 0 0.1em;
}
.zipcode-wrap .zipCodeWrap #addressField, .zipcode-wrap .addressWrap #addressField {
  width: 55%;
}
.zipcode-wrap .zipCodeWrap #numberField, .zipcode-wrap .addressWrap #numberField {
  width: 15%;
}
.zipcode-wrap .zipCodeWrap #numberField.error, .zipcode-wrap .addressWrap #numberField.error {
  border-color: #cc2529;
}
.zipcode-wrap .zipCodeWrap #numberField.valid, .zipcode-wrap .addressWrap #numberField.valid {
  border-color: #119b06;
  color: #119b06;
}
.zipcode-wrap .zipCodeWrap #cityField, .zipcode-wrap .addressWrap #cityField {
  width: 30%;
}
.zipcode-wrap .zipCodeWrap #cityField.error, .zipcode-wrap .addressWrap #cityField.error {
  border-color: #cc2529;
}
.zipcode-wrap .zipCodeWrap #cityField.valid, .zipcode-wrap .addressWrap #cityField.valid {
  border-color: #119b06;
  color: #119b06;
}
.zipcode-wrap .zipCodeWrap .correct-zipcode, .zipcode-wrap .zipCodeWrap .correct-address, .zipcode-wrap .addressWrap .correct-zipcode, .zipcode-wrap .addressWrap .correct-address {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #505050;
  font-size: 1.25em;
  text-indent: center;
  border-radius: 2px;
  border: 1px solid #119b06;
  color: #119b06;
  line-height: normal;
  padding: 0.5em 10px;
  line-height: 1.5;
}
.zipcode-wrap .zipCodeWrap .correct-zipcode .fa, .zipcode-wrap .zipCodeWrap .correct-address .fa, .zipcode-wrap .addressWrap .correct-zipcode .fa, .zipcode-wrap .addressWrap .correct-address .fa {
  float: right;
  font-size: 18px;
  margin: 7px 5px 0 0;
}
.zipcode-wrap .zipcode-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  margin-top: -1px;
  box-shadow: 0px 3px 11px 0px #CECECE;
  padding: 0.3em;
  z-index: 100;
  border-radius: 0 0 3px 3px;
  border: 1px solid #999;
  display: none;
}
.zipcode-wrap .zipcode-list.error {
  background: #f8f8f8;
  border-color: #cc2529;
  color: #cc2529;
  font-size: 0.875em;
}
.zipcode-wrap .zipcode-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  max-height: 150px;
}
.zipcode-wrap .zipcode-list ul li {
  display: block;
  padding: 10px 8px;
  font-size: 0.875em;
  cursor: pointer;
}
.zipcode-wrap .zipcode-list ul li:hover, .zipcode-wrap .zipcode-list ul li.focus {
  font-weight: 600;
}
.zipcode-wrap.slide .zipcode-slider {
  left: -100%;
}
/*OVERLAY FOR CART*/
.layer-for-cart {
  content: "";
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  cursor: url("/content/images/cursor-close.png"), default;
}

/*progress BAR*/
.progress {
  width: 100%;
  height: 10px;
}

.progress-wrap {
  margin: 5px 0;
  overflow: hidden;
  position: relative;
  background-color: #2E70B5;
  border-radius: 0;
}
.progress-wrap .progress-bar {
  background-color: #eee;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  left: 0;
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 992px) {
  .cart-box {
    /*overflow-y: auto;
    min-height: 95vh;*/
  }
}
.cart-box .header-cart {
  font-weight: bold;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
  font-size: 1.3em;
}
@media only screen and (max-width: 992px) {
  .cart-box .header-cart {
    display: none;
  }
}
.cart-box .header-cart .cart-header--search {
  position: relative;
  width: 70%;
  border: 1px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
}
.cart-box .header-cart .cart-header--search input {
  border: none;
  width: 100%;
  padding: 4px 50px 2px 10px;
  position: relative;
  font-size: 13px;
  border-radius: 3px;
  line-height: 1.5em;
  font-weight: normal;
}
.cart-box .header-cart .cart-header--search input:focus {
  outline: none;
  box-shadow: none;
}
.cart-box .header-cart .removeAllButton {
  font-size: 0.8rem;
  color: #8C8C8C;
  border-radius: 25px;
  border: 1px solid #8C8C8C;
  padding: 0.4em 0.8em;
  text-transform: initial;
  display: block;
  text-align: center;
}
.cart-box .header-cart .removeAllButton:hover {
  background-color: #BF2C88;
  border: 1px solid #BF2C88;
  color: #fff;
}
.cart-box .headCart {
  background-color: #BF2C88;
}
.cart-box .headCart .confirm {
  display: block;
  padding: 5px;
}
.cart-box .h3--title-cart {
  color: #fff;
  margin: 10px;
  font-weight: 600;
  font-size: 1.8rem;
  width: 100%;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .cart-box .h3--title-cart {
    font-weight: 600;
    font-size: 1.2rem;
    width: 40%;
    line-height: 1;
    text-transform: uppercase;
  }
}
.cart-box .container-cart-dx {
  padding: 0 0.5rem;
  min-width: 70%;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-dx {
    min-width: 99%;
    display: table;
    padding: 0.5rem;
    padding-right: 0;
    padding-left: 0;
    display: block;
    /*height: 60vh;
    overflow-y: auto;*/
  }
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-dx .cart-mobile-container1 {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
  .cart-box .container-cart-dx .cart-mobile-container2 {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }
}
.cart-box .container-cart-dx a {
  text-decoration: none;
  color: #271c18;
}
.cart-box .container-cart-dx .scroll-cart {
  overflow-y: auto;
  height: 55vh;
  width: 100%;
}
.cart-box .container-cart-dx .scroll-cart ul {
  padding: 0;
}
.cart-box .container-cart-dx .scroll-cart ul .hide {
  display: none;
}
.cart-box .container-cart-dx .scroll-cart ul .show {
  display: flex !important;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-dx .scroll-cart {
    height: auto;
  }
}
.cart-box .container-cart-sx {
  padding: 0;
  width: 30%;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx {
    height: initial;
    min-width: 100%;
    padding-top: 5px;
    width: 100%;
    display: block;
    bottom: 0;
    border-top: 1px solid #9b8f8f;
  }
}
@media only screen and (max-width: 768px) {
  .cart-box .container-cart-sx {
    border: none;
  }
}
.cart-box .container-cart-sx .cart-totale {
  font-size: 1.2em;
  color: #271c18;
  font-weight: 500;
}
.cart-box .container-cart-sx .cart-totale .cart-tot {
  font-size: 1.2em;
}
.cart-box .container-cart-sx .cart-totale .cart-totale-importo {
  font-size: 1.5rem;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .cart-totale .cart-totale-importo {
    font-size: 1.1em;
  }
}
.cart-box .container-cart-sx .cart-total-price {
  width: 100%;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modal-cart-titledx {
  padding: 0.5em 0;
  color: #303030;
  font-size: 1.4rem;
  font-weight: 400;
  height: 35px;
  margin-top: 1em;
  background-color: rgb(238, 237, 237);
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modal-cart-titledx {
    display: none;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modal-cart-titledx .modalcart-titledx {
  width: 100%;
  margin: 0 15px;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modal-cart-titledx .modalcart-titledx {
    font-size: 1.5rem;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container {
  padding: 5px 15px;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container {
    padding: 0 10px;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .tooltip-cart {
  position: absolute;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 0.8em;
  z-index: 9999;
  display: none;
  border-radius: 5px;
  margin-top: -5em;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .tooltip-cart {
    margin-top: -6em;
  }
}
@media only screen and (max-width: 768px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .tooltip-cart {
    margin-top: -5em;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .tooltip-cart span {
  font-size: 0.8em;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .additional-costs-box p {
  -webkit-user-select: none;
  user-select: none;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .additional-costs-box:hover .tooltip-cart {
  display: block !important;
  margin-top: -4em !important;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .additional-costs-box:hover .tooltip-cart {
    display: none !important;
  }
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .additional-costs-box:active .tooltip-cart {
    display: block !important;
    margin-top: -4em !important;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx {
  color: #9b8f8f;
  font-size: 1.2em;
  font-weight: 500;
  /*height: 40px;*/
  padding: 10px 0;
  border-bottom: 1px solid rgb(238, 237, 237);
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx:last-child() {
  border-bottom: 1px solid #271c18;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx {
    font-size: 1.1em;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx p {
  margin: 10px 0;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx p {
    margin: 5px 0;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx span {
  float: right;
  font-weight: 600;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx #sup__info__add {
  float: initial;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx #sup__info__add:hover .tooltip-cart {
  display: block;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx .tooltip-cart {
  position: absolute;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 1em;
  z-index: 9999;
  display: none;
  border-radius: 5px;
  margin-top: -6em;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx .tooltip-cart {
    margin-top: -7em;
  }
}
@media only screen and (max-width: 768px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx .tooltip-cart {
    margin-top: -8em;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-container .modalcart-contentdx .tooltip-cart small {
  font-size: 0.8em;
  white-space: nowrap;
}
.cart-box .container-cart-sx .modal-cart-box-dx .delivery-box p {
  -webkit-user-select: none;
  user-select: none;
}
.cart-box .container-cart-sx .modal-cart-box-dx .delivery-box .link-info {
  float: none;
}
.cart-box .container-cart-sx .modal-cart-box-dx .delivery-box .minimum-order-freedelivery {
  color: #303030;
  float: none !important;
  font-size: 0.8em;
}
.cart-box .container-cart-sx .modal-cart-box-dx .delivery-box:hover .tooltip-cart {
  display: block !important;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .delivery-box:hover .tooltip-cart {
    display: none !important;
  }
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .delivery-box:active .tooltip-cart {
    display: block !important;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx {
  margin: 0 15px;
  bottom: 0;
  text-align: right;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx {
    display: block;
    margin: 0;
    padding: 5px 15px;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .close-cart {
  text-align: right;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .button-cart-order {
  padding: 0.5em 0px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .button-cart-order {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .button-cart-order .total-cap {
  display: block;
  padding: 0.8em 0;
  color: #BF2C88;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .button-cart-order .total-cap strong {
  font-size: 15px;
  color: #BF2C88;
}
.cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .button-cart-order a {
  border-radius: 50px;
  padding: 0.6em 0.8em;
  border: none;
  width: 100%;
  display: inline-block;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .cart-box .container-cart-sx .modal-cart-box-dx .modalcart-totaldx .button-cart-order a {
    padding: 0.5em;
    font-size: 1.1em;
    text-align: center;
  }
}
.cart-box .container-cart-sx .modal-cart-box-dx .total-amount p {
  font-weight: 500;
  color: #303030;
  font-size: 1.5rem;
}
.cart-box .cart-table__body-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .cart-box .cart-table__body-wrapper {
    padding-bottom: 0;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body {
  border-bottom: 1px solid #f4f4f4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*.col-2:first-child {
      @include justify-content(center);
  }

  .col-2:last-child {
      @include justify-content(flex-end);

      @include bp(small) {
          padding: 0 !important;
      }
  }*/
  /*  &:nth-of-type(odd) {
      background-color: #f8f8f8;
  }*/
}
.cart-box .cart-table__body-wrapper .cart-table__body i[class*=ion-] {
  color: darkgray;
  font-size: 1.4em;
}
.cart-box .cart-table__body-wrapper .cart-table__body.row {
  padding: 10px;
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body.row {
    padding: 0;
  }
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .row {
    margin-right: -10px;
    margin-left: -10px;
    display: -webkit-flex;
    display: flex;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .col-8, .cart-box .cart-table__body-wrapper .cart-table__body .col-2 {
  min-height: 50px;
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .col-2 {
    -webkit-flex-basis: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
    padding: 0 10px;
    /* @include justify-content(flex-start);
    padding-left: 60px;*/
    white-space: nowrap;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .col-8 {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-right: 0;
  width: 66%;
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .col-8 {
    -webkit-flex-basis: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
    padding: 0 10px;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-image {
  width: 60px;
  margin: 0 5px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-image {
    width: 45px;
    margin: 5px;
    margin-top: 10px;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-image .cart-prod-image--background-pattern {
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 45px;
  object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-image .cart-prod-image--background-pattern {
    min-height: 45px;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-image .cart-prod-image--background-pattern i {
  color: #2E70B5;
  float: right;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity {
  color: #271c18;
  font-weight: 300;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity .cart-prod-action {
  background-color: #dedede;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity .cart-prod-input {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 5px 0 4px 0;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity .min {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity .plus {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity span {
  font-weight: 600;
  font-size: 0.9em;
  color: #303030;
}
@media only screen and (max-width: 768px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity span {
    font-size: 0.9em;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity i[class*=ion-] {
  font-size: 0.9em;
  color: #303030;
}
@media only screen and (max-width: 768px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-quantity i[class*=ion-] {
    font-size: 0.8em;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-input {
  width: 50px;
  text-align: center;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-action {
  border: solid 1px;
  border-color: #ccc;
  border-radius: 10px;
  height: 30px;
  width: 30px;
  text-align: center;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-action a {
  padding: 5px;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-action.action-remove {
  border: none;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name {
  font-size: 1.1em;
  color: #1E2C40;
  font-weight: 500;
  text-transform: capitalize;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name .old-price {
  text-decoration: line-through;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name .cart-prod-brand {
  color: #BF2C88;
  font-weight: 800;
  font-size: 0.6em;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name .product-issue {
  font-size: 0.7em;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name span {
  padding: 2px 0;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name small {
  font-size: 0.9em;
  color: #aaa;
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-prod-name {
    margin-left: 0px;
    font-size: 1rem;
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 992px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price {
    font-size: 1em;
    font-weight: bold;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price h3 {
  font-size: 1.6em;
  margin: 0;
  font-weight: bold;
  color: #303030;
}
@media only screen and (max-width: 768px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price h3 {
    font-size: 1em;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price .old-price {
  text-decoration: line-through;
  font-size: 1.2em;
}
.cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price .special-price {
  color: #cc2529;
  font-weight: bold;
  font-size: 1.6em;
}
@media only screen and (max-width: 768px) {
  .cart-box .cart-table__body-wrapper .cart-table__body .cart-unit-price .special-price {
    font-size: 1em;
  }
}
.cart-box .cart-table__body-wrapper .cart-table__body:hover {
  background-color: #eee;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cart-box .carttext {
  color: black;
  text-align: center;
  text-align: center;
  font-size: 1rem;
  color: #271c18;
  margin-top: 20px;
}
.cart-box .total-amount-wrap {
  width: calc(100% - 30px);
  display: inline-flex;
}
@media only screen and (max-width: 992px) {
  .cart-box .total-amount-wrap {
    width: 100%;
  }
}
.cart-box .total-amount-wrap .button-cart-order {
  width: 100%;
  display: block;
}
.cart-box .total-amount-wrap .button-cart-order .button {
  background-color: #51B751;
  border: none;
  color: white;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: center;
}

.avancassa {
  position: relative;
  width: 100%;
  min-height: 30vh;
  padding: 0.5em 0;
}
@media only screen and (max-width: 992px) {
  .avancassa {
    height: initial;
  }
}
@media only screen and (max-width: 992px) {
  .avancassa {
    width: 96vw;
  }
}
.avancassa .avancassa-title {
  color: #2E70B5;
  margin: 0;
}
.avancassa .product-list {
  width: 100%;
}
.avancassa .product-list::-webkit-scrollbar {
  height: 8px;
  background: #fff;
}
@media only screen and (max-width: 1366px) {
  .avancassa .product-list {
    display: -webkit-box;
    overflow-x: auto;
  }
}
.avancassa .li {
  width: 20% !important;
  margin: 0 !important;
  height: initial !important;
}
@media only screen and (max-width: 1366px) {
  .avancassa .li {
    width: 25% !important;
  }
}
@media only screen and (max-width: 992px) {
  .avancassa .li {
    width: 48% !important;
    padding: 5px;
  }
}
.avancassa .li .product-favorites-action {
  display: none;
}
.avancassa .li .product-meta {
  display: none !important;
}
.avancassa .li .product-badge {
  width: 100px;
}
.avancassa .li .product-info h3 {
  font-size: 1em;
  line-height: 1;
  min-height: 2em;
  max-height: 2em;
}
.avancassa .li .product-info .product-meta {
  font-size: 0.6em;
}
.avancassa .li .product-img {
  max-height: 100px;
}
@media only screen and (max-width: 1366px) {
  .avancassa .li .product-img {
    max-height: 70px;
  }
}
.avancassa .li .product-img a {
  height: 70px;
}
.avancassa .li .product-img img {
  vertical-align: inherit;
  max-width: 100px;
  max-height: 100px;
}
@media only screen and (max-width: 1366px) {
  .avancassa .li .product-img img {
    max-width: 70px;
    max-height: 70px;
  }
}
.avancassa .li .price-wrap {
  padding: 0;
}
.avancassa .li .price-wrap .price {
  font-size: 1rem;
  white-space: nowrap;
}
.avancassa .li .text {
  white-space: nowrap;
  font-size: 0.8rem;
}
@media only screen and (max-width: 1366px) {
  .avancassa .li .text {
    font-size: 0.7rem;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 756px) and (orientation: landscape) {
  .cart-box .cart-table__body-wrapper {
    margin: 5px;
  }
  .container-cart-dx {
    height: 50vh !important;
  }
}
@media only screen and (min-device-width: 757px) and (max-device-width: 993px) and (orientation: landscape) {
  .cart-box .cart-table__body-wrapper {
    margin: 5px;
  }
  .container-cart-dx {
    height: 50vh !important;
  }
}
.main-navigation__site-mobile {
  top: 0;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site-mobile {
    position: absolute;
    left: -50%;
    width: 50%;
    padding-left: 0;
    overflow-y: auto;
    background-color: #fff;
    color: #BF2C88;
    margin-top: 0px;
    visibility: visible;
    z-index: 9999;
  }
}
@media only screen and (max-width: 768px) {
  .main-navigation__site-mobile {
    width: 70%;
    left: -70%;
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .main-navigation__site-mobile {
    width: 85%;
    /*position: fixed;*/
    left: -85%;
    padding: 0;
  }
}
@media only screen and (max-width: 992px) {
  .main-navigation__site-mobile .main-navigation__wrap {
    background-color: #BF2C88;
    border-top: none;
    height: 100vh;
    width: 100%;
    /*overflow-y: auto;*/
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .main-navigation__site-mobile .main-navigation__wrap .close-menu {
    position: absolute;
    right: 1em;
    top: 1em;
  }
}
.main-navigation__site-mobile .main-navigation__site {
  display: block !important;
  padding: 0;
}

.main-navigation__site {
  padding: 0 0.5em;
  width: 100%;
  background-color: #BF2C88;
  border-bottom: 1px solid #ccc;
  box-shadow: 1px 1px 5px rgba(39, 28, 24, 0.3);
}
@media only screen and (max-width: 992px) {
  .main-navigation__site {
    display: none;
  }
}
.main-navigation__site .main-navigation__wrap {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  position: relative;
}
.main-navigation__site .main-navigation__wrap::-webkit-scrollbar {
  display: none;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container {
  width: 16.66%;
  /*
  &:hover {
      background-color: white;
      color: $mainColor;
  }*/
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container {
    width: 100%;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container.main-navigation__item--13 .main-navigation__item--side-content {
  right: 0;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container.main-navigation__item--13 .main-navigation__item--side-content {
    right: initial;
  }
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container.main-navigation__item--14 {
    padding-bottom: 5em;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container.main-navigation__item--14 .main-navigation__item--side-content {
  right: 0;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container.main-navigation__item--14 .main-navigation__item--side-content {
    right: initial;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container.open .main-navigation__item--side-content {
  display: block !important;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--img--CANE {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/cat-CANE.svg") !important;
  width: 25px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--img--GATTO {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/cat-GATTO.svg") !important;
  width: 25px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--img--UCCELLI {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/cat-UCCELLI.svg") !important;
  width: 25px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--img--ACQUARIOLOGIA {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/cat-ACQUARIOLOGIA.svg") !important;
  width: 25px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--img--RODITORI {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/cat-RODITORI.svg") !important;
  width: 25px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--img--RETTILI {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/cat-RETTILI.svg") !important;
  width: 25px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--title {
  width: 100%;
  height: 45px;
  padding: 0 5px;
  font-weight: 500;
  font-size: 1.3em;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: center;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--title {
    background-color: #BF2C88;
    color: #fff;
    font-size: 1.3em;
    height: auto;
    padding: 0.8em 10px;
    border-bottom: 1px solid #9b8f8f;
  }
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--title div {
    display: none;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--title span {
  padding: 5px 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: lowercase;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--title span::first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--title span {
    text-align: left;
    width: 100%;
    overflow: visible;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content {
  position: absolute;
  /* width: 100%;
  left: 0;*/
  background-color: #fff;
  /*min-height: 70vh;*/
  padding: 0 20px;
  box-shadow: 1px 2px 5px rgba(39, 28, 24, 0.3);
  overflow: hidden;
  z-index: 9999;
  display: none;
  /* clearfix */
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content.visibile {
  visibility: visible !important;
}
@media only screen and (max-width: 1366px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content {
    min-height: 450px;
  }
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content {
    float: none;
    display: block;
    position: relative;
    min-height: initial;
    width: 100%;
    margin: 0;
    padding: 0;
    left: 0;
    visibility: visible;
    display: none;
    background-color: #fff;
    color: #BF2C88;
    border: 0;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content a {
  text-decoration: none;
  color: #303030;
  line-height: 1.8em;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content a {
    color: #BF2C88;
    width: 100%;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content a:hover {
  text-decoration: none;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .grid {
  width: 100%;
  max-height: 70vh !important;
  overflow-y: auto;
  padding: 10px;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .grid {
    width: 100%;
    max-height: initial !important;
    overflow-y: visible;
    box-shadow: 0px 0 2px rgba(39, 28, 24, 0.2);
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg {
  width: 25%;
  top: 0;
  display: grid;
  bottom: 0;
  background-size: auto 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 10;
  right: 0;
  position: absolute;
  display: none;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg {
    display: none;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--0 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/0.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--1 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/1.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--2 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/2.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--3 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/3.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--4 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/4.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--5 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/5.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--6 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/6.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--7 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/7.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--8 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/8.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--9 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/9.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--10 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/10.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--11 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/11.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .gridImg .main-navigation__cat-img--12 {
  background-image: url("https://restorecms.blob.core.windows.net/ayo/menu/12.jpg") !important;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .grid:after {
  content: "";
  display: block;
  clear: both;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item {
  width: 230px;
  float: left;
  margin: 10px 0;
  margin-bottom: 0;
  /*IE FIX*/
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .columns__item--sub {
  /* a {
      &:hover {
          text-decoration: underline !important;
      }
  }*/
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .columns__item--sub div {
  padding: 1px 0;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .columns__item--sub div {
    padding: 10px 0;
    display: -webkit-flex;
    display: flex;
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .icon {
    margin: 0.5em 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    display: inline-block;
    position: relative;
    vertical-align: middle;
    line-height: 1;
    font-size: 0.9em;
    height: 0.9em;
    width: 0.9em;
    cursor: pointer;
  }
}
@media only screen and (max-width: 992px) and (max-width: 1366px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .icon {
    display: none;
  }
}
@media only screen and (max-width: 992px) and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .icon {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .icon.active {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .icon img {
    max-width: 140%;
    max-height: 140%;
    margin-top: -30%;
    margin-left: -30%;
  }
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .columns__item--sub.open {
    display: block;
    margin-left: 25px;
    padding-left: 5px;
    border-left: 1px solid #fff;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item h4 {
  text-decoration: none;
  cursor: pointer;
  color: #BF2C88;
  font-weight: bold;
  margin: 0;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  line-height: 2em;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item h4:first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item h4 {
    font-size: 1.2em;
    margin: 0;
    background-color: rgba(191, 44, 136, 0.1);
    color: #BF2C88;
    padding: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item small {
  margin: 5px 0;
  font-size: 1.1rem;
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item small:first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item small {
    padding: 0 0.5em;
    font-size: 1.2em;
  }
}
.main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .columns__item--mobile {
  /*height: 1.5em;*/
}
@media only screen and (max-width: 992px) {
  .main-navigation__site .main-navigation__wrap .main-navigation__item--container .main-navigation__item--side-content .columns__item .columns__item--mobile {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
}

#second-menu {
  display: block;
  padding: 0;
  margin-top: 1em;
}
#second-menu ul {
  font-size: 0.875em;
  overflow: hidden;
  margin-right: -0.25em;
  margin-left: -0.25em;
}
#second-menu ul li {
  margin: 0.5em 0.5em;
  float: left;
  line-height: 1;
}
#second-menu ul li a {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 0;
  text-decoration: none;
  color: #BF2C88;
  background-color: #fff;
  border: 1px solid #BF2C88;
  text-transform: uppercase;
}
#second-menu ul li a:hover {
  background-color: #BF2C88;
  color: #fff;
}
#second-menu ul li.current a {
  background-color: #BF2C88;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #second-menu {
    display: none;
  }
}

body .pac-container {
  z-index: 10000000;
}
body .white-popup-maps {
  position: relative;
  background: #FFF;
  padding: 0;
  width: 100%;
  min-height: 600px;
  border-radius: 10px;
  border: 2px solid #fff;
}
body .white-popup-maps .map-input-wrap {
  max-width: 70%;
  position: absolute;
  z-index: 1000;
  left: 20px;
  top: 20px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}
body .white-popup-maps .map-input-wrap .or {
  width: 6%;
  height: 37px;
  padding: 6px 0;
  margin: 4px 15px;
  line-height: 25px;
  float: right;
  font-size: 11px;
  display: none;
}
body .white-popup-maps .map-input-wrap .or.show {
  display: block;
}
body .white-popup-maps .map-input-wrap .localization {
  color: #fff;
  height: 37px;
  line-height: 1.3;
  padding: 6px 2em;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  float: right;
  background-color: #BF2C88;
  display: none;
  vertical-align: middle;
  border-radius: 4px;
  margin: 4px 0 0;
  white-space: nowrap;
}
body .white-popup-maps .map-input-wrap .localization em {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  font-style: normal;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
body .white-popup-maps .map-input-wrap .localization .fa {
  vertical-align: middle;
  margin-right: 5px;
}
body .white-popup-maps .map-input-wrap .localization.show {
  display: block;
}
body .white-popup-maps .map-input-wrap #map-input {
  font-size: 1em !important;
  margin: 0;
  max-width: 70%;
  float: left;
  width: 65%;
  border: none;
}
body .white-popup-maps .map-input-wrap #map-input:focus {
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 768px) {
  body .white-popup-maps .map-input-wrap {
    max-width: 80%;
    width: auto;
    right: 20px;
    background: rgba(255, 255, 255, 0.53);
    border: none;
    box-shadow: none;
    padding: 4px;
  }
  body .white-popup-maps .map-input-wrap #map-input, body .white-popup-maps .map-input-wrap .localization, body .white-popup-maps .map-input-wrap .or {
    width: 100%;
    float: none;
  }
  body .white-popup-maps .map-input-wrap .localization {
    text-align: left;
    padding-top: 4px;
  }
  body .white-popup-maps .map-input-wrap .localization em {
    text-transform: capitalize;
    font-size: 0.875em;
    letter-spacing: 1px;
    font-weight: 500;
  }
  body .white-popup-maps .map-input-wrap .or {
    height: auto;
    line-height: 1;
    font-weight: 900;
    text-align: center;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    padding: 5px 10px;
  }
}
body .white-popup-maps #map-canvas {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 90vh;
}
body .white-popup-maps .mfp-close {
  top: -20px;
  right: -20px;
  border-radius: 100%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  line-height: 30px;
  opacity: 1;
  background-color: #fff;
  color: #000 !important;
}
@media only screen and (max-width: 768px) {
  body .white-popup-maps .mfp-close {
    top: -21px;
    right: -10px;
    background: #fff;
    border-radius: 0;
    opacity: 1;
    color: #000;
  }
}
body .white-popup-maps .mfp-close:after {
  display: none;
}
body .white-popup-maps .infomarker {
  width: 300px;
  display: block;
  padding: 1em 0 1em 1em;
  text-align: center;
}
body .white-popup-maps .infomarker .logo-bg {
  margin-bottom: 1em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  body .white-popup-maps .infomarker {
    width: 200px;
  }
}
body .white-popup-maps .infomarker img {
  max-width: 50%;
  margin: 2em 0;
}
body .white-popup-maps .infomarker > span {
  display: block;
}
body .white-popup-maps .infomarker .drive-label {
  display: block;
  position: relative;
  top: auto;
  left: auto;
}
body .white-popup-maps .infomarker .type {
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: 70% auto;
  background-size: 70% auto;
  display: block;
  width: 80px;
  height: 70px;
  margin: 0 auto 1em;
}
body .white-popup-maps .infomarker .title {
  font-family: "Lato", sans-serif;
  color: #000;
  font-size: 1.3em;
  line-height: 1.1;
  margin-bottom: 1em;
}

.newClass {
  position: fixed;
  width: 100%;
}

.scroll-div {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

.fullW {
  width: 100%;
}

.bodyoverlay {
  opacity: 0.8;
  background-color: rgba(74, 74, 74, 0.7);
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.header {
  background-color: #fff;
  font-family: "Lato", sans-serif;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  /*.spesaveloce {
      text-align: center;*/
  /*background-color: #002C49;*/
  /*color: white;
      border-radius: 50px;
      padding: 0 5px;
      margin: 5px;*/
  /*margin-left: 10px;*/
  /*width: 30%;
      cursor: pointer;

      @include bp(mobile) {
          width: 45%;
      }

      img {
          max-height: 40px;
          max-width: 100%;
          width: 100%;


          @include bp(mobile) {
              max-height: 30px;
          }
      }
  }*/
}
@media only screen and (max-width: 992px) {
  .header {
    position: static;
  }
}
.header__wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /*padding: 1rem 0;*/
  -webkit-user-select: none;
  user-select: none;
  /*---- MAIN NAVIGATION TRIGGER-----*/
  /*TIMESLOT*/
  /*---- SEARCH -----*/
  /*---- LOGIN -----*/
  /* LOGIN */
  /*.search-prod, .main-nav-coupon, .cart {
      @include flex-basis(25%);
      @include flexbox();
      @include justify-content(center);
      @include align-items(center);
  }

  .services {
      @include flex-basis(50%);
      @include flexbox();
      @include justify-content(center);
      @include align-items(center);
  }*/
  /*---- SERVICES -----*/
  /*CART */
  /*END CART*/
  /*MENU MOBILE*/
}
@media only screen and (max-width: 768px) {
  .header__wrap {
    padding: 0.4rem 0;
  }
}
.header__wrap .logo {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  height: 80px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .header__wrap .logo {
    order: 1;
    flex-basis: 45%;
    max-width: 45%;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .logo {
    display: -webkit-flex;
    display: flex;
    padding-left: 0;
    height: initial;
  }
}
.header__wrap .logo img {
  width: auto;
  max-height: 75px;
  z-index: 100;
  padding: 5px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .header__wrap .logo img {
    /* height: auto;
    width: auto;*/
    margin-top: 0px;
    padding-right: 0px;
  }
}
.header__wrap .main-nav-trigger {
  color: #fff;
  cursor: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
  display: none;
}
@media only screen and (max-width: 992px) {
  .header__wrap .main-nav-trigger {
    display: -webkit-flex;
    display: flex;
    padding-left: 10px;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    order: 0;
    flex-basis: 15%;
    max-width: 15%;
  }
}
.header__wrap .main-nav-trigger .rotate::after {
  transform: scaleY(-1);
  margin-top: -5px;
}
.header__wrap .main-nav-trigger h4 {
  background-color: #BF2C88;
  padding: 0.7rem;
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  width: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header__wrap .main-nav-trigger h4 {
    width: 100%;
    background-color: #fff;
    display: block;
    text-transform: capitalize;
  }
}
.header__wrap .main-nav-trigger h4:before {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/head/menu.svg);
  background-repeat: no-repeat;
  background-size: 18px 18px;
  height: 18px;
  width: 15px;
  padding-right: 10px;
  margin-top: -2px;
}
@media only screen and (max-width: 992px) {
  .header__wrap .main-nav-trigger h4:before {
    background-size: 25px 25px;
    height: 25px;
    width: 25px;
    margin-top: 0;
  }
}
.header__wrap .main-nav-trigger.open {
  /*background-color: white;*/
  z-index: 9999999999;
  color: #BF2C88;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header__wrap .main-nav-trigger.open h4 {
  color: #fff;
}
.header__wrap .main-nav-trigger.open i {
  color: #fff;
  transform: rotate(180deg);
}
@media only screen and (max-width: 992px) {
  .header__wrap .main-nav-trigger.open {
    border-radius: 5px;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrap .main-nav-trigger {
    -webkit-flex-basis: 10%;
    flex-basis: 10%;
  }
  .header__wrap .main-nav-trigger .ion-android-menu {
    margin: 0;
    font-size: 2rem;
    color: #BF2C88;
  }
  .header__wrap .main-nav-trigger h5 {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .main-nav-trigger {
    -webkit-flex-basis: 10%;
    flex-basis: 10%;
  }
  .header__wrap .main-nav-trigger h5 {
    margin: 0;
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .header__wrap .main-nav-trigger {
    /*width: 100%;*/
  }
}
.header__wrap .timeslot-conteiner #service-slot-available {
  font-size: 0.8125rem;
  line-height: 1rem;
  display: block;
}
.header__wrap .timeslot-conteiner #service-slot-available .time-available {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 25px;
  color: #271c18;
  display: block;
}
.header__wrap .timeslot-conteiner #service-slot-available .time-available:before {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/svg/clock.svg);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  height: 25px;
  width: 25px;
  margin-top: 2px;
  margin-right: 5px;
}
@media only screen and (max-width: 1366px) {
  .header__wrap .timeslot-conteiner #service-slot-available .time-available:before {
    display: none;
  }
}
.header__wrap .timeslot-conteiner #service-slot-available .time-available .header-date {
  color: #BF2C88;
  text-decoration: underline;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  .header__wrap .timeslot-conteiner {
    display: none;
  }
}
.header__wrap .search-wrap {
  padding: 0 10px;
}
@media only screen and (max-width: 992px) {
  .header__wrap .search-wrap {
    -webkit-flex-basis: 40%;
    flex-basis: 40%;
    -webkit-order: 3;
    order: 3;
  }
}
.header__wrap .search-wrap .search-prod {
  width: 100%;
  border: 2px solid #868686;
  border-radius: 50px;
}
@media only screen and (max-width: 992px) {
  .header__wrap .search-wrap .search-prod {
    order: 3;
  }
}
.header__wrap .search-wrap .search-prod .main-search {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .header__wrap .search-wrap .search-prod .main-search {
    position: initial;
  }
}
.header__wrap .search-wrap .search-prod .main-search form {
  width: 100%;
}
.header__wrap .search-wrap .search-prod .nice, .header__wrap .search-wrap .search-prod .form--basso input:not([type=checkbox]):not([type=radio]), .form--basso .header__wrap .search-wrap .search-prod input:not([type=checkbox]):not([type=radio]) {
  width: 100%;
  border: none;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 0.8rem;
  padding-left: 10px;
  height: 25px;
  border-radius: 50px;
}
.header__wrap .search-wrap .search-prod input {
  margin: 0;
  font-size: 1em;
}
.header__wrap .search-wrap .search-prod input:focus {
  outline: none;
}
.header__wrap .search-wrap .search-prod button {
  background-color: #fff;
  height: 40px;
  width: 44px;
  border: none;
  background-image: url(/content/images/head/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -15px;
  border: solid;
  border-color: #ffffff;
  border-radius: 50px;
}
@media only screen and (max-width: 1366px) {
  .header__wrap .search-wrap .search-prod {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrap .search-wrap {
    display: none;
  }
}
.header__wrap .login {
  font-size: 1rem;
  text-align: center;
  height: 100%;
  /*LOGIN AREA*/
  /**/
}
@media only screen and (max-width: 992px) {
  .header__wrap .login {
    flex-basis: 50%;
    margin-top: 0px;
    text-align: -webkit-center;
    justify-content: center;
    order: 2;
    flex-basis: 15%;
    max-width: 15%;
  }
  .header__wrap .login a .ion-person, .header__wrap .login .ion-person {
    position: relative;
    font-size: 2rem;
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .login a .ion-person, .header__wrap .login .ion-person {
    position: relative;
    /*top: 5px;*/
    font-size: 2rem;
    margin-left: 0.5rem;
  }
}
.header__wrap .login .login-div {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: right;
  flex-direction: row;
  padding-right: 10px;
}
.header__wrap .login .login-div:before {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/head/profile.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  padding-right: 9px;
}
@media only screen and (max-width: 768px) {
  .header__wrap .login .login-div:before {
    display: none;
  }
}
.header__wrap .login .ion-person {
  color: #BF2C88;
}
.header__wrap .login .txt-login {
  color: #242424;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0px;
  text-align: right;
  padding: 0 10px;
}
.header__wrap .login .txt-account {
  color: #808080;
  font-size: 14px;
}
.header__wrap .login .txt-account:after {
  display: block;
  content: "";
  float: right;
  background-image: url(/content/images/svg/sort-down.svg);
  background-repeat: no-repeat;
  background-size: 9px 8px;
  height: 8px;
  width: 8px;
  margin-left: 10px;
  margin-top: 6px;
  padding-right: 9px;
}
.header__wrap .login .usermenu {
  position: relative;
  padding: 0;
  cursor: default;
  width: 50%;
  height: 100%;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .header__wrap .login .usermenu {
    padding: 0.5em;
    width: 100%;
  }
}
.header__wrap .login .usermenu:before {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/head/profile.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  height: 20px;
  width: 25px;
  padding-right: 9px;
}
@media only screen and (max-width: 768px) {
  .header__wrap .login .usermenu:before {
    display: none;
  }
}
.header__wrap .login .usermenu .top-voice {
  cursor: pointer;
  padding-left: 5px;
}
@media only screen and (max-width: 992px) {
  .header__wrap .login .usermenu .top-voice .text-name {
    font-size: 0.7em;
    white-space: nowrap;
    display: none;
  }
}
.header__wrap .login .usermenu__dropdown {
  position: absolute;
  top: 100%;
  background: #fff;
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
  width: 190px;
  border-top: solid 1px lightgrey;
  display: none;
  box-shadow: 0px 10px 30px -10px rgba(68, 74, 84, 0.94);
  z-index: 100;
  padding: 0.5em 1em 0.5em;
}
@media only screen and (max-width: 992px) {
  .header__wrap .login .usermenu__dropdown {
    display: none;
  }
}
.header__wrap .login .usermenu__dropdown li {
  margin: 1em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .header__wrap .login .usermenu__dropdown li {
    text-align: left;
    border-bottom: solid 1px lightgrey;
  }
}
.header__wrap .login .usermenu__dropdown li a {
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
.header__wrap .login .usermenu__dropdown li a:hover {
  text-decoration: underline;
}
.header__wrap .login .usermenu:hover .usermenu__dropdown {
  display: block;
}
@media only screen and (max-width: 992px) {
  .header__wrap .login .usermenu:hover .usermenu__dropdown {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .login .usermenu {
    /*@include order(2);*/
    height: 45px;
    display: -webkit-flex;
    display: flex;
    /*@include justify-content(flex-end);*/
    /*@include align-items(flex-end);*/
  }
  .header__wrap .login .usermenu i {
    color: #fff;
    font-size: 2rem;
  }
  .header__wrap .login .usermenu .top-voice {
    width: 100%;
  }
  .header__wrap .login .usermenu .top-voice .userimg {
    width: 25px;
    height: 25px;
  }
  .header__wrap .login .usermenu .top-voice i {
    font-size: 2.5rem;
  }
  .header__wrap .login .usermenu .usermenu:hover {
    background: transparent;
  }
  .header__wrap .login .usermenu .usermenu__dropdown {
    font-size: 1rem;
    padding: 0;
    left: 0px;
    box-shadow: none;
  }
}
.header__wrap #mobile-login-panel {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0px;
  float: right;
  display: none;
  font-size: 1.5rem;
  z-index: 9999999;
  background-color: #fff;
  overflow-y: hidden;
}
.header__wrap #mobile-login-panel .close-panel {
  position: absolute;
  right: 1em;
  top: 1em;
}
.header__wrap #mobile-login-panel .logo-panel {
  padding: 0.5em;
  padding-top: 1em;
}
.header__wrap #mobile-login-panel .logo-panel img {
  height: 100%;
  width: 120px;
}
.header__wrap #mobile-login-panel ul {
  padding: 0;
  text-align: center;
  padding: 0 2em;
  margin: 0;
}
.header__wrap #mobile-login-panel ul li {
  list-style-type: none;
  line-height: 2;
  text-transform: uppercase;
  border-bottom: 1px solid #BF2C88;
}
.header__wrap #mobile-login-panel ul a {
  color: #BF2C88;
  text-decoration: none;
  font-weight: bold;
}
.header__wrap .change--service span {
  color: #242424;
  /*font-size: 0.8rem;*/
}
.header__wrap .change--service strong {
  color: #242424;
  font-weight: 600;
}
.header__wrap .change--service strong span {
  color: #212121;
}
.header__wrap .change--service small {
  color: #242424;
  padding: 0 0.3rem;
}
.header__wrap .nowrap-address {
  cursor: pointer;
  color: #242424;
  padding-right: 5px;
}
.header__wrap .nowrap-address small {
  color: #BF2C88;
  text-decoration: underline;
}
.header__wrap .services-box {
  flex-basis: 60%;
  flex-flow: row;
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .header__wrap .services-box {
    display: none;
  }
}
.header__wrap .services-box .services {
  cursor: auto;
  height: 100%;
  font-size: 1rem;
  line-height: 1rem;
}
.header__wrap .services-box .services i {
  font-size: 1rem;
  color: rgb(194, 193, 193);
  margin-left: 1rem;
}
@media only screen and (max-width: 768px) {
  .header__wrap .services-box .services {
    -webkit-flex-basis: 10%;
    flex-basis: 10%;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrap .services-box .services {
    border-right: 0;
    padding-left: 5px;
  }
}
.header__wrap .services-box .services .delivery-label {
  color: #808080;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header__wrap .services-box .services {
    border-right: 0;
  }
}
.header__wrap .cart {
  padding: 0;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .header__wrap .cart {
    order: 4;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .cart {
    -webkit-flex-basis: 15%;
    flex-basis: 15%;
  }
}
.header__wrap .cart small, .header__wrap .cart h2, .header__wrap .cart subtotal small {
  font-weight: 300;
}
.header__wrap .cart .cart-recap {
  color: #fff;
  padding: 0.5rem;
  margin-right: 1rem;
  border-radius: 3px;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .header__wrap .cart .cart-recap {
    padding-right: 0;
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrap .cart .cart-recap {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .cart .cart-recap {
    -webkit-justify-content: center;
    justify-content: center;
    color: #BF2C88;
    margin-right: 1rem;
  }
  .header__wrap .cart .cart-recap .visible-on-mobile {
    font-weight: 600;
  }
}
@media only screen and (max-width: 768px) and (max-width: 480px) {
  .header__wrap .cart .cart-recap .visible-on-mobile span {
    display: none;
  }
}
.header__wrap .cart .cart-recap h2 {
  margin: 0;
}
.header__wrap .cart .cart-recap i {
  font-size: 1.2rem;
  padding: 1rem;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 1366px) {
  .header__wrap .cart .cart-recap i {
    padding: 0.5rem;
  }
}
.header__wrap .cart .cart-recap .cart-icon-wrap {
  font-size: 0.8em;
  font-weight: bold;
  color: #fff;
  position: relative;
  width: 100%;
  margin-right: 1rem;
  /* img {
      width: auto;
      margin-right: 10px;
      height: 25px;

      @include bp(desktop) {
      }

      @include bp(tablet) {
          margin: 0;
      }

      @include bp(mobile) {
          font-size: 2rem;
          width: auto;
      }
  }

  @include bp(mobile) {
      height: initial;
      @include order(2);
  }

  &:after {
      content: attr(data-cart);
      position: absolute;
      top: 0px;
      right: -10px;
      z-index: 1;
      font-size: .7rem;
      background: white;
      color: #0A4595;
      width: 18px;
      height: 18px;
      text-align: center;
      line-height: 20px;
      border-radius: 50%;


      @include bp(tablet) {
          top: -10px;
          right: -15px;
      }
  }*/
}
@media only screen and (max-width: 768px) {
  .header__wrap .cart .cart-recap .cart-icon-wrap {
    margin-left: 0;
  }
}
.header__wrap .cart .cart-recap .cart-recap-data {
  margin-left: auto;
}
.header__wrap .cart .cart-recap .cart-recap-data .subtotal {
  color: #2E70B5;
  padding-right: 10px;
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (max-width: 992px) {
  .header__wrap .cart .cart-recap .cart-recap-data .subtotal {
    font-size: 1.1rem;
  }
}
.header__wrap .cart .cart-recap .cart-recap-data .subtotal .big-size {
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (max-width: 992px) {
  .header__wrap .cart .cart-recap .cart-recap-data .subtotal .big-size {
    font-size: 1.1rem;
  }
}
.header__wrap .cart .cart-recap .cart-recap-data .subtotal small {
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (max-width: 992px) {
  .header__wrap .cart .cart-recap .cart-recap-data .subtotal small {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1366px) {
  .header__wrap .cart .cart-recap .cart-recap-data small {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrap .cart .cart-recap .cart-recap-data small {
    text-transform: uppercase;
  }
  .header__wrap .cart .cart-recap .cart-recap-data small span {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .cart .cart-recap .cart-recap-data small {
    text-transform: none;
  }
  .header__wrap .cart .cart-recap .cart-recap-data small span {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  .header__wrap .cart .cart-recap .cart-recap-data {
    -webkit-order: 1;
    order: 1;
    background-color: transparent;
    -webkit-justify-content: center;
    justify-content: center;
    height: auto;
  }
  .header__wrap .cart .cart-recap .cart-recap-data .ion-arrow-down-b {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .header__wrap .buy_online .visible-on-tablet:after {
    content: "\f3d0";
    font-family: "Ionicons";
    text-align: center;
    margin-left: 0.5rem;
    position: relative;
    color: #fff;
    line-height: 0;
  }
}
.header__wrap .menu-on-mobile {
  padding-right: 1rem;
}
.header__wrap .menu-on-mobile div {
  cursor: pointer;
  color: #BF2C88;
  border-radius: 3px;
  background-color: #fff;
  padding: 0.4rem 0.7rem;
}
.header__wrap .menu-on-mobile div strong {
  margin-left: 0.5rem;
  font-size: 1.1rem;
}
.header__wrap .menu-on-mobile div i {
  font-size: 1.8rem;
  line-height: 0;
}
.header__mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .header__mobile {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .header__mobile .search-wrap {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    /*@include order(3);*/
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header__mobile .search-wrap {
    -webkit-flex-basis: 41%;
    flex-basis: 41%;
    padding-left: 1.2em;
  }
}
.header__mobile .search-wrap .search-prod {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .header__mobile .search-wrap .search-prod {
    width: 100% !important;
  }
}
.header__mobile .search-wrap .search-prod .main-search {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .header__mobile .search-wrap .search-prod .main-search {
    position: initial;
  }
}
.header__mobile .search-wrap .search-prod .main-search form {
  width: 70%;
}
@media only screen and (max-width: 992px) {
  .header__mobile .search-wrap .search-prod .main-search form {
    width: 100%;
  }
}
.header__mobile .search-wrap .search-prod .nice, .header__mobile .search-wrap .search-prod .form--basso input:not([type=checkbox]):not([type=radio]), .form--basso .header__mobile .search-wrap .search-prod input:not([type=checkbox]):not([type=radio]) {
  width: 97%;
  /*border: 1px solid $thirdColor;*/
  border-right: 0;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 0.8rem;
  padding-left: 10px;
  height: 19px;
  border-radius: 50px;
}
@media only screen and (max-width: 768px) {
  .header__mobile .search-wrap .search-prod .nice, .header__mobile .search-wrap .search-prod .form--basso input:not([type=checkbox]):not([type=radio]), .form--basso .header__mobile .search-wrap .search-prod input:not([type=checkbox]):not([type=radio]) {
    padding-left: 10px;
  }
}
.header__mobile .search-wrap .search-prod input {
  margin: 0;
  font-size: 1em;
  height: 33px !important;
}
.header__mobile .search-wrap .search-prod input:focus {
  outline: none;
}
.header__mobile .search-wrap .search-prod button {
  background-color: #fcaf18;
  height: 34px;
  width: 39px;
  border: none;
  border-radius: 0px 50px 50px 0;
  background-image: url(/content/images/head/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -15px;
}
@media only screen and (max-width: 1366px) {
  .header__mobile .search-wrap .search-prod {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .header__mobile .search-wrap .search-prod {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .header__mobile .search-wrap .search-prod {
    height: 44px;
    padding-right: 0;
    -webkit-flex-basis: 35%;
    flex-basis: 35%;
  }
  .header__mobile .search-wrap .search-prod input {
    width: 100%;
  }
  .header__mobile .search-wrap .search-prod .mobile-search {
    height: 40px;
  }
  .header__mobile .search-wrap .search-prod .main-search {
    width: 100%;
  }
  .header__mobile .search-wrap .search-prod .main-search form {
    width: 100%;
  }
  .header__mobile .search-wrap .search-prod .main-search form .fast-search {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .header__mobile .search-wrap .search-prod {
    width: 100%;
    padding: 0;
  }
}

.promo-container {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .promo-container {
    margin-left: auto;
  }
}
.promo-container .discount {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  color: #fff;
}
.promo-container .discount h1 {
  margin: 0;
  font-size: 3em;
}
@media only screen and (max-width: 768px) {
  .promo-container .discount h1 {
    font-size: 2em;
  }
}
.promo-container .discount small {
  font-size: 0.5em;
}

#product-grid {
  clear: both;
  padding: 0;
  padding: 0 15px;
  display: -webkit-flex;
  display: flex;
}

#filters {
  text-align: right;
  font-size: 1em;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  #filters {
    border-top: 1px solid #aaa;
    padding-top: 10px;
    margin-top: 10px;
  }
}
#filters .ontheleftside {
  float: left;
}
#filters .filter {
  display: inline-block;
}
#filters .filter .label {
  font-size: 0.7em;
}
#filters .filter .filter-option {
  display: inline-block;
  padding: 3px 9px;
  margin: 0 0 0 0.5em;
  border-radius: 2px;
  border: 1px solid rgb(211.5, 211.5, 211.5);
  text-decoration: none;
  color: #878787;
  font-size: 0.775em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#filters .filter .filter-option i.fa {
  display: none;
  font-size: 12px;
}
#filters .filter .filter-option.active {
  background-color: #BF2C88;
  color: #fff;
  border-color: #BF2C88;
}
#filters .filter .filter-option.active i.fa {
  display: inline-block;
}
#filters .filter .filter-option:hover {
  background-color: #BF2C88;
  color: #fff;
  border-color: #BF2C88;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  #filters {
    width: 100%;
    padding: 1em 0;
    font-size: 0.775em;
    text-align: center;
  }
  #filters .filter {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
    overflow: hidden;
    float: none !important;
  }
  #filters .filter .label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1em;
  }
  #filters .filter .filter-option {
    display: inline-block;
    width: auto;
    margin: 0 1% 0 0;
    padding: 3px;
    float: none;
    text-align: center;
    font-size: 1em;
  }
}

.filter-main-title {
  color: #BF2C88;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin: 0;
  padding: 1em;
}
@media only screen and (max-width: 992px) {
  .filter-main-title {
    border: 0;
  }
}

@media only screen and (max-width: 992px) {
  .filter-block ul li {
    text-decoration: none;
  }
}
.filter-block ul li label {
  cursor: pointer;
}
.filter-block ul::after {
  clear: both;
}

.product-grid {
  clear: both;
  padding: 0;
}

.product-list {
  list-style: none;
  position: relative;
  padding: 1em 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .product-list {
    padding: 0;
  }
}
.product-list .li {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
  height: 470px;
}
@media only screen and (max-width: 1366px) {
  .product-list .li {
    width: 33%;
  }
}
@media only screen and (max-width: 992px) {
  .product-list .li {
    width: 50%;
    height: 190px;
  }
}
@media only screen and (max-width: 768px) {
  .product-list .li {
    height: inherit;
    width: 100%;
  }
}
.product-list .incartnumber {
  background-color: rgba(39, 28, 24, 0.8);
  width: 35px;
  padding-top: 8px;
  height: 35px;
  font-size: 11px;
  position: absolute;
  z-index: 5;
  right: 1em;
  top: 1em;
  border-radius: 10px;
  color: #fff;
  display: none;
}
.product-list .incartnumber span {
  font-size: 1.2em;
  line-height: 1;
  position: relative;
  top: 1px;
}
.product-list .product {
  display: block;
  width: 95%;
  padding-bottom: 1em;
  position: relative;
  font-family: "Lato", sans-serif;
  float: left;
  margin: 0;
  -webkit-transition: box-shadow, 0.1s, ease;
  transition: box-shadow, 0.1s, ease;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  position: relative;
}
.product-list .product .fa-shopping-cart {
  display: none;
}
@media screen and (min-width: 1024px) {
  .product-list .product {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .product-list .product .product-img a {
    position: relative;
    display: block;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .product-list .product .product-img a:hover:before {
    content: "\f149";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    color: #fff;
    font-family: "Ionicons";
    font-size: 2em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .product-list .product:hover .product-info h3 {
    max-height: 4.5em;
  }
}
.product-list .product .badge-weight-container {
  height: 2em;
  width: 20%;
  position: absolute;
  right: 0;
}
.product-list .product .badge-weight-container .badge-weight {
  line-height: 1;
  padding: 2px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  justify-content: flex-end;
  padding: 0 0.8em;
}
.product-list .product .badge-weight-container .badge-weight .svgtoinline {
  height: 25px;
  width: 25px;
  margin: 0;
  padding: 0;
}
.product-list .product .badge-weight-container .badge-weight .text-badge-weight {
  color: #303030;
  background-color: lightgoldenrodyellow;
  padding: 0.5em;
  top: -3.5em;
  position: absolute;
  display: none;
}
.product-list .product .badge-weight-container .badge-weight:hover {
  /*@include bp(tablet) {
      display: none;
  }*/
}
.product-list .product .badge-weight-container .badge-weight:hover .text-badge-weight {
  display: block;
}
@media only screen and (max-width: 992px) {
  .product-list .product .badge-weight-container .badge-weight {
    text-align: left;
  }
}
.product-list .product .product-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9;
}
.product-list .product .product-badge .promo-container .discount {
  position: relative;
  width: 100%;
  height: 30px;
  z-index: 99;
  color: #fff;
  background-color: #ED2324;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  top: 1em;
}
@media only screen and (max-width: 992px) {
  .product-list .product .product-badge .promo-container .discount {
    width: 65px;
    height: 30px;
    top: 0;
  }
}
.product-list .product .product-badge .promo-container .discount h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
}
@media only screen and (max-width: 992px) {
  .product-list .product .product-badge .promo-container .discount h3 {
    top: 5px;
    left: 0;
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }
}
.product-list .product .product-badge .promo-container .discount small {
  font-size: 0.5em;
}
.product-list .product .product-badge .upto {
  padding: 5px;
  color: #6f6e6e;
  font-size: 0.9em;
  /*background-color: #fff;*/
  margin-top: 1em;
}
@media only screen and (max-width: 992px) {
  .product-list .product .product-badge .upto {
    margin-top: 0;
    padding: 0;
    font-size: 0.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .product-list .product .product-badge .upto {
    display: none;
  }
}
.product-list .product .product-badge .spesamica {
  color: #fff;
  width: 70%;
  background-color: #BF2C88;
  font-size: 0.7em;
  text-transform: uppercase;
  position: absolute;
  margin-left: 100%;
  top: 0;
  border-radius: 3px;
}
.product-list .product .product-badge .spesamica i {
  color: #fff;
}
.product-list .product .product-special-info {
  height: 2em;
  text-align: left;
  margin: 0 auto;
  margin-top: -2em;
  max-width: 200px;
  padding: 0;
  position: absolute;
}
@media only screen and (max-width: 992px) {
  .product-list .product .product-special-info {
    display: none;
    position: static;
    margin-top: 1em;
  }
}
.product-list .product .product-special-info .special-icon {
  display: inline-block;
  font-size: 2.5em;
  height: 1em;
  position: relative;
  margin: 0 -3px;
  z-index: 999999;
  width: 40px;
  margin-right: 0.2em;
}
.product-list .product .product-special-info .special-icon .icon {
  vertical-align: top;
}
.product-list .product .product-special-info .special-icon img {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .product-list .product .product-special-info {
    height: auto;
    margin: 0 0 1em;
    display: none;
  }
  .product-list .product .product-special-info .special-icon {
    display: block;
    margin: 0;
    margin-right: 0.2em;
    height: auto;
    line-height: 1;
    font-size: 1.8em;
  }
  .product-list .product .product-special-info .special-icon .icon {
    vertical-align: middle;
  }
}
.product-list .product.inlist .incartnumber {
  display: none;
}
.product-list .product.inlist .action-add-product {
  display: none;
}
.product-list .product.inlist .action-add-product .icon {
  display: none;
}
.product-list .product.inlist .product-action-controls {
  display: block;
  width: auto;
  margin: 0;
  background: #BF2C88;
  color: #ffffff;
  font-size: 1.4em;
  max-width: 100%;
  padding: 0.34em;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  -webkit-animation: 0.3s ease fade-in;
  animation: 0.3s ease fade-in;
}
@media only screen and (max-width: 992px) {
  .product-list .product.inlist .product-action-controls {
    margin: 0 auto;
  }
}
.product-list .product.inlist .product-action-controls a, .product-list .product.inlist .product-action-controls .product-quantity {
  color: #fff;
  position: relative;
  float: left;
  width: 33.331%;
  text-decoration: none;
  height: 30px;
  line-height: 30px;
  font-size: 1em;
  font-weight: 500;
}
.product-list .product.inlist .product-action-controls a i, .product-list .product.inlist .product-action-controls .product-quantity i {
  margin: 0;
  position: relative;
  top: 0px;
}
.product-list .product.inlist .product-action-controls a.action-incr-product, .product-list .product.inlist .product-action-controls .product-quantity.action-incr-product {
  float: right;
}
.product-list .product.inlist .product-action-controls .product-quantity {
  position: absolute;
  left: 33%;
  right: 33%;
  font-size: 0.9em;
  width: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.product-list .product.inlist .product-action-controls .product-quantity .product-quantity-input {
  width: 100%;
  background-color: #BF2C88;
  color: #fff;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 0.8em;
  border: none;
  border-radius: 2px;
}
.product-list .product.inlist .product-action-controls .product-quantity .product-quantity-input:focus {
  outline: none;
  box-shadow: none;
}
.product-list .product.inlist .product-action-controls .product-quantity .product-quantity-confirm {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #BF2C88;
  right: -200%;
  border: none;
  display: block;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product-list .product.inlist .product-action-controls.edit-mode {
  box-shadow: 0px 0px 28px -7px #000;
}
.product-list .product.inlist .product-action-controls.edit-mode .product-quantity {
  left: 0;
}
.product-list .product.inlist .product-action-controls.edit-mode .product-quantity .product-quantity-input {
  background: #fff;
  color: #BF2C88;
  width: 80%;
  border-radius: 2px;
}
.product-list .product.inlist .product-action-controls.edit-mode .product-quantity .product-quantity-confirm {
  right: -50%;
}
.product-list .product.inlist.composer {
  border: 1px solid red;
}
.product-list .product.inlist.composer .action-add-product {
  display: block;
}
.product-list .product.inlist.composer .product-action-controls {
  display: none;
}
.product-list .product.not-available .add {
  display: none;
}
.product-list .product.not-available .price {
  display: none;
}
.product-list .product.not-available .not-available {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  padding: 1em 0;
  border: 1px solid #878787;
  color: #878787;
  border-width: 1px 0;
  margin: 0 auto 0;
  max-width: 170px;
}
.product-list .product-img {
  max-width: 200px;
  height: 200px;
  line-height: 200px;
  margin: 1em auto;
  white-space: nowrap;
}
@media only screen and (max-width: 992px) {
  .product-list .product-img {
    max-width: 100%;
  }
}
.product-list .product-img a {
  display: inline-block;
}
.product-list .product-img img {
  max-width: 100%;
  max-height: 180px;
  vertical-align: middle;
  position: relative;
  object-fit: contain;
}
@media only screen and (max-width: 992px) {
  .product-list .product-img img {
    max-width: 150px;
    max-height: 150px;
  }
}
.product-list .product-action-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0.5em;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.product-list .product-action-wrap .price-container {
  width: 50%;
}
.product-list .product-action-wrap-button {
  width: 100%;
  padding: 10px 5px;
}
.product-list .product-info {
  position: relative;
  z-index: 12;
  padding: 0.5em;
  margin: 0 auto;
  text-align: left;
}
.product-list .product-info h3 {
  text-align: left;
  font-size: 0.975em;
  font-weight: 300;
  padding: 0 0 0;
  margin: 0;
  color: #271c18;
  line-height: 1.3;
  min-height: 4em;
  max-height: 4em;
  font-weight: 600;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .product-list .product-info h3 {
    font-size: 1.1em;
  }
}
.product-list .product-info .brand-name {
  display: block;
  line-height: 1.5em;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgb(25.3303964758, 61.6740088106, 99.6696035242);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.05em;
  min-height: 1.5em;
}
@media only screen and (max-width: 768px) {
  .product-list .product-info .brand-name {
    font-size: 0.8em;
  }
}
.product-list .product-info .price-wrap {
  margin-top: 0.5em;
}
.product-list .product-info .product-meta {
  display: block;
  font-size: 0.675rem;
  line-height: 1em;
  color: #808080;
  min-height: 1em;
}
.product-list .product-info .product-meta.size {
  color: #271c18;
  font-size: 0.875rem;
  line-height: 1em;
  margin-top: 5px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .product-list .product-info .product-meta.size {
    font-size: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .product-list .product-info .product-meta {
    font-size: 1em;
  }
}
.product-list .product-info img {
  width: 25px;
  height: 25px;
  margin-bottom: 15px;
  margin-right: 10px;
}
.product-list .price-wrap .price {
  color: #2A418D;
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  .product-list .price-wrap .price {
    font-size: 1.3em;
  }
}
.product-list .price-wrap .old-price {
  text-decoration: line-through;
  font-size: 0.7em;
  padding-left: 10px;
  color: #808080;
}
@media only screen and (max-width: 768px) {
  .product-list .price-wrap .old-price {
    font-size: 1em;
  }
}
.product-list .price-wrap .special-price {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 10px 0 10px 0;
}
@media only screen and (max-width: 992px) {
  .product-list .price-wrap .special-price {
    font-size: 1.3em;
  }
}
.product-list .price-wrap .special-price.price {
  color: #ED2324;
}
.product-list .btn.add {
  width: 100%;
  background: #51B751;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0.8em 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  line-height: initial;
  margin: 0;
}
.product-list .btn.add:hover {
  background-color: #51B751;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1366px) {
  .product-list .btn.add {
    font-size: 1em;
  }
}
@media only screen and (max-width: 992px) {
  .product-list .btn.add {
    margin: 0 auto;
  }
}
.product-list .action-add-product {
  width: 100%;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5em 0;
  margin: 0.5em 0;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: 0.3s ease fade-in;
  animation: 0.3s ease fade-in;
}
.product-list .action-add-product span {
  vertical-align: middle;
}
.product-list .action-add-product .text {
  font-size: 1em;
  padding: 0 2px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.product-list .action-add-product .icon {
  width: 20px;
  padding: 0 5px 0 0;
}
@media only screen and (max-width: 1366px) {
  .product-list .action-add-product .icon {
    display: none;
  }
}
.product-list .action-add-product:hover {
  background: #51B751;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.product-list .action-add-product:hover span {
  color: #fff;
}
.product-list .product-action-controls {
  display: none;
}
@media only screen and (max-width: 768px) {
  .product-list .product-special-info {
    padding: 0 1em;
  }
  .product-list .product-img {
    max-width: 100%;
  }
  .product-list .product-info {
    max-width: 100%;
  }
  .product-list .product-action-wrap {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .list-item {
    min-height: auto !important;
  }
  /*.product-list {

      li {
          min-height: 200px;
      }

      .product {
          height: auto;
          padding: 0 !important;
      }

      .owl-stage {
          width: 100% !important;
          transform: none !important;
      }

      .owl-nav {
          display: none;
      }
  }*/
  .product-mobile-table {
    display: -webkit-flex;
    display: flex;
  }
  .product-mobile-table .product-img {
    max-width: 30%;
    width: 30%;
    height: auto;
    line-height: 1;
    margin: 0;
    padding: 10px;
  }
  .product-mobile-table .product-img img {
    width: 100%;
  }
  .product-mobile-table .product-info {
    max-width: 70% !important;
    width: 70%;
    height: auto;
    z-index: 0;
  }
  .product-mobile-table .product-info h3 {
    height: auto;
    max-width: 100%;
  }
}
@media only screen and (max-width: 992px) and (max-width: 768px) {
  .product-mobile-table .product-info h3 {
    font-size: 0.9em;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.product-page-section:after {
  content: "";
  display: table;
  clear: both;
}
.product-page-section h2 {
  color: #BF2C88;
  padding: 1em 0;
  margin: 0;
  display: inline-block;
  clear: both;
  float: none;
  font-weight: 600;
  font-size: 1em;
  position: relative;
}
.product-page-section h2:before {
  content: "";
  display: block;
  top: -10px;
  height: 10px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #BF2C88;
}

.price-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .price-container {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.price-container .price-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.load-more-wrap {
  clear: both;
  width: 100%;
  text-align: center;
}
.load-more-wrap .load-more-product {
  width: 30%;
  height: 38px;
  margin: 0 auto;
  background-color: #BF2C88;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.load-more-wrap .load-more-product:hover {
  background-color: #BF2C88;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.load-more-wrap .load-more-product img {
  margin-left: 15px;
  display: none;
  width: 24px;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .load-more-wrap .load-more-product {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .load-more-wrap .load-more-product {
    width: 70%;
  }
}
@media only screen and (max-width: 480px) {
  .load-more-wrap .load-more-product {
    width: 85%;
    font-size: 0.75rem;
  }
}
.load-more-wrap hr {
  width: 30%;
}
@media only screen and (max-width: 992px) {
  .load-more-wrap hr {
    width: 20%;
  }
}
@media only screen and (max-width: 768px) {
  .load-more-wrap hr {
    width: 10%;
  }
}
@media only screen and (max-width: 480px) {
  .load-more-wrap hr {
    width: 5%;
  }
}

.load-more-loading-icon {
  clear: both;
  text-align: center;
}

.load-more-items {
  height: 50px;
  margin-top: 20px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: rgba(238, 237, 237, 0.8);
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid rgb(238, 237, 237);
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.load-more-items span {
  color: #fff;
}
.load-more-items::before {
  content: "";
  width: 100%;
  position: absolute;
  top: -10px;
  border: 1px solid #eee;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .load-more-items {
    margin-top: 0;
  }
  .load-more-items::before {
    display: none;
  }
}
.load-more-items:hover {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.load-more-wrap-suggested-product {
  display: none;
}

.product-list .product.grom .product-action-controls {
  display: none !important;
}
.product-list .product.grom .action-add-product {
  display: block !important;
}

.top-ten-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0 1em;
  margin-top: 0;
  border-radius: 3px;
  /*  .product-list {
      li {
          width: 25%;
          margin-bottom: 0;

          @include bp(desktop) {
              width: 33%;
          }

          @include bp(mobile) {
              width: 100%;
              height: auto;
              border: none;

              .product {
              }
          }
          .product-info {
              text-align: left;
          }

      }
  }*/
}
.top-ten-wrapper .product-list {
  padding: 0;
  margin: 0;
}
.top-ten-wrapper .product-list .li {
  width: 100%;
  margin-bottom: 0;
}
.top-ten-wrapper .owl-next, .top-ten-wrapper .owl-prev {
  margin-left: 0;
  color: #979797 !important;
  top: 30% !important;
  font-size: 2em !important;
  padding: 10px 0px !important;
  background-color: #fff !important;
  box-shadow: 2px 0 15px 1px rgba(128, 128, 128, 0.65);
}
.top-ten-wrapper .owl-next:hover, .top-ten-wrapper .owl-prev:hover {
  background-color: #2E70B5 !important;
  color: #fff !important;
}

#noInfo {
  border: 1px solid #ccc;
  padding: 1em 0;
  border-width: 1px 0;
  text-align: center;
}

.product-favorites-action {
  /*position: absolute;*/
  width: 50%;
  text-align: center;
  display: -webkit-flex;
  display: flex;
}
.product-favorites-action .to-favorites {
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  line-height: 2.4em;
  width: 100%;
  border-radius: 0 10px 10px 0;
  display: block;
}
.product-favorites-action i {
  cursor: pointer;
  color: #BF2C88;
}
.product-favorites-action .favorites-tooltip {
  position: absolute;
  width: auto;
  right: 0;
  margin-left: -150px;
  top: -50px;
  z-index: 10;
  line-height: 1.1;
  padding: 1em;
  font-weight: 200;
  letter-spacing: 0.03em;
  font-size: 12px;
  display: block;
  background: #232222;
  border-radius: 5px;
  box-shadow: 0 5px 35px -10px #000;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity, 0.3s, ease;
  transition: opacity, 0.3s, ease;
  display: none !important;
}
.product-favorites-action .favorites-tooltip:before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 12px;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid black;
}

.product .remove-from-favorites-list {
  display: none !important;
}
.product.in-favorites-list .add-to-favorites-list.to-favorites {
  display: none;
}
.product.in-favorites-list .remove-from-favorites-list.to-favorites {
  display: block !important;
  border: none !important;
}

.to-favorites:hover .favorites-tooltip {
  opacity: 1;
}

.favorites .addAllToCartAction {
  border-top: 1px solid #BF2C88;
  margin: 1em 12px;
  padding: 2em 0;
}
.favorites .addAllToCartAction .ordinaTuttiBtn {
  width: auto;
  display: inline-block;
  margin: 0 auto;
  font-size: 1em;
}

/*  SEARCH  */
.search-head {
  position: relative;
  border-bottom: 2px solid #e1e1e1;
  /*
      .page-title:before {
      display: none;
  }
   &:after {
      content: '';
      display: block;
      width: 100%;
      height: 2px;
      background: #e1e1e1;
      @include border-radius(10px);
      margin-top: 1.5em;

      @include bp(tablet) {
          background-color: #ccc;
          height: 1px;
      }
  }*/
}

.search-with-filters .wrong-search {
  overflow: hidden;
}
.search-with-filters .wrong-search h3 {
  margin: 30px 0 1em 30px;
}
.search-with-filters .wrong-search ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 30px;
}
.search-with-filters .wrong-search ul li {
  font-size: 0.875em;
}
.search-with-filters .wrong-search ul li a {
  text-decoration: none;
  font-weight: 600;
}

.orderby {
  text-align: right;
  font-size: 1em;
  padding-top: 1em;
  overflow: hidden;
}
.orderby .ontheleftside {
  float: left;
}
.orderby .filter {
  display: inline-block;
}
.orderby .filter .label {
  display: inline-block;
  font-weight: normal;
  color: #000;
  margin-right: 0.5em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1;
}
.orderby .filter .filter-option {
  display: inline-block;
  padding: 3px 9px;
  margin: 0;
  border-radius: 2px;
  text-decoration: none;
  background: #fff;
  vertical-align: middle;
  line-height: 1;
}
.orderby .filter .filter-option.active {
  background-color: #BF2C88;
  color: #fff;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .orderby {
    width: 100%;
    padding: 1em 0;
    font-size: 0.775em;
    text-align: center;
    border-top: 1px solid #ccc;
  }
  .orderby .filter {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
    overflow: hidden;
    float: none !important;
    font-size: 1rem;
  }
  .orderby .filter .label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1em;
  }
  .orderby .filter .filter-option {
    display: inline-block;
    width: auto;
    margin: 0 1% 0 0;
    padding: 3px;
    float: none;
    text-align: center;
    font-size: 1em;
  }
}

/*FILTER*/
.main-filters-mobile-trigger {
  display: none !important;
}

@media only screen and (max-width: 992px) {
  .filtered-products {
    width: 100% !important;
  }
  #filters-block {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    display: block;
    margin: 0;
    z-index: 0;
    font-size: 1em;
    background: #f8f8f8;
    padding-right: 10%;
    overflow-y: scroll;
    padding-top: 1em;
    box-shadow: inset 5px 0px 20px -9px #999999;
    display: none;
  }
  #filters-block .filter-main-title {
    font-size: 1.225em;
    font-weight: bold;
    color: #BF2C88;
    margin: 0;
  }
  #filters-block .unfilter {
    margin: 0 0.5em;
  }
  #filters-block .extended-filters {
    background: none;
  }
  .main-filters-mobile-trigger {
    display: inline-block !important;
    margin: 1em 0;
    cursor: pointer;
    font-size: 1rem !important;
  }
}
#filters-block {
  max-width: 25%;
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  padding-left: 1em;
}
@media only screen and (max-width: 992px) {
  #filters-block {
    max-width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}

.filtered-products.col-10 {
  max-width: 80%;
  -webkit-flex-basis: 80%;
  flex-basis: 80%;
}
@media only screen and (max-width: 992px) {
  .filtered-products.col-10 {
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 1367px) {
  .filtered-products.col-10 li {
    width: 25%;
  }
}
@media only screen and (max-width: 1366px) {
  .filtered-products.col-10 li {
    width: 20%;
  }
}
@media only screen and (max-width: 992px) {
  .filtered-products.col-10 li {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .filtered-products.col-10 li {
    width: 100%;
  }
}

.extended-filters {
  padding: 0 1.5em 1em;
  z-index: 10;
}
.extended-filters #categoryname-filter-block {
  display: none !important;
}

.unfilter {
  float: right;
  font-size: 1em;
  color: #BF2C88;
  background: none;
  border: none;
  margin: 1.225em 0 0;
  cursor: pointer;
  display: none;
}

.filter-block.many {
  position: relative;
  padding-bottom: 2em;
}
.filter-block.many .more {
  position: absolute;
  bottom: 0;
  font-size: 0.675em;
  display: block;
  color: #BF2C88;
  cursor: pointer;
  background: #f8f8f8;
  width: 100%;
  padding: 5px 0 7px;
  box-shadow: 0px 0px 5px 5px #f8f8f8;
}
.filter-block.long {
  max-height: none;
}
.filter-block .filter-title {
  font-weight: 600;
  color: #000;
  font-size: 0.875em;
  padding: 0;
  margin: 0 0 1em;
}
.filter-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-block ul li {
  display: block;
  margin: 0;
  font-size: 0.875em;
  margin-bottom: 0.8em;
  position: relative;
}
.filter-block ul li input {
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  position: relative;
  top: 0;
  float: left;
  visibility: hidden;
}
.filter-block ul li label {
  color: #000;
  vertical-align: middle;
  line-height: 1.5;
  display: block;
  padding-left: 19px;
  text-indent: 0;
  font-size: 0.8rem;
}
.filter-block ul li label:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background: #ccc;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.filter-block ul li:hover label {
  color: #BF2C88;
  cursor: pointer;
}
.filter-block ul li:hover label:before {
  background-color: #2E70B5;
}
.filter-block ul li.disable input {
  opacity: 0.5;
  cursor: default;
}
.filter-block ul li.disable label {
  color: #ccc;
  cursor: default;
}
.filter-block ul li.disable:hover label {
  color: #ccc;
}
.filter-block ul li.selected label:before {
  background-color: #BF2C88;
}
.filter-block ul li.selected label {
  font-weight: bold;
}

.product-detail .fun {
  color: #BF2C88;
}
.product-detail .visible-on-tablet {
  display: none !important;
}
@media only screen and (max-width: 992px) {
  .product-detail .visible-on-tablet {
    display: block !important;
  }
}
.product-detail .product {
  width: 100%;
}
.product-detail .product .product-special-info {
  text-align: left;
  max-width: 200px;
  padding: 0.5em 0;
}
.product-detail .product .product-special-info .special-icon {
  display: inline-block;
  font-size: 2.5em;
  height: 1em;
  position: relative;
  margin: 0 -3px;
  z-index: 999999;
  width: 40px;
  margin-right: 0.2em;
}
.product-detail .product .product-special-info .special-icon .icon {
  vertical-align: top;
}
.product-detail .product .product-special-info .special-icon img {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .product-detail .product .product-special-info {
    height: auto;
    margin: 0 0 1em;
    display: none;
  }
  .product-detail .product .product-special-info .special-icon {
    display: block;
    margin: 0;
    margin-right: 0.2em;
    height: auto;
    line-height: 1;
    font-size: 1.8em;
  }
  .product-detail .product .product-special-info .special-icon .icon {
    vertical-align: middle;
  }
}
.product-detail .popup-controls {
  margin: 1em 0;
  clear: both;
  border-top: 1px solid #9b8f8f;
  overflow: hidden;
  padding: 1.5em 0 0;
}
.product-detail .popup-controls .btn {
  display: inline-block;
  width: auto;
  margin: 0 !important;
  padding: 1em 1.5em;
  font-size: 0.875em !important;
  background: #fff;
  border: 1px solid #BF2C88 !important;
  color: #BF2C88 !important;
}
.product-detail .popup-controls .btn.right {
  float: right;
}
.product-detail .image-wrap, .product-detail .popup-product-info {
  margin: 1em 5px;
  text-align: center;
}
.product-detail .image-wrap {
  position: relative;
  overflow: hidden;
}
.product-detail .zoomPanel {
  background-color: #fff;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  box-shadow: 0px 0px 40px -3px #ccc;
  display: none;
  overflow: hidden;
}
.product-detail .zoomPanel .close-zoom {
  position: absolute;
  right: 5px;
  top: 5px;
  height: auto;
  line-height: 1;
  width: 2em;
  height: 2em;
  background: #fff;
  line-height: 2em;
  z-index: 100;
  color: #BF2C88;
  border-radius: 100%;
}
.product-detail .zoomPanel .load-more-loading-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  background-color: #fff;
}
.product-detail .zoomPanel .load-more-loading-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1;
}
.product-detail .main-thumbs {
  width: 100%;
}
.product-detail .main-thumbs .main-thumb-ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.product-detail .main-thumbs .main-thumb-ul > li {
  border: 1px solid #ccc;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.05);
  height: 40px;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
}
.product-detail .main-thumbs .main-thumb-ul > li img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  cursor: pointer;
}
.product-detail .main-thumbs .lb {
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.675em;
  padding: 10px 0;
}
.product-detail .popup-product-info {
  position: relative;
}
.product-detail .popup-product-info .h1 {
  font-family: "Lato", sans-serif;
  margin: 0;
}
.product-detail .popup-product-info .h1.h1__title {
  color: #BF2C88;
}
.product-detail .popup-product-info .badgeSpecial {
  text-align: left;
  background-color: #cc2529;
  padding: 1em;
  width: fit-content;
}
.product-detail .popup-product-info .badgeSpecial .upto {
  font-weight: 600;
  color: #fff;
  font-size: 1.4em;
}
.product-detail .popup-product-info .popup-product-info__wrap-cta {
  color: #808080;
}
.product-detail .popup-product-info .p {
  font-size: 0.9em;
}
.product-detail .popup-product-info .p.p__description {
  color: #808080;
}
.product-detail .popup-product-info .price-wrap {
  padding: 10px 0;
}
.product-detail .popup-product-info .icon-container {
  margin-top: 20px;
}
.product-detail .popup-product-info .icon-container .icon-container__item {
  position: relative;
}
.product-detail .popup-product-info .icon-container .icon-container__item img {
  max-height: 25px;
}
.product-detail .popup-product-info .icon-container .icon-container__item .icon-tooltip {
  position: absolute;
  width: auto;
  top: 101%;
  z-index: 10;
  line-height: 1.1;
  padding: 1em;
  font-weight: 200;
  letter-spacing: 0.03em;
  font-size: 12px;
  display: block;
  background: #232222;
  border-radius: 5px;
  box-shadow: 0 5px 35px -10px #000;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity, 0.3s, ease;
  transition: opacity, 0.3s, ease;
}
.product-detail .popup-product-info .icon-container .icon-container__item .icon-tooltip:before {
  content: "";
  position: absolute;
  top: -5px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid black;
}
.product-detail .popup-product-info .icon-container .icon-container__item:hover .icon-tooltip {
  opacity: 1;
}
.product-detail .popup-product-info h1 {
  color: #271c18;
  text-transform: capitalize;
  line-height: 1.35;
  font-weight: 600;
  font-size: 1.5em;
  margin-top: 0;
  text-align: left;
}
.product-detail .popup-product-info .sub-info {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  overflow: hidden;
  letter-spacing: 0.03em;
  font-size: 0.675em;
}
.product-detail .popup-product-info .sub-info .sub-info-left {
  text-align: left;
  float: left;
  width: 50%;
  font-weight: 600;
}
.product-detail .popup-product-info .sub-info .sub-info-right {
  float: right;
  width: 50%;
  text-align: right;
}
.product-detail .popup-product-info .sub-info .sub-info-right span {
  color: #BF2C88;
  font-weight: 600;
  text-transform: uppercase;
}
.product-detail .popup-product-info .price-info {
  display: table;
  width: 100%;
  padding: 0;
}
.product-detail .popup-product-info .price-info .lb {
  display: table-cell;
  width: 40%;
  font-size: 0.675em;
  vertical-align: middle;
  letter-spacing: 0.03em;
}
.product-detail .popup-product-info .price-info .price-info-val {
  display: table-cell;
  vertical-align: middle;
  width: 60%;
  text-align: left;
}
.product-detail .popup-product-info .price-info .price-info-val .product-special-info, .product-detail .popup-product-info .price-info .price-info-val .brand-name, .product-detail .popup-product-info .price-info .price-info-val h3 {
  display: none;
}
.product-detail .popup-product-info .price-info .price-info-val .badge-weight {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .product-detail .popup-product-info .price-info .price-info-val .badge-weight {
    flex-direction: row-reverse;
  }
}
.product-detail .popup-product-info .price-info .price-info-val .badge-weight .text-badge-weight {
  padding: 5px;
}
.product-detail .popup-product-info .price-info .price-info-val .product-favorites-action {
  padding-top: 1em;
  width: 10%;
}
@media only screen and (max-width: 992px) {
  .product-detail .popup-product-info .price-info .price-info-val .product-favorites-action {
    margin: 0 auto;
  }
}
.product-detail .popup-product-info .price-info .price-info-val .price {
  font-size: 2em;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.05em;
  display: inline-block;
  margin-left: 5px;
}
.product-detail .popup-product-info .price-info .price-info-val .price.special-price {
  color: #cc2529;
}
.product-detail .popup-product-info .price-info .price-info-val .old-price {
  font-size: 1.5em;
  text-decoration: line-through;
  font-weight: 400;
  color: #ccc;
  padding-left: 10px;
}
.product-detail .popup-product-info .warning-message {
  margin-top: 10px;
  font-size: 0.7em;
  color: lightgray;
}
.product-detail .popup-product-info .other-info {
  color: #808080;
}
.product-detail .popup-product-info .badge-weight {
  float: right;
}
.product-detail .popup-product-info .badge-weight i {
  font-size: 1.1em;
}
.product-detail .popup-product-info .badge-weight::after {
  clear: both;
}
.product-detail .product-action-wrap {
  width: 100%;
  display: flex;
}
.product-detail .product-action-wrap-button {
  width: 50%;
}
.product-detail .product-action-wrap-button .btn.add {
  width: 50%;
  background: #51B751;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0.6em 0;
  /*font-weight: 700;*/
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50px;
  color: #fff;
  line-height: initial;
  margin: 0;
}
.product-detail .product-action-wrap-button .btn.add:hover {
  background-color: #51B751;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1366px) {
  .product-detail .product-action-wrap-button .btn.add {
    font-size: 1em;
  }
}
@media only screen and (max-width: 992px) {
  .product-detail .product-action-wrap-button .btn.add {
    margin: 0 auto;
    padding: 0.5em 0;
  }
}
@media only screen and (max-width: 992px) {
  .product-detail .product-action-wrap-button {
    width: 100%;
  }
}
.product-detail .action-add-product .text {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.product-detail .action-add-product .icon {
  width: 30px;
  padding: 0 5px 0 0;
}
@media only screen and (max-width: 1366px) {
  .product-detail .action-add-product .icon {
    display: none;
  }
}
.product-detail .product-action-controls {
  display: none;
}
.product-detail .product-action-controls .product-quantity, .product-detail .product-action-controls a {
  font-weight: 300;
}
.product-detail #MultiPartContainer {
  margin: 0;
  padding: 0;
}
.product-detail #MultiPartContainer .popup-accordion {
  margin: 10px;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content {
  display: none;
  padding: 15px 15px 30px;
  border: 2px solid #eee;
  color: #303030;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-preparation .h3 {
  color: #151515;
  font-weight: 300;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-preparation .h3.h3--title-sub-tab {
  color: rgb(238, 237, 237);
  text-transform: uppercase;
  font-size: 1.5em;
  margin-top: 0;
  border-bottom: 1px solid #eee;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-preparation .h3.h3--no-margin {
  margin: 0;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-preparation .h3 img {
  max-height: 28px;
  vertical-align: top;
  display: inline-block;
  margin-right: 5px;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-preparation .description {
  color: #484747;
  text-align: justify;
  font-size: 0.9em;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-preparation .acc-block {
  border: 0;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-conservation .acc-block {
  border-color: #eee;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .product-detail #MultiPartContainer .popup-accordion .acc-content.product-conservation .acc-block .col62 {
    width: 62%;
  }
  .product-detail #MultiPartContainer .popup-accordion .acc-content.product-conservation .acc-block .col37 {
    width: 37%;
  }
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-conservation .acc-block h3 {
  color: #151515;
  margin: 5px 0;
  font-weight: 300;
  font-size: 1em;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-conservation .acc-block h3 .ion-ios-checkmark {
  color: green;
  font-size: 2em;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content.product-conservation .acc-block h3 .ion-close-round {
  color: red;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content .table {
  font-size: 1em;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content .table th {
  font-size: 1.1em;
  color: rgb(238, 237, 237);
}
.product-detail #MultiPartContainer .popup-accordion .acc-content .acc-block {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content .acc-block:last-child {
  border: none;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content .acc-block .ingredients {
  font-size: 0.8em;
  line-height: 1.6em;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content hr {
  margin: 1em 0;
  background: #fff;
  border: none;
  border-bottom: 1px solid #ccc;
}
.product-detail #MultiPartContainer .popup-accordion .acc-content table {
  font-size: 12px;
}
.product-detail #MultiPartContainer .popup-accordion .title {
  padding: 5px 10px;
  color: #BF2C88;
  font-weight: 600;
  cursor: default;
  border-bottom: 1px solid #BF2C88;
  text-transform: uppercase;
  font-size: 1.2em;
}
.product-detail #MultiPartContainer .accordion {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}
.product-detail #MultiPartContainer .accordion > li {
  font-size: 1em;
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .product-detail #MultiPartContainer .accordion > li {
    display: block;
  }
}
.product-detail #MultiPartContainer .accordion > li.open h3 {
  background-color: #BF2C88;
  color: #fff;
}
.product-detail #MultiPartContainer .accordion > li > h3 {
  padding: 15px;
  cursor: pointer;
  font-size: 1em;
  color: #868686;
  margin: 0;
  /* border-top-left-radius: 5px;
      border-top-right-radius: 5px;*/
}
.product-detail #MultiPartContainer .accordion > li > h3 i {
  margin-right: 0.5em;
}
@media only screen and (max-width: 992px) {
  .product-detail #MultiPartContainer .accordion > li > h3 {
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .product-detail #MultiPartContainer .accordion > li > h3 {
    margin: 0;
    height: initial;
  }
}
.product-detail #MultiPartContainer .accordion > li > h3.active {
  color: #BF2C88;
}
.product-detail.inlist .action-add-product {
  display: none;
}
.product-detail.inlist .action-add-product .icon {
  display: none;
}
.product-detail.inlist .product-action-controls {
  display: block;
  width: 50%;
  background: #BF2C88;
  color: #ffffff;
  font-size: 1.4em;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
}
.product-detail.inlist .product-action-controls a, .product-detail.inlist .product-action-controls .product-quantity {
  color: #fff;
  position: relative;
  float: left;
  width: 33.331%;
  text-decoration: none;
  height: 37px;
  line-height: 34px;
  font-size: 1em;
  font-weight: 500;
}
.product-detail.inlist .product-action-controls a i, .product-detail.inlist .product-action-controls .product-quantity i {
  margin: 0;
  position: relative;
  top: 0px;
}
.product-detail.inlist .product-action-controls a.action-incr-product, .product-detail.inlist .product-action-controls .product-quantity.action-incr-product {
  float: right;
}
.product-detail.inlist .product-action-controls .product-quantity {
  position: absolute;
  left: 33%;
  right: 33%;
  width: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.product-detail.inlist .product-action-controls .product-quantity .product-quantity-input {
  width: 100%;
  color: #fff;
  background-color: #BF2C88;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 0.8em;
  border: none;
  border-radius: 25px;
}
.product-detail.inlist .product-action-controls .product-quantity .product-quantity-input:focus {
  outline: none;
  box-shadow: none;
}
.product-detail.inlist .product-action-controls .product-quantity .product-quantity-confirm {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #BF2C88;
  right: -200%;
  border: none;
  display: block;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.product-detail.inlist .product-action-controls a {
  font-size: 22px;
}
@media screen and (min-width: 1024px) {
  .product-detail.inlist .product-action-controls a:hover {
    background-color: #BF2C88;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
.product-detail.inlist .product-action-controls.edit-mode {
  box-shadow: 0px 0px 28px -7px #000;
}
.product-detail.inlist .product-action-controls.edit-mode .product-quantity {
  left: 0;
}
.product-detail.inlist .product-action-controls.edit-mode .product-quantity .product-quantity-input {
  background: #fff;
  color: #BF2C88;
  border-radius: 5px;
  width: 80%;
}
.product-detail.inlist .product-action-controls.edit-mode .product-quantity .product-quantity-confirm {
  right: -50%;
}
.product-detail.inlist.composer {
  border: 1px solid red;
}
.product-detail.inlist.composer .action-add-product {
  display: block;
}
.product-detail.inlist.composer .product-action-controls {
  display: none;
}

.related-products h2 {
  width: 100%;
  font-size: 2em;
  text-align: center;
}
.related-products .product-list {
  padding: 0;
  margin: 0;
}
.related-products .product-list .product .badge-weight {
  position: relative;
  top: 5px;
  left: auto;
  border: none;
  right: auto;
}
.related-products .product-list .product .productCampaignMarker {
  display: none !important;
}
.related-products .product-list .li {
  width: 25%;
  border: none;
  height: initial;
}
@media only screen and (max-width: 992px) {
  .related-products .product-list .li {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .related-products .product-list .li {
    width: 100%;
  }
}
.related-products .product-list .li .product-info {
  text-align: left;
}
.related-products .product-list .li .product-info h3 {
  line-height: 1.3;
}
.related-products .product-list .li .price-wrap {
  min-height: 4em;
}
.related-products .product-list .li .product-action-wrap {
  float: none;
}
.related-products .product-list .li .product-img {
  max-width: 100px;
  height: 100px;
  line-height: 100px;
}
.related-products .product-list .li .product-img a {
  height: 100px;
}
.related-products .product-list .li .product.not-available .not-available {
  max-width: 100%;
  padding: 0;
  border: none;
  font-size: 0.875em;
  letter-spacing: 0;
  margin: 1em;
}

.remodal {
  overflow: hidden;
  max-width: 500px;
  text-align: left;
  border-radius: 5px;
}
.remodal.addressAutocomplete p {
  padding: 0 1em;
  font-size: 1.1em;
}
.remodal.addressAutocomplete #addressAutocompleteItem .addressListItem span {
  display: flex;
  flex-direction: column;
  font-size: 1.1em;
}
.remodal.addressAutocomplete #addressAutocompleteItem .addressListItem span .autocompleteItem {
  width: 100%;
  padding: 0.5em 1em;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  color: #303030;
}
.remodal.addressAutocomplete #addressAutocompleteItem .addressListItem span .autocompleteItem:hover {
  background-color: rgba(191, 44, 136, 0.4);
}
.remodal.spesaveloce header {
  background-color: #BF2C88;
}
.remodal.spesaveloce .flash-box {
  padding: 0 1em 1em;
}
.remodal.spesaveloce .flash-box .multipleSearch-main {
  font-size: 1.1em;
}
.remodal.spesaveloce .flash-box .multipleSearchWrap {
  display: flex;
}
.remodal.spesaveloce .flash-box .multipleSearchWrap .addProduct {
  width: 50px;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.remodal.spesaveloce .flash-box .multipleSearchWrap .addProduct:hover {
  background-color: #BF2C88;
}
.remodal.spesaveloce .flash-box .multipleSearchResults .searchList {
  list-style-type: none;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}
.remodal.spesaveloce .flash-box .multipleSearchResults .searchList li {
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.remodal.spesaveloce .flash-box .multipleSearchResults .searchList .boo {
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 10px 0;
}
.remodal.spesaveloce .flash-box .multipleSearchResults .searchList .ion-ios-close-empty {
  font-size: 2em;
  padding-right: 10px;
}
.remodal.spesaveloce .flash-box .multisearch {
  background-color: #80bd00;
  border: 1px solid #80bd00;
  color: #fff;
  font-size: 1.2em;
}
.remodal.spesaveloce .flash-box .multisearch:hover {
  /*text-decoration: underline;*/
}
.remodal.spesaveloce .flash-box .resetList {
  border: none;
  font-size: 1.1em;
  margin: 20px 20%;
  width: 60%;
  text-align: center;
  background-color: white;
}
.remodal.spesaveloce .flash-box .resetList:hover {
  text-decoration: underline;
}
.remodal.privacypopup {
  max-width: 768px;
  font-size: 0.9em;
}
.remodal.privacypopup h1 {
  color: #fff;
}
.remodal.privacypopup h3 {
  margin: 2em 0 0.3em;
}
.remodal.product-popup {
  padding: 1em 25px;
  max-width: 1024px;
}
.remodal.product-popup .remodal-close {
  background-color: #BF2C88;
  color: white;
}
.remodal.cartmodal {
  max-width: 90rem;
  max-height: 98%;
  min-height: 30%;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  .remodal.cartmodal {
    overflow-y: auto;
  }
}
.remodal.cartmodal .remodal-close {
  color: #fff !important;
}
.remodal#favorite-popup {
  padding: 20px;
  padding-bottom: 1em;
  max-width: 450px;
}
.remodal#favorite-popup .image {
  text-align: center;
  width: 40%;
}
.remodal#favorite-popup .image img {
  max-width: 100%;
  max-height: 150px;
}
.remodal#favorite-popup h2 {
  line-height: 1.2;
  color: #BF2C88;
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.remodal#favorite-popup h2 span {
  font-weight: bold;
}
.remodal#favorite-popup h3 {
  font-size: 1em;
  line-height: 1.3;
  margin: 0 0 1em;
  min-height: auto;
  height: auto;
}
.remodal#favorite-popup .stop-boring {
  font-color: #ccc;
  font-size: 0.75em;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #ccc;
}
.remodal#favorite-popup .wrapper {
  float: none !important;
}
.remodal#favorite-popup .product-info {
  max-width: 100%;
  border: 1px solid #ccc;
  border-width: 1px 0;
  padding: 2em 0;
}
.remodal#favorite-popup button {
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 15px 1.5em;
}
.remodal#favorite-popup p {
  text-align: center;
}
.remodal#favorite-popup .product-favorites-action {
  display: none;
}
.remodal#favorite-popup .remodal-cancel {
  margin-right: 1em;
  border: 1px solid #ccc;
  color: #333;
  background: #fff;
  font-weight: 500;
  float: left;
}
.remodal#favorite-popup .remodal-confirm {
  border: 1px solid #BF2C88;
  color: #BF2C88;
  background: #fff;
  float: right;
  padding: 15px 2em;
}
@media only screen and (max-width: 768px) {
  .remodal#favorite-popup .remodal-confirm {
    padding: 15px 0;
  }
}
.remodal#favorite-popup footer {
  overflow: hidden;
  border: none;
  padding: 1em 0;
  margin: 0;
}
.remodal.invoice-information {
  max-width: 768px;
}
.remodal.service-map {
  font-size: 1em;
  max-width: 80%;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  .remodal.service-map {
    max-width: 100%;
  }
}
.remodal.service-map .remodal-close {
  right: -2em;
  top: -2em;
}
.remodal.service-map .select-service {
  overflow: hidden;
  padding: 1em;
}
.remodal.service-map .map-list {
  margin: 0;
}
.remodal.shippingInfo {
  max-width: 600px;
}
.remodal.shippingInfo h2 {
  margin: 0;
  padding-top: 0.5em;
}
.remodal.shippingInfo .cont {
  padding: 1em;
}
.remodal.shippingInfo p {
  margin: 1em 0;
}
.remodal.shippingInfo .row {
  font-size: 1.225em;
  border-bottom: 1px solid #ccc;
  padding: 1em 1em;
  margin: 0;
}
.remodal.shippingInfo .more {
  color: #cc2529;
  font-style: italic;
  margin: 2em 0 0;
}
.remodal.shippingInfo .table-style {
  border: 2px solid #BF2C88;
  padding: 0;
  font-weight: 600;
  text-align: right;
}
.remodal.shippingInfo .table-style .label {
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
}
.remodal .or-lined {
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
  margin: 2em 0;
  height: 0;
  text-align: center;
}
.remodal .or-lined span {
  position: relative;
  top: -10px;
  display: inline-block;
  background: #fff;
  padding: 0 1em;
}
.remodal .remodal-close {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.remodal .remodal-close:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal.remodal.timeslots {
  max-width: 668px;
}
.remodal.remodal.timeslots section {
  padding-bottom: 0rem;
}
.remodal.remodal.timeslots .btn {
  margin: 2rem 0;
}
.remodal.ConfirmationMergeCartPopup .container {
  margin: 0.5em;
}
.remodal.ConfirmationMergeCartPopup .container p {
  padding: 0 0.5em;
}
.remodal.ConfirmationMergeCartPopup .container .row {
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}
.remodal.ConfirmationMergeCartPopup .container .btn {
  width: 45%;
  margin: 0 2.5%;
}
.remodal.ConfirmationMergeCartPopup .container .btn a {
  color: white;
}
.remodal.ConfirmationMergeCartPopup .container .btn:hover {
  border-color: #BF2C88;
  background-color: #BF2C88;
}
.remodal.ConfirmationMergeCartPopup .container .btn:hover a {
  color: #FCAF18;
}
.remodal.ConfirmationMergeCartPopup .container .btn a {
  text-decoration: none;
}
.remodal.MergeCartPopup p {
  padding: 0 1em;
}
.remodal header {
  position: relative;
  height: 50px;
  color: #fff;
  background-color: #BF2C88;
  /*border-bottom: 1px solid $mainColorDark;*/
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.remodal header.title-modal-landing {
  height: 100px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #BF2C88;
  padding: 0 10px;
}
.remodal header img {
  padding-right: 10px;
  width: 10%;
}
.remodal header h2 {
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .remodal header h2 {
    font-size: 1.125rem;
  }
}
.remodal .btn {
  color: #fff !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal .btn:hover {
  box-shadow: 2px 2px 2px rgba(39, 28, 24, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal .message {
  background-color: rgba(191, 44, 136, 0.1);
  padding: 1rem;
  text-align: center;
  line-height: 1.3rem;
  margin-bottom: 0;
}
.remodal .message.success {
  background-color: rgba(0, 128, 0, 0.3);
}
@media only screen and (max-width: 768px) {
  .remodal p {
    padding: 0 0.5em;
  }
}
.remodal .popup header, .remodal .delivery-service-detail header {
  padding: 10px;
}
.remodal .popup header h2, .remodal .popup header h3, .remodal .delivery-service-detail header h2, .remodal .delivery-service-detail header h3 {
  margin: 0;
}
.remodal .popup section, .remodal .popup .delivery-info, .remodal .delivery-service-detail section, .remodal .delivery-service-detail .delivery-info {
  padding: 1.5em 3em 1em;
}
@media only screen and (max-width: 768px) {
  .remodal .popup section, .remodal .popup .delivery-info, .remodal .delivery-service-detail section, .remodal .delivery-service-detail .delivery-info {
    padding: 1em;
  }
}
.remodal .popup .delivery-info .zipcode-slide-change, .remodal .delivery-service-detail .delivery-info .zipcode-slide-change {
  font-size: 1em;
  text-decoration: underline;
}
.remodal .popup .alert, .remodal .delivery-service-detail .alert {
  font-size: 0.9em;
}
.remodal .popup .btn, .remodal .delivery-service-detail .btn {
  font-size: 1.2em;
}
.remodal .popup.registration section {
  padding-bottom: 0;
}
.remodal .map-trigger {
  margin-top: 1em;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #BF2C88;
}
.remodal .map-trigger:hover {
  box-shadow: 0 0 5px rgba(39, 28, 24, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal .or {
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  color: #BF2C88;
}
.remodal .content {
  padding: 20px;
}
.remodal .content h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.remodal .content .selectric {
  text-align: left;
}
.remodal .content .button[type=submit] {
  margin-top: 10px;
}
.remodal footer {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal footer p i {
  padding-right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal footer p:hover i {
  padding-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.remodal footer p a {
  text-decoration: none;
  color: #271c18;
}
.remodal .sliding-wrapper .sliding-panel {
  display: none;
  margin: 0 auto;
}
.remodal .sliding-wrapper .sliding-panel.current {
  display: block;
}
.remodal .sliding-wrapper .sliding-panel .sliding-panel-content {
  position: relative;
  transition: 0.3s ease-in-out;
}
.remodal .sliding-wrapper #sliding-panel-1 {
  max-width: 960px;
}
.remodal .sliding-wrapper footer {
  padding: 1em;
}

.login .status-message.error {
  color: red;
  font-weight: bold;
  padding: 0.5em;
  border: 1px solid red;
  text-align: center;
  border-width: 2px 0;
  margin-top: 0.5em;
}
.login .forgot-password {
  width: 100%;
  font-size: 0.875em;
  padding: 1em 0 0;
  text-align: center;
}
.login .confirm-wrap {
  float: right;
  width: 35%;
}

.fb {
  text-transform: none;
  background: #47639e;
  display: block;
  width: 100%;
  color: #fff;
  border: none;
  font-size: 1em;
  position: relative;
  border-radius: 4px;
}

hr {
  border: none;
  border-bottom: 1px solid #ccc;
  height: 0;
  margin: 2em 0;
}

/*
.helpPopup {
    text-align: left;
    max-width: 600px;
    font-family: $title;

    &__title {
        font-size: 3em;
        color: $mainColor;
    }

    p {
        font-size: .775em;
        line-height: 1.3;
        color: $greylink;
    }

    strong, a {
        font-weight: 700;
        color: $mainColor;
        text-decoration: none;
    }

    &__desc {
        font-weight: 500;
        font-size: 1em !important;
        color: $black !important;
        line-height: 1.3;
    }

    &__blocks {
        overflow: hidden;
        margin-left: -10px;
        margin-right: -10px;
    }

    &__block {
        width: 50%;
        padding: 10px;
        float: left;

        &--full {
            width: auto;
            text-align: center;
            border: 1px solid #dddddd;
            margin: 10px 10px;
            float: none;
            overflow: hidden;
            clear: both;
            position: relative;
            top: 10px;

            .helpPopup__wrap {
                width: 50%;
                margin: 0 auto;
                border: none;
                text-align: left;

                .helpPopup__icon {
                    font-size: 2.5em;
                    color: $mainColor;
                    min-width: 1.5em;
                }
            }
        }

        @include bp(mobile) {
            width: 100% !important;
            font-size: .8em !important;
            padding: 0 !important;
            margin: 0 !important;
            top: 0;
            border: none;

            .helpPopup__wrap {
                margin: 10px 0;
                width: 100%;
                border: none;
            }
        }
    }

    &__wrap {
        border: 1px solid $grey;
        @include border-radius(2px);
        height: 85px;
        padding: 1em 0;

        span {
            display: block;
        }
    }

    &__icon {
        float: left;
        height: 50px;
        text-align: center;
        margin: 0 10px;
        margin-top: -5px;
    }

    &__label {
        color: $mainColor;
    }

    &__value {
        color: $black !important;
        font-weight: 700;
        font-size: .9em;

        &--size-bigger {
            font-size: 1.3em;
        }
    }

    &__subtitle {
        border-bottom: 1px solid $grey;
        font-size: .9em;
        font-weight: 700;
        padding-bottom: .5em;
        margin-bottom: .5em;
        margin-top: 1.5em;
    }
}
*/
.slide-form {
  overflow: hidden;
}
.slide-form__wrap {
  width: 200%;
  overflow: hidden;
  display: table;
  position: relative;
  left: 0;
  -webkit-transition: left, 0.5s, ease;
  transition: left, 0.5s, ease;
}
.slide-form__wrap--move {
  left: -100%;
}
.slide-form__slide {
  width: 50%;
  margin-left: 0;
  padding: 0 1em;
  display: table-cell;
  vertical-align: middle;
}

.tooltip {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.tooltip--right {
  float: right;
}
.tooltip__icon {
  color: #BF2C88;
}
.tooltip__bubble {
  position: absolute;
  width: 300px;
  right: -100%;
  top: 100%;
  z-index: 10;
  line-height: 1.2;
  padding: 1em;
  margin: 0.5em 0 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 12px;
  background: #232222;
  border-radius: 5px;
  box-shadow: 0 5px 35px -10px #000;
  color: #fff;
  display: none;
}
.tooltip__bubble:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 1.5em;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.tooltip:hover .tooltip__bubble {
  display: block;
}

.bubble-info-tip {
  position: absolute;
  width: 200px;
  max-width: 100%;
  right: 0;
  bottom: 100%;
  z-index: 10;
  line-height: 1.2;
  padding: 1em;
  margin: 0.5em 0 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 12px;
  background: #BF2C88;
  border-radius: 5px;
  box-shadow: 0 5px 35px -10px #000;
  color: #fff;
  -webkit-transition: opacity, 0.3s, ease;
  transition: opacity, 0.3s, ease;
}
.bubble-info-tip:before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 1.5em;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #BF2C88;
}
.bubble-info-tip.show {
  opacity: 1;
}

.form .inside-link {
  float: right;
  font-size: 0.775em;
  position: relative;
  right: 1em;
  margin-top: -3em;
}
.form .inside-link.inside-link--top {
  margin-bottom: -2em;
  margin-top: 0;
  top: 1.5em;
}
.form--basso label {
  margin: 0 !important;
  padding: 0 1em !important;
  text-transform: uppercase;
  font-size: 10px !important;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.form--basso label.check {
  text-transform: inherit !important;
}
.form--basso label.label--inline {
  display: inline-block;
  padding: 0;
}
.form--basso label.error {
  position: relative;
  top: -5px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 1.5em;
  color: #cc2529 !important;
}
.form--basso label#gender-error {
  top: -2.5em;
}
.form--basso input:not([type=checkbox]):not([type=radio]) {
  font-size: 1em !important;
  margin: 0;
  /*padding-top: 15px;*/
  position: relative;
  top: -15px;
  margin: 0.5em 0px -1em 0px;
}
.form--basso input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder {
  color: #9b8f8f;
  font-weight: 400;
}
.form--basso input:not([type=checkbox]):not([type=radio])::placeholder {
  color: #9b8f8f;
  font-weight: 400;
}
.form--basso input:not([type=checkbox]):not([type=radio]).error {
  border: 1px solid #cc2529;
}
.form--basso input[type=checkbox] {
  float: left !important;
  margin: 0 5px 0 -10px;
}
.form--standard input:not([type=checkbox]):not([type=radio]) {
  font-size: 0.875em;
  padding: 1em 1em;
  margin: 0.5em 0;
  color: #000;
}
.form--standard input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder {
  color: #878787;
  font-weight: 600;
  font-style: normal;
  font-family: "Lato", sans-serif;
}
.form--standard input:not([type=checkbox]):not([type=radio])::placeholder {
  color: #878787;
  font-weight: 600;
  font-style: normal;
  font-family: "Lato", sans-serif;
}

.green-area {
  background-color: #d0ffeb;
  margin-left: -3em;
  margin-right: -3em;
  padding: 0.7em 3em;
  margin-top: 1em;
  margin-bottom: 2em;
  font-family: "Lato", sans-serif;
}
.green-area h3 {
  font-size: 0.775em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.7em 0 1em;
}
.green-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.775em;
}
.green-area ul li {
  margin: 0.5em 0;
}
.green-area ul .fa {
  color: green;
  margin-right: 5px;
}
.green-area img {
  float: right;
  margin-top: -1em;
}

.merge-element {
  display: none;
}
.merge-element.current {
  display: block;
}
.merge-element .change-email {
  display: none;
}

#registerForm, #loginForm, #passwordLostForm {
  padding: 1em;
}
#registerForm #slidePrivacy, #registerForm #slideFinal, #loginForm #slidePrivacy, #loginForm #slideFinal, #passwordLostForm #slidePrivacy, #passwordLostForm #slideFinal {
  display: none;
}
#registerForm input, #loginForm input, #passwordLostForm input {
  width: 100%;
  margin: 0.4em 0;
}
#registerForm input[type=checkbox], #registerForm input[type=radio], #loginForm input[type=checkbox], #loginForm input[type=radio], #passwordLostForm input[type=checkbox], #passwordLostForm input[type=radio] {
  padding: 0;
}
#registerForm label, #loginForm label, #passwordLostForm label {
  margin-bottom: 0.5em;
}

#registerForm {
  padding-top: 0;
  width: 100%;
}
#registerForm label input {
  margin: 0;
  margin-right: 0.5em;
}
#registerForm .col-12 {
  padding-bottom: 0.3em;
}

#loginForm {
  padding-bottom: 0;
  padding-top: 0;
}

#MultiPartContainer {
  width: 100%;
}

.timeslots-readonly {
  margin: 0;
  padding-top: 1em;
  border-top: 1px solid #ccc;
}
.timeslots-readonly .day {
  text-align: left;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}
.timeslots-readonly .day:after {
  content: "";
  display: table;
  clear: both;
}
.timeslots-readonly .day .select-time-day-title {
  float: left;
  width: 100%;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
}
.timeslots-readonly .day .select-time-container {
  width: auto;
  float: left;
  width: 100%;
}
.timeslots-readonly .day .select-time-container ul li {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
}
.timeslots-readonly .day .select-time-container ul li a {
  border: none;
  float: none;
  display: inline-block;
  width: auto;
  padding: 0;
  background: transparent;
  cursor: default;
  letter-spacing: 0;
  font-size: 13px;
  margin: 10px;
}
.timeslots-readonly .day .select-time-container ul li a.past {
  text-decoration: line-through;
}
.timeslots-readonly .day .select-time-container ul li a br {
  display: none;
}
.timeslots-readonly .day .select-time-container ul li a span.to {
  margin-left: 3px;
}
.timeslots-readonly .day .select-time-container ul li a span.to::before {
  display: inline-block;
  margin-right: 2px;
  content: "-";
}

.change-service {
  background-color: #BF2C88;
  border: 1px solid #BF2C88;
  border-radius: 5px;
  padding: 0 1em;
  color: #fff;
}
.change-service a {
  padding: 1em 0;
  width: 100%;
  color: #fff !important;
}

#collect-shopping {
  font-family: "Lato", sans-serif;
}
#collect-shopping .dayButton {
  visibility: hidden;
  padding: 0 !important;
}
#collect-shopping .select-time {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#collect-shopping .select-time li {
  display: block;
  float: left;
  position: relative;
  width: 260px;
  padding: 0 20px;
  margin: 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 480px) {
  #collect-shopping .select-time li {
    width: 230px;
  }
}
#collect-shopping .select-time li a {
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #BF2C88;
  color: #BF2C88;
  display: block;
  float: left;
  width: 35%;
  margin: 0.9%;
  padding: 7px 0;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .select-time li a {
    width: 40%;
  }
}
#collect-shopping .select-time li a.selected {
  background-color: #BF2C88;
  color: #fff;
}
#collect-shopping .select-time li a.past {
  background-color: #DDDDDD;
  border-color: #BABABA;
  color: #9E9E9E;
  cursor: default;
}
#collect-shopping .select-time-container {
  /*width: 430px;*/
}
@media only screen and (max-width: 992px) {
  #collect-shopping .select-time-container {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
#collect-shopping .select-time-container .select-time {
  /*width: 2500px !important;*/
  /*width: 100% !important;
  @include flexbox();
  justify-content: center;*/
}
#collect-shopping .select-time-container .select-time li {
  width: 370px;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .select-time-container .select-time li {
    width: 100%;
  }
}
#collect-shopping .select-time-container .select-time li a {
  padding: 5px 10px;
}
#collect-shopping .info-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.225em;
  padding: 2em 0 0;
  color: #BF2C88;
}
#collect-shopping .info-text b {
  font-weight: 800;
}
#collect-shopping a.back-shop {
  font-size: 0.775em;
  position: relative;
  top: -3px;
  text-decoration: none;
  color: #999;
}
#collect-shopping .steps-status {
  display: block;
  max-width: 1180px;
  margin: 0 auto 20px;
  font-size: 0px;
  text-align: center;
  padding: 0;
}
#collect-shopping .steps-status > li {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 5px 3%;
  border-radius: 30%;
  background-color: #fff;
  position: relative;
  text-align: center;
}
#collect-shopping .steps-status > li span {
  display: block;
  font-size: 12px;
  position: absolute;
  bottom: 20%;
  text-align: center;
  width: 100%;
  color: #271c18;
  z-index: 11;
  background-color: #fff;
  font-weight: bold;
}
#collect-shopping .steps-status > li:before {
  content: "";
  display: block;
  width: 400%;
  height: 2px;
  background: #9b8f8f;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 0;
  max-width: 76px;
}
#collect-shopping .steps-status > li:last-child:before {
  display: none;
}
#collect-shopping .steps-status > li.current {
  width: 30px;
  height: 30px;
  position: relative;
  top: 5px;
  z-index: 10;
}
#collect-shopping .steps-status > li.current span {
  font-size: 15px;
  color: #fff;
  background: transparent;
}
#collect-shopping .steps-status > li.done, #collect-shopping .steps-status > li.done:before, #collect-shopping .steps-status > li.current {
  background: #BF2C88;
  color: #fff;
}
#collect-shopping .steps-status > li.done span {
  background: transparent;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #collect-shopping .steps-status > li:before, #collect-shopping .steps-status > li:after {
    display: none;
  }
}
#collect-shopping .steps {
  max-width: 1180px;
  margin: 1em auto;
}
#collect-shopping .steps .step {
  display: none;
  padding: 0.5em 2em 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #collect-shopping .steps .step {
    padding: 0;
    font-size: 0.7em;
  }
}
#collect-shopping .steps .step > h3 {
  font-size: 0.875em;
  color: #9b8f8f;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.33em;
  border-bottom: 1px solid #9b8f8f;
  padding-bottom: 2em;
}
#collect-shopping .steps .step .block > h2 {
  text-align: center;
  font-size: 2em;
  margin: 0;
  font-weight: normal;
  color: #878787;
  margin-bottom: 0;
}
#collect-shopping .steps .step .block > h2 strong {
  color: #BF2C88;
}
@media screen and (max-width: 768px) {
  #collect-shopping .steps .step .block > h2 {
    font-size: 1.5em;
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  #collect-shopping .steps .step .block > h2 {
    font-size: 1.2rem;
  }
}
#collect-shopping .steps .step .block > p {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .steps .step .block > p {
    font-size: 1rem;
    color: #878787;
  }
}
#collect-shopping .steps .step.active {
  display: block;
  color: black;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .steps .step.active {
    padding: 0 10px;
  }
}
#collect-shopping .steps .step .alert {
  width: 80%;
  margin: 0 auto;
  font-size: 0.9em;
  text-transform: initial;
  text-align: center;
}
#collect-shopping .steps .step .footer .full--width {
  width: 100%;
}
#collect-shopping .steps .step .footer a {
  margin-left: 0;
}
#collect-shopping .steps .step .selectric-wrapper {
  margin: 0;
}
#collect-shopping .steps .step .button {
  padding: 20px;
  background-color: #51B751;
  border-color: #51B751;
}
#collect-shopping .steps .step .button:hover {
  color: #fff !important;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .steps .step .alert {
    font-size: 0.8rem;
    width: 100%;
  }
}
#collect-shopping .select-day {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 0 1em;
}
#collect-shopping .select-day label {
  display: inline-block;
  max-width: 40%;
  width: 100%;
  margin: 1em 1em 0.5em;
  text-align: center;
  font-size: 1.225em;
  font-weight: bold;
  border-radius: 5px;
  color: #BF2C88;
  border: 2px solid #BF2C88;
  cursor: pointer;
  padding: 1em 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #collect-shopping .select-day label {
    display: block;
    width: 100%;
    margin: 0 0 1em;
    font-size: 0.875em;
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #collect-shopping .select-day label {
    font-size: 1rem;
  }
}
#collect-shopping .select-day label input {
  position: absolute;
  left: 0;
  width: auto;
  visibility: hidden;
  opacity: 0;
}
#collect-shopping .select-day label.selected {
  background: #BF2C88;
  color: #fff;
}
#collect-shopping .select-day label.selected .fa {
  display: inline-block;
}
#collect-shopping .select-day label .detail-disabled {
  display: none;
}
#collect-shopping .select-day label.disabled {
  background: #EAEAEA;
  color: #B6B6B6;
  border-color: #C7C7C7;
  cursor: default;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .select-day label.disabled {
    margin-bottom: 4em;
  }
}
#collect-shopping .select-day label.disabled .detail-disabled {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  color: #271c18;
  text-align: center;
  width: 100%;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  position: absolute;
  bottom: -1.8em;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .select-day label.disabled .detail-disabled {
    bottom: -2.8em;
  }
}
#collect-shopping .footer {
  text-align: center;
  padding-top: 2em;
}
#collect-shopping .footer .btn, #collect-shopping .footer a {
  display: inline-block;
  width: auto;
  margin: 0 1em;
  margin-left: -2em;
}
@media screen and (max-width: 768px) {
  #collect-shopping .footer .btn, #collect-shopping .footer a {
    margin-left: -4em;
  }
}
#collect-shopping .footer .btn {
  margin-right: -10em;
}
#collect-shopping .footer .btn.nomargin {
  margin-right: 0;
  margin-left: 0;
}
#collect-shopping .footer .btn .fa {
  position: relative;
  top: -2px;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .footer .col-4 {
    display: none;
  }
  #collect-shopping .footer div {
    width: 100%;
  }
  #collect-shopping .footer .back-shop {
    font-size: 1rem;
  }
}
#collect-shopping .address {
  max-width: 960px;
  margin: 4em auto 2em;
}
#collect-shopping .address .show-port-option {
  margin: 2rem 0;
  width: 350px;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .address .show-port-option {
    width: 100%;
  }
}
#collect-shopping .address .show-port-option a.btn {
  font-size: 1rem;
  width: inherit;
  padding: 0.5rem;
  text-transform: none;
}
#collect-shopping .address .show-port-option a.btn img {
  height: 18px;
  width: auto;
  margin-left: 0.5rem;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .address .element--port a {
    margin: 1rem 0;
    font-size: 1rem;
  }
}
#collect-shopping .address #addressDiv {
  margin-bottom: 1em;
  background-color: #cc2529;
  width: 100%;
  text-align: center;
}
#collect-shopping .address #addressDiv small {
  color: #fff;
  font-weight: 600;
}
#collect-shopping .address label b {
  color: #BF2C88;
  font-weight: 600;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  height: 17px;
  vertical-align: middle;
}
#collect-shopping .address .city-name {
  font-weight: bold;
  display: inline-block;
  padding: 0.3em 0;
}
#collect-shopping .address label {
  display: block;
  margin-bottom: 0.2em;
  font-size: 0.8em;
  color: #271c18;
  font-weight: 600;
  line-height: 1.5;
}
#collect-shopping .address label.error {
  color: #cc2529;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .address label {
    font-size: 0.875rem;
  }
}
#collect-shopping .address input {
  width: 100%;
  font-size: 0.875em;
  padding: 9px 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .address input {
    margin-bottom: 1em;
    font-size: 1rem;
  }
}
#collect-shopping .address .selectric {
  margin-top: 0;
}
#collect-shopping .address .selectric .label {
  height: 37px;
  line-height: 37px;
  text-align: left !important;
}
#collect-shopping .address .selectric .button {
  height: 37px;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .address .selectric {
    font-size: 1rem;
  }
}
#collect-shopping .address textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
#collect-shopping .address .radio-payments {
  padding: 1.2em 0 1em;
  margin: 1em 0 0;
  border: 1px solid #ccc;
  border-width: 1px 0;
  text-align: center;
  border-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .address .radio-payments {
    text-align: left;
  }
  #collect-shopping .address .radio-payments img {
    display: none;
  }
}
#collect-shopping .address .radio-payments .label {
  display: block;
  margin-bottom: 1em;
  font-size: 1em;
  color: #271c18;
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .address .radio-payments .label {
    font-size: 1rem;
  }
}
#collect-shopping .address .radio-payments .radio-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0.5em 1em;
  line-height: 1;
}
#collect-shopping .address .radio-payments input[type=radio] {
  width: auto;
  float: none;
  display: inline;
}
#collect-shopping .address .radio-payments label {
  display: inline-block;
  margin: 0;
  line-height: 2;
  vertical-align: middle;
}
#collect-shopping .address .radio-payments img {
  vertical-align: middle;
  width: auto;
  height: 25px;
  margin-left: 1em;
}
#collect-shopping .wrapped {
  max-width: 960px;
  margin: 2em auto;
}
#collect-shopping .sms-request {
  text-align: center;
}
#collect-shopping .sms-request input {
  margin: 0 auto;
  max-width: 300px;
  text-align: center;
  float: none;
}
#collect-shopping .required-label {
  color: #BF2C88;
  font-weight: bold;
  font-size: 0.675em;
  text-align: left;
  padding: 0 0 1em;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .required-label {
    font-size: 0.875rem;
  }
}
#collect-shopping .end-info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  #collect-shopping .end-info {
    width: 100%;
  }
}
#collect-shopping .end-info .end-info__background-pattern {
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
  height: 100px;
  margin: 5px 20px;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .end-info .end-info__background-pattern {
    height: 70px;
    width: 100%;
    margin: 1em;
  }
  #collect-shopping .end-info .end-info__background-pattern + span {
    font-size: 0.875rem;
  }
}
#collect-shopping .checkout-end .title {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  color: #BF2C88;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .checkout-end .title {
    display: block;
  }
}
#collect-shopping .checkout-end .value {
  display: block;
  font-size: 0.8em;
  font-weight: 800;
  color: #271c18;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .checkout-end .value {
    display: block;
  }
}
#collect-shopping .checkout-end-info {
  background: #fff;
  margin-bottom: 2em;
}
#collect-shopping .checkout-end-info .checkout-end-info-container h2 {
  font-size: 1.3rem;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .checkout-end-info-container h2 {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .checkout-end-info-container {
    display: block;
  }
  #collect-shopping .checkout-end-info .checkout-end-info-container .container-dx {
    display: block;
    order: 1;
  }
  #collect-shopping .checkout-end-info .checkout-end-info-container .container-sx {
    display: block;
    order: 2;
  }
}
#collect-shopping .checkout-end-info .checkout-end-dx h3 {
  color: #1d1a1a;
}
#collect-shopping .checkout-end-info .checkout-end-dx img {
  width: 25% !important;
}
#collect-shopping .checkout-end-info .checkout-end-dx p {
  color: #A09F94;
  padding: 0 1em 0 0;
}
#collect-shopping .checkout-end-info .checkout-end-dx label {
  color: #A09F94;
}
#collect-shopping .checkout-end-info .replacementPolicylink {
  font-size: 1em;
  font-weight: 600;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 1em;
}
#collect-shopping .checkout-end-info .co-box {
  padding: 1em;
  border: 2px solid #D9D9D9;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .co-box {
    border: none;
    border-bottom: 2px solid #D9D9D9;
    padding: 0;
    display: block;
  }
}
#collect-shopping .checkout-end-info .co-box img {
  max-width: 100%;
}
#collect-shopping .checkout-end-info .co-box textarea {
  width: 100%;
  padding: 7px;
  font-size: 13px;
  margin-top: 2rem;
}
#collect-shopping .checkout-end-info .co-box .alternativi {
  position: relative;
  height: 5em;
}
#collect-shopping .checkout-end-info .co-box .alternativi span {
  display: block;
  position: absolute;
}
#collect-shopping .checkout-end-info .co-box .alternativi span.a {
  left: 0;
  animation: movea 6s ease infinite;
}
#collect-shopping .checkout-end-info .co-box .alternativi span.b {
  left: 37%;
  top: 30px;
}
#collect-shopping .checkout-end-info .co-box .alternativi span.c {
  right: 0;
  animation: moveb 6s ease infinite;
}
#collect-shopping .checkout-end-info .co-box .radio-cool {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1.4em 1em;
  margin-bottom: 0.5em;
  cursor: pointer;
  border-radius: 3px;
  width: 100%;
}
#collect-shopping .checkout-end-info .co-box .radio-cool.selected {
  border: 1px solid #9a9a9a;
  background-color: #ededed;
}
#collect-shopping .checkout-end-info .co-box .radio-cool.selected .top {
  font-weight: bold;
}
#collect-shopping .checkout-end-info .co-box .radio-cool.selected .top::before {
  background: #8BC34A;
  border-color: #006400;
}
#collect-shopping .checkout-end-info .co-box .radio-cool p {
  line-height: 1.2;
  font-size: 0.9em;
  padding: 0.5em 0 0;
}
#collect-shopping .checkout-end-info .co-box .radio-cool .text {
  padding-left: 2em;
}
#collect-shopping .checkout-end-info .co-box .radio-cool .top {
  position: relative;
  padding: 0;
  font-weight: 400;
}
#collect-shopping .checkout-end-info .co-box .radio-cool .top::before {
  content: "";
  position: absolute;
  left: -2em;
  top: 0;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  border: 1px solid #ccc;
}
#collect-shopping .checkout-end-info .co-box .radio-cool input {
  display: none;
}
#collect-shopping .checkout-end-info .co-box .radio-cool .image {
  width: 120px;
  flex-shrink: 0;
  padding: 0 0.5em;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #collect-shopping .checkout-end-info .co-box .radio-cool {
    flex-flow: column;
    text-align: left;
    align-items: flex-start;
  }
  #collect-shopping .checkout-end-info .co-box .radio-cool .image > img {
    padding-left: 2em;
    padding-bottom: 0.5em;
  }
  #collect-shopping .checkout-end-info .co-box .radio-cool .alternativi {
    height: 7em;
  }
  #collect-shopping .checkout-end-info .co-box .radio-cool p {
    font-size: 1em;
  }
}
#collect-shopping .checkout-end-info .co-box .title {
  margin: 0;
  padding: 0.5em 0;
  font-size: 1.3rem;
  font-weight: 900;
  color: #303030;
  position: relative;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .co-box .title {
    font-size: 1.1rem;
  }
}
#collect-shopping .checkout-end-info .co-box .big {
  font-size: 1.2rem;
  font-weight: bold;
}
#collect-shopping .checkout-end-info .co-box span {
  margin: 0;
  padding: 0 0 0.5em;
  line-height: 1.6;
  font-size: 1em;
  text-align: justify;
}
#collect-shopping .checkout-end-info .co-box span.question {
  font-weight: 600;
  margin: 1em 0 0.3em;
}
#collect-shopping .checkout-end-info .co-box.text {
  border: none;
  font-size: 0.7rem;
  padding: 0;
  color: #333;
}
#collect-shopping .checkout-end-info .co-box.text p {
  line-height: 1.5;
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
}
#collect-shopping .checkout-end-info .co-box p.label {
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.03em;
  margin-top: 2rem;
  line-height: 1.67;
}
#collect-shopping .checkout-end-info .co-box p.value {
  font-weight: bold;
  color: #000;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  text-transform: capitalize;
}
#collect-shopping .checkout-end-info .co-box p.value br {
  display: none;
}
#collect-shopping .checkout-end-info .co-box span.label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  line-height: 1.5;
  padding: 0.2rem 0;
  display: block;
}
#collect-shopping .checkout-end-info .co-box span.label strong {
  color: #000;
}
#collect-shopping .checkout-end-info .co-box .right {
  text-align: right;
  font-size: 0.8rem;
}
#collect-shopping .checkout-end-info .co-box .link {
  color: #BF2C88;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
#collect-shopping .checkout-end-info .co-box hr.separator {
  border-bottom: 1px solid #ccc;
}
#collect-shopping .checkout-end-info .co-box hr.double {
  border-bottom: 4px double #ccc;
}
#collect-shopping .checkout-end-info .invoice-box {
  border: 2px solid #D9D9D9;
  padding: 1em;
  margin-top: 1em;
}
#collect-shopping .checkout-end-info .invoice-box .fattura {
  cursor: pointer !important;
  font-size: 1em !important;
  margin-top: 0 !important;
}
#collect-shopping .checkout-end-info .info-order {
  border: 2px solid #D9D9D9;
  padding: 0.1em 1em 1em;
}
#collect-shopping .checkout-end-info .info-order h3 {
  color: #303030;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order h3 {
    font-size: 1.1rem;
  }
}
#collect-shopping .checkout-end-info .info-order h4 {
  font-size: 1.1em;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order h4 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .time-order {
    font-size: 1.4em;
  }
}
#collect-shopping .checkout-end-info .info-order .time-order span {
  display: -webkit-flex;
  display: flex;
}
#collect-shopping .checkout-end-info .info-order .time-order h3 {
  margin-top: 0.5em;
}
#collect-shopping .checkout-end-info .info-order .time-order h3:first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .time-order h3 {
    font-size: 1.4em;
  }
}
#collect-shopping .checkout-end-info .info-order .time-order .value {
  display: inline-flex;
  color: #BF2C88;
  font-size: 0.9em;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .time-order .value {
    font-size: 0.8em;
  }
}
#collect-shopping .checkout-end-info .info-order .address-order {
  /*border-bottom: 2px solid $greyborder;*/
  margin-bottom: 1em;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .address-order {
    font-size: 1.4em;
  }
}
#collect-shopping .checkout-end-info .info-order .address-order h3 {
  margin-top: 0.5em;
}
#collect-shopping .checkout-end-info .info-order .address-order h3:first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .address-order h3 {
    font-size: 1.4em;
  }
}
#collect-shopping .checkout-end-info .info-order .address-order .value {
  color: #BF2C88;
  font-size: 0.9em;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .address-order .value {
    font-size: 0.8em;
  }
}
#collect-shopping .checkout-end-info .info-order .address-order .value:first-letter {
  text-transform: uppercase;
}
#collect-shopping .checkout-end-info .info-order .info-price {
  border-top: 2px solid #D9D9D9;
}
#collect-shopping .checkout-end-info .info-order .payment-title {
  margin-bottom: 0;
}
#collect-shopping .checkout-end-info .info-order .button--payment {
  margin: 0.5em 5px;
  width: 50%;
  border-radius: 15px;
  border-color: #9B9B9B;
}
#collect-shopping .checkout-end-info .info-order .button--payment img {
  width: 100%;
}
#collect-shopping .checkout-end-info .info-order .button--payment:hover {
  background-color: #F6F3F0;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .info-order .button--payment {
    padding: 5px;
  }
}
#collect-shopping .checkout-end-info .info-order .bpay {
  width: 100%;
  margin: 1em 0.5em 0.5em;
  background-color: #BF2C88;
  border: none;
}
#collect-shopping .checkout-end-info .info-order .bpay:hover {
  background-color: #51B751;
}
#collect-shopping .checkout-end-info .info-order .bpay h2 {
  color: #fff;
  font-size: 1.3em;
  text-align: center;
}
#collect-shopping .checkout-end-info .info-order .info-order-text {
  color: #303030;
  text-align: justify;
}
#collect-shopping .checkout-end-info .checkout-end-info__label {
  text-align: left;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .checkout-end-info__label {
    font-size: 1.4em;
  }
}
#collect-shopping .checkout-end-info .checkout-end-info__label h2, #collect-shopping .checkout-end-info .checkout-end-info__label h3 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  margin: 0.5em 0 0 0;
}
#collect-shopping .checkout-end-info .checkout-end-info__label .value {
  color: #303030;
  font-size: 1.1em;
  font-weight: 500;
}
#collect-shopping .checkout-end-info .checkout-end-info__label .title {
  display: inline-flex;
  font-size: 1.2em;
  color: #303030;
  width: 100%;
  font-weight: 500;
  margin: 0.5em 0;
}
#collect-shopping .checkout-end-info .checkout-end-info__label .list li {
  list-style-type: none;
}
#collect-shopping .checkout-end-info .checkout-end-info__label .total {
  font-size: 1.5em;
  color: #5C5C5C;
  font-weight: 600;
}
#collect-shopping .checkout-end-info .checkout-end-info__label #sup__info__add {
  cursor: pointer;
  font-size: 0.8em;
  text-decoration: underline;
  vertical-align: super;
}
#collect-shopping .checkout-end-info .checkout-end-info__info h2, #collect-shopping .checkout-end-info .checkout-end-info__info h3 {
  text-align: right;
  color: #303030;
  margin: 0;
  font-weight: 600;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
#collect-shopping .checkout-end-info .checkout-end-info__info .info h2, #collect-shopping .checkout-end-info .checkout-end-info__info h3 {
  text-align: left;
  color: #303030;
  margin: 0;
  font-weight: 600;
  margin-bottom: 0.5em;
  font-size: 1em;
}
#collect-shopping .checkout-end-info .checkout-end-info__info .info h2 span, #collect-shopping .checkout-end-info .checkout-end-info__info h3 span {
  white-space: nowrap;
}
#collect-shopping .checkout-end-info .checkout-end-info__info .fidelity_amount {
  color: #303030;
}
#collect-shopping .checkout-end-info .checkout-end-info__info .tot_amount {
  color: #303030;
}
#collect-shopping .checkout-end-info .checkout-end-info__info .total_order {
  font-size: 2em;
  margin-top: 1em;
  color: #2E70B5;
  font-weight: 600;
}
#collect-shopping .checkout-end-info .checkout-end-info__info.note_col div {
  height: auto;
}
#collect-shopping .checkout-end-info .checkout-end__note {
  border: 2px solid #D9D9D9;
  padding: 1em 2em;
  margin: 1em 0;
}
#collect-shopping .checkout-end-info .checkout-end__note small {
  margin-top: 0.5em;
  color: #757575;
  font-weight: bold;
}
#collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__label div {
  height: 50px;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__label div {
    -webkit-justify-content: end;
    justify-content: end;
  }
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__label div i {
    display: none;
  }
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__label div h3 {
    text-align: right;
    margin-left: auto;
  }
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__label div .hide--mobile {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__label div {
    display: none;
  }
}
#collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info {
  border: 2px solid #D9D9D9;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info {
    -webkit-flex-basis: 68%;
    -moz-flex-basis: 68%;
    -ms-flex-basis: 68%;
    flex-basis: 68%;
    max-width: 68%;
  }
}
@media only screen and (max-width: 768px) {
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info {
    -webkit-flex-basis: 72%;
    -moz-flex-basis: 72%;
    -ms-flex-basis: 72%;
    flex-basis: 72%;
    max-width: 72%;
  }
}
@media only screen and (max-width: 480px) {
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 0;
    margin-left: 0;
    padding: 0 10px;
  }
}
#collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info textarea {
  border-width: 0;
  background-color: white;
  border-bottom-color: rosybrown;
  width: 90%;
  font-size: 0.9em;
  resize: none;
  margin-bottom: 1.5em;
  padding-top: 10px;
  font-style: italic;
}
@media only screen and (max-width: 768px) {
  #collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info textarea {
    font-size: 1.2em;
  }
}
#collect-shopping .checkout-end-info .checkout-end__note .checkout-end-info__info textarea:focus {
  outline: none;
}
#collect-shopping sup#sup__info__add {
  cursor: pointer;
}
#collect-shopping .charRed {
  color: red;
}
#collect-shopping #alert__add {
  background-color: #cc2529;
  border-radius: 5px;
  padding: 0.8em;
  margin: 0.5em auto;
  color: white !important;
}
#collect-shopping #alert__add ul {
  list-style: none;
  margin: 0;
  padding-left: 1em;
  font-weight: bold;
}
#collect-shopping #alert__add i {
  padding-left: 0.3em;
  font-size: 2rem;
}
#collect-shopping .checkout-end-infos {
  padding: 1em 2em 0;
}
#collect-shopping .checkout-end-infos.with-delivery {
  padding: 0.5em 2em 0;
}
#collect-shopping .checkout-end-infos.with-delivery .info-box {
  margin-top: 1.775em;
  margin-bottom: 1.775em;
  padding-bottom: 1.775em;
}
#collect-shopping .checkout-end-totals {
  padding: 1.5em 1.5em 0.5em;
  background-color: #f8f8f8;
  text-align: right;
}
#collect-shopping .checkout-end-totals .big-total {
  display: block;
  border-top: 5px double #ccc;
  padding-top: 1.5em;
  margin-top: 1.5em;
}
#collect-shopping .checkout-end-totals .big-total .label {
  color: #BF2C88;
  text-transform: uppercase;
}
#collect-shopping .checkout-end-totals .big-total .value {
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 700 !important;
  /*text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.06);*/
  font-size: 4em;
  color: #BF2C88;
}
#collect-shopping .checkout-end-totals .no-payback {
  font-size: 13px;
  line-height: 1.2;
  display: block;
  margin: 1em 0 0;
  font-style: italic;
}
#collect-shopping .checkout-end-totals .no-payback b {
  font-family: "Lato", sans-serif;
}
#collect-shopping .checkout-end-totals .line {
  overflow: hidden;
  text-align: right;
  margin: 0 0 0.5em;
  font-size: 0.875em;
}
#collect-shopping .checkout-end-totals .line.product-in-cart {
  font-size: 0.775em;
  border-bottom: 5px solid #fff;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
#collect-shopping .checkout-end-totals .line.product-in-cart .label {
  font-weight: 500;
  text-transform: capitalize;
}
#collect-shopping .checkout-end-totals .line .small {
  display: block;
  text-align: left;
  font-size: 0.8em;
  font-style: italic;
  text-indent: 3px;
  line-height: 1.5;
  color: #6b8fcd;
}
#collect-shopping .checkout-end-totals .line .small b {
  font-family: "Lato", sans-serif;
  font-style: normal;
}
#collect-shopping .checkout-end-totals .line .label {
  display: inline-block !important;
  float: left;
  font-weight: 600;
}
#collect-shopping .checkout-end-totals .line .value {
  display: inline-block !important;
}

.policyAuth-order {
  border: 2px solid #D9D9D9;
  margin: 0 0 1em;
  padding: 0 2em;
}

#coupon-code {
  color: #BF2C88;
  overflow: hidden;
  padding: 0.5em;
  text-align: center;
}
#coupon-code .panel {
  display: table-cell;
  width: 33.33333%;
  vertical-align: middle;
}
#coupon-code .coupon-code-wrap {
  display: table;
  width: 300%;
  left: 0;
  -webkit-transition: left, 0.3s, ease;
  transition: left, 0.3s, ease;
  position: relative;
}
#coupon-code.slide .coupon-code-wrap {
  left: -100%;
}
#coupon-code.slide.confirmed .coupon-code-wrap {
  left: -200%;
}
#coupon-code .coupon-code-link {
  font-size: 0.775em;
  font-weight: 600;
}
#coupon-code .coupon-code-input {
  text-align: left;
  background: #fff;
  border: 1px solid #878787;
  border-radius: 5px;
  padding: 2px;
  width: 100%;
  display: flex;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  #coupon-code .coupon-code-input {
    width: 80%;
  }
}
#coupon-code .coupon-code-input .label {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 600;
  vertical-align: middle;
  margin: 0 0 0.5em;
  display: none;
}
#coupon-code .coupon-code-input input {
  width: 80%;
  max-width: 100%;
  font-size: 0.775em;
  padding: 0 10px;
  height: 30px;
  line-height: 2em;
  vertical-align: middle;
  margin: 0;
  border: none;
  background: transparent;
}
#coupon-code .coupon-code-input input:focus {
  outline: none;
  box-shadow: none;
}
#coupon-code .coupon-code-input .btn {
  display: inline-block;
  width: 20%;
  font-size: 0.675em;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  margin: 0;
  border-radius: 5px;
  float: right;
}
#coupon-code .coupon-code-input .error-message {
  font-size: 0.775em;
  padding: 0;
  font-weight: 600;
  position: relative;
  top: 0.4em;
}
#coupon-code .coupon-code-added {
  padding-right: 2em;
  text-align: center;
  padding-left: 2em;
  font-weight: 600;
  font-size: 0.775em;
  color: #29AD00;
}
#coupon-code .coupon-code-added p {
  padding: 0;
  margin: 0.5em 0 0;
  font-weight: 500;
  font-size: 0.875em;
  color: #000;
}
#coupon-code .error-message {
  text-align: center;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}

#coupon-code-list {
  text-align: center;
  border: 2px solid #D9D9D9;
  padding: 0 2em;
}
#coupon-code-list .label {
  font-weight: 600;
  font-size: 0.7em;
  text-transform: uppercase;
  margin-top: 2em;
  display: block;
  color: #BF2C88;
  margin-bottom: 0.5em;
}
#coupon-code-list .coupon-code-title {
  text-align: center;
}
#coupon-code-list .coupon-code-line {
  font-size: 1em;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: white;
  background-color: green;
  width: 60%;
  margin: 0 auto;
  padding: 0.5em;
  border-radius: 5px;
}

#requestFidelityCardCodeForm label.error {
  display: block;
}

.invoice-information h2 {
  margin: 0;
  padding: 10px;
}
.invoice-information .address {
  padding: 20px;
}
.invoice-information .address .row {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .invoice-information .address {
    padding: 0.5em;
    padding-top: 0;
  }
}
.invoice-information hr {
  margin: 20px 0;
}
@media only screen and (max-width: 768px) {
  .invoice-information div {
    width: 100%;
  }
}
.invoice-information .btn {
  margin-top: 0;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .invoice-information .btn {
    width: 80%;
    margin: 0 0.5em;
  }
}
.invoice-information p {
  padding-left: 1.2em;
}

.bonusFirstOrder {
  font-size: 1em;
  background-color: green;
  text-align: center;
  border-radius: 5px;
  padding: 0.8em !important;
  color: white;
  font-weight: bold;
}
.bonusFirstOrder a {
  color: white;
}

.top-bar {
  height: 8px;
  background: #0054b4;
}

.hero {
  position: relative;
  padding: 5rem 1rem 0;
  overflow: hidden;
  background: url(/content/images/landing/wallpaper.jpg) bottom/cover no-repeat;
  height: 95vh;
  text-align: center;
}
.hero__logo {
  width: 800px;
  margin: 0 auto 1rem;
}
.hero .btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  width: 400px;
  text-decoration: none;
}
.hero .btn--primary {
  background: #7bbe29;
  color: #fff;
  transition: filter 0.2s;
}
.hero .btn--primary:hover, .hero .btn--primary:focus {
  filter: brightness(0.9);
}
.hero__claim {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c61d97;
  margin: 0 0 0.5rem;
}
.hero__headline {
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 700;
  color: #c61d97;
  margin: 0 0 1rem;
}

.site-footer {
  background: #fafafa;
  padding: 0 1rem 10px;
  text-align: center;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer__credit {
  font-size: 0.8rem;
  margin: 0;
}

/* === RESPONSIVE ============================================== */
@media only screen and (max-width: 1366px) {
  .hero {
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .hero {
    padding-top: 10em;
    padding-bottom: 8rem;
    background-size: contain;
  }
  .hero__claim {
    font-size: 1.2rem;
  }
  .hero__logo {
    max-width: 260px;
  }
  .btn {
    width: 100% !important;
  }
  .animal-strip {
    height: 200px;
  }
  .site-footer .footer__nav {
    flex-direction: column;
    gap: 0.25rem;
  }
  .site-footer .footer__nav a::after {
    content: none;
  }
}
.orderList {
  width: 100%;
  margin: 1em auto;
}
.orderList .nice-table {
  margin: 0 0.5em;
  width: 100%;
}
.orderList .nice-table tr {
  height: 80px;
}
@media only screen and (max-width: 992px) {
  .orderList .nice-table tr {
    height: inherit;
  }
}
.orderList .nice-table th, .orderList .nice-table td {
  padding: 1em;
  line-height: 60px;
  text-align: left;
  border-bottom: 1px solid #dddddd;
}
.orderList .nice-table th {
  padding: 0.5em 1em;
  color: #271c18;
}
.orderList .nice-table .repayment-link {
  margin: 1em;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1em;
  background-color: #cc2529;
  border-color: #cc2529;
  border-radius: 25px;
  padding: 0.8em 1em;
  text-decoration: none;
}
.orderList .nice-table .reorder button {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1em;
  background-color: #BF2C88;
  border-radius: 25px;
  padding: 0.5em 1em;
  text-decoration: none;
}
.orderList .nice-table .open-detail {
  margin: 1em;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1em;
  background-color: #BF2C88;
  border-radius: 25px;
  padding: 0.5em 1em;
  text-decoration: none;
}
.orderList .nice-table .open-detail:hover {
  background-color: #BF2C88;
}
@media only screen and (max-width: 992px) {
  .orderList .nice-table {
    display: block;
    /*
    Label the data
    */
  }
  .orderList .nice-table thead, .orderList .nice-table tbody, .orderList .nice-table th, .orderList .nice-table td, .orderList .nice-table tr {
    display: block;
  }
  .orderList .nice-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .orderList .nice-table tr {
    border: 1px solid #ccc;
    margin-bottom: 1em;
  }
  .orderList .nice-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 6px;
    padding-top: 1.5em;
  }
  .orderList .nice-table td:before {
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-size: 0.7em;
  }
  .orderList .nice-table td:nth-of-type(1):before {
    content: "Ordine";
  }
  .orderList .nice-table td:nth-of-type(2):before {
    content: "Tipo di servizio";
  }
  .orderList .nice-table td:nth-of-type(3):before {
    content: "Supermercato";
  }
  .orderList .nice-table td:nth-of-type(4):before {
    content: "Data";
  }
  .orderList .nice-table td:nth-of-type(5):before {
    content: "Orario";
  }
  .orderList .nice-table td:nth-of-type(6):before {
    content: "Stato dell'ordine";
  }
}

.orderDetail {
  margin: 1em auto;
}
.orderDetail h1 {
  color: #2E70B5;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #dddddd;
}
.orderDetail h2 {
  color: #303030;
}
.orderDetail h3 {
  color: #2E70B5;
  font-size: 1.3rem;
  padding-top: 1em;
  margin: 0;
}
.orderDetail p {
  font-size: 1rem;
  font-weight: 600;
}
.orderDetail .num-order {
  margin: 0 1em 0 0;
  border-radius: 3px;
}
.orderDetail .num-order p {
  color: rgb(96, 96, 96);
  font-weight: bold;
}
.orderDetail .order-details {
  border: 1px solid #666;
  background-color: #fff;
  padding: 1em;
}
.orderDetail .order-details .top-order .box-address {
  margin: 1em 0;
  padding: 1em;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.orderDetail .order-details .top-order .lists-prods-other .color-qty {
  display: none;
}
.orderDetail .order-details .top-order .lists-prods-other img {
  width: 50px;
  height: 70px;
}
.orderDetail .order-details .top-order .lists-prods-other .desc-prod {
  margin: 0 1em;
  font-size: 1.1em;
}
.orderDetail .order-details .top-order .lists-prods-other .color-price {
  font-weight: bold;
  color: #840308;
  font-size: 1.4em;
  white-space: nowrap;
}
@media only screen and (max-width: 992px) {
  .orderDetail .order-details .top-order .lists-prods-other .color-price {
    font-size: 1.1em;
  }
}
.orderDetail .order-details .top-order .box-order {
  margin: 1em 0;
  padding: 5px 1em;
  background-color: #f5f5f5;
  border-radius: 5px;
}
.orderDetail .order-details .top-order .box-button {
  margin: 1em;
  padding: 1em;
}
.orderDetail .order-details .top-order .box-button .btn-action {
  border-bottom: 2px solid #dddddd;
}
@media only screen and (max-width: 992px) {
  .orderDetail .order-details .top-order .box-button .btn-action {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 1em 0;
  }
}
.orderDetail .prods {
  color: #271c18;
  list-style: none;
  margin: 1em 0;
  padding: 0;
  font-size: 1em;
  padding: 0 0.5em;
  width: 100%;
  border-top: 2px solid #666;
  border-radius: 3px;
  background-color: #fff;
}
.orderDetail .prods .list-prods {
  border-bottom: 1px solid #666;
  padding: 1em;
}
.orderDetail .prods .list-prods .color-qty {
  font-size: 1.6em;
  color: #2E70B5;
}
.orderDetail .prods .list-prods .color-price {
  font-weight: bold;
  color: #2E70B5;
}
.orderDetail .prods .list-prods .img-prod {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
@media only screen and (max-width: 992px) {
  .orderDetail .prods .list-prods .img-prod {
    display: none;
  }
}
.orderDetail .prods .list-prods .desc-prod {
  margin: 0 1em;
}
.orderDetail .prods li {
  display: block;
  border-bottom: 1px solid #2E70B5;
  padding: 0.5em;
}
.orderDetail .prods li:last-child {
  border-bottom: none;
}
.orderDetail .bottom-detail-order .total-bottom {
  width: 90%;
}
@media only screen and (max-width: 992px) {
  .orderDetail .bottom-detail-order .total-bottom {
    width: 70%;
  }
}
.orderDetail .bottom-detail-order h3 {
  border-bottom: 1px solid #dddddd;
  padding: 1em 0;
}

#my-list {
  overflow: hidden;
  width: 100%;
  clear: both;
}
#my-list .info-text {
  margin: 1rem;
}
#my-list .list-action-bar {
  padding: 1em 2em;
  margin: 1em 0;
  text-align: center;
  font-size: 1em;
  border: 1px solid #eee;
  border-width: 2px 0;
  color: #271c18;
}
#my-list .total {
  font-size: 1.225em;
}
#my-list .cart-total-cta a {
  margin: 1rem;
  padding: 1rem 3rem;
  background-color: #2E70B5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#my-list .cart-total-cta a:hover {
  background-color: #BF2C88;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.profile-card-wrap {
  margin: 20px 0;
  margin-bottom: 40px;
  border: 1px solid #eee;
  border-radius: 3px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #BF2C88;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .profile-card-wrap {
    margin: 0;
    margin-top: 0.5em;
  }
}
.profile-card-wrap .show--tablet-mobile {
  display: none;
}
.profile-card-wrap .profile-card__header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.profile-card-wrap .profile-card__header .row {
  width: 100%;
}
.profile-card-wrap .profile-card__header .col-2 .avatar {
  border-radius: 100%;
  background-color: #eee;
  width: 100px;
  height: 100px;
  overflow: hidden;
  font-size: 5em;
}
@media only screen and (max-width: 992px) {
  .profile-card-wrap .profile-card__header .col-9 .col-6:last-child() {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 992px) {
  .profile-card-wrap .profile-card__header .col-6 {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.profile-card-wrap .profile-card__body {
  background-color: #f6f6f6;
  padding: 20px;
}
.profile-card-wrap .profile-card__body input {
  margin-bottom: 20px;
}
.profile-card-wrap .profile-card__body .alert {
  font-size: 0.875rem;
  text-align: center;
}
.profile-card-wrap .profile-card__body .alert i {
  font-size: 1.5rem;
}
.profile-card-wrap .profile-card__body button {
  color: #fff !important;
}
.profile-card-wrap label {
  font-size: 0.8em;
  color: #BF2C88;
}
.profile-card-wrap input[readonly] {
  background: #e1e1e1;
}
.profile-card-wrap input[type=email] {
  font-size: 0.9em;
  cursor: not-allowed;
}
.profile-card-wrap .password-change-wrap {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 5px;
}
.profile-card-wrap .password-change-wrap input {
  background-color: #fff;
}
.profile-card-wrap button[type=submit] {
  box-sizing: inherit;
}
@media only screen and (max-width: 992px) {
  .profile-card-wrap .hidden--tablet-mobile {
    display: none;
  }
  .profile-card-wrap .show--tablet-mobile {
    display: block;
  }
}
.profile-card-wrap .selectric-wrapper {
  margin: 0;
}
.profile-card-wrap .selectric .label {
  height: 45px;
  line-height: 45px;
}
.profile-card-wrap .selectric .button {
  height: 45px;
}
.profile-card-wrap .selectric .button:hover {
  background-color: transparent;
}

.profile__custom-data {
  margin: 10px auto;
  margin-bottom: 40px;
  border: 1px solid #eee;
  border-radius: 3px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #2E70B5;
  overflow: hidden;
  padding: 1em;
  /*CHECKBOX*/
}
@media only screen and (max-width: 768px) {
  .profile__custom-data {
    margin: 0;
    margin-top: 0.5em;
  }
}
.profile__custom-data h1 {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data h1 {
    font-size: 1.25rem;
  }
}
.profile__custom-data h4 {
  margin-top: 0.5em;
  font-weight: 300;
}
.profile__custom-data hr {
  margin: 1em 0;
}
.profile__custom-data ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.profile__custom-data ul li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 50px;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data ul li {
    height: 25px;
  }
}
.profile__custom-data ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.profile__custom-data ul li label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
  /* padding: 25px 25px 25px 80px; */
  margin: 0px;
  /* height: 30px; */
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  float: left;
  margin-left: 40px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data ul li label {
    font-size: 0.875rem;
    margin-left: 20px;
  }
}
.profile__custom-data ul li:hover label {
  color: #271c18;
}
.profile__custom-data ul li .check {
  display: block;
  position: absolute;
  border: 2px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data ul li .check {
    height: 15px;
    width: 15px;
    border-width: 1px;
  }
}
.profile__custom-data ul li:hover .check {
  border: 5px solid #271c18;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data ul li:hover .check {
    border-width: 1px;
  }
}
.profile__custom-data ul li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 13px;
  width: 13px;
  top: 2px;
  left: 2px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data ul li .check::before {
    height: 7px;
    width: 7px;
  }
}
.profile__custom-data input[type=radio]:checked ~ .check {
  border: 4px solid #BF2C88;
}
@media only screen and (max-width: 768px) {
  .profile__custom-data input[type=radio]:checked ~ .check {
    border-width: 2px;
  }
}
.profile__custom-data input[type=radio]:checked ~ .check::before {
  background: #BF2C88;
}
.profile__custom-data input[type=radio]:checked ~ label {
  color: #BF2C88;
}
.profile__custom-data input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.profile__custom-data input[type=checkbox] + label {
  position: relative;
  display: -webkit-flex;
  display: flex;
  margin: 0.6em 0;
  align-items: center;
  color: #271c18;
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.profile__custom-data input[type=checkbox] + label > ins {
  position: absolute;
  display: block;
  bottom: 0;
  left: 2em;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
}
@media only screen and (max-width: 768px) {
  .profile__custom-data input[type=checkbox] + label > ins {
    display: none;
  }
}
.profile__custom-data input[type=checkbox] + label > ins > i {
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #BF2C88;
}
.profile__custom-data input[type=checkbox] + label > span {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 1em;
  height: 1em;
  background: transparent;
  border: 2px solid #9E9E9E;
  border-radius: 2px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.profile__custom-data input[type=checkbox] + label:hover, .profile__custom-data input[type=checkbox]:focus + label {
  color: #271c18;
}
.profile__custom-data input[type=checkbox] + label:hover > span, .profile__custom-data input[type=checkbox]:focus + label > span {
  background: rgba(255, 255, 255, 0.1);
}
.profile__custom-data input[type=checkbox]:checked + label > ins {
  height: 100%;
}
.profile__custom-data input[type=checkbox]:checked + label > span {
  border: 0.5em solid #aaa;
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}
.profile__custom-data input[type=checkbox]:checked + label > span:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.2em;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  color: #fff;
  animation: checkbox-check 125ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
}
.profile__custom-data .selectric .button:hover {
  background-color: transparent;
}

.bellhop .profile-card-wrap {
  margin: 0;
  border: 0;
  border-radius: 0px;
  margin-bottom: 1em;
  color: #fff;
}
.bellhop .profile-card-wrap .avatar {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-bottom: 0.5em;
  border: 2px solid #fff;
}
.bellhop .profile-card-wrap .profile-card__header {
  background: #fe8c00; /* fallback for old browsers */
  background: -webkit-linear-gradient(to top, #f83600, #fe8c00); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #f83600, #fe8c00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.bellhop .profile-card-wrap .profile-card__header strong {
  font-size: 1.5rem;
}
.bellhop .profile-card-wrap .profile-card__header img {
  width: 100%;
}
.bellhop .profile-card-wrap .profile-card__header h3 {
  margin: 0.5em;
}
.bellhop .profile-card-wrap .profile-card__header .bellhop__descr {
  padding: 0.5em;
  text-align: right;
  font-style: italic;
  min-height: 50px;
}

.featured-category {
  width: 100%;
  clear: both;
}
.featured-category.featured-special .row .col25 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.featured-category .info-ricetta {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #eb0203;
  padding: 0px 20px;
  line-height: 51px;
  color: #fff;
  font-size: 23px;
}
@media only screen and (max-width: 768px) {
  .featured-category .info-ricetta {
    position: relative;
    text-align: center;
    margin-bottom: 5px;
  }
}
.featured-category .info-ricetta span {
  margin-right: 10px;
}
.featured-category .preparazione-symbol {
  width: 32px;
  height: 40px;
  margin-bottom: -12px;
  display: inline-block;
  background: url("/content/images/buitoni/sprite.png") no-repeat -60px -136px;
}
.featured-category .cottura-symbol {
  width: 50px;
  height: 40px;
  margin-bottom: -14px;
  display: inline-block;
  background: url("/content/images/buitoni/sprite.png") no-repeat -100px -136px;
}
.featured-category .dif_symbol {
  width: 32px;
  height: 40px;
  margin-bottom: -12px;
  display: inline-block;
  background: url("/content/images/buitoni/sprite.png") no-repeat -203px -136px;
}
.featured-category .dif_symbol.active {
  background-position: -162px -136px;
}
.featured-category h2 {
  color: #D35038;
}
.featured-category .page-title {
  background-color: #BF2C88;
  display: block;
  padding: 0.1em 0.5em 0.2em;
  line-height: 1.4;
  color: #fff;
  text-transform: inherit;
  letter-spacing: 0.03em;
  font-size: 1.7em;
}
.featured-category .recipe-info {
  display: table;
  width: 100%;
}
.featured-category .recipe-info .column {
  display: table-cell;
  vertical-align: top;
}
.featured-category .recipe-info .recipe-info-pic {
  position: relative;
  background-color: #008631;
  width: 55%;
  background-image: url("/content/images/buitoni-logo.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.featured-category .recipe-info .recipe-info-ingredients h2 {
  text-align: center;
  padding: 0;
  background-color: #f1f1f1;
  margin: 0;
  text-transform: uppercase;
  font-size: 11px;
  color: #535353;
  font-family: Arial;
  line-height: 2.5;
  margin-left: 1.5%;
  font-weight: bold;
}
.featured-category .recipe-info .ingredients {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.featured-category .recipe-info .ingredients > li {
  background-color: #f1f1f1;
  width: 48.5%;
  float: left;
  margin-left: 1.5%;
  margin-top: 1.5%;
  font-size: 0.675em;
  color: #535353;
}
.featured-category .recipe-info .ingredients > li span {
  display: block;
  padding: 1em 0.5em 1.1em;
  text-align: center;
  line-height: 1;
}
.featured-category .recipe-info .ingredients > li span.name {
  text-transform: uppercase;
}
.featured-category .recipe-info .ingredients > li span.quantity {
  border-top: 1px solid #fff;
}
.featured-category .featured-heading {
  color: #BF2C88;
  padding-bottom: 0.5em;
  margin-bottom: 0;
  margin-top: 1.5em;
}
.featured-category p {
  color: #271c18;
  margin: 0 0 1em;
}
.featured-category p.center {
  font-size: 1.225em;
  text-align: center;
  margin: 0 auto;
  width: 80%;
  padding: 0.5em 0 1em;
  line-height: 1;
}
.featured-category .featured-navigation {
  display: table;
  width: 100%;
  margin-bottom: 1.5em;
}
.featured-category .featured-navigation h2 {
  text-transform: inherit;
  font-size: 1.5em;
  text-align: center;
  padding: 0.1em 0.5em 0.2em;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
}
.featured-category .featured-navigation .column {
  display: table-cell;
}
.featured-category .featured-navigation .main {
  width: 25%;
}
.featured-category .featured-navigation .main .featured-navigation-item {
  width: 100%;
  margin: 0;
}
.featured-category .featured-navigation .main .featured-navigation-item .name {
  right: 0;
  left: auto;
  width: 50%;
}
.featured-category .featured-navigation .secondary h2 {
  margin-left: 1%;
}
.featured-category .featured-navigation .featured-navigation-item {
  width: 15%;
  margin-left: 1%;
  padding-top: 130px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  float: left;
  text-decoration: none;
  -webkit-transition: box-shadow 0.15s ease;
  transition: box-shadow 0.15s ease;
}
.featured-category .featured-navigation .featured-navigation-item:hover {
  box-shadow: inset 0 0 0px 3px #BF2C88;
}
.featured-category .featured-navigation .featured-navigation-item .name {
  display: block;
  background-color: #BF2C88;
  color: #fff;
  text-decoration: none;
  padding: 4px 10px;
  text-align: left;
  font-size: 0.875em;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.featured-category .featured-navigation .featured-navigation-item .fa {
  font-size: 0.675em;
  float: right;
  position: relative;
  top: 5px;
  right: -4px;
}
.featured-category .featured-recipes-header {
  display: table;
  width: 100%;
  border-bottom: 2px solid #b3b3b3;
  padding-bottom: 8px;
}
.featured-category .featured-recipes-header .column {
  display: table-cell;
}
.featured-category .featured-recipes-header .text {
  width: 40%;
}
.featured-category .featured-recipes-header .text p {
  font-size: 1.225em;
  line-height: 1.3;
  padding: 0.5em 0;
  margin: 0;
}
.featured-category .featured-recipes-header .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.featured-category .featured-recipes-header .image:before {
  content: "";
  display: block;
  width: 150px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIzNiUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(left, rgb(255, 255, 255) 36%, rgba(255, 255, 255, 0) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(36%, rgb(255, 255, 255)), color-stop(100%, rgba(255, 255, 255, 0))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgb(255, 255, 255) 36%, rgba(255, 255, 255, 0) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgb(255, 255, 255) 36%, rgba(255, 255, 255, 0) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgb(255, 255, 255) 36%, rgba(255, 255, 255, 0) 100%); /* IE10+ */
  background: linear-gradient(to right, rgb(255, 255, 255) 36%, rgba(255, 255, 255, 0) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 ); /* IE6-8 */
}
.featured-category .recipe-item {
  text-align: center;
  background-size: cover;
  background-position: center center;
  text-decoration: none;
  background-repeat: no-repeat;
  height: 200px;
  display: block;
}
.featured-category .recipe-item .recipe-item__cta {
  display: none;
}
.featured-category .recipe-item .recipe-item-name {
  background-color: #BF2C88;
  color: white;
  display: block;
  padding: 0.6em 1em 0.5em;
  text-decoration: none;
  font-size: 0.875em;
  line-height: 1;
  min-height: 3.5em;
}
@media screen and (max-width: 1024px) {
  .featured-category .main .featured-navigation-item .name {
    left: 0 !important;
    width: 100% !important;
  }
  .featured-category .page-title {
    display: block;
    text-align: center;
    font-size: 1.4em;
    background-size: 150px auto;
    background-position: center 10px;
    clear: both;
  }
  .featured-category .recipe-info, .featured-category .featured-navigation, .featured-category .featured-recipes-header {
    display: block;
    width: 100%;
  }
  .featured-category .recipe-info h2, .featured-category .featured-navigation h2, .featured-category .featured-recipes-header h2 {
    margin: 0;
  }
  .featured-category .recipe-info .column, .featured-category .featured-navigation .column, .featured-category .featured-recipes-header .column {
    display: block;
    width: 100%;
  }
  .featured-category .recipe-info .recipe-info-pic, .featured-category .featured-navigation .recipe-info-pic, .featured-category .featured-recipes-header .recipe-info-pic {
    max-height: 250px;
  }
  .featured-category .recipe-info .recipe-info-ingredients h2, .featured-category .recipe-info .secondary h2, .featured-category .featured-navigation .recipe-info-ingredients h2, .featured-category .featured-navigation .secondary h2, .featured-category .featured-recipes-header .recipe-info-ingredients h2, .featured-category .featured-recipes-header .secondary h2 {
    margin-left: 0;
  }
  .featured-category .recipe-info .recipe-info-ingredients .ingredients, .featured-category .recipe-info .secondary .ingredients, .featured-category .featured-navigation .recipe-info-ingredients .ingredients, .featured-category .featured-navigation .secondary .ingredients, .featured-category .featured-recipes-header .recipe-info-ingredients .ingredients, .featured-category .featured-recipes-header .secondary .ingredients {
    overflow: hidden;
    margin-left: -1.5%;
  }
  .featured-category .recipe-info .featured-navigation-item, .featured-category .featured-navigation .featured-navigation-item, .featured-category .featured-recipes-header .featured-navigation-item {
    width: 100% !important;
    margin: 0;
    float: none;
    height: auto;
    overflow: hidden;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 480px) {
  .featured-category p {
    text-align: justify;
  }
  .featured-category .recipe-info .recipe-info-ingredients h2 {
    margin-left: 0;
    margin-bottom: 0.5em;
  }
  .featured-category .recipe-info .recipe-info-ingredients .ingredients {
    margin-left: 0;
  }
  .featured-category .recipe-info .recipe-info-ingredients .ingredients li {
    margin: 0;
    width: 100%;
    display: block;
    margin-bottom: 0.5em;
  }
  .featured-category .recipe-info .recipe-info-ingredients .ingredients li span.name {
    padding-bottom: 0.2em;
  }
  .featured-category .recipe-info .recipe-info-ingredients .ingredients li span.quantity {
    padding-top: 0.2em;
    border-top: none;
  }
}

@keyframes onemore {
  from {
    opacity: 0;
    transform: scale(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(2, 2);
  }
  to {
    opacity: 0;
    transform: scale(3, 3);
  }
}
.popmessage {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 110%;
}
@media only screen and (max-width: 992px) {
  .popmessage {
    display: none;
  }
}
.popmessage .popmessage-item {
  display: block;
  font-size: 11px;
  padding: 1.5em;
  padding-left: 0;
  text-align: left;
  border-radius: 3px;
  margin: 0;
  box-shadow: 0px 0px 26px -2px rgba(119, 119, 119, 0.38);
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #000;
  min-width: 250px;
  position: relative;
  max-height: 200px;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.popmessage .popmessage-item:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 5em;
  box-shadow: -3px -3px 4px rgba(119, 119, 119, 0.38);
  width: 1em;
  background: #fff;
  height: 1em;
  position: absolute;
  top: 1em;
  right: 2.5em;
  -webkit-transform: translateY(-15px) rotate(45deg);
}
.popmessage .popmessage-item .popmessage-item-wrap {
  display: table;
  line-height: 1.2;
  width: 100%;
}
.popmessage .popmessage-item.is--hide {
  opacity: 0;
  display: none;
}
.popmessage .popmessage-item.is--away {
  max-height: 0;
  padding: 0;
  opacity: 0;
  display: none;
}
.popmessage .popmessage-item.is--pop .one-more {
  animation-iteration-count: 1;
  animation: onemore 1s normal forwards ease;
}
.popmessage .popmessage-item .popmessage-item-image {
  display: table-cell;
  width: 6em;
  text-align: center;
  vertical-align: middle;
  padding: 0 1.5em;
  position: relative;
}
.popmessage .popmessage-item .popmessage-item-image .one-more {
  position: absolute;
  left: 1.5em;
  top: 0.5em;
  font-weight: 300;
  font-size: 2em;
}
.popmessage .popmessage-item .popmessage-item-image img {
  max-width: 5em;
  max-height: 5em;
}
.popmessage .popmessage-item .popmessage-item-desc {
  display: table-cell;
  vertical-align: middle;
}
.popmessage .popmessage-item strong {
  color: #BF2C88;
}

.service-detail .service-box {
  /*background-color: #eaf2fd;*/
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 1em;
  border-radius: 5px;
  display: block;
}
@media only screen and (max-width: 992px) {
  .service-detail .service-box {
    width: 100%;
    display: block;
  }
}
.service-detail #result-container {
  width: 100%;
  display: block;
}
.service-detail .btn {
  width: 50%;
  margin: 0 auto;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
}
.service-detail #checkStoreSAvailabilityForm {
  display: -webkit-flex;
  display: flex;
  margin: 1em auto;
  width: 95%;
}
@media only screen and (max-width: 992px) {
  .service-detail #checkStoreSAvailabilityForm {
    width: 100%;
    display: block;
  }
}
.service-detail #checkStoreSAvailabilityForm input {
  height: 40px;
  margin: 0 5px;
  border-radius: 4px;
  border-color: #BF2C88;
}
@media only screen and (max-width: 992px) {
  .service-detail #checkStoreSAvailabilityForm input {
    margin: 1em auto;
    width: 100% !important;
  }
}
.service-detail #checkStoreSAvailabilityForm input:nth-child(1) {
  width: 30%;
}
@media only screen and (max-width: 992px) {
  .service-detail #checkStoreSAvailabilityForm input:nth-child(1) {
    width: 100%;
  }
}
.service-detail #checkStoreSAvailabilityForm input:nth-child(2) {
  width: 10%;
}
@media only screen and (max-width: 992px) {
  .service-detail #checkStoreSAvailabilityForm input:nth-child(2) {
    width: 100%;
  }
}
.service-detail #checkStoreSAvailabilityForm input:nth-child(3) {
  width: 30%;
}
@media only screen and (max-width: 992px) {
  .service-detail #checkStoreSAvailabilityForm input:nth-child(3) {
    width: 100%;
  }
}
.service-detail #checkStoreSAvailabilityForm .checkStores-control {
  background-color: #fdaf19;
  font-weight: 500;
  margin: 0;
  padding: 0;
  height: 40px;
  width: 30%;
  font-size: 1.1em;
}
@media only screen and (max-width: 992px) {
  .service-detail #checkStoreSAvailabilityForm .checkStores-control {
    width: 100%;
  }
}
.service-detail .address-message {
  margin: 1em 0.5em 0;
}
@media only screen and (max-width: 992px) {
  .service-detail .address-message {
    margin: 0.5em 0;
  }
}
.service-detail .address-message .result-address {
  color: #271c18;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1em;
}
.service-detail .address-message .result-address strong {
  font-weight: bold;
}
.service-detail #result-container {
  /*.distance {
      max-width: 10%;
      @include flex-basis(10%);
      text-align: center;

      @include bp(tablet) {
          max-width: 100%;
          @include flex-basis(100%);
          @include flexbox();
          @include justify-content(center);
      }

      span {
          font-size: 1rem;
          font-weight: 800;
          color: $mainColor;
          white-space: nowrap;
      }
  }*/
}
.service-detail #result-container .result-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  margin: 1em;
  padding: 15px 0;
}
@media only screen and (max-width: 992px) {
  .service-detail #result-container .result-item {
    padding: 1em 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 480px) {
  .service-detail #result-container .result-item {
    padding: 1em 0;
    display: block;
  }
}
.service-detail #result-container .address {
  max-width: 40%;
  -webkit-flex-basis: 40%;
  flex-basis: 40%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .service-detail #result-container .address {
    max-width: 95%;
    -webkit-flex-basis: 95%;
    flex-basis: 95%;
  }
}
.service-detail #result-container .address .icon {
  margin: 0 0.5em;
}
.service-detail #result-container .address .icon img {
  max-width: 60px;
}
.service-detail #result-container .address span {
  font-size: 1rem;
  font-weight: 500;
}
.service-detail #result-container .address .storeName {
  display: block;
}
.service-detail #result-container .address .storeName .cityName {
  width: 100%;
  color: #BF2C88;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
.service-detail #result-container .address .storeName .addressName {
  width: 100%;
  display: block;
  color: #666;
  font-size: 0.9rem;
}
.service-detail #result-container .service-button {
  margin-left: 5px;
  max-width: 30%;
  -webkit-flex-basis: 30%;
  flex-basis: 30%;
}
@media only screen and (max-width: 992px) {
  .service-detail #result-container .service-button {
    max-width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .service-detail #result-container .service-button {
    padding: 0.5em 0;
  }
}
.service-detail #result-container .service-button .btn-store-redirect {
  border-radius: 3px;
  border: none;
  color: #fff;
  font-size: 0.8em;
  padding: 0.8em 10px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .service-detail #result-container .service-button .btn-store-redirect {
    font-size: 0.8em;
  }
}
.service-detail #result-container .service-button .btn-store-redirect.pickup {
  background-color: #2E70B5;
}
.service-detail #result-container .service-button .btn-store-redirect.pickup:before {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/head/ico-shop-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  width: 18px;
  padding-right: 10px;
}
.service-detail #result-container .service-button .btn-store-redirect.delivery {
  background-color: #ca2f20;
}
.service-detail #result-container .service-button .btn-store-redirect.delivery:before {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/head/ico-shipping-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  width: 18px;
  padding-right: 10px;
}
.service-detail #result-container .service-button .btn-store-redirect.port:after {
  display: block;
  content: "";
  float: left;
  background-image: url(/content/images/head/ship_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  width: 18px;
  padding-right: 5px;
}

.CheckAllService {
  max-width: 60vw;
}
@media only screen and (max-width: 992px) {
  .CheckAllService {
    max-width: 100vw;
  }
}
.CheckAllService .delivery-service-detail {
  padding: 1em;
  text-align: center;
}
.CheckAllService .delivery-service-detail h2 {
  color: #303030;
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.addressAutocomplete #addressAutocompleteItem .addressListItem {
  padding: 0.5em 1em 1em;
}
.addressAutocomplete #addressAutocompleteItem .addressListItem .autocompleteItemDelivery {
  padding: 0.5em;
  border-bottom: 1px solid #666;
  text-decoration: none;
  color: #303030;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .footer .container {
    padding: 0;
  }
}
.footer.footer__site {
  /*position: absolute;*/
  bottom: 0;
  width: 100%;
  background-color: rgba(191, 44, 136, 0.2);
  padding-top: 15px;
  clear: both;
}
@media only screen and (max-width: 992px) {
  .footer.footer__site {
    position: relative;
    text-align: -webkit-center;
  }
}
.footer.footer__site .row {
  margin: 0;
  color: #BF2C88;
  font-size: 1rem;
}
.footer.footer__site .row ul {
  margin: 0;
}
.footer.footer__site .row ul li a {
  text-decoration: none;
  color: #BF2C88;
  line-height: 1.3rem;
  /*@include bp(tablet) {
      font-size: 1.2rem;
      line-height: 1.6rem;
  }*/
}
.footer.footer__site .row .logo-wrap {
  text-align: center;
  align-items: flex-start;
  padding-top: 15px;
}
.footer.footer__site .row .logo-wrap img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .footer.footer__site .row .logo-wrap img {
    width: 75%;
  }
}
@media only screen and (max-width: 992px) {
  .footer.footer__site .row .logo-wrap {
    padding: 1rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .footer.footer__site .row .logo-wrap {
    padding: 1rem;
  }
}
.footer.footer__site .row .content-wrap {
  padding: 0 0 1em 0;
}
.footer.footer__site .row .content-wrap .col-3 div + div {
  margin-top: 0.5em;
}
@media only screen and (max-width: 992px) {
  .footer.footer__site .row .content-wrap > .row {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}
@media only screen and (max-width: 992px) and (max-width: 768px) {
  .footer.footer__site .row .content-wrap > .row {
    display: block;
  }
}
.footer.footer__site .row strong {
  line-height: 1.5rem;
  color: #BF2C88;
  font-size: 1rem;
  padding-top: 1em;
  font-size: 1.2rem;
  display: block;
}
.footer.footer__site .row .social-box {
  text-align: center;
}
.footer.footer__site .row .social-box .txt-social-box {
  margin-bottom: -15px;
}
.footer.footer__site .row .social-box .txt-social-box strong {
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.footer.footer__site .row .social-box .social {
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .footer.footer__site .row .social-box .social {
    justify-content: center;
  }
}
.footer.footer__site .row .social-box .social a {
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  border-radius: 100%;
  color: #BF2C88;
  margin-right: 0.5em;
}
.footer.footer__site .row .social-box .social .background-social {
  border-radius: 5px;
  border: solid 2px;
}
@media only screen and (min-width: 1367px) {
  .footer.footer__site .row .order__info {
    display: none;
  }
}
@media only screen and (max-width: 1366px) {
  .footer.footer__site .row .order__info {
    display: none;
  }
}
.footer.footer__site .row .order__info img {
  display: none;
}
.footer.footer__site .row .order__info strong {
  display: block;
}
.footer.footer__site .row .order__info i {
  display: none;
}
.footer.footer__site .row .order__info .cursor-pointer {
  cursor: pointer;
}
.footer.footer__site .row .order__info .place--service {
  font-size: 80%;
  color: #271c18;
}
.footer.footer__site .row .order__info .place--service small {
  font-weight: bold;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .footer.footer__site .row .order__info .place--service {
    display: inline;
  }
}
.footer.footer__site .row .order__info .text--bold {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .footer.footer__site .row .order__info {
    /*@include bp(tablet) {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }*/
    display: block;
    padding: 1em;
    font-size: 1rem !important;
  }
  .footer.footer__site .row .order__info .flex {
    display: inline !important;
  }
  .footer.footer__site .row .order__info .change--service {
    margin-bottom: 0.3em;
  }
  .footer.footer__site .row .order__info .change--service strong {
    display: inline !important;
  }
  .footer.footer__site .row .order__info .change--service small {
    font-weight: bold;
    cursor: pointer;
  }
  .footer.footer__site .row .order__info .place--service {
    font-size: 0.8rem !important;
    color: #fff;
    display: block !important;
    margin-top: 0.5rem;
  }
  .footer.footer__site .row .order__info .place--service small {
    font-weight: bold;
    color: #303030;
    cursor: pointer;
  }
  .footer.footer__site .row .order__info .change-btn {
    cursor: pointer;
    color: rgb(241, 199, 59);
    font-weight: bold;
  }
  .footer.footer__site .row .order__info strong small {
    color: #303030 !important;
    font-weight: bold;
    cursor: pointer;
  }
}
@media only screen and (max-width: 480px) {
  .footer.footer__site .row .order__info .change--service .visible-on-tablet {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .footer.footer__site .row .order__info .show-on-large {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .footer.footer__site > .row {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #BF2C88;
  }
}
@media only screen and (max-width: 992px) and (max-width: 768px) {
  .footer.footer__site > .row {
    display: block;
  }
}

.copy {
  background-color: #BF2C88;
  color: #fff;
  padding: 0.7em;
  font-size: 0.9rem;
  padding: 20px 10px;
}
@media only screen and (max-width: 768px) {
  .copy {
    padding: 10px 20px;
  }
}
.copy a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

#serviceSurvey {
  border: 1px solid #c0c0c0;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  max-width: 300px;
  position: fixed;
  bottom: 0;
  right: 100px;
  background: white;
  z-index: 9999;
}
@media only screen and (max-width: 992px) {
  #serviceSurvey {
    position: sticky;
    max-width: 100%;
  }
}
#serviceSurvey .surveyStep {
  background: white;
  padding: 5px;
  margin-bottom: 5px;
}
#serviceSurvey .surveyStep .serviceScoreStars {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}
#serviceSurvey .surveyStep .serviceScoreLabel {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}
#serviceSurvey .surveyStep label {
  display: block;
  font-size: 1.2em;
  color: #909090;
  margin-bottom: 10px;
}
#serviceSurvey .surveyStep input[type=radio] {
  display: inline-block;
  width: 15%;
  margin: 0;
}
#serviceSurvey .surveyStep textarea {
  width: 100%;
}
#serviceSurvey .surveyStep a {
  margin-top: 10px;
  display: block;
  text-align: center;
  padding: 4px;
  cursor: pointer;
}

.scan-cookie {
  padding: 10px;
}
.scan-cookie .necessary {
  color: #4caf50;
}
.scan-cookie .cat_row .cat_id_2 {
  background-color: white;
  color: #4caf50;
}
.scan-cookie .analytics {
  color: #8566ff;
}
.scan-cookie .cat_row .cat_id_4 {
  background-color: white;
  color: #8566ff;
}
.scan-cookie .functional {
  color: #373fc0;
}
.scan-cookie .cat_row .cat_id_5 {
  background-color: white;
  color: #373fc0;
}
.scan-cookie .performance {
  color: #ff8533;
}
.scan-cookie .cat_row .cat_id_6 {
  background-color: white;
  color: #ff8533;
}
.scan-cookie .advertisement {
  color: #d13395;
}
.scan-cookie .cat_row .cat_id_3 {
  background-color: white;
  color: #d13395;
}
.scan-cookie .other {
  color: #f86565;
}
.scan-cookie .cat_row .cat_id_1 {
  background-color: white;
  color: #f86565;
}
.scan-cookie .spinner-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: transparent; */
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.768627451);
}
.scan-cookie .pulse-container {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scan-cookie .pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #065ae7;
}
.scan-cookie .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.scan-cookie .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.scan-cookie .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}
.scan-cookie .cat_table {
  width: 100%;
}
.scan-cookie .cookie_name, .scan-cookie .cookie_domain, .scan-cookie .cookie_type {
  width: 15%;
}
.scan-cookie .cookie_desc {
  width: 40%;
}
.scan-cookie .cookie_expire {
  width: 15%;
}
.scan-cookie .result-overview {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.1);
  background-color: #fff;
}
.scan-cookie .result-overview .total-cookies {
  background-image: url(assets/images/cookie-bg.svg);
  background-size: cover;
  background-position: center;
}
.scan-cookie .cookie-categories {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.1);
  background-color: #fff;
  position: relative;
}
.scan-cookie .cookie-categories p {
  font-size: 18px;
  font-weight: 500;
}
.scan-cookie .cookie-categories .cat_row {
  background-color: #fff;
  margin: 8px 0;
  padding: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.1);
  display: flex;
  font-size: 14px;
  width: 100%;
}
.scan-cookie .cookie-categories .cat_row.table-heads {
  background-color: transparent;
  box-shadow: none;
}
.scan-cookie .cookie-categories .cat_row.table-heads span {
  font-size: 18px;
  background: transparent;
  font-weight: 600;
}
.scan-cookie .cookie-categories .cat_row span {
  padding-right: 16px;
  word-break: break-word;
}
.scan-cookie .cookie-categories .cat_row span:last-child {
  padding-right: 0;
}
.scan-cookie .cookie-categories .scanning-steps .steps {
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 auto 18px auto;
  min-width: 40px;
}
.scan-cookie .cookie-categories .scanning-steps h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.scan-cookie .cookie-categories .features {
  background: linear-gradient(to bottom, #fff 0, #fff 15%, #f8f9fa 15%, #f8f9fa 85%, #fff 85%, #fff 100%);
}
.scan-cookie .cookie-categories .free-trial .wrapper {
  background: #E7F5F5;
  border-radius: 10px;
}
.scan-cookie .cookie-categories .free-trial h3 {
  color: #045ae8;
}
.scan-cookie .cookie-categories .free-trial .button {
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease-in-out;
  display: block;
}
.scan-cookie .cookie-categories .free-trial a.view-plan-btn {
  color: #045ae8;
  background-color: #fff;
}
.scan-cookie .cookie-categories .free-trial a.start-now-button {
  color: #ffffff;
  background-color: #045ae8;
}
.scan-cookie .cookie-categories .free-trial a.button:hover {
  text-decoration: none;
  box-shadow: 0 2px 4px 3px rgba(50, 50, 93, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.scan-cookie .cat_row {
  background-color: #fff;
  margin: 8px 0;
  padding: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.1);
  display: flex;
  font-size: 14px;
  width: 100%;
}
.scan-cookie .cat_row.table-heads {
  background-color: transparent;
  box-shadow: none;
}
.scan-cookie .cat_row.table-heads span {
  font-size: 18px;
  background: transparent;
  font-weight: 600;
}
.scan-cookie .cat_row span {
  padding-right: 16px;
  word-break: break-word;
}
.scan-cookie .cat_row span:last-child {
  padding-right: 0;
}
.scan-cookie .scanning-steps .steps {
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 auto 18px auto;
  min-width: 40px;
}
.scan-cookie .scanning-steps h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.scan-cookie .features {
  background: linear-gradient(to bottom, #fff 0, #fff 15%, #f8f9fa 15%, #f8f9fa 85%, #fff 85%, #fff 100%);
}
.scan-cookie .free-trial .wrapper {
  background: #E7F5F5;
  border-radius: 10px;
}
.scan-cookie .free-trial h3 {
  color: #045ae8;
}
.scan-cookie .free-trial .button {
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease-in-out;
  display: block;
}
.scan-cookie .free-trial a.view-plan-btn {
  color: #045ae8;
  background-color: #fff;
}
.scan-cookie .free-trial a.start-now-button {
  color: #ffffff;
  background-color: #045ae8;
}
.scan-cookie .free-trial a.button:hover {
  text-decoration: none;
  box-shadow: 0 2px 4px 3px rgba(50, 50, 93, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.result-overview .total-cookies .cookie-count {
  font-weight: bold;
  font-size: 99px;
  line-height: 100px;
  color: #065AE8;
  margin-bottom: 5px;
}
.result-overview .total-cookies p {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
  text-align: center;
  color: #212529;
}
.result-overview .result-summary {
  font-weight: 300;
  font-size: 23px !important;
  line-height: 30px;
  color: #000000;
  margin-bottom: 20px;
  word-break: break-all;
}
.result-overview .result-summary strong {
  font-weight: bold;
}
.result-overview .signup-text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 30px;
}
.result-overview .result-summary a {
  color: #065AE8;
  font-size: 23px !important;
}
.result-overview a.button {
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  background: #065AE8;
  border-radius: 3px;
  padding: 20px 50px;
  display: inline-block;
  transition: all 0.2s ease;
}
.result-overview a.button:hover {
  transition: all 0.2s ease;
  transform: translateY(2px);
  text-decoration: none;
}

.thankyou {
  padding: 5rem 10px;
}
.thankyou h1 {
  font-size: 3em;
  margin: 0;
  color: #BF2C88;
}
.thankyou p {
  text-align: center;
  color: #303030;
  margin: 5px;
  font-size: 1.5em;
}

.confirm-reg-page {
  margin: 5rem;
  border: 1px dotted #BF2C88;
  font-size: 1.5rem;
  padding: 2rem;
  text-align: center;
}
.confirm-reg-page .logo {
  margin: 1rem;
  background-color: #BF2C88;
}
.confirm-reg-page .countdownMessage {
  margin: 1rem;
  font-weight: bold;
  color: #BF2C88;
}
.confirm-reg-page .timer {
  font-style: italic;
}
.confirm-reg-page .timer span {
  font-weight: bold;
  color: #BF2C88;
}

.payment-failed {
  text-align: center;
  color: #271c18;
}
.payment-failed .message-alert {
  font-size: 1.2em;
}
.payment-failed .order-decision {
  min-height: 30vh;
}
.payment-failed .order-decision .order-decision-item input {
  display: none;
}
.payment-failed .order-decision .order-decision-remove {
  margin-top: 1em;
}

.howdoesitworks {
  padding: 0 15px;
  text-align: center;
}
.howdoesitworks h1, .howdoesitworks h2 {
  color: #BF2C88;
  padding: 2em 0 0;
}
.howdoesitworks .title {
  color: #BF2C88;
  font-size: 1.5em;
  font-weight: 600;
}
.howdoesitworks .icon-service {
  background-position: top center;
  display: block;
  float: left !important;
  margin-right: 0.5em;
}
.howdoesitworks .block {
  border: 1px solid #666;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}
.howdoesitworks ul li {
  margin-bottom: 0.5em;
}
.howdoesitworks p.big {
  color: #271c18;
  font-size: 1.225rem;
}
.howdoesitworks .middle__image {
  width: 100%;
  height: 600px;
}
