.loading {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
}

.loading img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 26vh;
}

.searchPart {
    padding-bottom: 20px;
}

.searchPartTitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.catSearchItemRow {
    margin-bottom: 10px;
}

.catSelBtn {
    width: 100%;
    display: flex;
    height: 45px;
    border: 1px solid #d5d5d5;
    align-items: center;
    justify-content: space-between;
}

.selectedCatTitle {
    overflow: hidden;
    white-space: nowrap;
    margin-right: 10px;
}

.citiesPart {
    display: flex;
    flex-wrap: wrap;
}

.selectedCityItem {
    background-color: #e9e9e9;
    border-radius: 5px;
    padding: 3px 5px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 11px;
}

.selectedCityItem i {
    margin-left: 3px;
    cursor: pointer;
}

.leftContainer {
    border-right: 1px solid rgb(223, 223, 223);
}

.catSelDrop {
    max-height: 300px;
    width: 300px;
    overflow: auto;
}

.catSelDrop .catTitle {
    display: flex;
}

.categoryTopPart .prodItem {
    margin-bottom: 40px;
}

.topGalleryPart {
    display: flex;
    overflow: auto;
    max-width: 100%;
}

.topGalleryPartItem {
    width: calc(33% - 9px);
    margin-right: 12px;
}
.filterLink{
    display: none;
    font-size: 18px;
    margin-bottom: 20px;
    color: #0083ab;
}
.filterClose{
    display: none;
    padding: 20px 10px 10px 10px;
    align-items: center;
    font-size: 18px;
    color: #0083ab;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.submitContainer{
    display: none;
    padding: 10px 0px;
}

@media (max-width: 540px) {
    .leftContainer {
        position: fixed;
        z-index: 100;
        background: white;
        height: 100%;
        width: 100%;
        top: 0px;
        transition: 0.5s all;
        left: -100%;
        overflow: auto;
    }
    .catSearchContainer{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .filterClose{
        display: flex;
    }
    .filterLink{
        display: inline-flex;
        align-items: center;
    }
    .submitContainer{
        display: block;
    }

    .searchPart{
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .topGalleryPartItem {
        width: calc(50% - 10px);
        margin: 10px 5px;
    }
}

@media (max-width: 375px) {
    .selectedCatTitle {
        width: calc(100% - 40px);
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}