/*****************************************************************
	A-Z Filter
******************************************************************/

#title-status {
  float: left;
  width: 100%;
  visibility: hidden;
}
#title-status p {
  float: left;
  width: 50%;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Poppins";
}
#title-status span {
  font-weight: bold;
  text-transform: uppercase;
}

#title-status p:last-child {
  text-align: right;
  text-decoration: underline;
  color: #700404;
  cursor: pointer;
}

#a-z {
  float: left;
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  gap: 6px;
}
ul#a-z li {
  flex-grow: 1;
  padding: 7px;
  text-align: center;
  background: #e6e6e6;
  color: #fff;
  text-transform: uppercase;
  border-left: 2px solid #fff;
  list-style-type: none;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  font-family: "Poppins";
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

ul#a-z li.active {
  background: #9c9c9c;
  cursor: pointer;
}

ul#a-z li.active:hover {
  background: #722020;
}

ul#a-z li.current {
  background: #700404;
}
ul#a-z li:first-child {
  border: 0px none;
}

#initial-message h4 {
  text-align: center;
  padding-bottom: 20px;
}

.page-numbers {
  height: 35px;
  padding: 5px;
  border: 1px solid #d6bcbc;
  border-radius: 50px;
  display: inline-block;
  min-width: 35px;
  text-align: center;
  /* background: #700404; */
  background: #f3f4f6;
  color: #700404;
}

#pagination {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 8px;
}

#posts-results {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  float: left;
  padding: 0;
  width: 100%;
}
#posts-results li {
  display: none;
}
#posts-results li.show {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#posts-results li.show a {
  color: #000;
}

#posts-results li.show a:hover {
  color: #700404;
}

#posts-results a {
  display: block;
  padding: 10px 0;
  text-align: center;
  font-family: "Poppins";
  font-size: 1rem;
  font-weight: 500;
}

/* DNSAM CSS */
.scl-card.show {
  background-color: #e6e6e6;
  width: 200px;
  height: 250px;
  border-radius: 25px;
}
.scl-card.show:hover {
  background-color: #cdcdcd;
}
