
.jc-aj-error {
	background-color: rgba(255,0,0,0.7);
	color: white;
	text-align: center;
}
.jc-aj-error a{
	color: white;
}
.jc-aj-error .detailed{
    padding: 2px;
    margin: 2px 10px;
    cursor: pointer;
    background: none;
    border: 1px solid #000;
    float: right;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: none;
    opacity: 0.2;
}
.jc-aj-error .detailed:hover,
.jc-aj-error .detailed:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.7;
}

.jc-aj-error-report {
	position: relative;
	border: 1px solid silver;
	padding: 3px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.7);
	color: white;text-align: left;
	top: -10px;
	left: 10%;
	width: 80%;
}
.jc-aj-error-response {
	background-color: white;
	color: black;
}
.jc-aj-error-response > textarea,
.jc-aj-error-response > .jc-aj-error-response-iframe{
	width: 100%;
	min-height: 300px;
}
.jc-aj-error-report .detailed{
    border: 1px solid #FFF;
    color: #FFF;
    background-color: #777;
}

.jc-aj-loader-parent{
	min-width: 48px;
    min-height: 48px;
    position: absolute;
    white-space: nowrap;
    text-align: center;
    border-radius: 3px;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}
.jc-aj-loader-parent:before {
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    content: '';
}
.jc-aj-loader {
    display: inline-block;
    white-space: normal;
    vertical-align: middle;
	text-align: left;
}

.jc-aj-loader {
  position: relative;
  margin: 0px auto;
  max-width: 64px;
  max-height: 64px;
  min-width: 48px;
  min-height: 48px;
  width: 100%;
  height: 100%;
}

.jc-aj-circular {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
  stroke: #91c749;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}