﻿input[id="btnShortFormSubmit"]:disabled {
    opacity: 0.5;
}

.mm-btn-blue-bg {
    background-color: #1C326B;
    border: solid 2px #1C326B !important;
    color: #fff;
    text-decoration: none;
}

.ev-form-container {
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ev-form-header {
    background: linear-gradient(135deg, #1C326B 0%, #2a4a8f 100%);
    padding: 25px;
    text-align: center;
}

.ev-intro-text {
    text-align: center;
    color: #4d4d4d;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.6;
}

/* Modern Input Wrapper */
.modern-input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

/* Base Form Control Styles */
.ev-form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Myriad Pro', sans-serif;
}

/* Floating Label */
.floating-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #4d4d4d;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 4px;
    font-family: 'Myriad Pro', sans-serif;
    font-weight: normal;
}

/* Floating label for textarea */
textarea.ev-form-control + .floating-label {
    top: 20px;
    transform: none;
}

/* Active/Focused Label State */
.ev-form-control:focus + .floating-label,
.ev-form-control:not(:placeholder-shown) + .floating-label,
.ev-form-control.has-value + .floating-label {
    top: -10px;
    left: 10px;
    font-size: 16px;
    color: #4d4d4d;
    transform: none;
    font-weight: normal;
    background-color: #ededed;
}

/* Required Asterisk */
.floating-label .required {
    color: #dc3545;
    margin-left: 2px;
}

/* Focus State */
.ev-form-control:focus {
    border-color: #ff8201;
    box-shadow: 0 0 0 3px rgba(255, 130, 1, 0.1);
    background-color: #fff;
}

/* Hover State */
.ev-form-control:hover:not(:focus) {
    border-color: #ffa500;
}

/* Valid State */
.ev-form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

    .ev-form-control:valid:not(:placeholder-shown):focus {
        border-color: #ff8201;
        box-shadow: 0 0 0 3px rgba(255, 130, 1, 0.1);
    }

/* Invalid State */
.ev-form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.ev-form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Textarea Specific */
textarea.ev-form-control {
    min-height: 120px;
    resize: vertical;
    padding-top: 14px;
}

/* Dropdown Specific Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

    .custom-select-wrapper select.ev-form-control {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 18px;
        padding-right: 45px;
        cursor: pointer;
    }

        .custom-select-wrapper select.ev-form-control:focus {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8201' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }

        .custom-select-wrapper select.ev-form-control:disabled {
            background-color: #f5f5f5;
            cursor: not-allowed;
            opacity: 0.6;
        }

    /* Select option styling */
    .custom-select-wrapper select option {
        padding: 10px;
        color: #333;
    }

    /* Loading State for Dropdown */
    .custom-select-wrapper.loading::after {
        content: '';
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #ff8201;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.custom-select-wrapper.loading select {
    opacity: 0.6;
    pointer-events: none;
}

/* SubIndustry Animation */
.SubIndustryNone {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.SubIndustryBlock {
    display: block;
    opacity: 1;
    max-height: 100px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Button */
.ev-btn-submit {
    background: linear-gradient(135deg, #1C326B 0%, #2a4a8f 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(28, 50, 107, 0.3);
}

    .ev-btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(28, 50, 107, 0.4);
        background: linear-gradient(135deg, #2a4a8f 0%, #1C326B 100%);
    }

    .ev-btn-submit:active:not(:disabled) {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(28, 50, 107, 0.3);
    }

    .ev-btn-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

/* reCAPTCHA Container */
.recaptcha-wrapper {
    text-align: center;
}

.g-recaptcha {
    display: inline-block;
}

/* Error Messages */
.field-validation-error {
    color: #dc3545;
    font-size: 16px;
    margin-top: 6px;
    display: block;
}

.validation-summary-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    color: #721c24;
}

/* Success State Icon (Optional) */
.input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ev-form-control:valid:not(:placeholder-shown) ~ .input-icon.success {
    opacity: 1;
    color: #28a745;
}

.ev-form-control:invalid:not(:placeholder-shown):not(:focus) ~ .input-icon.error {
    opacity: 1;
    color: #dc3545;
}

/* Responsive Design */
@media (max-width: 767px) {
    .ev-form-body {
        padding: 25px 20px;
    }

    .ev-form-control {
        padding: 11px 12px;
        font-size: 16px;
    }

    .floating-label {
        font-size: 16px;
    }

    .modern-input-wrapper {
        margin-bottom: 20px;
    }

    .custom-select-wrapper {
        margin-bottom: 20px;
    }

    .ev-btn-submit {
        width: 100%;
        padding: 12px 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ev-form-body {
        padding: 28px 22px;
    }
}

/* Remove old margin classes if they conflict */
.text-box-padding {
    padding: 0 8px;
}

@media (max-width: 767px) {
    .text-box-padding {
        padding: 0;
    }
}

.img_shadow {
    webkit-box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
}

ul.product_ul {
    list-style: none;
    padding: 0;
}

li.product_li {
    padding-left: 1.3em;
}

.product_li {
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin: 10px 0px;
}

li.product_li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
    color: #FF8201;
}

.slider-for img {
    height: 400px;
    object-fit: cover;
}

.slider-nav img {
    width: 220px !important;
    height: 150px;
    object-fit: cover;
}

.slider-nav .slick-slide {
    margin: 0 10px;
}

.slick-prev {
    z-index: 1;
    left: 25%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    cursor: pointer;
    margin: 0;
    top: 50%;
    background: #ff8201;
    border-radius: 50%;
}

    .slick-prev:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 4px;
        right: 9px;
        top: 11px;
        -webkit-transform: rotate(-224deg);
        -o-transform: rotate(-224deg);
        transform: rotate(-224deg);
        height: 11px;
        width: 11px;
        opacity: 1;
    }

.slick-next {
    z-index: 1;
    right: 25%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    cursor: pointer;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #ff8201;
    border-radius: 50%;
    top: 50%;
}

    .slick-next:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        height: 11px;
        width: 11px;
        right: 12px;
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 1;
    }

.slider-nav .slick-prev:hover, .slider-nav .slick-prev:focus, .slider-nav .slick-next:hover, .slider-nav .slick-next:focus {
    background: #ff8201 !important;
}

.slider-nav {
    margin-bottom: 0px !important;
}

.card-with-img .item-wrap .card .card-body h4 {
    font-size: 30px;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    min-height: 72px;
}

.card-with-img .item-wrap .card .card-body {
    padding: 30px 40px !important;
    background-color: rgb(255, 255, 255);
}

.card-with-img .item-wrap .card .card-img {
    height: 200px !important;
}

@media (min-width: 1601px) {
    body .redesign-2020 .banner-slider .bg-img {
        height: 602px;
    }

    .EV_Charging_Station_POV_Height {
        height: 602px;
    }
}

@media (min-width : 992px) and (max-width: 1200px) {
    .card-with-img .item-wrap .card .card-img img.EV_videoImg {
        height: 200px !important;
    }

    .card-with-img .item-wrap .card .card-body {
        padding: 30px 20px !important;
    }

    .slick-prev {
        left: 20%;
    }

    .slick-next {
        right: 20%;
    }
}

.img_shadow {
    webkit-box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
}

ul.product_ul {
    list-style: none;
    padding: 0;
}

li.product_li {
    padding-left: 1.3em;
}

.product_li {
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    margin: 10px 0px;
}

li.product_li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
    color: #FF8201;
}

.slider-for img {
    height: 400px;
    object-fit: cover;
}

.slider-nav img {
    width: 220px !important;
    height: 150px;
    object-fit: cover;
}

.slider-nav .slick-slide {
    margin: 0 10px;
}

.slick-prev {
    z-index: 1;
    left: 25%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    cursor: pointer;
    margin: 0;
    top: 50%;
    background: #ff8201;
    border-radius: 50%;
}

    .slick-prev:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        padding: 4px;
        right: 9px;
        top: 11px;
        -webkit-transform: rotate(-224deg);
        -o-transform: rotate(-224deg);
        transform: rotate(-224deg);
        height: 11px;
        width: 11px;
        opacity: 1;
    }

.slick-next {
    z-index: 1;
    right: 25%;
    width: 33px;
    height: 33px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    cursor: pointer;
    margin: 0;
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #ff8201;
    border-radius: 50%;
    top: 50%;
}

    .slick-next:before {
        content: "";
        position: absolute;
        border: solid #FFFFFF;
        border-width: 0 4px 4px 0;
        display: inline-block;
        height: 11px;
        width: 11px;
        right: 12px;
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 1;
    }

.slider-nav .slick-prev:hover, .slider-nav .slick-prev:focus, .slider-nav .slick-next:hover, .slider-nav .slick-next:focus {
    background: #ff8201 !important;
}

.slider-nav {
    margin-bottom: 0px !important;
}

.card-with-img .item-wrap .card .card-body h4 {
    font-size: 30px;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    min-height: 72px;
}

.card-with-img .item-wrap .card .card-body {
    padding: 30px 40px !important;
    background-color: rgb(255, 255, 255);
}

.card-with-img .item-wrap .card .card-img {
    height: 200px !important;
}

@media (min-width: 1601px) {
    body .redesign-2020 .banner-slider .bg-img {
        height: 602px;
    }

    .EV_Charging_Station_POV_Height {
        height: 602px;
    }
}

@media (min-width : 992px) and (max-width: 1200px) {
    .card-with-img .item-wrap .card .card-img img.EV_videoImg {
        height: 200px !important;
    }

    .card-with-img .item-wrap .card .card-body {
        padding: 30px 20px !important;
    }

    .slick-prev {
        left: 20%;
    }

    .slick-next {
        right: 20%;
    }

    ._min_height_cert {
        min-height: 155px !important;
    }
}

@media (min-width : 768px) and (max-width: 991px) {
    .card-with-img .item-wrap .card .card-img img.EV_videoImg {
        height: 220px !important;
    }

    .card-with-img .item-wrap .card .card-body {
        padding: 30px !important;
    }

    .slick-prev {
        left: 30%;
    }

    .slick-next {
        right: 30%;
    }

    ._min_height_cert {
        min-height: 155px !important;
    }

    .schmidt_margin_gsa {
        margin: 0px 30px;
        text-align: right;
    }
}

@media (max-width : 767px) {
    .card-with-img .item-wrap .card .card-body p {
        font-size: 20px !important;
    }

    .card-with-img .item-wrap .card .card-img {
        height: auto !important;
    }

    .slick-prev {
        left: 15%;
    }

    .slick-next {
        right: 15%;
    }
}

.ev-body {
    background-color: #EDEDED;
}

.ev-form-container {
    background-color: #e8e8e8;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ev-form-body {
    padding: 25px;
    background-color: #ededed;
}

.ev-intro-text {
    text-align: center;
    color: #4d4d4d;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
    text-wrap: balance;
}

.ev-form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

.ev-form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    background-color: white;
    width: 100%;
    margin: 6px 0px;
}

    .ev-form-control:focus {
        border-color: #ffc107;
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
        outline: none;
    }

textarea.ev-form-control {
    min-height: 100px;
    resize: vertical;
}

.ev-btn-container {
    text-align: center;
    margin-top: 15px;
}

.ev-required {
    color: #dc3545;
}

.mmplus_landing_banner_box {
    width: auto;
    height: auto;
    max-width: 650px;
    background: #22346BD9 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: fit-content;
}

.SubIndustryNone {
    display: none;
}

@media (max-width : 767px) {
    .card-with-img .item-wrap .card .card-body p {
        font-size: 20px !important;
    }

    .card-with-img .item-wrap .card .card-img {
        height: auto !important;
    }

    .slick-prev {
        left: 15%;
    }

    .slick-next {
        right: 15%;
    }
}

@media (min-width : 1201px) {
    ._min_height_cert {
        min-height: 150px !important;
    }
}
