/*Copyright (c) 2015 OBiBa. All rights reserved.
* This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0.
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see  <http://www.gnu.org/licenses>

* obiba-progressbar - v1.0.1
* Date: 2016-11-29
 */
.obiba-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 3px;
  background: #29d;
  z-index: 100000;
}

.obiba-progress-spinner {
  display: block;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100001;

  -webkit-animation: obiba-progress-spinner-kf 400ms linear infinite;
  animation: obiba-progress-spinner-kf 400ms linear infinite;
}

.obiba-progress-spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50% !important;
}

.animation-off {
  -webkit-animation-name: none;
  animation-name: none;
}

@-webkit-keyframes obiba-progress-spinner-kf {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes obiba-progress-spinner-kf {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
