/*
 Theme Name:   MMM Theme
 Theme URI:    https://migmanmedia.com/
 Description:  Basic Theme set up for Visual Composer
 Author:       Michael Bellina
 Author URI:   http://migmanmedia.com
 Template:     blankslate
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  blankslate-child
*/

@import url("../blankslate/style.css"); 

strong {
	font-weight: 700;
}

.clear {clear: both} 

.alignleft {
	float: left;
	padding: 0px 8px 8px 0px;
}

.alignright {
	float: right;
	padding: 0px 0px 8px 8px;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

 
.widget-area ul {
	padding-inline-start: 20px;
}
 
.widget-area li {
	list-style: none;
	margin-bottom: 10px;
}

/*custom MMM styles*/

.txt_align_left {
	text-align: left;
}
.txt_align_center {
	text-align: center;
}
.txt_align_right {
	text-align: right;
}

.hide_desktop {
		display:none; /*hides on desktop*/
}


@media only screen and (max-width: 480px) {
/* Mobile Layout: 480px and below. */
	.alignleft {
    	float: none;
    	display: block;
		padding: 0px 0px 8px 0px;
		margin-left: auto;
		margin-right: auto;
	}

	.alignright {
    	float:none;
    	display: block;
		padding: 0px 0px 8px 0px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.hide_desktop {
		display:block; 
	}
	.hide_mobile {
		display:none;  /*hides on mobile*/
	}
}