/*rules for blocks based on device*/

@media only screen and (min-width: 992px) {
	.device:not(.desktop) {
		display: none;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.device:not(.tablet) {
		display: none;
	}
}

@media only screen and (max-width: 767px) {	

    .device:not(.phone) {
        display: none;
    }

}