.ba-loading {
  animation: rotate 2s linear infinite;
  width: 16px;
  height: 16px;
}

.ba-loading-path {
  stroke: #337ab7;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.inactive {
  display: none;
}

.attachments li span a {
  padding: 0px !important;
  background: none;
}
