.alert-warning-custom {
    background:#e9e7f6;
    border-left:5px solid #4b38c1;
    border-radius:.5rem;
    padding:1rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.alert-content{
    width: 100%;
    min-width: 0;
}

.item{
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
}

.item span:first-child{
    flex-shrink: 0;
    width: 18px;
    font-weight: 600;
}

.item span:last-child{
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.btn-reset,
.item .btn{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.text-justify-custom {
    display: block;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 576px){

    .alert-warning-custom{
        padding: 12px;
    }

    .item{
        gap: 4px;
    }

    .item span:first-child{
        width: 15px;
    }

    .item span:last-child{
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
    }

    .item .btn{
        font-size: 14px;
        white-space: normal;
    }
}
