﻿ .btn-loading {
    display: none;
    margin-right:5px;
}
.spinner
{
  -webkit-animation: rotation 1.4s linear infinite;
  animation: rotation 1.4s linear infinite;
}

@-webkit-keyframes rotation
{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

@keyframes rotation
{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}

.circle
{
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: turn 1.4s ease-in-out infinite;
  animation: turn 1.4s ease-in-out infinite;
}

@-webkit-keyframes turn
{
  0% {
    stroke-dashoffset: 187;
  }

  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

@keyframes turn
{
  0% {
    stroke-dashoffset: 187;
  }

  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

/*svg:nth-child(1){stroke:#e51c23;}
svg:nth-child(2){stroke:#e91e63;}
svg:nth-child(3){stroke:#9c27b0;}
svg:nth-child(4){stroke:#673ab7;}
svg:nth-child(5){stroke:#3f51b5;}
svg:nth-child(6){stroke:#5677fc;}
svg:nth-child(7){stroke:#03a9f4;}
svg:nth-child(8){stroke:#00bcd4;}
svg:nth-child(9){stroke:#009688;}
svg:nth-child(10){stroke:#259b24;}
svg:nth-child(11){stroke:#8bc34a;}
svg:nth-child(12){stroke:#cddc39;}
svg:nth-child(13){stroke:#ffeb3b;}
svg:nth-child(14){stroke:#ffc107;}
svg:nth-child(15){stroke:#ff9800;}
svg:nth-child(16){stroke:#ff5722;}
svg:nth-child(17){stroke:#795548;}
svg:nth-child(18){stroke:#9e9e9e;}
svg:nth-child(19){stroke:#607d8b;}*/

.loader-white {stroke:#fff;}
.loader-sogo {stroke:#00aeef;}
