.toastjs-container {
    position: absolute;
    position: fixed;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    max-width: 400px;
    transform: translateX(-150%);
    transition: transform 1s;
    font-size: 12px;
    z-index: 99999999999;
}

.toastjs-container[aria-hidden=false] {
    transform: translateX(0)
}

.toastjs {
    background: #fff;
    padding: 10px 15px 0;
    border-left-style: solid;
    border-left-width: 5px;
    border-radius: 4px;
    font-size: 13px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
}

.toastjs.default {
    border-left-color: white
}

.toastjs.success {
    border-left-color: green;
    background: #32CD32;
    color: white;
}

.toastjs.success a{
    color: yellow !important;
}

.toastjs.success a:hover{
    color: #FFF !important;
}

.toastjs.warning {
    background-color: #DC143C;
    border-left-color: red;
}
.toastjs.danger {
    border-left-color: red;
    background: #DC143C;
    color: white;
}
.toastjs-btn {
    background: #f0f0f0;
    padding: 5px 10px;
    border: 0;
    border-radius: 4px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #000;
    cursor: pointer;

}
.toastjs-btn--custom {
    background: #323232;
    color: #000;
}
.toastjs-btn:focus,
.toastjs-btn:hover {
    outline: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
}
