#fal_section_container {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 20px;
}

#fal_right_subsection {
    background-color: #79dbc0;
}

#fal_left_subsection {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fal_search_form_subsection .fal_search_form {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 10px;
}


#fal_section_container .fal_zipcode_input_field {
    background-color:#f7f7f7;
    min-height:60px;
    border-radius:5px;
    border:1px solid #BFBFBF;
    padding: 0.5rem 1rem;
    font-size: 16px;

}



.fal_location_result_subsection {
    /*max-height: 510px;*/
    /*overflow-y: scroll;*/
    /*overflow-x:hidden;*/
    background-color: #ffffff;
    /*border:1px solid #DEDEDF;*/
    position:relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fal_select_nearest_locations {
    border-radius:5px;
    border:1px solid #DEDEDF;
    padding:0 10px 10px 10px;

}

.fal_select_other_locations {
    max-height: 420px;
    overflow-y: scroll;
    overflow-x:hidden;
    background-color: #ffffff;
    border:1px solid #DEDEDF;
    border-radius:5px;
    padding:0 10px 10px 10px;
}

.fal_select_location_and_count {
    position: sticky;
    top:0;
    left:0;
    background-color: white;
    width: inherit;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid #f3f3f3;

}

.fal_select_location_and_count h5 {
    line-height:20px;
    font-size:18px;
    color:#06BED8;
    margin:10px 0;
    text-transform: capitalize;;

}

#fal_section_container .fal_select_location_and_count h6 {
    font-weight:400;
    color:#B5B5B5;
    margin:10px 0;
    font-size:14px;

}

.fal_location_list {

}

#fal_section_container .fal_single_location{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #ffffff;
    border-bottom:1px solid #f3f3f3;
    min-height:95px;
}

#fal_section_container .fal_single_location:nth-child(even){
    background-color: #ffffff;
}

#fal_section_container .fal_single_location:hover{
    background-color: #F8F8F8;
}

#fal_section_container button.fal_search_button_field {
    font-size:16px;
    /*box-shadow: 0 3px 6px #00000029;*/
    min-height:60px;
    background-color:#06BED8;
    font-weight:300;
    color:white;
    padding:0 40px 0 40px;
    width:100%;
    border: none;
}

#fal_section_container .fal_single_location h5{
    font-size: 16px;
    line-height:16px;
    margin:10px 0;
    font-weight:400;
    text-transform: capitalize;

}

#fal_section_container .fal_single_location h6{
    font-size: 14px;
    line-height:14px;
    margin:7px 0;
    font-weight:400;

}

#fal_google_map {
    height:100%;
    width:100%;
}

@media only screen and (max-width: 480px) {
    #fal_section_container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    #fal_section_container .fal_single_location {
        min-height: 70px;
    }
    #fal_section_container .fal_single_location h5 {
        font-size: 14px;
        line-height: 14px;
        margin: 10px 10px 10px 0;
        font-weight: 400;
    }
    #fal_section_container .fal_zipcode_input_field {
        min-height: 40px;
    }
    #fal_section_container button.fal_search_button_field {
        min-height: 40px;
    }
    #fal_google_map {
        height: 500px;
    }
}

.fal_title_subsection {
    display: flex;
    justify-content: space-between;
}

.fal_title_subsection > a {
    display: flex;
    background-color: #06BED8;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white;
    height: 60px;
    width: 200px;
}

#fal_section_container .fal_single_location h6.fal_single_location_type_smat {
    font-size: 12px;
    background-color: #06BED8;
    display: inline-block;
    padding: 3px 10px;
    color: white;
    border-radius: 10px;
    margin:0
}

#fal_section_container .fal_single_location h6.fal_single_location_type_smap {
    font-size: 12px;
    background-color: black;
    display: inline-block;
    padding: 3px 10px;
    color: white;
    border-radius: 10px;
    margin:0;
    text-transform: capitalize;
}

#fal_section_container .fal_single_location_right button.fal_single_location_link_button{
    color: #06BED8;
    padding: 12px 15px;
    border: 1px solid #06BED8;
    background-color: transparent;
}
#fal_section_container .fal_single_location_right button.fal_single_location_link_button:hover{
    background: #06BED8;
    color: #fff;
}

#fal_left_subsection .fal_title_subsection h3{
    font-size: 1.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
}


/******23-5-23********/
#find_loc_drop{
    width: 29%;
    float:right;
    background-color: #f7f7f7;
    padding: 21px 0px 21px 14px;
    border-radius: 5px;
    border: 1px solid #BFBFBF;
}
.fal_search_form_subsection{
    display: flex;
    margin-top: 10px;
    gap: 10px;
}
.fal_search_form_subsection .fal_zipcode_input_field_div{
    width: 50% !important;
}
.fal_search_form_subsection .fal_search_button_field_div{
    width: 50% !important;
}
@media screen and (max-width: 767px) {
    .fal_search_form_subsection,.fal_title_subsection{
        display: block !important;
    }
    .fal_search_form_subsection .fal_zipcode_input_field_div{
        width: 100% !important;
        margin-top: 10px;
    }
    .fal_search_form_subsection .fal_search_button_field_div{
        width: 100% !important;
        margin-top: 10px;
    }
    #find_loc_drop{
        width:100%;
    }
    #fal_section_container button.fal_search_button_field,#fal_section_container .fal_zipcode_input_field{
        margin-top:10px;
    }
}
@media screen and (max-width: 721px) {
    .fal_title_subsection{
        display: block !important;
    }
    #find_loc_drop{
        padding: 11px 0px 11px 14px;
    }
}
@media screen and (max-width: 480px) {
    #find_loc_drop{
        /*padding: 11px 0px 11px 14px; */
    }
}