
/************************************************************************************************************
*************************************************************************************************************
*** GENERAL SETTINGS ****************************************************************************************
*************************************************************************************************************
************************************************************************************************************/

#calculator_step_wrapper{
	min-height: 350px;
	display: flex;
	overflow: hidden;
	width: 100%;
	border: 1px solid black;
}

.calculator-step{
	flex: 0 0 100%; 
	min-height: 350px;
	padding: 30px;
	text-align: center;
	width: 100%;
	justify-content: center;
}



.calculator-step button{
	margin: 5px;
}


.calculator-step button.selected{
	background-color: white;
}


.hidden{
	display: none;
}

.calculator_message{
	margin-top: 20px;
}


#calculator_navbar{
	text-align: center;
	padding: 30px;
}

/*
.calculator-datepicker{
	display: none;
}
*/

@media (max-width: 767px) {
	
	#calculator_navbar{
		margin-bottom: -300px;
		transition: margin 0.3s ease; 
	}


	#calculator_navbar.nav_visible{
		margin-bottom: 0;
	}
	/*
	.calculator-datepicker{
		display: none;
	}

	.calculator-datepicker-mobile{
		display: block;
	}
	*/
	
}



#calculator_navbar button{
	margin: 5px;
}

.calculator-step .form_wrapper{
	width: 100%;
	max-width: 400px;
	display: inline-block;
}

.calculator-step .form_wrapper .calculator-form-field-50{
	width: 48%;
	margin: 5px 1%;
}

.calculator-step .form_wrapper .calculator-form-field-100{
	width: 98%;
	margin: 5px 1%;
}


#calculator_loading_message{
	width: 100%;
	text-align: center;
	padding: 30px;
}



#calculator_loader{
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: 99999;
	background-color: rgba(0,0,0,0.9);
	color: white;
	
    position: fixed;
    top: 50%;    /* Centers the div vertically */
    left: 50%;   /* Centers the div horizontally */
    transform: translate(-50%, -50%);  /* Offsets by 50% of its own width and height for true centering */
    
    display: flex;  /* Enable flexbox */
    flex-direction: column; /* Stacks the image and text vertically */
    align-items: center;  /* Horizontally center the content */
    justify-content: center; /* Vertically center the content */
    text-align: center;  /* Centers the text horizontally if it's long */
	
	display: none;
	
}
