/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 * Loader reference from : https://loading.io/css/
 */
.cLoading {
    position: relative;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 0px;
  border: 4px solid #f00;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #f00 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error_comment_msg {
    background: red;
    color: #fff;
    display: block;
    float: left;
    width: 100%;
    padding: 8px;
    margin: 8px 0 0;
    border-left: 5px solid #000;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
//.single-post [action*="wp-comments-post.php"] [type="submit"]{pointer-events: none;}
.single-post .cLoading [type="submit"] {
    display: inline-block !important;
}