.box_error_animete{
    animation-name: box_error_animate;
    animation-duration: 0.6s;
    animation-iteration-count: 3;

}

@keyframes box_error_animate{
    0%{
        outline: none   }
    100%{
        outline: solid 3px  #c15b5b 
    }
}


@keyframes linear_spinner{
  from{
    margin-left: 0;
  }
  to{
      margin-left: 100%;
  }
}

  .title {
  width: 40%;
}
.link {
  width: 60%;
}
.description {
  width: 70%;
}
.shimmer {
  padding: 5px;
  width: 95%;
  height: 120px;
  margin: 10px auto;
  background: #ffffff;
}
.shimmer .image-card {
  height: 90px;
  width: 90px;
  float: right;
  border-radius: 8px;
}
.stroke {
  height: 15px;
  background: #777;
  margin-top: 20px;
}

.wrapper {
  width: 0px;
  animation: fullView 0.5s forwards linear;
}

@keyframes fullView {
  100% {
    width: 100%;
  }
}
.e-wait .animate {
  animation: shimmer 3s;
  animation-iteration-count: infinite;
  background: linear-gradient(to right, #e6e6e6 5%, #cccccc 25%, #e6e6e6 35%);
  background-size: 1000px 100%;
}
@keyframes shimmer {
  from {
    background-position: -1000px 0;
  }
  to {
    background-position: 1000px 0;
  }
}

