.prod {
    position: relative;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    border: 1px solid #80808033;
    transition: all 0.5s;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

/*.prod:hover {
    box-shadow: 0 0 10px #8080808f;
}*/

.prod-desc {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    width: calc(100% - 93px);
}

.prod-title {
    font-size: 15px;
    line-height: 20px;
    font-family: 'PT Sans';
    margin-bottom: 10px;
}

.prod-btn-box{
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-btn {
    cursor: pointer;
    width: 105px;
    border: 3px dashed #dcba07;
    color: black;
    font-weight: bold;
    height: 36px;
    box-sizing: border-box;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.prod-order-btn {
    cursor: pointer;
    width: 105px;
    color: white;
    height: 36px;
    box-sizing: border-box;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd706;
    font-weight: bold;
}

.prod-btn:hover {
    border: 3px solid black;
    background: black;
    color: white;
}

.prod-order-btn.add{
    color: #9d9d9d;
    background: #f5f5f5;
    cursor: default;
}

.prod-img {
    max-height: 78px;
    max-width: 78px;
    object-fit: contain;
}

p {
    padding-bottom: 10px!important;
}