.prebasket {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.247);
}

.baseBasket {
    width: 85%;
    height: 85%;
    min-width: 540px;
    min-height: 450px;
    margin: 7%;
    margin-top: 20px;
}

.productInBasket {
    display: flex;
    border-radius: 20px;
    border: 2px solid rgb(212, 212, 212);
    padding: 15px;
    margin-bottom: 10px;
}

.imgInBasket {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-right: 10px;
}


.descriptionInBasket {
    font-size: 20px;
    margin: 0px;
}

.basketImg {
    width: 20px;
    height: 20px;
}

.priceMaket {
    display: inline-block;;
}

.buttonProductInBasket {
    display: flex;
}

.textInBasket {
    width: 100%;
    height: 100%;
}

.buttonsProduct {
    display: flex;
}

.priceInBasket {
    text-align: right;
    margin: 0px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: bolder;
}

.buyInBasket {
    background-color:rgb(255, 255, 255);
    border: 2px solid rgb(212, 212, 212);
    border-radius: 10px;
    width: 80px;
    height: 40px;
    text-align: center;
    cursor: pointer;
}
.buyInBasket:hover {
    border: 2px solid burlywood;
    color: rgb(206, 157, 92);
}
.buyInBasket:active {
    background-color: rgb(247, 247, 247);
}

.basketImgBasket {
    width: 25px;
    height: 25px;
}

.basketButtonBasket {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid rgb(221, 221, 221);
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    fill: rgb(189, 189, 189);
    margin-right: 6px;
}
.basketButtonBasket:hover {
    border: 2px solid burlywood;
    fill: burlywood;
}
.basketButtonBasket:active {
    background-color: rgb(247, 247, 247);
}

.count {
    display: inline-block;
    width: 100%;
}

.countButton {
    background-color: white;
    border: 2px solid rgb(212, 212, 212);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}
.countButton:hover {
    border: 2px solid burlywood;
    fill: burlywood;
}
.countButton:active {
    background-color: rgb(247, 247, 247);
}

.labelCount {
    margin-bottom: 5px;
}

.productsInBasket {
    width: 80%;
    height: 90%;
    margin: auto;
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 40px;
    margin-bottom: 0%;
    background-color: white;
    border-radius: 40px;
}

.mainBuyAll {
    width: 100%;
    height: 10%;
}

.basket {
    height: 90%;
    overflow-y: scroll;
}

.basketClose {
    background-color: rgb(196, 196, 196);
    color: white;
    border: none;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    font-size: 35px;
    text-align: center;
    float: right;
    cursor: pointer;
}
.basketClose:active {
    background-color: rgb(80, 80, 80);
}