/* RESPONSIVE */
/* Spacing */
/* Fonts */
/* Animation */
.calculator-gf {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  height: 0;
}

section.calculator {
  position: relative;
}

[x-cloak] {
  display: none !important;
}

.calculator .heading {
  background: #003e51;
  border-radius: 20px 20px 0 0;
}

.calculator .heading h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  color: #41b6e6;
  font-size: 1.75rem;
  font-weight: bold;
  height: auto;
  line-height: 40px;
  text-align: center;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .calculator .heading h2 {
    font-size: 2.25rem;
    height: 70px;
    line-height: 70px;
  }
}

@media screen and (max-width: 767px) {
  .calculator:not(.calculator.modal) {
    margin: 25px 0 125px 0;
  }
  .calculator .container {
    padding: 0 0;
  }
}

.calculator-tabs {
  position: relative;
  background: #fff;
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.calculator-tabs .tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  background-image: none;
  counter-reset: tab;
  height: 50px;
}

.calculator-tabs .tabs li {
  background-color: #f2f2f2;
  color: #323232;
  float: left;
  padding: 0;
  font-weight: bold;
  width: 100%;
  height: 50px;
  line-height: 50px;
  position: relative;
  text-align: center;
  counter-increment: tab;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  list-style: none;
  background-image: none;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tabs li {
    /*color: #404040;*/
    width: calc(100% / 4);
    visibility: visible;
    opacity: 1;
    height: 60px;
    line-height: 60px;
    position: unset;
    cursor: pointer;
  }
  .calculator-tabs .tabs li span {
    display: none;
  }
}

.calculator-tabs .tabs li:before {
  content: '';
  width: 50px;
  height: 100%;
  float: left;
  background-color: #d3d3d3;
  background-image: url(../images/chevron-blk.svg);
  background-repeat: no-repeat;
  background-size: auto 15px;
  background-position: 50%;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tabs li:before {
    width: 120px;
  }
}

.calculator-tabs .tabs li.current {
  background-color: #fff;
  color: #003e51;
  visibility: visible;
  opacity: 1;
  font-size: 17px;
}

.calculator-tabs .tabs li.current:before {
  content: counter(tab) ".";
  background-color: #41b6e6;
  background-image: none;
  color: #000;
}

.calculator-tabs .controls {
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .controls {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
  }
}

.calculator-tabs .controls li {
  position: absolute;
  width: 100%;
  background: #00BCE7;
  color: #fff;
  font-weight: bold;
}

.calculator-tabs .controls li.tab-link {
  margin-left: 0;
  padding-left: 0 !important;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .controls li.tab-link {
    display: none;
  }
}

.calculator-tabs .controls li.tab-submit input {
  border: none;
  background: #00bce7;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.calculator-tabs .controls li.tab-submit input:disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.calculator-tabs .controls li:before {
  display: none;
}

.calculator-tabs .controls li.current {
  visibility: visible;
  opacity: 1;
}

.calculator-tabs .controls li.disabled {
  display: none;
}

.calculator-tabs .controls li.prev, 
.calculator-tabs .controls li.next {
  width: 50px;
  height: 100%;
  background: #003e51;
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  text-indent: -999em;
}

.calculator-tabs .controls li.prev:before, .calculator-tabs .controls li.next:before {
  content: '';
  background-image: url('../images/chevron.svg');
  background-repeat: no-repeat;
  background-size: auto 15px;
  background-position: 50%;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  inset: 0;
  margin: auto !important;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .controls li.prev, .calculator-tabs .controls li.next {
    width: 70px;
    border: 0;
    position: absolute;
    z-index: 2;
  }
  .calculator-tabs .controls li.prev:before, .calculator-tabs .controls li.next:before {
    background-size: auto 30px;
    width: 30px;
    height: 30px;
  }
  .calculator-tabs .controls li.prev.disabled, .calculator-tabs .controls li.next.disabled {
    background-color: #f4f4f4;
  }
}

.calculator-tabs .controls li.prev.disabled:before, .calculator-tabs .controls li.next.disabled:before {
  /*background-image: url(../images/chevron-blk.svg);*/
}

.calculator-tabs .controls li.prev:before {
  transform: rotate(180deg);
}

.calculator-tabs .controls li.prev.show {
  display: block;
}

.calculator-tabs .controls li.next {
  right: 0;
  left: auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .controls li.next.show {
    display: block;
  }
}

.calculator-tabs .fuel {
  font-size: 1rem;
  padding-top: 0;
}

.calculator-tabs .fuel .option {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.calculator-tabs .fuel .option label {
cursor: pointer;
    color: #323232;
  font-weight: normal;
}

.calculator-tabs .fuel .option input {
  position: relative;
  width: 26px;
  height: 26px;
  margin: 0 0.5rem 0 0;
  padding: 0;
  border: 2px solid rgba(102, 106, 107, 0.5);
  border-radius: 100%;
  accent-color: #003e51;
}

.calculator-tabs .fuel .option input:checked:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.0495 20.9505L26.9282 3.07184L24.8069 0.950518L6.92817 18.8292L2.12132 14.0224L0 16.1437L4.80686 20.9505L6.92818 23.0718L9.0495 20.9505Z' fill='%2300BCE7'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 28px;
  height: 22px;
  top: -6px;
  left: 3px;
}

.calculator-tabs .fuel .option input:checked + label {
  color: #003e51;
    font-weight: 700;
}

.calculator-tabs .fuel .option input:disabled + label {
  color: rgba(102, 106, 107, 0.5);
}

@media screen and (min-width: 768px) {
  .calculator-tabs .fuel {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
  }
  .calculator-tabs .fuel h3 {
    width: 100%;
  }
  .calculator-tabs .fuel .fuel-select {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
  }
}

.calculator-tabs .tab-content {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content {
    margin: 0;
  }
}

.calculator-tabs .tab-content .content {
  min-height: 200px;
  position: relative;
  z-index: 1;
  /*background: url(../images/calc-bg.png) 0 bottom no-repeat;*/
  border-top: 0;
  padding: 0 30px 30px 30px;
  /* Final Details Tab */
  /* Car select = Tab 1 */
  /* Range / Select - Tab 2 */
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content {
    padding: 60px 120px;
    height: 420px;
  }
}

.calculator-tabs .tab-content .content h3 {
  font-size: 1.25rem;
  padding-bottom: 10px;
  font-weight: 500;
  display: none;
  text-align: left;
  font-weight: bold;
  color: #000;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content h3 {
    display: block;
    width: 100%;
  }
}

.calculator-tabs .tab-content .content .disclaimer {
  font-size: 0.75rem;
  font-weight: 500;
  position: absolute;
  bottom: 60px;
  left: 120px;
  display: none;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .disclaimer {
    display: block;
  }
}

.calculator-tabs .tab-content .content .disclaimer a {
  color: inherit;
}

.calculator-tabs .tab-content .content .disclaimer a:hover {
  text-decoration: none;
}

.calculator-tabs .tab-content .content .details .row .row {
  padding: 0 10px;
}

.calculator-tabs .tab-content .content .details .row .row .col-md-12,
.calculator-tabs .tab-content .content .details .row .row .col-md-6 {
  float: left;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .details .row .row .col-md-12,
.calculator-tabs .tab-content .content .details .row .row .col-md-6 {
    padding: 0 10px;
  }
}

.calculator-tabs .tab-content .content .details .col-md-6 {
  position: relative;
}

.calculator-tabs .tab-content .content .details .valid-item {
  font-size: 0.8em;
  color: red;
  position: absolute;
  opacity: 0;
}

.calculator-tabs .tab-content .content .details .valid-email {
  top: 52px;
  left: 15px;
}

.calculator-tabs .tab-content .content .details .valid-phone {
  top: 122px;
  left: 15px;
}

.calculator-tabs .tab-content .content .details textarea, .calculator-tabs .tab-content .content .details input[type=text], .calculator-tabs .tab-content .content .details input[type=email], .calculator-tabs .tab-content .content .details input[type=tel], .calculator-tabs .tab-content .content .details select {
  background: #fff;
  font-size: 0.875rem;
  color: #323232;
  font-weight: 600;
  line-height: 51px;
  padding: 0px 15px;
  margin-bottom: 15px;
  border: 2px solid #e9e9e9;
  width: 100%;
  height: 55px;
  border-radius: 0px;
  font-weight: 700;
}

.calculator-tabs .tab-content .content .details textarea::placeholder, .calculator-tabs .tab-content .content .details input[type=text]::placeholder, .calculator-tabs .tab-content .content .details input[type=email]::placeholder, .calculator-tabs .tab-content .content .details input[type=tel]::placeholder, .calculator-tabs .tab-content .content .details select::placeholder {
  color: #8b8b8b;
  opacity: 1;
}

.calculator-tabs .tab-content .content .details select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../images/chevron-blk.svg);
  background-repeat: no-repeat;
  background-size: auto 15px;
  background-position: center right 15px;
  color: #8b8b8b;
}

.calculator-tabs .tab-content .content .details select option {
  font-weight: 400;
}

.calculator-tabs .tab-content .content .details textarea {
  text-align: left;
  line-height: 1.6;
  padding: 15px;
}

.calculator-tabs .tab-content .content .details .summary h3 {
  color: #003e51;
  display: block;
  text-align: center;
  padding-bottom: 20px;
  margin: 20px 0;
  border-bottom: 2px solid #e9e9e9;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .details .summary h3 {
    margin-top: 0;
    text-align: right;
    color: #666a6b;
  }
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .details .summary {
    text-align: right;
  }
}

@media screen and (min-width: 1024px) {
  .calculator-tabs .tab-content .content .details .summary {
    padding-left: 100px;
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.calculator-tabs .tab-content .content .details .summary .submit-container {
  position: relative;
}

.calculator-tabs .tab-content .content .details .summary .submit-container .submit-spinner {
  display: none;
  background: url(../images/spinner-icon.png) no-repeat;
  background-position: center;
  width: 25px;
  background-size: contain;
  height: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
}

.calculator-tabs .tab-content .content .details .summary .submit-container .submit-spinner.show {
  display: block;
}

.calculator-tabs .tab-content .content .details .summary .submit-container input[type=button]::after {
  content: "\f021";
  font-family: FontAwesome;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
}

.calculator-tabs .tab-content .content .details .summary .submit-container input[type=button] {
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
  background: #41B6E6;
  color: #FFF;
  display: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
}
.calculator-tabs .tab-content .content .details .summary .submit-container input[type=button]:hover {
  color: #000;
}
@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .details .summary .submit-container input[type=button] {
    display: block;
  }
}

.calculator-tabs .tab-content .content .details .summary .submit-container input[type=button]:disabled {
  opacity: 0.5;
  cursor: default;
}

.calculator-tabs .tab-content .content .details .summary table {
  width: 100%;
  margin-bottom: 40px;
}

.calculator-tabs .tab-content .content .details .summary table tr td {
  width: 50%;
  font-size: 1.25rem;
  padding: 5px 0;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .details .summary table tr td {
    text-align: right;
    font-size: inherit;
  }
}

.calculator-tabs .tab-content .content .details .summary table tr td + td {
  font-weight: 700;
  text-align: right;
  color: #003e51;
}

.calculator-tabs .tab-content .content .car-select .option {
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0 auto 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option {
    width: 25%;
    float: left;
    padding: 35px 0;
    margin: 0;
    max-width: 100%;
    text-align: center;
  }
}

.calculator-tabs .tab-content .content .car-select .option input {
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  width: 70px;
  height: 70px;
  display: inline-block;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  position: relative;
}
.calculator-tabs .tab-content .content .car-select .option:before {
    content: "";
    width: 70px;
    height: 70px;
    top: 35px;
    left: 50%;
    display: block;
    position: absolute;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option:before {
    width: 100px;
    height: 100px;
  }
  .calculator-tabs .tab-content .content .car-select .option input {
    margin: 0;
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .calculator-tabs .tab-content  {
    width: 100%;
  }

  .calculator-tabs .tab-content .row .col-md-6,
  .calculator-tabs .tab-content .row .col-md-12 {
    width: 100%;
  }

  .calculator-tabs .tab-content .content .car-select .option {
    display: flex;
    align-items: center;
  }

  .calculator-tabs .tab-content .content .car-select .option:before {
    background-size: calc(100% - 10px) auto;
    background-position: 50% 45%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }

  .calculator-tabs .tab-content .content .car-select .option label {
    padding-top: 0;
  }

  .calculator-tabs .tab-content .content .mobile-rangecontainer .bar-box select {
    width: 50% !important;
  }

  .calculator-tabs .tab-content .content .mobile-rangecontainer .bar-box .select2 {
    width: 50% !important;
    padding-left: 15px;
    border-left: 2px solid #e9e9e9;
  }

  .calculator-tabs .tab-content .content .mobile-rangecontainer label {
    margin-bottom: 0;
  }
}

.calculator-tabs .tab-content .content .car-select .option:has(.small-medium-car):before { background-image: url(../images/icon-1.jpg); }
.calculator-tabs .tab-content .content .car-select .option:has(.large-car):before { background-image: url(../images/icon-2.jpg); }
.calculator-tabs .tab-content .content .car-select .option:has(.allwd-car):before { background-image: url(../images/icon-3.jpg); }
.calculator-tabs .tab-content .content .car-select .option:has(.sports-luxury-car):before { background-image: url(../images/icon-4.jpg); }
.calculator-tabs .tab-content .content .car-select .option:has(input:checked):before {
    box-shadow: 0 0 10px #00000033;
    border-radius: 10px;
}
.calculator-tabs .tab-content .content .car-select .option input:checked.small-medium-car {
  background: url(../images/icon-small-car-active.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option input:checked.small-medium-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option input:checked.medium-car {
  background: url(../images/icon-medium-car-active.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option input:checked.medium-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option input:checked.large-car {
  background: url(../images/icon-large-car-active.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option input:checked.large-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option input:checked.allwd-car {
  background: url(../images/icon-4wd-car-active.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option input:checked.allwd-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option input:checked.sports-luxury-car {
  background: url(../images/icon-lux-car-active.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option input:checked.sports-luxury-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option input:checked + label {
  color: #003e51;
    font-weight: bold;
}

.calculator-tabs .tab-content .content .car-select .option label {
  display: inline-block;
  font-size: 1.15rem;
  vertical-align: top;
  padding: 10px 0 0 20px;
  color: #323232;
  cursor: pointer;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option label {
    /*font-size: 1.625rem;*/
    display: block;
    padding: 10px 0 0;
  }
}

.calculator-tabs .tab-content .content .car-select .option .small-medium-car {
  background: url(../images/icon-small-car.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option .small-medium-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option .medium-car {
  background: url(../images/icon-medium-car.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option .medium-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option .large-car {
  background: url(../images/icon-large-car.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option .large-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option .allwd-car {
  background: url(../images/icon-4wd-car.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option .allwd-car {
    background-size: 100%;
  }
}

.calculator-tabs .tab-content .content .car-select .option .sports-luxury-car {
  background: url(../images/icon-lux-car.png) no-repeat;
  background-size: 70px auto;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .car-select .option .sports-luxury-car {
    background-size: 100%;
  }
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .mobile-rangecontainer {
    display: none;
  }
}

.calculator-tabs .tab-content .content .mobile-rangecontainer .bar-box {
  width: 100%;
  border: 2px solid rgba(102, 106, 107, 0.7);
  position: relative;
  box-sizing: border-box;
  margin-bottom: 15px;
  height: 60px;
  display: flex;
  align-items: center;
}

.calculator-tabs .tab-content .content .mobile-rangecontainer label {
  color: #666a6b;
  width: 50%;
  float: left;
  font-size: 1rem;
  line-height: 35px;
  text-align: center;
}

.calculator-tabs .tab-content .content .mobile-rangecontainer select {
  width: 50%;
  height: 100%;
  border: none;
  background: none;
  padding: 0 0 0 15px;
  border-left: 2px solid #e9e9e9;
  color: #003e51;
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.calculator-tabs .tab-content .content .rangecontainer {
  display: none;
}

@media screen and (min-width: 768px) {
  .calculator-tabs .tab-content .content .rangecontainer {
    display: block;
  }
}

.calculator-tabs .tab-content .content .rangecontainer label {
  display: block;
  margin-bottom: 10px;
      font-weight: bold;
    color: #000000;
}

.calculator-tabs .tab-content .content .rangecontainer input {
  background: none;
}

.calculator-tabs .tab-content .content .rangecontainer .rangeslider {
  background: #e9e9e9;
  height: 7px;
  width: calc(100% - 200px);
  display: inline-block;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.calculator-tabs .tab-content .content .rangecontainer .rangeslider__fill {
  background: #41b6e6;
  height: 7px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.calculator-tabs .tab-content .content .rangecontainer .rangeslider__handle {
  background: #fff;
  border: 5px solid #003e51;
  width: 30px;
  height: 30px;
  top: -10px;
  touch-action: pan-y;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.calculator-tabs .tab-content .content .rangecontainer .bar {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-bottom: 15px;
}

.calculator-tabs .tab-content .content .rangecontainer .value {
  font-size: 1.5rem;
  color: #003e51;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  width: 170px;
  font-weight: bold;
  padding-top: 0;
}

.calculator-tabs .tab-response {
  text-align: center;
  color: #003e51;
  padding: 0 0 3rem 0;
}

.calculator-tabs .tab-response h2, .calculator-tabs .tab-response p {
  font-weight: 700;
}

.calculator-tabs .tab-response h2:last-of-type {
  margin-bottom: 2rem;
}

.calculator-tabs .tab-response p {
  margin-bottom: 0;
  font-size: 20px;
}

.calculator-tabs .tab-response .wp-block-buttons {
  margin-top: 2rem;
}

.calculator-tabs .tab-response .wp-block-buttons a:hover {
  background-color: #00BCE7;
}

.calculator-tabs .tab-response .content {
  position: relative;
  z-index: 1;
}

.calculator-tabs .tab-response .content .message {
  padding-inline: 1rem;
  margin: 1rem auto 0 auto;
  font-weight: 500;
  font-size: 1rem;
  max-width: 800px;
}

.calculator-tabs .tab-response .calendly-inline-widget {
  height: 900px;
}

.calculator-tabs .tab-response .calendly-button {
  display: none;
}

@media screen and (max-width: 767px) {
  form.thecalculator {
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
}
  .calculator-tabs .tab-response .calendly-inline-widget {
    display: none;
  }
  .calculator-tabs .tab-response .calendly-button {
    display: block;
  }
  .calculator-tabs,
  .calculator .heading{
    border-radius: 0;
  }
}

@media screen and (min-width: 1024px) {
  .calculator-tabs .tab-response {
    padding: 5rem 0;
  }
  .calculator-tabs .tab-response .calendly-inline-widget {
    height: 660px;
  }
}

p.thankyou-results {
  font-size: 1.2em !important;
  padding: 15px 0;
}

span.thankyou-final-savings {
  font-weight: bold !important;
  padding-bottom: 25px;
  border-bottom: 2px solid white;
  height: 40px;
  max-width: 300px !important;
}

.wp-block-cover.aligncenter.calculator-on-page-response {
  display: none;
}

.calculator-thank-you .has-text-align-center {    
    color: #000;
}
.calculator-thank-you h1.has-text-align-center {
    color: #003e51;
    font-weight: bold;
}
.calculator-thank-you .wp-block-buttons .wp-block-button__link {    
    background: #41b6e6;
    color: #FFF;
    text-decoration: none;
}