.loader_1
{
  width: 100%;
  height: 350px;
}

.relative {
  position: relative;
}

.eq-ui-loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -120px 0 0 -120px;
  width: 240px;
  height: 240px;
}

.eq-ui-loader-ring_for_material {
  position: absolute;
  top: 15%;
  left: 50%;
  margin: -120px 0 0 -120px;
  width: 240px;
  height: 240px;
}



.eq-ui-loader-ring-light {
  width: 240px;
  height: 240px;
  -moz-border-radius: 240px;
  -webkit-border-radius: 240px;
  border-radius: 240px;
  -moz-box-shadow: 0 4px 0 #1bbc9b inset;
  -webkit-box-shadow: 0 4px 0 #1bbc9b inset;
  box-shadow: 0 4px 0 #1bbc9b inset;
  animation: rotate-360 2s linear infinite;
}

.eq-ui-loader-ring-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  -moz-border-radius: 240px;
  -webkit-border-radius: 240px;
  border-radius: 240px;
  -moz-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1) inset;
}



.loader_4
{
  width: 100%;
  height: 350px;
}

.relative {
  position: relative;
}

.eq-ui-loader-ring-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -120px 0 0 -120px;
  width: 50px;
  height: 50px;
}

.eq-ui-loader-ring_for_material-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}



.eq-ui-loader-ring-light-mini {
  width: 50px;
  height: 50px;
  -moz-border-radius: 240px;
  -webkit-border-radius: 240px;
  border-radius: 240px;
  -moz-box-shadow: 0 2px 0 #1bbc9b inset;
  -webkit-box-shadow: 0 2px 0 #1bbc9b inset;
  box-shadow: 0 2px 0 #1bbc9b inset;
  animation: rotate-360 2s linear infinite;
}

.eq-ui-loader-ring-track-mini {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  -moz-border-radius: 240px;
  -webkit-border-radius: 240px;
  border-radius: 240px;
  -moz-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1) inset;
}


@keyframes rotate-360 {
  from {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader_2
{
  height: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.eq-ui-loader-line {
  height: 6px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #ddd;
}
.eq-ui-loader-line:before{
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 6px;
  background-color: #1bbc9b;
  animation: loading 2s linear infinite;
}

.eq-ui-loader-line-lazy {
  height: 6px;
  width: 100%;
  position: fixed;
  overflow: hidden;
  background-color: #ddd;
  bottom: 0px;
}
.eq-ui-loader-line-lazy:before{
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 6px;
  background-color: #1bbc9b;
  animation: loading 2s linear infinite;
}

@keyframes loading {
  from {left: -200px; width: 30%;}
  50% {width: 30%;}
  70% {width: 70%;}
  80% { left: 50%;}
  95% {left: 120%;}
  to {left: 100%;}
}







