@media (max-width: 1800px) {

    /*---------- HEADER ----------*/
    .app-header {
        width: 100%;
        height: 60px;
    }

    /*---------- MAINTENANCE ----------*/
    .maintenance-section {
        width: 100%;
        flex-direction: column;
        height: 1000px;
    }

    .maintenance__content {
        width: 100%;
        height: 50%;
        padding: 10px 20px 10px 20px;
    }

    .maintenance__content .maintenance__card {
        width: 80%;
    }

    .maintenance__info {
        width: 100%;
        height: 50%;
        padding: 10px 20px 10px 20px;
    }

    .maintenance__info .maintenance__tabs {
        width: 50%;
    }

    .maintenance__tab-content {
        width: 60%;
    }

    /*---------- SPEEDTEST ----------*/
    .speedtest-section {
        width: 100%;
    }

    .speedtest__header {
        padding-top: 60px;
    }

    .speedtest__container {
        width: 100%;
    }

    .speedtest__interface {
        width: 40%;
    }

    .speedtest__info {
        width: 60%;
    }

    .speedtest__result {
        width: 150px;
    }

    .footer-info {
        width: 100%;
        padding: 20px;
    }

    footer {
        width: 100%;
    }

}

@media (max-width: 1024px) {

    .maintenance__cell,
    .maintenance__cell--head {
        padding: 8px 10px;
        font-size: 13px;
    }

    /*---------- HEADER ----------*/
    .app-header {
        height: 50px;
    }

    /*---------- MAINTENANCE ----------*/
    .maintenance-section {
        height: 1000px;
    }

    .maintenance__content {
        height: 60%;
    }

    .maintenance__tab-content {
        width: 80%;
    }

    .maintenance__info {
        height: 40%;
    }

    /*---------- SPEEDTEST ----------*/
    .speedtest__header {
        width: 90%;
    }

    .speedtest__container {
        flex-direction: column;
        width: 100%;
    }

    .speedtest__interface {
        width: 100%;
        height: 100%;
        gap: 20px;
    }

    .speedtest__info {
        height: 50%;
        width: 100%;
    }

    .speedtest__checking {
        margin-bottom: 0;
    }

}

@media (max-width: 768px) {

    .maintenance__table {
        display: flex;
        box-sizing: border-box;
        font-size: 12px;
    }

    .maintenance__row--head {
        display: none;
    }

    .maintenance__table tbody tr {
        display: block;
        background: #222;
        word-break: break-word;
    }

    .maintenance__table tbody tr td {
        display: flex;
        justify-content: flex-start;
        border: none !important;
        gap: 14px;
        align-items: center;
        font-weight: 500;
        box-sizing: border-box;
    }

    .maintenance__table tbody tr td:last-child {
        border-bottom: none;
    }

    .maintenance__table tbody tr td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        color: #d32f2f;
        flex: 0 0 120px;
        white-space: nowrap;
    }

    .maintenance__table tbody tr td span {
        flex: 1;
        color: #eee;
        text-align: left;
    }

    /*---------- MAINTENANCE ----------*/
    .maintenance__info .maintenance__tabs {
        width: 80%;
    }

    .maintenance__tab-content {
        width: 100%;
    }

    /*---------- SPEEDTEST ----------*/
    .speedtest__header {
        width: 100%;
        gap: 0px;
        padding: 50px 10px 10px 10px;
    }

    .speedtest__header .speedtest__description {
        width: 100%;
    }

    .speedtest__interface {
        height: 50%;
    }

    .speedtest__display {
        width: 250px;
        height: 250px;
    }

    /*---------- SPEEDTEST - info ----------*/

    .speedtest__results {
        flex-direction: column;
        gap: 5px;
    }

}