
/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 767px) {
  body { 
    padding-top: 50px;
  }
  
  .navbar-nuzzel {
    box-shadow: rgba(0,0,0,0.5) 0 1px 3px,rgba(0,0,0,0.15) 0 -1px 0 inset;
    -webkit-box-shadow: rgba(0,0,0,0.5) 0 1px 3px,rgba(0,0,0,0.15) 0 -1px 0 inset;
    -moz-box-shadow: rgba(0,0,0,0.5) 0 1px 3px,rgba(0,0,0,0.15) 0 -1px 0 inset;
  }
  
  .navbar-brand {
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
  }
}

/* Small devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .footer .trademark {
    text-align: left;
  }

  .footer .nuzzel {
    text-align: right;
  }
  
  .navbar-fixed-top {
    position: relative;
    top: auto;
  }

  .navbar-collapse {
    max-height: none;
  }

  body {
    margin: 0;
    padding-top: 0;
  }
}

/* Medium devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .container {
    width: 970px;
    max-width: none !important;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container {
    width: 970px;
    max-width: none !important;
  }
}