/* loder */
.card-loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
}
.card-loader {
    display: block;
    position: relative;
    left: 50%;
    /* top: 50%; */
	z-index: 1101; /* anything higher than z-index: 1000 of .card-loader-section */
}
.card-loader-wrapper p{
	color: white;
	font-size: 2em;
  line-height: 1.5em;
	position: relative;
	/* top:50vh; */
	z-index:1101;
}
.card-loader-wrapper .card-loader-section {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222222;
    z-index: 1100;
	opacity:0.5;
}

@-webkit-keyframes card-loder-fadeout {
    0% {
        /* display:none; */
        /* opacity: 1; */
    }
    100% {
        opacity: 0;
        z-index: -5;
    }
}

@keyframes card-loder-fadeout {
    0% {
        /* display:none; */
        /* opacity: 1; */
    }
    100% {
        opacity: 0;
        z-index: -5;
    }
}
.card-loder-fadeout {
    -webkit-animation: card-loder-fadeout 0.8s;
            animation: card-loder-fadeout 0.8s;
    -webkit-animation-fill-mode: forwards;
    /* display:none;
    transition: all 13.3s ease; */
}

/* loader animation */
.card-lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 34px;
    left:-32px;
  }
  .card-lds-ellipsis div {
    position: absolute;
    top: 10px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
            animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .card-lds-ellipsis div:nth-child(1) {
    left: 6px;
    -webkit-animation: lds-ellipsis1 0.6s infinite;
            animation: lds-ellipsis1 0.6s infinite;
  }
  .card-lds-ellipsis div:nth-child(2) {
    left: 6px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
            animation: lds-ellipsis2 0.6s infinite;
  }
  .card-lds-ellipsis div:nth-child(3) {
    left: 26px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
            animation: lds-ellipsis2 0.6s infinite;
  }
  .card-lds-ellipsis div:nth-child(4) {
    left: 45px;
    -webkit-animation: lds-ellipsis3 0.6s infinite;
            animation: lds-ellipsis3 0.6s infinite;
  }
  @-webkit-keyframes lds-ellipsis1 {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes lds-ellipsis1 {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @-webkit-keyframes lds-ellipsis3 {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
  }
  @-webkit-keyframes lds-ellipsis2 {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    100% {
      -webkit-transform: translate(19px, 0);
              transform: translate(19px, 0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    100% {
      -webkit-transform: translate(19px, 0);
              transform: translate(19px, 0);
    }
  }