/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */

.loader{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    top: 0px;
    left: 0px;
    z-index: 9999;
}
.la-ball-spin-rotate,
.la-ball-spin-rotate > div {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.la-ball-spin-rotate {
    display: block;
    font-size: 0;
    color: #007fff;
}
.la-ball-spin-rotate div:nth-child(1){
    color: #333b46;
}
.la-ball-spin-rotate div:nth-child(2){
    color: #c95ce3;
}
.la-ball-spin-rotate.la-dark {
    color: #333;
}
.la-ball-spin-rotate > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-ball-spin-rotate {
    width: 32px;
    height: 32px;
    -webkit-animation: ball-spin-rotate 2s infinite linear;
       -moz-animation: ball-spin-rotate 2s infinite linear;
         -o-animation: ball-spin-rotate 2s infinite linear;
            animation: ball-spin-rotate 2s infinite linear;
            position: absolute;
            z-index: 3;
            left: 50%;
            top: 50%;
            margin-top: -16px;
            margin-left: -16px;
}
.la-ball-spin-rotate > div {
    position: absolute;
    top: 0;
    width: 60%;
    height: 60%;
    border-radius: 100%;
    -webkit-animation: ball-spin-bounce 2s infinite ease-in-out;
       -moz-animation: ball-spin-bounce 2s infinite ease-in-out;
         -o-animation: ball-spin-bounce 2s infinite ease-in-out;
            animation: ball-spin-bounce 2s infinite ease-in-out;
}
.la-ball-spin-rotate > div:last-child {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
       -moz-animation-delay: -1.0s;
         -o-animation-delay: -1.0s;
            animation-delay: -1.0s;
}
.la-ball-spin-rotate.la-sm {
    width: 16px;
    height: 16px;
}
.la-ball-spin-rotate.la-2x {
    width: 64px;
    height: 64px;
}
.la-ball-spin-rotate.la-3x {
    width: 96px;
    height: 96px;
}
/*
 * Animations
 */
@-webkit-keyframes ball-spin-rotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-moz-keyframes ball-spin-rotate {
    100% {
        -moz-transform: rotate(360deg);
             transform: rotate(360deg);
    }
}
@-o-keyframes ball-spin-rotate {
    100% {
        -o-transform: rotate(360deg);
           transform: rotate(360deg);
    }
}
@keyframes ball-spin-rotate {
    100% {
        -webkit-transform: rotate(360deg);
           -moz-transform: rotate(360deg);
             -o-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes ball-spin-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
@-moz-keyframes ball-spin-bounce {
    0%,
    100% {
        -moz-transform: scale(0);
             transform: scale(0);
    }
    50% {
        -moz-transform: scale(1);
             transform: scale(1);
    }
}
@-o-keyframes ball-spin-bounce {
    0%,
    100% {
        -o-transform: scale(0);
           transform: scale(0);
    }
    50% {
        -o-transform: scale(1);
           transform: scale(1);
    }
}
@keyframes ball-spin-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
           -moz-transform: scale(0);
             -o-transform: scale(0);
                transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
}

/*Drugi spinner*/

.loaderSmall {
  height: 14px;
  width: 14px;
  -webkit-animation: loadSmall 0.8s infinite linear;
  animation: loadSmall 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  margin: 0 auto;
  top: 16px;
  position: relative;
}
@-webkit-keyframes loadSmall {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}
@keyframes loadSmall {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}