.advanced-search-widget {
    background: #faf7ef;
    padding: 0px;
    border-radius: 2px;
    border: 2px solid #cab7b5;
}
.asw-field {
    margin-bottom: 12px;
}
.asw-field input,
.asw-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 12px;
    box-sizing: border-box;
    font-weight: 300 !important;
    color: #4d4d4d !important;
}
.asw-field input::placeholder,
.asw-field select::placeholder {
    font-weight: 300 !important;
    color: #4d4d4d !important;
}
.asw-field label {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
    color: #555;
}
.asw-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 12px;
}
.asw-row .asw-field {
    flex: 1;
    margin-bottom: 0;
    max-width: 50%;
    padding: 0 5px;
}
.asw-btn {
    width: 100%;
    padding: 8px;
    background: #008383;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.asw-btn:hover {
    background: #ae1c23;
}
.asw-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}
.asw-content.open {
    max-height: 1000px;
}
.asw-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    padding: 7px 7px 7px 12px;
    border-radius: 4px;
    margin-bottom: 0px;
}
.asw-arrow {
    font-size: 12px;
    transition: transform 0.6s ease;
}
.asw-arrow.rotate {
    transform: rotate(180deg);
}
.asw-content form {
    padding: 7px 12px 12px;
}
@media (max-width: 991px) {
    .asw-row .asw-field {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .asw-row {
        flex-direction: column;
    }
}
