

form.m3contacts.m3form {
    display: flex;
    flex-direction: column;
    gap: 1.9em;
}

form.m3contacts.m3form ::placeholder {
    color: #bbb;
}

form.m3contacts.m3form input[type="text"], form.m3contacts.m3form input[type="email"], form.m3contacts.m3form textarea {
    padding: 0.6em 0.8em;
    border-radius: 0;
    max-width: 540px;
	border: 1px solid #ddd;
	transition: border-color 0.3s ease;
}

form.m3contacts.m3form input:focus, form.m3contacts.m3form textarea:focus {
    outline: none;
    border: 2px solid #FF0013;
}

p.submit-wrapper {
    margin: 0;
}

form.m3contacts.m3form input[type="submit"] {
    background-color: #FF0013;
    color: #fff;
    line-height: 1;
    padding: 0.7em 1.3em;
    border: none;
    border-radius: 0;
    font-weight: 500;
	font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#m3f-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 2;
    cursor: pointer;
}

#m3f-overlay div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    background: url(img/spinner.gif) no-repeat;
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
}

#m3f-overlay-b {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.9);
    z-index: 2;
}

.m3f-success-msg {
    background-color: #000;
    color: #fff;
    font-weight: 500;
    font-size: 1.2em;
    padding: 1em 1.5em !important;
	max-width: 520px;
}



