/*T
WT frontend styles
*/
.twt_error {
    color: #D8000C;
}
.twt-loader {
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
}
@media (max-width: 30px), (max-height: 30px) {
  .twt-loader {
    font-size: 10px;
  }
}
.twt-loader:before, .twt-loader:after {
  content: "";
  top: 0;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  border-width: 0.5em;
  border-style: double;
  border-color: transparent;
  box-sizing: border-box;
  border-radius: 1em;
  -webkit-animation: spin 1.5s infinite;
  animation: spin 1.5s infinite;
}
.twt-loader:after {
  left: 0;
  border-left-color: #c7c7c7;
}
.twt-loader:before {
  right: 0;
  border-right-color: #c7c7c7;
  -webkit-animation-delay: -0.375s;
          animation-delay: -0.375s;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}