/* sm */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    #media-query {
        /*green*/
        background-color: #28a745;
    }
}

/* md */
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #media-query {
        /*orange*/
        background-color: #fd7e14;
    }


}

/* lg */
/* Large devices (desktops, 992px and)*/
@media (min-width: 992px) {
    #media-query {
        /*blue*/
        background-color: #007bff;
    }
}

/* xl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    #media-query {
        /*red*/
        background-color: #dc3545;
    }
}

/*******************************************************************************
Media queries that go in the other direction (the given screen size or smaller)
*******************************************************************************/

/* xs */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* sm */
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* md */
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* lg */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/************************************************************************
There are also media queries and mixins for targeting a single
segment of screen sizes using the minimum and maximum breakpoint widths.
*************************************************************************/

/* xs */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* sm */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* md */
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* lg */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* xl */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}