/**
 * @author Script47 (https://github.com/Script47/Toast)
 * @description Toast - A Bootstrap 4.2+ jQuery plugin for the toast component
 * @version 1.2.0
 **/
.toast-container {
    position: fixed;
    z-index: 1055;
    margin: 5px;
}

.top-right {
    top: 0;
    right: 0;
}

.top-left {
    top: 0;
    left: 0;
}

.top-center {
    transform: translateX(-50%);
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
}

.bottom-right {
    right: 0;
    bottom: 0;
}

.bottom-left {
    left: 0;
    bottom: 0;
}

.bottom-center {
    transform: translateX(-50%);
    bottom: 0!important;
    left: 50% !important;
    right: auto !important;
}

.toast-container > .toast {
    min-width: 150px;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
}

.toast-container > .toast > .toast-header {
    border: none;
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    width: 50rem;
}
.toast-container > .toast > .bg-info {
    background-color: rgba(0, 0, 0, .85) !important;
}


.toast-container > .toast > .toast-header strong {
    padding-right: 20px;
    color: rgba(255, 255, 255, .9);
}
.toast-container > .toast > .toast-header button {
    padding-right: 20px;
    color: white;
    font-weight: unset !important;
    margin-bottom: 0px !important;
}

.toast-container > .toast > .toast-body {
    background: white;
}
