#media-query {
    background-color: var(--indigo);
}

#breadcrumbs,
#form-wrapper,
#control-bar,
#control-height {
    padding-left: .5rem;
    padding-right: .5rem;
}

#formulario {
    padding-left: 0;
    padding-right: 0;
}

/* Small devices (landscape phones, 576px and up)*/
/* sm */
@media (min-width: 576px) {
    #media-query {
        background-color: var(--green);
    }

    header #logo img {
        height: 40px;
    }

    #breadcrumbs {
        font-size: 16px;
    }

    #dt-filters .selects .each {
        width: 33.3333%;
    }
}

/* Medium devices (tablets, 768px and up)*/
/* md */
@media (min-width: 768px) {
    #media-query {
        background-color: var(--orange);
    }

    /*html, body {*/
    /*    height: 100% !important;*/
    /*}*/

    #breadcrumbs,
    #formulario,
    #form-wrapper,
    #control-bar,
    #control-height {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #control-bar {
        position: fixed;
        top: 50px;
        left: 50px;
        right: 0;
        z-index: 999;
        transition: 250ms ease left;
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }

    #formulario {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #formulario .labelWrap {
        float: left;
        font-size: 14px;
        padding-right: 10px;
        width: 195px;
        text-transform: none;
    }

    #formulario .input {
        padding-left: 205px;
    }

    .menu-active #site-content .modal-backdrop {
        display: none;
    }

    #dt-filters .selects .each {
        width: 25%;
    }
}

/* Large devices (desktops, 992px and)*/
/* lg */
@media (min-width: 992px) {
    #media-query {
        background-color: var(--blue);
    }

    #breadcrumbs,
    #formulario,
    #form-wrapper,
    #control-bar,
    #control-height {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    #dt-filters .selects .each {
        width: 20%;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
/* xl */
@media (min-width: 1200px) {
    #media-query {
        background-color: var(--dark);
    }

    #breadcrumbs,
    #formulario,
    #form-wrapper,
    #control-bar,
    #control-height {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    #dt-filters .selects .each {
        width: auto;
    }
}

/**
Media queries that go in the other direction (the given screen size or smaller)
*/

/* Extra small devices (portrait phones, less than 576px) */
/* xs */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
/* sm */
@media (max-width: 767.98px) {
    nav {
        position: absolute;
        top: 50px;
        bottom: 0;
        z-index: 1020;
        transform: translateX(-100%);
    }

    .menu-active nav {
        transform: translateX(0%);
        overflow: auto;
    }

    #site-content {
        transition: 250ms ease all;
        padding-bottom: 0;
        overflow: hidden
    }

    .menu-active #container {
        overflow: hidden
    }

    .menu-active #site-content {
        transform: translatex(250px);
    }

    footer {
        position: relative;
    }
}

/* Medium devices (tablets, less than 992px) */
/* md */
@media (max-width: 991.98px) {
}

/* Large devices (desktops, less than 1200px) */
/* lg */
@media (max-width: 1199.98px) {

}