/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@media only screen and (max-width: 979px) {
  /* line 5, ../sass/mobile.scss */
  .container {
    width: 90% !important;
  }

  /* line 9, ../sass/mobile.scss */
  div.topbar div.logo {
    margin-bottom: -40px;
  }
  /* line 12, ../sass/mobile.scss */
  div.topbar div.logo img {
    width: 10%;
  }

  /* line 17, ../sass/mobile.scss */
  div.footer-secondary div.block a {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  /** Default values **/
  /* line 26, ../sass/mobile.scss */
  h1 {
    font-size: 1.5em;
  }

  /* line 29, ../sass/mobile.scss */
  h2, h3, h4 {
    font-size: 1em;
  }

  /** Topbar **/
  /* line 36, ../sass/mobile.scss */
  div.topbar div.logo span {
    display: none;
  }
  /* line 40, ../sass/mobile.scss */
  div.topbar div.searchbar,
  div.topbar div.searchbar input[type="text"] {
    width: 200px;
  }

  /** Primary navigation **/
  /* line 49, ../sass/mobile.scss */
  nav.nav-primary a {
    display: auto;
  }

  /** Secondary navigation **/
  /* line 55, ../sass/mobile.scss */
  nav.nav-secondary ul li a i {
    float: right;
    width: 50px;
    text-align: right;
  }
  /* line 61, ../sass/mobile.scss */
  nav.nav-secondary ul li a.active {
    background: none !important;
  }
  /* line 65, ../sass/mobile.scss */
  nav.nav-secondary ul li ul.dropdown-menu {
    width: 100%;
    position: relative;
    margin-bottom: 1em;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }

  /** Footer **/
  /* line 74, ../sass/mobile.scss */
  div.footer-primary div.block {
    width: 100%;
    margin-bottom: 2em;
  }

  /** Activities **/
  /* line 81, ../sass/mobile.scss */
  div.activiteiten div.heading {
    background: #fff !important;
    color: #6b6b6b !important;
  }
  /* line 85, ../sass/mobile.scss */
  div.activiteiten div.heading h2, div.activiteiten div.heading h3 {
    padding: 0 !important;
    margin: 0 !important;
  }
  /* line 90, ../sass/mobile.scss */
  div.activiteiten div.heading h2.pull-left span {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
    margin-bottom: -1em;
  }
  /* line 95, ../sass/mobile.scss */
  div.activiteiten div.heading h3.pull-right {
    float: left !important;
    width: 100%;
    color: #999;
  }
  /* line 101, ../sass/mobile.scss */
  div.activiteiten div.heading a {
    color: #6b6b6b !important;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  }

  /** Image scaling **/
  /* line 109, ../sass/mobile.scss */
  div#mw-content-text img {
    max-width: 100%;
  }
}
