.nav-desktop {
  padding: 38px 0 18px;
  text-align: center;
  background: transparent;

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: @brand-primary url(@header-line-bg) center center;
    background-size: cover;
  }

  .logo {
    float: left;
    background: url(@logo) no-repeat;
    background-size: contain;
    width: @logo-width;
    height: @logo-height;
  }

  .warning {
    color: red;
    font-size: 34px;
    display: inline-block;
    text-align: center;
    line-height: 62px;
  }

  .right-nav-desktop-btn {
    color: @brand-primary;
    float: right;
    clear: right;
    font-size: 20px;
    margin-top: 10px;
    outline: 0;
    cursor: pointer;
  }

  .icon {
    vertical-align: middle;
    fill: @brand-primary;
    stroke: @brand-primary;
  }

  .welcome {
    color: @brand-primary;
    float: right;
    clear: right;
    font-size: 22px;
    margin-top: 10px;
  }
  .container {
    margin-top: 0;
  }
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: @brand-primary;
  color: @brand-nav;
  text-align: center;
  height: 52px;
  line-height: 52px;

  .title {
    margin: 0 auto;
    font-size: 20px;
    color: @brand-nav;
  }

  .logo {
    display: inline-block;
    text-align: center;
    margin-top: 5px;
    background: url(@logo-mobile) no-repeat;
    background-size: contain;
    width: @logo-width-mobile;
    height: @logo-height-mobile;
  }

  .nav-mobile-btn, .right-nav-mobile-btn {
    color: @brand-nav;
    position: absolute;
    height: 52px;
    line-height: 52px;
    width: 52px;
    padding: 0;
    border: 0;
    background: 0;
    outline: 0;
    cursor: pointer;
    left:10px;
    &--right{
      left:auto;
      right: 0;
    }
  }

  .icon {
    vertical-align: middle;
    fill: @brand-nav;
    stroke: @brand-nav;
  }

  h1 {
    display: inline;
  }
}

// Need to move the main content below the navbar for mobile
.view-layout {
	height: auto;
	overflow: hidden;
	@media (max-width: @screen-xs-max) {
		padding-top: 50px;
	}
}

.footer {
  padding-top: 40px;

  ul {
    padding-left: 0;
    font-family: Verdana,Trebuchet,Arial,Helvetica,sans-serif;
    list-style: none;

    &.footer-links {
      display: inline-block;

      li {
        float: left;
        padding-left: 10px;
        padding-right: 10px;

        @media (max-width: @screen-xs-max) {
          width: 100%;
          margin-bottom: 20px;
        }
      }
    }
  }
}

.no-padding--left {
  padding-left: 0;
}