* {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  font-family: 'Roboto', sans-serif;
}

.title {
  margin-top: 55px;
  width: 100vw;
  padding: 30px 20px;
  background-color: #EFF0EB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.title h1 span {
  color: #48C353;
}

.title p {
  color: #48C353;
  font-weight: 500;
  font-size: 1.4rem;
}

section.ccpa h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 55px;
  margin-top: 40px;
}

section.ccpa .form {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 60px;
  -webkit-box-shadow: 0 0 25px #e2ebef;
          box-shadow: 0 0 25px #e2ebef;
  margin-bottom: 100px;
}

section.ccpa .form > p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}

section.ccpa .form select {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #D9EAF2;
  outline: 0;
  margin-bottom: 20px;
  font-size: 16px;
}

section.ccpa .form select:focus {
  outline: 0;
  border: 1px solid #48C353;
}

section.ccpa .form select option {
  font-size: 16px;
  max-width: 100%;
}

section.ccpa .form > label {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
      grid-template-columns: 20px 1fr;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 30px;
  margin-bottom: 5px;
}

section.ccpa .form > label input[type="checkbox"] {
  display: block;
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  position: relative;
}

section.ccpa .form > label input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #838f95;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}

section.ccpa .form > label input[type="checkbox"]:checked::after {
  content: '\2713';
  color: #48C353;
  border: 1px solid #48C353;
  font-size: 16px;
}

section.ccpa .form > label p {
  font-size: 16px;
}

section.ccpa .form > label:last-child {
  margin-bottom: 30px;
}

section.ccpa .form p.last {
  margin-top: 20px;
}

section.ccpa .form .inputs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  row-gap: 40px;
  margin-top: 50px;
}

section.ccpa .form .inputs input {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 261px;
          flex: 1 1 261px;
  max-width: 100%;
  border: none;
  outline: 0;
  border-bottom: 1px solid #e2ebef;
  padding: 5px 20px;
  font-size: 16px;
  color: #4a4a4a;
}

section.ccpa .form .inputs input.address {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 800px;
          flex: 1 1 800px;
  max-width: 100%;
}

section.ccpa .form .inputs input:focus {
  border-bottom: 1px solid #48C353;
  outline: 0px;
}

section.ccpa .form .inputs input::-webkit-input-placeholder {
  font-size: 16px;
  color: #8E8F8F;
}

section.ccpa .form .inputs input:-ms-input-placeholder {
  font-size: 16px;
  color: #8E8F8F;
}

section.ccpa .form .inputs input::-ms-input-placeholder {
  font-size: 16px;
  color: #8E8F8F;
}

section.ccpa .form .inputs input::placeholder {
  font-size: 16px;
  color: #8E8F8F;
}

section.ccpa .form button {
  margin-top: 40px;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 10px;
  border: none;
  outline: 0;
  color: #EFF0EB;
  background-color: #48C353;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

section.ccpa .form button:focus {
  outline: 0;
  border: 0;
}

section.ccpa .form button:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

@media only screen and (max-width: 500px) {
  section.ccpa .form {
    padding: 20px;
  }
  section.ccpa .form > p {
    font-size: 16px;
  }
  section.ccpa .form > label p {
    font-size: 14px;
  }
  section.ccpa .form > label input[type="checkbox"]::after {
    width: 15px;
    height: 15px;
  }
}

section.installers h1 {
  font-weight: 00;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 55px;
  margin-top: 40px;
}

section.installers .content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding-top: 20px;
}

section.installers .content p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}

section.installers .content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
}

section.installers .content > ul {
  padding: revert;
  margin-bottom: 20px;
}

section.installers .content > ul li {
  list-style: disc;
  font-size: 16px;
  line-height: 30px;
}

section.installers .content .locations {
  width: 100%;
  padding: 30px;
  margin-bottom: 20px;
  background: #EFF4F6;
}

section.installers .content .locations h2 {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #E0E4EB;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

section.installers .content .locations ul {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  row-gap: 10px;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

section.installers .content .locations ul li {
  list-style: none;
  font-size: 16px;
  max-width: 100%;
  padding: 0px;
}

section.installers .content .locations ul li::before {
  display: none;
}
/*# sourceMappingURL=ccpa.css.map */