/*
 * user.css
 *
 * Use this file for adding custom CSS style. These styles will override
 * default theme styles. You can enable/disable this CSS file inside
 * WordPress Appearance > Theme Options > General
 */

/* ---------------------------------------------------------------
 * 1. GENERAL
 * Place your general theme styles in this section.
 * ------------------------------------------------------------ */
.header-widget-area {
    max-width: 100%;
    margin: 1em 0em 1em 3em;
}


/* ---------------------------------------------------------------
 * 2. TABLET
 * CSS fallback for device width 768px or below
 * ------------------------------------------------------------ */

@media only screen and (max-width: 768px) {
	#responsive-menu-2 {
		display: none !important;
	}

        .header-widget-area {
                max-width: 100%;
                margin: 0em 0em 0em 0em;
        }
}


/* ---------------------------------------------------------------
 * 3. MOBILE
 * CSS fallback for device width 480px or below
 * ------------------------------------------------------------ */

@media only screen and (max-width: 480px) {
	#responsive-menu-2 {
		display: none !important;
	}

        .header-widget-area {
                max-width: 100%;
                margin: 0em 0em 0em 0em;
        }
}