/* Telefoon (portrait and landscape) ----------- */
@media only screen and (max-width: 767px) {
    .bart-hidden-phone {
        display: none !important
        }
    }
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .bart-hidden-phone {
        display: none !important
        }
    }
@media only screen and (max-width: 767px) and (orientation: portrait) {
    .bart-hidden-phone {
        display: none !important
        }
    }
/* Tablet (portrait and landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .bart-hidden-tablet {
        display: none !important
        }
    }
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .bart-hidden-tablet {
        display: none !important
        }
    }
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .bart-hidden-tablet {
        display: none !important
        }
    }
/* Desktop (portrait and landscape) ----------- */
@media only screen and (min-width: 1025px) {
    .bart-hidden-desktop {
        display: none !important
        }
    }
@media only screen and (min-width: 1025px) and (orientation: landscape) {
    .bart-hidden-desktop {
        display: none !important
        }
    }
@media only screen and (min-width: 1025px) and (orientation: portrait) {
    .bart-hidden-desktop {
        display: none !important
        }
    }
/* Print */
@media print {
    .bart-hidden-print {
        display: none !important
        }
    }