/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-cog,
.la-cog > div {
  position: relative;

  box-sizing: border-box;
}

.la-cog {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-cog.la-dark {
  color: #333;
}

.la-cog > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-cog {
  width: 31px;
  height: 31px;
}

.la-cog > div {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-style: dashed;
  border-width: 2px;
  border-radius: 100%;

  animation: cog-rotate 4s linear infinite;
}

.la-cog > div:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 2px solid currentColor;
  border-radius: 100%;
}

.la-cog.la-sm {
  width: 15px;
  height: 15px;
}

.la-cog.la-sm > div {
  border-width: 1px;
}

.la-cog.la-sm > div:after {
  border-width: 1px;
}

.la-cog.la-2x {
  width: 61px;
  height: 61px;
}

.la-cog.la-2x > div {
  border-width: 4px;
}

.la-cog.la-2x > div:after {
  border-width: 4px;
}

.la-cog.la-3x {
  width: 91px;
  height: 91px;
}

.la-cog.la-3x > div {
  border-width: 6px;
}

.la-cog.la-3x > div:after {
  border-width: 6px;
}

/*
 * Animation
 */

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