 /*Chosen Property*/

.propertyList.open {
    max-height: 320px;
    overflow: auto;
}
.propertyList li {
    position: relative;
    background-color: #fafcfd;
    font-size: 13px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    opacity: 1;
    margin: 0;
    transition-duration: 0ms;
}
.propertyList li:hover {
    background-color: var(--primary-color);
}

.propertyList li:hover span {
    color: #ffffff;
}

.propertyList li.closed {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}

.propertyList {
    list-style: none;
    margin-top: 31px;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding-left: 0;
    z-index: 99999;
}

.propertySearch {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.propertySearch span {
    color: #000;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    text-decoration: none;
    font-weight: normal;
    font-size: 13px;
    transition-duration: 0ms;
}

.chosen-property,
.propertyList {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.chosen-property {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 5px 10px;
    background-color: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border: 1px solid #cacaca;
}

.chosen-property::-webkit-input-placeholder {
    color: #333;
}

.chosen-property:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.chosen-property:hover::-webkit-input-placeholder {
    color: #fff;
}

.chosen-property:focus,
.chosen-property.open {
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
    outline: 0;
    background-color: var(--primary-color);
    color: #000;
}

.chosen-property.open,
.chosen-property:focus {
    color: #fff;
}

.chosen-property:focus::-webkit-input-placeholder,
.chosen-property.open::-webkit-input-placeholder {
    color: #fff;
}