﻿/* Mobile Devices */
@media (max-width: 480px) {
    #fmWebSearch {
        display: none;
    }

    #dvMobileSearch {
        display: block;
    }
}

/* Low resolution Tablets and iPads */
@media (min-width: 481px) and (max-width: 767px) {
    #fmWebSearch {
        display: none;
    }

    #dvMobileSearch {
        display: block;
    }
}

/* Tablets iPads (Portrait) */
@media (min-width: 768px) and (max-width: 1024px) {
    #fmWebSearch {
        display: none;
    }

    #dvMobileSearch {
        display: block;
    }
}

/* Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    #fmWebSearch {
        display: block;
    }

    #dvMobileSearch {
        display: none;
    }
}

/* Big boi Monitors */
@media (min-width: 1281px) {
    #fmWebSearch {
        display: block;
    }

    #dvMobileSearch {
        display: none;
    }
}
