.notify .note {
    position: relative;
    padding: 20px 10px;
    background-color: #677d98;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

    .notify .note.note:hover {
        background-color: #52647b;
    }

    .notify .note.note-success {
        background-color: #1bc6cd;
    }

        .notify .note.note-success:hover {
            background-color: #17b3b9;
        }

    .notify .note.note-info {
        background-color: #007ae1;
    }

        .notify .note.note-info:hover {
            background-color: #006bc5;
        }

    .notify .note.note-warning {
        background-color: #ffc012;
    }

        .notify .note.note-warning:hover {
            background-color: #efb20d;
        }

    .notify .note.note-danger {
        background-color: #ff5662;
    }

        .notify .note.note-danger:hover {
            background-color: #f93e4b;
        }

    .notify .note .image,
    .notify .note .remove {
        position: absolute;
        font-size: 24px;
        color: #ffffff;
    }

    .notify .note .remove {
        top: 17px;
        right: 10px;
        font-size: 18px;
        background: rgba(0,0,0,0.2);
        border: 0;
        padding: 0;
        border-radius: 0;
    }

        .notify .note .remove:focus {
            outline: none;
            border: none;
        }

    .notify .note .image {
        text-align: center;
        top: 15px;
    }

    .notify .note .content {
        margin-right: 31px;
    }

    .notify .note .image + .remove + .content {
        margin-left: 40px;
    }

    .notify .note .title {
        margin-right: 5px;
    }

.notify.notify-notes {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1001;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    width: 25%;
}

.notify.notify-messages {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
}

.notify.notify-notes .note:not(:last-child) {
    margin-bottom: 10px;
}

.notify.notify-notes .image {
    top: auto;
}

.notify.notify-notes .title {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .notify.notify-notes {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .notify.notify-notes {
        width: 30%;
    }
}
