.voucher-container {
    background-color: var(--white);
    width: 100%;
}
.voucher-container .view-header {
    text-align: center;
}
.voucher-container .views-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}
.voucher-container .views-row > .views-field {
    display: inline-block;
    margin: 15px 0;
    max-width: 420px;
    padding: 0;
    width: 100%;
}
.voucher-card {
    background: var(--main);
    background: linear-gradient(135deg,  #00375b 0%,#004488 100%);
    border-radius: 15px;
    border-bottom: 5px solid var(--quart);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
    color: #fff;
    display: inline-block;
    max-height: 620px;
    padding: 40px;
    position: relative;
    text-align: center;
    width: 100%;
}
.voucher-card .logo {
    width: 100px;
    filter: brightness(0) invert(1) drop-shadow(0px 0 1px rgba(0, 0, 0, 0.8));
    -moz-filter: brightness(0) invert(1) drop-shadow(0px 0 1px rgba(0, 0, 0, 0.8));
    -webkit-filter: brightness(0) invert(1) drop-shadow(0px 0 1px rgba(0, 0, 0, 0.8));
    margin: 0 0 10px;

}
.voucher-card .title {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 7px;
}
.voucher-card .sub-title {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.voucher-discount {
    margin: 20px 0;
}
.voucher-discount .title {
    color: var(--quart);
    font-size: 1.8em;
    font-weight: 700;
    margin: 10px 0;
}
.voucher-card p {
    font-family: "Roboto",Arial,sans-serif;
    margin: 7px 0;
}
.voucher-card .until,
.voucher-card .terms {
    font-size: 0.9em;
    padding: 0 !important;
}
.voucher-card .until {
    color: var(--quart);
    margin: 10px 0 0;
}
.voucher-card .terms {
    margin: 0;
}
.voucher-code .refcode {
    border: 1px dashed var(--white-t7);
    color: var(--white-t7);
    margin: 0;
    text-transform: lowercase;
}
.voucher-card .circle1,
.voucher-card .circle2{
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

}
.voucher-card  .circle1{
    left: -25px;
}
.voucher-card  .circle2{
    right: -25px;
}

@media only screen and (max-width: 310px) {
  .voucher-code .refcode {
      font-size: 1.2em;
  }
}
@media only screen and (min-width: 480px) {
  .voucher-container .views-row > .views-field {
      align-content: baseline;
      margin: 15px;
      max-width: none;
      width: calc(360px - 30px);
  }
  .voucher-card {
      height: 500px;
      max-height: none;;
  }
}
@media only screen and (min-width: 755px) {
  .voucher-container .views-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
