.cmenu-button {
  display: none;
}

.surveys-list-cards,
.locations-list-cards,
.assign-list-cards {
  display: none;
}

@media screen and (max-width: 1300px) {

  .surveys-list .hidden-first,
  .locations-list .hidden-first,
  .assign-list .hidden-first {
    display: none;
    visibility: hidden;
  }
}


@media screen and (max-width: 1200px) {

  .surveys-list .hidden-second,
  .assign-list .hidden-second {
    display: none;
    visibility: hidden;
  }

  .locations-list {
    display: none;
  }

  .locations-list-cards {
    display: block;
  }
}

@media screen and (max-width: 860px) {
  .cmenu-button {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
  }

  .cmenu-button svg {
    width: 32px;
    fill: #aaa;
  }

  .cmenu {
    font-size: 1.5rem;
    text-align: left;
    display: none;
    z-index: 10;
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    position: absolute;
    /* This trasform moves the drawer off canvas. */
    -webkit-transform: translate(-300px, 0);
    transform: translate(-300px, 0);
    /* Optionally, we animate the drawer. */
    transition: transform 0.3s ease;
  }

  .cmenu.open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    display: block;
  }

  .cmenu__item {
    display: list-item;
    border-bottom: 1px solid #E0E0E0;
    padding: 5px 10px;
  }

  .cmenu__delimiter {
    display: none;
  }

  .banner-wrapper {
    text-align: left;
  }

  .banner {
    margin-left: 5px;
  }

  .pagetitle {
    padding-top: 0;
  }

  .surveys-list,
  .assign-list {
    display: none;
  }

  .surveys-list-cards,
  .assign-list-cards {
    display: block;
  }

  .card__button-wrapper {
    float: none;
    display: inline-block;
  }

  .footer-info,
  .footer-copyright {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 325px) {
  .banner {
    margin-left: 0;
  }

  .cmenu-button {
    padding: 0.6rem;
  }
}