.toast-svg {
    fill: #fff;
}

.toast {
    z-index: 100;
    text-align: left;
    padding: 21px 0;
    background-color: #fff;
    border-radius: 4px;
    max-width: 500px;
    top: 0;
    position: relative;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
}

.toast:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.toast-title {
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.toast-message {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787;
}

.toast-content {
    padding-left: 50px;
    padding-right: 60px;
}

.toast-close {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor: pointer;
    height: 14px;
    fill: #878787;
    transform: translateY(-50%);
}

.toast--success:before {
    background-color: #00ad5f;
}

.toast--info:before {
    background-color: #78bbd5;
}

.toast--warning:before {
    background-color: #FFC007;
}

.toast--error:before {
    background-color: #e73434;
}

.toast-top-right {
    position: absolute;
    margin: 15px;
    top: 0;
    right: 0;
}

.toast-bottom-right {
    position: absolute;
    margin: 15px;
    bottom: 0;
    right: 0;
}

.toast-top-left {
    position: absolute;
    margin: 15px;
    top: 0;
    left: 0;
}

.toast-bottom-left {
    position: absolute;
    margin: 15px;
    bottom: 0;
    left: 0;
}