/*Табы*/
.objects_sections_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.objects_sections_list_item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 46px;
    color: inherit;
    white-space: nowrap;
    padding: 10px 15px;
    margin: 0 1px;
    border-radius: 1rem;
    border: 1px solid var(--theme-color-grey-light);
    background: var(--theme-color-grey-light);
    cursor: pointer;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.objects_sections_list_item:hover {
    color: var(--theme-color-violet);
    border-color: var(--theme-color-violet);
}

.objects_sections_list_item.active {
    color: #fff;
    background: var(--theme-color-violet);
    border-color: var(--theme-color-violet);
}

.map_elems_list {
    display: none;
}

/*Карта*/
.map_objects {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 2rem;
    overflow: hidden;
}

@media all and (max-width: 1199px){
    .map_objects {
        height: 66vw;
    }
}

@media all and (max-width: 991px){
    .objects_sections_list {
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media all and (max-width: 767px){
    .map_objects {
        height: 100vw;
    }
}