﻿.main_loader{
    position: fixed;
    top: 0px;
    left:0px;
    right:0px;
    width:100%;
    height:100%;
    text-align: center;
    z-index: 1100;
    display: none;
}
.loader-bg{
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    width:100%;
    height:100%;
    background-color: #fff;
    opacity: 0.9;
}
.loader {
    position: relative;
    margin: 0 auto;
    top: 38%;
    width: 180px;
    height: 180px;
}

.main_loader_2{
    position: fixed;
    top: 0px;
    left:0px;
    right:0px;
    width:100%;
    height:100%;
    text-align: center;
    z-index: 1100;
    display: none;
}

.loader-bg-2{
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    width:100%;
    height:100%;
}

.loader-2 {
    position: relative;
    margin: 0 auto;
    top: 38%;
    width: 180px;
    height: 180px;
}

.barra {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hor {
  background: #26CE22;
  width: 114px;
  height: 40px;
  border-radius: 20px;
  position: relative;
  animation: horizontal 2s infinite linear;
}
.ver {
  background: #26CE22;
  height: 114px;
  width: 40px;
  border-radius: 20px;
  position: relative;
  animation: vertical 2s infinite linear;
}
.hor svg {
  position: absolute;
  right: 20px;
  top: 10px;
  transform: scale(1.5);
  animation: dots 2s infinite linear;
}
.ver svg {
  transform: rotate(90deg) scale(1.5);
  position: absolute;
  right: 13px;
  bottom: 16px;
  animation: dots 2s infinite linear;
}
@keyframes dots {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes horizontal {
  0% {
    width: 40px;
  }
  20% {
    width: 40px;
  }
  30% {
    width: 114px;
  }
  36% {
    width: 124px;
  }
  40% {
    width: 114px;
  }
  90% {
    width: 114px;
  }
  100% {
    width: 40px;
  }
}
@keyframes vertical {
  0% {
    height: 40px;
  }
  30% {
    height: 40px;
  }
  40% {
    height: 114px;
  }
  46% {
    height: 124px;
  }
  50% {
    height: 114px;
  }
  94% {
    height: 114px;
  }
  100% {
    height: 40px;
  }
}