.Young_network_container {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.Young_network_container .empty {
    width: 100%;
    text-align: center;
}

.Young_network_container:first-of-type {
    margin-top: 0px;
}

.Young_network_heading {
    font-size: 18px;
}

.Young_container_item {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 1px solid var(--filinea-gray-stroke);
    padding-bottom: 16px;
    width: 100%;
}

.Young_network_card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background-color: var(--filinea-gray-background);
    border-radius: 8px;
    width: calc(50% - 8px);
    position: relative;
}

.Young_network_card_heading {
    font-size: 18px;
}

.Young_display {
    width: unset;
    align-items: center;
}

.Young_display img {
    width: 28px;
}

.Young_network_card:after {
    content: '';
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 4px;
    right: 4px;
    position: absolute;
}

.Young_network_card.active:after {
    background-color: #9FCF81;
}

.Young_network_card.inactive:after {
    background-color: #FF0000;
}

@media (max-width: 768px) {
    .Young_network_card {
        width: 100%;
    }
}

.Young_network_container .Person_change {
    display: none;
}