/* Minification failed. Returning unminified contents.
(11,32): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
 */
html,
body {
    /* height: 100%; */
}

body {
    /*display: -ms-flexbox;
    /* display: -webkit-box; */
    /* display: flex; */
    /*-ms-flex-align: center;*/
    /*-ms-flex-pack: center;*/*/
    /* -webkit-box-align: center; */
    /* align-items: center; */
    /* -webkit-box-pack: center; */
    /* justify-content: center; */
    /* padding-top: 40px; */
    /* padding-bottom: 40px; */
    /* background-color: #f5f5f5; */
}

.form-contact {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}

    .form-contact .checkbox {
        font-weight: 400;
    }

    .form-contact .form-control {
        position: relative;
        box-sizing: border-box;
        height: auto;
        padding: 0px;
        font-size: 16px;
        display: unset;
    }

        .form-contact .form-control:focus {
            z-index: 2;
        }

    .form-contact input[type="email"] {
        margin-bottom: 10px;
        padding: 4px;
        border-radius:0;
        border-top:none;
        border-left:none;
        border-right:none;
        border-bottom: 1;
        outline: 1px !important;
        background:transparent;
    }


    .form-contact input[type="text"] {
        margin-bottom: 10px;
        padding: 4px;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1;
        outline: 1px !important;
        background: transparent;
    }

    .form-contact textarea {
        margin-bottom: 10px;
        padding: 4px;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1;
        outline: 1px !important;
        background: transparent;
    }

.btn-center {
    display: unset;
}
label {
    position: relative;
    display: block;
}

.form-contact span {
    pointer-events: none;
    position: absolute;
    left: 10px;
    top: 0;
    transition: 0.2s;
    transition-timing-function: ease;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.5;
}

input {
    padding: 0px;
}

    input:focus + span, input:not(:placeholder-shown) + span {
        opacity: 0.5;
        transform: scale(0.9) translateY(-100%) translateX(0px);
    }

    /* For IE Browsers*/
    input:focus + span, input:not(:-ms-input-placeholder) + span {
        opacity: 0.5;
        transform: scale(0.9) translateY(-100%) translateX(0px);
    }
textarea {
    padding: 0px;
}

    textarea:focus + span, textarea:not(:placeholder-shown) + span {
        opacity: 0.5;
        transform: scale(0.9) translateY(-100%) translateX(0px);
    }

    /* For IE Browsers*/
    textarea:focus + span, textarea:not(:-ms-textarea-placeholder) + span {
        opacity: 0.5;
        transform: scale(0.9) translateY(-100%) translateX(0px);
    }
