
.notify {
position: fixed;
right: 5px;
top: 5px;
z-index: 999999;
}
.notify > div {
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 14px;
}
.notify > div.success {
    background: #28a745;
}
.notify > div.error {
    background: #dc3545;
}
.notify > div.warning {
    background: #ffc107;
    color: #000;
}
.notify > div.info {
    background: #17a2b8;
    color: #000;
}
.bubble {
    position: relative;
    max-width: 30em;
    background-color: #fff;
    padding: 1.125em 1.5em;
    margin: 0em 0.5em;
    font-size: 0.9em;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .3), 0 0.0625rem 0.125rem rgba(0, 0, 0, .2);
}
.bubble-top::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    left: 1.5em;
    border: .75rem solid transparent;
    border-top: none;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, .1));
}
.bubble-bottom::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 100%;
    left: 5.5em;
    border: .75rem solid transparent;
    border-bottom: none;
    border-top-color: #fff;
    filter: drop-shadow(0 -0.0625rem 0.0625rem rgba(0, 0, 0, .1));
}
.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #77d7a0 !important;
    border-color: #77d7a0 !important;
}

