/* ================================ */
/* By Atypic - www.atypic.be
/* ================================ */

/* ===== Cache un élement si < 1024px ===== */

.show-on-1024-and-less {
    display: none;
}
.show-on-800-and-less {
    display: none;
}
.show-on-768-and-less {
    display: none;
}
.show-on-600-and-less {
    display: none;
}

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

@media screen and (max-width: 800px) {
    .show-on-800-and-less {
        display: block !important;
    }
    .hide-on-800-and-less {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .show-on-768-and-less {
        display: block !important;
    }
    .hide-on-768-and-less {
        display: none !important;
    }
    #footer ul {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    ul:not(.no-responsive),
    ul:not(.no-responsive) li,
    .cf:not(.no-responsive) > .col:not(.no-responsive),
    .table:not(.no-responsive) > .cell:not(.no-responsive),
    :not(.no-responsive) > .colib:not(.no-responsive){
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
    #footer .col:not(.no-responsive),
    #footer .cell:not(.no-responsive),
    #footer .colib:not(.no-responsive) {
        text-align: center;
    }
    #footer .col,
    #footer .cell,
    #footer .colib {
        margin-top: 50px !important;
    }
    #footer .col:first-child,
    #footer .cell:first-child,
    #footer .colib:first-child {
        margin-top: 0 !important;
    }
    ul.tiret > li:before,
    ul.pipe > li:before,
    ul.bullet > li:before,
    ul.arrow > li:before {
        display: none;
    }

    #global {
        padding-bottom: 30px !important; /* Evite sur le Powered by Atypic ne masque le footer */
    }

    form .labels-inline label {
        display: block;
        margin: 6px 0;
    }



    .post-thumbnail {
        display: block !important;
        max-width: 100% !important;
        margin: 0 auto 20px !important;
        float: none !important;
    }

}


@media screen and (max-width: 600px) {
    .show-on-600-and-less {
        display: block !important;
    }
    .hide-on-600-and-less {
        display: none !important;
    }


    #footer ul:not(.no-responsive),
    #footer ul:not(.no-responsive) li {
        display: block;
        text-align: center;
        margin-left: 0;
    }
    #footer ul:not(.no-responsive) li:before {
        display: none;
    }

    #page-404 {
        margin: 10px 0;
    }
}