/* 
Author: DevSolns
Twitter: @DevSolns
*/

/*  =======
Table of Contents
    ======= */

/* 
! Hide & Show Display
! Hide & Show Display For Mobile
! Hide & Show Display For Tablet & Mobile
! Hide & Show Display For Landscape, Tablet & Mobile
! Hide & Show Display For Laptop, Landscape, Tablet & Mobile
! Hide & Show Display For Desktop, Laptop, Landscape, Tablet & Mobile
 */


/* Hide & Show Display */

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

/* Hide & Show Display For Mobile */

@media (min-width:600px) {
    .d-m {
        display: none !important;
    }
}

@media (max-width:600px) {
    .d-m {
        display: block !important;
    }

    .row {
        display: flex !important;
    }

    .d-none-m {
        display: none !important;
    }
}

/* Hide & Show Display For Tablet & Mobile */


@media (min-width:600px) and (max-width:900px) {

    .d-tb {
        display: block !important;
    }

}

@media (min-width:900px) {

    .d-tb {
        display: none !important;
    }

}

@media (max-width:600px) {

    .d-tb {
        display: none !important;
    }

}

@media (min-width:600px) and (max-width:900px) {
    .d-none-tb {
        display: none !important;
    }
}

@media (min-width: 900px) {

    .d-tb-m {
        display: none !important;
    }
}

@media (max-width:900px) {

    .d-tb-m {
        display: block !important;
    }

    .row {
        display: flex !important;
    }

    .d-none-tb-m {
        display: none !important;
    }
}

/* Hide & Show Display For Landscape, Tablet & Mobile */

@media (min-width: 1200px) {

    .d-ls-m {
        display: none !important;
    }
}

@media (max-width: 1200px) {

    .d-ls-m {
        display: block !important;
    }

    .row {
        display: flex !important;
    }

    .d-none-ls-m {
        display: none !important;
    }
}

@media (min-width:900px) and (max-width:1200px) {

    .d-ls {
        display: block !important;
    }

}

@media (min-width:1200px) {

    .d-ls {
        display: none !important;
    }

}

@media (max-width:900px) {

    .d-ls {
        display: none !important;
    }

}

@media (min-width:900px) and (max-width:1200px) {
    .d-none-ls {
        display: none !important;
    }
}

/* Hide & Show Display For Laptop, Landscape, Tablet & Mobile */

@media (min-width: 1440px) {

    .d-lt-m {
        display: none !important;
    }
}

@media (max-width: 1440px) {

    .d-lt-m {
        display: block !important;
    }

    .row {
        display: flex !important;
    }

    .d-none-lt-m {
        display: none !important;
    }
}

@media (min-width:1200px) and (max-width:1440px) {

    .d-lt {
        display: block !important;
    }

}

@media (min-width:1441px) {

    .d-lt {
        display: none !important;
    }

}

@media (max-width:1200px) {

    .d-lt {
        display: none !important;
    }

}

@media (min-width:1200px) and (max-width:1440px) {
    .d-none-lt {
        display: none !important;
    }
}

/* Hide & Show Display For Desktop, Laptop, Landscape, Tablet & Mobile */

@media (min-width: 1600px) {

    .d-dt-m {
        display: none !important;
    }
}

@media (max-width: 1600px) {

    .d-dt-m {
        display: block !important;
    }

    .row {
        display: flex !important;
    }

    .d-none-dt-m {
        display: none !important;
    }
}

@media (min-width:1441px) and (max-width:1600px) {

    .d-dt {
        display: block !important;
    }

}

@media (min-width:1440px) and (max-width:1600px) {
    .d-none-dt {
        display: none !important;
    }
}