.item.filters ul {
  display: flex;
  align-items: center;
}
.item.article-minicard small p {
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}
.item.article-minicard small p:visited {
  color: #000000;
}
.item.article-minicard h6 p {
  color: #000000;
  text-decoration: none;
}
.item.article-minicard h6 p:visited {
  color: #000000;
}
.item.article-minicard:nth-child(2) {
  margin-top: 1.5rem;
}
.item.article-minicard:not(:nth-child(2)) {
  margin-top: 3rem;
}
.item.article-minicard .img-minicard-wrapper {
  overflow: hidden;
  border-radius: 10px;
}
.item.article-minicard img {
  min-height: 150px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.item.article-minicard:hover .img-vertical-wrapper img {
  transform: scale(1.2);
}
.item.article-card {
  display: flex;
  padding: 1rem;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.0588235294);
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
.item.article-card.vertical {
  flex-direction: column;
}
.item.article-card.vertical img {
  width: 100%;
  transition: all 0.3s ease-out;
  max-height: 200px;
  object-fit: cover;
}
.item.article-card.horizontal {
  flex-direction: row;
  flex-grow: 1;
}
.item.article-card.horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.item.article-card .article-tags {
  text-transform: uppercase;
}
.item.article-card .article-title {
  margin-top: 1rem;
}
.item.article-card .article-title a {
  text-decoration: none;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.item.article-card .article-author {
  text-transform: uppercase;
}
.item.article-card .article-author span {
  font-weight: 600;
}
.item.article-card .article-excerpt > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.item.product-card {
  padding: 1rem;
  background: #FFFFFF;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 30px;
  height: 100%;
  width: 100%;
}
.item.product-card img {
  width: 100%;
  transition: all 0.3s ease-out;
  max-height: 200px;
  object-fit: contain;
}
.item.product-card .product-title a {
  text-decoration: none;
  color: #000000;
}
.item.product-card .product-dosage {
  color: #898989;
}
.item.product-wildcard {
  padding: 1rem;
  background: transparent;
  height: 100%;
  width: 100%;
  border: 1px solid transparent;
}
.item.product-wildcard img {
  width: 100%;
  transition: all 0.3s ease-out;
  max-height: 200px;
  object-fit: contain;
}
.item.product-wildcard:hover {
  border-radius: 30px;
  background: #FFFFFF;
  box-shadow: 2px 4px 0px #000000;
  border-color: #000000;
}
.item.product-wildcard:hover small {
  opacity: 1;
}
.item.product-wildcard:hover .product-mini-description {
  opacity: 1;
}
.item.product-wildcard .category-label {
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item.product-wildcard small {
  opacity: 0;
  text-align: center;
  margin-top: 1rem;
  transition: opacity 300ms ease-out;
}
.item.product-minicard {
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #D6D6D6;
}
.item.product-minicard img {
  width: 100%;
  transition: all 0.3s ease-out;
  object-fit: contain;
}
.item.product-minicard:hover {
  border: 1px solid #000000;
  box-shadow: 1px 2px 0px #000000;
}
.item.product-minicard .img-minicard-wrapper {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.item.drop-selection .dropdown-menu {
  padding: 1rem;
}
.item.drop-selection .dropdown-menu .dropdown-item {
  padding: 0;
}
.item.drop-selection .dropdown-menu .dropdown-item:hover {
  background-color: #FFFFFF;
}
.item.drop-selection .dropdown-menu .dropdown-item:active {
  color: #000000;
  text-decoration: none;
  background-color: #FFFFFF;
}

a:hover .item .img-vertical-wrapper img, a:hover .item .img-minicard-wrapper img {
  transform: scale(1.2);
}

.img-vertical-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.img-horizontal-wrapper {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 10px;
  width: 33%;
}

.border-hover:hover {
  border-bottom: 1px;
}

p.extra-small.border-hover {
  transition: all 0.3s ease-out;
}
p.extra-small.border-hover:hover {
  text-decoration: underline;
}

.product-mini-description {
  opacity: 0;
  transition: all 0.3s;
}

.item.article-minicard.vertical {
  margin-top: 0;
}