html {
  width: 100%;
}

p {
  margin: 0px;
}

.calculator-hero p {
  padding-bottom: 0px !important;
  color: #007360;
  font-size: 18px;
}

.calculator-hero label {
  color: #007360 !important;
  line-height: 21px;
  font-weight: 600;
}

html input[type=range] {
  outline: 0;
  border: 0;
  border-radius: 500px;
  width: 100%;
  margin: 24px 0 16px;
  transition: box-shadow 0.2s ease-in-out;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  html input[type=range] {
    height: 20px;
    -webkit-appearance: none;
    background-color: #f0f7e7;
  }

  html input[type=range]::-webkit-slider-runnable-track {
    height: 40px;
    -webkit-appearance: none;
    color: #444;
    transition: box-shadow 0.2s ease-in-out;
  }

  html input[type=range]::-webkit-slider-thumb {
    width: 40px;
    -webkit-appearance: none;
    height: 40px;
    cursor: ew-resize;
    background: #fff;
    border-radius: 50%;
    transition: box-shadow 0.2s ease-in-out;
    position: relative;
    border: 4px solid black;
  }
}
html input[type=range]::-moz-range-progress {
  background-color: #27d9bc;
}

html input[type=range]::-moz-range-track {
  background-color: #27d9bc;
}

html input[type=range]::-ms-fill-lower {
  background-color: #27d9bc;
}

html input[type=range]::-ms-fill-upper {
  background-color: #27d9bc;
}

.slider-box {
  max-width: 750px;
  width: 100%;
}

.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-container > p, .journeys-container > p {
  margin: 15px 0px;
}

input:not(:active) + #range-value-container #range-value {
  opacity: 0;
  margin-top: -50px;
  pointer-events: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 0px;
  bottom: 1px;
  background-color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #27d9bc;
}

input:focus + .slider {
  box-shadow: 0 0 1px #27d9bc;
}

input:checked + .slider:before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-5 {
  margin-left: 5px !important;
}

.m-rl-8 {
  margin: 0px 8px;
}

.mb-20 {
  margin-bottom: 20px;
}

.m-tb-40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.w100 {
  width: 100%;
  margin-top:100px;
}

.f18 {
  font-size: 18px;
}

.center {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.green {
  color: #27d9bc;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

#min-fee-label {
  color: #8a8a8a;
  font-size: 14px;
  text-align: right;
  padding-top: 3px;
  cursor: pointer;
}

.min-fee-disclaimer {
  display: none;
}

#min-fee-label:hover + .min-fee-disclaimer {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  background: black;
  padding: 10px !important;
  border-radius: 18px;
  display: block;
  color: white;
  width: 168px;
  position: absolute;
  margin-top: 145px;
  margin-left: 123px;
}

.btn-enterprise {
  background: #27d9bc;
  border-radius: 6px;
  padding: 6px 18px;
  font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
  color: #fff !important;
  font-weight: 700;
  border: 2px solid #27d9bc;
  transition: 0.2s ease;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px !important;
  display: block;
  text-align: center;
  width: 150px;
  margin: 0 auto;
}

.btn-enterprise:hover {
  border: 2px solid #27d9bc;
  background: #27d9bc;
  color: white;
}

#enterprise-contact {
  max-width: 400px;
}

#employees-ammount {
  font-weight: 900;
  padding-bottom: 0px;
  color: black;
}

.employees-amount-container {
  margin-top: 25px;
}

#employees-price {
  background: #eaeaea;
  padding: 5px 10px;
  border-radius: 8px;
  margin-left: 20px;
  font-weight: bold;
}

.employees-total-container {
  display: flex;
  align-items: center;
  background: #f0f7e7;
  padding: 7px 0px;
  border-radius: 5px;
  margin-left: 15px;
  justify-content: center;
  width: 203px;
}

.employees-total-container p {
  margin: 0px;
  font-weight: 900;
  font-size: 16px;
}

.journeys-container {
  margin-top: 50px;
  text-align: center;
}

.journeys {
  justify-content: space-between;
  max-width: 434px;
  margin: 0 auto;
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.journeys button {
  background: white;
  border: 3px solid #007360;
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
}

.journeys button:hover {
  background: black;
  color: white;
}

.journey {
  margin-bottom: 20px;
}

.button-selected {
  background: #27d9bc !important;
  color: white;
}

.checkbox-container {
  margin-top: 40px;
  align-items: baseline;
  justify-content: space-between;
  width: 80%;
  align-content: center;
  margin-left: 10%;
}

.checkbox-container > div {
  max-width: 67px;
  width: 100%;
}

.checkbox-label {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  height: 24px;
  width: 24px;
  clear: both;
  background: black;
  border-radius: 6px;
  margin-bottom: 5px;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-label .checkbox-custom {
  position: absolute;
  top: 0px;
  left: 0px;
  margin-left: 2px;
  margin-top: 2px;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  border: 2px solid white;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background-color: #ba3a3a;
  border-radius: 5px;
  -webkit-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.checkbox-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.checkbox-pricing {
  font-size: 17px;
  font-weight: 900;
}

.pricing-container {
  padding-left: 30px;
  margin-bottom: 80px;
}

.pricing-box {
  background: #fcfff8;
  border-radius: 25px;
  padding: 25px;
  min-width: 360px;
  width: 100%;
}

.pricing-title-container {
  max-width: 375px;
  margin-bottom: 9px;
}

#no-journeys-label {
  text-align: center;
  margin-bottom: 18px;
}

hr {
  height: 2px;
  border: none;
  width: 100%;
  background: black;
}

.checkbox-sublabel {
  font-size: 15px !important;
  color: grey !important;
  margin-top: 0px;
}

.display-none {
  display: none;
}

.bold {
  font-weight: 900;
}

.hover-icon {
  width: 11px;
  margin-left: 1px;
}

@media (max-width: 1470px) {
  .et_builder_inner_content {
    padding-top: 70px !important;
  }

  .calculator-hero {
    flex-direction: column;
    align-items: center;
  }

  .pricing-container {
    padding-left: 0px !important;
    margin-top: 40px;
    max-width: 400px;
    width: 100%;
  }
}
/* HB form */
.hs-form-required {
  opacity: 0;
}

.hs-input {
  background: white !important;
  border: none;
  border-radius: 10px;
  text-align: center;
}

.hs-button {
  background: #27d9bc !important;
  border: #27d9bc !important;
  font-size: 15px !important;
  border-radius: 6px !important;
  font-family: "open sans" !important;
  margin-top: 0px !important;
}

.actions {
  margin-top: 0px !important;
  margin-bottom: 18px;
  padding: 17px 0px;
  text-align: center !important;
}

.hs-error-msgs label {
  padding-top: 14px !important;
  display: block !important;
  font-size: 12px !important;
  color: #d51717 !important;
  font-weight: 500 !important;
}

.legal-consent-container {
  background: none !important;
  margin-top: 10px !important;
  padding: 0px !important;
  margin-bottom: 0px !important;
}

@media (max-width: 1000px) {
  .monthly-box {
    margin-bottom: 20px;
  }

  .checkbox-container {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }

  .checkbox-container > div {
    flex-direction: row;
    max-width: 100%;
    padding-bottom: 13px;
  }

  .checkbox-label {
    margin: 0px 14px !important;
  }

  .slider-box {
    flex-direction: column !important;
  }

  .employees-total-container {
    margin-top: 20px;
  }

  .journeys {
    flex-direction: column !important;
  }

  #button-ce {
    margin: 10px 0px;
  }

  .pricing-box {
    min-width: 100%;
  }

  .time-container {
    flex-direction: column;
  }

  .calculator-checkboxes {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 4px !important;
  }
}
@media (max-width: 1170px) {
  .et_pb_row_0 {
    height: auto !important;
  }
}