.cquote-footer{
	display: flex;
}
p.cquote_error {
    color: #e2401c;
}
.cquote-half{
  width: 49%;
  float:left;
}
.cquote-full{
  clear: both;
}
.cquote_loader {
  display: none;
  width: 33px;
  height: 33px;
}
.cquote_submission_form p {
  margin-left: 5px;
}
.cquote_loader:after {
  content: " ";
  display: block;
  width: 40px;
  height: 40px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #fff transparent #000 transparent;
  animation: cquote_loader 1.2s linear infinite;
}
@keyframes cquote_loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}