/* WIDGET AREA */

.content-top-widgets .widget-area{
	
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row /* works with row or column */
flex-direction: row;
padding:0px;
margin-bottom:15px;
    
}

/* IDIVIDUAL WIDGETS */

.content-top-widgets .widget-area .widget{

flex-grow: 1;
flex-basis: 0;
padding:10px;
margin:5px;
border:solid 1px #bbb;
background:#eee;
background: #eee; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#eee, #ccc); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#eee, #ccc); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#eee, #ccc); /* For Firefox 3.6 to 15 */
background: linear-gradient(#eee, #ccc); /* Standard syntax */
border-radius:3px;
}		
	
/* HIDE ON SMALLER SCREENS */

@media screen and (max-width: 44.375em) {

.content-top-widgets{
	
display:none;
	
}

}