.widgetBoxInfo {
    display: flex;
    height: 100%;
}

.boxInfoWeb {
    padding: 25px;
    border-radius: 20px;
    
    background-color: rgba(255, 255, 255, 1.0);
    width: 480px;
    max-width: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.boxInnerTop 
{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
}
@media (max-width: 580px) {
    .boxInnerTop {
        flex-direction: column-reverse;
    }
}
.boxInnerTop .boxIcon {
	display: flex;
	align-items: center;
	justify-content: center;
    flex-shrink: 0;
}
.boxInnerTop .boxIcon svg {
	max-width: 65px;
	max-height: 65px;
    width: auto;
    height: auto;
    min-height: 55px;
}
.boxInnerTop .boxIcon i {
    font-size: 3rem;
    line-height: 1em;
    color: var(--primary-website-color);
}
.boxInnerTop .boxIcon img {
	max-width: 65px;
	max-height: 65px;
    min-height: 55px;
    width: auto;
    height: auto;
}

.boxInnerTop .boxTitle .titolo  {
    color: var(--primary-website-color);
}
.boxInnerTop .boxTitle .testo  {
    color: var(--primary-website-color);
    font-weight: 500;
}
.boxInnerCentral .titoloLista,
.boxInnerCentral .boxList .singleListItem .testoSingleItem .listTesto
{
    font-weight: 500;
    color: var(--primary-website-color);
}

.boxInnerCentral .boxList .singleListItem .testoSingleItem .listTesto
{
    display: flex;
    align-items: center;
    gap: 10px;
}
.boxInnerCentral .boxList .singleListItem .testoSingleItem .listNota
{
    color: var(--primary-website-color);
}
.boxInnerCentral .boxList .singleListItem .listIcon i
{
    font-size: 1.3rem;
    color: var(--primary-website-color);
}