#sc-notif {
    bottom: 0;
    left: 0;
    position: fixed;
    transition: all .4s ease;
    visibility: hidden;
    z-index: 999999;
}
#sc-notif.sc-notif-slidein {
    display: inline-block;
    margin: 0;
    transform: translateX(-100%);
}
#sc-notif.sc-notif-splash {
    align-items: center;
    background: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    margin: auto;
    opacity: 0;
    right: 0;
    top: 0;
}
#sc-notif.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}
#sc-notif-contain {
    display: block;
    position: relative;
}
#sc-notif-contain p {
    margin: 0;
    padding: 0;
}
.sc-notif-close {
    cursor: pointer;
    height: 14px;
    position: absolute;
    right: 8px;
    top: 8px;
    transition: all .4s ease;
    width: 14px;
    z-index: 1000;
}
#sc-notif.sc-notif-splash .sc-notif-close {
    height: 20px;
    right: 25px;
    top: 18px;
    width: 20px;
}
.sc-notif-close:hover {
    transform: scale(.9);
}
.sc-notif-close:before, .sc-notif-close:after {
    background: #fff;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    transition: all .4s ease;
    width: 100%;
}
#sc-notif.sc-notif-splash .sc-notif-close:before, #sc-notif.sc-notif-splash .sc-notif-close:after {
    height: 3px;
}
.sc-notif-close:before {
    transform: rotate(45deg) skewX(-45deg);
}
.sc-notif-close:after {
    transform: rotate(-45deg) skewX(45deg);
}
@media only screen and (max-height: 728px) {
    #sc-notif.sc-notif-splash #sc-notif-contain {
        max-width: 400px;
    }
}
