.notification-container {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    right: 15px;
    bottom: 0;
    width: 500px;
    max-width: calc(100% - 30px);
    background-color: transparent;
}

.notification {
    width: 500px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;

    -webkit-animation: grow .2s ease forwards;
    -moz-animation:    grow .2s ease forwards;
}

@keyframes slidein {
    from {
        margin-left: 200%;
    }

    to {
        margin-left: 0%;
    }
}

@keyframes grow {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.notification.hide {
    animation: shrink 0.3s ease-out forwards;
}

@keyframes shrink {
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.notification strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.notification-info {
    background-color: #00cae3;
}

.notification-success {
    background-color: #55b559;
}

.notification-warning {
    background-color: #ff9e0f;
}

.notification-danger {
    background-color: #f55145;
}

.notification-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 2.5rem;
}

.notification-button {
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    margin-left: 0.2rem;
    margin-right: 10px;
}

.notification-header {
    display: flex;
    flex: 1;    
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    background-color: #4e555b;
}

.notification-header-text {
    display: flex;
    flex: 1;
    text-align: center;
    overflow: auto;
    position: relative;
    vertical-align: central;
    margin-bottom: 0;
    margin-left: 10px;
    color: white;
}

.notification-body-text {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    padding: 10px;
}

.notification-body {

   color:black;
}
