.loader {
  display: inline-block;
  background: url(img/loading.svg) no-repeat center center;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  animation: spin 2s linear infinite; }
  .loader.big {
    border: 3px solid transparent;
    /* Light grey */
    border-top: 3px solid #6e6b6a;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    background: none;
    width: 200px;
    height: 200px;
    border-width: 20px; }

.loader_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(11, 11, 11, 0.3);
  z-index: 99999; }

.loader_wrap {
  position: relative;
  margin: 0 auto;
  width: 500px;
  background: none;
  padding: 100px 0;
  text-align: center; }

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

/*# sourceMappingURL=loader.css.map */
