.notify-content * {
    box-sizing: border-box;
}

.notify-content {
    position: fixed;
    top: 0;
    right: 0;
    max-height: 330px;
    z-index: 99999;
    overflow: hidden;
    line-height: 1.5;
}

.notify-content .fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.notify-content .notify {
    width: 380px;
    height: 96px;
    background-color: #fff;
    box-shadow: -1px 1px 9px #999;
    position: relative;
    margin: 0 15px 15px 15px;
}

.notify-content .notify + .notify {
    margin-top: 10px;
}

.notify-content .logo {
    width: 96px;
    height: 96px;
    float: none;
    position: absolute;
    display: block;
}

.notify-content .notify-inner-content {
    height: 100%;
    padding: 10px 10px 0 106px;
    display: block;
    margin: 0;
    background: #fff;
    color: #555;
}

.notify-content .title {
    margin-bottom: 10px;
    padding: 0;
    padding-right: 20px;
    font-size: 14px;
}

.notify-content .text {
    font-size: 13px;
}

.notify-content a {
    display: block;
    text-decoration: none;
    height: 100%;
}
.notify-content a:hover, 
.notify-content a:active {
    text-decoration: underline;
}

.notify-content .notify-close {
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {

    .notify-content {
        width: 100%;
        max-width: 100vw;
        right: inherit;
        left: 0;
        line-height: 1.3;
    }

    .notify-content .notify {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

}
