/*Tableau dashboard view for phone and  desktop and starts here */
@media only screen and (max-width: 500px) {
  .phone-view {
    display: block !important;
  }

  .desktop-view {
    display: none !important;
    visibility: hidden !important;
  }
}

@media only screen and (min-width: 501px) {
  .phone-view {
    display: none !important;
    visibility: hidden !important;
  }

  .desktop-view {
    display: block !important;
  }
}

/*Tableau dashboard view for mobile desktop and tablet ends here */