.hiddenElem{
  display: none;
}

.hero__banner__image img {
    filter: brightness(70%);
}


.section-container {
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#step1 > .section-body {
    padding: 20px 0 50px;
}

.section-body {
  padding: 50px 0 0;
  align-self: stretch;
  align-items: flex-start;
}

.extra-body-space {
    padding: 50px 0;
}

.section-body, .section-text-container {
  gap: 10px;
  display: flex;
  flex-shrink: 0;
  justify-content: center
}

.section-text, .back-text {
  color: #000;
  height: auto;
  flex-grow: 1;
  text-align: center;
  font-weight: 400;
  font-stretch: normal;
  text-decoration: none
}

.buttons-section {
  gap: 10px;
  align-self: stretch;
  flex-shrink: 0;
}

.buttons-section, .buttons-frame {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.buttons-frame {
    flex-direction: column;
    row-gap: 2rem;
}

.buttons-frame.horizontal {
  flex-direction: row;
  gap: 4rem;
}

.button-area-or {
    margin-top: 2rem;
}
.button-area {
    width: 44%;
}
span.button-subtext {
    FONT-SIZE: 0.8rem;
    text-align: center;
    display: block;
    padding: 1rem;
    line-height: 1rem;
    width: 80%;
    margin: 0 auto;
}

.button-container {
  width: 100%;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  border-radius: 15px;
  background-color: #000;
  padding: 1rem;
  padding-left: 1.25rem;
}

.buttons-frame.horizontal .button-container {
  padding: 2rem;
}

.button-border{
  border-color: rgba(0, 0, 0, 1);
  border-style: solid;
  border-width: 1px;
  background-color: #fff;
}

.buttons-frame.horizontal .button-container .button-text{
  margin: 0 auto;
}

.button-text {
    color: #fff;
    height: auto;
    text-align: center;
    font-weight: 700;
    text-align: left;
    font-size: 1.3rem;
}

button.button-text {
  background: transparent;
  border: 0;
  margin: 0 auto;
  padding: 2rem;
  cursor: pointer;
}
.button-border .button-text {
  color: #000;
}

.section-progress {
    width: 100%;
    background-color: #ddd;
    display: flex;
    margin-top: 15px;
    margin-bottom: -15px;
    align-self: stretch;
    align-items: flex-start;
    border-radius: 30px;
    filter: drop-shadow(0px 3px 2px gray);
}

#progressbar {
  width: 10%;
  height: 15px;
  background-color: #509A00;
  text-align: center;
  line-height: 10px;
  border-radius: 30px 0 0 30px;
  color: white;
  filter: drop-shadow(0px 1px 1px gray);
}

.section-back{
  clear: both;
  display: flex;
  align-self: stretch;
  align-items: flex-start;
}

.back-arrow{
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
}

.ellipse-image {
    width: 2rem;
    height: 2rem;
    border: 2px solid white;
    border-radius: 50%;
    margin: 0.7rem 1.5rem 0.7rem 0;
    min-width: 2rem;
}

.ellipse-image:before {
    content: '';
    display: none;
    background: #000;
    width: 2rem;
    height: 2rem;
    border: 0.5rem solid #e2e8e6;
    border-radius: 50%;
    margin: -2px -2px;
}

.ellipse-image.checked:before {
    display: block;
}

img.span-image {
    width: 1.25rem;
    column-gap: 1rem;
    margin: 0 1rem 0 0;
}

.button-container .span-image {
    width: 2rem;
    margin: 0.7rem 1.5rem 0.7rem 0;
}

.isbutton{
  cursor: pointer;
}
.section-progress, .isStep{
  display: none;
  z-index: 1;
  width: 100%;
}


.form-section-text {
    text-align: left;
    font-weight: 700;
    font-size: 1.7rem;
}

.form-field-text, .form-field-subtext, .form-row label {
  text-align: left;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}


.form-field-subtext {
    color: #999;
    font-weight: 400;
    margin-top: -0.5rem;
}

.form-field {
  width: 100%;
  border-color: rgba(0, 0, 0, 1);
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  padding: 1rem;
}

    .form-field:invalid.required {
        background: url('https://fatt.niceic.com/FATT/exclamation-mark.svg') #fff no-repeat 98% 50%;
        background-size: 3%;
        border-color: red;
        box-shadow: 0 0 3px #CC0000;
    }
.form-field.required:focus {
    outline: none;
}

input:required:invalid + .checkbox {
    background-size: 3%;
    border-color: red;
    box-shadow: 0 0 3px #CC0000;
}

input:required:valid {
    background: url('https://fatt.niceic.com/FATT/tick.svg') #fff no-repeat 98% 50%;
    border-color: rgba(0, 0, 0, 1);
    box-shadow: none;
}

select.form-field {
    background: url('https://fatt.niceic.com/FATT/select.svg') #fff no-repeat 98% 50%;
    appearance: none;
    border: 0;
    outline: none;
    border-color: rgba(0, 0, 0, 1);
    border-style: solid;
    border-width: 2px;
}

option {
    font-size: 1rem;
}

.radioContainer {
  display: block;
  position: relative;
  padding-left: 3rem;
  margin: 2rem 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 2rem;
  font-weight: normal;
}

.radioContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #000;
}

.checkmark.checkbox {
  border-radius: 0%;
}

.radioContainer:hover input ~ .checkmark {
  background-color: #fff;
}

.radioContainer input:checked ~ .checkmark {
  background-color: #fff;
}

.checkmark:after{
    content: "";
    position: absolute;
    display: none;
}

.results-checkbox .checkmark:before {
    content: "Select";
    position: absolute;
    top: 0;
    right: 3rem;
    font-weight: bold;
}

.radioContainer input:checked ~ .checkmark:after {
    display: block;
}

.results-checkbox input:checked ~ .checkmark:before {
    content: "Selected";
}

.radioContainer .checkmark:after {
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: #000;
}

.checkmark.checkbox:after {
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    background: url('https://fatt.niceic.com/FATT/tick.svg') #fff no-repeat 50% 50%;
}


.checkmarkText {
    position: absolute;
    top: 0.2rem;
    right: 1rem;
    font-weight: bold;
}

.manualAddress {
    display:none;
}

.results-card {
    width: 90%;
    display: flex;
    position: relative;
    box-sizing: content-box;
    align-items: start;
    flex-shrink: 0;
    border-radius: 1rem;
    justify-content: flex-start;
    background-color: #fff;
    flex-wrap: wrap;
    padding: 5%;
    border-top: 3.92px solid #106678;
    filter: drop-shadow(0px 7px 7px #ccc);
    margin-bottom: 3rem;
}

.results-card:has(.results-checkbox input:checked) {
  border-top: 3.92px solid #CC0033;
}

.results-checkbox {
    position: absolute;
    right: 3.5rem;
    top: 1.5rem;
    padding: 0;
    margin: 0;
}

.results-checkbox .checkmark.checkbox {
  height: 2rem;
  width: 2rem;
  border: 3px solid #000;
}

.results-checkbox.radioContainer input {
  z-index: 1;
  height: 2rem;
  width: 2rem;
}

.results-checkbox input:checked ~ .checkmark.checkbox:after {
    background: url('https://fatt.niceic.com/FATT/tick_red.svg') no-repeat 50% 50%;
}

.results-group {
  width: 40%;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  margin-right: 10%;
}

.results-group.full-width {
  width: 100%;
  position: relative;
  margin: 1% 0 0;
}

.results-group-title, .results-group-header, .results-group-content{
  width: 100%;
  text-align: left;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.results-group-header{
  font-style: normal;
  font-weight: 400;
}

.results-group-content{
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1rem;  
  font-weight: 200;
  color:#686868;

}

.actionButton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://fatt.niceic.com/FATT/select.svg') no-repeat 98% 50%;
}

.actionButton.selected::after {
    transform: rotate(180deg);
    background: url('https://fatt.niceic.com/FATT/select.svg') no-repeat 3% 86%;
}


.actionButton {
  border-color: rgba(0, 0, 0, 1);
  border-style: solid;
  border-width: 2px;
  padding: 1.25rem;
  position: relative;
}

.actionButton .results-group-title {
  margin-bottom: 0;
}

.actionButtonSub {
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 200;
  color: #686868;
  margin: 1rem 0;
  z-index: 1;
  display: none;
}


#formSubmit.clicked, #shareWorkRequest.clicked {
    background: url('https://fatt.niceic.com/FATT/loading.gif') #000 no-repeat 50% 50%;
    background-size: contain;
    color: transparent;
    background-blend-mode: hard-light;
}

.contractor_visit_card {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('https://fatt.niceic.com/FATT/approved-contractor-visiting-householder.png');
    border-radius: 0.7rem;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem;
    height: 19rem;
    text-align: left;
    color: #fff;
}

.contractor_visit_card .h1 {
    display: block;
    line-height: 3rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.contractor_visit_card .p {
    width: 50%;
    display: block;
    font-size: 1rem;
    line-height: 1.3rem;
    margin: 1rem 0 1.5rem 0;
}

.contractor_visit_card img {
    width: 2rem;
    margin: 0;
}


@media only screen and (max-width: 768px) {
    .button-area {
        width: 97%;
    }
    .button-area-or {
        margin-top: 0;
    }
    .buttons-frame.horizontal {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .buttons-frame.horizontal .button-container {
        width: 97%;
    }
    .results-group {
        width: 100%;
        margin-right: 0;
    }
    .results-group-header {
        margin-right: 2.5rem;
    }
    .contractor_visit_card .p {
        width:100%;
    }
}
