.reselling-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 212px
}

.reselling-loader__body {
  width: 100%
}

.reselling-loader__title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600
}

@media(min-width:1024px) {
  .reselling-loader__title {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.3913043478;
    font-weight: 500
  }
}

.reselling-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center
}

.reselling-loader__process-bar {
  position: relative;
  width: 100%;
  max-width: 367px;
  height: 24px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background-color: #f5f6fe
}

.reselling-loader__process-bar-inner {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: end;
  height: 100%;
  border-radius: 16px;
  background-color: #2f54eb;
  color: #fff;
  font-size: 12px;
  line-height: 1.334
}

.reselling-loader__process-bar-value {
  display: inline-block;
  min-width: 30px;
  padding-left: 2px
}

.reselling-loader__process-bar-subtitle {
  margin-top: 8px;
  color: #8b8c90;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500
}

.reselling-loader__spinner {
  display: block;
  width: 48px;
  height: 48px
}

.angi-consent-step {
  display: flex;
  flex-direction: column;
  align-items: stretch
}

.angi-consent-step__host {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - 225px);
  max-height: 860px
}

@media(min-width:768px) {
  .angi-consent-step__host {
    height: calc(100vh - 241px)
  }
}

@media(min-width:1202px) {
  .angi-consent-step__host {
    height: calc(100vh - 122px)
  }
}

.angi-consent-step__host_hidden {
  display: none
}

.dropin-container {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%
}

body.angi-widget-active div:has(>#wizardWrapper) {
  padding-bottom: 16px
}

.loader-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px
}

.loader-step__spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  color: currentColor
}

.loader-step__spinner-item {
  transform-origin: 40px 40px;
  animation: loader-step-spin 1.2s linear infinite
}

.loader-step__spinner-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background-color: currentColor
}

.loader-step__spinner-item:nth-child(1) {
  transform: rotate(0);
  animation-delay: -1.1s
}

.loader-step__spinner-item:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s
}

.loader-step__spinner-item:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -.9s
}

.loader-step__spinner-item:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -.8s
}

.loader-step__spinner-item:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -.7s
}

.loader-step__spinner-item:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -.6s
}

.loader-step__spinner-item:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -.5s
}

.loader-step__spinner-item:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -.4s
}

.loader-step__spinner-item:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -.3s
}

.loader-step__spinner-item:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -.2s
}

.loader-step__spinner-item:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -.1s
}

.loader-step__spinner-item:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s
}

@keyframes loader-step-spin {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.legal-modal {
  display: flex;
  position: fixed;
  z-index: 11000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: opacity .3s, pointer-events .3s;
  background-color: #0f172a4d;
  inset: 0;
  backdrop-filter: blur(2px)
}

.legal-modal__backdrop {
  position: absolute;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: default;
  inset: 0
}

.legal-modal--open {
  opacity: 1;
  pointer-events: auto
}

.legal-modal--closed {
  opacity: 0;
  pointer-events: none
}

.legal-modal__content {
  display: flex;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  height: 50dvh;
  overflow: hidden;
  transition: transform .3s ease-out, opacity .3s ease-out;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 25px 50px -12px #00000040, 0 10px 15px -3px #0000001a
}

@media(max-width:575px)and (min-height:600px) {
  .legal-modal__content {
    height: 60dvh
  }
}

.legal-modal--open .legal-modal__content {
  transform: scale(1) translateY(0);
  opacity: 1
}

.legal-modal--closed .legal-modal__content {
  transform: scale(.95) translateY(16px);
  opacity: 0
}

.legal-modal__header {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  padding: 12px;
  background-color: #fff
}

.legal-modal__close {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #bdbdbd;
  line-height: 0;
  cursor: pointer
}

.legal-modal__close:hover {
  color: #757575
}

.legal-modal__loader {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center
}

.legal-modal__loader img {
  width: 72px;
  height: 72px
}

.legal-modal__iframe {
  display: block !important;
  flex: 1;
  width: 100%;
  border: none
}

.local-partner {
  padding: 80px 24px
}

@media(min-width:1024px) {
  .local-partner {
    padding: 64px 24px
  }
}

.local-partner__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px
}

@media(min-width:1024px) {
  .local-partner__body {
    gap: 24px
  }
}

.local-partner__name {
  color: #2548d6;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600
}

@media(min-width:1024px) {
  .local-partner__name {
    max-width: 327px
  }
}

.local-partner__retry-text {
  color: #909090;
  text-align: center;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 400
}

@media(min-width:1024px) {
  .local-partner__retry-text {
    max-width: 327px
  }
}

.qualified-out-step {
  padding: 91px 16px 24px
}

@media(min-width:768px) {
  .qualified-out-step {
    padding: 115px 64px 46px
  }
}

.qualified-out-step__image {
  position: absolute;
  top: -66px;
  right: 0;
  left: 0;
  width: 119px;
  height: 119px;
  margin: auto;
  transform: translateZ(0);
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, .15))
}

@media(min-width:768px) {
  .qualified-out-step__image {
    top: -90px;
    width: 183px;
    height: 183px
  }
}

.qualified-out-step__header {
  text-align: center
}

.qualified-out-step__title {
  font-size: 23px;
  line-height: 1.3913043478;
  font-weight: 700
}

@media(min-width:1024px) {
  .qualified-out-step__title {
    font-size: 25px;
    line-height: 1.44
  }
}

.qualified-out-step__subtitle {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 8px
}

.qualified-out-step__footer {
  margin-top: 24px;
  text-align: center
}

.checkbox {
  display: flex;
  align-items: center;
  width: fit-content;
  cursor: pointer;
  gap: 8px
}

.checkbox_boxed {
  --c-border-color: #f5f6fe;
  width: 100%;
  padding: 14px 24px;
  border: 2px solid var(--c-border-color);
  border-radius: 8px
}

.checkbox_boxed:has(.checkbox__input:checked) {
  --c-border-color: #fa8c16
}

.checkbox__input {
  display: grid;
  width: 16px;
  height: 16px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  background-color: #fff;
  appearance: none;
  place-content: center
}

.checkbox__input:before {
  content: "";
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: .12s transform ease-in-out;
  background-image: url(../icons/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain
}

.checkbox__input:checked:before {
  transform: scale(1)
}

.checkbox__title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600
}

.checkbox_plain .checkbox__title {
  font-size: 12px;
  line-height: 2;
  font-weight: 500
}

.checkbox_plain .checkbox__input {
  width: 18px;
  height: 18px
}

.option-group {
  --s-grid-gap: 8px;
  --s-grid-colums: 1fr;
  --s-grid-max-width: fit-content;
  display: grid;
  grid-gap: var(--s-grid-gap);
  grid-template-columns: var(--s-grid-columns);
  max-width: var(--s-grid-max-width);
  margin-right: auto;
  margin-left: auto
}

@media(min-width:768px) {
  .option-group {
    --s-grid-gap: 24px 16px
  }
}

.option-group:has(li:nth-child(2):last-child) {
  --s-grid-max-width: 265px
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(2):last-child) {
    --s-grid-max-width: 352px;
    --s-grid-columns: repeat(2, 1fr)
  }
}

.option-group:has(li:nth-child(3):last-child) {
  --s-grid-max-width: 265px
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(3):last-child) {
    --s-grid-max-width: 536px;
    --s-grid-columns: repeat(3, 1fr)
  }
}

.option-group:has(li:nth-child(4):last-child) {
  --s-grid-max-width: 265px
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(4):last-child) {
    --s-grid-max-width: 720px;
    --s-grid-columns: repeat(4, 1fr)
  }
}

.option-group:has(li:nth-child(5):last-child) {
  --s-grid-max-width: 265px
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(5):last-child) {
    --s-grid-max-width: 536px;
    --s-grid-columns: repeat(24, 1fr)
  }
}

.option-group:has(li:nth-child(5):last-child) .option-group__grid-item {
  grid-column: span 8
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(5):last-child) .option-group__grid-item:nth-child(4) {
    grid-column: 5/13
  }
}

.option-group:has(li:nth-child(6):last-child) {
  --s-grid-max-width: 311px;
  --s-grid-columns: repeat(2, 1fr)
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(6):last-child) {
    --s-grid-max-width: 536px;
    --s-grid-columns: repeat(3, 1fr)
  }
}

.option-group:has(li:nth-child(7):last-child) {
  --s-grid-max-width: 311px;
  --s-grid-columns: repeat(4, 1fr)
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(7):last-child) {
    --s-grid-max-width: 720px;
    --s-grid-columns: repeat(8, 1fr)
  }
}

.option-group:has(li:nth-child(7):last-child) .option-group__grid-item {
  grid-column: span 2
}

.option-group:has(li:nth-child(7):last-child) .option-group__grid-item:last-child {
  grid-column: 2/4
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(7):last-child) .option-group__grid-item:nth-child(5) {
    grid-column: 2/4
  }

  .option-group:has(li:nth-child(7):last-child) .option-group__grid-item:last-child {
    grid-column: span 2
  }
}

.option-group:has(li:nth-child(8):last-child) {
  --s-grid-max-width: 311px;
  --s-grid-columns: repeat(4, 1fr)
}

@media(min-width:768px) {
  .option-group:has(li:nth-child(8):last-child) {
    --s-grid-max-width: 720px;
    --s-grid-columns: repeat(8, 1fr)
  }
}

.option-group:has(li:nth-child(8):last-child) .option-group__grid-item {
  grid-column: span 2
}

.places-autocomplete-input {
  position: relative
}

.places-autocomplete-input__list {
  position: absolute;
  z-index: 10;
  top: 60px;
  width: 100%;
  max-height: 160px;
  padding: 8px 0;
  overflow: auto;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 4px #2f54eb4d;
  scrollbar-width: thin;
  scrollbar-color: #e2e6e9 #ffffff
}

.places-autocomplete-input__list::-webkit-scrollbar {
  width: 4px
}

.places-autocomplete-input__list::-webkit-scrollbar-track {
  background-color: #fff
}

.places-autocomplete-input__list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #e2e6e9
}

.places-autocomplete-input__icon {
  visibility: hidden;
  margin: 0;
  padding: 0;
  transition: opacity .3s ease;
  border: none;
  outline: none;
  opacity: 0;
  background-color: transparent;
  cursor: pointer
}

.places-autocomplete-input__icon_open {
  visibility: visible;
  opacity: 1
}

.places-autocomplete-input__item {
  list-style: none
}

.places-autocomplete-input__button {
  width: 100%;
  margin: 0;
  padding: 8px 16px;
  border: none;
  outline: none;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer
}

.places-autocomplete-input__button:hover {
  background-color: #f6f7fe
}

.project-address-field {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.project-address-field__row {
  width: 100%
}

.button-group {
  --bg-gap: 8px;
  --bg-offset-top: 0;
  --bg-offset-bottom: 0;
  display: flex;
  flex-direction: column;
  width: 250px;
  margin-top: var(--bg-offset-top);
  margin-right: auto;
  margin-bottom: var(--bg-offset-bottom);
  margin-left: auto;
  gap: var(--bg-gap)
}

@media(min-width:768px) {
  .button-group {
    flex-direction: row;
    justify-content: center
  }
}

@media(min-width:768px) {
  .button-group_reverse {
    flex-direction: row-reverse
  }
}

@media(min-width:768px) {
  .button-group_two-col {
    width: auto
  }
}

.is-easy-wizard .button-group {
  flex-direction: column;
  width: fit-content;
  min-width: 190px
}

.step-footer {
  --ft-offset-top: 16px;
  --ft-offset-bottom: 0;
  margin-top: var(--ft-offset-top);
  margin-bottom: var(--ft-offset-bottom);
  text-align: center
}

@media(min-width:768px) {
  body:not(.is-easy-wizard) .step-footer {
    --ft-offset-top: 24px
  }
}

.horizontal-layout {
  --hl-gap: 16px;
  --hl-offset-top: 0;
  --hl-offset-bottom: 0;
  --hl-cell-width: 250px;
  --hl-cell-gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: var(--hl-offset-top);
  margin-bottom: var(--hl-offset-bottom);
  gap: var(--hl-gap)
}

@media(min-width:768px) {
  .horizontal-layout {
    flex-direction: row;
    align-items: flex-start
  }
}

.horizontal-layout__cell {
  display: grid;
  width: var(--hl-cell-width);
  max-width: 100%;
  gap: var(--hl-cell-gap)
}

.vertical-layout {
  --vl-gap: 16px;
  --vl-offset-top: 0;
  --vl-offset-bottom: 0;
  --vl-cell-width: 250px;
  --vl-cell-gap: 8px;
  display: grid;
  justify-content: center;
  margin-top: var(--vl-offset-top);
  margin-bottom: var(--vl-offset-bottom);
  gap: var(--vl-gap)
}

.vertical-layout__cell {
  display: grid;
  width: var(--vl-cell-width);
  max-width: 100%;
  gap: var(--vl-cell-gap)
}

.is-easy-wizard .vertical-layout__cell {
  width: 100%
}

.wizard-step-note {
  --wizard-step-note-gap: 10px;
  --wizard-step-note-color: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
  color: var(--wizard-step-note-color);
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  gap: var(--wizard-step-note-gap)
}

@media(min-width:768px) {
  .wizard-step-note {
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    text-align: center
  }
}

.wizard-step-note__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px
}
