/* Ribbon
*/

.paws-calc-ribbon {
  background: #d6f2f3;
  max-width: 475px;
  padding: 6px 18px;
  border-radius: 4px;
  margin: -98px auto 55px auto;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  font-family: "Poppins", system-ui, sans-serif;
  color: #000000;
}

.paws-calc-ribbon span {
  color: #47c3cb;
}

.paws-calc {
  max-width: 930px;
  margin: 0 auto;
  padding: 80px 50px;
  border-radius: 10px;
  border: 2px solid #000000;
  background: #ffffff;
  position: relative;
}

.paws-calc-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: flex-start;
}

.paws-calc-col.paws-calc-col--form {
  border-right: 1px solid #44c2cc;
  padding: 0 30px 0 0;
}

.paws-calc-col.paws-calc-col--result {
  padding: 0 0 0 30px;
}

.paws-calc-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 40px 0;
}

.paws-calc-subtitle {
  color: #44c2cc;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0 13px 0;
}

.paws-calc-subtitle--right {
  text-align: left;
}

.paws-calc-fields {
  display: flex;
  flex-direction: column;
}

.paws-calc-field {
  padding: 13px 0 0 0;
}

.paws-calc-label {
  display: block;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 0 0 10px 0;
  color: #000000;
}

.paws-calc-input-wrap {
  position: relative;
}

.paws-calc-input,
.paws-calc-select {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #c1c1c1;
  border-radius: 8px;
  font-size: 16px;
  color: #000;
  outline: none;
}

.paws-calc-input:focus,
.paws-calc-select:focus {
  border-color: #26c0d0;
  border-radius: 8px;
}

.paws-calc-input-suffix {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #000;
}

/* Cards results */
.paws-calc-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.paws-calc-card {
  background: #daf0f1;
  border-radius: 8px;
  padding: 16px;
}

.paws-calc-card-label {
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", system-ui, sans-serif;
  color: #000;
  padding: 0 0 10px 0;
}

.paws-calc-card-value {
  color: #44c2cc;
  font-size: 17px;
  font-weight: 600;
  font-family: "Poppins", system-ui, sans-serif;
}

/* IMG */
.paws-calca-hero-img {
  width: 100%;
  height: auto;
}

/* IMG Per Day*/
.paws-calc-bubble {
  position: absolute;
  right: 40px;
  bottom: 90px;
}

.paws-calc-bubble-mobile {
  display: none;
}

/* Footer CTA */
.paws-calc-footer {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.paws-calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  background: #46c3cd;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-family: "Poppins", system-ui, sans-serif;
  min-width: 454px;
}

.paws-calc-cta-suffix {
  font-weight: 400;
  font-size: 14px;
  font-family: "Poppins", system-ui, sans-serif;
}

.paws-calc-disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: #000000;
  font-family: "Poppins", system-ui, sans-serif;
}

@media (max-width: 768px) {
  .paws-calc-ribbon {
    max-width: 100%;
    width: 100%;
    margin: -55px auto 24px auto;
    font-size: 13px;
    padding: 6px 12px;
  }

  .paws-calc {
    padding: 32px 18px 40px;
    border-radius: 10px;
    max-width: 350px;
  }

  .paws-calc-title {
    font-size: 22px;
    line-height: 1.15;
    padding-bottom: 24px;
  }

  .paws-calc-inner {
    display: block;
  }

  .paws-calc-col.paws-calc-col--form {
    border-right: none;
    padding: 0;
  }

  .paws-calc-col.paws-calc-col--result {
    padding: 0;
    margin-top: 10px;
  }

  .paws-calc-subtitle {
    font-size: 14px;
    padding: 0;
  }

  .paws-calc-subtitle--right {
    text-align: left;
    margin-bottom: 16px;
  }

  .paws-calc-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .paws-calc-card {
    padding: 14px;
  }

  .paws-calc-cta {
    min-width: 100%;
    font-size: 12px;
   }

   .paws-calc-bubble {
    display: none;
   }

   .paws-calc-bubble-mobile {
    display: flex;
    padding: 20px 0 0;
   }
}
