.course-notification-wrapper {
    position: absolute;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    pointer-events: none;
    z-index: 9999;
    right: 10px;
    
}
.course-notification-container {
    background: #fff;
    border-radius: 0;
    /* box-shadow: 0 4px 16px rgba(0,0,0,0.12); */
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    min-width: 320px;
    max-width: 360px;
    /* padding: 20px 24px 20px 20px; */
    padding: 12px;
    display: flex;
    align-items: flex-start;
    position: relative;
    pointer-events: auto;
    /* flex-direction: column; */
    border-top: 4px solid #0c93ff;
}
.course-notification-icon {
    margin-right: 14px;
    flex-shrink: 0;
}
.course-notification-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    border: 3px solid #0c93ff;
    border-radius: 50%;
}
.course-notification-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.course-notification-container .msg-cont {}
.course-notification-title {
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif !important;
    font-size: 19px;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 5px;
    width: 100%;
    display: block;
}
.course-notification-message {
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif !important;
    font-size: 15px;
    /* font-weight: bold; */
    letter-spacing: -0.35px;
    line-height: 1.46;
    color: #444;
    width: 100%;
    display: block;
    margin-top: 0;
}
.course-notification-close {
    display: none;
    position: absolute;
    top: 4px;
    right: 4px;
    background: transparent;
    border: none;
    font-size: 1.3em;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    /* padding: 5px 8px; */
    padding: 4px 6px;
    border-radius: 15px;
    /* height: 24px;
    width: 24px; */
    height: 20px;
    width: 20px;
}
.course-notification-wrapper:hover .course-notification-close {
    display: block;
}
.course-notification-close:hover {
    text-decoration: none;
}
@media (max-width: 768px) {
    .course-notification-wrapper {
        max-width: 95vw;
    }
    .course-notification-container {
        min-width: 220px;
        max-width: 95vw;
        padding: 16px 18px 16px 14px;
    }
}