main {
    width: 800px;
}
.form{
    display: flex;
    flex-direction: row;
    gap: 20px;

}
.form>div{
    width: 50%;
    display: flex;
    flex-direction: column;
}

#additional_information{
    height: 123px !important;
}
.saveChanges{
    height: 44px;
    width: 100% !important;
    max-width: 100%;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 10px
}



.target_price{
    width: 100% !important;
    display: flex;
    flex-direction: row;
    gap: 5%;
}
.target_price>.inp{
    width: 30%;
}

.select2 {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 7px;
}
.select2 .selected-values {
    display: inline-block;
    font-weight: 500;
    margin: 0 !important;
}

.select2 .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background: white;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
}

.select2 .options .option {
    padding: 8px 10px;
    cursor: pointer;
}

.select2 .options .option:hover {
    background-color: #f0f0f0;
}

.select2 .options .option.selected {
    background-color: #d0eaff;
}

.hidden {
    display: none;
}



@media (max-width: 700px){
    .form{
        flex-direction: column;
        gap: 0
    }
    .form>div{
        width: 100%;
    }
    main{
        padding: 5vw;
    }
    main h1{
        margin-bottom: 7.5vw ;
    }
    .saveChanges{
        height: 10vw;
        width: 100% !important;
        border-radius: 5vw;
    }
}

@media (min-width: 700px) {
    #additional_infomation_span{
        margin-top: 30px;
    }
    .saveChanges{
        width: 390px !important;
    }
}