// src/style.css
.wp-block-myguten-test-block {
  color: tomato;
}
.dae-results {
  flex: 0 0 66.66%;
}
ul.dae-results-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0 -10px;
}
.dae-main.dae-archive ul,
.dae-main.dae-archive li {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
}
.dae-main.dae-archive .dae-results li.dae-results-item {
  -ms-flex: 0 0 210px;
  flex: 0 0 210px;
  margin: 10px;
  display: block;
  text-align: center;
  background: #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dae-main.dae-archive .dae-results li.dae-results-item h3 {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
}

.dae-main.dae-archive .dae-results li h3.dae-results-item-title {
  text-align: center;
  font-size: 1.25em;
}
li.dae-results-item .dae-results-block-img {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #000;
}
li.dae-results-item .dae-results-block-img img {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  list-style-type: none;
  text-decoration: none;
  border-radius: 0;
  box-shadow: 0 0 0;
  text-shadow: 0 0 0;
  text-transform: none;
  text-align: left;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dae-main.dae-archive
  .dae-results
  li.dae-results-item
  .dae-results-item-resume {
  padding: 15px;
}

.dae_card_main {
  display: inline-flex;
}

/* Card styles */
.dae_card {
  background-color: #fff;
  height: 300px;
  width: 200px;
  overflow: hidden;
  margin: 12px;
  border-radius: 5px;
  padding: 0;
}

/* Card image loading */
.dae_card__image img {
  width: 100%;
  height: auto;
}

.dae_card__image.loading {
  height: 150px;
  width: 100%;
}

.dae_card__image {
  overflow: hidden;
  height: 150px;
}

/* Card title */
.dae_card__title {
  padding: 8px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
}

.dae_card__title.loading {
  height: 2rem;
  width: 50%;
  margin: 1rem;
  border-radius: 3px;
}

/* Card description */
.dae_card__description {
  padding: 8px;
  font-size: 16px;
}

.dae_card__description.loading {
  height: 1rem;
  margin: 1rem;
  border-radius: 3px;
}

/* The loading Class */
.loading {
  position: relative;
  background-color: #e2e2e2;
}

/* The moving element */
.loading::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(255, 255, 255, 0.2)),
    to(transparent)
  );

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );

  /* Adding animation */
  animation: loading 0.8s infinite;
}

/* Loading Animation */
@keyframes loading {
  100% {
    transform: translateX(100%);
  }
}
