.basic-card {
    display: flex;
    gap: 10px;
    border-radius: 24px;
    padding: 16px;
    background: white;
}

.gradient {
    background: linear-gradient(180deg, #F8F7F7, #D4D1D1);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-height: 100px;
    min-height: 100px;
}

.basic-cards-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-height: 100px;
    min-height: 100px;
    min-width: 120px;
    /* max-width: 120px; */
}

.start {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: start;
    max-height: 100px;
    min-height: 100px;
}

.title-icon {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.basic-card .content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 300px;
}

.basic-card .content ul {
    display: block;
}