.notification-container {
    background-color: #11111169;
    transition: .3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    visibility: hidden;
}

.notification-container-show {
    z-index: 2147483639;
    visibility: visible;
}

.notification-left {
	position: fixed;
    top: 0;
    left: 100%;
    width: 400px;
    height: 100%;
    background-color: #fff;
    z-index: 2147483640;
    padding-bottom: 12px;

    transition: margin-left 0.3s ease-out;
    -webkit-transition: margin-left 0.3s ease-out;
}

.notification-left-show {
	margin-left: -400px;
}