SECTION.request-form{
	padding: 50px 0;
}

.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(--primaryColor);
}

.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(--primaryColor);
    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-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%);
}

#lpt-online .form-option-content{
    min-height: auto;
}

.form-option-content:hover{
    background: #eef5fd;
}

.form-option-icon{
    width: 100px;
    margin-bottom: 20px;
}

#lpt-solution .form-option-icon{
    width: 100%;
    margin-bottom: 30px;
}

.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(--primaryColor);
}

.form-step-explanation{
    margin-top: 40px;
    background: var(--light);
    padding: 40px;
}

.form-step-explanation span{
    font-size: 1rem;
}

/* NAV */

.form-step-nav{
    text-align: center;
}

button.lpt-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(--primaryColor);
	transition: all .3s;
}

button.lpt-form-button-previous:hover{
	color: var(--dark);
}

/* GRID DISPLAY*/

.grid-container{
    display: flex;
    justify-content: space-between;
}

.grid-main{
    width: 600px;
    padding-right: 50px;
}

.grid-side{
    width: 350px;
}

/* SIDEBAR SELECTION*/

.lpt-form-selection{
    background-color: #fff;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    margin-bottom: 40px;
}

.lpt-fs-head{
    background-color: #eef5fd;
    padding: 20px;
}

.lpt-fs-body{
    background-color: #fff;
    padding: 20px;
    font-size: .9rem;
}

.lpt-fs-step:not(:last-child){
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd; 
}

.lpt-fs-data-group{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.lpt-fs-data-head{
    width: 50%;
    font-weight: 500;
    padding-right: 10px;
}

.lpt-fs-data{
    width: 50%;
}

/* REGULARS */

.lpt-form-label-radio{
    cursor: pointer;
}

.form-radio{
    visibility: hidden;
    display: none;
}

.form-radio:checked + label > .form-option-content{
    background: #eef5fd;
}

.lpt-form-text{
    width: 100%;
    font-size: 1rem;
    padding: .85rem;
    color: #000;
    border: 1px solid #ddd;
}

.lpt-form-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;
}

.lpt-form-privacy-label{
    cursor: default;
}

.lpt-form-privacy-label-check{
    display: inline!important;
    font-size: 1rem!important;
    font-weight: 300!important;
}

.form-submit{
    width: 100%;
}

/* 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);
  }

/* PACKAGE DISPLAY */

.lpt-form SECTION.packages{
    background: var(--light);
    margin-top: 50px;
    padding-top: 50px;
}

.lpt-form span.package-title{
    font-size: 16pt;
}

.lpt-form .package-main ul {
    min-height: 18rem;
}

/* 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-user-section .flex-between{
        display: block;
    }

    .form-group-el {
        width: 100%;
    }

    .form-group-row > div:first-child{
        margin-bottom: 25px;
    }
}