.loading-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loader-wrapper{
    width: 250px;
    position: relative;
    top: 25px;
}
.loading-wrapper .container {
    position: relative;
    top: 10px;
    width: 250px;
  }
  
  .loading-wrapper  .loader {
    height: 20px;
    width: 250px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .loading-wrapper .loader:after{
    content: "";
    position: absolute;
    top: 11px;
    left: 11px;
    width: calc(100% - 18px);
    height: 1px;
    background: rgba(0,0,0,0.4);
    z-index: 1;
  }
  .loading-wrapper .loader--dot {
    animation-name: loader;
    animation-timing-function: cubic-bezier(0.37, 0.16, 0.58, 0.83);
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 22px;
    width: 25px;
    border-radius: 7px;
    background-color: black;
    position: absolute;
    border: 1px solid rgba(0,0,0,0.2);
  }
  .loading-wrapper .loader--dot:first-child {
    background-color: hsl(325, 46%, 60%);
    animation-delay: 0.5s;
    z-index: 2;
  }
  .loading-wrapper .loader--dot:nth-child(2) {
    background-color: hsl(325 ,46%, 63%);
    animation-delay: 0.4s;
    z-index: 3;
  }
  .loading-wrapper .loader--dot:nth-child(3) {
    background-color: hsl(325, 46%, 76%);
    animation-delay: 0.3s;
    z-index: 4;
  }
  .loading-wrapper .loader--dot:nth-child(4) {
    background-color: hsl(325, 46%, 70%);
    animation-delay: 0.2s;
    z-index: 5;
  }
  .loading-wrapper .loader--dot:nth-child(5) {
    background-color: hsl(325, 46%, 73%);
    animation-delay: 0.1s;
    z-index: 6;
  }
  .loading-wrapper .loader--dot:nth-child(6) {
    background-color: hsl(325, 46%, 76%);
    animation-delay: 0s;
    z-index: 7;
  }
  .loading-wrapper .loader--dot:nth-child(7) {
    background-color: hsl(325, 46%, 80%);
    animation-delay: 0s;
    z-index: 8;
  }
  .loading-wrapper  .loader--text-wrapper {
    text-align: center;
    font-size: 16px;
    width: 250px;
  }
  .loader-slide{
    visibility: hidden;
    opacity: 0;
    height: 0;
  }
  .loader-slide.visible{
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  .loader--text-wrapper .loader--text:nth-child(1){
    animation-delay: 1s;
  }
  .loader--text-wrapper .loader--text:nth-child(2){
    animation-delay: 2s;
  }
  .loader--text-wrapper .loader--text:nth-child(3){
    animation-delay: 3s;
  }
  .loader--text-wrapper .loader--text:nth-child(4){
    animation-delay: 4s;
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    }
    70% {
      -moz-box-shadow: 0 0 0 10px rgba(255, 208, 0, 0.2);
      box-shadow: 00 0 0 10px rgba(255, 208, 0, 0.2);
    }
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
  
  @keyframes loader {
    15% {
      transform: translateX(0);
    }
    45% {
      transform: translateX(230px);
    }
    65% {
      transform: translateX(230px);
    }
    95% {
      transform: translateX(0);
    }
  }
  @keyframes loading-text {
    0% {
      content: "Loading";
    }
    25% {
      content: "Loading.";
    }
    50% {
      content: "Loading..";
    }
    75% {
      content: "Loading...";
    }
  }



  .loader1{
	position: relative;
	height: 80px;
	width: 80px;
	border-radius: 80px;
	border: 3px solid  rgba(0,255,255, .7);

	top: 28%;
	top: -webkit-calc(50% - 43px);
	top: calc(50% - 43px);
	left: 35%;
	left: -webkit-calc(50% - 43px);
	left: calc(50% - 43px);

	-webkit-transform-origin: 50% 50%;
			transform-origin: 50% 50%;
	-webkit-animation: loader1 3s linear infinite;
			animation: loader1 3s linear infinite;
}

.loader1:after{
	content: "";
	position: absolute;
	top: -5px;
	left: 20px;
	width: 11px;
	height: 11px;
	border-radius: 10px;
	background-color: red;
}

@-webkit-keyframes loader1{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}

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





#loader-2 span{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #3498db;
    margin: 35px 5px;
  }
  
  #loader-2 span:nth-child(1){
    animation: bounce 1s ease-in-out infinite;
  }
  
  #loader-2 span:nth-child(2){
    animation: bounce 1s ease-in-out 0.33s infinite;
  }
  
  #loader-2 span:nth-child(3){
    animation: bounce 1s ease-in-out 0.66s infinite;
  }
  
  @keyframes bounce{
    0%, 75%, 100%{
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
    }
  
    25%{
      -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      -o-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  }
  