.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    z-index: 99999;
    width: 20vw;
    text-transform: capitalize;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;
    background-color: #f48320;
    border-radius: .25rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);

    .btn-close {
        cursor: pointer;
        background-color: #f48320;
        color: white;
        box-sizing: content-box;
        width: 1em;
        height: 1em;
        padding: .25em .25em;
        border: 0;
        border-radius: .25rem;
        opacity: .5;
        margin: auto;
        margin-right: .5rem;
        background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
    }
}