form > div{
  display:none;
}
:root {
  --form-height: 82vh;
  --button-gap: 20px;
}
#startScreen {
  height: var(--form-height);
}
#startScreen {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
}
.hubspot-multi__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 231px);
  position: relative;
  margin-top: 90px;
}
#hubspot-multi__form-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
  min-height: calc(100vh - 231px);
  padding: 40px 0;
}

#hubspot-multi__form-wrapper li{
  list-style-type:none;
}
.full-width-background {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.start-screen, .hubspot-multi__form--inner, .form-navigation {
  text-align: center;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.progress-bar {
  background-color: #f1f1f1;
  border-radius: 13px;
  padding: 3px;
  margin-bottom: 20px;
}

.progress {
  height: 20px;
  width: 0%;
  background-color: #4caf50;
  border-radius: 10px;
  transition: width 0.4s ease;
}

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

.hubspot-multi__form button#prevButton {
  background-color: #323232;
}
.hubspot-multi__form .btn {
  background-color: #008bcb;
}

input#hsSubmit {
  margin: 20px 0;
}

#customForm label {
  margin-bottom: 16px;
  font-size: 1.3rem;
  text-align: left;
}

.hs-fieldtype-checkbox.field label { 
  text-align: center!important;
}
#customForm label.hs-error-msg {
  font-size: 1rem;
  color: #f50505;
}

#customForm ul.inputs-list.multi-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  /*   max-width: 200px; */
  gap: 20px;
}
#customForm .hs-form-radio label {
  font-size: 1rem;
  font-weight:normal;
}

.multi-container {
  display: flex;        
  flex-wrap: wrap;       /
  justify-content: center; 
  list-style-type: none; 
  padding: 0;           
}
.hs-form-checkbox {
  display: flex;       
  align-items: center; 
  margin: 5px;          
}
.img-option {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.img-option img {
  margin-right: 10px;
  width: 136px;
  height: auto;
}


.hs-form-checkbox-display {
  position: relative;
  display: inline-block;
}


.hs-form-checkbox-display input:checked + span .img-option::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}


.hs-form-checkbox-display input:checked + span .img-option::before {
  content: attr(data-overlay); 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* Text color */
  font-size: 16px; /* Text size */
  display: block;
}

.inputs-list {
  display: flex;        
  flex-wrap: wrap;       
  justify-content: space-between; 
  list-style: none;    
  padding: 0;            
}

.hs-form-checkbox {
  flex: 0 1 30%;         
  box-sizing: border-box; 
  margin-bottom: 20px;  
}

.hs-form-checkbox-display {
  width: 100%;       
}
/* #customForm input[type="checkbox"]{
display:none;
} */

.validation-error {
  color: red;
  font-size: 0.8em;
  margin-top: 2px;
  margin-bottom:15px;
  text-align:left;
}


