/*
.ad-for-desktop {
  display: block;
}

.ad-for-mobile {
  display: none;
}

@media(max-width: 480px) {
   .ad-for-desktop {
     display: none;
   }

   .ad-for-mobile {
     display: block;
   }
}

*/

 Responsive Ads 
.ad-for-desktop {
  display: block;
}

.ad-for-tablet {
  display: none;
}

.ad-for-mobile {
  display: none;
}

@media(max-width: 800px) {
   .ad-for-desktop {
     display: none !important;
   }

    .ad-for-tablet {
      display: block;
    }

   .ad-for-mobile {
     display: none;
   }
}

@media(max-width: 480px) {
   
	.ad-for-desktop {
     display: none !important;
   					}
    .ad-for-tablet {
      display: none;
    				}

    .ad-for-mobile {
     display: block;
   					}
}
