@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
body {
  background-color: white; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-variant-ligatures: none;
  letter-spacing: 0.03em;
  font-size: 16px;
  text-align: center;
  line-height: 1.4; }
  @media (min-width: 600px) {
    * {
      font-size: 18px; } }
  @media (max-width: 360px) {
    * {
      font-size: 14px; } }

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0 auto; }

h1, h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2B2B2B; }
  @media (min-width: 600px) {
    h1, h2 {
      font-size: 32px; } }
  @media (max-width: 360px) {
    h1, h2 {
      font-size: 20px; } }

h3, h3 b {
  font-size: 16px;
  color: #969D94;
  line-height: 1.6; }
  @media (min-width: 600px) {
    h3, h3 b {
      font-size: 22px; } }
  @media (max-width: 360px) {
    h3, h3 b {
      font-size: 14px; } }

h3 b {
  font-weight: 700;
  color: #67A651; }

a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #246758;
  border-bottom: 2px solid #246758;
  transition: all 0.2s ease; }
  a:hover {
    color: #67A651;
    border-bottom: 2px solid #67A651; }
  @media (max-width: 360px) {
    a {
      font-size: 14px; } }

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  min-height: 100vh;
  padding-bottom: 40px; }
  @media (min-width: 600px) {
    main {
      background-color: #D0E0DC;
      padding-top: 20px;
      padding-bottom: 80px; } }
  main.isEmbed {
    padding-top: 40px;
    padding-bottom: 40px; }

.hide {
  transition: all 0.2s ease;
  opacity: 0; }

.show {
  opacity: 1; }

header {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end; }

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  padding: 0 20px; }

.content-container {
  background-color: white;
  overflow: hidden;
  padding-bottom: 20px;
  display: block;
  min-height: 100vh; }
  @media (min-width: 600px) {
    .content-container {
      min-height: 0;
      border-radius: 10px;
      box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.2); } }

.spacing-xs {
  margin-top: 10px; }
  @media (max-width: 600px) {
    .spacing-xs {
      margin-top: 6px; } }

.spacing-s {
  margin-top: 20px; }
  @media (max-width: 600px) {
    .spacing-s {
      margin-top: 10px; } }

.spacing-m {
  margin-top: 40px; }
  @media (max-width: 600px) {
    .spacing-m {
      margin-top: 10px; } }

.spacing-l {
  margin-top: 80px; }
  @media (max-width: 600px) {
    .spacing-l {
      margin-top: 40px; } }

.spacing-xl {
  margin-top: 160px; }
  @media (max-width: 600px) {
    .spacing-xl {
      margin-top: 80px; } }

.text-left {
  text-align: left; }

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

footer {
  background-color: #f5f5f5;
  padding: 40px 0;
  color: #2B2B2B; }
  footer * {
    font-size: 12px; }
  footer.isEmbed {
    display: none; }

pre {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: scroll; }
  pre code {
    text-align: left;
    white-space: pre-wrap;
    display: block;
    background-color: #F1F5F4;
    border-radius: 10px;
    border: none;
    padding: 20px;
    overflow: scroll;
    font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
    font-size: 12px;
    line-height: 1.2; }
    @media (max-width: 600px) {
      pre code {
        font-size: 8px;
        padding: 10px; } }

.step-indicator {
  list-style: none;
  display: flex;
  flex-direction: row; }
  .step-indicator li {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #E0E0E0;
    border-radius: 4px;
    margin: 4px;
    transition: all 0.3s ease; }
    .step-indicator li.active {
      background-color: #67A651; }

.modal-overlay {
  position: absolute;
  z-index: 1001;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px;
  padding-top: 15vh;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0; }
  .modal-overlay.isVisible {
    display: flex;
    opacity: 1; }
  .modal-overlay .modal-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width: 480px;
    display: none; }
    .modal-overlay .modal-container.isVisible {
      display: block; }
    .modal-overlay .modal-container#embed {
      max-width: 600px; }
  .modal-overlay .modal-header {
    display: block;
    width: 100%;
    position: relative; }
    .modal-overlay .modal-header .btn-round {
      position: absolute;
      top: 0;
      right: 0; }
    .modal-overlay .modal-header h2 {
      position: absolute;
      font-size: 20px;
      line-height: 40px;
      top: 0;
      left: 0;
      right: 0; }
  .modal-overlay .modal-content {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 60px; }
    @media (max-width: 600px) {
      .modal-overlay .modal-content {
        margin-top: 52px; } }
    .modal-overlay .modal-content img {
      width: 100%;
      height: auto;
      margin: 20px 0; }
    .modal-overlay .modal-content p {
      max-width: 80%;
      margin: 0 auto; }
      @media (max-width: 600px) {
        .modal-overlay .modal-content p {
          max-width: 100%; } }
  .modal-overlay .modal-footer {
    margin-top: 20px;
    display: block;
    width: 100%;
    position: relative; }
    .modal-overlay .modal-footer .btn {
      width: 100%; }

.btn {
  display: block;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px;
  padding: 8px 20px;
  border: none;
  box-shadow: none;
  height: auto;
  line-height: auto;
  white-space: nowrap;
  text-decoration: none;
  height: auto;
  opacity: 1; }
  @media (max-width: 360px) {
    .btn {
      font-size: 16px; } }
  .btn.hideBtn {
    height: 0;
    line-height: 0;
    font-size: 0;
    padding: 0;
    border: 0;
    opacity: 0; }

.btn-xl {
  padding: 12px 40px; }

.btn-round {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .btn-round img {
    width: 14px;
    height: auto; }

.btn-primary {
  background-color: #246758;
  color: white !important;
  transition: all 0.2s ease;
  border: none;
  border: 2px solid #246758; }
  .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background-color: #67A651;
    border: none;
    color: white !important;
    border: 2px solid #67A651; }

.btn-secondary {
  background: none;
  color: #246758 !important;
  transition: all 0.2s ease;
  border: 2px solid #246758; }
  .btn-secondary:hover {
    color: #67A651;
    border: 2px solid #67A651; }

.btn-tertiary {
  background: none;
  color: #246758 !important;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  border-radius: 0; }
  .btn-tertiary:hover {
    border-bottom: 2px solid #246758; }

.results-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: scroll; }
  .results-wrapper .results-card {
    width: 100%;
    display: block;
    background-color: #F1F5F4;
    border-radius: 10px;
    padding: 40px;
    margin-top: 20px; }
    .results-wrapper .results-card h3 {
      font-weight: 600;
      color: #2B2B2B; }
    @media (max-width: 440px) {
      .results-wrapper .results-card {
        padding: 20px; } }
  .results-wrapper .result-ok {
    background-color: #D9E9D4; }
  .results-wrapper .result-warning {
    background-color: #FFF7CF; }
  .results-wrapper .result-error {
    background-color: #F0C2CA; }

.calculator-main-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: stretch; }
  .calculator-main-wrapper .calculator-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1001;
    width: 100%; }
    .calculator-main-wrapper .calculator-bottom .btn {
      width: 100%; }
  .calculator-main-wrapper .calculator-step {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 0;
    overflow: visible;
    z-index: 1;
    transition: all 0.4s ease;
    transform: translateX(-100%);
    opacity: 0; }
    .calculator-main-wrapper .calculator-step h2, .calculator-main-wrapper .calculator-step h3 {
      max-width: 420px; }
      @media (max-width: 600px) {
        .calculator-main-wrapper .calculator-step h2, .calculator-main-wrapper .calculator-step h3 {
          max-width: 340px; } }
    .calculator-main-wrapper .calculator-step.isVisible {
      height: 70vh;
      opacity: 1;
      transform: translateX(0%); }
      @media (max-width: 600px) {
        .calculator-main-wrapper .calculator-step.isVisible {
          height: 65vh; } }
    .calculator-main-wrapper .calculator-step .bottom-wrapper {
      width: 100%;
      display: flex;
      min-height: 15vh;
      justify-content: flex-end;
      flex-direction: column; }
      @media (max-width: 600px) {
        .calculator-main-wrapper .calculator-step .bottom-wrapper {
          min-height: 10vh; } }
      @media (max-width: 440px) {
        .calculator-main-wrapper .calculator-step .bottom-wrapper {
          min-height: 0; } }
  .calculator-main-wrapper #step-5 {
    justify-content: flex-start; }
    @media (max-width: 600px) {
      .calculator-main-wrapper #step-5.isVisible {
        height: 100%; } }
    @media (max-width: 600px) {
      .calculator-main-wrapper #step-5 .results-wrapper {
        overflow: visible; } }

#ppfd-value-container {
  background-color: #F1F5F4;
  width: 240px;
  height: 240px;
  border-radius: 420px;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 440px) {
    #ppfd-value-container {
      width: 160px;
      height: 160px;
      margin-top: 10px;
      margin-bottom: 20px; } }

#week-value-container {
  background-color: #F1F5F4;
  width: 280px;
  height: 280px;
  border-radius: 200px;
  margin: 0 auto;
  margin-top: 40px;
  display: block;
  position: relative; }
  @media (max-width: 440px) {
    #week-value-container {
      width: 200px;
      height: 200px;
      margin-top: 0;
      margin-bottom: 20px; } }
  #week-value-container .value-wrapper {
    position: absolute;
    bottom: -10px;
    left: 20%;
    right: 20%;
    display: block;
    background-color: #D9E9D4;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0px 4px 20px -4px rgba(0, 0, 0, 0.15); }
    #week-value-container .value-wrapper h3 {
      color: #67A651;
      font-weight: 600; }
  #week-value-container #plant-stage-image {
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    width: 120%;
    height: auto; }

.value-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .value-wrapper * {
    width: 100%;
    max-width: 100% !important;
    text-align: center;
    margin: 0 auto; }
  .value-wrapper h2 {
    display: block;
    font-size: 40px;
    font-weight: 600;
    color: #2B2B2B;
    line-height: 1; }
    @media (max-width: 440px) {
      .value-wrapper h2 {
        font-size: 24px; } }
  .value-wrapper p {
    display: block;
    color: #969D94; }

.image-wrapper {
  display: block;
  position: relative;
  margin: 40px auto; }
  @media (max-width: 600px) {
    .image-wrapper {
      margin: 20px auto; } }
  @media (max-width: 440px) {
    .image-wrapper {
      margin: 10px auto;
      width: 100%; } }
  .image-wrapper .image-wrapper-circle {
    margin: 40px auto;
    border-radius: 500px;
    overflow: hidden;
    width: 30vmin;
    height: 30vmin; }
    @media (max-width: 600px) {
      .image-wrapper .image-wrapper-circle {
        margin: 20px auto;
        width: 70vmin;
        height: 70vmin; } }
    @media (max-width: 440px) {
      .image-wrapper .image-wrapper-circle {
        margin: 20px auto;
        width: 60vmin;
        height: 60vmin; } }
    @media (max-width: 360px) {
      .image-wrapper .image-wrapper-circle {
        margin: 10px auto;
        width: 50vmin;
        height: 50vmin; } }
  .image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%; }
  .image-wrapper .product-value-overlay {
    display: block;
    background-color: #D9E9D4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 20px -4px rgba(0, 0, 0, 0.15);
    position: absolute; }
    @media (max-width: 440px) {
      .image-wrapper .product-value-overlay {
        padding: 10px 20px; } }
    .image-wrapper .product-value-overlay h3 {
      color: #67A651;
      font-weight: 600; }
    .image-wrapper .product-value-overlay p {
      margin-top: 6px;
      color: #2B2B2B; }
      @media (max-width: 440px) {
        .image-wrapper .product-value-overlay p {
          margin-top: 2px; } }
    .image-wrapper .product-value-overlay.overlay-top {
      top: 0;
      right: 0; }
    .image-wrapper .product-value-overlay.overlay-bottom {
      bottom: 0;
      left: 0; }

.slider-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 20px; }

.slider-label {
  display: block;
  position: absolute;
  top: -180%; }
  .slider-label span {
    width: 120px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    display: block;
    position: absolute;
    left: 0;
    transform: translate(-25%, 0); }

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #E0E0E0;
  border-radius: 5px;
  outline: none; }

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 54px;
  height: 54px;
  background: #246758;
  cursor: pointer;
  border-radius: 50px;
  border: none; }

.slider::-moz-range-thumb {
  width: 54px;
  height: 54px;
  background: #246758;
  cursor: pointer;
  border-radius: 50px;
  border: none; }

.share-result {
  display: none;
  background-color: #D9E9D4;
  padding: 40px 20px;
  width: 100%;
  border-radius: 10px; }
  .share-result.isVisible {
    margin-top: 20px;
    display: block; }
  .share-result.isError {
    background-color: #F0C2CA; }

.circular-gauge {
  width: 200px;
  height: 200px;
  display: inline-block;
  background: #F1F5F4;
  position: relative; }
  @media (min-width: 600px) {
    .circular-gauge {
      width: 280px;
      height: 280px; } }

.circular-gauge,
.circular-gauge span,
.circular-gauge span::before,
.circular-gauge span::after {
  border-radius: 400px; }
  @media (min-width: 600px) {
    .circular-gauge,
    .circular-gauge span,
    .circular-gauge span::before,
    .circular-gauge span::after {
      border-radius: 560px; } }

.circular-gauge span,
.circular-gauge span::before,
.circular-gauge span::after {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.circular-gauge span {
  clip: rect(0, 200px, 200px, 100px); }
  @media (min-width: 600px) {
    .circular-gauge span {
      clip: rect(0, 280px, 280px, 140px); } }

.circular-gauge span::before,
.circular-gauge span::after {
  border: 100px solid #67A651;
  content: '';
  clip: rect(0, 100px, 200px, 0); }
  @media (min-width: 600px) {
    .circular-gauge span::before,
    .circular-gauge span::after {
      border: 140px solid #67A651;
      clip: rect(0, 140px, 280px, 0); } }

.circular-gauge span::before {
  transform: rotate(50deg); }

#hour-value-container {
  position: relative; }
  #hour-value-container .value-wrapper {
    position: absolute;
    display: flex;
    width: calc(200px - 40px);
    height: calc(200px - 40px);
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F1F5F4;
    border-radius: calc((200px - 40px) / 2); }
    @media (min-width: 600px) {
      #hour-value-container .value-wrapper {
        width: calc(280px - 40px);
        height: calc(280px - 40px);
        border-radius: calc((280px - 40px) / 2); } }

.share-container {
  position: absolute;
  z-index: 1001;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .share-container.isVisible {
    display: flex; }
  @media (max-width: 440px) {
    .share-container {
      justify-content: flex-end; } }
  .share-container .share-card {
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    width: 100%;
    margin: 20px;
    padding: 30px; }
    @media (max-width: 440px) {
      .share-container .share-card {
        padding: 10px;
        margin-bottom: 80px; } }
    .share-container .share-card h2 {
      font-size: 20px;
      line-height: 40px; }
    .share-container .share-card .share-header {
      display: block;
      width: 100%;
      position: relative; }
      .share-container .share-card .share-header .btn-round {
        position: absolute;
        top: 0;
        right: 0; }
      .share-container .share-card .share-header h2 {
        position: absolute;
        top: 0;
        left: 0;
        right: 0; }
    .share-container .share-card .share-items {
      margin-top: 60px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .share-container .share-card .share-items * {
        transition: all 0.2s ease; }
      .share-container .share-card .share-items .share-item {
        text-decoration: none;
        border: none;
        margin: 10px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-width: 90px;
        font-size: 14px;
        cursor: pointer; }
        .share-container .share-card .share-items .share-item:hover {
          transform: translateY(-10px); }
        .share-container .share-card .share-items .share-item .share-item-bubble {
          background-color: #246758;
          width: 60px;
          height: 60px;
          border-radius: 60px;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 10px; }
          .share-container .share-card .share-items .share-item .share-item-bubble img {
            width: 30px;
            height: 30px;
            margin: auto; }
        .share-container .share-card .share-items .share-item.facebook:hover {
          color: #4267B2; }
          .share-container .share-card .share-items .share-item.facebook:hover .share-item-bubble {
            background-color: #4267B2; }
        .share-container .share-card .share-items .share-item.messenger:hover {
          color: #006AFF; }
          .share-container .share-card .share-items .share-item.messenger:hover .share-item-bubble {
            background-color: #006AFF; }
        .share-container .share-card .share-items .share-item.twitter:hover {
          color: #1DA1F2; }
          .share-container .share-card .share-items .share-item.twitter:hover .share-item-bubble {
            background-color: #1DA1F2; }
        .share-container .share-card .share-items .share-item.whatsapp:hover {
          color: #25D366; }
          .share-container .share-card .share-items .share-item.whatsapp:hover .share-item-bubble {
            background-color: #25D366; }
        .share-container .share-card .share-items .share-item.telegram:hover {
          color: #0088CC; }
          .share-container .share-card .share-items .share-item.telegram:hover .share-item-bubble {
            background-color: #0088CC; }
        .share-container .share-card .share-items .share-item.dialog:hover {
          color: #67A651; }
          .share-container .share-card .share-items .share-item.dialog:hover .share-item-bubble {
            background-color: #67A651; }
    .share-container .share-card .share-link-wrapper {
      margin: 10px; }
      .share-container .share-card .share-link-wrapper .share-link-field {
        cursor: pointer;
        width: 100%;
        background-color: #F1F5F4;
        padding: 14px 20px;
        border-radius: 10px;
        position: relative; }
        .share-container .share-card .share-link-wrapper .share-link-field p {
          padding: 0;
          margin: 0;
          text-align: left;
          width: calc(100% - 60px);
          text-overflow: ellipsis;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 1;
          /* number of lines to show */
          -webkit-box-orient: vertical; }
        .share-container .share-card .share-link-wrapper .share-link-field img {
          width: 20px;
          height: 100%;
          position: absolute;
          right: 20px;
          top: 0;
          bottom: 0; }
