@media only screen and (max-width: 801px) {
  .column, .form, .large-form {
    width: 95%;
  }
  
  .mobile-hidden {
    display: none !important;
  }

  .mobile-shown {
    display: initial !important;
  }

  /* ========== BUG FIXES ============ */

  .landing {
    flex-wrap: wrap;
  }

  .landing-left {
    width: 100%
  }

  .landing-right {
    width: calc(100% - 4vw);
    margin: calc(1.5rem - 2vw) 2vw 0 2vw;
  }
  
  .notification p {
    margin-right: 20px;
  }

  .statistics-table tbody > * > *:first-child {
    width: 70%;
  }

  .horizontal-flex {
    flex-direction: column;
  }

  .horizontal-flex > * {
    margin-right: 2vw !important;
    margin-bottom: 2vw !important;
  }

  /* ========== DROPDOWN ============ */

  .icon {
    display: flex !important;
  }

  #dropdown {
    display: none;
    position: absolute;
    box-shadow: 0 4px 4px rgba(10, 10, 10, 0.2);
    height: min-content;
  }

  #dropdown a {
    display: block !important;
    border-top: 1px rgb(200, 200, 200) solid;
    text-align: left;
    background-color: rgb(248, 250, 253);
    width: 100vw;
    position: sticky; 
    z-index: 100 !important;
  }

  /* ========== DROPDOWN ============ */

  .request-table {
    grid-template-columns: 40% 60%;
    grid-template-rows: repeat(10, auto);
  }

  .request-table h4 {
    border-bottom: 0px !important;
  }

  .request-table > div:not(:nth-child(2)):not(:nth-child(3)) {
    display: none;
  }

  .request-table > div {
    grid-row: 2 / 11;
    grid-column: unset;
    grid-template-rows: subgrid;  
  }

  .request-table > div > * {
    grid-row: unset !important;
  }

  .request-table h6 {
    border-right: 0px !important;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .request-table p {
    border-right: 1px solid #dbdbdb !important;
  }

  .request-table p:not(:last-child) {
    text-align: left;
  }

  .request-table > div > :is(h6, p):first-child {
    border-top: 1px solid #dbdbdb !important;
  }

  .request-table > div > div {
    display: unset;
  }

  .dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    margin: 0 1px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block !important;
    transition: background-color 0.6s ease;
    position: relative;
    top: -1rem;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }

  .notification .delete {
    top: 1.5vw;
    right: 1.5vw;
  }
}