@media (max-width:1200px) {
    .list__weather--city {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width:992px) {
    .header__wrapper .header__bottom .desktop .nav-link {
        padding-left: 0px;
    }

    .header__wrapper .header__bottom .desktop .nav-link::before {
        display: none;
    }

    .navbar .dropdown-fullwidth .dropdown-menu {
        max-height: 400px;
    }

    footer .title__footer {
        padding-top: 0px;
    }

    .list__weather--city {
        grid-template-columns: repeat(4, 1fr);
    }

    .table__weather .table__weather__item {
        grid-template-columns: 55px 1fr;
        grid-gap: 16px;
    }

    .table__weather .table__weather__item .icon>img {
        width: 36px;
    }

    .table__weather .table__weather__item .information .main {
        font-size: 20px;
    }

}

@media (max-width:768px) {
    .list__weather--city {
        grid-template-columns: repeat(3, 1fr);
    }

    #detail__current {
        padding: var(--padding-box-section);
    }

    #detail__current .card__current_temp .text-right > img {
        width: 70px;
        height: 70px;
    }

    #detail__current .min__max {
        padding-top: 0;
        padding-bottom: 0;
    }

    .table__weather .table__weather__item {
        grid-template-columns: 46px 1fr;
        grid-gap: 6px;
    }
    .table__weather .table__weather__item .icon>img {
        width: 28px;
    }
    .table__weather .table__weather__item .icon {
        border-radius: 8px;
    }
    .table__weather .table__weather__item .information .main {
        font-size: 18px;
    }

    #myModalSettings .modal-body table tr td {
        padding: 14px 16px
    }
}

@media (max-width:576px) {
    .navbar .dropdown-fullwidth .dropdown-menu {
        max-height: 320px;
    }

    .table__weather .table__weather__item {
        grid-template-columns: 38px 1fr;
        grid-gap: 8px;
    }
    .table__weather .table__weather__item .icon>img {
        width: 24px;
    }
    .table__weather .table__weather__item .information {
        justify-content: flex-start;
    }
    .table__weather .table__weather__item .information .main {
        font-size: 16px;
        line-height: 1.1;
    }
    .table__weather {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px 20px;
    }

    .list__weather--city {
        grid-gap: 18px 10px
    }
    .list__weather--city .item {
        padding: 12px 6px
    }

    #detail__current,
    #moon, 
    #graph {
        border-radius: 0;
    }
}

@media (max-width:500px) {
    .table__weather {
        padding-left: 20px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 90px;
    }
}

@media (max-width:460px) {
    .table__weather {
        column-gap: 70px;
    }
}

@media (max-width:420px) {
    .table__weather {
        padding-left: 10px;
        column-gap: 50px;
    }
}

@media (max-width:400px) {
    .table__weather {
        column-gap: 36px;
    }
}

@media (max-width:370px) {
    .table__weather {
        padding-left: 0px;
        column-gap: 30px;
    }

    .list__weather--city {
        grid-template-columns: repeat(2, 1fr);
    }
}

