body {
    background-color: rgb(243, 243, 243);
}

table {
    margin:auto;
}

.tdOfProduct {
    width: 1px;
    height: 1px;
    margin: 12px;
    padding: 12px;
}

a {
    color: black;
    text-decoration: none;
}

.header {
    display: flex;
    width: 100%;
}

.nameSite {
    display: inline-block;
    width: 500px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 35px;
}

.searchInputDiv {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.searchInput {
    width: 80%;
    height: 50px;
    border: 2px solid rgb(228, 227, 227);
    border-radius: 10px;
    font-size: 20px;
    padding: 10px;
}

.discount_ {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50px;
    rotate: -15deg;
    margin: auto;
    position:absolute;
    text-align: center;
    background-color: rgb(235, 182, 114);
}
.discount {
    margin: auto;
    margin-top: 12px;
    margin-bottom: 12px;
    color: white;
}


/*busket style */
.basketImg {
    width: 20px;
    height: 20px;
}

.basketButton {
    display: inline-block;
    width: 10%;
    background-color:rgba(255, 255, 255, 0);
    border: 2px solid rgba(222, 184, 135, 0);
    border-radius: 10px;
    width: 80px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    fill:black;
    color: black;
}
.basketButton:hover {
    background-color: rgb(228, 227, 227);
}
/*busket style */


/* product style */
.product {
    height: 315px;
    padding: 7px;
    background-color: white;
    border-radius: 15px;
    border: 2px solid rgba(222, 184, 135, 0);
}
.product:hover {
    border: 2px solid burlywood;
    transition: width 0.3s ease-out;
}

.imageOfProduct {
    width: 150px;
    height: 150px;
}

.imageCenter {
    text-align: center;
}

.nameOfProduct {
    font-size: 20px;
}

.descriptionOfProduct {
    margin-top: -10px;
}

.textOfProduct {
    height: 105px;
}

.priceOfProduct {
    min-width: 95px;
    float: left;
    font-weight: bold;
    font-size: 20px;
    background: linear-gradient(to right, white,rgb(243, 243, 243));
    padding: 7px;
    margin: auto;
    border-radius: 10px;
}

.buttonPriceBasket {
    float: right;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: 2px solid rgb(221, 221, 221);
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    fill: rgb(189, 189, 189);
}
.buttonPriceBasket:hover {
    border: 2px solid burlywood;
    fill: burlywood;
}
.buttonPriceBasket:active {
    background-color: rgb(247, 247, 247);
}

.buttonProduct {
    background-color: rgba(255, 255, 255, 0);
    border:0px;
    text-align: left;
    cursor: pointer;
}
/* product style */


