.cardLoader .wrapper {background: #fff;width: 100%;display: flex; flex-direction: column;}

.cardLoader .wrapper-cell {
  display: flex;
  margin-bottom: 30px;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.cardLoader  .animated-background, .cardLoader  .text-line, .cardLoader  .image {
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: #F6F6F6;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

.cardLoader  .image {
  height: 60px;
  width: 60px;
}

.cardLoader  .text {
	flex: 1;
  margin-left: 20px;
}

.cardLoader  .text-line {
  height: 10px;
  width: auto; /*230px;*/
  margin: 4px 0;
}