.lists {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.product_search {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    width: 80%;
}
.product_details__content__info__logo {
    width: 300px;
}
.products_list_block, .selected_products__list__block {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 15px;
    width: 50%;
}
.products_list_block h2, .selected_products__list__block h2 {
    border-bottom: 1px solid #fff;
    font-size: 20px;
    margin-bottom: 20px;
}
.products_list__item button {
    color: #000;
    border-color: #000;
}
.create_deal_btn {
    color: #000;
    border-color: #000;
    background-color: rgb(255, 157, 0);
    font-size: 20px;
    padding: 20px;
}
.create_deal_btn:hover {
    background-color: #8e8e8e;
    color: #fff;
}
.product_picker {
    display: flex;
    flex-direction: column;
}
.product_details__content__product_image {
    width: 300px;
    height: 400px;
}

.create_deal_form_block {
    position: unset;
    background: none;
    padding: 0;
    color: #000;
}
.create_deal_form {
    width: 100%;
    padding: 20px;
    height: 100%;
}
.product_details__content {
    flex-direction: column;
    overflow-y: scroll;
    justify-content: unset;
}
.details {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.create {
    height: 50%;
}
.product_details__content__calendar {
    justify-content: end;
}

@media (max-width: 800px) {
    .details {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .lists {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .lists div {
        width: 100%;
    }
}