.leaflet-control-attribution a:first-of-type, .leaflet-control-attribution span {
    display: none;
}

.header-container {
    padding: 24px 16px;
    background-color: #050505;
    border-bottom: 1px solid rgba(81, 81, 81, 0.8);
}

.header-content {
    display: flex;
    gap: 14px;
}

.header-content i {
    width: 18px;
    height: 18px;
}

.header-content span {
    font-family: 'Gilroy';
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--primary-color);
}

.main-cards-container {
    padding: 16px;
}

.no-objects {
    font-family: 'Gilroy';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 40%;
}

.header-cards-container {
    font-family: 'Gilroy';
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: var(--primary-color);
}

.cards {
    padding-top: 16px;
}

.custom-cluster-icon {
    background-color: #2563EB;
    border-radius: 50%;
    margin-top: 5px;
    margin-left: 5px;
}

.custom-cluster-icon div {
    text-align: center;
    color: var(--primary-color);
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* СТИЛИ КАРТОЧЕК */
.property-card {
    border-bottom: 1px solid rgba(81, 81, 81, 0.8);
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.property-details-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 12px;
    gap: 8px;
}

.property-image-container {
    position: relative;
}

.property-image-container img {
    flex-shrink: 0;
    object-fit: cover;
    width: 100px;
    height: 140px;
    border-radius: 6px;
}

.property-upper-container, .property-bottom-container {
    display: flex;
    width: 100%;
    padding: 8px 0;
}

.property-block-title {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 9px;
    color: var(--primary-color);
    opacity: 60%;
}

.property-block-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.property-inner-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.property-inner-block p {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-color);
}

.property-inner-block i {
    color: var(--primary-accent);
    width: 14px;
    height: 14px;
}

.property-location-container {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1000px;
    padding: 7px 10px;
    font-size: 10px;
    column-gap: 6px;
}

.property-location-container .icon-pin {
    display: block;
    width: 12px;
    height: 12px;
    display: block;
    align-items: center;
    line-height: 1;
}

.property-location {
    display: inline-flex;
    font-family: 'Gilroy';
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
    vertical-align: middle;
}

.property-blocks-container {
    display: grid;
    align-items: end; 
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.property-header-container {
    display: flex;
    justify-content: space-between;
}

.property-header-container i {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.property-header-container .icon-heart-filled {
    background-color: red;
}

.property-image-overlay {
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    justify-content: center;
    background-color: var(--primary-accent);
    color: var(--primary-color);
    padding: 2px 7px;
    border-radius: 1000px;
    overflow: hidden;
    white-space: nowrap;
}

.property-image-text {
    font-family: 'Gilroy';
    font-weight: 600;
    font-size: 8px;
    color: var(--primary-color);
}

.property-inner-block p {
    margin: 5px;
}