.gridlistbtn {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}
.gridlistbtn h3>b {
    font-weight: 600;
}
span{
    font-family: 'Open Sans', sans-serif;
}
.comment{
    color: #fff;
}
.mybtn{
    font-family: 'Open Sans', sans-serif;
    padding: 5px 10px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}
.mybtn:hover{
    background-color: #aaa;
}
.Active,
.Active:hover{
    /* color: #3e64ff; */
    /* background-color: #3330; */
    /* border: 2px solid rgb(43, 255, 0); */
}

#item {
    padding: 15px 0;
    list-style: none;
    display: grid;
    grid-template-columns: 
        repeat(auto-fit,minmax(15rem,1fr))
    ;
    grid-gap: 1.25rem;
}
.myItem{
    padding: 20px 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px -1px 4px 0px #8888882e;
    background-color: #fff;
    /* background-image: 
        linear-gradient(
            160deg,
            rgb(197, 197, 197),
            rgb(128, 128, 128),
            rgb(48, 48, 48)
        )
    ; */
}

body, .item-container{
    background-color: #f8f8f8!important;
}
.breadcrumbs-container, .services, footer .footer-services ul, .item-container:hover,.myItem:hover {
    background-color: #fff!important;
}
.myItem:hover {
    box-shadow: 0px 0px 4px 0px #88888882;
}

.btn-buy {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-size: 15.5px;
    line-height: 1.1764805882;
    font-weight: 400;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    min-width: 80px;
    padding: 4px 0px 6px 2px;
    border-radius: 98px;
    border: none;
    background: #0071e3;
    color: #fff;
    --sk-button-margin-horizontal: 14px;
    --sk-button-margin-vertical: 14px;
}

.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 35px;

}
.myItem img {
    display: block;
    max-width: 100%;
    height: 245px;
    margin-left: auto;
    margin-right: auto;
}
.item-container {
    border-radius: 10px;
}
.choose-qte-btns ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
}
.choose-qte-btns li {
    cursor: pointer;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #dedede;
    width: 25%;
}
li.myItem .choose-qte-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 15px;
}
li.myItem .choose-qte-btns select{
    cursor: pointer;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #dedede;
    padding: 0.25rem 3rem;
}
li.myItem.asList {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 10px 0;
    column-gap: 1.5rem;
}
li.myItem.asList .item-content {
    margin-right: auto;
    margin-left: 1rem;
}
li.myItem.asList img {
    width: 60px;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
    margin-right: 0;
}
li.myItem.asList .price-btn p.price {
    font-size: 1.1rem;
}
li.myItem.asList .price-btn {
    column-gap: 1rem;
    row-gap: 1rem;

}
.myItem a {
    text-decoration: none;
    color: #000;
}

@media only screen and (max-width: 500px) {
    li.myItem.asList .price-btn p.price {
        font-size: 1rem;
    }
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
    li.myItem.asList {
        column-gap: .5rem;
    }
    li.myItem.asList  .choose-qte-btns {
        display: none!important;
    }
    li.myItem.asList .price-btn {
        flex-direction: column;
    }
    li.myItem.asList .price-btn p.price {
        line-height: 1;
    }
    li.myItem.asList .price-btn {
        row-gap: 0.5rem;
    }
}