@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Comfortaa", cursive;
  font-size: 62.5%;
}

.appNav {
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.appNav .appNavBtn {
  min-width: 6rem;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.appNav .appNavBtn img {
  width: 3rem;
}

.appNav .appNavBtn h1 {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0.5rem;
  color: #ffffff;
}

.appNav .appNavBtn p {
  font-size: 0.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #514f4f;
}

.appNav .medicine {
  background-color: #80deea;
}

.appNav .reminder {
  background-color: #f8c45b;
}

.appNav .record {
  background-color: #80deea;
}

.active {
  border: solid 4px #80deea !important;
  background-color: #ffffff !important;
}

.active h1 {
  color: #707070 !important;
}

a {
  text-decoration: none;
  outline: none;
}

.index-heading {
  width: 90%;
  margin: 0.8rem auto;
}

.index-heading h1 {
  color: #818181;
}

.swiper-container {
  width: 90%;
  background-color: rgba(51, 195, 216, 0.42) !important;
  border-radius: 1rem;
}

.swiper-container .swiper-wrapper .swiper-slide {
  color: #ffffff;
  margin: 5rem 0;
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reminderWrapper {
  width: 90%;
  margin: 0 auto;
}

.reminderWrapper .yellow .pills {
  background-color: #fabc41;
}

.reminderWrapper .yellow .check {
  background-color: #fabc41;
  opacity: 0.67;
}

.reminderWrapper .brown .pills {
  background-color: #e4865c;
}

.reminderWrapper .brown .check {
  background-color: #e4865c;
  opacity: 0.67;
}

.reminderWrapper .blue .pills {
  background-color: #1cbed6;
}

.reminderWrapper .blue .check {
  background-color: #1cbed6;
  opacity: 0.67;
}

.reminderWrapper .reminder {
  margin: 0.8rem auto;
  border-radius: 0.5rem;
  position: relative;
  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;
  -webkit-box-shadow: 0 7px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 7px 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px rgba(112, 112, 112, 0.09);
}

.reminderWrapper .reminder .pills {
  position: relative;
  left: -1rem;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
}

.reminderWrapper .reminder .pills img {
  width: 2.5rem;
  margin: 0.5rem 0.5rem;
}

.reminderWrapper .reminder .medicine {
  margin: auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.reminderWrapper .reminder .medicine h1 {
  color: #707070;
  font-size: 1rem;
}

.reminderWrapper .reminder .medicine h2 {
  display: inline-block;
  color: #fabc41;
}

.reminderWrapper .reminder .medicine #evening {
  margin-left: 0.5rem;
}

.reminderWrapper .reminder .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.reminderWrapper .reminder .check img {
  margin: auto 0.5rem;
}

.checked {
  color: #000000 !important;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}
/*# sourceMappingURL=index.css.map */