* {
  box-sizing: border-box;
  font-family: "Unbounded", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  touch-action: manipulation;
}

.app.modal-open {
  overflow-y: hidden;
}

.app {
  background: #F0F0F0;
  color: #282828;

  .topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    width: 100%;
    min-height: 14vw;
    padding: 10px 32px 12px 32px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F0F0;

    a {
      padding: 20px;
    }

    .topbar-left {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      display: grid;
      place-items: center;

      a {
        height: inherit;

        img {
          height: 32px;
          width: 32px;
        }
      }
    }

    .brand-mark {
      padding: 20px;
    }

    .topbar-title {
      font-weight: 700;
      text-align: center;
      font-size: 6vw;
    }

    .topbar-title.topbar-title-min {
      font-size: 4vw;
    }

    .topbar-title.topbar-title-auth {
      padding: 0;
      font-weight: 500;
      font-size: 9vw;
      text-align: center;
      background: linear-gradient(137deg, #86ff94 0%, #15b980 100%);
      background-clip: text;
      text-decoration: none;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .topbar-right {
      position: absolute;
      right: 0;
      top: 46%;
      transform: translateY(-50%);
      place-items: center;

      a {
        height: inherit;

        img {
          height: 32px;
          width: 32px;
        }
      }
    }

    .topbar-profile-hidden {
      display: none;
    }
  }

  #draftGuard.sheet {
    transition: all 0.5s;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    .sheet-head {
      img {
        display: block;
        background-color: #d5f6e4;
        padding: 18px;
        border-radius: 100%;
        margin: 0 auto;
        margin-bottom: 10vw;
      }
    }

    .sheet-body {
      flex: unset;

      .sheet-undone {
        margin: 20px 0;
        text-align: center;
      }

      .sheet-controls {
        display: flex;
        gap: 12px;
        justify-content: center;

        .training-add {
          position: relative;
          color: #282828;
          border: none;
          border-radius: 14px;
          height: 38px;
          overflow: hidden;
          padding: 2vw 3vw;
          color: #33D469;
          border: 2px solid #33D469;
          box-shadow: 0 9px #429f63;

          &:active {
            box-shadow: 0 5px #429f63;
            transform: translateY(4px);
          }
        }

        .training-delete {
          border-radius: 14px;
          color: #EB4545;
          border: 1px solid #EB4545;
          padding: 2vw 7vw;
          height: 47px;
          background: transparent;
          border: 2px solid #eb4545;
          box-shadow: 0 9px #eb4545;

          &:active {
            box-shadow: 0 5px #eb4545;
            transform: translateY(4px);
          }
        }

        .training-add {
          border-radius: 14px;
          color: #33D469;
          padding: 2vw 7vw;
          height: 47px;
          color: #282828;
          background-color: #60e78d;
          box-shadow: 0 9px #429f63;

          &:active {
            box-shadow: 0 5px #429f63;
            transform: translateY(4px);
          }
        }
      }
    }
  }

  #subModal.sheet {
    border-radius: 50px 50px 0 0;
    padding: 0;
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    height: 90vh;

    .sheet-head {
      border-radius: 50px 50px 0 0;
      padding: 0 1rem;
      font-size: 5vw;
      color: #282828;
      margin-bottom: 20px;
    }

    .sheet-body {
      .plans-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 14px;
        padding: 0 1rem;

        .tariff-card {
          border: 0;
          border-radius: 14px;
          padding: 10px;
          background: #EEEEEE;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          cursor: pointer;
          outline: none;
          text-align: center;

          .tariff-title {
            font-weight: 500;
            font-size: 5vw;
            color: #282828;
          }

          .tariff-price {
            font-weight: 800;
            font-size: 3.6vw;
            color: #60e78d;
            margin: 10px 0;

            span {
              font-weight: 600;
              opacity: .9;
            }
          }

          .tariff-desc {
            font-size: 12px;
            color: #3A3A3A;
            opacity: .9;
          }
        }

        .tariff-card[data-code="user-base"] {
          text-align: left;

          .tariff-desc {
            margin-top: 10px;
          }
        }

        .tariff-card[data-code="user-pro"] {
          background: #FFFFFF;
          border: 2px solid #282828;
        }

        .tariff-card.is-selected {
          border: 2px solid #33D469;
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          background: #FFFFFF;
        }
      }

      .plans-section-title {
        font-size: 5vw;
        color: #282828;
        padding: 0 1rem;
        font-weight: 500;
        text-align: center;
        margin: 20px 0;
      }

      .subs-subtitle {
        font-weight: 800;
        font-size: 4vw;
        color: #282828;
        padding: 0 1rem;
        margin: 20px 0 10px;
      }

      .benefits {
        list-style: none;
        padding: 0;
        margin: 0 0 12px;
        display: grid;
        gap: 8px;
        padding: 0 1rem;

        .benefit-item {
          background: #FFF;
          box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
          border-radius: 10px;
          padding: 18px;
          display: flex;
          align-items: center;
          gap: 20px;

          .b-text {
            font-size: 3vw;
            color: #282828;
          }

          .b-ico.number-icon {
            width: unset;
            height: unset;
            font-size: 8vw;
            padding: 0 8px;
          }

          .b-ico {
            width: 32px;
            height: 32px;
            color: #33D469;
            display: inline-block;
            position: relative;

            svg {
              width: 32px;
              height: 32px;

              path {
                fill: #60e78d;
              }
            }
          }
        }
      }

      .big-cta {
        width: 100%;
        height: 48px;
        border: 0;
        border-radius: 14px;
        font-size: 16px;
        color: #282828;
        background: #60e78d;
        cursor: pointer;
        margin-top: 8px;
        box-shadow: 0 9px #429f63;

        &:active {
          box-shadow: 0 5px #429f63;
          transform: translateY(4px);
        }
      }
    }

    #subChooseForm {
      padding: 0 1rem;
    }
  }

  .sheet {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8f8f8;
    border-radius: 1.25rem 1.25rem 0 0;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, .15);
    transform: translateY(200vh);
    transition: transform .28s ease;
    z-index: 40;
    flex-direction: column;
    padding: 0 1rem 1rem 1rem;
    will-change: transform;

    .video-head {
      position: relative;
      margin-bottom: 20px;

      .video-close {
        position: absolute;
        right: 0;
        top: 50%;
        background: unset;
        border: none;
        outline: none;
        font-size: 20px;
        transform: translateY(-45%);
        color: #33D469;
      }
    }

    .sheet-head {
      position: sticky;
      top: 0;
      z-index: 1;
      background: #f8f8f8;
      padding: 8px 0 2px;
      touch-action: none;
      -webkit-user-select: none;
      user-select: none;
      cursor: grab;

      &:active {
        cursor: grabbing;
      }

      .back-abs {
        position: absolute;
        top: 10px;
        left: -10px;
        padding: 20px;
        border: 0;
        outline: none;
        background: none;

        img {
          height: 20px;
          width: 13px;
        }
      }

      .submodal-close {
        position: absolute;
        right: 10px;
        top: 20px;
        border: 0;
        outline: none;
        background: transparent;
        color: #60e78d;

        svg {
          path {
            stroke: currentColor;
          }
        }
      }

      .sheet-title {
        margin: 0;
        text-align: center;
        cursor: inherit;
        font-size: 5vw;
      }
    }

    .sheet-body {
      flex: 1 1 auto;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: calc(16px + env(safe-area-inset-bottom));

      video {
        margin-bottom: 100px;
      }
    }

    .sheet-drag {
      width: 30%;
      height: 4px;
      border-radius: 2px;
      background: #282828;
      margin: 6px auto 10px;

      &:active {
        cursor: grabbing;
      }
    }

    .sheet-state-peek {
      transform: translateY(60vh)
    }
  }

  .sheet.is-open {
    transform: translateY(0);
  }

  .footer {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 20px);
    height: 72px;
    max-width: 450px;
    background: transparent;
    backdrop-filter: blur(8px);
    border: 1px solid #34D17B;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    z-index: 50;

    .footer-btn {
      height: 100%;
      width: 100%;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 12px;
      min-width: 0;
      color: #686868;
      transition: transform 2s ease, color 2s ease;
      outline: none;
      -webkit-tap-highlight-color: transparent;

      span {
        font-size: 3vw;
        line-height: 1;
        white-space: nowrap;
        user-select: none;
      }

      svg {
        width: 32px;
        height: 32px;

        path {
          fill: currentColor;
        }
      }
    }

    .footer-btn.active {
      color: #48DA7E;
      animation: pop-in 150ms cubic-bezier(.3, 1.4, .4, 1) both;

      svg {
        animation: pop-in 150ms cubic-bezier(.3, 1.4, .4, 1) both;
      }
    }
  }

  .sheet-backdrop[hidden] {
    display: none !important;
  }

  .sheet[hidden] {
    display: none !important;
  }

  .sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 35;
  }

  .sheet-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .orientation-blocker {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    background: #0f0f10;
    color: #fff;
    text-align: center;
    padding: 24px;
  }

  .orientation-msg {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    line-height: 1.35
  }

  .orientation-icon {
    width: 56px;
    height: 56px;
    opacity: .9
  }


  .pwa-splash[hidden] {
    display: none !important;
  }

  .pwa-splash {
    position: fixed;
    inset: 0;
    background: #262626;
    z-index: 99999;
    display: grid;
    place-items: center;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms ease, visibility 280ms ease;
  }

  .pwa-splash.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .pwa-splash-fill {
    position: absolute;
    width: 200vmax;
    height: 200vmax;
    border-radius: 50%;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(0.05);
  }

  .pwa-splash.is-active .pwa-splash-fill {
    animation: pwa-drop-fill 650ms cubic-bezier(.22, .61, .36, 1) forwards;
  }

  .pwa-splash-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .pwa-splash-logo {
    width: 104px;
    height: 104px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: scale(0.9);
  }

  .pwa-splash.is-active .pwa-splash-logo {
    animation: pwa-logo-pop 420ms ease 260ms forwards;
  }

  .pwa-splash-progress {
    position: relative;
    margin-top: 20px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Unbounded", sans-serif;
    font-size: 18px;
    letter-spacing: 0.4px;
    color: #262626;
    opacity: .9;
  }
}

@keyframes pop-in {
  0% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1.1);
  }
}

@supports (font-synthesis-weight:auto) {
  .app .pwa-splash-progress {
    font-variation-settings: "wght" 560;
  }
}

@keyframes pwa-drop-fill {
  0% {
    transform: translate(-50%, -60%) scale(0.05);
  }

  35% {
    transform: translate(-50%, -50%) scale(0.1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pwa-logo-pop {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (orientation: landscape) {
  .orientation-blocker {
    display: flex
  }
}

@media (hover: hover) and (pointer: fine) {
  .orientation-blocker {
    display: none
  }
}

@media (prefers-reduced-motion: reduce) {

  .app .pwa-splash.is-active .pwa-splash-fill,
  .app .pwa-splash.is-active .pwa-splash-logo {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.fb-dark {
  .app {

    #subModal.sheet,
    #draftGuard.sheet {
      background: #323232;
      color: #F0F0F0;

      .sheet-head {
        background: inherit;

        .sheet-title {
          color: #F0F0F0;
        }
      }

      .sheet-body {
        .plans-grid {
          .tariff-card {
            background: #2a2a2a;

            .tariff-title {
              color: #F0F0F0;
            }

            .tariff-desc {
              color: #F0F0F0;
            }
          }

          .tariff-card[data-code="user-pro"] {
            background: #D7F9E333;
          }

          .tariff-card[data-code="user-base"] {
            box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1), 0 19px 19px 0 rgba(0, 0, 0, 0.09), 0 42px 25px 0 rgba(0, 0, 0, 0.05), 0 75px 30px 0 rgba(0, 0, 0, 0.01), 0 117px 33px 0 rgba(0, 0, 0, 0);
          }
        }

        .subs-subtitle {
          color: #F0F0F0;
        }

        .benefits {
          .benefit-item {
            background: #2a2a2a;

            .b-text {
              color: #F0F0F0;
            }
          }
        }

        .plans-section-title {
          color: #F0F0F0;
        }
      }
    }
  }
}

.base-btn {
  display: block;
  border: 0;
  outline: none;
  border-radius: 14px;
  width: 100%;
  padding: 4vw 5vw;
  background-color: transparent;
  text-decoration: none;
  text-align: center;
}

.base-btn.green {
  color: #282828;
  background-color: #60e78d;
  box-shadow: 0 9px #429f63;

  &:active {
    box-shadow: 0 5px #429f63;
    transform: translateY(4px);
  }
}

.base-btn.green.transparent {
  background: none;
  border: 1px solid #60e78d;
  color: #60e78d;

  &:active {
    transform: translateY(4px);
  }
}

.base-btn.green.is-disabled {
  background-color: #d3d3d3;
  box-shadow: none;
  color: #8a8a8a;
  cursor: default;
}

.base-btn.green.is-disabled:active {
  transform: none;
  box-shadow: none;
}

.base-btn.red {
  color: #EB4545;
  box-shadow: 0 9px #d13d3d;
  border: 1px solid #EB4545;

  &:active {
    transform: translateY(4px);
    box-shadow: 0 4px #d13d3d;
  }
}

/*Саня новый CSS*/
.active-workout-hint {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 12px;
  background: #fff;
  color: #282828;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  z-index: 1100;
}


.fb-dark {
  .active-workout-hint {
    background: #1f1f1f;
    color: #f5f5f5;
  }
}

.awh-body {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}

.awh-title {
  font-weight: 700;
  font-size: 3.5vw;
  line-height: 1.1;
  margin-bottom: 2vw;
}

.awh-sub {
  font-size: 3vw;
  opacity: .8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.awh-timer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 5vw;
}

.awh-close {
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  opacity: .7;
}

#orientationBlocker[hidden] {
  display: none !important;
}

#orientationBlocker {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: #0f0f10;
  color: #fff;
  text-align: center;
  padding: 24px;
}

@media (orientation: landscape) {
  #orientationBlocker:not([hidden]) {
    display: flex;
  }
}

@media (hover: hover) and (pointer: fine) {
  #orientationBlocker {
    display: none !important;
  }
}

.active-workout-hint[data-paused="1"] .awh-timer::after {
  content: " · Пауза";
  font-size: 12px;
  opacity: 0.8;
}

#calPickerModal.modal {
  position: fixed;
  inset: 0;
  display: grid;
  z-index: 1000;

  .backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
  }

  .sheet {
    position: relative;
    margin-top: auto;
    width: 100%;
    max-width: 420px;
    justify-self: center;
    background: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    color: #fff;
    transform: translateY(0%);
    animation: slideUp .22s ease forwards;

    .sheet-head {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      justify-content: center;
      align-items: center;
      padding: 12px 14px;
      background: unset;

      .link {
        background: transparent;
        border: 0;
        color: #60e78d;
        font-weight: 400;
        font-size: 3vw;
        cursor: pointer;
        text-align: center;
      }

      .sheet-title {
        text-align: center;
        font-weight: 500;
        font-size: 4vw;
        color: #282828;
      }
    }

    .sheet-body {
      flex: 1 1 auto;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: calc(16px + env(safe-area-inset-bottom));
      padding: 10px 16px 16px;

      .cal-wheel {
        touch-action: none;
        height: 180px;
        overflow: hidden;
        position: relative;
        display: flex;
        gap: 12px;

        .cal-col {
          flex: 1;
          position: relative;
          overflow: hidden;

          .wheel-numbers {
            will-change: transform;

            .wheel-number {
              height: 40px;
              line-height: 40px;
              font-size: 28px;
              text-align: center;
              color: #bfc7db;
            }

            .wheel-number.active {
              color: #282828;
              font-weight: 800;
            }
          }

          .wheel-overlay {
            position: absolute;
            left: 8px;
            right: 8px;
            top: 50%;
            height: 40px;
            margin-top: -20px;
            border-top: 1px solid #60e78d;
            border-bottom: 1px solid #60e78d;
            border-radius: 10px;
            pointer-events: none;
          }

          &::before,
          &::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 30px;
            pointer-events: none;
            z-index: 2;
          }

          &::before {
            top: 0;
            background: linear-gradient(to bottom, white, transparent);
          }

          &::after {
            bottom: 0;
            background: linear-gradient(to top, white, transparent);
          }
        }

        .col-sep {
          width: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #7e869b;
          font-size: 28px;
        }
      }
    }
  }
}

#calPickerModal[hidden] {
  display: none !important;
}


.active-workout-hint.awh-alert {
  border: 2px solid #FFC107;
  animation: awh-blink 1.2s ease-in-out infinite;
}

.active-workout-hint.awh-alert::before {
  content: "🔔";
  position: absolute;
  top: -6px;
  right: 16px;
  font-size: 18px;
}

@keyframes awh-blink {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.9);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 193, 7, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

.footer.footer-coach {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
}

.footer-coach-link {
  display: block;
  width: 100%;
  max-width: 520px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  color: #33D469;
}

.topbar-notif-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.topbar-notif-ico {
  width: 22px;
  height: 22px;
}

.topbar-notif-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  background: #33D469;
  color: #fff;
}

.notif-empty {
  padding: 18px 12px;
  text-align: center;
  color: #9E9E9E;
}

.notif-empty-text {
  font-size: 14px;
}

.notif-link {
  text-decoration: underline;
}

.notif-link:visited {
  color: inherit;
}

.modal-backdrop[hidden],
.modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 60;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: grid;
  place-items: start center;
  padding: 70px 16px 16px;
}

.modal-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  position: relative;
  padding: 16px 16px 14px;
}

.modal-title {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

.modal-body {
  max-height: min(60vh, 520px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}

.modal-close {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #282828;
  opacity: .8;
}

.modal-close:active {
  transform: scale(.98);
}

.modal-head {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}

.modal-gear {
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.notif-settings {
  padding: 10px 0 0 0;
}

.notif-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.benefit-acc-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.b-title {
  flex: 1;
  line-height: 1.25;
}

.benefit-acc-chevron {
  margin-left: 8px;
  transform: rotate(90deg);
  transition: transform .18s ease;
  opacity: .6;
}

.benefit-acc-chevron.is-open {
  transform: rotate(270deg);
}

.benefit-acc-panel {
  padding-left: 44px;
  padding-top: 8px;
}

.benefit-acc-panel-inner {
  opacity: .85;
  line-height: 1.35;
}