.selected_products {
    padding: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #fff;
}
.selected_products h3 {
    font-size: 20px;
}
.remove_product_btn {
    margin: 0 0 0 10px;
    color: #fff;
    padding: 5px 10px;
    border-color: #fff;
    font-size: 15px;
}
.create_deal_btn button {
    color: #000;
    border-color: #000;
    margin-right: 20px;
    background-color: rgb(255, 157, 0);
    font-size: 20px;
}
.create_deal_btn button:hover {
    background-color: #8e8e8e;
    color: #fff;
}
.horizontal {
    display: flex;
    flex-direction: row;
}
.download_report_btn {
    color: #000;
    border-color: #000;
    background-color: rgb(0, 166, 0);
    font-size: 18px;
    margin-right: calc(260px - 135px);
}
.download_report_btn:hover {
    color: #fff;
    border-color: #fff;
}
.btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media (max-width: 500px) {
    .btns {
        flex-direction: column;
    }
    .download_report_btn {
        margin: 0;
        margin-bottom: 20px;
        width: 200px;
    }
}