.pop_up_form {
    height: 70vh;
    width: 60vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    
    z-index: 5;
    display: none;
}

.pop_up_form form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: nowrap;
    overflow-y: scroll;
}
.pop_up_form form::-webkit-scrollbar {
    display: none;
}

.pop_up_form i {
    cursor: pointer;
}

.pop_up_form input {
    font-size: var(--fs-secondary);
    color: var(--text-clr) !important;
}

.recommend .pop_up_form .doneBtn {
    height: 13rem;
}

@media all and (max-width: 500px) {
    .pop_up_form {
        width: 90vw;
    }
}


.recommend .input_desc {
    height: 5rem;
}