/*------------ RESPONSIVE MEDIA ------------*/

/* X-Small devices (portrait phones, less than 576px) */

/* No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */

@media (max-width: 576px) {
}

@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) and (max-width: 1199px) {
}

/* X-Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */

@media (min-width: 1400px) {
}

@media (min-width: 1600px) {
}

@media (max-width: 575px) {
}

@media (max-width: 767px) {

}

@media (max-width: 991px) {

    .tab-profile .nav-tabs .nav-link {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
    }

}

@media (max-width: 1024px) {
}

@media (max-width: 1280px) {

    .general-table {
        display: block;
        /* Passa a un layout a blocchi */
    }

    .general-table .header-table {
        display: none;
        /* Nasconde l'header per mobile */
    }

    .general-table .table-row {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .general-table .table-row .cell {
        border-bottom: 0;
        padding: 10px 20px;
    }

    .general-table .table-row .cell::before {
        content: attr(data-label);
        /* Usa gli attributi per le etichette */
        font-weight: bold;
        display: block;
        color: #555;
    }

}

@media screen and (min-width: 0px) {

}