.item-object {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.item-object__prev, .item-object__next {
    display: flex;
    min-width: 200px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.item-object__prev > .item-object__img {
    margin-left: auto;
}

.item-object__next > .item-object__img {
    margin-right: auto;
}

.item-object__next > .item-object__col {
    align-items: flex-end;
}

.item-object__col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    font-size: 16px;
    line-height: 20px;
    color: #737373;
}

.item-object__col > span:first-child {
    width: 25px;
    height: 20px;
}

.item-object__img {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    padding: 5px;
}

.item-object__img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .search-apartment-result-card__arrow {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .search-apartment-result-card__arrow {
        z-index: 1;
        position: absolute;
        overflow: hidden;
        top: 19%;
        transform: translateY(-50%);
        padding: 20px 15px;
        border-width: 0;
        background: rgba(255, 255, 255, .8);
        cursor: pointer;
    }

    .search-apartment-result-card__next {
        left: 20px;
        border-radius: 0 4px 4px 0;
    }

    .search-apartment-result-card__prev {
        right: 20px;
        border-radius: 4px 0 0 4px;
    }

    .item-object {
        flex-wrap: wrap;
        padding-bottom: 30px;
    }

    .item-object__link {
        order: 1;
        width: 100%;
        padding-bottom: 30px;
        text-align: center;
    }

    .item-object__prev, .item-object__next {
        width: calc(100%/2 - 5px);
        min-width: auto;
    }

    .item-object__prev {
        order: 2;
        margin-right: 5px;
    }

    .item-object__next {
        order: 3;
        margin-left: 5px;
    }

    .item-object__prev > .item-object__col {
        padding-right: 0;
    }

    .item-object__next > .item-object__col {
        padding-left: 0;
    }

    .item-object__col {
        padding: 5px;
        font-size: 12px;
        line-height: 14px;
    }

    .item-object__prev > .item-object__col > span:first-child {
        justify-content: flex-start;
    }

    .item-object__col > span:first-child {
        display: flex;
        width: 18px;
        height: 14px;
    }

    .item-object__col > span:first-child > svg {
        width: 100%;
        height: 100%;
    }

    .item-object__img {
        width: 40px;
        height: 40px;
        padding: 8px;
        box-sizing: content-box;
    }
}

@media (max-width: 479px) {
    .search-apartment-result-card__next {
        left: 15px;
        border-radius: 0 4px 4px 0;
    }

    .search-apartment-result-card__prev {
        right: 15px;
        border-radius: 4px 0 0 4px;
    }
}

@media screen and (min-width: 1024px){
    .s-panorama-flats {
        padding-top: 0;
    }
}