* {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.material-tooltip {
  border-radius: 0.5rem !important;
}

.clickable {
  cursor: pointer;
}

.valign-top {
  vertical-align: top !important;
}

.sidenav-bar {
  position: fixed;
  top: 30%;
  border-radius: 0 0.5rem 0.5rem 0;
  background-color: transparent;
  z-index: 2;
}

.sidenav-bar .sidenav-card {
  width: 8rem;
  padding: 1rem 0;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  display: block;
}

.sidenav-bar .sidenav-card:hover:not(p) {
  width: 10rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background-color: #e6e6e6;
  border-radius: 0;
}

.sidenav-bar #saved-ingredients-modal {
  border-radius: 0px !important;
  width: 100%;
  max-width: initial;
}

.sidenav-bar #saved-ingredients-modal .collection {
  border: none !important;
}

.sidenav-bar #saved-ingredients-modal .collection .collection-item {
  cursor: pointer;
  border: solid 0.5px #f2f2f2;
  margin: 0.5rem 0 !important;
}

.sidenav-bar .sidenav-card:nth-child(1) {
  border-top-right-radius: 2rem;
}

.sidenav-bar .sidenav-card:nth-child(3) {
  border-bottom-right-radius: 2rem;
}

.navigation {
  position: relative;
  z-index: 2;
  border-bottom: solid 1px lightgray;
}

.navigation .container {
  margin-bottom: 0;
}

.navigation #nav-dropdown > li > a {
  color: #097609;
  font-size: 1rem;
}

.navigation #nav-dropdown {
  width: 15rem !important;
}

.navigation > .container {
  padding: 1rem;
  min-width: 100%;
}

.navigation .logout-btn {
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  min-width: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.navigation .slide-away {
  -webkit-animation: slideAway 1s ease-in-out;
          animation: slideAway 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.navigation .login-txt {
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
  width: 0;
  margin-right: 0 !important;
}

.navigation .slide-in {
  -webkit-animation: slideIn 1s ease-in-out;
          animation: slideIn 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.logout-btn, #menu-dropdown-trigger {
  font-family: "Lato",sans-serif;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #ccc !important;
  height: 3.15rem !important;
}

.top-logo {
  width: 100%;
  max-width: 15rem;
}

.icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-container .top-icon {
  width: 30%;
  min-width: 3rem;
  max-width: 5rem;
}

/*.sidenav-bar .sidenav-card a {
 width: 8rem;
 padding: 1rem 0;
 display: block;
}

.sidenav-bar .sidenav-card:hover:not(p) a {
 width: 10rem;
}
*/

@media screen and (min-width: 660px) {
  .icon-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 660px) {
  #searchQuery {
    padding: 0.5rem 0 !important;
  }
  .icon-container {
    text-align: left !important;
    margin-left: 0 !important;
  }
  #menu-dropdown-trigger .material-icons {
    margin-right: 0 !important;
  }
}

@-webkit-keyframes slideAway {
  to {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
    width: 0;
  }
}

@keyframes slideAway {
  to {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
    width: 0;
  }
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: initial;
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  to {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: initial;
  }
}
/*# sourceMappingURL=navbar.css.map */