.cardOuter {
    margin-bottom: 40px !important;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    /* Border */

    box-sizing: border-box;
    border-radius: 24px;

    /* Inside Auto Layout */
    margin: 0px 10px;
}

.cardHeader {
    background-color: white;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1;
    /* padding: 29px 24px 21px 35px; */
}

.imageHeader {
    border-radius: 24px;
    max-height: 255px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.cardBody {
    padding: 16px;
}

.titleCourse {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;

    /* Text Accent */

    color: #234b88;

    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 3em;
}

.coachName {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    /* identical to box height */

    /* Text Secondary */

    color: #aeaeae;
    margin-bottom: 10px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 1.5em;
}

.labelDiscount {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */

    color: #3d3d3d;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 2em;
}

.realPrice {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */

    text-decoration-line: line-through;

    /* Text Secondary */

    color: #aeaeae;
    margin-left: 10px;
}
.course-item:hover{
    cursor: pointer;
}

@media (max-width: 900px) {
    #containerCard {
        padding: 0 !important;
        /* width: 100vw; */
        margin-bottom: 20px !important;
    }

    .cardOuter {
        margin-bottom: 20px !important;
    }
}
