:root {
  --max-height: 26.875rem;
  --main-color: #00c145;
}

body {
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 400;
}

h1, h2, h3 {
  color: black;
}

.max-height {
  max-height: var(--max-height)
}

.slider {
  -webkit-appearance: none;
  /* Remove the default style */
  background: -webkit-linear-gradient(var(--main-color), var(--main-color)) no-repeat, #f7f7f7;
  background-size: 0 100%;
  width: 100%;
  height: 3px;
  border-radius: 0.938rem;
}


.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0.938rem;
  height: 0.938rem;
  background: white;
  border-radius: 50%;
  border: 0.313rem solid var(--main-color);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  border: 0.375rem solid var(--main-color);
  background-color: white;
  cursor: pointer;
}
.slider::-moz-range-progress {
  background-color: var(--main-color);
}

.slider-input {
  color: var(--main-color);
  border: none;
  overflow: visible;
}

#result-div {
  background-color: var(--main-color);
}

.button-styled {
  border: 1px solid var(--main-color);
  font-weight: bold;
  color: var(--main-color);
  background-color: white;
  cursor: pointer;
}

.contact-button {
  background-color: #f7f7f7;
  border: none;
}

#approvalWrapper label::before {
  content: "";
  width: 1.0em;
  height: 1.0em;
  border: 0.1em solid grey;
  display: block;
  margin-right: 0.313rem;
  float: left;
  margin-bottom: 2.5rem;
  margin-top: 0.313rem;
  box-sizing: border-box;
}
#approvalWrapper input[type='checkbox'] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
#approvalWrapper input[type='checkbox']:checked + label:before {
  border: 0.3rem solid var(--main-color);
}


.fs-7 {
  font-size: 0.8rem !important;
}

.fs-8 {
  font-size: 0.7rem !important;
}

#compare, #contactMe {
  line-height: 2.9;
}

.text-ug-grey {
  color: grey;
}

.text-ug-main {
  color: var(--main-color);
}

.text-white-opacity {
  color: rgba(255, 255, 255, 0.8);
}

.border-grey {
  border-color: grey !important;
}

.border-bottom-grey {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.border-dark-opacity {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pt-4-4 {
 padding-top: 2.4rem !important;
}

.pb-4-2 {
  padding-bottom: 2rem !important;
 }

#calc-title {
  position: relative;
}
#calc-title::after {
  content: "";
  display: block;
  border-bottom: 0.313rem solid var(--main-color);
  width: 4rem;
  margin-top: 1rem;
}


@media (max-width: 768px) and (min-width: 577px) {

  #contact-me {
      margin-top: 4.4rem;
  }
}

@media(max-width: 576px ) {
  #contact-form {
    padding-top: 10px;
  }
}

