

/* Start:/local/templates/upmore/css/objects-list.css?17762488177028*/
.list__header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 64rem;
    align-items: center;
}

.list__header h1 {
    margin-bottom: 0;
    width: calc(100% - 300rem);
}

.list__switch {
    margin-left: auto;
}

.list__switch a {
    margin-left: 24rem;
    cursor: pointer;
    color: var(--green2);
    opacity: .5;
    transition: opacity .5s;
}

.list__switch a.is-active {
    color: var(--green1);
    opacity: 1;
}

.list__switch a:first-child {
    margin-left: 0;
}

.list__search {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 48rem;
}

.list-search__input {
    width: 100%;
    max-width: 1165rem;
}

.list-search__сlear {
    position: absolute;
    right: 20rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24rem;
    height: 24rem;
    background-image: url("/local/templates/upmore/css/../images/close-dark.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    cursor: pointer;
}

.list-search__сlear.is-active {
    display: block;
}

.list__filter {
    margin-left: auto;
}

.list__filter a {
    padding: 18rem 0;
    border-radius: 100rem;
    border: 1px solid var(--green2);
    cursor: pointer;
    text-align: center;
    width: 133rem;
    margin-left: 8rem;
    transition: background-color .5s, color .5s;
}

.list__filter a:first-child {
    margin-left: 0;
}

.list__filter a.is-active {
    color: var(--white);
    background-color: var(--green1);
}

.list__filter {
    display: flex;
}

.list-search__input {
    border-radius: 100rem;
    border: 1px solid var(--green2);
    position: relative;
    overflow: hidden;
}

.list-search__input::before {
    content: "";
    width: 24rem;
    height: 24rem;
    background-image: url(/local/templates/upmore/css/../images/search.svg);
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 40rem;
    transform: translateY(-50%);
    z-index: 1;

}

.list-search__input input {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    color: var(--green1);
    background-color: transparent;
    padding: 0 60rem 0 75rem;
    transition: background-color .5s;
}

.list-search__input input:focus,
.list-search__input input.is-active {
    background-color: var(--white);
}

.list__map {
    display: none;
    width: 1165rem;
    position: relative;
}

.map-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24rem;
}

.list__map #map {
    height: 760rem;
    overflow: hidden;
    border-radius: 24rem;
}

.list__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12rem;
}

.list__item {
    width: 33.33%;
    padding: 0 12rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 68rem;
}

.list-item__img {
    position: relative;
    overflow: hidden;
    border-radius: 24rem;
    margin-bottom: 24rem;
}

.list-item__img:before {
    content: '';
    padding-top: 61%;
    display: block;
}

.list-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.list-item__title {
    font-size: 24rem;
    margin-bottom: 16rem;
}

.list-item__address {
    font-size: 16rem;
    color: var(--green2);
}

.pin {
    background-color: var(--green1);
    width: 56rem;
    height: 56rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pin svg {
    width: 50%;
    height: 50%;
}

.pin:before {
    content: "";
    width: 8rem;
    height: 8rem;
    position: absolute;
    top: calc(100% + 8rem);
    background-color: var(--green1);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.map__control {
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background-color: var(--green1);
    cursor: pointer;
    position: relative;
    transition: opacity .3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.map__control+.map__control {
    margin-top: 12rem;
}

.map__control--minus {
    background-image: url("/local/templates/upmore/css/../images/minus-white.svg");
}

.map__control--plus {
    background-image: url("/local/templates/upmore/css/../images/plus-white.svg");
}

.map__control--center {
    background-image: url("/local/templates/upmore/css/../images/location.svg");
    background-size: 60%;
}

.map__controls {
    position: absolute;
    right: 24rem;
    top: calc(50%);
    transform: translateY(-50%);
}

.list__empty {
    display: none;
}

.list__empty.is-active {
    display: block;
}

.is-map {
    display: flex;
    flex-wrap: wrap;
}

.is-map .list__map {
    display: block;
}


.is-map .list__list {
    width: calc(100% - 1165rem);
    display: block;
    height: 760rem;
    overflow-y: auto;
    padding-left: 24rem;
    padding-right: 24rem;
    margin: 0;
}

.is-map .list__item {
    width: 100%;
    margin-bottom: 32rem;
    padding: 0;
}

.is-map .list__item:last-child {
    margin-bottom: 0;
}

.is-map .list-item__img {
    display: none;
}

.is-map .list-item__title {
    margin-bottom: 12rem;
}

.is-map~.pagination,
.is-map~.btn-more {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .list__filter a:hover {
        color: var(--white);
        background-color: var(--green2);
    }

    .list__switch a:hover {
        opacity: 1;
    }
}

[class^="ymaps-"][class$="hint"],
[class^="ymaps-"][class$="hint__text"] {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 10rem;
}

.map-tooltip {
    width: 250rem;
    white-space: normal;
    padding: 10rem;
    border: 1px solid var(--green2);
    background-color: var(--bg);
    border-radius: 10rem;
}

.map-tooltip__title {
    margin-bottom: 4rem;
    font-size: 14rem;
    color: #000;
    line-height: 1.2;
}

.map-tooltip__address {
    font-size: 12rem;
    color: var(--green2);
    line-height: 1.3;
    width: 100%;
}

@media (max-width: 767px) {
    .list__header {
        display: block;
        margin-bottom: 40rem;
    }

    .list__header h1 {
        margin-bottom: 24rem;
    }

    .list-search__input {
        width: 100%;
        max-width: 100%;
        height: 52rem;
        margin-bottom: 24rem;
    }

    .list-search__input input {
        padding: 0 40rem 0 60rem;
    }

    .list-search__input::before {
        left: 24rem;
    }

    .list-search__сlear {
        right: 10rem;
    }

    .list__filter {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .list__filter a {
        width: 50%;
        padding: 12rem 0;
    }



    .list__item {
        width: 100%;
        margin-bottom: 40rem;
    }

    .list-item__title {
        font-size: 18rem;
    }

    .list__map #map {
        height: 460rem;
        width: 100%;
        margin-bottom: 24rem;
    }

    .is-map .list__list {
        height: 460rem;
        width: 100%;
        padding-left: 0;
    }

    .map-controls {
        left: 12rem;
    }

}
/* End */
/* /local/templates/upmore/css/objects-list.css?17762488177028 */
