:root {
    --toast-light-bg: #ffffff;
    --toast-light-clr: #000000;
    --toast-dark-bg: #212121;
    --toast-dark-clr: #ffffff;
    --toast-bg-color: #1a4bb8;
    /* --toast-success: #04b000; */
    --toast-success: #1a4bb8;
    --toast-error: #e31010;
    --toast-warn: #b3a400;
    --toast-info: #00a3d9;
}

.custom-toast__container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: fixed;
    z-index: 9999;
}

.custom-toast {
    background-color: var(--toast-bg-color);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 8px 16px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    text-wrap: nowrap;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px #0000000f;
    box-shadow: 0px 1px 3px 0px #0000001a;
    color: var(--toast-light-bg);
    line-height: 100%;
}
.custom-toast svg {
    margin-bottom: 2px;
}

.custom-toast--dark {
    background-color: var(--toast-dark-bg);
    color: var(--toast-dark-clr);
}

.custom-toast--success {
    background-color: var(--toast-success);
    color: var(--toast-light-bg);
}

.custom-toast--error {
    background-color: var(--toast-error);
    color: var(--toast-light-bg);
}

.custom-toast--warn {
    background-color: var(--toast-warn);
    color: var(--toast-light-bg);
}

.custom-toast--info {
    background-color: var(--toast-info);
    color: var(--toast-light-bg);
}

.custom-toast__container--top-left {
    top: 1rem;
    left: 1rem;
}

.custom-toast__container--top-center {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.custom-toast__container--top-right {
    top: 1rem;
    right: 1rem;
}

.custom-toast__container--bottom-center {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    z-index: 9999;
}

.custom-toast__container--bottom-right {
    bottom: 1rem;
    right: 1rem;
    position: fixed;
    z-index: 9999;
}

.custom-toast__container--bottom-left {
    bottom: 1rem;
    left: 1rem;
}
