/* modal */
@media only screen and (min-width: 576px) {
    .modal-sm {
        max-width: 400px !important;
    }
    .modal-dialog:not(.modal-xl) {
        max-width: 575px;
    }
}

/* desktop */
@media only screen and (max-width: 1362px) {
    .content-header {
        left: 0;
    }
}

@media only screen and (min-width: 1024px) {
    .show-1024 {
        display: block !important;
    }
    .hide-1024 {
        display: none !important;
    }
}

@media only screen and (max-width: 1023px) {
    .show-1024 {
        display: none !important;
    }
    .hide-1024 {
        display: block !important;
    }
}

@media only screen and (min-width: 769px) {
    .show-desktop {
        display: block !important;
    }
    .hide-desktop {
        display: none !important;
    }
    .hide-mobile {
        display: block !important;
    }
    .hide-mobile-flex {
        display: flex !important;
    }
    .show-mobile {
        display: none !important;
    }
}

/* tablet */
@media only screen and (max-width: 768px) {
    .show-desktop {
        display: none !important;
    }
    .hide-desktop {
        display: block !important;
    }
    .hide-mobile {
        display: block !important;
    }
    .hide-mobile-flex {
        display: flex !important;
    }
    .show-mobile {
        display: none !important;
    }
}

/* mobile */
@media only screen and (max-width: 559px) {
    .collapse.show {
        display: block !important;
    }
    .hide-mobile {
        display: none !important;
    }
    .hide-mobile-flex {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
    }
    .content-header #brand-option {
        right: 3% !important;
        left: auto !important;
    }
    .input-group-filter-date {
        max-width: unset;
    }
    .select2-container {
        width: 100% !important;
    }
    .table-pagination {
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        background-color: var(--clr-white);
        left: 0;
        justify-content: center;
        border-top: 1px solid var(--clr-secondary-300);
    }
    .table-pagination .pagination {
        margin: 0;
        padding: .65rem;
    }
    #modalExit .modal-body i {
        font-size: 30vw;
    }  
}
