.info-window {
    padding: 8px 12px 8px 40px;
    border-radius: 12px;
    background-color: #313133;
    background-image: url('./info-icon.svg');
    background-position: 10px 8px;
    background-repeat: no-repeat;
    color: #f2f5fa;
    font-size: 14px;
    line-height: 20px;
    min-width: max-content;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}

.map {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.list {
    width: 260px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid rgba(92, 94, 102, 0.14);
    padding: 12px;
    box-sizing: border-box;
}

.list__title {
    line-height: 20px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.list__items {
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.list_item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 12px;
}

.list_item__icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    text-align: center;
    background-color: var(--icon-background-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    line-height: 16px;
}

.list_item__text {
    font-size: 14px;
}
