  div.list-disc li {
    list-style-type: disc;
  }

  footer.admin {
    position: relative;
  }

  @media only screen and (max-width: 800px) {
    .container-inner {
      padding-top: 20px !important;
      padding-bottom: 10px !important;
    }

  }

  /* Desktop Layout (Default) */
  .desktop-layout {
    display: block;
  }

  .mobile-layout {
    display: none;
  }

  /* Mobile Layout (Hidden for Desktop) */
  @media only screen and (max-width: 800px) {
    .desktop-layout {
      display: none;
    }

    .mobile-layout {
      display: block;
    }
  }