.legende{
    position: absolute;
    top: 16px;
    left: 16px;
    bottom: 16px;
    background-color: white;
    border-radius: 16px;
    width: 20vw;
    padding: 32px 16px;
    overflow-y: scroll;
}
@media (max-width:750px) {
    .legende{
        display: none;
    }
}
.legende > :last-child{
    border: none;
    padding: 0;
}
.country{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 1px rgb(201, 201, 201) solid;
}
.country-head{
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.company-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
    gap: 8px;
}
.company{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.logo{
    height: 24px;
    object-fit: contain;
    object-position: center;
    width: 80px;
    max-height: 24px;
}

.company_num{
    width: 3ch;
    text-align: right;
}

.circle{
    width:16px;
    height: 16px;
    border-radius: 50%;
}