.popupoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}
.productpopup {
    display: none;
    position: fixed;
    z-index: 12000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);

    width: 50vw;
    min-width: 300px;
    height: 70vh;
    min-height: 300px;
    max-width: 750px;

    background-color: white;
    padding: 20px;
    border-radius: 15px;
}

.popup-closebutton {
    height: 20px;
    text-align: left;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.popup-closebuttonImg {
    width: 20px;
    height: 20px;
}
.product-popup-item {
    width: 100%;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
}
.flex_popup {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 50%;
}
.product-popup-textdiv {
    position: relative;
    width: 50%;
    height: 100%;
    height: auto;
    color: black;
    padding: 10px;
}
.product-popup-image-div {
    position: relative;
    width: 50%;
    height: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-popup-basket-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    padding: 5px;
}


.product-popup-manufacturer {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    margin-top: 20px;
}
.product-popup-productname {
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 5px;
}
.product-popup-productprice {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.position_bottom {
    position: absolute;
    bottom: 5px;
    left: 10px;
    width: calc(100% - 20px);
}
.link_div {
    cursor: pointer;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #f1e0e0;
    border-radius: 20px;
    letter-spacing: 1px;
    font-size: 12px;
    border: 1px solid #f1e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 851px) {
    .link_div:hover {
        border: 1px solid rgb(37, 35, 35);
    }
    .link_div_black:hover {
        border: 1px solid #f1e0e0;
    }
}
.link_div_black {
    cursor: pointer;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: rgb(37, 35, 35);
    border-radius: 20px;
    letter-spacing: 1px;
    font-size: 12px;
    border: 1px solid rgb(37, 35, 35);
    color: #f1e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link_to_productpage {
    color: black;
    text-decoration: none;
}
.margin_line {
    margin-top: 15px;
    border-top: 1px solid lightgrey;
    padding-bottom: 10px;
}


.margin_upper_line {
    padding-top: 5px;
    border-top: 1px solid lightgrey;
    padding-bottom: 5px;
}
.product-popup-desc {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 5px;
    overflow-y: auto;
    max-height: 100%;
    padding-bottom: 5px;
}

.wide {
    width: 100%;
}