.course-card-edit-dropdown {
    border-top-right-radius: 8px;
}

.course-card {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .1);
    width: 300px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: #fff;
}

.course-card:hover {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .2);
}

.course-card-picture-section {
    display: flex;
    height: 200px;
}

.course-card-picture-section img {
    height: 200px;
    width: 300px;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.course-card-bonus-section {
    display: flex;
    position: absolute;
    width: max-content;
    gap: 10px;
    height: 30px;
    justify-content: end;
    align-items: center;
    padding: 5px 10px;
    background: rgba(210, 181, 0, 0.59);
    color: #ffffff;
    font-weight: bold;
    border-radius: 8px 0 8px 0;
    border-bottom: 1px dashed white;
    border-right: 1px dashed white;
}

.course-card-cashback-section {
    display: flex;
    width: max-content;
    gap: 10px;
    height: 30px;
    margin-top: -30px;
    justify-content: end;
    align-items: center;
    padding: 5px 10px;
    background: #4caf5094;
    color: #ffffff;
    font-weight: bold;
    border-top-right-radius: 8px;
    border-top: 1px dashed white;
    border-right: 1px dashed white;
}

.course-card-edit {
    display: flex;
    border-radius: 0;
    box-shadow: none;
    border: none;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding: 0 10px;
    font-size: 12px;
    height: 34px;
}

.course-card-edit a {
    background: #fff;
    color: #000;
    box-shadow: none;
    border: none;
}

.course-card-course-information-section {
    display: flex;
    height: 100%;
    width: 100%;
}

.course-card-course-information-section-title {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.course-card-course-information-section-title p {
    width: 100%;
    display: flex;
    cursor: pointer;
    justify-content: center;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.course-card-course-information-section-title i {
    cursor: pointer;
    margin-left: 5px;
}