.itemcatalog-container .content-wrapper {
    padding: 4rem 0;
}

.itemcatalog-container .content-wrapper > .row {
    row-gap: 20px;
}

.itemcatalog-container .item-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.itemcatalog-container .item-card .row {
    height: 100%;
}

.itemcatalog-container .item-card .item-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.itemcatalog-container .item-title {
    margin: 0;
    text-transform: uppercase;
}

.itemcatalog-container .item-details {
    display: flex;
    flex-direction: column;
}

.itemcatalog-container .btn {
    display: flex;
    justify-content: flex-end;
    margin-left: 5px;
}

.itemcatalog-container .item-card .btn.right {
    margin-left: auto;
}

.itemcatalog-container .item-card .btn.left {
    margin-right: auto;
}

#search-input,
#category-filter {
    border: none;
    background: #1495da;
    color: white;
    padding: 10px 13px;
    border-radius: 30px;
    font-size: 14px;
}

#search-input::placeholder {
    color: white;
}
#search-input::-webkit-input-placeholder { /* Chrome, Safari, Edge */
    color: white;
}

#search-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}

#search-input::-ms-input-placeholder { /* Microsoft Edge Legacy */
    color: white;
}

.list-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    text-transform: uppercase;
}

.list-info h5 {
    font-weight: 700;
}

.item-row {
    display: flex;
    flex-direction: row;
}

.item-row .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.item-row .right {
    width: 100%;
    text-align: right;
}

.item-row .right .item-price {
    aspect-ratio: 1 / 1;
    display: inline-flex;
    flex-direction: column;
    background: #c30100;
    padding: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
}

.item-row .right .item-price * {
    margin: 0;
}