.list-vouchers-content-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}


.voucher-last-few
{
    position: relative;
    top: 5px;
    font-weight: bold;
    font-size: 24px;
   left: -18px;
    padding: 5px;
    color: white;
background: rgb(255,61,0);
background: linear-gradient(90deg, rgba(255,61,0,1) 0%, rgba(255,151,0,1) 100%);
  transform: skewY(-2deg);
  filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.8));
    text-decoration: none;
    display: inline-block;
}

.vouchers-sold-clip
{
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: black;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
        transform: skewY(-2deg);
    position: relative;
    left: -8px;
    top: 27px;
}

.voucher-sold-out
{
    

    
      transform: skewY(-2deg);
    position: relative;
    top: 5px;filter: drop-shadow(5px 5px 4px rgba(0,0,0,0.8));
    font-weight: bold;
    font-size: 24px;
    left: -18px;
    padding: 5px;
    color: white;
    background: rgb(255,151,0);
    background: linear-gradient(90deg, rgba(255,151,0,1) 0%, rgba(255,79,0,1) 100%);
     box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
    text-decoration: none;
    display: inline-block;
}

body
{
    font-family: 'Barlow Semi Condensed', sans-serif;
    margin: 0 !important;
}

.list-link-v
{
    margin-top: 10px;
}

.list-link-v a
{
    font-weight: 600;

    font-size: 1.125em;
    text-decoration: none;
    color: white;
}

.list-featured-offer
{

   position: relative;
   width: 100%;
   height: 170px;
  
}



.list-featured-offer img {
      position: absolute;
      top: 0;
      height: 100%;
      object-fit: cover;
   }

.list-vouchers-content {
  flex: 30%;
  margin: 0 !important;
}



@media (max-width:500px) {
  .list-vouchers-content-container {
    flex-wrap: nowrap;
      flex-direction: column;
  }
  
  .list-vouchers-content 
  {
      flex: 100%;
  }
  
}