/* -- container -- */
.rodal,
.rodal-mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100; }

.rodal {
  position: fixed; }

/* -- mask -- */
.rodal-mask {
  position: absolute;
  background: rgba(0, 0, 0, 0.3); }

/* -- dialog -- */
.rodal-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 101;
  padding: 15px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }

.rodal-dialog:focus {
  outline: none; }

/* -- close button -- */
.rodal-close {
  position: absolute;
  cursor: pointer;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px; }

.rodal-close:before,
.rodal-close:after {
  position: absolute;
  content: '';
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #999;
  border-radius: 100%;
  transition: background 0.2s; }

.rodal-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.rodal-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.rodal-close:hover:before,
.rodal-close:hover:after {
  background: #333; }

/* -- fade -- */
@-webkit-keyframes rodal-fade-enter {
  from {
    opacity: 0; } }

@keyframes rodal-fade-enter {
  from {
    opacity: 0; } }

.rodal-fade-enter {
  -webkit-animation: rodal-fade-enter both ease-in;
  animation: rodal-fade-enter both ease-in; }

@-webkit-keyframes rodal-fade-leave {
  to {
    opacity: 0; } }

@keyframes rodal-fade-leave {
  to {
    opacity: 0; } }

.rodal-fade-leave {
  -webkit-animation: rodal-fade-leave both ease-out;
  animation: rodal-fade-leave both ease-out; }

/* -- zoom -- */
@-webkit-keyframes rodal-zoom-enter {
  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-zoom-enter {
  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.rodal-zoom-enter {
  -webkit-animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-zoom-leave {
  to {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-zoom-leave {
  to {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.rodal-zoom-leave {
  -webkit-animation: rodal-zoom-leave both;
  animation: rodal-zoom-leave both; }

/* -- slideDown -- */
@-webkit-keyframes rodal-slideDown-enter {
  from {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

@keyframes rodal-slideDown-enter {
  from {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

.rodal-slideDown-enter {
  -webkit-animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideDown-leave {
  to {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

@keyframes rodal-slideDown-leave {
  to {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

.rodal-slideDown-leave {
  -webkit-animation: rodal-slideDown-leave both;
  animation: rodal-slideDown-leave both; }

/* -- slideLeft -- */
@-webkit-keyframes rodal-slideLeft-enter {
  from {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

@keyframes rodal-slideLeft-enter {
  from {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

.rodal-slideLeft-enter {
  -webkit-animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideLeft-leave {
  to {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

@keyframes rodal-slideLeft-leave {
  to {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

.rodal-slideLeft-leave {
  -webkit-animation: rodal-slideLeft-leave both;
  animation: rodal-slideLeft-leave both; }

/* -- slideRight -- */
@-webkit-keyframes rodal-slideRight-enter {
  from {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

@keyframes rodal-slideRight-enter {
  from {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

.rodal-slideRight-enter {
  -webkit-animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideRight-leave {
  to {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

@keyframes rodal-slideRight-leave {
  to {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

.rodal-slideRight-leave {
  -webkit-animation: rodal-slideRight-leave both;
  animation: rodal-slideRight-leave both; }

/* -- slideUp -- */
@-webkit-keyframes rodal-slideUp-enter {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

@keyframes rodal-slideUp-enter {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

.rodal-slideUp-enter {
  -webkit-animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideUp-leave {
  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

@keyframes rodal-slideUp-leave {
  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

.rodal-slideUp-leave {
  -webkit-animation: rodal-slideUp-leave both;
  animation: rodal-slideUp-leave both; }

/* -- flip -- */
@-webkit-keyframes rodal-flip-enter {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 60deg); }
  70% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes rodal-flip-enter {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 60deg); }
  70% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.rodal-flip-enter {
  -webkit-animation: rodal-flip-enter both ease-in;
  animation: rodal-flip-enter both ease-in;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes rodal-flip-leave {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 45deg); } }

@keyframes rodal-flip-leave {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 45deg); } }

.rodal-flip-leave {
  -webkit-animation: rodal-flip-leave both;
  animation: rodal-flip-leave both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

/* -- rotate -- */
@-webkit-keyframes rodal-rotate-enter {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-rotate-enter {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); } }

.rodal-rotate-enter {
  -webkit-animation: rodal-rotate-enter both;
  animation: rodal-rotate-enter both;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes rodal-rotate-leave {
  to {
    -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-rotate-leave {
  to {
    -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); } }

.rodal-rotate-leave {
  -webkit-animation: rodal-rotate-leave both;
  animation: rodal-rotate-leave both;
  -webkit-transform-origin: center;
  transform-origin: center; }

/* -- door -- */
@-webkit-keyframes rodal-door-enter {
  from {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1); } }

@keyframes rodal-door-enter {
  from {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1); } }

.rodal-door-enter {
  -webkit-animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-door-leave {
  60% {
    -webkit-transform: scale3d(0.01, 1, 1);
    transform: scale3d(0.01, 1, 1); }
  to {
    -webkit-transform: scale3d(0, 1, 0.1);
    transform: scale3d(0, 1, 0.1); } }

@keyframes rodal-door-leave {
  60% {
    -webkit-transform: scale3d(0.01, 1, 1);
    transform: scale3d(0.01, 1, 1); }
  to {
    -webkit-transform: scale3d(0, 1, 0.1);
    transform: scale3d(0, 1, 0.1); } }

.rodal-door-leave {
  -webkit-animation: rodal-door-leave both;
  animation: rodal-door-leave both; }

#cart-popout {
  background-color: white;
  width: 400px;
  height: 100vh;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 10;
  /* box shadow adapted from: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.35); }
  #cart-popout #cart-popout-content {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; }
    #cart-popout #cart-popout-content #top-bar-area {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
      #cart-popout #cart-popout-content #top-bar-area #close-icon:hover {
        cursor: pointer; }
    #cart-popout #cart-popout-content #cart-items-container {
      margin-top: 5px; }
      #cart-popout #cart-popout-content #cart-items-container .cart-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-left: -20px;
        margin-bottom: 25px; }
        #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-product-image {
          width: 125px;
          height: 80px; }
        #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-info-area {
          margin-right: auto;
          margin-top: -15px; }
          #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-info-area h4 {
            margin-bottom: 0px; }
          #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-info-area .plus-minus-region {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center; }
            #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-info-area .plus-minus-region img {
              width: 20px;
              height: 20px; }
            #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-info-area .plus-minus-region img:hover {
              cursor: pointer; }
            #cart-popout #cart-popout-content #cart-items-container .cart-item .cart-item-info-area .plus-minus-region p {
              margin: 5px 10px;
              font-family: "Avenir-Light"; }
        #cart-popout #cart-popout-content #cart-items-container .cart-item .price-area {
          margin-top: -15px; }
    #cart-popout #cart-popout-content #bottom-area {
      height: 150px;
      margin-top: auto; }
      #cart-popout #cart-popout-content #bottom-area #cart-line {
        background-color: lightgray;
        width: 100%;
        height: 1px; }
      #cart-popout #cart-popout-content #bottom-area #price-region {
        text-align: right;
        margin-top: 10px;
        margin-right: 10px; }
        #cart-popout #cart-popout-content #bottom-area #price-region p {
          margin-top: 0px;
          margin-bottom: 0px;
          font-family: "Avenir-Light"; }
        #cart-popout #cart-popout-content #bottom-area #price-region h4 {
          margin-top: 0px;
          margin-bottom: 0px;
          font-size: 18px; }
        #cart-popout #cart-popout-content #bottom-area #price-region .horizontal-space {
          width: 10px;
          height: 5px;
          margin-left: 6px;
          margin-right: 6px; }
      #cart-popout #cart-popout-content #bottom-area #checkout-button {
        background-color: #00923F;
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        text-align: center;
        border-radius: 10px;
        color: white;
        margin-top: 10px; }
      #cart-popout #cart-popout-content #bottom-area #checkout-button:hover {
        cursor: pointer; }
      #cart-popout #cart-popout-content #bottom-area a {
        text-decoration: none; }

#menu {
  margin: 35px 45px; }
  #menu #menu-container #top-area h2 {
    margin-left: 20px; }
  #menu #menu-container #top-area h2:hover {
    cursor: pointer; }
  #menu #menu-container #across-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -5px; }
    #menu #menu-container #across-section #search-container {
      margin-left: 20px;
      margin-bottom: 10px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start; }
      #menu #menu-container #across-section #search-container input {
        padding: 5px 10px;
        border-radius: 5px;
        border-style: solid;
        border: 1px solid lightgrey;
        font-size: 16px;
        font-family: "Avenir Medium";
        width: 325px; }
      #menu #menu-container #across-section #search-container input:focus {
        outline: 0;
        background-color: lightgrey;
        border-color: #00923F; }
      #menu #menu-container #across-section #search-container #search-button {
        background-color: #00923F;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        margin-left: 10px;
        font-family: "Avenir Medium"; }
      #menu #menu-container #across-section #search-container #search-button:hover {
        cursor: pointer; }
    #menu #menu-container #across-section #toggle-container {
      margin-left: 18px;
      margin-bottom: 15px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start; }
      #menu #menu-container #across-section #toggle-container .item-area {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-right: 15px; }
        #menu #menu-container #across-section #toggle-container .item-area input {
          width: 20px;
          height: 20px;
          margin-right: 5px; }
        #menu #menu-container #across-section #toggle-container .item-area p {
          margin: 0px; }
      #menu #menu-container #across-section #toggle-container .item-area:hover {
        cursor: pointer; }
    #menu #menu-container #across-section #category-area {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-around;
      margin-right: 50px; }
      #menu #menu-container #across-section #category-area p {
        margin-left: 10px;
        margin-right: 10px; }
      #menu #menu-container #across-section #category-area p:hover {
        text-decoration: underline;
        cursor: pointer; }
      #menu #menu-container #across-section #category-area #selected {
        text-decoration: underline; }
  #menu #menu-container #product-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    #menu #menu-container #product-container .product {
      width: 200px;
      height: 260px;
      border: 1px solid #E7E7E7;
      border-radius: 5px;
      margin-left: 20px;
      margin-right: 20px;
      margin-bottom: 20px;
      transition: 0.2s;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; }
      #menu #menu-container #product-container .product img {
        height: 132px;
        border-radius: 5px;
        margin-top: 5px; }
      #menu #menu-container #product-container .product .text-area {
        text-align: center;
        margin-left: 10px;
        margin-right: 10px; }
    #menu #menu-container #product-container .product:hover {
      /* box shadow adapted from: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      /* scale adapted from: https://www.w3schools.com/css/css3_animations.asp */
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      cursor: pointer; }
  #menu #cart-icon-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00923F;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    /* box shadow adapted from: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); }
    #menu #cart-icon-container #cart-icon {
      color: white;
      padding: 0px;
      width: 25px;
      height: 25px; }
  #menu #cart-icon-container:hover {
    /* box shadow adapted from: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
    /* scale adapted from: https://www.w3schools.com/css/css3_animations.asp */
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    cursor: pointer; }
  #menu #cart-number {
    position: fixed;
    margin-left: 10px;
    margin-top: -10px;
    background-color: red;
    border-radius: 50%;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #menu #cart-number span {
      color: white;
      margin-right: 1px; }

#modal-content {
  width: 500px;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; }
  #modal-content #fav-img {
    width: 30px;
    height: 30px;
    z-index: 10;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: -30px; }
  #modal-content #fav-img:hover {
    cursor: pointer; }
  #modal-content img {
    height: 215px;
    border-radius: 5px;
    margin-top: -10px; }
  #modal-content .text-area {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    font-family: "Avenir-Medium";
    width: 89%; }
    #modal-content .text-area h2 {
      font-family: "Futura-CondensedExtraBold";
      color: #3E3E3E;
      margin-top: 10px;
      margin-bottom: 0px; }
    #modal-content .text-area .description {
      margin-top: 5px;
      margin-bottom: 0px; }
    #modal-content .text-area .green-line {
      background-color: #9CC732;
      width: 200px;
      height: 1px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 15px; }
    #modal-content .text-area .food-tag-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap; }
      #modal-content .text-area .food-tag-container .food-tag {
        font-family: 'Avenir-Medium';
        color: #3E3E3E;
        padding: 10px;
        border: 1px solid #9CC732;
        width: 115px;
        text-align: 'center';
        margin-left: 5px;
        margin-right: 5px; }
    #modal-content .text-area .ingredients {
      text-align: left; }
      #modal-content .text-area .ingredients h4 {
        margin-bottom: 0px;
        font-family: 'Avenir-Medium'; }
      #modal-content .text-area .ingredients p {
        margin-top: 5px;
        font-family: 'Avenir-Light'; }
    #modal-content .text-area .nutrient-info {
      text-align: left;
      margin-bottom: 30px;
      margin-right: 20px; }
      #modal-content .text-area .nutrient-info h4 {
        margin-bottom: 10px;
        font-family: 'Avenir-Medium'; }
      #modal-content .text-area .nutrient-info p {
        margin-top: 0px;
        margin-bottom: 0px;
        font-family: 'Avenir-Light'; }
      #modal-content .text-area .nutrient-info .nutrient-info-line {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid #B6B6B6;
        padding-top: 5px;
        padding-bottom: 5px; }
  #modal-content .add-cart-button {
    position: fixed;
    bottom: 0;
    margin-bottom: calc((100vh - 550px) / 2);
    z-index: 10;
    background-color: #00923F;
    color: white;
    font-family: "Avenir-Medium";
    width: 150px;
    border-radius: 20px;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; }
  #modal-content .add-cart-button:hover {
    cursor: pointer; }
  #modal-content .gradient {
    width: 530px;
    height: 60px;
    position: fixed;
    bottom: 0;
    margin-bottom: calc((100vh - 580px) / 2);
    background-color: lightgrey;
    background: linear-gradient(0deg, white, transparent); }

#product-not-found {
  text-align: center; }

#cart-negative-click-region {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35); }

#cart-negative-click-region:hover {
  cursor: pointer; }

#sign-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px !important;
  max-width: 600px;
  padding-bottom: 60px;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25); }
  #sign-up #welcome-area {
    margin-top: 35px;
    text-align: center; }
    #sign-up #welcome-area p {
      margin-top: -15px; }
      #sign-up #welcome-area p span {
        color: #00923F;
        text-decoration: underline; }
      #sign-up #welcome-area p span:hover {
        font-family: "Avenir Heavy";
        cursor: pointer; }
  #sign-up #top-section {
    display: flex;
    flex-direction: column;
    align-items: center; }
    #sign-up #top-section .input-area {
      margin-bottom: 10px; }
      #sign-up #top-section .input-area p {
        margin-bottom: 5px;
        font-weight: bold; }
      #sign-up #top-section .input-area input {
        width: 350px;
        padding: 10px 5px;
        border-radius: 5px;
        border-style: solid;
        border: 1px solid lightgrey; }
      #sign-up #top-section .input-area input:focus {
        outline: 0; }
    #sign-up #top-section #more-info #instructions {
      width: 250px;
      text-align: center;
      margin-bottom: 30px; }
    #sign-up #top-section #create-account-button {
      margin-top: 45px !important;
      background-color: #00923F;
      color: white;
      padding: 5px 25px;
      border-radius: 15px;
      width: 115px;
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto; }
    #sign-up #top-section #create-account-button:hover {
      cursor: pointer; }
    #sign-up #top-section #sign-up-button {
      margin-top: 45px !important;
      background-color: #00923F;
      color: white;
      padding: 5px 25px;
      border-radius: 15px;
      width: 60px;
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto; }
    #sign-up #top-section #sign-up-button:hover {
      cursor: pointer; }
    #sign-up #top-section #error-area {
      color: red;
      font-style: italic;
      text-align: center;
      margin-bottom: -15px; }
  #sign-up #line-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 35px; }
    #sign-up #line-area .line {
      width: 85px;
      height: 1px;
      background-color: lightgrey; }
    #sign-up #line-area p {
      margin: 10px;
      color: grey;
      font-style: italic; }
  #sign-up .third-party-area {
    background-color: #E7E7E7;
    text-align: center;
    width: 215px;
    padding: 10px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px; }
    #sign-up .third-party-area img {
      width: 23px;
      height: 23px;
      margin-left: 5px; }
    #sign-up .third-party-area span {
      flex-grow: 1; }
    #sign-up .third-party-area #apple-image {
      width: 20px; }
  #sign-up .third-party-area:hover {
    cursor: pointer; }

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #00923F;
  color: white;
  padding: 5px 10px;
  z-index: 11 !important; }
  nav #nav-content {
    margin-left: 45px; }
  nav #nav-name-info {
    margin-right: 45px; }
  nav img {
    width: 120px; }
  nav img:hover {
    cursor: pointer; }
  nav #nav-name-info {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center; }
    nav #nav-name-info #shopping-cart-icon {
      margin-top: 5px;
      margin-right: -5px; }
    nav #nav-name-info p {
      margin-right: 15px; }
    nav #nav-name-info #nav-button {
      margin-left: 15px;
      margin-right: 10px;
      border: 1px solid white;
      border-radius: 5px;
      padding: 5px 10px; }
    nav #nav-name-info #nav-button:hover {
      cursor: pointer;
      background-color: white;
      color: #00923F; }
  nav div {
    display: flex;
    flex-direction: row;
    align-items: center; }
    nav div #nav-links {
      margin-left: 15px; }
    nav div a {
      margin-left: 10px;
      margin-right: 10px;
      color: white;
      text-decoration: none; }
    nav div a:hover {
      text-decoration: underline;
      cursor: pointer; }
  nav .navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 15px; }
    nav .navbar .navbar-title {
      cursor: pointer; }
    nav .navbar .navbar-title:hover {
      text-decoration: underline; }
    nav .navbar .navbar-content {
      display: none; }
    nav .navbar .navbar-content-open {
      position: fixed;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      margin-top: 45px;
      background-color: white;
      border: 1px solid #00923F; }
      nav .navbar .navbar-content-open a {
        color: black;
        font-family: "Avenir-Light";
        font-size: 14px;
        margin-top: 5px;
        margin-bottom: 5px;
        margin-left: 7px;
        margin-right: 7px; }
  nav #cart-number {
    position: relative;
    margin-left: -18px;
    margin-top: -25px;
    background-color: red;
    border-radius: 50%;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center; }
    nav #cart-number span {
      margin-right: 1px; }

#fridge-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  #fridge-container #fridges .fridge-selected {
    border: 1px solid #00923F; }
  #fridge-container #fridges .fridge-container {
    padding: 10px;
    background-color: #ebfaf6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
    width: 450px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: 0.2s; }
    #fridge-container #fridges .fridge-container p {
      margin: 0px; }
    #fridge-container #fridges .fridge-container .name-area {
      display: flex;
      flex-direction: row;
      justify-content: flex-start; }
      #fridge-container #fridges .fridge-container .name-area img {
        width: 20px;
        height: 20px;
        margin-right: 8px; }
      #fridge-container #fridges .fridge-container .name-area .fridge-name {
        font-family: "Avenir-Heavy"; }
    #fridge-container #fridges .fridge-container .info-container p {
      font-family: "Avenir-Light"; }
    #fridge-container #fridges .fridge-container .info-container .fridge-specific-instructions {
      color: #00923F; }
    #fridge-container #fridges .fridge-container .info-container .fridge-delivery-area {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center; }
      #fridge-container #fridges .fridge-container .info-container .fridge-delivery-area img {
        width: 20px;
        height: 20px;
        margin-right: 5px; }
  #fridge-container #fridges .fridge-container:hover {
    /* box shadow adapted from: https://www.w3schools.com/cssref/css3_pr_box-shadow.asp */
    /* scale adapted from: https://www.w3schools.com/css/css3_animations.asp */
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    cursor: pointer; }
  #fridge-container #fridges .fanned-out {
    margin-top: -15px; }
  #fridge-container #fridge-info-container {
    margin-top: 100px;
    margin-right: 30px;
    width: 400px;
    padding: 10px;
    background-color: #E5E5E5;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    border-radius: 5px;
    position: fixed;
    top: 0;
    right: 0; }
    #fridge-container #fridge-info-container h4 {
      margin-top: 0px;
      margin-bottom: 0px; }
    #fridge-container #fridge-info-container p {
      font-family: "Avenir-Light";
      margin-top: 5px;
      margin-bottom: 0px; }

.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em; }

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  margin-left: -160px; }

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em; }

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em; }

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  margin-left: -160px; }

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0; }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0; }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }

.Toastify__toast--rtl {
  direction: rtl; }

.Toastify__toast--default {
  background: #fff;
  color: #aaa; }

.Toastify__toast--info {
  background: #3498db; }

.Toastify__toast--success {
  background: #07bc0c; }

.Toastify__toast--warning {
  background: #f1c40f; }

.Toastify__toast--error {
  background: #e74c3c; }

.Toastify__toast-body {
  margin: auto 0;
  flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start; }

.Toastify__close-button--default {
  color: #000;
  opacity: 0.3; }

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1; }

@-webkit-keyframes Toastify__trackProgress {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); } }

@keyframes Toastify__trackProgress {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transform-origin: left;
          transform-origin: left; }

.Toastify__progress-bar--animated {
  -webkit-animation: Toastify__trackProgress linear 1 forwards;
          animation: Toastify__trackProgress linear 1 forwards; }

.Toastify__progress-bar--controlled {
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s; }

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  -webkit-transform-origin: right;
          transform-origin: right; }

.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@-webkit-keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@-webkit-keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0); } }

@-webkit-keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@-webkit-keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0); } }

@-webkit-keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes Toastify__bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0); } }

@-webkit-keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
            transform: none; } }

@-webkit-keyframes Toastify__bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

@keyframes Toastify__bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  -webkit-animation-name: Toastify__bounceInLeft;
          animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  -webkit-animation-name: Toastify__bounceInRight;
          animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  -webkit-animation-name: Toastify__bounceInDown;
          animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  -webkit-animation-name: Toastify__bounceInUp;
          animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  -webkit-animation-name: Toastify__bounceOutLeft;
          animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  -webkit-animation-name: Toastify__bounceOutRight;
          animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  -webkit-animation-name: Toastify__bounceOutUp;
          animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  -webkit-animation-name: Toastify__bounceOutDown;
          animation-name: Toastify__bounceOutDown; }

@-webkit-keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-webkit-keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  -webkit-animation-name: Toastify__zoomIn;
          animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  -webkit-animation-name: Toastify__zoomOut;
          animation-name: Toastify__zoomOut; }

@-webkit-keyframes Toastify__flipIn {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); } }

@keyframes Toastify__flipIn {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); } }

@-webkit-keyframes Toastify__flipOut {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes Toastify__flipOut {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  -webkit-animation-name: Toastify__flipIn;
          animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  -webkit-animation-name: Toastify__flipOut;
          animation-name: Toastify__flipOut; }

@-webkit-keyframes Toastify__slideInRight {
  from {
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInRight {
  from {
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes Toastify__slideInLeft {
  from {
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes Toastify__slideInUp {
  from {
    -webkit-transform: translate3d(0, 110%, 0);
            transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    -webkit-transform: translate3d(0, 110%, 0);
            transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes Toastify__slideInDown {
  from {
    -webkit-transform: translate3d(0, -110%, 0);
            transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    -webkit-transform: translate3d(0, -110%, 0);
            transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); } }

@-webkit-keyframes Toastify__slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0); } }

@-webkit-keyframes Toastify__slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0); } }

@-webkit-keyframes Toastify__slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 500px, 0);
            transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 500px, 0);
            transform: translate3d(0, 500px, 0); } }

@-webkit-keyframes Toastify__slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -500px, 0);
            transform: translate3d(0, -500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -500px, 0);
            transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  -webkit-animation-name: Toastify__slideInLeft;
          animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  -webkit-animation-name: Toastify__slideInRight;
          animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  -webkit-animation-name: Toastify__slideInDown;
          animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  -webkit-animation-name: Toastify__slideInUp;
          animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  -webkit-animation-name: Toastify__slideOutLeft;
          animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  -webkit-animation-name: Toastify__slideOutRight;
          animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  -webkit-animation-name: Toastify__slideOutUp;
          animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  -webkit-animation-name: Toastify__slideOutDown;
          animation-name: Toastify__slideOutDown; }

/*# sourceMappingURL=ReactToastify.css.map */

#checkout {
  margin: 35px 45px; }
  #checkout h2 {
    font-size: 22px; }
  #checkout h3 {
    font-weight: normal; }
  #checkout #checkout-content {
    margin-left: 10px; }
    #checkout #checkout-content #checkout-content-container {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
      margin-top: -20px; }
      #checkout #checkout-content #checkout-content-container #left {
        margin-right: 100px; }
      #checkout #checkout-content #checkout-content-container #right {
        width: 500px;
        padding-left: 20px;
        padding-right: 20px;
        background-color: #f7f7f7;
        border-radius: 5px; }
    #checkout #checkout-content #selected-fridge-container {
      padding: 0px 10px;
      background-color: #E5E5E5;
      max-width: 400px;
      border-radius: 5px; }
      #checkout #checkout-content #selected-fridge-container .selected-fridge-content {
        padding: 10px 5px; }
        #checkout #checkout-content #selected-fridge-container .selected-fridge-content p {
          font-family: "Avenir-Medium";
          padding: 0;
          margin: 0; }
        #checkout #checkout-content #selected-fridge-container .selected-fridge-content .alert-text {
          color: red; }
        #checkout #checkout-content #selected-fridge-container .selected-fridge-content span {
          font-family: "Avenir-Heavy"; }
        #checkout #checkout-content #selected-fridge-container .selected-fridge-content span:hover {
          cursor: pointer;
          text-decoration: underline; }
  #checkout #trending-items-container h3 span {
    font-family: "Avenir-Heavy"; }
  #checkout #trending-items-container #trending-items-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 475px;
    overflow: auto; }
    #checkout #trending-items-container #trending-items-area .trending-item {
      width: 150px;
      text-align: center;
      font-family: "Avenir-Light";
      margin-right: 10px; }
      #checkout #trending-items-container #trending-items-area .trending-item img {
        width: 150px;
        height: 100px; }
      #checkout #trending-items-container #trending-items-area .trending-item .plus-icon {
        width: 20px;
        height: 20px; }
      #checkout #trending-items-container #trending-items-area .trending-item .plus-icon:hover {
        cursor: pointer; }
  #checkout #order-summary-container {
    margin-top: 20px; }
    #checkout #order-summary-container #empty-cart-text {
      font-family: "Avenir-Light";
      margin-bottom: 50px; }
    #checkout #order-summary-container #cart-items-container {
      margin-top: 5px; }
      #checkout #order-summary-container #cart-items-container .cart-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-left: -20px;
        margin-bottom: 25px; }
        #checkout #order-summary-container #cart-items-container .cart-item .cart-item-product-image {
          width: 125px;
          height: 80px; }
        #checkout #order-summary-container #cart-items-container .cart-item .cart-item-info-area {
          margin-right: auto;
          margin-top: -15px; }
          #checkout #order-summary-container #cart-items-container .cart-item .cart-item-info-area h4 {
            margin-bottom: 0px; }
          #checkout #order-summary-container #cart-items-container .cart-item .cart-item-info-area .plus-minus-region {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center; }
            #checkout #order-summary-container #cart-items-container .cart-item .cart-item-info-area .plus-minus-region img {
              width: 20px;
              height: 20px; }
            #checkout #order-summary-container #cart-items-container .cart-item .cart-item-info-area .plus-minus-region img:hover {
              cursor: pointer; }
            #checkout #order-summary-container #cart-items-container .cart-item .cart-item-info-area .plus-minus-region p {
              margin: 5px 10px;
              font-family: "Avenir-Light"; }
        #checkout #order-summary-container #cart-items-container .cart-item .price-area {
          margin-top: -15px; }
    #checkout #order-summary-container #bottom-area {
      height: 150px;
      margin-top: auto; }
      #checkout #order-summary-container #bottom-area #cart-line {
        background-color: lightgray;
        width: 100%;
        height: 1px; }
      #checkout #order-summary-container #bottom-area #delivery-date-area {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        font-family: "Avenir-Light"; }
        #checkout #order-summary-container #bottom-area #delivery-date-area img {
          width: 20px;
          height: 20px;
          margin-right: 10px; }
        #checkout #order-summary-container #bottom-area #delivery-date-area img:hover {
          cursor: pointer; }
      #checkout #order-summary-container #bottom-area #price-region {
        text-align: right;
        margin-top: 10px;
        margin-right: 10px; }
        #checkout #order-summary-container #bottom-area #price-region p {
          margin-top: 0px;
          margin-bottom: 5px;
          font-family: "Avenir-Light"; }
        #checkout #order-summary-container #bottom-area #price-region h4 {
          margin-top: 0px;
          margin-bottom: 0px;
          font-size: 18px; }
        #checkout #order-summary-container #bottom-area #price-region .horizontal-space {
          margin-left: 5px;
          margin-right: 6px; }
    #checkout #order-summary-container #amount-region {
      margin-top: -10px;
      margin-bottom: 20px;
      font-family: "Avenir-Light"; }
      #checkout #order-summary-container #amount-region h4 {
        font-size: 18px;
        font-weight: normal;
        margin-bottom: 5px; }
      #checkout #order-summary-container #amount-region p {
        margin-top: 0px;
        margin-bottom: 0px; }
    #checkout #order-summary-container #product-info-area {
      margin-top: 15px;
      max-width: 500px;
      margin-bottom: 20px; }
      #checkout #order-summary-container #product-info-area .product-info-row {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: -10px; }
        #checkout #order-summary-container #product-info-area .product-info-row #num-in-cart {
          margin-right: 30px; }
        #checkout #order-summary-container #product-info-area .product-info-row #name {
          margin-right: auto; }
        #checkout #order-summary-container #product-info-area .product-info-row #price {
          font-family: "Avenir-Light"; }
  #checkout .grey-line {
    max-width: 500px;
    height: 1px;
    background-color: lightgrey; }
  #checkout #pickup-container {
    margin-bottom: 40px;
    border: 2px solid lightgray;
    padding: 20px; }
    #checkout #pickup-container .thick-grey-line {
      height: 2px;
      width: calc(100% - 10px);
      background-color: lightgrey;
      margin-left: auto;
      margin-right: auto;
      margin-top: 10px;
      margin-bottom: 10px; }
  #checkout #checkout-button-region {
    max-width: 500px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    #checkout #checkout-button-region #menu-button {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      color: black;
      font-family: "Avenir-Heavy"; }
      #checkout #checkout-button-region #menu-button #arrow {
        font-size: 18px; }
    #checkout #checkout-button-region #menu-button:hover {
      text-decoration: underline; }
    #checkout #checkout-button-region a {
      text-decoration: none; }
    #checkout #checkout-button-region #place-order-button-container {
      color: white;
      text-align: center; }
      #checkout #checkout-button-region #place-order-button-container p {
        margin-left: auto;
        margin-right: auto;
        background-color: #00923F;
        width: 180px;
        font-size: 18px;
        padding: 10px;
        border-radius: 5px; }
      #checkout #checkout-button-region #place-order-button-container p:hover {
        cursor: pointer; }
      #checkout #checkout-button-region #place-order-button-container .disabled {
        background-color: lightgrey;
        color: grey; }

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

#payment-method-container {
  margin-bottom: 40px;
  border: 2px solid lightgray;
  padding: 20px; }
  #payment-method-container h4 {
    margin: 0px;
    font-weight: normal;
    color: grey; }
  #payment-method-container #payment-info-area {
    margin-top: 5px;
    margin-bottom: 15px; }
  #payment-method-container .thick-grey-line {
    height: 2px;
    width: calc(100% - 10px);
    background-color: lightgrey;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; }
  #payment-method-container .payment-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 490px;
    border-radius: 5px;
    padding-left: 10px; }
    #payment-method-container .payment-info img {
      width: 30px;
      height: 30px; }
    #payment-method-container .payment-info p {
      margin-left: 10px;
      margin-top: 0px;
      margin-bottom: 0px; }
      #payment-method-container .payment-info p span {
        font-size: 20px;
        margin-right: 5px; }
    #payment-method-container .payment-info #remove-card {
      margin-left: auto;
      width: 15px;
      height: 15px; }
  #payment-method-container .payment-info:hover {
    cursor: pointer; }
  #payment-method-container #selected-card {
    border: 1px solid #00923F; }

#add-card-container {
  max-width: 425px; }
  #add-card-container h4 {
    font-weight: normal;
    margin-bottom: 15px; }
  #add-card-container #add-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start; }
    #add-card-container #add-area #cart-element-area {
      width: 450px; }
    #add-card-container #add-area button {
      background-color: #00923F;
      color: white;
      font-size: 14px;
      width: 100px;
      padding: 5px;
      border-radius: 5px;
      margin-top: -5px;
      margin-left: 10px;
      border: 0px; }
    #add-card-container #add-area button:hover {
      cursor: pointer; }

#how-it-works {
  margin: 20px 45px; }
  #how-it-works #how-it-works-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 10px 30px; }
    #how-it-works #how-it-works-content #info-panel {
      margin-right: 100px;
      max-width: 650px; }
      #how-it-works #how-it-works-content #info-panel .content-area {
        margin-bottom: 30px; }
        #how-it-works #how-it-works-content #info-panel .content-area h3 {
          margin-bottom: 5px; }
        #how-it-works #how-it-works-content #info-panel .content-area p {
          font-family: "Avenir-Light";
          margin-top: 0px; }
        #how-it-works #how-it-works-content #info-panel .content-area .button {
          background-color: #00923F;
          color: white;
          padding: 10px;
          width: 100px;
          text-align: center;
          border-radius: 10px;
          margin-bottom: 30px; }
        #how-it-works #how-it-works-content #info-panel .content-area a {
          text-decoration: none; }
    #how-it-works #how-it-works-content iframe {
      margin-top: 30px;
      width: 560px;
      height: 315px; }

#orders #orders-content {
  margin: 20px 65px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }
  #orders #orders-content #no-orders-region h3 {
    margin-bottom: 0px; }
  #orders #orders-content #no-orders-region p {
    margin-top: 5px; }
  #orders #orders-content #no-orders-region a {
    background-color: #00923F;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px; }
  #orders #orders-content #all-orders-container {
    margin-left: 10px;
    margin-right: 65px; }
    #orders #orders-content #all-orders-container .order-preview {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      width: 350px;
      margin-bottom: 20px;
      padding-top: 2px;
      padding-left: 2px;
      padding-bottom: 10px;
      border-radius: 5px;
      transition: 0.2s;
      border: 1px solid lightgrey; }
      #orders #orders-content #all-orders-container .order-preview img {
        width: 100px;
        height: 65px;
        margin-right: 15px; }
      #orders #orders-content #all-orders-container .order-preview h4 {
        margin-top: 0px;
        padding-top: 10px;
        margin-bottom: 0px; }
      #orders #orders-content #all-orders-container .order-preview p {
        font-family: "Avenir-Light";
        margin-top: 0px;
        margin-bottom: 0px; }
    #orders #orders-content #all-orders-container .order-preview:hover {
      color: #00923F;
      cursor: pointer;
      -webkit-transform: scale(1.02);
              transform: scale(1.02);
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25); }
    #orders #orders-content #all-orders-container #selected-order {
      border: 1px solid #00923F;
      color: #00923F; }

#order-preview-container {
  width: 400px;
  margin-right: 55px;
  border: 1px solid #00923F;
  border-radius: 5px;
  margin-top: 64px; }
  #order-preview-container #top-order-area {
    background-color: #00923F;
    color: white;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px; }
    #order-preview-container #top-order-area h4 {
      margin-top: 0px;
      margin-bottom: 0px; }
  #order-preview-container #order-info-area {
    font-family: "Avenir-Light";
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px; }
    #order-preview-container #order-info-area div {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-bottom: 10px; }
      #order-preview-container #order-info-area div p {
        margin: 0px; }
      #order-preview-container #order-info-area div img {
        width: 25px;
        height: 25px;
        margin-right: 8px;
        margin-top: -2px; }

#item-area .item-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  margin-right: 10px;
  margin-bottom: 20px; }
  #item-area .item-container img {
    width: 100px;
    height: 65px; }
  #item-area .item-container h4 {
    margin: 0px; }
  #item-area .item-container p {
    margin: 0px;
    font-size: 14px; }

#total-area {
  text-align: right;
  font-family: "Avenir-Light";
  margin-right: 10px;
  margin-bottom: 10px; }
  #total-area h4 {
    margin: 0px; }
  #total-area p {
    margin: 0px; }

.grey-line {
  width: calc(100% - 20px);
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  background-color: lightgrey; }

#order-summary #order-summary-content {
  padding: 40px 50px; }
  #order-summary #order-summary-content #top-name-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; }
    #order-summary #order-summary-content #top-name-area img {
      width: 90px;
      height: 90px;
      margin-right: 30px; }
    #order-summary #order-summary-content #top-name-area h2 {
      padding-top: -2px;
      margin-bottom: 0px;
      font-size: 32px; }
    #order-summary #order-summary-content #top-name-area p {
      margin-top: 0px;
      font-family: "Avenir-Light";
      font-size: 18px; }
  #order-summary #order-summary-content #content-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    margin-left: 10px; }
    #order-summary #order-summary-content #content-container #pick-up-area {
      width: 500px;
      margin-right: 30px; }
      #order-summary #order-summary-content #content-container #pick-up-area .fridge-container {
        width: 375px; }
        #order-summary #order-summary-content #content-container #pick-up-area .fridge-container .fridge-delivery-date {
          color: grey;
          margin-left: 5px; }
      #order-summary #order-summary-content #content-container #pick-up-area .fridge-container:hover {
        -webkit-transform: none;
                transform: none;
        cursor: pointer; }
      #order-summary #order-summary-content #content-container #pick-up-area #info-text-section p {
        font-size: 18px;
        font-family: "Avenir-Light";
        margin: 0px;
        margin-bottom: 5px; }
        #order-summary #order-summary-content #content-container #pick-up-area #info-text-section p span {
          font-weight: bold; }
    #order-summary #order-summary-content #content-container #order-summary-area h3 {
      margin-bottom: -45px; }

#account {
  margin: 35px 45px; }
  #account #account-content {
    margin-left: 25px;
    margin-right: 15px; }
    #account #account-content #account-container {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap; }
      #account #account-content #account-container .account-container {
        width: 450px;
        margin-right: 45px; }
        #account #account-content #account-container .account-container .account-container-wrapper {
          border: 2px solid lightgrey;
          padding: 10px 15px;
          margin-bottom: 30px; }
          #account #account-content #account-container .account-container .account-container-wrapper .account-row {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center; }
            #account #account-content #account-container .account-container .account-container-wrapper .account-row .account-row-key-container {
              display: flex;
              flex-direction: row;
              justify-content: flex-start;
              align-items: center; }
            #account #account-content #account-container .account-container .account-container-wrapper .account-row .key {
              width: 120px;
              color: grey; }
            #account #account-content #account-container .account-container .account-container-wrapper .account-row input {
              margin-left: -10px;
              margin-right: 20px;
              font-size: 16px;
              padding: 5px 10px;
              border-radius: 5px;
              border: 1px solid lightgrey;
              width: 100px; }
            #account #account-content #account-container .account-container .account-container-wrapper .account-row .change-button {
              border-radius: 25px;
              border: 1px solid lightgrey; }
              #account #account-content #account-container .account-container .account-container-wrapper .account-row .change-button p {
                color: grey;
                margin: 0px;
                padding: 3px 18px;
                text-align: center;
                font-size: 14px; }
            #account #account-content #account-container .account-container .account-container-wrapper .account-row .change-button:hover {
              cursor: pointer;
              background-color: lightgrey; }
              #account #account-content #account-container .account-container .account-container-wrapper .account-row .change-button:hover p {
                color: white; }
        #account #account-content #account-container .account-container .account-line {
          width: 100%;
          height: 2px;
          background-color: lightgrey;
          margin-top: 5px;
          margin-bottom: 5px; }
    #account #account-content .account-payment-method {
      margin-bottom: 0px !important;
      border: none !important;
      padding: 10px !important; }
    #account #account-content #add-fridge-button {
      color: #00923F;
      font-family: "Avenir Heavy"; }
    #account #account-content #add-fridge-button:hover {
      cursor: pointer;
      text-decoration: underline; }
    #account #account-content #logout-button:hover {
      cursor: pointer;
      text-decoration: underline; }

@media only screen and (max-width: 1100px) {
  .separator-line {
    display: block !important; } }

#add-fridge-content {
  margin: 20px 65px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap; }
  #add-fridge-content #description-area {
    margin-right: 75px; }
    #add-fridge-content #description-area p, #add-fridge-content #description-area li {
      max-width: 490px; }
    #add-fridge-content #description-area li {
      margin-top: 10px;
      font-family: "Avenir Light"; }
  #add-fridge-content .separator-line {
    display: none;
    width: calc(100vw - 50px);
    max-width: 550px;
    height: 1px;
    background-color: lightgrey;
    margin-top: -20px;
    margin-bottom: 30px; }
  #add-fridge-content #add-fridge-content-container {
    margin-top: 40px; }
  #add-fridge-content #or-separator {
    margin: 40px 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; }
    #add-fridge-content #or-separator .or-line {
      width: 75px;
      height: 1px;
      background-color: grey; }
    #add-fridge-content #or-separator p {
      color: grey;
      font-style: italic;
      font-family: "Avenir Medium";
      margin: 0px 25px; }
  #add-fridge-content .access-input-container h3 {
    color: #00923F;
    margin-bottom: 0px; }
  #add-fridge-content .access-input-container p {
    font-size: 14px;
    font-style: italic;
    margin-top: 3px; }
  #add-fridge-content .access-input-container .input-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; }
    #add-fridge-content .access-input-container .input-area input {
      width: 250px;
      height: 20px;
      padding: 5px 10px;
      border-radius: 5px;
      border: 1px solid grey;
      margin-right: 20px; }
    #add-fridge-content .access-input-container .input-area .submit-button {
      color: #00923F;
      border: 1px solid #00923F;
      border-radius: 20px;
      padding: 5px 20px; }
    #add-fridge-content .access-input-container .input-area .submit-button:hover {
      cursor: pointer;
      background-color: #00923F;
      color: white; }
  #add-fridge-content #fridge-pin-field input, #add-fridge-content #corporate-email-pin-field input {
    letter-spacing: 20px;
    font-size: 24px;
    width: 130px;
    padding: 10px; }
  #add-fridge-content #fridge-pin-field input:focus, #add-fridge-content #corporate-email-pin-field input:focus {
    width: 145px; }

#alert-info-container {
  margin-top: 100px;
  margin-right: 30px;
  width: 400px;
  padding: 10px;
  background-color: #E5E5E5;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  border-radius: 5px;
  position: fixed;
  top: 0;
  right: 0; }
  #alert-info-container h4 {
    margin-top: 0px;
    margin-bottom: 0px; }
  #alert-info-container p {
    font-family: "Avenir-Light";
    margin-top: 5px;
    margin-bottom: 0px; }

#fridge-list-container {
  margin-bottom: 75px; }
  #fridge-list-container .account-fridge-container {
    padding: 10px;
    background-color: #ebfaf6;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
    width: 425px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: 0.2s; }
    #fridge-list-container .account-fridge-container p {
      margin: 0px; }
    #fridge-list-container .account-fridge-container .name-area {
      display: flex;
      flex-direction: row;
      justify-content: flex-start; }
      #fridge-list-container .account-fridge-container .name-area img {
        width: 20px;
        height: 20px;
        margin-right: 8px; }
      #fridge-list-container .account-fridge-container .name-area .fridge-name {
        font-family: "Avenir-Heavy"; }
    #fridge-list-container .account-fridge-container .info-container p {
      font-family: "Avenir-Light"; }
    #fridge-list-container .account-fridge-container .info-container .fridge-specific-instructions {
      color: #00923F; }
    #fridge-list-container .account-fridge-container .info-container .fridge-delivery-area {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center; }
      #fridge-list-container .account-fridge-container .info-container .fridge-delivery-area img {
        width: 20px;
        height: 20px;
        margin-right: 5px; }

body, html {
  font-family: "Avenir-Medium", sans-serif;
  margin: 0;
  padding: 0; }

@font-face {
  font-family: "Avenir Black";
  src: url(/Avenir-Black.ttf); }

@font-face {
  font-family: "Avenir Book";
  src: url(/Avenir-Book.ttf); }

@font-face {
  font-family: "Avenir Heavy";
  src: url(/Avenir-Heavy.ttf); }

@font-face {
  font-family: "Avenir Light";
  src: url(/Avenir-Light.ttf); }

@font-face {
  font-family: "Avenir Medium";
  src: url(/Avenir-Medium.ttf); }

@font-face {
  font-family: "Futura-Bold";
  src: url(/Futura-Bold.ttf); }

@font-face {
  font-family: "Futura-CondensedExtraBold";
  src: url(/Futura-CondensedExtraBold.ttf); }

@font-face {
  font-family: "Futura-CondensedMedium";
  src: url(/Futura-CondensedMedium.ttf); }

@font-face {
  font-family: "Futura-Medium";
  src: url(/Futura-Medium.ttf); }

@font-face {
  font-family: "Futura-MediumItalic";
  src: url(/Futura-MediumItalic.ttf); }


/*# sourceMappingURL=main.css.map*/