.toast-box{
    position: fixed;
    display: block;
    right: 0;
    top: 0;
    padding: 15px;
    height: auto;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: visible;
    z-index: 999;
    pointer-events: none;
}
.toast-box::-webkit-scrollbar-thumb{
    display: none;
}
.toast-box > .toast{
    pointer-events: all;
    background-color: #fff;
    width: 250px;
    height: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    color: #333;
    font-size: 12px;
    -webkit-box-shadow: 0 0 10px 4px rgba(0,0,0,0.3);
    -moz-box-shadow:  0 0 10px 4px rgba(0,0,0,0.3);
    box-shadow:  0 0 10px 4px rgba(0,0,0,0.3);
    position: relative;
    padding-top: 3px;
    margin-bottom: 20px;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    opacity: 0;
}
.toast-box > .toast:last-child{
    margin-bottom: 0px;
}
.toast-box > .toast.show{
    opacity: 1;
}
.toast-box > .toast > .toast-timer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0,0,0,0.2);
}
.toast-box > .toast > .toast-header{
    padding: 5px 10px;
    position: relative;
    min-height: 24px;
}
.toast-box > .toast > .toast-header > [data-toggle='toast']{
    position: absolute;
    right: 5px;
    top: 0px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
}
.toast-box > .toast > .toast-body{
    padding: 5px 10px;
}