#wrapper_read_courses {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-top: 40px;
}

.cashback-available {
    position: relative;
    background-color: #3d366d;
    border: 1px solid #f8f9fa;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font-family: arial, sans-serif;
    font-size: 14px;
    line-height: 50px;
    min-width: 250px;
    padding: 0 16px;
    text-align: center;
    -webkit-user-select: none;
    touch-action: manipulation;
    box-shadow: rgba(0, 0, 0, .5) 0 1px 1px;
    display: flex;
}

.cashback-available img {
    margin-top: 5px;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.cashback-available:hover {
    border-color: #dadce0;
    box-shadow: rgba(0, 0, 0, .55) 0 2px 2px;
    color: #202124;
}

.cashback-available:focus {
    border-color: #4285f4;
    outline: none;
}

.read-courses-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 5px;
    color: #252641;
}

.cards-wrapper-read-courses {
    display: flex;
    flex-flow: row;
    text-align: center;
    gap: 20px;
    align-items: stretch; /*stretches all cards same height*/
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .cards-wrapper-read-courses {
        flex-flow: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .cashback-available {
        min-width: 200px;
        font-size: 12px;
        line-height: 30px;
        padding: 0 8px;
    }

    .cashback-available img {
        margin-top: 4px;
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

}