.p01-contact * {
    box-sizing: border-box;
}
.p01-contact {
}
.p01-contact .field {
    margin-top: .5em;
}
.p01-contact .field.inline {
    margin-top: 1em;
}
.p01-contact label {
    width: 100%;
    float: left;
    margin-bottom: 3px;
    font-size: 10px !important;
    font-weight: 400;
}
.field.name, .field.email, .field.tel {
    display: inline-block;
    width: 32%;
    top: 0px;
    margin-right: 2%;
    float: inherit;
    vertical-align: top;
    padding: 0px;
    margin-top: 0px !important;
	margin-bottom:20px;
}
.field.tel {
	margin-right: 0px;
}
.p01-contact label .description{
    font-size: .875em;
    color: #888;
    float: right;
}
.p01-contact input:not([type=radio]):not([type=checkbox]), .p01-contact textarea, .p01-contact select {
    border: 1px solid #BEBEBE;
    padding: 7px;
    margin: 0px;
    transition: all 0.30s ease-in-out;
    outline: none;
    width: 100%;
    vertical-align: top;
}
.p01-contact .send-btn {
    float: left;
    background: #7AB4B3!important;
    border: 1px solid #7AB4B3 !important;	
    border-radius: 0px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    width: auto !important;
    min-width: 200px;
    transition: 0.5s all;
	-webkit-appearance: none;
}
.p01-contact .send-btn:hover {
    border: 1px solid #7AB4B3 !important;
    background: #fff !important;
	color: #70b2be !important;
	transition: 0.5s all;
}
.p01-contact textarea {
    height: 123px;
}
.p01-contact input:focus,
.p01-contact textarea:focus,
.p01-contact select:focus{
    box-shadow: 0 0 8px #88D5E9;
    border: 1px solid #88D5E9;
}
.p01-contact input[type=submit]:not([type=radio]):not([type=checkbox]), .p01-contact input[type=button]:not([type=radio]):not([type=checkbox]) {
    background: #4B99AD;
    padding: 3px 15px 3px 15px;
    margin: 1em 0;
    font-size: 12px;
    border: none;
    color: #fff;
}
.p01-contact input[type=submit]:hover,
.p01-contact input[type=button]:hover{
    background: #4691A4;
    box-shadow:none;
}
.p01-contact .required label:after {
    content: ' *';
    color: #4B99AD;
    font-weight: bold;
}
.p01-contact input[type=radio],
.p01-contact input[type=checkbox] {
    vertical-align: middle;
}
.p01-contact :not(.inline) .options {
    display: flex;
    border: 1px solid #ddd;
    padding: .5em;
}
.p01-contact :not(.inline) .options .option {
    margin: 0 1em;
}
.p01-contact .options input {
    display: inline-block;
    margin-right: .5em;
}
.p01-contact .error-msg {
    color: red;
    margin-left: 0;
    position: absolute;
    top: 65px;
    width: 100%;
    right: 0px;
    font-size: 12px;
}
input:invalid,
textarea:invalid {
    box-shadow: none;
}

.p01-contact .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.p01-contact .alert.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.p01-contact .alert.failed {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

