.flags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.flag-item {
    padding: 5px;
}

.flag-item img {
    height: 10vh;
    max-height: 5.5vw;
    width: auto;
    border: 1px solid lightgrey;
}

.flags-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-image {
    width: 5rem;
    text-align: center;
}

.flag-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem;
    width: 25rem;
}

.flag-image img {
    height: 2rem;
    width: auto;
    border-radius: 5px;
    border: 1px solid lightgrey;    
}

.flag-name {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.flags-container {
    display: none;
}

@media (min-width: 1025px) {
    .flags-desktop {
        display: block;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .flags-tablet {
        display: block;
    }
}

@media (max-width: 768px) {
    .flags-mobile {
        display: block;
    }
}
