/*!
 * Single Element Spinner
 * http://codepen.io/jonginwon/pen/emfFD
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}


.loader {
  margin: 18px auto;
  width: 40px;
  height: 40px;
  border: 2px solid #0cf;
  border-radius: 50%;
  animation: spin 1.00s infinite linear;
/*  -ms-animation: spin 1.00s infinite linear;*/
  -webkit-animation: spin 1.00s infinite linear;
/*  -moz-animation: spin 1.00s infinite linear;*/
}
.loader::before,
.loader::after {
  left: -2px;
  top: -2px;
  display: none;
  position: absolute;
  content: '';
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
}

.loader_box {
  background-color: rgba(255,255,255,0.85);
  position: absolute;
  top: 45%;
  left: calc(50% - 32px);
  width: 76px;
  height: 76px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  /*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/

   display: none; 
}

@media (max-width: 480px) {
  .loader {
    margin: 15px auto;
    width: 30px;
    height: 30px;
  }

  .loader_box {
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    /*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/

     display: none; 
  }
}


/*
 * LOADER 1
 */
.loader-1 {
  border-top-width: 0;
}


/*
 * LOADER 2
 */
.loader-2 {
  border-top-color: transparent;
}
.loader-2::after {
  display: block;
  left: -2px;
  top: -2px;
  border: inherit;
  transform: rotate(65deg);
}


/*
 * LOADER 3
 */
.loader-3,
.loader-3::before,
.loader-3::after {
  display: inline-block;
  border-color: transparent;
  border-top-color: #0cf;
  animation-duration: 1.2s;
}
.loader-3::before {
  transform: rotate(120deg);
}
.loader-3::after {
  transform: rotate(240deg);
}

/*
 * LOADER 4
 */
.loader-4 {
  border-top-color: transparent;
}
.loader-4::after {
  display: block;
  border-color: transparent;
  border-top-color: #0cf;
  animation: spin 1.25s infinite linear reverse;
}


/*
 * LOADER 5
 */
.loader-5,
.loader-5::before {
  display: inline-block;
  border-color: transparent;
  border-top-color: #0cf;
}
.loader-5::before {
  animation: spin 1.5s infinite ease;
}


/*
 * LOADER 6
 */
.loader-6 {
  border-color: transparent;
  border-top-color: #0cf;
  animation-duration: 5s;
}
.loader-6::after {
  display: block;
  border-color: transparent;
  border-top-color: #0cf;
  animation: spin 0.75s infinite ease-in-out alternate;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}


@media (max-width: 480px) {

}