.form-group {
    font-size: 14px;
}

.form-control {
    /*    border: none;*/
    border: solid 2px rgba(175, 176, 178, 0.6);
    font-size: 14px;
    border-radius: 0px;
}


.element-form input[type="text"]{
    border: none;
    box-shadow: none;
    border: 1px solid #adadad;
/*    border-radius: 30px;*/
    padding: 15px;
    height: auto;
    margin-bottom: 30px;
    background-color: #fff;
    color: #000;
}

/**/

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.35) !important;
    opacity: 1.0;
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.35) !important;
    opacity: 1.0;
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.35) !important;
    opacity: 1.0;
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.35) !important;
    opacity: 1.0;
}

textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-color: #fff;
    /*    background: rgba(255, 255, 255, 0.025);*/
/*    border-radius: 0px;*/
    border: none;
    border: solid 2px rgba(255, 255, 255, 0.125);
    color: #333;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
}

/*Custom*/
#contactus .form-control:focus {
    border-color: #afb0b2;
}

#contactus dt {
    display: none;
}

form#mail_form input[type="button"] {
    padding: 9px 15px;
    vertical-align: middle;
    line-height: 1;
    background: #afb0b2;
    border: 1px solid #afb0b2;
    border-radius: 0px;
    color: #313131;
    font-family: inherit;
    -webkit-appearance: none;
    font-size: 100%;
}

.error_blank {
    font-size: 1em;
    color: #990000;
}

form#mail_form input , textarea#mail_contents{
    font-size: 16px;
}

/* loading */
/*
.loading-layer {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
}
*/

span.mloading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    margin: -2rem 0 0 -2rem;
    text-indent: -9999rem;
    border-radius: 50%;
    background: #233b6f;
    background: -moz-linear-gradient(left, #233b6f 10%, rgba(35,59,111, 0) 42%);
    background: -webkit-linear-gradient(left, #233b6f 10%, rgba(35,59,111, 0) 42%);
    background: -o-linear-gradient(left, #233b6f 10%, rgba(35,59,111, 0) 42%);
    background: -ms-linear-gradient(left, #233b6f 10%, rgba(35,59,111, 0) 42%);
    background: linear-gradient(to right, #233b6f 10%, rgba(35,59,111, 0) 42%);
    -webkit-animation: loading 1s infinite linear;
    animation: loading 1s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

span.mloading:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    content: "";
    background: #233b6f;
    border-radius: 100% 0 0 0;
}

span.mloading:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 94%;
    height: 94%;
    content: "";
    background: #fff;
    border-radius: 50%;
}

