.anim {
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

.anim-33 {
  -webkit-transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-66 {
  -webkit-transition: all 0.66s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.66s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.66s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-100 {
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim.out:not(.show) {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.anim.from-top {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}

.anim.from-bottom {
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
}

.anim.from-left {
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0);
}

.anim.from-right {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.anim[class*="from"].show {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.anim-stack {
  margin-top: -50px;
}

.anim-stack.show {
  margin-top: initial;
}

/* ANIMATION : 3 dot blink
    used on delivery page INTER : wait for ajax call to retrieve the delivery fees
*/
.anim-blink-inf-container {
  position: relative;
}

.anim-blink-inf-container.arrow::before,
.anim-blink-inf-container.arrow::after,
.anim-blink-inf-container .arrow::before,
.anim-blink-inf-container .arrow::after {
  visibility: hidden;
}

.anim-blink-inf-arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -6px;
}

.anim-blink-inf {
  vertical-align: middle;
}

.anim-blink-inf span {
  -webkit-animation-name: blink-opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
  animation-name: blink-opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.anim-blink-inf span:nth-child(2) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.anim-blink-inf span:nth-child(3) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.anim-blink-inf span:nth-child(4) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.anim-blink-inf-line {
  display: inline-block;
  width: 3px;
  height: 12px;
  margin: 0 1px;
  background-color: #272727;
}

.anim-blink-inf-point {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #272727;
}

.btn-xs .anim-blink-inf-point,
.btn-sm .anim-blink-inf-point {
  width: 7px;
  height: 7px;
}

.anim-blink-inf-square {
  position: absolute;
  width: 6px;
  height: 6px;
  margin: 0;
  background-color: #272727;
}

.anim-blink-inf .anim-blink-inf-square:first-child {
  bottom: 1px;
  right: 1px;
}

.anim-blink-inf .anim-blink-inf-square:nth-child(2) {
  bottom: 1px;
  left: 1px;
}

.anim-blink-inf .anim-blink-inf-square:nth-child(3) {
  top: 1px;
  right: 1px;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.anim-blink-inf .anim-blink-inf-square:nth-child(4) {
  top: 1px;
  left: 1px;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

@-webkit-keyframes blink-opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes blink-opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* END ANIMATION : 3 dot blink */
/*[ Arrow*/
.arrow {
  position: relative;
  padding-right: 24px;
}

.btn .arrow {
  display: inline-block;
}

.btn-link .arrow {
  text-decoration: underline;
}

.arrow::before,
.arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 7px;
  width: 8px;
  height: 2px;
  background-color: #333;
}

.arrow::before {
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow::after {
  margin-top: 1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arrow-white::before,
.arrow-white::after,
.btn-primary.arrow::before,
.btn-primary.arrow::after,
.btn-primary .arrow::before,
.btn-primary .arrow::after {
  background-color: #fff;
}

.arrow-bottom::before,
.arrow-bottom::after {
  height: 1px;
}

.arrow-bottom::before {
  right: 3px;
  margin-top: -1px;
}

.arrow-bottom::after {
  right: 9px;
  margin-top: -1px;
}

.arrow-bottom.collapsed::before {
  right: 9px;
}

.arrow-bottom.collapsed::after {
  right: 3px;
}

.arrow-left {
  padding-right: 0;
  padding-left: 24px;
}

.arrow-left::before,
.arrow-left::after {
  right: auto;
  left: 7px;
}

.arrow-left::before {
  margin-top: 1px;
}

.arrow-left::after {
  margin-top: -4px;
}

.arrow-down::before,
.arrow-up::before,
.arrow-down::after,
.arrow-up::after {
  margin-top: 0;
}

.arrow-down::before,
.arrow-up::after {
  right: 20px;
}

.arrow-down::after,
.arrow-up::before {
  right: 15px;
}

.panel-default > .panel-heading.arrow,
.panel-default > .panel-heading .arrow {
  padding-right: 35px;
}

.panel-arrow .arrow::before,
.panel-arrow .arrow::after {
  margin-top: -1px;
}

.panel-arrow .arrow::before {
  right: 20px;
}

.panel-arrow .arrow::after {
  right: 15px;
}

.panel-arrow .arrow:not(.collapsed)::before {
  right: 15px;
}

.panel-arrow .arrow:not(.collapsed)::after {
  right: 20px;
}

/*]*/
/* CSS class for specific static inspirational link menu*/
.inspirational.arrow::before {
  background-color: #f3007c;
  right: 60px;
}

.inspirational.arrow::after {
  background-color: #f3007c;
  right: 60px;
}

#backToTop {
  position: fixed;
  z-index: 25;
  bottom: 20px;
  right: 20px;
  width: 31px;
  height: 31px;
  background-color: #212129;
  border-radius: 50%;
  cursor: pointer;
}

.back-to-top-arrow {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 1px;
  height: 1px;
}

.back-to-top-arrow::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.back-to-top-arrow::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0px;
  width: 1px;
  height: 11px;
  background-color: #fff;
}

.block-title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.block-info {
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 15px;
}

.block-info:last-child {
  margin-bottom: 0;
}

.btn + .block-info {
  margin-top: 6px;
}

.block-info:empty {
  display: none;
}

.block-error {
  color: #fe0201;
}

.block-warning {
  color: #ff6c00;
}

.block-success {
  color: #3c763d;
}

.border-block {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #d7d7d7;
}

.error-tooltip {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #7f7f7f;
  text-align: center;
  font-size: 12px;
}

.error-tooltip::before,
.error-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
}

.error-tooltip::before {
  bottom: -16px;
  border-top-color: #000;
}

.error-tooltip::after {
  bottom: -15px;
  border-top-color: #fff;
}

.error-tooltip.coming-soon::before,
.error-tooltip.coming-soon::after {
  left: auto;
  right: 12px;
}

.extended-area {
  position: relative;
}

.extended-area::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
}

.flex-block {
  display: table;
  width: 100%;
}

.flex-block.flex-fixed {
  table-layout: fixed;
}

.flex-cell {
  display: table-cell;
  vertical-align: middle;
}

.flex-align .flex-cell label {
  width: auto;
}

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

.flex-align .flex-cell:first-child {
  text-align: left;
}

.flex-align .flex-cell:last-child {
  text-align: right;
}

.flex-top .flex-cell {
  vertical-align: top;
}

/*[ Flex grid*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-fit {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-row {
  margin-left: -7px;
  margin-right: -7px;
}

.flex-row [class^="flex-col"] {
  padding-left: 7px;
  padding-right: 7px;
}

.flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.flex-col-xs-4 {
  width: 33.33333333%;
}

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

.flex-col-xs-1 {
  width: 8.33333333%;
}

@media (min-width: 768px) {
  .flex-col-sm-auto {
    width: auto;
  }
  .flex-col-sm-6 {
    width: 50%;
  }
  .flex-col-sm-4 {
    width: 33.33333333%;
  }
  .flex-col-sm-3 {
    width: 25%;
  }
  .flex-offset-sm-3 {
    margin-left: 25%;
  }
  .flex-col-reverse-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (min-width: 992px) {
  .flex-col-md-auto {
    width: auto;
  }
  .flex-col-md-6 {
    width: 50%;
  }
  .flex-col-md-4 {
    width: 33.33333333%;
  }
}

/*]*/
.icon::before {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
}

.icon-middle::before {
  display: inline-block;
  vertical-align: middle;
}

.icon-top::before {
  margin-bottom: 3px;
}

.icon-left::before {
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  vertical-align: middle;
}

.icon-block-left,
.icon-block-right {
  position: relative;
  /* overflow:hidden; */
}

.icon-block-left {
  padding-left: 30px;
}

.icon-block-left::before,
.icon-block-right::before {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}

.icon-block-left::before {
  left: 10px;
}

.icon-block-right::before {
  right: 10px;
}

.icon-block-right.icon-glass::before {
  margin-top: -12px;
}

.icon.icon-wishlist-add.active::before {
  background: url("/m/images/PDP/pdp-sprite.png") no-repeat -87px -138px;
}

.icon.icon-arrow-left::before {
  background: url("/m/images/homepage/homepage-sprite.svg") no-repeat -49px 0px;
  height: 13px;
  width: 10px;
  float: left;
  margin-top: 7px;
}

.icon.currentCountryFlag-de::before {
  display: inline-block;
  background: url("/m/images/footer/footer_flags.png") no-repeat -2px -309px;
  height: 16px;
  width: 15px;
  margin-right: 2px;
  vertical-align: text-bottom;
}

.icon.currentCountryFlag-nl::before {
  display: inline-block;
  background: url("/m/images/footer/footer_flags.png") no-repeat -2px -343px;
  height: 16px;
  width: 15px;
  margin-right: 2px;
  vertical-align: text-bottom;
}

.icon.currentCountryFlag-fr::before {
  display: inline-block;
  background: url("/m/images/footer/footer_flags.png") no-repeat -2px -15px;
  height: 16px;
  width: 15px;
  margin-right: 2px;
  vertical-align: text-bottom;
}

.icon.currentCountryFlag-en::before {
  display: inline-block;
  background: url("/m/images/footer/footer_flags.png") no-repeat -2px -31px;
  height: 16px;
  width: 15px;
  margin-right: 2px;
  vertical-align: text-bottom;
}

.icon.currentCountryFlag-ch::before {
  display: inline-block;
  background: url("/m/images/footer/footer_flags.png") no-repeat -2px -81px;
  height: 16px;
  width: 15px;
  margin-right: 2px;
  vertical-align: text-bottom;
}

.img-block {
  display: block;
  max-width: 100%;
  margin: auto;
}

.loading {
  position: relative;
  min-height: 65px;
}

.loading::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.loading::after {
  content: "";
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  background: url("/m/images/Common/loading.gif") center no-repeat #fff;
  background-size: 50px;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.loading.loading-bottom {
  padding-bottom: 70px;
}

.loading.loading-bottom::before {
  background-color: transparent;
}

.loading.loading-bottom::after {
  top: auto;
  bottom: 5px;
}

.mention {
  font-size: 11px;
  color: #777777;
}

#overlay {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  visibility: hidden;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background-color;
}

#overlay.is-visible {
  z-index: 40;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.3);
}

#overlay.for-menu {
  z-index: 25;
}

#overlay.for-search {
  z-index: 32;
  background-color: rgba(255, 255, 255, 0.7);
  visibility: visible;
}

#overlay.for-right-panel {
  background-color: rgba(0, 0, 0, 0.3);
}

#overlay.for-plp-filter {
  background-color: rgba(0, 0, 0, 0.3);
}

.rating-stars-container {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 20px;
  vertical-align: middle;
}

.rating-stars {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}

.rating-stars.rating-0 {
  width: 0;
}

.rating-stars.rating-0_5 {
  width: 10px;
}

.rating-stars.rating-1 {
  width: 20px;
}

.rating-stars.rating-1_5 {
  width: 30px;
}

.rating-stars.rating-2 {
  width: 40px;
}

.rating-stars.rating-2_5 {
  width: 50px;
}

.rating-stars.rating-3 {
  width: 60px;
}

.rating-stars.rating-3_5 {
  width: 70px;
}

.rating-stars.rating-4 {
  width: 80px;
}

.rating-stars.rating-4_5 {
  width: 90px;
}

.rating-stars.rating-5 {
  width: 100px;
}

.rating-stars-star {
  display: inline-block;
  width: 20px;
}

.return-arrow {
  display: inline-block;
  margin-left: -4px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent;
  border: 0;
}

.separator {
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  text-align: center;
}

.separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: -1px;
  background-color: #000;
}

.separator-thin::before {
  height: 1px;
  margin-top: 0;
  background-color: #d7d7d7;
}

.separator-content {
  position: relative;
  display: inline-block;
  padding: 3px 5px;
  background: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
}

.tick {
  position: relative;
  padding-left: 15px;
}

.tick-success::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 5px;
  margin-top: -5px;
  border-bottom: 2px solid #009b79;
  border-left: 2px solid #009b79;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.tick-error::before,
.tick-error::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 1px;
  width: 10px;
  height: 2px;
  background-color: #fe0201;
}

.tick-error::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tick-error::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.tick-error.tick-black::before,
.tick-error.tick-black::after {
  background-color: #000;
}

.tick-success.tick-black::before {
  border-color: #000;
}

.tick-error.tick-orange::before,
.tick-error.tick-orange::after {
  background-color: #ff7626;
}

.tick-success.tick-orange::before {
  border-color: #ff7626;
}

/* Old tick */
/* [ */
.black-tick,
.green-tick,
.pink-tick {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 15px;
}

.black-tick::before,
.green-tick::before,
.pink-tick::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 5px;
  margin-top: -3px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.black-tick::before {
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
}

.green-tick::before {
  border-bottom: 2px solid #009b79;
  border-left: 2px solid #009b79;
}

.pink-tick::before {
  border-bottom: 2px solid #f3007c;
  border-left: 2px solid #f3007c;
}

.black-tick.right-tick::before {
  right: 20px;
  left: auto;
  padding-left: 0px;
}

/* ] */
