
/* Form Desktop */

.form-wrapper .form-group {
    position: relative;
    margin-bottom: 1rem;
    width: 49%;
}


.form-wrapper .form-group input {
    width: 100%;
    padding: 0.85rem 0.5rem;
    border: 1px solid #000;
    border-radius: 0.3rem;
    font-size: 1rem;
    background-color: transparent;
    color: #000;
    font-family: 'Avenir', sans-serif;
    font-family: 'Almoni DL AAA';
    font-weight: 400;
    outline: none;
}
.form-wrapper .ac-inputs-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-wrapper .form-group label {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    transition: all 0.3sease;
    font-size: 1rem;
    color: #000;
    pointer-events: none;
    background-color: #fff;
    padding: 0 0.5rem;
    font-family: 'Avenir', sans-serif;
    font-family: 'Almoni DL AAA';
    /* opacity: 0;*/
}


.form-wrapper .form-group.active label {
    top: 0rem;
    right: 1rem;
    color: #000;
    background: #fff;
    padding: 0 5px;
    font-family: 'Avenir', sans-serif;
    font-family: 'Almoni DL AAA';
    font-weight: 400;
    /* opacity: 1; */
}
.form-wrapper .btn-send{
    width: 100%;

}
.form-wrapper .btn-send button {
    padding: 0.85rem 0.5rem;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    font-family: 'Avenir';
    font-family: 'Almoni DL AAA';
    text-align: center;
    width: 100%;
    transition: color 0.5s, background-color 0.5s;
    font-weight: 600;
    font-size: 1.5rem;
}
.form-wrapper .btn-send button:hover{
    background-color: #fff;
    color:#000;
}




/* input::-webkit-input-placeholder {
    color: #fff;
    font-size: 1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Avenir';
    font-weight: 400;
}

input::-moz-placeholder {
    color: #fff;
    font-size: 1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Avenir';
       font-weight: 400;
}

input:-ms-input-placeholder {
    color: #fff;
    font-size: 1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Avenir';
       font-weight: 400;
}

input:-moz-placeholder {
    color: #fff;
    font-size: 1rem;
    text-indent: 0.1rem;
    transition: text-indent 0.5s;
    font-family: 'Avenir';
       font-weight: 400;
} */

input:hover::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
    text-indent: 1rem;
}

input:hover:-moz-placeholder,
input:focus:-moz-placeholder {
    /* Firefox 18- */
    text-indent: 1rem;
}

input:hover::-moz-placeholder,
input:focus::-moz-placeholder {
    /* Firefox 19+ */
    text-indent: 1rem;
}

input:hover:-ms-input-placeholder,
input:focus:-ms-input-placeholder {
    text-indent: 1rem;
}
legend{
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.ac-form-mob-text{
    display: none
}

/* End Form Desktop */
@media(max-width:1023px){
    .form-wrapper {
        position: fixed;
        bottom: -150vw;
        width: 100%;
        right: 0;
        z-index: 999999;
        padding: 5%;
        background-color: #000;
        transition: bottom 0.3s ease-out;
        padding-top: 15%;
    }
    .form-wrapper.ny-active {
        bottom: 0;
    }
    legend {
        display: block;
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
        color: #fff;
    }
    #ny-close {
        position: absolute;
        left: 5%;
        font-size: 36px;
        color: #fff;
        background: transparent;
        border: 0;
        top: 10px;
        transform: rotate(45deg);
    }
    .form-wrapper .form-group {
        position: relative;
        margin-bottom: 1rem;
        width: 100%;
    }
    .form-wrapper .form-group input {
        border: 1px solid #fff;
        color:#fff;
    }
    .form-wrapper .form-group label {
        color: #fff;
        background-color: #000;
    }
    .form-wrapper .form-group.active label {
        color: #fff;
        background-color: #000;
    }
    .form-wrapper .btn-send button {
        background-color: #fff;
        color: #000;
    }
    .ac-form-mob-text{
        display: inline-block;
        color: #fff;
        text-align: center;
        font-size: 1.3rem;
        margin-top: 4vw;
        align-items: center;
        margin: 4vw auto 0;
        width: 100%;

    }
    .ac-form-mob-text img{
        width: 3.5vw;
        height: 3.5vw;
        display: inline;
    }
   
}