#allProducts {
    width: calc(100vw - 100px);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.productWait {
    width: 170px;
    height: 250px;
    border-radius: 10px;
    margin: 10px;
}
.product {
    width: 170px;
    height: 250px;
    background: #fff;
    border: 1px solid #eaeaea;
    cursor: pointer;
    margin: 10px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: none;
    align-items: center;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s ease;
}
.product:hover,
#options .option:hover {
    box-shadow: 4px 4px 15px 5px rgba(0, 0, 0, 0.1);
}
.product img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}
.product .title {
    font-size: 16px;
    width: fit-content;
}
.product .price {
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(45deg, #6272c2, #394da0);
    width: fit-content;
}
.product .back,
.product .next,
.product .delete,
.product .favorite {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    background: #ffffff;
    opacity: 0;
    transition: all 0.2s ease;
}
.product .back img,
.product .next img,
.product .delete img,
.product .favorite img {
    width: 15px;
    height: 15px;
    margin: 5px;
}
.product .back,
.product .next {
    top: 50%;
    left: -12.5px;
    transform: translateY(-50%);
}
.product .delete {
    top: -12.5px;
    left: -12.5px;
}
.product .favorite {
    top: -12.5px;
    left: calc(100% - 12.5px);
}
.product .next {
    left: calc(100% - 12.5px);
}
.product:hover .back,
.product:hover .next,
.product:hover .delete,
.product:hover .favorite {
    opacity: 1;
}
#noProducts {
    font-size: 18px;
    margin: 20px;
}
#ingredients-product {
    width: 100%;
}
#options-product .option,
#options .option,
#ingredients-product .ingredient {
    cursor: pointer;
    padding: 7px;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px;
    min-width: 200px;
    position: relative;
    transition: all 0.4s ease;
}
#ingredients-product .ingredient {
    min-width: unset;
    width: calc(100% - 20px);
    box-sizing: border-box;
}
#options-product .option img,
#options .option img,
#ingredients-product .ingredient img {
    width: 30px;
    height: 30px;
}
#options-product .option p,
#options .option p,
#ingredients-product .ingredient p {
    font-size: 16px;
}
#options-product .option::before,
#options-product .option::after,
#ingredients-product .ingredient::before,
#ingredients-product .ingredient::after {
    content: '';
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease;
}
#options-product .option:hover::before,
#options-product .option:hover::after,
#ingredients-product .ingredient:hover::before,
#ingredients-product .ingredient:hover::after {
    opacity: 1;
}
#options-product .option::before,
#ingredients-product .ingredient::before {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    top: 15%;
    left: 5%;
    background: #c24b4b66;
}
#options-product .option::after,
#ingredients-product .ingredient::after {
    width: 20px;
    height: 20px;
    background: url('/assets/Icons/bin_200_transparent.png');
    background-size: 20px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#ingredients-product .ingredient .price {
    margin: 0px 5px;
    font-size: 12px;
}
#options-product #newOption,
#ingredients-product #newIngredient {
    min-width: 200px;
    width: 90%;
    padding: 5px 0px;
    margin: 5px 5%;
    border-radius: 10px;
    background: #00000066;
    cursor: pointer;
}
#options-product #newOption img,
#ingredients-product #newIngredient img {
    width: 20px;
    height: 20px;
}