.cardContainer {
    overflow-x: scroll;
    display: flex;
    padding: 3rem;
}

/* Works on Firefox */
.cardContainer {
    scrollbar-width: thin;
    scrollbar-color: rgb(125, 125, 132) rgba(255, 255, 255, 0);
}

/* Works on Chrome, Edge, and Safari */
.cardContainer::-webkit-scrollbar {
    /* width: 3px; */
    height: 5px;
}

.cardContainer::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
}

.cardContainer::-webkit-scrollbar-thumb {
    background-color: rgb(125, 125, 132);
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0);
}

.mycardTop {
    min-width: 300px;
    max-width: 300px;
    min-height: 380px;
    max-height: 380px;
    border-radius: 10px;
    background-color: #fafaf8;
    box-shadow: 0.1rem 0 0.8rem rgba(141, 174, 192, 0.686);
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.imgCardClass {
    height: 190px;
    width: 300px;
    padding-top: 5px;
}

.imagemmm {
    object-fit: fill;
    height: 180px;
    width: 300px;
}

.buttonCardClass {
    padding: 3px 5px 0px 5px;
}

.headerCardClass {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 60px;
    /* margin-bottom: 5px; */
}

.StatusCardClass {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    height: 50px;
    line-height: 25px !important;
    padding: 0 2px 0 2px;
}

.mycardTop:not(:first-child) {
    margin-left: 20px;
}

.mycardTop:hover~.mycardTop {
    transform: translateX(10px);
}

.priceCardClass {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    /* height: 60px; */
    /* padding:0 2px 0 2px; */
}



.mycardTopMobile {
    min-width: 300px;
    max-width: 300px;
    min-height: 380px;
    max-height: 380px;
    border-radius: 10px;
    background-color: #fafaf8;
    box-shadow: 0.1rem 0 0.8rem rgba(141, 174, 192, 0.686);
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}


.mycardTopMobile {
    margin-left: 20px;
}

.mycardTopMobile:hover~.mycardTopMobile {
    transform: translateX(10px);
}

.imgCardClassMobile {
    height: 190px;
    width: 300px;
    padding-top: 5px;
}

.imgCardClassMobile img {
    height: 190px;
    width: 300px;
    padding-top: 5px;
}