﻿.product-container {
    border: 2.5px solid rgba(137,128,85,.75);
    text-align: left;
    margin: 5px 10px;
    padding: 10px 15px;
    height: auto;
    width: 250px;
    position:relative;
    display:inline-block;
    border-radius: 10px;
    box-shadow: 0 3px 5px 1px rgba(0,0,0,.12);
}

    .product-container:hover {
        box-shadow: 0 5px 15px 1px rgba(0,0,0,.25);
    }

.listing-title {
    text-transform: uppercase;
    font-size: 12pt;
    font-weight: bolder;
}

hr {
    height: 1px;
    background-color: rgba(137,128,85,.50);
    border: none;
}

.productImg {
    border-radius: 5px;
    height: 50px;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.productDetails {
    font-size: smaller;
}


.pin-item {
    position: absolute;
    right: -5px;
    top: -10px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #e1e1e1;
    color: #cd6969;
    text-align: center;
    line-height: 45px;
    vertical-align: middle;
}

    .pin-item:hover {
        color: #e47185;
    }

.pin-icon {
    font-size: 18pt;
}

.list-group {
    max-height: 500px;
    overflow: scroll;
    overflow-x: hidden;
}

    .list-group::-webkit-scrollbar {
        width: 7px; /* width of the entire scrollbar */
    }

    .list-group::-webkit-scrollbar-track {
        background: none; /* color of the tracking area */
    }

    .list-group::-webkit-scrollbar-thumb {
        background-color: var(--bbb-light-orange); /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
    }