.base {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 100px;
  margin: auto;
}

.base__loader {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 45px;
  height: 45px;
  font: normal normal normal normal 15px / 24px Palanquin, Roboto, Helvetica, Arial, sans-serif;
}

.circle {
  fill: none;
  stroke: rgb(94, 173, 215);
  stroke-dasharray: 64.7883, 125.664;
  stroke-dashoffset: -27.7664px;
  stroke-linecap: round;
  stroke-miterlimit: 20;
  stroke-width: 5px;
  font: normal normal normal normal 15px / 24px Palanquin, Roboto, Helvetica, Arial, sans-serif;
  transition: transform 0.75s ease-in-out 0s;
}

.rotate {
  display: block;
  -webkit-animation: spin1 2s infinite linear;
  -moz-animation: spin1 2s infinite linear;
  -o-animation: spin1 2s infinite linear;
  -ms-animation: spin1 2s infinite linear;
  animation: spin1 2s infinite linear;
}

@-webkit-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin1 {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes spin1 {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}

@-ms-keyframes spin1 {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
