.popup {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
}
.popup-content {
    background-color: #fff;
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding:40px 48px;
    width: 672px; 
    z-index: 99999999;
}
.popup-content p {
    font-family: 'SuisseIntl-Book';
    font-size:20px;
    line-height:28px;
    color:#D83D3D;
    text-align: center;
    margin-bottom:40px;
}
.popup-content .products_selected {
    margin-bottom:40px;
}
.popup-content .products_selected .prod_selected {
    max-width:336px;
    margin:0 auto 12px auto;
    border:1px solid #707070;
    border-radius:3px;
    background:#fff;
    padding:16px;
    position: relative;
}
.popup-content .products_selected .prod_selected .prod_hersteller {
    font-family: 'SuisseIntl-Book';
    font-size:16px;
    line-height:26px;
    color:#535253;
    padding-right:88px;
}
.popup-content .products_selected .prod_selected .prod_model {
    font-family: 'SuisseIntl-Book';
    font-size:20px;
    line-height:26px;
    color:#535253;
    margin-bottom:4px;
    padding-right:88px;
}
.popup-content .products_selected .prod_selected .kat_name {
    font-family: 'SuisseIntl-Book';
    font-size:13px;
    line-height:26px;
    color:#B9B9B9;
    padding-right:88px;
}
.popup-content .products_selected .prod_selected .delete_button_selected {
    position: absolute;
    top:50%;
    right:16px;
    font-family: 'SuisseIntl-Book';
    font-size:13px;
    line-height:16px;
    color:#D83D3D;
    background:#fff;
    border-radius:2px;
    text-align: center;
    border:1px solid #D83D3D;
    padding:8px 10px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all .3s ease;
}
.popup-content .products_selected .prod_selected .delete_button_selected:hover, .popup-content .products_selected .prod_selected .delete_button_selected:focus {
    color:#fff;
    background:#D83D3D;
    transition: all .3s ease;
}
.popup-close {
    font-size:0;
    text-align: center;
}
.popup-close #closePopup {
    font-family: 'SuisseIntl-Book';
    font-size:17px;
    line-height:31px;
    color:#fff;
    background:#707070;
    border-radius:21px;
    padding:9px 38px 11px 38px;
    cursor: pointer;
    transition: all .3s ease;
}
.popup-close #closePopup:hover, .popup-close #closePopup:focus {
    background:#F07D00;
    transition: all .3s ease;
}

@media only screen and (max-width:768px) {
    .popup-content {
        top:0;
        left:0;
        transform:none;
        padding:40px 20px;
        width:calc(100% - 40px);
        height:calc(100% - 80px);
    }
}