/*--- 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 -----*/
.customerVoucherOptions {
  margin: 15px 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .customerVoucherOptions {
    overflow: hidden;
  }
  .customerVoucherOptions > div {
    float: left;
    margin-right: 0.390625%;
    margin-bottom: 0.390625%;
    width: 49.8046875%;
  }
  .lt-ie9 .customerVoucherOptions > div {
    /*IE 8*/
    width: 49.609375%;
  }
  .customerVoucherOptions > div:nth-of-type(n) {
    /*reset if function is called more then once*/
    margin-right: 0.390625%;
  }
  .customerVoucherOptions > div:nth-of-type(2n) {
    margin-right: 0;
  }
}
.customerVoucherOptions > div {
  cursor: pointer;
  background: white;
  position: relative;
  margin-bottom: 10px;
  border: 1px solid #dedede;
}
.customerVoucherOptions > div:before,
.customerVoucherOptions > div.active:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 10px;
  margin: auto;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.customerVoucherOptions > div:before {
  width: 14px;
  height: 14px;
  border: 1px solid #dedede;
}
.customerVoucherOptions > div:not(.active):hover:before {
  border-color: #c1b39a;
}
.customerVoucherOptions > div.active:after {
  width: 8px;
  height: 8px;
  background: #c1b39a;
  left: 14px;
}
.customerVoucherOptions > div.active {
  border-color: #666666;
}
.customerVoucherOptions > div input[type="checkbox"] {
  display: none;
}
.customerVoucherOptions > div label {
  display: block;
  min-height: 72px;
  cursor: pointer;
  padding: 11px 120px 11px 40px;
}
@media only screen and (min-width: 768px) {
  .customerVoucherOptions > div label {
    float: left;
    width: 100%;
    padding: 11px 120px 11px 50px;
  }
}
.customerVoucherOptions > div img {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 130px;
}
