.boxPopulateProfiles{
    margin-top: 25px;
    width: 100%;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
    display: grid;
    align-items: center;
}

.headerPopulateProfiles{
    width: 100%;
    align-items: center;
    display: grid;
}

.textHeaderPopulateProfiles{
  color: white;
  text-align: center;
  font-size: 1.5rem;
  width: 100%;
}

.profilePopulateCell{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #73879c00;
    box-shadow: 0 3px 6px #691a97, 0 3px 6px #691a97;
    cursor: pointer;
    margin-top: 15px;
}

.nameProfilePopulateCell{
    text-align: left;
    color: white;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
    min-width: 150px;
}

.imageGroupProfilePopulate{
    min-width: 21px;
    vertical-align: text-bottom;
    background-color: transparent;
    height: 25px;
    margin-right: 10px;
    display: flex;
    justify-content: center; /* выравнивание по горизонтали */
    align-items: center;
}

@media screen and (max-width: 1000px) {
    .boxPopulateProfiles{
        width: 100%;
    }
}