/*--- standard variables ---*/
/*--- Switch Themes ---*/
/*.importTheme(@season) when (@season = 'lente') {
    @import "../themes/lente/css/variables_theme.less";
}*/

/*.importTheme(@season) when (@season = 'zomer') {
    @import "../themes/zomer/css/variables_theme.less";
}

.importTheme(@season) when (@season = 'herst') {
    @import "../themes/herfst/css/variables_theme.less";
}

.importTheme(@season) when (@season = 'winter') {
    @import "../themes/winter/css/variables_theme.less";
}*/

/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.coupon .image {
  position: relative;
}
.coupon .image img {
  width: 100%;
  height: 174px;
  object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  .coupon .image img {
    height: 125px;
  }
}
@media only screen and (min-width: 1280px) {
  .coupon .image img {
    height: 164px;
  }
}
.coupon .image .points {
  position: absolute;
  background: #fbfbfb;
  top: 0;
  left: 0;
  padding: 7px 10px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.more-info-popup .overlayBox,
.activate-popup .overlayBox,
.claimed-popup .overlayBox {
  top: 50%;
  left: 50%;
}
.more-info-popup .overlayTitle,
.activate-popup .overlayTitle,
.claimed-popup .overlayTitle {
  display: none;
}
.more-info-popup .overlayInner,
.activate-popup .overlayInner,
.claimed-popup .overlayInner {
  padding: 0;
  margin: 0;
}
.more-info-popup .overlayClose,
.activate-popup .overlayClose,
.claimed-popup .overlayClose {
  background: rgba(255, 255, 255, 0.8);
  padding: 0 3px 7px 4px;
  font-size: 28px;
  width: 27px;
  height: 27px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.more-info-popup .overlayClose:hover,
.activate-popup .overlayClose:hover,
.claimed-popup .overlayClose:hover {
  color: #454545;
}
.more-info-popup .bttn,
.activate-popup .bttn,
.claimed-popup .bttn {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}
.more-info-popup .coupon .image img,
.activate-popup .coupon .image img,
.claimed-popup .coupon .image img {
  width: 100%;
  height: 180px;
}
.more-info-popup .coupon {
  border: none;
}
.more-info-popup .coupon .content .description,
.more-info-popup .coupon .content .activate-coupon {
  display: block;
}
.more-info-popup .coupon .content .more-info {
  display: block;
  margin: 10px 0 0;
  text-decoration: underline;
  text-align: right;
}
.more-info-popup .coupon .content .date,
.more-info-popup .coupon .content .show-info-popup {
  display: none;
}
.activate-popup .content,
.claimed-popup .content {
  padding: 25px;
  text-align: center;
}
.activate-popup .content .title,
.claimed-popup .content .title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.activate-popup .content .description span,
.claimed-popup .content .description span {
  display: block;
  margin: 10px 0 15px;
}
.activate-popup .content .actions,
.claimed-popup .content .actions {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.activate-popup .content .actions .bttn,
.claimed-popup .content .actions .bttn {
  flex: 0 1 50%;
}
.activate-popup .content .actions .bttn + .bttn,
.claimed-popup .content .actions .bttn + .bttn {
  margin: 0 7px;
}
.activate-popup .content .actions .confirm,
.claimed-popup .content .actions .confirm {
  position: relative;
}
.activate-popup .content .actions .confirm .spinner,
.claimed-popup .content .actions .confirm .spinner {
  position: absolute;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
  top: 3px;
  left: 0;
  pointer-events: none;
}
.activate-popup .content .actions .confirm .spinner > div,
.claimed-popup .content .actions .confirm .spinner > div {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -ms-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  -o-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.activate-popup .content .actions .confirm .spinner > div.bounce1,
.claimed-popup .content .actions .confirm .spinner > div.bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.activate-popup .content .actions .confirm .spinner > div.bounce2,
.claimed-popup .content .actions .confirm .spinner > div.bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.claimed-popup .actions {
  margin: 15px 0 0;
}
.claimed-popup .actions .bttn {
  flex: 0 1 100% !important;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
