.aureo-search-form-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 0;
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.aureo-search-form-container.active {
    z-index: 9999;
    opacity: 1;
}

.aureo-search-form-container .aureo-search-form-content {
    padding: 20px;
    /* background-color: white; */
    min-width: 580px;
}

.aureo-search-form form {
    position: relative;
}

.aureo-search-close {
    position: absolute;
    right: -30px;
    top: -30px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 5px;
}

.aureo-search-close svg {
    width: 100%;
    height: 100%;
    color: white;
    stroke: white;
}

.aureo-search-form .aureo-search-form-value {
    padding: 12px 22px;
    outline: none;
    border: 0;
    background-color: rgb(238, 238, 238);
    width: 100%;
    border-radius: 6px;
    color: gray;
    font-size: 16px;
}

.aureo-search-form button {
    border: 0;
    color: white;
    background-color: orangered;
    border-radius: 6px;
    padding: 9px 22px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.aureo-search-form .aureo-search-proposals {
    position: absolute;
    min-height: 10px;
    width: 100%;
    bottom: -3px;
    transform: translateY(100%);
    padding: 5px 5px;
    border-radius: 6px;
    background-color: white;
    z-index: 9;
}

.aureo-search-form .aureo-search-proposals .aureo-search-proposal-item {
    display: flex;
    flex-direction: column;
}

.aureo-search-form .aureo-search-proposals .aureo-search-proposal-item a {
    margin: 2px 0;
    padding: 5px 10px;
    color: gray;
    text-decoration: none;
}

.aureo-search-form .aureo-search-proposals .aureo-search-proposal-item a.aureo-search-view-more {
    margin: 2px 0;
    padding: 5px 10px;
    color: orangered;
}

.aureo-search-form .aureo-search-proposals img {
    width: 40px;
}