@media screen and (min-width: 992px) {
  #nav-button, #mobile {
    display: none;
  }
}

/* @media screen and (max-width: 575px) {
    #nav-button {
        display: inline;
    }
  } */

@media screen and (min-width: 408px) {
  .large {
    width: 100px;
  }
}
/* 
    Small screen size 
*/
@media screen and (max-width: 376px) {
  .small {
    width: 55px;
  }
  .sm-txt{
      font-size: 1em;
  }
  .sm-table{
      width: 1.5em;
  }
  .sm-tbl-txt{
      font-size: 1em;
  }
}
/* 
    Medium Screen size 
*/
@media screen and (min-width: 377px, max-width 407px) {
  .med {
    width: 95px;
  }
}
