/*

SCREEN DISPLAY

*/
.dsp-none {
display:none !important;
}
@media screen and (min-width : 1025px) {
	.dsp-desktop {
	display:block;
	}
}
@media screen and (max-width : 1024px) {
	.dsp-desktop {
	display:none;
	}
	
}
@media screen and (min-width : 981px) {
	.dsp-mobile {
	display:none !important;
	}
	.dsp-tablet {
	display:block !important;
	}
}
@media screen and (max-width : 980px) {
	.dsp-mobile {
	display:block;
	}
	.dsp-tablet {
	display:none;
	}
}
@media screen and (max-width : 768px) {

}