#products-section h3 img {
    margin: auto;
}

#product-list {
    width: 90%;
    display: flex;
    overflow-x: auto;
    margin: auto;
}

#product-list img {
    height: 200px;
    margin: auto;
    object-fit: contain;
}

#product-list .product {
    position: relative;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
    border-radius: 1rem;
    flex-shrink: 0;
    background: white;
    margin: 0px 16px 32px 16px;
}

#product-list .product .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#product-list .product .product-soldout-text {
  color: #fff;
  background-color: #F44336;
  padding: 4px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

#product-list .group {
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
    border-radius: 1rem;
    flex-shrink: 0;
    background: white;
    margin: 0px 16px 32px 16px;
}

#product-list .group>p {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#product-list .group>i {
    font-size: 5rem;
}

#product-list .img {
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#product-list .txt {
    width: 100%;
    padding: 0px 16px;
    margin-bottom: 16px;
}

#product-list .txt>p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#product-list .message {
    color: white;
    background: #444444;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    border-radius: 0rem 0rem 1rem 1rem;
    padding: 4px 0px;
    font-size: 1.5rem;
}

#product-list .btn {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    border-radius: 0rem 0rem 1rem 1rem;
    padding: 4px 0px;
}

#product-list .btn a {
    color: white;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
}

#maincontent > div.columns > div > p {
    display: none;
}
