.activity-toast {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1080;

    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;

    width: min(355px, calc(100% - 30px));
    padding: 16px 40px 16px 16px;

    background: #fff;
    border: 1px solid #e5e9ed;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);

    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.activity-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Ícono circular, no debe ocupar todo el ancho */
.activity-toast .activity-toast-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #eaf8ef;
    color: #209447;

    border-radius: 50% !important;
    box-sizing: border-box;
}


/* Font Awesome */
.activity-toast .activity-toast-icon i {
    display: inline-block;
    width: auto !important;
    height: auto !important;

    margin: 0;
    padding: 0;

    font-size: 17px;
    line-height: 1;
}


/* Contenido */
.activity-toast .activity-toast-content {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 1px;
}

.activity-toast-title {
    margin: 0 0 5px;

    color: #26364d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.activity-toast-message {
    margin: 0;

    color: #5c6873;
    font-size: 13px;
    line-height: 1.45;
}

.activity-toast-time {
    margin-top: 7px;

    color: #98a2ab;
    font-size: 11px;
    line-height: 1.2;
}


/* Cerrar */
.activity-toast-close {
    position: absolute;
    top: 8px;
    right: 11px;

    width: auto;
    height: auto;
    padding: 0;

    background: transparent;
    border: 0;

    color: #9aa4ad;
    font-size: 19px;
    line-height: 1;

    cursor: pointer;
}

.activity-toast-close:hover {
    color: #26364d;
}


@media (max-width: 576px) {
    .activity-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;

        width: auto;
    }
}