@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.search-output-container,
.canada-search-output-container {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  /* border: 1px solid red; */
  padding: 10px;
  margin-top: 20px;
  max-height: 150px; /* Adjust this value based on the height of 3 children */
  overflow-y: auto; /* Enables vertical scrolling */
}

.submit_loading_container {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  /* border: 1px solid red; */
  padding: 10px;
  margin-top: 20px;
  max-height: 150px; /* Adjust this value based on the heigh
}

  .search-output-child:first-child,
  .canada-search-output-child:first-child {
  margin-top: 0; /* Removes top margin from the first child if any */
}

.search-output-child,
.canada-search-output-child {
  text-align: center;
  border: 0.5px solid rgb(132, 130, 130);
  width: 90%;
  border-radius: 20px;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  margin: 5px;
}

.canada-search-output-child:hover,
.search-output-child:hover {
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.search-output-child-result,
.canada-search-output-child-result {
  display: none;
  text-align: center;
  padding-bottom: 15px;
}

/* Modal styles */
.modal,
.canadaModal {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.submitModal {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.submitModal-header {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 12px;
}

.modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.modal-header > h2 {
  font-size: 20px;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  /* width: 35%; /* Could be more or less, depending on screen size */
  border-radius: 10px;
  max-width: 650px;
}

.submit-modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  width: 25%; /* Could be more or less, depending on screen size */
  border-radius: 10px;
}

.modal-content > p {
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-group-container {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 15px;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* .form-group {
display: flex;
flex: 0.5;
padding: 10px;
flex-direction: column;
} */

.form-group-city {
  display: flex;
  flex-direction: column;
  flex: 0.5;
  margin-right: 10px;
  /* padding: 10px; */
}

.form-group-city > label {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.form-group-state {
  display: flex;
  flex-direction: column;
  flex: 0.5;
  /* padding: 10px; */
}

.form-group-state > label {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.form-group-city > input {
  padding: 5px;
}

.form-group-state > select {
  font-size: 15px;
  padding: 15px;
  color: #2f3032ab;
  font-family: var(--body-font-family);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loading_container,
.submit_loading_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  align-content: center;
}

#loadingIcon,
#canada_loadingIcon {
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  animation: rotate 2s linear infinite; /* Rotate continuously */
}

#submit_loadingIcon {
  /* display: none; */
  width: 50px;
  height: 50px;
  text-align: center;
  animation: rotate 2s linear infinite; /* Rotate continuously */
}

#zipSearchForm > button {
  margin-top: 15px;
  padding: 10px 30px;
  border-radius: 20px;
  /* background-color: #025a9a; */
  background-color: #025a9a;
  color: whitesmoke;
  font-size: 12px;
  letter-spacing: 2px;
  border: 0.5px solid rgb(171, 171, 232);
}

#zipSearchForm:hover > button {
  cursor: pointer;
  margin-top: 15px;
  border-radius: 20px;
  /* background-color: #025a9a; */
  background-color: #064b7d;
  color: whitesmoke;
}

/* END MODAL */

.hsform-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hsform-form-wrapper {
  margin: 0 auto;
  /*   max-width: 550px; */
  width: 100%;
  background: white;
}

.hsform-steps {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #DDE3EC;
}

.hsform-steps ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 40px;
}

.hsform-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  font-family: var(--body-font-family);
}

.hsform-steps li span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DDE3EC;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
}

.hsform-steps li.active {
  color: #07074D;
  ;
}

.hsform-steps li.active span {
  background: #009bdb;
  color: #FFFFFF;
}

.hsform-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}

.hsform-input-flex>div {
  width: 50%;
}

.hsform-form-input {
  width: 100%;
  border-radius: 0;
  border: 1px solid #DDE3EC;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  color: #536387;
  outline: none;
  resize: none;
  font-family: var(--body-font-family);
  line-height: 1;
  padding-left: 30px;
}

select,
select:focus,
select:focus:focus,
.hsform-form-input,
input[type=text] {
  padding: 15px 13px;
  padding-left: 30px;
}

input[type=date] {
  padding: 0.555555555555556rem 30px;
  padding-left: 0.555555555555556rem;
}

input[type=text],
input[type=date] {
  font-family: var(--body-font-family);
  line-height: 1;
}

.hsform-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.hsform-form-label {
  color: #07074D;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
  font-family: var(--body-font-family);
}

span.input-with-icon i.fas.fa-home {
  font-size: 15px;
}

span.input-with-icon i.fas.fa-home:before {
  font-size: 15px;
}

.hsform-form-confirm {
  border-bottom: 1px solid #DDE3EC;
  padding-bottom: 35px;
}

.hsform-form-confirm p {
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  margin-bottom: 22px;
  width: 75%;
}

.hsform-form-confirm>div {
  display: flex;
  gap: 15px;
}

.hsform-confirm-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 0.5px solid #DDE3EC;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
  cursor: pointer;
  padding: 10px 20px;
  transition: all .3s ease-in-out;
}

.hsform-confirm-btn {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}

.hsform-confirm-btn.active {
  background: #6A64F1;
  color: #FFFFFF;
}

.hsform-form-step-1,
.hsform-form-step-2,
.hsform-form-step-3 {
  display: none;
}

.hsform-form-step-1.active,
.hsform-form-step-2.active,
.hsform-form-step-3.active {
  display: block;
}

.hsform-form-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin-top: 25px;
}

.hsform-back-btn {
  cursor: pointer;
  background: #FFFFFF;
  border: none;
  color: #07074D;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: none;
}

.hsform-back-btn.active {
  display: block;
}

.hsform-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 25px;
  border: none;
  font-weight: 500;
  background-color: #ae0e37;
  color: white;
  cursor: pointer;
}

.hsform-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

span.input-with-icon {
  position: relative;
  display: block;
}

span.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 13px;
  color: #999;
  text-align: center;
  caret-color: transparent;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.aaaMemberFields.hidden {
  display: none;
}

.validation-error {
  color: red;
  font-size: 12px;
}

.lookUpFromStateAndCity,
.lookUpToStateAndCity {
  display: inline-block;
  /* padding: 6px 12px; */
  /* margin-top: 10px; */
  font-size: 12px;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  /* text-align: center; */
}

.lookUpToCanadaStateAndCity,
.lookUpFromCanadaStateAndCity {
  display: none;
  /* padding: 6px 12px; */
  /* margin-top: 10px; */
  font-size: 12px;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  /* text-align: center; */
}

.lookUpFromStateAndCity:hover {
  /*  background-color: #0056b3;  Darker blue on hover */
  /* border-color: #0056b3; */
  color: #0865c8;
}

/* new added CSS */

.hsform-input-flex .zcf {
  line-height: 1.5; 
}

#FZC label, #TZC label{
  margin-bottom: 0; 
}

#TZC{
  margin-top: auto;
}

.hsform-main-wrapper.style-lp {
  flex-direction: column; 
}

.hsform-form-step-2 span.input-with-icon i{
  position: absolute;
  left: 9px;
  top: 16px;
}

.style-lp .lp-header {
  padding-top: 1.2rem !important;
  padding-bottom: 1rem !important;
  background-color: rgba(0, 155, 218, 1) !important;
  text-align: center;
  /*   max-width: 550px; */
  width: 100%;
}

.style-lp .lp-header h3 {
  color: #fff; 
  font-size: 30px;
  line-height: 36px;
}

.style-lp .hsform-form-wrapper {
  padding: 50px; 
}

@media (max-width: 767px) {
  .modal, .canadaModal {
    top: 45px;
    position: fixed;
  }

  .modal-content {
    width: 90%; 
  }

  .form-group-container {
    flex-direction: column;
  }

  .form-group-container .form-group-city, .form-group-container .form-group-state {
    width: 100%; 
  }

}

@media (max-width: 480px) {
  .hsform-main-wrapper {
    padding: 15px; 
  }

  .hsform-form-wrapper .hsform-input-flex {
    flex-direction: column; 
  }

  .hsform-form-wrapper .hsform-input-flex>div {
    width: 100%; 
  }

  .hsform-form-btn-wrapper {
    justify-content: center; 
  }
}


.form-captcha, .form-consent {
  font-family: "Inter", sans-serif;
}

.form-captcha .hs_email, .form-consent .hs_email,
.form-captcha .hs_submit , .form-consent .hs_submit,
.form-captcha .form-title, .form-consent .form-title,
.form-captcha .submitted-message, .form-consent .submitted-message{
  display: none;
}

.form-consent .legal-consent-container,
.form-consent .hs-form-booleancheckbox span{
    font-size: 14px;
}

i.fa-id-card,
i.fa-calendar {
  position: absolute;
  left: 8px;
  top: 16px;
  color: #999;
}
i.fa-calendar{
  left: 12px;
}
span.input-with-icon i.fa-home {
  left: 10px;
}
#requestQuoteFormMovingWhen, #requestQuoteFormEmailAddress {
  padding: 13px;
  padding-left: 30px;
}
#requestQuoteFormPhoneNumber{
  padding: 13px;
}

form ul li {
    list-style-type: none;
}

.hs-form-booleancheckbox-display {
  display: flex;
  column-gap: 10px;
  padding: 10px;
}

.hs-form-booleancheckbox input {
  width: 25px !important;
}

.hs-form-booleancheckbox-display [type=checkbox]+span, .hs-form-checkbox-display [type=checkbox]+span {
    display: inline-block;
    padding-left: calc(var(--form-checkbox-size) + .75em);
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    line-height: normal;
}
.hs-richtext {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 20px;
}

.form-checkbox [type=checkbox]+label:before, .hs-form-booleancheckbox-display [type=checkbox]+span:before, .hs-form-checkbox-display [type=checkbox]+span:before {
    border: 2px solid rgb(var(--form-focus-color));
    border-radius: 1px;
    content: "";
    height: var(--form-checkbox-size);
    margin-top: 3px;
    transition: .2s;
    width: var(--form-checkbox-size);
    z-index: 0;