.form-holder {
    max-width: 1000px;
    margin: 0 auto;
}

.form-header {
    align-items: center;
    margin-bottom: 30px;
}

.form-title{
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primaryGreen);
}

.form-usp{
    font-size: 1rem;
    font-weight: 600;
}

.form-step-progress{
    margin-bottom: 10px;
}

.form-step-progress-indicator{
    width: 100%;
    background-color: #eef5fd;
    border-radius: 3px;
    overflow: hidden;
}

.form-step-progress-indicator-filler{
    height: 6px;
    background-color: var(--primaryGreen);
    transition: .3s;
}

.form-steps{
    padding: 40px 10px 0;
}

.form-step-header{
    padding-bottom: 20px;
}

.form-sub-question{
    display: block;
    text-align: center;
    font-weight: 600;
}

.form-step-options-section{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.form-step-option{
    width: 250px;
    margin: 0 15px 30px;
}

.form-step-row-text {
    width: 100%;
    max-width: 450px;
}

.form-option-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 220px;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
}

.form-option-content:hover{
    background: var(--secundaryGreen);
}

.form-option-icon{
    width: 100px;
    margin-bottom: 20px;
}

.form-option-content span{
    font-weight: 500;
}

.form-error-display{
    padding: 10px 0 20px;
}

.form-error {
    display: block;
    height: 1rem;
    line-height: 1rem;
    color: var(--black);
}

/* NAV */

.form-step-nav{
    text-align: center;
}

button.form-button-previous {
	display: inline-block;
	border: none;
	font-size: 1rem;
	font-weight: 400;
	padding: 0.6rem 1.6rem;
	border-radius: 0.3rem;
	position: relative;
	background: none;
	color: var(--black);
	transition: all .3s;
}

button.form-button-previous:hover {
	color: var(--primaryGreen);
}

/* GRID DISPLAY*/

.grid-main {
    width: 600px;
    padding-right: 50px;
}

.grid-side {
    width: 350px;
}

/* SIDEBAR SELECTION*/

.form-selection {
    background-color: #fff;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    margin-bottom: 40px;
}

.fs-head {
    background-color: var(--secundaryGreen);
    padding: 20px;
}

.fs-body {
    background-color: #fff;
    padding: 20px;
    font-size: .9rem;
}

.fs-step:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd; 
}

.fs-data-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.fs-data-head {
    width: 50%;
    font-weight: 500;
    padding-right: 10px;
}

.fs-data {
    width: 50%;
}

/* REGULARS */

.form-label-radio {
    cursor: pointer;
}

.form-radio{
    visibility: hidden;
    display: none;
}

.form-radio:checked + label > .form-option-content {
    background: var(--secundaryGreen);
}

.form-input-text {
    width: 100%;
    font-size: 1rem;
    padding: .85rem;
    margin-top: .5rem;
    color: #000;
    border: 1px solid #ddd;
}

.form-input-textarea {
    width: 100%;
    font-size: 1rem;
    font-family: inherit;
    padding: .85rem;
    color: #000;
    border: 1px solid #ddd;
    resize: none;
}

.form-select option{
    padding: 10px;
}

/* FORM GRID styling */

.form-user-section {
    width: 100%;
}

.form-group-row {
    margin-bottom: 25px;
}

.form-group-el {
    width: calc(50% - 15px);
}

.form-group-row label {
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.form-group-row input, .form-group-row textarea {
    margin-top: 5px;
}

.form-privacy-label {
    cursor: default;
}

.form-privacy-label-check {
    display: inline!important;
    font-size: 1rem!important;
    font-weight: 300!important;
}

.form-submit {
    width: 100%;
}

/* USP's */

.form-usp-section {
    gap: .75rem;
}

.form-usp-container {
    gap: .75rem;
}

.form-usp-container img {
    width: 1rem;
    height: 1rem;
    margin-top: .3rem;
}

.banner-list-item {

}

/* Custom Select */

.custom-select{
    position: relative;
    width: 100%;
}

.custom-select select {
    width: 100%;
    display: none; /*hide original SELECT element: */
}

  .select-selected {
    background-color: #fff;
    border: 1px solid #333;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 22px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
  }

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 16px;
  }
  
  /* style the items (options), including the selected item: */
  .select-items div,.select-selected {
    color: #000;
    padding: .72rem;
    border: 1px solid #ddd;
    cursor: pointer;
  }
  
  /* Style items (options): */
  .select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 17rem;
    overflow-y: auto;
    z-index: 99;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }

/* RESPONSIVE */

@media screen and (max-width: 900px){
    /* GRID DISPLAY*/

    .grid-container {
        display: block;
    }

    .grid-main{
        width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .grid-side{
        width: 100%;
    }
}

@media screen and (max-width: 550px){
    /* GRID DISPLAY*/

    .form-group-row {
        display: block;
    }

    .form-group-el {
        width: 100%;
    }

    .form-group-row > div:first-child {
        margin-bottom: 25px;
    }
}