.content-toast {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 9999999999;
}

.toast {
    width: 450px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.43);
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--gray);
    background-color: var(--color-default);
}

.toast > .header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    background: var(--gray);
    color: var(--white) !important;
    font-weight: bold;
    cursor: default;
}

.toast > .header * {
    font-size: 1rem !important;
}

.toast > .header path {
    fill: var(--white) !important;
}

.toast > .header div,
.toast > .header span {
    color: var(--white) !important;
}

.toast > .header > div:nth-child(2) {
    cursor: pointer;
}

.toast > .body {
    padding: 15px 10px;
    background-color: var(--black);
    color: var(--white) !important;
    border-radius: 0px 0px 10px 10px;
    max-height: 60dvh;
    overflow-y: overlay;
}

.toast > .body * {
    color: var(--white) !important;
}

.toast > .body,
.toast > .body * {
    font-size: 0.9rem !important;
}

.toast.danger {
    border-color: var(--error);
}

.toast.danger > .header {
    background: var(--error);
}

.toast.danger > .body::-webkit-scrollbar-thumb {
    outline: 1px solid var(--error);
    background-color: var(--error);
}

.toast.success {
    border-color: var(--success);
}

.toast.success > .header {
    background: var(--success);
}

.toast.success > .body::-webkit-scrollbar-thumb {
    outline: 1px solid var(--success);
    background-color: var(--success);
}

.toast.warning {
    border-color: var(--alert);
}

.toast.warning > .header {
    background: var(--alert);
}

.toast.warning > .body::-webkit-scrollbar-thumb {
    outline: 1px solid var(--alert);
    background-color: var(--alert);
}

.toast.info {
    border-color: var(--blue);
}

.toast.info > .header {
    background: var(--blue);
}

.toast.info > .body::-webkit-scrollbar-thumb {
    outline: 1px solid var(--blue);
    background-color: var(--blue);
}
.toast.short > .header {
    border-radius: 8px;
}

.toast.short > .body {
    padding: 0;
}

@media screen and (max-width: 700px) {
    .content-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        width: calc(100vw - 20px);
    }

    .toast {
        width: 100%;
        background: none;
    }
    
    .toast > .header{
        padding: 15px;
    }

    .toast > .header * {
        font-size: 1.2rem;
    }
}

.toast.short.notify {
    border-color: var(--blue);
    background-color: var(--blue);
    cursor: pointer;
}

.toast.short.notify * {
    text-decoration: none !important;
}

.toast.short.notify > .header {
    border-color: var(--blue);
    font-weight: normal ;
    background-color: var(--blue);
    cursor: pointer;
}

.toast.short.notify:hover > .header {
    background-color: var(--bluelight) !important;
}