.hs-row{
	display: flex;
	flex-wrap: wrap;
}
.hm-container .flex{
	display: flex;
}
.hs-col-50{
	width: 50%;
}
.hs-col-25{
	width: 25%;
}
.hs-shortcode{
	width: 100%;
}
.hs-col-25 h4{
	font-weight: 700;
	font-size: 1.5rem;
    line-height: 2rem;
	margin-bottom: 1rem;
}
.hs-selected-value{
	border-radius: .25rem;
	--tw-shadow: 0px 2px 4px rgba(25, 25, 25, .04);
    --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	padding: 1rem;
	--tw-bg-opacity: 1;
    background-color: rgb(244 244 244);
}
.hs-selected-value .text-info-700 {
    --tw-text-opacity: 1;
    color: rgb(56 67 138 / var(--tw-text-opacity));
}
.hs-selected-value .font-medium{
    font-weight: 500;
	font-size: 1rem;
    line-height: 1.5rem;
}
.hs-selected-value svg{
	width: 1.5rem;
	height: 1.5rem;
    margin-right: .5rem;
	
}
.hs-selected-value .text-primary,
.hs-selected-value .text-primary-400,
.hs-selected-value svg,
.hs-selected-value .clr-brown{
	color: #a7774a;
}
.hs-selected-value .\!text-neutral {
    --tw-text-opacity: 1 !important;
    color: rgb(25 25 25 / 1) !important;
}
.hs-selected-value .text-ds-b2{
	font-size: .875rem;
    line-height: 1.25rem;
}
.cursor{
	cursor: pointer;
}
.hm-container input[type="radio"],
.hm-container input[type="checkbox"]{
	width: 20px; 
	height: 20px;
}
.hm-container input[type="checkbox"]{
	border-radius: 50px;
}
.hm-card .option label{
    display: flex;
    gap: 10px;
	cursor: pointer;
	width: 100%;
}
/* Hide the default radio button visually but keep it accessible for screen readers */
.hm-container input[type="radio"],
.hm-container input[type="checkbox"] {
  position: absolute; /* Position absolutely to hide */
  opacity: 0; /* Make invisible */
  width: 0;
  height: 0;
}

/* Custom radio button appearance */
.hm-container .custom-radio,
.hm-container .checkbox-style {
  display: inline-block;
  width: 16px; /* Radio button size */
  height: 16px;
  border: 1px solid #cdcdcd; /* Outline for the radio button */
  position: relative;
  cursor: pointer;
}
.hm-container .checkbox-container .checkbox-style{
	border-color: red;
}
.hm-container .custom-radio{
	border-radius: 50%; /* Circular shape */
}

.hm-container .custom-radio:hover,
.hm-container .radio:hover .custom-radio,
.hm-container .checkbox-style:hover,
.hm-container .checkbox:hover .checkbox-style{
	border-color: #a7774a;
}

/* Custom radio button's inner circle when selected */
.hm-container .custom-radio::after,
.hm-container .checkbox-style::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px; /* Inner circle size */
	height: 10px;
	background: #a7774a; /* Color for the inner circle */
	opacity: 0; /* Hidden by default */
}
.hm-container .custom-radio::after{
	border-radius: 50%; /* Circular shape */
}
.hm-container .checkbox-style::after {
  border-radius: 2px;
}

/* Show the inner circle when the radio button is selected */
.hm-container input[type="radio"]:checked + .custom-radio::after,
.hm-container input[type="checkbox"]:checked + .checkbox-style::after{
  	opacity: 1; /* Visible when checked */
}
.hm-container .checkbox-container input[type="checkbox"]:checked + .checkbox-style{
	border-color: #cdcdcd;	
}

/* Label styling to align with custom radio buttons */
.hm-container .radio,
.hm-container .checkbox {
	cursor: pointer; /* Change cursor on hover */
	padding-left: 24px; /* Space for radio button */
	position: relative;
}

/* Position the custom radio button within the label */
.hm-container .radio .custom-radio,
.hm-container .checkbox .checkbox-style {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.hm-container .custom-placeholder{
	display: flex;
    align-items: center;
}
.hm-container .checkbox-container label.checkbox{
	padding-left: 35px;
}
.hm-container .field-other{
	display: none;
}
.hm-container .field-other.active{
	display: block;	
}
.field-other label{
	display: flex;
    flex-direction: column;
    gap: 5px;
}
.hm-container .hs-selected-value a{
    word-break: break-word;
}

.hs-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
  z-index: 9999; /* Ensure it's above other elements */
  display: none; /* Hide by default */
}
.hs-loader-container.active{
	display: block;
}
.hs-loader-description{
	position: absolute;
    top: 50%;
    left: 40%;
    margin-top: 30px;
    margin-left: -25px;
	font-weight: 600;
}
.hs-loader {
  border: 4px solid #f3f3f3; /* Light grey border */
  border-top: 4px solid #a7774a; /* Blue border for the spinning animation */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite; /* Animation to make it spin */
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px; /* Center vertically */
  margin-left: -25px; /* Center horizontally */
}

/* Animation keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media(min-width: 768px){
	.hs-col-50{
		padding-right: 50px;
	}
	.hs-loader-description{
		font-size: 20px;
	}
}
@media(max-width: 1024px){
	.hs-hide-tab-mobile{
		display: none;		
	}
}
@media(max-width: 768px){
	.hs-col-50, .hs-col-25{
		width: 100%;
	}
}
@media(max-width: 480px){
	.hs-loader-description{
		left: 40%;
	}
}

.step {
    display: none;
    margin-top: 40px;
	margin-bottom: 30px;
    min-width: 300px;
}

@media (min-width: 500px) {
    .step {
        width: 500px;
    }
	
}

.step.active {
    display: block;
}

#progress-bar-container {
    margin-bottom: 20px;
}

#progress-bar {
    width: 100%;
    background-color: #dbd7d7;
    height: 8px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: relative;
}

#progress {
    width: 0;
    border-radius: 25px;
    height: 100%;
    background-color: #a7774a;
    position: absolute;
    top: 0;
    left: 0;
}

#step-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.hm-card {
    border-radius: 5px;
    padding: 30px;
	background-color: #F4F4F4;
}
.hm-card.hm-thank-you{
	text-align: center;
}

.text-color {
    color: #38438a;
    font-weight: 600;
}

.hm-input-field {
    position: relative;
    width: 100%;
    height: 44px;
    line-height: 44px;
}

input[type="radio"]:hover,
input[type="checkbox"]:hover{
	cursor: pointer;
}
.hm-input {
    width: 100%;
    border-radius: 4px;
    border: 1px solid grey;
    outline: 0;
    padding: 0.5rem 10px;
    border-bottom: 2px solid #d3d3d3;
    box-shadow: none;
    color: #111;
}

.hm-input:invalid {
    outline: 0;

}

.hm-input:focus,
.hm-input:valid {
    border-color: grey;
}

.hm-input:focus~label,
.hm-input:valid~label {
    font-size: 14px;
    top: -10px;
    color: grey;
}

.next-btnn,
.hm-container button:not(.pre-btn) {
    padding: 10px 25px;
    background-color: #a7774a;
    color: white;
    border: none;
    margin-top: 20px;
    border-radius: 4px;
	border: 1px solid #c4772a;
}

.next-btnn:hover,
.hm-container button:not(.pre-btn):hover,
.hm-container button:not(.pre-btn):focus {
	background-color: #00000000;
    color: #c4772a;
    border: 1px solid #c4772a;
}

.hm-btn:focus {
    border: none;
    box-shadow: none;
}

.hm-btn:active {
    border: none;
}

.cursor {
    cursor: pointer;
}

.pre-btn {
    color: black;
}

.pre-btn:hover {
    color: black;
}

.pre-btn:active {
    color: black;
}

.pre-btn:focus {
    color: black;
}

.skip-btnn {
    padding: 10px 15px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: none;
    margin-top: 20px;
    border-radius: 4px;
}

.form-header {
    margin-bottom: 20px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.875rem;
    color: #666;
}

.form-body {
    margin-bottom: 20px;
}

.input-container {
    margin-bottom: 16px;
}

.input-container input[type="text"],
.input-container input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.checkbox-container .required-message{
	color: red;
	display: none;
}

.checkbox-container input {
    width: 100%;
    height: 20px;
    border-radius: 50%;
}

.checkbox-container label {
    display: inline-block;
    font-size: 0.875rem;
    margin-bottom: 0;
    color: #333;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-actions a {
    color: #a7774a;
    text-decoration: none;
}

.form-actions button[type="submit"] {
    padding: 8px 16px;
    background-color: #a7774a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.stats-container {
    display: flex;
    justify-content: space-between;
}

.stats-item {
    display: flex;
    align-items: center;
}

.stats-item .icon {
    margin-right: 8px;
}

.stats-item .text {
    font-size: 0.875rem;
    color: #333;
}
@media(max-width: 480px){
	.hm-container{
		padding: 20px;
	}
}

.hs-form-error-message{
	font-size: 18px;
    margin-top: 10px;
    color: red;
}




















