.vouchers-main-container .voucher-row{
    background-color: #F4F6F8;
    padding: 80px 10%;
}

.vouchers-main-container .voucher-row:nth-child(2n) {
    background-color: white;
  }

.voucher-item {
    display: flex;
    width: fit-content;
}

.voucher-discount-value {
    background-color: #049D2D;
    width: 250px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    line-height: 1.5em;
}

.voucher-discount-value .value{
    font-size: 30px;
    font-weight:700;
}

.voucher-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30px;
}

.voucher-data-available {
    font-size: 14px;
    font-weight: 400;
    color: #707070;
    display: flex;
    align-items: center;
}

.voucher-data-available .green {
    color: #049D2D;
    font-weight: bold;
    font-size: 16px;
}

.voucher-data-description {
    color: #585858;
    font-size: 18px;
    font-weight: 500;
    width: 280px;
    margin-top: 5px;
}

.voucher-data-code {
    display: flex;
    align-items: center;
    height: 40px;
}

.voucher-data-code .voucher-code{
    height:100%;
    padding: 0 20px;
    border: 1px solid #CACACC;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight:500;
    color: #707070;
}

.voucher-data-code .copy-code{
    background-color: #049D2D;
    color: white;
    font-size: 11px;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 17px;
    cursor: pointer;
    position: relative;
}

.voucher-data-code .copy-code:hover{
    opacity: 0.8;
}

.copy-code .copy-result{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    display: none;
    text-align: center;
    line-height: 40px;
}

.copy-code .copy-result.success{
    background-color: white;
    color: #049D2D;
    border: 1px solid #049D2D;
}

.copy-code .copy-result.error{
    background-color: red;
}

/* ** NO VOUCHERS ** */
.voucher-row.no-voucher{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.voucher-row.no-voucher .info-icon{
    color: #049D2D;
    margin-bottom: 20px;
}

.voucher-row.no-voucher h2{
    color: black;
    font-family: "Poppins", poppins;
    font-size: 60px;
    text-align: center;
    max-width: 880px;
}

@media (max-width:1024px){

    .vouchers-main-container .voucher-row{
        padding: 0;
        padding-bottom: 30px;
    }

    .voucher-item{
        flex-direction: column;
        width: 100%;
    }

    .voucher-discount-value{
        width: 100%;
        margin-bottom: 10px;
    }

    .voucher-data{
        margin: 0;
        align-items: center;
        text-align: center;
        padding: 0 5%;
    }

    .voucher-data-available{
        font-size: 12px;
        flex-direction: column;
    }

    .voucher-data-available .green{
        font-size: 14px;
    }

    .voucher-data-description{
        width: 100%;
        font-size: 14px;
    }

    .shop-discounted-no-products-main .no-discount-title h2{
        font-size: 40px;
    }

    .voucher-row.no-voucher{
        padding-top: 30px;
    }

    .voucher-row.no-voucher h2{
        font-size: 40px;
    }
}

@media (max-width:768px){
    .voucher-row.no-voucher h2{
        font-size: 30px;
        max-width:500px;
    }

    .voucher-row.no-voucher .info-icon{
        color: #049D2D;
    }
}