.info-window {
    min-width: max-content;
    padding: 8px 12px 8px 30px;

    font-size: 14px;
    line-height: 20px;

    color: #f2f5fa;
    border-radius: 12px;
    background-color: #313133;
    background-image: url('./info-icon.svg');
    background-repeat: no-repeat;
    background-position: 8px 8px;
}

.tabs__pills {
    display: flex;
    align-items: center;

    padding: 2px;

    border-radius: 8px;
    background-color: #edeeee;
    box-shadow: 0 0 2px 0 rgba(95, 105, 131, 0.08), 0 2px 4px 0 rgba(95, 105, 131, 0.2);
    gap: 2px;
}

.tab__button {
    padding: 10px 12px;

    font-size: 14px;
    line-height: 16px;
    cursor: pointer;

    color: #7b7d85;
    border: none;
    border-radius: 8px;
    background-color: #edeeee;

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tab__button.active {
    opacity: 1;
    color: #050d33;
    background-color: #fff;

    transform: translateX(0);
}

.tab__button:hover {
    background-color: #e8e8e8;
}

.tab__button.active:hover {
    background-color: #fff;
}

.divider {
    width: 1px;
    height: 22px;
    margin: 0;

    border: none;
    background-color: rgba(92, 94, 102, 0.14);
}

.hidden {
    opacity: 0;
}
