.filters {
    background-color: white;
    height: 70px;
    width: 100%;
    border: 1px  #DDDDDD solid;
    border-radius: 4px;
    
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.filters button {
    font-size: 18px;
    background-color: #FF5A5F;
    color: #FFFFFF;
    height: 48px;
    width: 20%;
    border: none;
    border-radius: 4px;
    margin-right: 30px;
    opacity: 100%;
    /* align-self:; */
}

.filters button:hover {
    opacity: 90%;
}

.filters .locations {
    border-right: #DDDDDD 1px solid;
}

.filters .amenities, .filters .locations {
    align-self: center;
    flex: 1;
    height: 100%;
    width: 25%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: flex-start; */
    padding-left: 50px;
}

.filters h3 {
    font-weight: 600;
}

.filters h4 {
    font-weight: 400;
    font-size: 14px;
}

.filters .locations .popover {
    display: none;
    position: absolute;
    background-color: #FAFAFA;
    width: 25%;
    border: #DDDDDD 1px solid;
    z-index: 1;
    border-radius: 4px;
    max-width: 343px;
    margin: 235px 0 0 -50px;
    /* padding-left: 40px; */
    padding: 0 0 20px 40px;
}

.filters .amenities .popover {
    display: none;
    position: absolute;
    background-color: #FAFAFA;
    width: 25%;
    border: #DDDDDD 1px solid;
    z-index: 1;
    border-radius: 4px;
    max-width: 200px;
    margin: 179px 0 0 -50px;
    /* padding-left: 40px; */
    padding: 0 0 20px 40px;
}

.filters .locations .popover .inner-list {
    padding-left: 10px;
    /* padding: 0px 0 0px 10px; */
}

.filters .locations ul li, .filters .amenities ul li {
    list-style: none;
}

.filters .locations:hover .popover, .filters .amenities:hover .popover{
    display: block;
}


.filters .locations ul h2{
    font-size: 16px;
    margin-top: 20px;
}

.filters .amenities ul li:first-child  {
    margin-top: 20px;
}