/* LEAD PLUGIN */
figure > .align-right {
  float: right;
  margin-left: 1em;
}

figure > .align-left {
  float: left;
  margin-right: 1em;
}

.lead-plugin {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  margin: 10px auto;
  min-height: 25em;
  max-width: 28em;
}


@media only screen and (max-width: 991px) {
  .lead-plugin {
    max-width: initial;
  }
}

.lead-plugin > img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.lead-plugin-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  padding: 5px 10px;
}

.lead-plugin-content {
  font-size: 14px;
  padding: 0 10px;
}

.lead-plugin-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 10px 10px;
}

.lead-plugin-footer > small {
  font-size: 75%;
  font-weight: 600;
}

.lead-plugin-button {
  width: 150px;
  border: 1px solid #f8ac00;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background-color: #f8ac00;
  transition: 0.2s;
  padding: 5px
}

.lead-plugin-button:hover {
  background-color: #fff;
  border: 1px solid #f8ac00;
  color: #f8ac00;
}

.lead-plugin-button > img {
  margin-left: 5px;
  filter: invert(98%) sepia(98%) saturate(0%) hue-rotate(313deg) brightness(101%) contrast(103%);
}

.lead-plugin-button:hover > img {
  filter: invert(73%) sepia(80%) saturate(2505%) hue-rotate(360deg) brightness(98%) contrast(99%);
}

/* LEAD IMAGE PLUGIN */

.lead-image-plugin {
  border-radius: 10px;
  margin: 10px 0;
}

.lead-image-plugin img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* LISTING PLUGIN */

.listing-plugin-no-result {
  display: none;
}
.listing-plugin-show-more {
  display: none;
  height: 5em;
}
