@media screen and (max-width: 982px) {
  .item_invisible {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .mobile {
    display: none;
  }
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one 
("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
    height: 20px;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on
the icon. This class makes the topnav look good on small screens (display the links 
vertically instead of horizontally) */
@media screen and (max-width: 600px) {


  .content_background {
    background: url(http://www.netlife.no/graphics/chalkboard_mobile.jpg);
    background-position: center;
    min-height: 100%;
}

  /* Centre the form within the page */
  form {
    width: 100%
  }

  input,
  textarea {
    width: 94%;
  }

  .contact_left {
    width: 100%;
    text-align: center;
    ;
  }

  .contact_right {
    padding-top: 32px;
    width: 100%;
    text-align: center;
    ;
  }

  .contact_right_icon {
    display: none;
  }


  .desktop {
    display: none;
  }

  .topnav {
    display: inline;
  }

  .topnav.responsive {
    position: fixed;
  }

  .topnav.responsive a.icon {
    position: fixed;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .item {
    width: 100%;
    height: auto;
  }

  .box_items a {
    width: 100%;
  }

  .footer_box {
    justify-content: center;
  }

  .contact_right_wrapper {
    margin-top: 24px;
  }

  .about_images {
    width: 100%;
  }

.empty_menu_listing {
  height: 20px;
  display:block;
}


}