*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  background: #333333;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-image .5s;
  transition: background-image .5s;
}

hr {
  margin-bottom: 15px;
}

ul li {
  list-style: none;
}

.activity-picker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.delete-button {
  color: red;
  fill: red;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  padding: 1px 3px;
  border-right: 1px solid gray;
  cursor: pointer;
}

.edit-button {
  color: #ffd900;
  font-weight: bold;
  fill: #ffd900;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.modal .todo-form {
  -ms-flex-item-align: center;
      align-self: center;
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(0, 40, 101, 0.4);
  border: 1px solid 1px solid #385075;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.modal .todo-form .form-group__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .todo-form .form-group__center input[type=checkbox] {
  margin-left: 5px;
}

.modal .todo-form label {
  font-size: 1.2rem;
  font-weight: bold;
}

.modal .todo-form input, .modal .todo-form textarea, .modal .todo-form select {
  width: 100%;
  margin: .5rem 0;
  padding: .3rem;
}

.modal .todo-form input[type=checkbox] {
  width: initial;
  margin: 0;
}

.modal .todo-form input[type=submit] {
  padding: 5px;
  background: yellowgreen;
  font-weight: bold;
  font-size: 1.6rem;
  border: 1px solid #526e1a;
  border-radius: .5rem;
  margin-top: 2rem;
}

.modal .todo-form .weekdays-repeat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal .todo-form .weekdays-repeat .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .todo-form .weekdays-repeat .checkbox-container label {
  font-size: 1rem;
  font-weight: initial;
  margin-bottom: .5rem;
}

.modal .modal-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  border: .0rem solid whitesmoke;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 .3rem #ffffff;
          box-shadow: 0 0 .3rem #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #302b2b;
  font-weight: bolder;
  color: white;
  font-size: 4rem;
  line-height: 4.5rem;
  fill: white;
  outline: white;
}

.modal-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.empty {
  fill: #2bff00;
  color: #2bff00;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.coffee-no {
  fill: red;
  color: red;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}

.item-seperator {
  margin-top: .5rem;
  margin-bottom: .5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.content {
  position: relative;
  z-index: 1;
}

#countdown {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: center;
      align-self: center;
}

#countdown .countdown-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 3.4rem;
  margin: 0 15px;
}

#countdown .countdown-section .label {
  font-size: 1rem;
}

#coffee-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
}

#coffee-time svg {
  margin-right: 1rem;
}

#coffee-time span {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: 1rem;
}

.home-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  margin-bottom: 15px;
  background: rgba(0, 0, 0, 0.5);
}

.home-header .left-area {
  width: 33%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-header .center-area {
  width: 33%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-header .right-area {
  width: 33%;
  text-align: right;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-header .right-area .date-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.home-header .right-area .date-container .week-container, .home-header .right-area .date-container .datetime-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-header .right-area .date-container .week-container {
  text-align: left;
  margin-right: 3rem;
}

@media screen and (max-width: 600px) {
  .home-header .right-area .date-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home-header .right-area .date-container .week-container {
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  .home-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-header .left-area, .home-header .center-area, .home-header .right-area {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home-header .right-area {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 3rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home-header .center-area {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .home-header .left-area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.lunch-timer {
  position: fixed;
  bottom: 1.5rem;
  left: calc(50% - 75px);
  width: 15rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  border: 1px solid #616161;
  padding: 5px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 2px 2px 10px black;
          box-shadow: 2px 2px 10px black;
}

.lunch-timer .lunch-actions {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.lunch-timer .lunch-actions .lunch-button {
  padding: 5px;
  border: 0;
  border-radius: .3rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.4rem;
  width: 49%;
}

.lunch-timer .lunch-actions .lunch-button.play {
  background: yellowgreen;
  border: 0.1rem solid #75a01f;
}

.lunch-timer .lunch-actions .lunch-button.pause {
  background: orange;
  border: 0.1rem solid #b97900;
}

.lunch-timer .lunch-actions .lunch-button.stop {
  background: red;
  border: 0.1rem solid #c70000;
}

.lunch-timer .lunch-timer-label {
  text-align: center;
  font-weight: bold;
}

.lunch-timer .time-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

.lunch-timer .countdown-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 3.4rem;
  margin: 0 15px;
  width: 50%;
}

.lunch-timer .countdown-section .label {
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .lunch-timer {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
    margin: 5px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lunch-timer .lunch-actions {
    margin: 0;
  }
}

.home-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.home-main-container .container {
  padding: 10px;
  width: 32%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: .5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 100px);
  overflow: hidden;
}

.home-main-container .container #event-list {
  overflow: auto;
  max-height: calc(100vh - 165px);
}

.home-main-container .container #event-list::-webkit-scrollbar {
  width: 0px;
}

.home-main-container .container .goal-header {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-main-container .container .goal-header span {
  font-weight: bold;
  font-size: 2.4rem;
  cursor: pointer;
}

.home-main-container .container .goal-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 5px;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  -webkit-transition: border .5s;
  transition: border .5s;
}

.home-main-container .container .goal-item.work {
  background: url("../img/backgrounds/background-01.jpg");
}

.home-main-container .container .goal-item .goal-title {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.home-main-container .container .goal-item .goal-why {
  font-size: 14px;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.home-main-container .container .goal-item .goal-info {
  margin-left: 10px;
  font-size: 12px;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

.home-main-container .container .goal-item .goal-actions {
  position: relative;
  z-index: 2;
}

.home-main-container .container .goal-item .time-container {
  position: relative;
  z-index: 2;
}

.home-main-container .container .goal-item .timer {
  font-size: 10px;
  text-align: right;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.home-main-container .container .goal-item.checked .goal-title, .home-main-container .container .goal-item.checked .goal-why, .home-main-container .container .goal-item.checked .goal-info {
  text-decoration: line-through;
  color: gray;
}

.home-main-container .container .goal-item .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  border-radius: .5rem;
}

.home-main-container .container .goal-item.current-event {
  border: .3rem solid red;
  border-left: 1rem solid red;
  -webkit-box-shadow: 0 0 5px #810000;
          box-shadow: 0 0 5px #810000;
}

.home-main-container .container .goal-item.current-event .item-overlay {
  border-radius: initial;
}

@media screen and (max-width: 600px) {
  .home-main-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-main-container .container {
    width: 96%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .home-main-container .container ::-webkit-scrollbar {
    width: 0px;
  }
}

.flyer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.flyer-container .left-button, .flyer-container .right-button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: block;
  padding: 5px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flyer-container .flyer {
  height: 720px;
  width: 510px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  overflow: hidden;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  position: relative;
}

.flyer-container .flyer .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flyer-container .flyer .pages .page-container {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  position: relative;
}

.flyer-container .flyer .pages .page-container img {
  display: block;
  max-width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
      touch-action: none;
}

.flyer-container .flyer .pages.vertical-view {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flyer-container .flyer.double {
  width: 1020px;
}

.flyer-container .flyer.double .pages .page-container {
  width: 50%;
}

.flyer-container .flyer.flyer-vertical {
  height: 100%;
  width: 510px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  overflow: scroll;
}

.flyer-container .flyer.flyer-vertical::-webkit-scrollbar {
  width: 0px;
}

.flyer-container .flyer.flyer-vertical .pages .page-container {
  margin: .5rem 0;
  width: 100%;
}

.testing-container {
  position: fixed;
  top: 1rem;
  left: 1rem;
}

.page-parent {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  background-image: url("01.jpg");
}

.link-container {
  padding: 3px;
  height: 100%;
  width: 100%;
}

.row-parent {
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.column-parent a, .row-parent a {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.column-parent a:hover, .row-parent a:hover {
  background: rgba(0, 0, 0, 0.2);
}

.column-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
}

.page-header {
  width: 100%;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.page-footer {
  width: 100%;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal-options {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: whitesmoke;
  color: black;
  padding: 1rem;
  z-index: 5;
}

.production .page-container .page-parent {
  background: rgba(255, 192, 203, 0.486);
}

.production .page-container .row-parent {
  background: rgba(255, 166, 0, 0.5);
  margin: 5px;
  padding: 5px;
}

.production .page-container .column-parent {
  background: rgba(144, 238, 144, 0.5);
  margin: 3px;
  padding: 3px;
}

.production .page-container .row-parent a, .production .page-container .column-parent a {
  background: rgba(128, 0, 128, 0.438);
}

.production .page-container .page-header {
  background: rgba(219, 68, 68, 0.5);
}

.production .page-container .page-footer {
  background: rgba(173, 216, 230, 0.5);
}

.production .page-container .link-container {
  margin: 0;
  padding: 0;
}

.production .page-container .selected-item {
  border: .2rem solid white;
  -webkit-box-shadow: 0 0 10px white;
          box-shadow: 0 0 10px white;
}

.fullscreen-container {
  width: 100%;
  min-height: 100vh;
  background: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}

.fullscreen-container .info {
  max-width: 96rem;
  background: white;
  color: #0a0a0a;
  padding: 2rem;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.fullscreen-container .info h2 {
  margin-top: 3rem;
}

.fullscreen-container .info h3 {
  margin-top: 1rem;
}

.fullscreen-container .info h4 {
  margin: .5rem 0;
}

.fullscreen-container .temperature-graph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: .5rem;
  background: -webkit-gradient(linear, left top, right top, from(#0089c7), color-stop(#f9e100), to(#ff450b));
  background: linear-gradient(to right, #0089c7, #f9e100, #ff450b);
}

.fullscreen-container .temperature-graph span {
  display: block;
  padding: 0 5rem;
  color: black;
  font-weight: bold;
  font-size: 2.2rem;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.header input[type="date"] {
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  color: #ee8349;
  font-size: 2.4rem;
}

@media screen and (max-width: 600px) {
  .header input[type="date"] {
    font-size: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .header .center-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .header .center-header span {
    font-size: 1.4rem;
  }
  .header .center-header span.date {
    font-size: 1.6rem;
    font-weight: bold;
  }
}

.form-center {
  max-width: 60rem;
  max-height: 80vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 2rem;
  border-radius: .5rem;
  background: #202020;
  color: #5db0d7;
  border: 1px solid #4d5864;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 600px) {
  .form-center {
    margin: 0 1rem;
  }
}

.form-center hr {
  width: 100%;
  display: block;
}

.form-center form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-center form .form-group-half {
  width: 49%;
  margin: 3px 0;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 600px) {
  .form-center form .form-group-half {
    width: 100%;
  }
}

.form-center form .form-group-full {
  width: 100%;
  margin: 3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form-center form label {
  width: 100%;
  display: block;
  margin-bottom: .3rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.form-center form input, .form-center form select {
  height: 3.5rem;
  width: 100%;
  display: block;
  font-size: 1.6rem;
  background: #333333;
  color: #5db0d7;
  border: 1px solid #4d5864;
  padding: .5rem 1rem;
  border-radius: .5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-center form input[type="submit"] {
  margin-top: 2rem;
  color: black;
  font-size: 2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.daily-info {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.daily-info .nutrition-group {
  width: 100%;
  margin: 3px 0;
  font-size: 1.8rem;
}

.daily-info .nutrition-group span {
  line-height: 25px;
}

.daily-info .nutrition-group .nutrition-span {
  display: inline-block;
  margin-bottom: .4rem;
  line-height: initial;
}

.daily-info .nutrition-group.protein {
  color: #ee4949;
}

.daily-info .nutrition-group.calorie {
  color: #b5cea8;
}

.daily-info .nutrition-group.carbs {
  color: #ee8349;
}

.daily-info .nutrition-group.fat {
  color: #5db0d7;
}

@media screen and (min-width: 1000px) {
  .daily-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 49% 49%;
        grid-template-columns: 49% 49%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1200px) {
  .daily-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24% 24% 24% 24%;
        grid-template-columns: 24% 24% 24% 24%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1500px) {
  .daily-info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24% 24% 24% 24%;
        grid-template-columns: 24% 24% 24% 24%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.progress-container {
  width: 100%;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: .5rem;
  background: black;
  color: #c9c9d4;
  /*border: 1px gray solid;*/
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.progress-container span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-weight: bolder;
  line-height: 2.4rem;
}

.progress-container .progress-bar__protein {
  background: #ff3838;
}

.progress-container .progress-bar__calories {
  background: #aaf086;
}

.progress-container .progress-bar__carbs {
  background: #ff7e38;
}

.progress-container .progress-bar__fat {
  background: #44b9f0;
}

hr {
  border: 1px solid #4d5864;
}

.meals {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.meals h2 {
  text-align: center;
  margin-top: .5rem;
  color: #b5cea8;
}

.meals hr {
  margin: 3px -5px;
  border: 1px solid #4d5864;
}

.meals .meal-type {
  background: #292929;
  border: 1px solid #4d5864;
  padding: .5rem;
  border-radius: .5rem;
  margin-bottom: 1rem;
  color: #ee8349;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.meals .meal-type .meal-items {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

.meals .meal-type .meal-items .meal-item {
  margin: 1rem 0;
  overflow: hidden;
  text-align: center;
}

.meals .meal-type .meal-items .meal-item h3 {
  letter-spacing: .08rem;
  margin-bottom: .5rem;
}

.meals .meal-type .meal-items .meal-item > span {
  display: inline-block;
  margin-bottom: .5rem;
}

.meals .meal-type .meal-items .meal-item .meal-item-nutrition {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 49% 49%;
      grid-template-columns: 49% 49%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.meals .meal-type .meal-items .meal-item .meal-item-nutrition .meal-nutrition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 5px 0;
  font-size: 1.8rem;
  letter-spacing: .1rem;
  font-family: monospace;
  color: #5db0d7;
}

.meals .meal-type .meal-items .meal-item .meal-item-nutrition .meal-nutrition span {
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (min-width: 1000px) {
  .meals .meal-type .meal-items .meal-item .meal-item-nutrition {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 32% 32% 32%;
        grid-template-columns: 32% 32% 32%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1200px) {
  .meals .meal-type .meal-items .meal-item .meal-item-nutrition {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24% 24% 24% 24%;
        grid-template-columns: 24% 24% 24% 24%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1500px) {
  .meals .meal-type .meal-items .meal-item .meal-item-nutrition {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 19% 19% 19% 19% 19%;
        grid-template-columns: 19% 19% 19% 19% 19%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 600px) {
  .meals .meal-type .meal-items {
    -ms-grid-columns: 49% 49%;
        grid-template-columns: 49% 49%;
  }
}

@media screen and (min-width: 1000px) {
  .meals .meal-type .meal-items {
    -ms-grid-columns: 32% 32% 32%;
        grid-template-columns: 32% 32% 32%;
  }
}

@media screen and (min-width: 1200px) {
  .meals .meal-type .meal-items {
    -ms-grid-columns: 24% 24% 24% 24%;
        grid-template-columns: 24% 24% 24% 24%;
  }
}

@media screen and (min-width: 1500px) {
  .meals .meal-type .meal-items {
    -ms-grid-columns: 19% 19% 19% 19% 19%;
        grid-template-columns: 19% 19% 19% 19% 19%;
  }
}

.add-button {
  display: block;
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  cursor: pointer;
}

.add-button.orange {
  background: #ee8349;
  border: 1px solid #a84510;
}

.add-button.orange:hover {
  background: #ea631a;
}

.add-button.blue {
  background: #5db0d7;
  border: 1px solid #246e91;
}

.add-button.blue:hover {
  background: #349ccd;
}
/*# sourceMappingURL=styles.css.map */