.firstSectionOfStoreL
{
    margin-top: 10rem;
    margin-left: 15rem;
}
.searchContainer
{
    display: flex;
    padding: .2rem 1rem;
    width: fit-content;
    background-color: white;
    align-items: center;
    border-radius: 4px;
    gap: .5rem;
}
.searchContainer > input
{
    padding: .2rem .5rem;
    border: 1px solid silver;
    outline: none;
    width: 16rem;
    height: 2.5rem;
    background-color: transparent;
    font-size: 1rem;
}
.searchContainer > i
{
    color: white;
    background-color: orangered;
    padding: .7rem .8rem;
}
.MainContainer
{
    display: flex;
    gap: 1rem;
    overflow: hidden;
}
.MainContainerOfDetailsOfLocation
{
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 40rem;
    width: 20rem;
}
.ContainerOfDetails
{
    display: flex;
    align-items: start;
    gap: 2rem;
    margin: 1rem 0rem;
}
.Details
{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.titleOfDetails
{
    color: orangered;
}
.fa-location-dot
{
    color: orangered;
    margin-top: .5rem;
    font-size: 1.5rem;
}
@media screen and (max-width:800px) {
    .MainContainer
    {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .firstSectionOfStoreL
    {
        margin-left: 0;
        padding: 1rem 2rem;
    }
    iframe
    {
        height: 20rem;
        margin-top: 2rem;
    }
    .ContainerOfDetails
    {
        margin-left: 5rem;
        margin-top: 2rem;
    }
    .MainContainerOfDetailsOfLocation
    {
        overflow-y: visible;
        height: max-content;
    }
    .searchContainer > input
    {
        width: 20rem;
    }
}