.cim-container {
    width: 90%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

/* WYSZUKIWARKA START */
.cim-search {
    width: 17%;
    padding: 15px 0;
}

.cim-search__input {
    width: 100%;
}

.cim-search__bound-list {
    padding: 0;
    list-style: none;
    border: 1px solid #aaa;
    height: 325px;
    overflow-y: scroll;
}

.cim-search__list-element {
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid #aaa;
}

.cim-search__list-element:hover {
    background-color: #eee;
    transition: background-color .3s;
}
/* WYSZUKIWARKA END */

/* MAPA START */
.cim-map {
    width: 80%;
    padding: 15px 0;
}

.cim-map__map-img {
    width: 100%;
    height: auto;
}
/* MAPA END */

/* TOOLTIP START */
.tooltipster-base {
    height: auto !important;
}

.cim-tooltip {
    padding: 7.5px 0;
}

.cim-tooltip__title-wrapper {
    padding: 5px 0 0 0;
}

.cim-tooltip__title {
    font-size: 15px;
    color: #494949;
}

.cim-tooltip__description {
    font-size: 13px;
    line-height: 18px;
}

/* TOOLTIP END */

/* MEDIA QUERIES START */
@media all and (max-width: 1200px) {
    .cim-search {
        width: 22%;
    }

    .cim-map {
        width: 75%;
    }
}

@media all and (max-width: 900px) {
    .cim-container {
        flex-direction: column;
        align-items: center;
    }

    .cim-search {
        width: 100%;
        order: 2;
    }

    .cim-map {
        width: 100%;
        order: 1;
    }
}
/* MEDIA QUERIES END */