/* SWSCT Top Bar
 * This is the basic styles for our top bar
 *************************************************************/

/* The outer div for our top bar, sets max height, colour and padding */ 
#swsct-topbar-container { 
	background: rgba(59, 116, 200, 1); 
	height: 50px; 
	max-height: 50px; 
	padding: 1.5px 2%; 
}

/* This is our inner div, set our inner max-height */
#swsct-topbar-container .widget-area { 
	height: 40px;
	max-height: 40px;	
}

/* Removes any bottom margin on widgets added to the top bar */
#swsct-topbar-container .widget { 
	margin-bottom: 0; 
}

/* This is our left and right widget wrappers, sets floats and widths */
#swsct-topbar-container .swsct-topbar-left { 
	float: left; 
	width: 70%; 
}
#swsct-topbar-container .swsct-topbar-right { 
	float: right; 
	width: 28%; 
}

/* This removes any padding from elementor widgets and margin from elementor container if used */
#swsct-topbar-container .elementor-element-populated { 
	padding: 0; 
}
#swsct-topbar-container .elementor-container {
	margin: 0 !important; 
}