.price-list {
    padding: 0.5cm;
    display: flex;
    flex-wrap: wrap;
    min-height: 10cm;
    width: 29.7cm;
    border: 1px solid gray;
    align-content: flex-start;
}

.price_item {
    position: relative;
    height: 3.5cm;
    width: 4.5cm;
    border: 1px dashed darkslategray;
    gap: 5px;
}

.price_item > span {
    align-self: stretch;
    padding: 0 5px;
}

.price-search__item:hover {
    cursor: pointer;
}

.item_remove {
    position: absolute;
    display: none;
    right: 0;
    top: 0;
    background-color: rgba(225, 225, 225, 0.8);
    padding: 10px 10px 14px 14px;
    border-radius: 0 0 0 80%;
}

.price_item_header {
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid darkslategray;
    font-size: 10px;
    flex-grow: 1;
}

.price_item_title {
    text-align: start;
    height: 50%;
    flex-grow: 3;
    overflow: hidden;
    font-size: 12px;
}

.price_item_price {
    border-top: 1px solid darkslategray;
    text-align: center;
    font-size: 18px;
    flex-grow: 1;
}

.prices {
    position: relative;
    width: 29.7cm;
    margin: 0 auto;
}

.prices:hover .print_content_action {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 1rem;
}

.print_content_action {
    display: none;
}

.print_content_action button {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}

@media not print {
    .price_item:hover .item_remove {
        display: block;
    }
    .price_item:nth-child(30n+30) {
        margin-bottom: 2.1rem;
    }
}