	/* ----------- Form pages ------------- */
	.px-btn--small {
		padding: var(--space-4xs);
		font-size: var(--text-xs);
	}

	#question_38 .px-btn--small {
		margin-top: var(--space-4xs);
		float: right;
	}

	.hero--form {
		padding-top: var(--space-s);
		padding-bottom: 0;
	}

	.form-page {
		padding-top: var(--space-s);
	}
	
	/* Radio and checkbox input styles */
	input[type=radio], input[type=checkbox] {
		cursor: pointer;
		opacity: 0;
		position: absolute;
		width: initial;
		margin: 0;
		padding-block: 0;
		padding-inline: 0;
	}

	.question__terms input[type=checkbox] {
		opacity: 1;
		position: relative;
		padding-block: var(--space-3xs);
		padding-inline: var(--space-2xs);
	}
	  
	input[type=radio]:checked + label, input[type=checkbox]:checked + label {
		background-color: var(--px-primary);
		border-color: var(--px-primary);
		color: var(--px-light);
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	  
	input[type="checkbox"] {
		display: flex;
		justify-content: center;
		align-content: center;
		background: var(--dm-background);
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		width: 24px;
		height: 24px;
		border: 2px solid var(--dm-background);
		border-radius: var(--radius-xs);
		outline: none;
		transition: all 0.3s ease-in-out;
		padding: 0.7rem;
	}
	  
	input[type="checkbox"]:checked {
		display: flex;
		justify-content: center;
		align-content: center;
		background-color: var(--px-primary);
		border: 2px solid var(--px-primary);
	}
	 
	input[type="checkbox"]:checked::before {
		content: "\2713";
		display: flex;
		justify-content: center;
		align-content: center;
		color: var(--px-light);
		font-size: var(--text-m);
		line-height: 0.2;
		padding: 0;
	}
	  
	input[type="checkbox"]:hover::before {
		border-color: var(--px-primary);
		color: var(--px-light);
	}

	.question__terms input[type=checkbox]:checked + label {
		background-color: inherit;
		color: inherit;
	}

	/* add remove fields */
	.add-input-group, .remove-input-group {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin-top: var(--space-s);
		padding: 0.06rem 0.5rem 0.06rem 0.09rem;
		border-radius: var(--radius-l);
		gap: 0.1rem;
		font-size: var(--text-xs);
		color: var(--px-light);
	}
	
	.add-input-group {
		background: var(--px-primary-80);
		transition: all .2s ease 0s;
	}
	
	.remove-input-group {
		background: var(--px-error-80);
		transition: all .2s ease 0s;
	}

	.add-input-group:hover {
		background: var(--px-primary);
	}
	
	.remove-input-group:hover {
		background: var(--px-error);
	}
	
	.add-input-group img, .remove-input-group img {
		height: 1.4rem;
	}
	
	.addremove-input-group {
		display: flex;
		justify-content: space-between;
	}
	
	.hero__content--doc {
	    display: flex;
	    justify-content: center;
	    width: 100%;
	}
	
	.hero__content--doc h1 {
	    font-size: var(--text-2xl);
	}
	
	form {
	    width: 100%;
	}
	
	.question__required {
	    display: inline-flex;
	    background: var(--px-error);
	    padding: 0.1rem 0.5rem;
	    border-radius: var(--radius-s);
	    color: var(--px-light);
	    font-size: var(--text-s);
	    margin-top: var(--space-3xs);
	    width: fit-content;
	}
	  
	
	/* ----------- Progress bar start ------------- */
	
	.progress-bar {
	    display: inline-flex;
	    width: 100%;
	    justify-content: center;
	    align-items: flex-start;
	    padding: 1.3rem 1rem 1rem 1rem;
	    margin-bottom: var(--space-l);
	    border-radius: var(--radius-s);
	    list-style: none;
	}
	
	.progress-bar__circle-icon {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    width: 2rem;
	    height: 2rem;
	    border-radius: 50%;
	    border: 1px solid var(--px-dark-10);
	    box-shadow: inset 0px 0px 7px 0px rgb(193 193 193 / 26%), inset 0px 0px 17px -5px rgb(225 225 225 / 10%);
	}
	
	.progress-bar__circle-icon>svg {
	    display: none;
	    color: var(--dm-text-secondary);
	    height: var(--space-s);
	    width: var(--space-s);
	}
	
	.progress-bar__step {
	    display: flex;
	    width: var(--space-4xl);
	    position: relative;
	    flex-direction: column;
	    gap: 1rem;
	    justify-content: center;
	    align-items: center;
	    cursor: pointer;
	}
	
	.progress-bar__step--active .circle_icon {
	    background-color: var(--px-primary);
	    color: var(--dm-text-light);
	    border: 1px solid var(--px-primary);
	}
	
	.progress-bar__step--active .circle_icon>span,
	.cf-theme-dark .progress-bar__step--active .circle_icon>span {
	    color: var(--px-light);
	}
	
	.active .circle_icon>span {
	    color: var(--px-light);
	}
	
	.circle_icon>span {
	    display: block;
	    font-weight: 700;
	    font-size: 1.3rem;
	    color: var(--px-dark-60);
	}
	
	.cf-theme-dark .circle_icon>span, .cf-theme-dark .progress-bar__step-title {
	    color: var(--px-light-70);
	}
	
	.progress-bar__step-title {
	    font-weight: 700;
	    font-size: var(--text-xs);
	    color: var(--px-dark-70);
	    line-height: 1;
	    text-align: center;
	    margin: 0;
	}
	
	.progress-bar__step--active .progress-bar__step-title {
	    color: var(--px-primary);
	}
	
	.progress-bar__step:not(:last-child)::after {
	    content: "";
	    position: absolute;
	    top: 16px;
	    left: calc(50% + 16px);
	    width: calc(100% - 32px);
	    height: 2px;
	    background-color: var(--px-dark-30);
	}
	
	.cf-theme-dark .progress-bar__step:not(:last-child)::after {
	    background-color: var(--px-light-10);
	}
	
	.progress-bar__step--completed .progress-bar__circle-icon {
	    background-color: var(--px-success);
	    border: 1px solid var(--px-success);
	}
	
	.progress-bar__step--completed .circle_icon>span {
	    display: none;
	    color: var(--dm-text-secondary);
	}
	
	.progress-bar__step--completed .circle_icon>svg {
	    display: block;
	    color: var(--dm-text-secondary);
	    height: var(--space-s);
	    width: var(--space-s);
	}
	
	.progress-bar__step--completed p,
	.cf-theme-dark .progress-bar__step--completed p {
	    color: var(--px-success);
	}
	
	.progress-bar__step--completed.progress-bar__step::after,
	.cf-theme-dark .progress-bar__step--completed.progress-bar__step::after {
	    background-color: var(--px-success);
	}
	/* ----------- Progress bar end ------------- */
	
	/* ----------- Form questions ------------- */
	
	.question {
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    background: var(--dm-background-light);
	    padding: 1.5rem;
	    border: none;
	    border-radius: var(--radius-s);
	    width: 100%;
	    gap: var(--space-m);
	}
	  
	.question__wrap {
	    margin-bottom: 1rem;
	}
	  
	.question__title {
	    display: flex;
	    flex-direction: column;
	    font-weight: 700;
	}

	p.question__title {
		margin-block: var(--space-4xs);
	}
	  
	.question__title span:last-child {
	    font-size: var(--text-s);
	    font-weight: initial;
	    font-style: italic;
	}
	  
	.question__title span.required-asterisk {
	    margin-right: 0.5rem;
	}
	  
	.question__block {
	    display: flex;
	    flex-wrap: wrap;
	    gap: var(--space-s);
		margin-top: var(--space-2xs);
	    min-height: 2.5rem;
	    width: 100%;
	}
	  
	.question__block--multi {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		gap: var(--space-m);
		min-height: 2.5rem;
		width: 100%;
	}
	  
	.question__label {
	    display: flex;
	    background: var(--dm-background);
	    padding: 0.8rem 1rem;
	    border-radius: var(--radius-s);
	    cursor: pointer;
	    transition: all .15s linear;
	    box-shadow: inset 0px 0px 7px 0px rgb(193 193 193 / 26%), inset 0px 0px 17px -5px rgb(225 225 225 / 10%);
	    align-items: center;
	    min-width: 4rem;
	    justify-content: center;
	    font-weight: initial;
	}
	  
	.cf-theme-dark .question__label {
	    box-shadow: inset 0px 0px 7px 0px rgb(0 0 0 / 26%), inset 0px 0px 17px -5px rgb(0 0 0 / 69%);
	}
	  
	.question__label--secondary {
	    background: none;
	    cursor: initial;
	    padding: 0;
	    margin-bottom: 0.5rem;
	}
	  
	.question__answer {
	    display: flex;
	    background: var(--px-light-90);
	    padding: 0.4rem 0.8rem;
	    border-radius: var(--radius-s);
	}
	  
	.cf-theme-dark .question__answer {
	    display: flex;
	    background: var(--px-dark-40);
	    padding: 0.4rem 0.8rem;
	    border-radius: var(--radius-s);
	}
	  
	.question__input, .question__textarea {
	    display: flex;
	    background: var(--dm-background);
	    border-radius: var(--radius-s);
	    border: 0;
		margin-top: var(--space-2xs);
	    padding: var(--space-2xs);
	    width: 100%;
	    min-height: 3.298rem;
	}

	  
	.question__input--w100 {
	    width: 100%;
	}
	  
	/* Style the info icon */
	.question__info-icon {
	    display: flex;
	    position: relative;
	    cursor: pointer;
	    margin-left: 10px;
	    background-color: var(--dm-logo);
	    border-radius: 20rem;
	    align-content: center;
	    justify-content: center;
	    align-items: center;
	    width: 0.5rem;
	    height: 0.5rem;
	    padding: 0.8rem;
	}  
	
	/* Create the circle */
	.question__info-icon:before {
	    font-family: "fontello";
	    font-size: 1rem;
	    content: '\e800';
	    padding: 0.6rem;
	    line-height: 0;
	    color: var(--dm-text-secondary);
	    text-align: center;
	}
	  
	input[type="radio"]:checked + label [class^=".question__info-icon"]:before,
	  [class*=".question__info-icon"]:before {
	    background: #fff;
	    color: var(--px-primary);
	}
	
	/* Create the popup */
	.question__info-description {
	    display: none;
	    position: absolute;
	    top: 3rem;
	    right: -1rem;
	    z-index: 1;
	    min-width: 17.05rem;
	    height: auto;
	    background-color: var(--dm-toggle);
	    color: var(--dm-text-secondary);
	    border: 2px solid var(--dm-text);
	    border-radius: var(--radius-s);
	    padding: 1rem;
	    font-size: 1rem;
	}
	  
	/* Show the popup when the info icon is clicked or hovered */
	  .question__info-icon:hover .question__info-description {
	    display: block;
	}
	  
	/* Summary */
	.summary-doc {
	    border-top: 1px solid var(--px-dark-10);
	    padding-top: 2rem;
	}
	  
	.cf-theme-dark .summary-doc {
	    border-top: 1px solid var(--px-light-10);
	    padding-top: 2rem;
	}
	  
	.summary-doc__heading {
	    margin-bottom: 1rem;
	}
	  
	.summary-doc__result {
	    display: flex;
	    flex-direction: column;
	    padding: 1.5rem;
	    border-radius: var(--radius-s);
	    width: 100%;
	    background: var(--dm-background-light);
	}
	  
	.summary-doc__result-wrap {
	    display: flex;
	    flex-direction: row;
	    gap: var(--space-m);
	}
	  
	.summary-doc__result-item {
	    display: flex;
	    flex-direction: column;
	    margin-bottom: 1rem;
	}
	  
	.summary-doc__result-item p {
	    margin-bottom: 0;
	}

	.summary-doc__result-item-value {
		font-weight: 700;
		color: var(--dm-text-light);
	}
	  
	.summary-doc__chosen {
	    background: var(--dm-background);
	    padding: var(--space-xs);
	    border-radius: var(--radius-s);
	}

	/* group questions */
	/* ----------- group__question start ----------- */

	.group__question {
		width: 100%;
		margin-bottom: 10px;
		padding: var(--space-xs);
		color: var(--dm-text);
		text-align: left;
		background-color: var(--dm-background-light);
		border: 1px solid var(--dm-logo-paper);
		border-radius: var(--radius-s);
		cursor: pointer;
		-webkit-box-shadow: var(--shadow-m);
		box-shadow: var(--shadow-m);
		outline: none;
	}
	
	.group__question-title {
		display: block;
		position: relative;
		width: 100%;
		color: var(--px-primary);
		font-weight: 400;
		outline: none;
		-webkit-transition: background-color 0.3s ease;
		-o-transition: background-color 0.3s ease;
		transition: background-color 0.3s ease;
	}
	
	.group__question-title[aria-expanded="true"] .faq__icon {
		-webkit-transform: translateY(-50%) rotate(-135deg);
		-ms-transform: translateY(-50%) rotate(-135deg);
		transform: translateY(-50%) rotate(-135deg);
	}
	
	.group__question-wrap {
		overflow: hidden;
		-webkit-transition: height 0.3s ease;
		-o-transition: height 0.3s ease;
		transition: height 0.3s ease;
		display: flex;
		flex-direction: column;
		gap: var(--space-m);
	}
	
	.group__question-open {
		height: auto;
	}

	/* Thanks and download page */
	.thanks-page {
		background-color: var(--dm-background-light);
	    padding-top: var(--space-3xl);
	}
	  
	.download-doc__heading {
	    margin-bottom: 1rem;
	}
	  
	.download-doc__result {
	    display: flex;
	    flex-direction: column;
	    padding: 1.5rem;
	    border-radius: var(--radius-s);
	    width: 100%;
	    background: var(--dm-background);
	}
	  
	.download-doc__result-wrap {
	    display: flex;
	    flex-direction: row;
	    gap: var(--space-m);
	}
	  
	.download-doc__result-item {
	    display: flex;
	    flex-direction: column;
	    margin-bottom: 1rem;
	}
	  
	.download-doc__result-item p {
	    margin-bottom: 0;
	}

	.download-doc__result-item-value {
		font-weight: 700;
		color: var(--dm-text-light);
	}
	  
	.download-doc__chosen {
	    background: var(--dm-background-light);
	    padding: var(--space-xs);
	    border-radius: var(--radius-s);
	}

	.download-doc__icons {
		margin-bottom: var(--space-m);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: var(--space-xs);
		flex-wrap: wrap;
	}

	.download-doc__icons .px-btn {
		min-width: 15rem;
	}

	.download-doc__icons .step-card__icon {
		position: absolute;
		right: 0.5rem;
		bottom: -0.5px;
		height: 2rem;
	}
	
	/* Form navigation buttons */
	
	.form-navigation__buttons {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: var(--space-s);
	    margin-top: 1rem;
	}
	
	#form-start-over-two-step::backdrop {
	    background-color: rgba(0, 0, 0, 0.5);
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	}
	
	input[type="date"]::-webkit-calendar-picker-indicator {
	    background: url(https://cdn0.iconfinder.com/data/icons/evericons-24px-vol-2/24/calendar-512.png) no-repeat;
	    background-size: contain;
	    width: 1rem;
	    height: 1rem;
	    border: none;
	    margin-left: 5px;
	    vertical-align: middle;
		text-align: left;
	}
	
	.cf-theme-dark input[type="date"]::-webkit-calendar-picker-indicator {
	    filter: invert(1);
	}

    fieldset {
        width: 100%;
    }

    input[type="date"] {
        display: flex;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        -webkit-appearance: none;
        color: var(--dm-text);
        text-align: left;
        padding: var(--space-xs);
        margin-left: 0;
        min-height: 2.7rem;
        min-width: 100%;
    }
	  
	  /* Question terms styles */
	.question__terms {
	    display: flex;
	    flex-direction: row;
	    font-size: var(--text-m);
	    column-gap: var(--space-xs);
	  }
	  
	.question__required--terms {
	    background: var(--px-error-10);
	    color: var(--px-error);
	    padding: var(--space-xs);
	    border-radius: var(--radius-s);
	}
	  
	.cf-theme-dark .question__required--terms {
	    background: var(--px-error-40);
	    color: var(--px-light);
	}
	  
	/* Signature styles signature_pad.js */
	
	#signature-pad {
	    position: relative;
	    border: 2px dashed var(--px-primary);
	    background: var(--px-light);
	    border-radius: var(--radius-s);
	    margin: 0 0 1rem 0;
	    text-align: center;
	    min-height: 220px;
	    max-width: 50rem;
	    transition: all .2s ease 0s;
	    overflow: hidden;
	}
	  
	#signature-pad canvas {
		position: absolute;
		left: 0;
		top: 0;
	    width: 100%;
	    height: 100%;
	}
	
	#signature-pad #reset {
	    position: absolute;
	    z-index: 10;
	    right: 10px;
	    top: 10px;
	    border: 0;
	    background: var(--px-dark-50);
	    color: var(--px-light);
	    padding: 5px 10px;
	    border-radius: 5px;
	    line-height: 1;
		transition: all .2s ease 0s;
	}  
	
	#signature-pad #reset:hover {
	    background: var(--px-warning);
	}

	::placeholder,
	input[type=date]:invalid::-webkit-datetime-edit {
	    color: #5A5858;
	}
	
	.cf-theme-dark ::placeholder,
	.cf-theme-dark input[type=date]:invalid::-webkit-datetime-edit {
	    color: #ACAAAA;
	}


/* ts select */
	.ts-control {
		display: flex;
		gap: 0.4rem;
		border-radius: var(--radius-s);
		border: 0;
		background-color: var(--dm-background);
		align-items: center;
		font-size: var(--text-m);
		margin-top: var(--space-2xs);
		padding: var(--space-xs);
		min-height: 52.77px;
	}

	.ts-control:last-child {
		margin-bottom: 0;
	}

	.ts-control:after {
		border-color: var(--dm-text) transparent transparent;
		border-style: solid;
		border-width: 5px 5px 0;
		content: " ";
		display: block;
		height: 0;
		margin-top: -3px;
		position: absolute;
		right: 1rem;
		top: 50%;
		width: 0;
	}

	.ts-wrapper.dropdown-active .ts-control:after {
		display: none;
	}

	.full .ts-control {
		background-color: var(--dm-background);
	}

	.ts-control, 
	.ts-wrapper.single.input-active .ts-control {
		background-color: var(--dm-background);
		color: var(--dm-text);
		padding: var(--space-2xs);
	}

	.ts-dropdown, .ts-control, .ts-control input {
	    color: var(--dm-text);
	    font-size: var(--text-m);
		line-height: initial;
	}

	.ts-wrapper.multi.has-items .ts-control {
		padding-right: 0.7rem;
	}

	.ts-control > input {
	    background: var(--dm-background);
	    border: 0;
	    border-radius: 0;
	    max-width: 100%;
	}

	.ts-dropdown {
	    border: 1px solid var(--dm-light);
	    background: var(--dm-background);
	    margin: -.4rem .25rem 0 0;
	    box-sizing: border-box;
	    box-shadow: var(--shadow-m);
	    border-radius: 0 0 var(--radius-xs) var(--radius-xs);
	}

	.ts-dropdown .option, 
	.ts-dropdown .no-results, 
	.ts-dropdown .create {
		padding: var(--space-xs);
	}

	.ts-dropdown .optgroup-header {
		background-color: var(--px-dark-90);
		color: var(--px-light);
		font-size: calc(var(--text-s) * 1.1);
	}

	.ts-dropdown .active {
	    background-color: var(--px-primary-30);
	    color: var(--dm-text);
	    border-radius: var(--radius-xs);
	}

	.ts-dropdown .active.create {
		color: var(--px-secondary-d-4);
		background-color: var(--px-secondary);
	}

	.ts-wrapper.multi .ts-control > div {
		background-color: var(--px-primary);
		color: #fff;
		border: 0;
		font-size: var(--text-xs);
		margin-bottom: 0;
		padding: 0.3rem;
		border-radius: var(--radius-xs);
	}

	.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
	    border-left: 1px solid var(--px-primary-d-2);
	}

	.ts-dropdown-content {
	    max-height: 250px;
	}
	
	/* custom breakpoint */
	@media (max-width: 1400px) {
	    
	}
	
	@media (max-width: 1250px) {
	
	}
	
	@media (max-width: 992px) {
	
	}
	
	@media (max-width: 768px) {
	
	}
	
	@media (max-width: 480px) {
		li.progress-bar__step {
			width: 20%;
		}
	
		.form-navigation__buttons {
			flex-direction: column-reverse;
		}
	
		.summary-doc__result-wrap {
			flex-direction: column;
			align-items: center;
			row-gap: 0;
		}
	
		.summary-doc__result-wrap div {
			align-content: space-between;
			width: 100%;
		}
	}   

	#question_1364, #question_1365, #question_1366 {
		display: none;
	}