/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* image hover */
.voucher_images_list .overlay_container {
  position: relative;
}
.wgv-myaccount-vouchers-loadmore {
  width: 200px;
  text-decoration:none;
  color: #fff;
  display: block;
  text-align: center;
  margin: 20px auto;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color: #000;
  transition: .3s;
}
.wgv-myaccount-vouchers-loadmore:hover {
  color: #FFF;
  background-color: #000;
  border-color: #000;
  text-decoration: none;
}
.wgv-myaccount-vouchers-loadmore.wgv-vouchers-loadmore-disable,
.wgv-myaccount-vouchers-loadmore.wgv-vouchers-loadmore-disable:hover {
    background-color: #ccc !important;
    color: #666 !important;
    pointer-events: none;
    border: none;
}
.voucher-actions,.voucher-number,.voucher-expires, .voucher-remaining{text-align: center;}
ul.voucher_images_list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.voucher_images_list .voucher_images {
    padding: 0 5px;
    width: 25%;
    overflow: hidden;
    margin-bottom: 15px;
}
.voucher_images_list .voucher_images .overlay_container input {
    border: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
    top: 0;
    background: transparent;
    left: 0;
    z-index: 2;
}
.voucher_images_list .voucher_images .overlay_container .overlay_button {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -350%);
    top: 50%;
    transition: 0.5s;
    z-index: 3;
}
.voucher_images_list .voucher_images .overlay_container:hover .overlay_button {
    transform: translate(-50%, -50%);
}
.voucher_images_list .voucher_images .overlay_container input[type=radio]:checked+img {
    border: 2px solid #000;
}
.voucher_images_list .voucher_images .overlay_container input:after {
    display: none;
}
.voucher_images_list .voucher_images .overlay_container img {
    border: 2px solid transparent;
}