.loader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.loader.out .loader_cont{
    transform: scale(0.8);
    opacity: 0;
}
.loader_cont{
    width: 148px;
    text-align: center;
    height: auto;
    transition: all 300ms;
}
.loader_cont .loader_cont_{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
/*.loader_cont img{
    width: 100px;
    margin-bottom: 10px;
}*/
.progress {
    width: 100%;
    height: 8px;
}
.progress > svg {
    height: 100%;
    display: block;
}



.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 72px;
  height: 30px;
}
.lds-ellipsis div {
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #002066;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
