#edit-homepage-overlay {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: #2b2b2b91;
    z-index: 99;
}

#edit-homepage-inner {
    background-color: #fff;
    width: 500px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    padding: 1rem 0;
}


#edit-homepage-inner span.close {
    color: var(--color_main);
    font-weight: 600;
    font-size: var(--sizeMedium);
    cursor: pointer;
}

#edit-homepage-results {
    max-height: 50vh;
    overflow-y: scroll;
}

