.main-wrapper {
  display: flex;
  flex-direction: column;
}

.main-content,
.hero-unit__row {
  flex: 1 0 auto;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1rem;
  width: 100%;
}

.footer {
  background-color: #00bb92;
  color: white;
  font-size: 14px;
  margin-top: 2rem;
  text-align: center;
  padding: 3rem 1rem;
}

.footer__credits {
  margin-bottom: 0;
}

.mon-row,
.hero__wrapper,
.top-bar__wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.mon-block {
  margin-bottom: 3rem;
}

@media screen and (min-width: 640px) {
  .mon-block {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .mon-block {
    margin-bottom: 5rem;
  }
}

.button {
  background-color: #00bb92;
  border-color: #00bb92;
  border-radius: 50px !important;
  border-width: 3px;
  color: white;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  padding: 1rem 2rem;
  transition: all linear 0.2s;
}

.button:hover {
  background-color: transparent;
  color: #00bb92;
}

.button--tertiary {
  background: #ffbd42;
  border-color: #ffbd42;
  color: #0a125c;
}

.button--tertiary:hover {
  color: #0a125c;
}

.button--outline-tertiary {
  background: transparent;
  border-color: #ffbd42;
  color: #0a125c;
}

.button--outline-tertiary:hover {
  background-color: #ffbd42;
  color: #0a125c;
}

.button--outline-primary {
  background: transparent;
  border-color: #00bb92;
  color: #0a125c;
}

.button--outline-primary:hover {
  background-color: #00bb92;
  color: white;
}

.button--small {
  font-size: 16px;
  padding: 0.5rem 2rem;
}

.button--large {
  font-size: 20px;
  padding: 0.75rem 1.5rem;
}

.link {
  border-bottom: 2px solid #00bb92;
  color: #00bb92;
  font-weight: 700;
}

.card {
  background-color: white;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card .content {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  justify-content: space-between;
  text-align: center;
}

.card__image-container {
  background-color: transparent;
  height: 90px;
  position: relative;
  top: -45px;
}

.card__image {
  border: 3px solid white;
  border-radius: 100%;
  height: 100px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
  width: 100px;
}

.card__cover {
  background-color: #d13d91;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 128px;
  overflow: hidden;
  position: relative;
}

.card__cover::after {
  background-color: #5355b2;
  content: "";
  display: inline-block;
  height: 220px;
  left: -75px;
  position: absolute;
  top: -10px;
  transform: rotate(61deg);
  width: 200px;
}

.card__content {
  padding: 1rem;
  position: relative;
  text-align: center;
  top: -45px;
}

.card__content h3,
.card__content .repeater-icon__item-heading {
  margin-bottom: 0;
}

header.header {
  margin-bottom: 2rem;
}

.hero-unit {
  overflow: hidden;
  position: relative;
  background-color: #d13d91;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .hero-unit {
    padding: 3rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .hero-unit {
    padding: 4rem 0;
  }
}

.hero-unit::before {
  background-color: #5355b2;
  bottom: 0;
  content: "";
  height: 100vw;
  left: -15vw;
  position: absolute;
  top: -15vw;
  transform: rotate(-25deg);
  width: 50vw;
}

.hero-unit__title {
  color: white;
  margin-bottom: 0;
  position: relative;
}

.hero-unit__profile-image {
  border-radius: 100%;
  border: 5px solid white;
  height: 150px;
  margin: 0 auto 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 150px;
}

.hero-unit__excerpt {
  margin-top: 2rem;
}

select {
  border: 2px solid #d2d6dc;
  height: 50px;
  width: 100%;
}

option {
  padding: 3px;
}

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.checkbox-list__item {
  margin-right: 1rem;
  padding-bottom: 1rem;
  font-size: 15px;
}

.checkbox-list input[type=checkbox] {
  margin-right: 6px;
}

.flip-book-container {
  height: 60vh;
}

table.table--bordered {
  border-width: 1px;
}

table.table--bordered td,
table.table--bordered th {
  padding: 0.5rem 1rem;
  border: 1px solid #eee;
}

.top-bar {
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;
}

.top-bar__wrapper {
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.top-bar__logo {
  max-width: 200px;
}

@media screen and (min-width: 640px) {
  .top-bar__logo {
    max-width: 250px;
  }
}

body {
  color: #0a125c;
  font-family: "Poppins";
  font-weight: 400;
}

h1 {
  font-size: 40px;
}

@media screen and (min-width: 640px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  font-size: 32px;
}

h3,
.repeater-icon__item-heading {
  font-size: 24px;
}

h1,
h2,
h3,
.repeater-icon__item-heading,
h4 {
  line-height: 1.2;
  font-weight: 500;
}

h1,
h2,
h3,
.repeater-icon__item-heading,
h4,
h5 {
  font-weight: 700;
  margin-bottom: 2rem;
}

.text-large {
  font-size: 5rem;
}

.lead,
.hero-unit__excerpt {
  font-size: 22px;
}

p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.user-info__title {
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 2px solid #777777;
  padding-bottom: 1rem;
}

.user-info__list-item {
  font-size: 16px;
  color: #777777;
  margin-bottom: 1rem;
}

.user-info__list-label {
  color: #333;
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.note-reporting-dashboard {
  overflow: hidden;
}

@media screen and (min-width: 640px) {
  .note-reporting-dashboard {
    display: grid;
    grid-gap: 4rem 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.note-reporting-dashboard__form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
}

@media screen and (min-width: 640px) {
  .note-reporting-dashboard__form {
    align-items: flex-end;
    flex-direction: row;
    margin-bottom: 2rem;
  }
}

.note-reporting-dashboard__form label {
  font-size: 14px;
  margin-top: 1rem;
}

@media screen and (min-width: 640px) {
  .note-reporting-dashboard__form label {
    margin: 0 0.5rem 0 0;
  }
}

.note-reporting-dashboard__form input,
.note-reporting-dashboard__form button {
  display: block;
  height: 55px;
  margin: 0 0.5rem 0 0;
}

.note-reporting-dashboard__form input:hover,
.note-reporting-dashboard__form button:hover {
  cursor: pointer;
}

.note-reporting-dashboard__form input {
  border: 1px solid #ddd;
  padding: 1rem;
}

.note-reporting-dashboard__form button {
  margin-top: 1rem;
}

@media screen and (min-width: 640px) {
  .note-reporting-dashboard__form button {
    margin-top: 0;
  }
}

.note-reporting-dashboard__item {
  margin-top: 3rem;
  position: relative;
}

.note-reporting-dashboard__item.form,
.note-reporting-dashboard__item.time-spent {
  grid-column: 1/-1;
}

.note-reporting-dashboard__item.time-spent {
  grid-row: 2;
}

.note-reporting-dashboard__item.form {
  margin-top: 0;
}

.note-reporting-dashboard__item .note-reporting-dashboard__item-heading {
  margin-bottom: 1rem;
}

.note-reporting-dashboard__form .picker--opened .picker__holder {
  max-height: 30em;
}

.note-reporting-dashboard__form .picker__box {
  background-color: white;
  padding: 0;
}

.note-reporting-dashboard__form .picker__header {
  background: #777777;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
  padding: 0.5rem;
  text-align: left;
}

.note-reporting-dashboard__form .picker__month,
.note-reporting-dashboard__form .picker__year {
  grid-column: 1;
  grid-row: 1;
}

.note-reporting-dashboard__form .picker__year {
  color: white;
  grid-row: 2;
}

.note-reporting-dashboard__form .picker__day {
  border-radius: 3px;
  color: #454545;
  padding: 3px;
}

.note-reporting-dashboard__form .picker__day:hover {
  background: #777777 !important;
  color: white;
  cursor: pointer;
}

.note-reporting-dashboard__form .picker__day--highlighted {
  background: #777777 !important;
  color: white;
}

.note-reporting-dashboard__form .picker__nav--prev,
.note-reporting-dashboard__form .picker__nav--next {
  align-items: center;
  cursor: pointer;
  display: flex;
  grid-row: 3;
  height: 50px;
  justify-content: center;
  justify-content: flex-start;
  padding: 0;
  position: static;
  padding-left: 0.5rem;
  width: 100px;
}

.note-reporting-dashboard__form .picker__nav--prev:hover,
.note-reporting-dashboard__form .picker__nav--next:hover {
  background-color: transparent;
}

.note-reporting-dashboard__form .picker__nav--prev:before,
.note-reporting-dashboard__form .picker__nav--next:before {
  align-items: center;
  border: none;
  content: ">";
  display: block;
  display: flex;
  height: 50px;
  transform: rotate(180deg);
}

.note-reporting-dashboard__form .picker__nav--prev:after,
.note-reporting-dashboard__form .picker__nav--next:after {
  content: "Previous month";
  font-size: 13px;
  line-height: 1;
  margin-left: 0.5rem;
}

.note-reporting-dashboard__form .picker__nav--next {
  justify-content: flex-end;
  justify-self: end;
}

.note-reporting-dashboard__form .picker__nav--next:before {
  transform: none;
  margin-left: 0.5rem;
  order: 2;
  padding-right: 0.5rem;
}

.note-reporting-dashboard__form .picker__nav--next:after {
  order: 1;
  text-align: right;
}

.note-reporting-dashboard__form .picker__footer {
  background-color: #777777;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
}

.note-reporting-dashboard__form .picker__footer button {
  background-color: transparent;
  color: white;
  cursor: pointer;
  border-radius: 3px;
  padding: 0.5rem;
  border: 1px solid white;
  height: auto;
  font-size: 14px;
}

.note-reporting-dashboard__form .picker__footer button::before {
  color: white;
}

.hero {
  background-color: #f8feff;
  padding: 2rem 0;
}

.hero__wrapper {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 1rem;
}

@media screen and (min-width: 640px) {
  .hero__wrapper {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 640px) {
  .hero__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 4rem 0;
  }
}

.hero__image {
  margin-bottom: 2rem;
}

@media screen and (min-width: 640px) {
  .hero__image {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.hero__title {
  margin-bottom: 0;
}

.hero__excerpt {
  font-size: 18px;
  margin: 2rem 0;
}

.repeater-icon__item {
  margin-bottom: 1rem;
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 0.5rem 1rem;
  text-align: center;
}

@media screen and (min-width: 640px) {
@supports (display: grid) {
    .repeater-icon__item {
      margin: 0;
      max-width: 100% !important;
      width: 100%;
    }
}

  .repeater-icon__item:nth-child(n+4) {
    flex-grow: 0;
  }
}

.repeater-icon__item-heading {
  margin: 1rem 0;
  transition: 0.25s linear all;
}

.repeater-icon__image {
  text-align: center;
}

.repeater-icon__image img {
  margin: 0 auto;
}

.repeater-icon__text {
  align-self: center;
}

@media screen and (min-width: 640px) {
  .repeater-icon__grid {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
  }

@supports (display: grid) {
    .repeater-icon__grid {
      display: grid;
      grid-gap: 2rem;
      grid-template-columns: repeat(12, 1fr);
      margin: 0;
    }
}
}

.repeater-icon__grid--center {
  justify-content: center;
  text-align: center;
}

.repeater-icon__grid--left .repeater-icon__item,
.repeater-icon__grid--left .repeater-icon__image,
.repeater-icon__grid--left .repeater-icon__item-heading,
.repeater-icon__grid--left .repeater-icon__text {
  text-align: left;
}

.repeater-icon__grid--card .repeater-icon__item {
  border: 1px solid lightgray;
  padding: 2rem;
}

.repeater-icon__grid--card .repeater-icon__image,
.repeater-icon__grid--card .repeater-icon__item-heading,
.repeater-icon__grid--card .repeater-icon__text {
  text-align: left;
}

.repeater-icon__grid--card .repeater-icon__heading {
  align-self: start;
}

@media screen and (min-width: 640px) {
  .repeater-icon__grid--2 .repeater-icon__item {
    flex-basis: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

@supports (display: grid) {
    .repeater-icon__grid--2 .repeater-icon__item {
      grid-column: auto/span 6;
    }
}
}

@media screen and (min-width: 640px) {
  .repeater-icon__grid--3 .repeater-icon__item {
    flex-basis: calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
  }

@supports (display: grid) {
    .repeater-icon__grid--3 .repeater-icon__item {
      grid-column: auto/span 4;
    }
}
}

@media screen and (min-width: 640px) {
  .repeater-icon__grid--4 .repeater-icon__item {
    flex-basis: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }

@supports (display: grid) {
    .repeater-icon__grid--4 .repeater-icon__item {
      grid-column: auto/span 3;
    }
}
}

.content-image__grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@supports (display: grid) {
  .content-image__grid {
    display: grid;
    grid-row-gap: 1rem;
  }
}

@media screen and (min-width: 640px) {
@supports (display: grid) {
    .content-image__grid {
      grid-gap: 4rem;
      grid-template-columns: repeat(12, 1fr);
    }
}
}

.content-image__content {
  align-content: center;
  flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (min-width: 640px) {
  .content-image__content {
    flex-basis: calc(50% - 3rem);
    max-width: calc(50% - 3rem);
  }
}

@supports (display: grid) {
  .content-image__content {
    max-width: 100%;
  }
}

.content-image__content > *:last-child {
  margin-bottom: 0;
}

.content-image__content > *:last-child a.button {
  margin-bottom: 0;
}

.content-image__container {
  flex: 0 0 100%;
  height: 0;
  max-width: 100%;
  padding-top: 50%;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 640px) {
  .content-image__container {
    flex-basis: calc(50% - 3rem);
    max-width: calc(50% - 3rem);
  }
}

@supports (display: grid) {
  .content-image__container {
    max-width: 100%;
    padding-top: 100%;
  }
}

.content-image__figure {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

@media screen and (min-width: 640px) {
  .content-image__figure {
    flex-basis: calc(50% - 3rem);
    max-width: calc(50% - 3rem);
  }
}

@supports (display: grid) {
  .content-image__figure {
    max-width: 100%;
  }
}

.content-image__figure .content-image__image {
  position: initial;
}

.content-image__image {
  height: 100%;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}

.content-image__illustration {
  position: absolute;
}

@media screen and (min-width: 640px) {
  .content-image--left .content-image__container,
  .content-image--left .content-image__figure {
    grid-column: 1/7;
  }

  .content-image--left .content-image__content {
    grid-column: 7/-1;
    grid-row: 1/1;
  }
}

@media screen and (min-width: 640px) {
  .content-image--right .content-image__content {
    grid-column: 1/7;
    order: 1;
  }

  .content-image--right .content-image__container,
  .content-image--right .content-image__figure {
    grid-column: 7/-1;
    grid-row: 1/1;
    order: 2;
  }
}

.content-image--full-bleed .content-image__content {
  padding: 1rem;
}

@media screen and (min-width: 640px) {
  .content-image--full-bleed .content-image__content {
    padding: 4rem 1rem;
  }
}

@media screen and (min-width: 1366px) {
  .content-image--full-bleed .content-image__content {
    padding: 6rem 1rem;
  }
}

.content-image--full-bleed .content-image__container {
  height: 100%;
  padding-top: 100%;
}

@media screen and (min-width: 640px) {
  .content-image--full-bleed .content-image__container {
    padding-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .content-image--full-bleed .content-image--left .content-image__content {
    padding-left: 3.875rem;
  }
}

@media screen and (min-width: 1366px) {
  .content-image--full-bleed .content-image--left .content-image__content {
    margin-right: calc( (100% - (640px - (1rem))) );
  }
}

@media screen and (min-width: 1024px) {
  .content-image--full-bleed .content-image--right .content-image__content {
    padding-right: 3.875rem;
  }
}

@media screen and (min-width: 1366px) {
  .content-image--full-bleed .content-image--right .content-image__content {
    margin-left: calc( (100% - (640px - (1rem))) );
  }
}

