.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .page:not(.page--home) {
    --offset: calc(38px + 60px);
    margin-top: var(--offset); }
    @media (max-width: 1200px) {
      .page:not(.page--home) {
        --offset: calc(38px + 20px) ; } }
  .page__container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }

.page__header {
  grid-area: header; }
.page__body {
  grid-area: body; }
.page__footer {
  grid-area: footer; }
.page--dashboard .page__container, .page--food-log .page__container, .page--activity-log .page__container, .page--mood-log .page__container, .page--weight-log .page__container, .page--profile .page__container {
  display: grid;
  grid-template-columns: 8fr 4fr;
  grid-auto-rows: min-content;
  grid-gap: 16px 48px;
  grid-template-areas: 'header footer' 'body footer';
  align-items: flex-start; }
@media (max-width: 1200px) {
  .page--dashboard .page__container, .page--food-log .page__container, .page--activity-log .page__container, .page--mood-log .page__container, .page--weight-log .page__container, .page--profile .page__container {
    grid-template-columns: 100%;
    grid-template-areas: 'header' 'body' 'footer'; } }
.page--calculator .page__body {
  max-width: 600px; }
.page--change-password .page__container, .page--forgot-password .page__container, .page--reset-password .page__container {
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: min-content;
  grid-template-areas: 'header' 'body' 'footer';
  grid-gap: 16px; }
.page--change-password .page__body, .page--forgot-password .page__body, .page--reset-password .page__body {
  max-width: 600px;
  justify-self: center;
  width: 100%; }
  .page--change-password .page__body .v-form__body, .page--forgot-password .page__body .v-form__body, .page--reset-password .page__body .v-form__body {
    grid-template-columns: 100% !important; }
.page--blog-show .page__container {
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: min-content;
  grid-template-areas: 'header' 'body' 'footer';
  grid-gap: 16px; }
.page--blog-show .page__body, .page--blog-show .page__footer {
  width: 100%;
  max-width: 936px;
  justify-self: center; }
.page--forgot-password .page__body, .page--reset-password .page__body {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 8px; }
  .page--forgot-password .page__body p, .page--reset-password .page__body p {
    font-size: 14px; }
  .page--forgot-password .page__body .v-form__header, .page--reset-password .page__body .v-form__header {
    margin-bottom: 16px; }
    .page--forgot-password .page__body .v-form__header h2, .page--reset-password .page__body .v-form__header h2 {
      margin-bottom: 8px; }
  .page--forgot-password .page__body .v-form .button, .page--reset-password .page__body .v-form .button {
    width: 100%; }
.page--articles .page__container, .page--blog-search .page__container, .page--blog-tag .page__container {
  display: grid;
  grid-template-columns: 3fr 9fr;
  grid-auto-rows: min-content;
  grid-gap: 16px 48px;
  grid-template-areas: 'body header' 'body footer';
  align-items: flex-start; }
.page--articles .page__header, .page--blog-search .page__header, .page--blog-tag .page__header {
  margin-bottom: 24px; }
  .page--articles .page__header form, .page--blog-search .page__header form, .page--blog-tag .page__header form {
    display: grid;
    grid-template-columns: auto min-content;
    grid-template-rows: 1fr;
    grid-gap: 16px; }
@media (max-width: 1200px) {
  .page--articles .page__container, .page--blog-search .page__container, .page--blog-tag .page__container {
    grid-template-columns: 100%;
    grid-template-areas: 'header' 'body' 'footer'; }
  .page--articles .page__header form, .page--blog-search .page__header form, .page--blog-tag .page__header form {
    grid-template-columns: 100%;
    grid-template-rows: min-content; } }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0; }
  .pagination li {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: white;
    border: 1.5px solid #0089B0;
    border-radius: 24px;
    box-sizing: border-box !important;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #0089B0; }
    .pagination li a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: inherit;
      padding: 12px;
      min-width: 48px;
      min-height: 48px;
      max-height: 48px; }
    .pagination li.active {
      color: #AC5892;
      border-color: #AC5892; }
    .pagination li.disabled {
      pointer-events: none;
      color: gray;
      border-color: lightgray; }

.layout--dashboard .page__header {
  display: flex;
  align-items: center;
  justify-content: space-between; }
.layout--dashboard .calendar {
  display: grid;
  grid-template-columns: 32px auto 32px;
  grid-template-rows: 1fr;
  grid-gap: 8px;
  align-items: center;
  justify-content: center; }
  .layout--dashboard .calendar > span {
    font-weight: 600; }
  .layout--dashboard .calendar i {
    color: #0089B0; }
.layout--dashboard h6.title {
  margin: 8px 0 16px 0;
  background-color: #AC5892;
  color: #ffffff;
  border-bottom: 1px solid #d6d5c9;
  padding: 15px;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center; }
.layout--dashboard .mood-slider > * {
  margin: 8px auto; }

.v-form--about .v-form, .v-form--email .v-form, .v-form--password .v-form {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid whitesmoke; }
  .v-form--about .v-form__header, .v-form--email .v-form__header, .v-form--password .v-form__header {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px; }
  .v-form--about .v-form__body, .v-form--email .v-form__body, .v-form--password .v-form__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    grid-gap: 2px 16px; }
  .v-form--about .v-form__footer, .v-form--email .v-form__footer, .v-form--password .v-form__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end; }
