.symbol > img {
  object-fit: cover;
}
.lazy {
  background: #f1f1f1;
  border: 1px solid #f0f0f0;
}
.symbol.symbol-50px.symbol-2by3 > img {
  height: auto;
}

.shimmer {
  border-radius: 0.475rem;
  background: linear-gradient(-45deg, #eee 40%, #fafafa 50%, #eee 60%);
  background-size: 300%;
  background-position-x: 100%;
  animation: shimmer 1s infinite linear;
}

@keyframes shimmer {
  to {
    background-position-x: 0%;
  }
}

.childLoad {
  top: 0;
  z-index: 999999;
  width: 100%;
  height: 200px;
  /*background: #ccc;*/
}

.childLoad .ajaxLoad-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.childLoad .ajaxLoad-spinner-round {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #ed1c24 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}