/*region product-listing */
.product-listing {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
    margin-bottom: 10px;
}

/*endregion*/

/*region product-module*/
.heading {
    padding: 15px 0 20px;
}
.heading h3 {
    margin: 0;
    font-weight: 600;
    line-height: 26px;
    font-size: 18px;
}

.heading .left {
    position: relative;
}

.heading .right {
    margin-top: 5px;
}

.product-listing .product {
    text-align: center;
    padding: 15px;
    background: #FFFFFF;
    position: relative;
    border: 1px solid #e5e5e5;
    margin: 0;
}
.product-listing .product .image {
    height: 180px;
}
.product .product-info {
    text-align: left;
}

.product .name {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    height: 48px;
    margin: 0 0 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product .name a {
    color: #000;
}

.product .caption {
    margin: 0 0 0px;
    position: relative;
    height : 35px;
}
.product-wrap .marks {
    display: flex;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 8;
    flex-direction: column;
    align-items: flex-start;
}

.product-wrap .marks .mark {
    background: #009688;
    width: auto;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    line-height: 14px;
    margin-bottom: 2px;
    border-radius: 0 20px 20px 0;
    flex: 0 0 auto;
}
.caption .price-wrap {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 16px;
}
.caption .price-wrap.price {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.price-wrap .price-new {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.price-wrap .symbol {
    font-size: 10px;
    margin-right: 3px;
    font-weight: 700;
}

.price-wrap .price-old.price {
    font-size: 14px;
    text-decoration: line-through;
    margin-left: 8px;
    color: #666;
}
.pc-builder-tbody .price-wrap .price-old.price {
    margin-left: 0px;
}
.product .product-info .price-wrap {
    height: 22px;
}
.actions button {
    background: 0;
    border: 1px solid #BDBDBD;
    padding: 7px 24px;
    cursor: pointer;
    transition: .3s;
}

.actions button:hover {
    background: #0B2851;
    color: #fff;
    border-color: #0B2851;
}

.actions button i {
    margin-right: 7px;
}

.actions button.btn-cart {
    width: 100%;
    margin: 15px 0 0;
    font-size: 13px;
    border-radius: 0;
    font-weight: 700;
    background: #009688;
    border-color: #009688;
    color: #fff;
    padding: 10px 26px;
}

.actions button.btn-compare {
    width: 100%;
    margin: 10px 0 -5px;
    font-size: 13px;
    border-radius: 0;
    background: #fff;
    border-color: #fff;
    color: #999999;
    padding: 0 !important;
}

.btn:hover,
.actions .btn-cart:hover,
.cart-option #button-cart:hover {
    opacity: .9;
    transition: .3s;
    cursor: pointer;
    background: #0B2851;
    border-color: #0B2851;
}
.actions .btn-cart:hover[disabled] {
    border-color: #d2d2d2;
}
.actions .btn-cart[disabled] {
    border-color: #D2D2D2;
}

.discount-badge {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: #0B2851;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    line-height: 15px;
    padding-top: 9px;
}

.discount-badge span {
    display: block;
}

.discount-badge p {
    margin: 0;
}

.short-note {
    color: #009688;
    background: #EDF2F5;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 4px 13px;
    font-weight: bold;
    margin-top: 15px;
    font-size: 14px;
}
/*endregion*/

/*bidding info *module* css*/

.bid-info-module>span, .bid-info-module>span+span{
    background: #009688;
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
    margin-top: 8px;
}

.bid-info-module>span+span{
    margin-left: 10px;
}

.countdown label{
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.btn-bid{
    border: 2px solid #009688;
    background: #009688;
    color:  #fff;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s all;
    text-transform: unset;
}

#button-bid{
    text-transform: unset;
}

.btn-bid:hover{
    border: 2px solid #009688;
    background: transparent;
    color:  #009688;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
}

/*bidding info *product* css*/

.bid-info-product div, .bid-info-product span{
    background: #fff;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
    padding: 5px 10px;
    margin: 15px 0;
}

.bid-info-product .price, .bid-info-product .symbol{
    box-shadow: unset;
}

.bidding-log{
    box-shadow: 0px 4px 30px rgb(200 200 200 / 60%);
}

.bidding-log-title{
    text-align: center;
    background: #009688;
    color: #fff;
}

.bidding-log-title h2{
    margin: 0;
}


.bidding-log-body{
    padding: 15px;
    overflow-y: scroll;
    height: 474px;
}

.bidding-log-body{
    text-align: center;
}

.bidding-log-body hr:last-child{
    display: none;
}

.product-info-all {
    min-height: 100%;
}

.bidding-input input{
    padding: 8px 10px;
    margin: 15px 0;
}

.bidding-input>input+span{
    background-color: #009688;
    color: #fff;
    padding: 12px 15px 13px 15px;
    font-weight: bold;
    font-size: 14px;
    margin: 0 10px 0 -4px;
}

.bidding-log-body::-webkit-scrollbar-thumb {
    background: #009688;
    border-radius: 100px;
}

.bidding-log-body::-webkit-scrollbar {
    width: 5px;
}

.btn-ob-mobile{
        display: none;
        position: absolute;
        right: 0;
        margin: 0;
}
@media (max-width: 1320px) {
    .categorie-list .product-listing {
        grid-template-columns: repeat(3,1fr);
    }
    .product-listing {
        grid-template-columns: repeat(3,1fr);
    }
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 1299px){
    .bidding-log{
        margin-top: 15px;
    }
}




@media (max-width: 768px){

    .btn-pcb,.btn-ob{
        display: none;
    }

    .btn-ob-mobile{
        display: unset;
        position: absolute;
        right: 15px;
        margin: 0;
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .logo img {
        height: 35px;
    }
    .heading {
        padding: 20px 0 20px;
    }
    .product-listing .product {
        padding: 10px;
        margin: 0 !important;
    }

    .price-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 15px;
        flex-direction: column;
        align-items: start;
    }
    .product-wrap .price-wrap {
        flex-direction: inherit;
        gap: 7px;
        justify-content: center;
        align-items: center;
    }
    .product .name {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        height: 50px;
        margin: 0 0 10px;
        text-align: center;
    }
    .product .caption{
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center
    }
    .price-wrap .price-new {
        font-size: 14px;
    }

    .price-wrap .price-old.price {
        font-size: 12px;
        margin: 0;
    }

    .product-listing .product .image {
        height: auto;
    }

}

@media (max-width: 480px){
    .product .name {
        height: 65px;

    }
    .product-listing {
        grid-template-columns: repeat(2,1fr);
    }
    .categorie-list .product-listing {
        grid-template-columns: repeat(2,1fr);
    }
    .product-listing .product .image {
        height: 150px;
    }

}
@media (max-width: 370px){
    .product-listing .product .image {
        height: 130px;
    }
}
@media (max-width: 350px){
    .product .product-info .price-wrap {
        height: 40px;
    }
}