//sticky footer reference http://v4-alpha.getbootstrap.com/examples/sticky-footer/
html {
  //sticky footer styles
  position: relative;
  min-height: 100%;
  //setting base font size to 10px (16*.625 = 10)
  font-size: 62.5%;
}

hr.mmui-hr-strong {
  border-top: 2px solid rgba(0, 0, 0, 0.6);
}

.mmui-footer {
  //mmui styles
  min-height: 70px;
  background-color: $mm-core-brand-blue-90;
  //sticky footer styles
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  & .container-fluid {
    min-height: 70px;
    padding-top: 20px;
  }
  & p {
    font-size: 12px;
    line-height: 14px;
  }
  img {
    width: 112px;
  }
  a {
    color: $mm-neutral-white;
    font-size: 1.4rem;
  }
  .footer-list-header {
    font-family: $font-stack-sans-serif;
    font-size: 1.4rem;
    color: $mm-neutral-white;
    margin-bottom: 5px;
  }
  .copyright {
    color: $mm-neutral-gray-40;
  }
}

.mmui-container-top {
  padding-top: 60px;
}

.mmui-container-bottom {
  padding-bottom: 60px;
  margin-bottom: 70px;
}

.mmui-footer-container {
  display: inline-block;
  padding-right: 40px;
  margin-bottom: 5px;
}

#navbarSupportedContent,
#mobile_navbarSupportedContent {
  //customize to mmui class later

  a {
    &.nav-link {
      text-transform: capitalize;
      font-size: 1.6rem;
    }

    &.dropdown-item {
      text-transform: capitalize;
      padding: 0.25rem 0;
      white-space: normal;
    }
  }
}

//in case we decide to create a modal-like-page
.mmui-notice-box {
  box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.1);
  /*box-shadow: 0 0 0.6rem 0 rgba(0,0,0,0.13);*/
  padding: 4rem 4rem 7.2rem 4rem;
  max-width: 37.3rem;
  margin: 0 auto;

  .mmui-notice-box-message-row {
    margin-top: 1.4rem; // design is 24px. The header above comes with margin-bottom of 10px. The difference is 10px.
    margin-bottom: 1.6rem; //design is 24px. The link below comes with 8px padding above. The difference is 16px.
    .fa-check-circle {
      font-size: 5rem;
      color: $mm-sem-pos-60;
    }
  }

  a {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.64; //makes line height 30px. Meaning there is a 8px padding above the link.
  }
}



.mmui-front-page-layout {
  max-width: $mm-regular-layout;
  flex-wrap: wrap !important;
}

.mmui-lg-layout {
  max-width: $mm-lg-layout;
  flex-wrap: wrap !important;
}



.mobile-nav {
  display: flex;

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-item {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-toggler {
    margin-left: 10px;
  }
}

.desktop-nav {
  display: none;
}

@include media-breakpoint-up(md) {
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }
}

.nav-item {
  font-weight: normal;
  &.active {
    font-weight: bold;
  }
  hr {
    border-top: 1px solid #c1c9d534;
  }
}

.nav-link-small {
  font-size: 1rem !important;
}

.navbar-dark {
  .mmui-navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1.0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  .mmui-navbar-toggler {
    border-color: $mm-neutral-white;
  }
}
