.fletcalc_widget {
  font-weight: 400;
  font-size: 1.2rem !important;
  line-height: 1.5 !important;
  color: #002f2f;
  background-color: #fff;
  width: 100%;
  position: relative;
  overflow-x: hidden; }
  .fletcalc_widget h2 {
    font-size: 2rem;
    color: #004547;
    font-weight: 600; }
  .fletcalc_widget h1,
  .fletcalc_widget h2,
  .fletcalc_widget p,
  .fletcalc_widget h3,
  .fletcalc_widget span,
  .fletcalc_widget a {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; }
  .fletcalc_widget .success {
    background-color: #76ad1c;
    padding: 0 0.5rem; }
    .fletcalc_widget .success p {
      color: #fff; }
  .fletcalc_widget .errors,
  .fletcalc_widget .error-message {
    color: red;
    margin: 0.15rem 0;
    text-align: center; }
  .fletcalc_widget a.btn {
    background-color: #002f2f;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    transition: 0.7s cubic-bezier(0.25, 1, 0.2, 1);
    font-size: 1.5rem !important; }
  .fletcalc_widget a.btn-grey {
    background-color: #666;
    margin-left: 1rem; }
  .fletcalc_widget button {
    border: 1px solid #76ad1c;
    background-color: #76ad1c;
    color: #fff;
    cursor: pointer;
    text-transform: capitalize;
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    width: 200px; }
    .fletcalc_widget button:hover {
      color: #004547;
      background-color: #fff; }

div:has(> .fletcalc_widget),
main,
body:has(> .fletcalc_widget) {
  background-color: #fff; }

.fletcalc_widget {
  /*
  * Step Header
  */
  /*
  * Step Body
  */ }
  .fletcalc_widget .step-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    cursor: pointer; }
    .fletcalc_widget .step-header .step {
      background-color: #dfdfdf;
      color: #666666;
      font-size: 16px;
      display: inline-block;
      padding: 5px;
      width: 20%;
      position: relative; }
      .fletcalc_widget .step-header .step::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid #dfdfdf;
        border-top: 17px solid transparent;
        border-bottom: 17px solid transparent; }
      .fletcalc_widget .step-header .step.active {
        color: #fff;
        background-color: #004547; }
        .fletcalc_widget .step-header .step.active::after {
          content: "";
          position: absolute;
          right: -10px;
          top: 50%;
          transform: translateY(-50%);
          width: 0;
          height: 0;
          border-left: 10px solid #004547;
          border-top: 17px solid transparent;
          border-bottom: 17px solid transparent; }
  .fletcalc_widget .step-body {
    padding: 1rem; }
    .fletcalc_widget .step-body h2,
    .fletcalc_widget .step-body h3,
    .fletcalc_widget .step-body button {
      text-align: center; }
  .fletcalc_widget .applications {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem; }
    @media only screen and (max-width: 767px) {
      .fletcalc_widget .applications {
        flex-direction: column; } }
    .fletcalc_widget .applications .application {
      background-color: #fff;
      border: 1px solid #dfdfdf;
      box-shadow: 0px 1px #00000029;
      cursor: pointer; }
      .fletcalc_widget .applications .application:hover, .fletcalc_widget .applications .application.active {
        background-color: #004547; }
        .fletcalc_widget .applications .application:hover h3, .fletcalc_widget .applications .application.active h3 {
          color: #fff; }
    .fletcalc_widget .applications .icon {
      background-repeat: no-repeat;
      background-position: center center;
      min-width: 180px;
      min-height: 90px; }
      .fletcalc_widget .applications .icon-roof {
        background-image: url("../media/roof_icon.svg"); }
      .fletcalc_widget .applications .icon-wall {
        background-image: url("../media/wall_icon.svg"); }
      .fletcalc_widget .applications .icon-both {
        background-image: url("../media/both_icon.svg"); }
  .fletcalc_widget .btn-wrapper {
    display: flex;
    justify-content: space-evenly; }
    .fletcalc_widget .btn-wrapper__result {
      justify-content: center;
      align-items: center;
      text-align: left;
      gap: 1rem; }

.fletcalc_widget h3 {
  color: #0a525d;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  text-transform: capitalize;
  margin: 1rem 0rem 0rem 0; }

.fletcalc_widget label {
  color: #0a525d;
  line-height: 1.35 !important;
  margin: 0.5rem 0; }

.fletcalc_widget input,
.fletcalc_widget select {
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0;
  color: #004547;
  font-size: 1.5rem !important;
  padding: 15px !important;
  width: 100%; }

.fletcalc_widget input::placeholder {
  color: #004547;
  text-transform: capitalize; }

.fletcalc_widget button,
.fletcalc_widget input[type="submit"] {
  border: 1px solid 1px #76ad1c;
  background-color: #76ad1c;
  color: #fff !important;
  text-transform: capitalize;
  margin-top: 1rem;
  margin-right: 1rem; }

.fletcalc_widget .form-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.fletcalc_widget .tooltip {
  cursor: pointer;
  position: relative; }
  .fletcalc_widget .tooltip-icon {
    background-color: #fff;
    color: #004547;
    border: 1px solid #004547;
    border-radius: 50%;
    padding: 0px 4px 0px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: bold; }
  .fletcalc_widget .tooltip-text {
    display: none; }
    .fletcalc_widget .tooltip-text.show {
      display: block;
      position: absolute;
      font-size: 12px;
      background: white;
      padding: 1rem;
      right: 0;
      left: 102%;
      top: -100%;
      bottom: 0;
      min-width: 150px;
      min-height: 75px;
      width: fit-content;
      height: fit-content;
      box-shadow: 2px 1px 13px -3px #00000029; }

.spanner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: block;
  text-align: center;
  height: 300px;
  color: #004547;
  transform: translateY(-50%);
  z-index: 1000;
  visibility: hidden; }

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  top: 0;
  left: 0; }

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.1s infinite ease-in-out;
  animation: load7 1.1s infinite ease-in-out; }

.loader {
  color: #f8fbf0;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0; }

.loader:before {
  left: -3.5em; }

.loader:after {
  left: 3.5em; }

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em; }
  40% {
    box-shadow: 0 2.5em 0 0; } }

@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em; }
  40% {
    box-shadow: 0 2.5em 0 0; } }

.show {
  visibility: visible; }

.spanner,
.overlay {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.spanner.show,
.overlay.show {
  opacity: 1; }
