.create_deal_form {
    position: relative;
    padding: 40px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    background-color: #fff;
    border-radius: 25px;
    overflow-y: scroll;
}
.vertical {
    width: 33.3%;
    height: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.horizontal {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.deal_contact {
    width: 100%;
    margin: 5px 0;
    position: relative;
    border: 1px solid black;
    border-radius: 15px;
    padding: 15px;
    background-color: #d99d8a;
}
.contact_btns button {
    color: #000;
    background-color: #fff;
}
.contact_creator button {
    color: #000;
    background-color: #fff;
}
.contact_selector button {
    color: #000;
    background-color: #fff;
}
.deal_opportunity_fields {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    border: 1px solid black;
    border-radius: 15px;
    align-items: center;
    background-color: #8fcbe7;
}
.deal_opportunity_fields label {
    width: 90%;
}

.create_deal_form h2 {
    width: 100%;
    margin: 5px 0;
    font-size: 25px;
}
.create_deal_form input {
    width: 100%;
    margin: 5px 0;
}

.create_deal_form div input {
    width: 100%;
    height: 31px;
}
.create_deal_form div select {
    width: 100%;
    height: 31px;
}
.deal_dates {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border: 1px solid black;
    border-radius: 15px;
    background-color: #b2d98a;
}
.deal_dates label {
    width: 90%;
    display: flex;
    flex-direction: column;
}
.create_deal_label {
    display: flex;
    flex-direction: row;
}
.create_deal_label span {
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_picker {
    font-size: 20px;
}
.product_picker_label {
    position: relative;
}
.horizontal:last-of-type {
    justify-content: end;
}

@media (max-width: 850px) {
    .create_deal_form {
        width: 100%;
        height: 100%;
        padding: 20px;
    }
    .create_deal_label {
        position: unset;
    }
    .horizontal {
        flex-direction: column;
    }
    .vertical {
        width: 100%;
        margin: 10px 0;
    }
    .deal_opportunity_fields {
        width: 100%;
    }
}
.horizontal:nth-of-type(2) {
    margin-bottom: 30px;
}
.found_product_list {
    width: 100%;
    position: absolute;
    top: 100%;
    background-color: #fff;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    z-index: 1;
    max-height: 300px;
    overflow-y: scroll;
}

@media (max-width: 500px) {
    .deal_opportunity_fields {
        width: 100%;
        flex-direction: column;
    }
    .deal_opportunity_fields label {
        width: 100%;
    }
    .deal_opportunity_fields {
        padding: 15px;
    }
    .create_deal_form {
        height: 100%;
        overflow-y: scroll;
    }
}

.hidden {
    display: none;
}