.kcf-calc-container {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  margin: 2.5rem auto;
  padding: 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.kcf-calc-form-col {
  flex: 1 1 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.kcf-calc-form-col::after {
  content: "";
  position: absolute;
  top: -60px;
  bottom: -60px;
  right: -80px;
  width: 1px;
  background-color: #E0E1E5;
  z-index: 1;
}

.kcf-calc-summary-col {
  flex: 1 1 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-left: 80px;
}

.kcf-calc-form-col h2, .kcf-calc-form-col h3 {
  font-weight: 600;
  color: #222;
  margin-bottom: 0.7rem;
}

.kcf-calc-form-group {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.kcf-calc-reset-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}

.kcf-calc-reset-btn {
  background: transparent !important;
  border: none !important;
  color: #1693F2;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.kcf-calc-reset-btn svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.kcf-calc-reset-btn:hover {
  background: transparent !important;
  border: none !important;
  transform: translateY(-1px);
  font-weight: 500;
}
.kcf-calc-reset-btn:hover svg {
  opacity: 1;
}
.kcf-calc-reset-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .kcf-calc-reset-wrapper {
    position: static;
    margin-top: 0.5rem;
  }
  .kcf-calc-reset-wrapper .kcf-calc-reset-btn {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  .kcf-calc-reset-wrapper .kcf-calc-reset-btn svg {
    width: 12px;
    height: 12px;
  }
}
.kcf-calc-label {
  display: flex;
  align-items: center;
  color: rgb(47, 54, 71);
  font-size: 15px;
  font-weight: 500;
}

.kcf-calc-label-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tooltip {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}
.tooltip .open-tooltip {
  background: #e5e7eb;
  color: #888;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.2s;
}
.tooltip .open-tooltip:before {
  content: "?";
  font-weight: 600;
}
.tooltip .open-tooltip:hover {
  background: #888;
  color: white;
}
.tooltip .content {
  position: absolute;
  bottom: 100%;
  right: 0;
  transform: none;
  background: #222;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: normal;
  max-width: 500px;
  min-width: 350px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  opacity: 0 !important;
  visibility: hidden !important;
  display: none;
  transition: opacity 0.2s, visibility 0.2s;
  margin-bottom: 0.5rem;
}
.tooltip .content:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 9px;
  transform: none;
  border: 6px solid transparent;
  border-top-color: #222;
}
.tooltip:hover .content {
  opacity: 1 !important;
  visibility: visible !important;
  display: block;
}
.tooltip .content.active {
  opacity: 1 !important;
  visibility: visible !important;
  display: block;
}

@media (max-width: 768px) {
  .tooltip .content {
    position: fixed;
    bottom: auto;
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    z-index: 9999;
  }
  .tooltip .content:after {
    display: none;
  }
  .tooltip .content.active {
    display: block;
  }
  .tooltip:hover .content {
    display: block;
  }
}
.kcf-calc-tooltip {
  background: #e5e7eb;
  color: #888;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  cursor: pointer;
  margin-left: 0.3rem;
}

.kcf-calc-input, .kcf-calc-select {
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
  color: #222;
  outline: none;
  transition: border 0.2s;
}

.kcf-calc-input.kcf-currency-input {
  text-align: left;
}
.kcf-calc-input.kcf-currency-input::placeholder {
  color: #888;
  opacity: 0.7;
}

.kcf-calc-input.kcf-percentage-input {
  text-align: left;
}
.kcf-calc-input.kcf-percentage-input::placeholder {
  color: #888;
  opacity: 0.7;
}

.kcf-calc-input:focus, .kcf-calc-select:focus {
  border-color: #007cf0;
  background: #fff;
}

.kcf-calc-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.2em;
}

.kcf-calc-required {
  color: #e53935;
  margin-left: 0.2rem;
}

.kcf-calc-desc {
  font-size: 0.97rem;
  color: #888;
  margin-bottom: 0.2rem;
}

.kcf-calc-reset {
  color: #007cf0;
  font-size: 0.98rem;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 1rem;
}

.kcf-calc-btn {
  background: linear-gradient(90deg, #007cf0 0%, #00dfd8 100%);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s;
}

.kcf-calc-btn:hover {
  background: linear-gradient(90deg, #00dfd8 0%, #007cf0 100%);
}

@media (max-width: 768px) {
  .kcf-calc-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  .kcf-calc-tab {
    background: #e5e7eb;
    color: #222;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .kcf-calc-tab.active {
    background: #1693F2;
    color: #fff;
  }
  .kcf-calc-tab.pulse {
    animation: tabPulse 2s ease-in-out infinite;
  }
  @keyframes tabPulse {
    0%, 100% {
      background: #e5e7eb;
      color: #222;
    }
    50% {
      background: #1693F2;
      color: #fff;
    }
  }
  .kcf-calc-form-col,
  .kcf-calc-summary-col {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    min-height: 600px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    padding: 1.5rem 1rem;
  }
  .kcf-calc-form-col::after {
    display: none;
  }
  .kcf-calc-form-col {
    transform: translateX(0);
  }
  .kcf-calc-summary-col {
    transform: translateX(100vw);
    opacity: 0;
    pointer-events: none;
  }
  .kcf-calc-form-col.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
  }
  .kcf-calc-summary-col.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
  }
  .kcf-calc-form-col:not(.active) {
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
  }
  .kcf-calc-summary-col:not(.active) {
    transform: translateX(100vw);
    opacity: 0;
    pointer-events: none;
  }
  .kcf-calc-container {
    position: relative;
    margin-bottom: 130px;
    min-height: 800px;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0.1rem 2rem 0.1rem;
    background: #fff;
  }
  .kcf-calc-container::after {
    content: "";
    display: table;
    clear: both;
  }
  .kcf-calc-tabs-instruction {
    display: block;
    text-align: center;
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
  }
}
.kcf-summary-container {
  padding: 0 2rem;
  width: 100%;
  margin: 0px auto;
}

.kcf-summary-title {
  color: rgb(47, 54, 71);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px !important;
  color: #222;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0px;
}

.kcf-summary-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 25px;
  padding-bottom: 2.2rem;
  border-bottom: 1.5px solid #e5e7eb;
}
.kcf-summary-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.kcf-summary-row .tooltip {
  right: -30px;
}
.kcf-summary-row .icon_wrapper {
  padding: 5px 4px 2px 4px;
  border-radius: 5px;
  display: inline-block;
}
.kcf-summary-row .icon_wrapper.red {
  background-color: rgba(247, 47, 64, 0.1);
}
.kcf-summary-row .icon_wrapper.green {
  background-color: rgba(49, 179, 24, 0.1);
}
.kcf-summary-row .icon {
  font-size: 18px !important;
}
.kcf-summary-row .icon.red {
  color: #F72F40;
}
.kcf-summary-row .icon.green {
  color: #31B318;
}

.kcf-summary-row-inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.3rem;
}

.kcf-summary-icon {
  width: 26px;
  height: 26px;
  display: inline-block;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  position: relative;
}
x .kcf-summary-icon.kcf-icon-dollar.red {
  background-image: url("images/red_bkg.png");
}
x .kcf-summary-icon.kcf-icon-dollar.red::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: url("images/red_money.png") no-repeat center/contain;
  transform: translate(-50%, -50%);
}
.kcf-summary-icon.kcf-icon-dollar.green {
  background-image: url("images/green_bkg.png");
}
.kcf-summary-icon.kcf-icon-dollar.green::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: url("images/money.png") no-repeat center/contain;
  transform: translate(-50%, -50%);
}
.kcf-summary-icon.kcf-icon-clock {
  background-image: url("images/green_bkg.png");
}
.kcf-summary-icon.kcf-icon-clock::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: url("images/clock.png") no-repeat center/contain;
  transform: translate(-50%, -50%);
}

.kcf-icon-dollar {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  display: inline-block;
}
.kcf-icon-dollar.red {
  background-image: url("images/red_money.png");
}
.kcf-icon-dollar.green {
  background-image: url("images/money.png");
}
.kcf-icon-dollar::before {
  content: "";
}

.kcf-summary-icon.kcf-icon-dollar {
  color: unset;
}

.kcf-icon-clock {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  display: inline-block;
  background-image: url("images/clock.png");
}
.kcf-icon-clock::before {
  content: "";
}

.kcf-summary-icon.kcf-icon-clock {
  color: unset;
}

.kcf-summary-label {
  color: rgb(47, 54, 71);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kcf-summary-tooltip {
  background: #e5e7eb;
  color: #888;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  cursor: pointer;
  margin-left: 15px;
}

.kcf-summary-label .tooltip {
  position: static;
  display: inline-block;
  margin-left: 15px;
}

.kcf-summary-value {
  color: #F72F40;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  margin: 0;
}
.kcf-summary-value.current-annual-cost-of-lost-production {
  color: #F72F40;
}
.kcf-summary-value.expected-reduction-in-annual-costs-of-downtime, .kcf-summary-value.expected-annual-savings-in-cost-of-repairs {
  color: #31B318;
}
.kcf-summary-value.expected-hours-of-unplanned-downtime-avoided {
  color: #31B318;
}
.kcf-summary-value span {
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 0.3rem;
}

.kcf-summary-cta-row {
  border-bottom: none;
  margin-top: 10px;
  justify-content: center;
  padding-bottom: 0;
}

.kcf-summary-cta {
  display: inline-block;
  background: linear-gradient(90deg, #007cf0 0%, #00dfd8 100%);
  color: #fff;
  font-weight: 600;
  padding: 1.1rem 2.2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 124, 240, 0.08);
}
.kcf-summary-cta:hover {
  background: linear-gradient(90deg, #00dfd8 0%, #007cf0 100%);
}

@media (max-width: 768px) {
  .kcf-summary-container {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .kcf-summary-title {
    font-size: 1.2rem;
    padding-bottom: 0.7rem;
    text-align: center;
  }
  .kcf-summary-row {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .kcf-summary-value {
    font-size: 1.3rem;
    min-width: 70px;
    margin: 0;
  }
  .kcf-summary-cta {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
}
.summary-sub-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.kcf-calc-under-label {
  color: rgb(47, 54, 71);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 1.4;
}

.kcf-summary-cta-block {
  background: linear-gradient(90deg, #0d47a1 0%, #0091ff 50%, #3bb6f7 100%);
  border-radius: 20px;
  color: #fff;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.kcf-summary-cta-block h3, .kcf-summary-cta-block .cta-title {
  color: #fff;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: left;
}
.kcf-summary-cta-block .cta-action {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: text-decoration 0.2s;
}
.kcf-summary-cta-block .cta-action:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .kcf-summary-cta-block {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .kcf-summary-cta-block h3, .kcf-summary-cta-block .cta-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .kcf-summary-cta-block .cta-action {
    font-size: 1rem;
  }
}
.kcf-loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #1693F2;
  border-radius: 50%;
  animation: kcfSpin 1s linear infinite;
}

@keyframes kcfSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=kcf-calc.css.map */
