@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap');
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #000000;
  overflow-x: hidden;
}

h2 {
  font-family: 'Gabarito', sans-serif;
}

section.totalCostofOwnershipCalculator .title {
  background-image: url('../jpg/bg-imagen_ai.jpg');
  background-size: auto 150%;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 325px;
  padding-top: 30px;
}

 

section.totalCostofOwnershipCalculator .estimatedTotalCost > p {
  color: #000000;
}
section.totalCostofOwnershipCalculator .calculatorForm p {
  color: #000000;
}

section.totalCostofOwnershipCalculator .title p {
  margin-top: 35px;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator .title p {
    width: 60%;
    max-width: 665px;
  }
}

section.totalCostofOwnershipCalculator form {
  background-color: #ffffff;
  color: #000000;
  display: grid;
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator form {
    grid-template-areas: 'user data' 'estimates estimates';
    grid-template-columns: 36% 64%;
  }
}

section.totalCostofOwnershipCalculator .calculatorForm,
section.totalCostofOwnershipCalculator .calculatorTables {
  padding: 40px 20px;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator .calculatorForm,
  section.totalCostofOwnershipCalculator .calculatorTables {
    padding: 40px;
  }

  section.totalCostofOwnershipCalculator .calculatorForm {
    border-right: 1px solid #000000;
    grid-area: user;
    padding-right: 24px;
  }

  section.totalCostofOwnershipCalculator .calculatorTables {
    padding-left: 24px;
  }

  section.totalCostofOwnershipCalculator .estimatedTotalCost {
    grid-area: estimates;
  }
}

section.totalCostofOwnershipCalculator dl dt,
section.totalCostofOwnershipCalculator dl dd {
  position: relative;
}

section.totalCostofOwnershipCalculator dl dt {
  display: flex;
  justify-content: space-between;
}

section.totalCostofOwnershipCalculator dl dd:not(:last-child) {
  margin-bottom: 38px;
}

section.totalCostofOwnershipCalculator .adjustedCapitalExpense {
  background-color: #86888e;
}

section.totalCostofOwnershipCalculator .hiddenOperationalExpense {
  background-color: #565861;
}

section.totalCostofOwnershipCalculator .yourEstimatedTotalCost {
  background-color: #163489;
}

section.totalCostofOwnershipCalculator .trueCost4EveryDollar {
  background-color: #ff0092;
}

section.totalCostofOwnershipCalculator .adjustedCapitalExpense,
section.totalCostofOwnershipCalculator .hiddenOperationalExpense,
section.totalCostofOwnershipCalculator .yourEstimatedTotalCost,
section.totalCostofOwnershipCalculator .trueCost4EveryDollar {
  padding: 24px 32px;
  width: 100%;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator .yourEstimatedTotalCost,
  section.totalCostofOwnershipCalculator .trueCost4EveryDollar {
    width: 60%;
    max-width: 50vw;
  }
}

section.totalCostofOwnershipCalculator
  .hiddenOperationalExpense
  table
  tr:nth-child(even)
  td,
section.totalCostofOwnershipCalculator
  .adjustedCapitalExpense
  table
  tr:not(:last-child)
  td,
section.totalCostofOwnershipCalculator
  .yourEstimatedTotalCost
  table
  tr:not(:last-child)
  td {
  padding-bottom: 16px;
}

section.totalCostofOwnershipCalculator .adjustedCapitalExpense {
  margin-bottom: 36px;
}

section.totalCostofOwnershipCalculator .estimatedTotalCost {
  border-top: 1px solid #000000;
  padding: 40px 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.totalCostofOwnershipCalculator .estimatedTotalCost > p {
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator .estimatedTotalCost {
    gap: 40px;
  }

  section.totalCostofOwnershipCalculator .estimatedTotalCost > p {
    width: 60%;
    max-width: 50vw;
  }
}

section.totalCostofOwnershipCalculator .estimatedTotalCost .info {
  align-self: flex-end;
}

section.totalCostofOwnershipCalculator table {
  color: #ffffff;
  font-family: 'Gabarito';
  width: 100%;
}

section.totalCostofOwnershipCalculator table h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}

section.totalCostofOwnershipCalculator table p {
  font-size: 1.1rem;
}

section.totalCostofOwnershipCalculator table td:last-child {
  width: 32px;
}

section.totalCostofOwnershipCalculator table .description-total p:last-child {
  text-align: right;
}

section.totalCostofOwnershipCalculator
  table
  .description-total:not('.bg')
  p:last-child {
  transform: translateY(-50%);
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator table .description-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  section.totalCostofOwnershipCalculator table .description-total p {
    white-space: nowrap;
  }

  section.totalCostofOwnershipCalculator table .description-total p:last-child {
    order: 3;
  }
}

section.totalCostofOwnershipCalculator table .description-total.lg {
  border-top: 1px solid white;
  align-items: flex-end;
  padding-top: 16px;
  margin-bottom: 0;
}

section.totalCostofOwnershipCalculator table .description-total.lg.no-info {
  margin-right: 32px;
}

section.totalCostofOwnershipCalculator
  table
  .description-total.lg
  p:first-child {
  font-size: 24px;
  font-weight: 500;
}

section.totalCostofOwnershipCalculator
  table
  .description-total.lg
  p:last-child {
  font-weight: 700;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator
    table
    .description-total.lg
    p:last-child {
    font-size: 36px;
  }
}

@media (width > 1280px) {
  section.totalCostofOwnershipCalculator
    table
    .description-total.lg
    p:last-child {
    font-size: 48px;
  }
}

section.totalCostofOwnershipCalculator
  table
  .description-total.lg
  p:first-child,
section.totalCostofOwnershipCalculator table .description-total.lg:after {
  transform: translateY(-6px);
}

section.totalCostofOwnershipCalculator .info {
  background-color: #e6e7e8;
  color: #000000;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  margin-left: 12px;
  font-size: 14px;
  cursor: pointer;
}

.tippy-tooltip.nile-theme {
  background-color: #e6e7e8;
  border-radius: 0;
  color: #000;
  font-family: 'Gabarito';
  font-size: 12px;
  filter: drop-shadow(2px 2px 0px black);
}

.tippy-tooltip.nile-theme[data-animatefill] {
  background-color: transparent;
}

.tippy-tooltip.nile-theme .tippy-backdrop {
  background-color: #e6e7e8;
}

.tippy-tooltip.nile-theme[x-placement^='bottom'] .tippy-arrow {
  border-bottom-color: #e6e7e8;
}

section.totalCostofOwnershipCalculator .trueCost4EveryDollar {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  padding-top: 32px;
}

section.totalCostofOwnershipCalculator .trueCost4EveryDollar p {
  font-size: 32px;
  font-weight: 700;
}

section.totalCostofOwnershipCalculator .trueCost4EveryDollar p:nth-child(2) {
  display: block;
  font-family: 'Gabarito';
  font-size: 110px;
}

section.totalCostofOwnershipCalculator button {
  appearance: none;
  border: 0;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

section.totalCostofOwnershipCalculator button.reset {
  background-color: transparent;
  color: #ff0092;
  margin-bottom: 36px;
}

section.totalCostofOwnershipCalculator button.reset svg {
  display: block;
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  margin-right: 6px;
}

section.totalCostofOwnershipCalculator button.submit {
  border: 2px solid #ff0092;
  color: #ff0092;
  padding: 16px 64px;
  background: transparent;
  font-family: 'Gabarito';
  font-size: 24px;
  margin: auto;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator button.submit {
    width: auto;
  }
}

section.totalCostofOwnershipCalculator #hubspotFormCalc {
  width: 100%;
}

@media (width > 992px) {
  section.totalCostofOwnershipCalculator #hubspotFormCalc {
    max-width: 60vw;
  }
}

.range-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 48px 0 0 0;
}

.range-slider input[type='range'] {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: transparent;
  outline: none;
  float: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.range-slider input[type='range']::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3964f9;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider input[type='range']::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1e57f7;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}

.range-slider input[type='range']::-moz-range-thumb:hover,
.range-slider input[type='range']:active::-moz-range-thumb {
  background: #fff;
}

::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}

.range-slider .value {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -mozlex-wrap: wrap;
  -webkit-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
}

.range-slider .value > div {
  font-size: 14px;
}

.range-slider {
  position: relative;
}

.range-slider .range-output {
  background-color: white;
  font-weight: 300;
  position: absolute;
  bottom: 100%;
  transform: translate(-50%, -8px);
}

.range-slider .range-output span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #3964f9;
  padding: 7px 10px;
  line-height: 1;
}

.range {
  width: 100%;
  border-radius: 30px;
}

.calc-btn {
  color: #ffffff;
  background-color: #ff0092;
  border-color: #ff0092;
  display: inline-block;
  padding: 15px 24px;
  border-width: 1px;
  border-style: solid;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.calc-btn:hover {
  background-color: transparent;
  color: #ff0092;
}

section .banner {
  margin-bottom: 50px;
  background-color: #ff0092;
  padding: 20px;
  text-align: center;
  font-weight: 500;
}
section .banner a {
  color: #ffffff;
  font-weight: lighter;
  text-decoration: underline;
}
