/*** Style for Notification pop up ***/

@keyframes notification-slide {
    from { top: -155px }
    to { top: 15px }
}

.slidenotification {
    animation: notification-slide 2.5s ease forwards;
}

.notification_content a{
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.notification_container {
    position: fixed;
    top: 20px;
    right: 40px;
    width: 400px;
    height: auto;
    min-height: 100px;
    background: white;
    border: 1px solid #c9c9c9;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    padding: 6px 6px 6px 10px;
}

.notification_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.notification_close_icon {
    padding-top: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.notification_close_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.notification_logo {
    height: 60px;
}

.notification_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.notification_content {
    font-size: 0.9rem;
    margin: 0px 6px 6px 10px;
}

@media screen and (max-width: 500px) {
    .notification_container{
        width: 90%;
        right: 10px;
        margin: auto;
    }
}
