/*custom font*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/*basic reset*/
* {margin: 0; padding: 0; box-sizing: border-box; }


.page-id-10 {
	font-family: 'Montserrat', sans-serif;
	background-color: #F5F9FA;
	height: 100vh;
}

.logo-block{
	text-align: center;
	padding-top: 30px;
}

.form-footer{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
}

/*form styles*/
#msform {
	max-width: 670px;
	margin: 50px auto;
	text-align: center;
	position: relative;

	height: 120vh;
}
#msform fieldset {
	border: 0 none;
	padding: 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	background: #FFFFFF;
	box-shadow: 0px 18px 27px rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	
	/*stacking fieldsets above each other*/
	position: relative;
	display: flow-root;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}

#msform label{
	display: block;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #333333;
	text-align: left;
	margin-bottom: 10px;
}
/*inputs*/
#msform input, #msform textarea, #msform select{
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Montserrat';
	text-transform: uppercase;
	color: #2C3E50;
	font-size: 13px;
	background-color: #fff;
}
#msform input::placeholder, #msform textarea::placeholder, #msform select::placeholder{
	text-transform: none;
}

#msform .form-group .df{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

#msform .form-group .df .column-half{
	width: calc(50% - 5px);
}

#msform .form-group .df .column-full{
	width: 100%;
}

#msform .form-group .df .foot{
	display: flex;
	gap:  10px;
}

#msform .form-group .df .foot > input,
#msform .form-group .df .foot > label{
	display: inline-block;
	width: auto;
	font-size: 12px;
    font-weight: 500;
}

#msform .form-group #prvc-plcy{
	accent-color: #fd851a;
}

#msform .form-group .df .foot > label > a{
	color: #FD851A;
	text-decoration: underline;
}


#msform #ms_policy-error {
    order: 3;
}


/*buttons*/
#msform .btn-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#msform .action-button {
    width: 100px;
    background: #FD851A;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0 0 0;
}

#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #FD851A;
}

#msform .action-button.next,
#msform .action-button.submit{
	float: right;
}

#msform .action-button.previous{
	float: left;
}


#msform .form-group{
	margin-bottom: 25px;
}

#msform .checkboxes{
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

#msform .checkboxes .box{
	width: calc(50% - 5px);
	background-color: pink;
	position: relative;
	height: 78px;
	background: #FFFFFF;
	border: 1px solid #D3DADC;
	border-radius: 8px;
}

#msform .checkboxes .box > label{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: transparent;
	border-radius: 8px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 10px;
	isolation: isolate;
}

#msform .checkboxes .box > label > .icon{
	margin-right: 10px;
}


#msform .checkboxes .box > label > small{
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	color: #333333;
}

#msform .checkboxes .box > label > .chkbx {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    z-index: -1;
}

#msform .checkboxes .box > label > .chkbx::after {
	content: '';
	position: absolute;
	right: 10px;
	top: 10px;
	border: 1px solid #D3DADC;
	background-color: transparent;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: block;
}

#msform .checkboxes .box > label > input {
	display: none;
}

#msform .checkboxes .box > label > input:checked ~ .chkbx{
	background-color: #FFF5ED;
	border: 1px solid #FFF5ED;
    box-shadow: 0 0 0 1px #fd851a;
}

#msform .checkboxes .box > label > input:checked ~ .chkbx::after{
	background-color: #FD851A;
	background-image: url('../images/check.png');
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
    border: 1px solid #FD851A;
}


#msform .radio-container{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#msform .radio-container .radio-box{
	flex: 1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

#msform .radio-container .radio-box .radio{
	display: none;
}

#msform .radio-container .radio-box label{
	padding: 0 0 0 30px;
	z-index: 99;
}

#msform .radio-container .radio-box .b-input{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #C2CED2;
}

#msform .radio-container .radio-box .radio:checked ~ .b-input{
	background-color: #FD851A;
	background-image: url('../images/check.png');
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
    border: 1px solid #FD851A;
}



/*STEP 3*/

#msform .checkboxes-step3 .box{
	width: calc(25% - 10px);
	padding: 60px 0;
}

#msform .checkboxes-step3 .box > label > small{
	font-weight: 500;
	font-size: 14px;
}







/*headings*/
.fs-title {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height:1.3;
	color: #333333;
	margin: 0 0 20px 0;
	text-align: left;
}
.fs-title > span{
	color: #FD851A;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #C2CED2;
	margin: 0 0 10px 0;
	text-align: left;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: #FD851A;
    text-transform: uppercase;
    font-size: 12px;
    width: 25%;
    float: left;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    border-radius: 50%;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #C2CED2;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before{
    background: #f5f9fa;
    color: #FD851A;
    font-size: 0;
    border: 2px solid currentColor;
    background-color: #FD851A;
    background-image: url('../images/check.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #FD851A;
}

#progressbar li.active:after{
    background: #FD851A;
    color: #FD851A;
    border: 1px solid currentColor;
}


.error {
    font-size: 12px!important;
    color: crimson!important;
}

.d-none{
	display: none!important;
}
/*____________________________________________
        
            Media Quaries 
______________________________________________*/

@media only screen and (orientation:landscape) {
body { -webkit-text-size-adjust:none; }
}
@media only screen and (orientation:portrait) {
body { -webkit-text-size-adjust:none; }
}

@media screen and (max-width: 600px){
	#msform .checkboxes .box{
		width: 100%;
		padding: 20px;
	}

	.fs-title {
	    font-size: 20px;
	    margin: 0 0 10px 0;
	}

	#msform .form-group .df .column-half {
    	width: 100%;
	}
    
}


@media screen and (max-width: 480px){
	#msform fieldset {
	    width: 90%;
	    padding: 25px;
	    margin: 0 5%;
	}


	.fs-title {
	    font-size: 20px;
	}

	#msform label {
	    font-size: 14px;
	}	


}



@media screen and (max-width: 400px){


	#msform .radio-container {
	    flex-wrap: wrap;
	}

	#msform .radio-container .radio-box {
	    width: 33%;
	}


}










