.elc_form{
	width:420px;
	position:relative;
}
.elc_form .elc_title{
    font-size: 25px;
    line-height: 30px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.elc_form .elc_text a{
	text-decoration:none;
}
.elc_form .elc_ok_mess{
	margin-top:15px;
}
.elc_form .elc_string{
    width: 420px;
    margin: 0 0 10px 0;
    font-size: 16px;
    padding-top: 25px;
    position: relative;
}
.elc_form .elc_string input {
    background: none;
    border: none;
    width: 420px;
    height: 24px;
    display: block;
    font-size: 16px;
    font-weight: normal;
    z-index: 2;
    position: relative;
}
.elc_form .elc_string label {
    margin: 0;
    top: 25px;
    left: 0;
    display: block;
    position: absolute;
    font-size: 16px;
    z-index: 1;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    -ms-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
	opacity:0.5;
}
.elc_form .elc_string.active label {
    top: 5px;
    font-size: 14px;
    opacity: 1;
}
.elc_form .elc_string:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-size: 100% 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    z-index: 3;
}
.elc_form .elc_string.text{
	padding-top:45px;
}
.elc_form .elc_string.text:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 45px;
    width: 0;
    height: 1px;
    background-size: 100% 100%;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
    z-index: 3;
}
.elc_form .elc_string.active:after {
    width: 100%;
}
.elc_form .elc_string.text.active:before {
    width: 100%;
}
.elc_form .elc_string.text label{
	top:20px;
}
.elc_form .elc_string textarea{
	width:400px;
	height:100px;
	padding:10px;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
	display:block;
	resize: none;
	background:none
}
.elc_form .elc_string.textarea.active label{
	top: 20px;
    font-size: 14px;
    opacity: 1;
}
.elc_form .elc_string.elc_captha img{
	position:absolute;
	right:0;
	top:13px;
}
.elc_form .elc_string.elc_captha input{
	width:210px;
}
.elc_form .submit{
    width: 136px;
    height: 36px;
    line-height: 36px;
    cursor: pointer;
    display: block;
    margin: 32px 0 0 0;
    text-align: center;
    font-size: 18px;
    background: none;
    box-sizing: initial;
    padding: 0;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
	position:relative;
	z-index:2;
}
.elc_form .submit:before{
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.elc_form .submit:hover::before{
	width:50%;
}
.elc_form .submit:after{
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.elc_form .submit:hover::after{
	width:50%;
}
.elc_form .elc_string.error label {
    opacity: 1;
}

/* Secondary contact field used as a server-side bot signal. It stays in the DOM
   (not type=hidden/display:none) but is outside the visual viewport and skipped
   by keyboard/screen-reader navigation. */
.form-secondary-contact {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0.01 !important;
    pointer-events: none !important;
}

/* v35: shared presentation for permanently visible inline request forms. */
.elc-inline-request {
    padding: 2rem 0;
}

.elc-inline-request .lead {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.elc-inline-request .personal-data-checkboxes--flex {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.elc-inline-request .personal-data-checkboxes--flex > .checkbox {
    flex: 0 1 auto;
    min-width: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.elc-inline-request .personal-data-checkboxes--flex .checkbox label {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding-left: 0;
    font-weight: 400;
}

.elc-inline-request .personal-data-checkboxes--flex .checkbox input[type="checkbox"] {
    position: static;
    flex: 0 0 auto;
    margin: .2rem 0 0;
}

.elc-inline-request .personal-data-checkboxes__text {
    min-width: 0;
}

/* Footer callback: the existing green presentation, now attached to a reusable modifier. */
.elc-inline-request--green {
    background: #15ad66;
    color: #fff;
}

.elc-inline-request--green .btn-primary {
    background: #fff;
    border-color: #fff;
    color: #15ad66;
}

.elc-inline-request--green .btn-primary:hover,
.elc-inline-request--green .btn-primary:focus {
    background: #e6e6e6;
    border-color: #e6e6e6;
    color: #15ad66;
}

.elc-inline-request--green a {
    color: #fff;
    text-decoration: underline !important;
}

.elc-inline-request--green .formError {
    color: #000;
}

/* Future/new project form: same structure as footer, but on a white background. */
.elc-inline-request--light {
    background: #fff;
    color: inherit;
}

.elc-inline-request--light .btn-primary {
    background: #15ad66;
    border-color: #15ad66;
    color: #fff;
}

.elc-inline-request--light .btn-primary:hover,
.elc-inline-request--light .btn-primary:focus {
    background: #0f9256;
    border-color: #0f9256;
    color: #fff;
}

.elc-inline-request--light a {
    color: #15ad66;
}

/* /finishing inline form: standard renderer with the landing visual treatment. */
.elc-inline-request--finishing {
    padding: 0;
}

.elc-inline-request--finishing .elc-inline-request__title {
    font-size: 16px !important;
    margin-bottom: 20px !important;
}

.elc-inline-request--finishing .elc-inline-request__subtitle {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 30px;
}

.elc-inline-request--finishing .form-group {
    margin-bottom: 30px;
}

.elc-inline-request--finishing .form-control {
    height: 3.05rem;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #b3b3b3;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.elc-inline-request--finishing .form-control:focus {
    border-bottom-color: #f95a1e;
    box-shadow: none;
}

.elc-inline-request--finishing .btn-primary {
    width: auto;
    height: auto;
    padding: 23px 32px;
    background-color: #f95a1e;
    border-color: #f95a1e;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
}

.elc-inline-request--finishing .btn-primary:hover,
.elc-inline-request--finishing .btn-primary:focus {
    background-color: #db4109;
    border-color: #db4109;
}

.elc-inline-request--finishing .btn-primary:disabled {
    background-color: #db4109 !important;
    border-color: #db4109 !important;
    opacity: .6;
}

.elc-inline-request--finishing .personal-data-checkboxes--flex {
    display: block;
}

.elc-inline-request--finishing .personal-data-checkboxes--flex > .checkbox {
    width: 100%;
    margin-bottom: .75rem;
}

.elc-inline-request--finishing .personal-data-checkboxes--flex > .checkbox:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .elc-inline-request .personal-data-checkboxes--flex > .checkbox {
        flex-basis: 100%;
        min-width: 0;
    }

    .elc-inline-request--finishing .elc-inline-request__subtitle {
        font-size: 17px;
    }

    .elc-inline-request--finishing .btn-primary {
        padding: 17px 28px !important;
        font-size: 14px !important;
    }
}
