/* xl
   Large devices more than 992px
 */
@media (min-width: 992px) {
	.block-wrapper .l-d-lg-none {
		display: none !important;
	}
}

/* md
   Medium devices less than 1200px and more than 576px
*/
@media (max-width: 991px) and (min-width: 576px) {
	.block-wrapper .l-d-md-none {
		display: none !important;
	}
}

/* xs
   Extra small devices less than 576px
 */
@media (max-width: 575px) {
	.block-wrapper .l-d-xs-none {
		display: none !important;
	}
}