#parts-box {
    padding: 5px;
    margin: 4px;
    display: block;
    transition: transform 0.2s;
    /*transform: translate(-45%, -47%) scale(0.05, 0.05);*/
}

#parts-list {
    list-style-type: none;
    margin: 0;
    height: calc(100vh - 200px);
    width: 100%;
    padding: 5px 5px 5px 4px;
    overflow: hidden;
    overflow-y: scroll;
}

#parts-list a {
    border: 1px solid #e5e5e5;
    border-left: #fefefe;
    border-right: #fefefe;
    margin-top: -3px;

    background-color: #fefefe;
    padding: 1px 3px 3px 10px;
    text-decoration: none;
    font-size: 14px;
    color: black;
    display: block;
}

#parts-list a:hover:not(.header) {
    background-color: #eee;
    cursor: default;
}

#parts-search-clear {
    border-color: #ced4da;
}

#parts-search {

}

#products-list {
    padding: 0;
}

.product-cart-button {
    position: absolute;
    float: right;
    top: 0;
    right: 3px;
    background-color: white;
}

.product-cart-button svg {
    fill: #00aa00;
}

.product-cart-button:hover {
    cursor: pointer;
}

car {
    display: none;
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

#parts-list .selected {
    background-color: #ddd;
}

#drop-down-parts-list {
    display: none;
}

@media (max-width: 767px) {
    #parts-box {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1050;
        width: 80%;
        max-width: 420px;
        margin-right: 20px;
        display: none;
        box-shadow: 0 .5rem 2rem rgba(0,0,0,.8)!important;
    }

    #parts-list {
        height: calc(100vh - 150px) !important;
    }

    #drop-down-parts-list {
        position: fixed;
        left: 5px;
        top: 5px;
        z-index: 1040;
        display: block;
        padding: 3px 6px;
        fill: #666666;
    }
}

