.maestrel-contact-form .form-error,
.maestrel-cf-error {
color: #F04826;
display: block;
font-weight: bold;
}
.maestrel-cf-column-half {
float: left;
width: 48%;
}
.maestrel-cf-column-third {
float: left;
width: 30.66%;
}
.maestrel-cf-column-half,
.maestrel-cf-column-third {
margin-right: 4%;
}
.maestrel-cf-column-half:last-of-type,
.maestrel-cf-column-third:last-of-type {
margin-right: 0;
}
.maestrel-cf-details-form-stacked .maestrel-cf-column-half,
.maestrel-cf-details-form-stacked .maestrel-cf-column-third {
float: none;
width: 100%;
}
.maestrel-cf-explanation {
font-style: italic;
}
.maestrel-cf-error,
.maestrel-cf-msg-send,
.maestrel-cf-processing {
display: none;
font-weight: bold;
}
.maestrel-cf-loader {
display: inline-block;
height: 6px;
margin-left: 6px;
position: relative;
}
.maestrel-cf-loader span {
display: block;
width: 6px;
height: 6px;
border-radius: 10px;
animation: loader 1.5s linear infinite;
position: absolute;
left: 0;
}
.maestrel-cf-loader span:nth-of-type(2) {
left: 10px;
animation-delay: 0.2s;
}
.maestrel-cf-loader span:nth-of-type(3) {
left: 20px;
animation-delay: 0.4s;
}
@keyframes loader {
0% {
transform: scale(1);
}
10% {
transform: scale(1.6);
}
20% {
transform: scale(1);
}
100% {
transform: scale(1);
}
}