.profileMenu {
  color: $text-grey-color;
  font-size: 16px;
  font-family: $specialFont;
}

.profileMenu-name {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: $light-grey-color;

  .el-icon-user {
    padding-right: 5px;
    font-size: 30px;
  }
}

.profileMenu-nameWrapper {
  display: flex;
  width: fit-content;
}

.profileMenu-nameInfos {
  display: flex;
  flex-direction: column;
}

.profileMenu-logout {
  @extend .sub-nav-link;

  .c-mainMenu & {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .el-icon-switch-button {
    margin-right: 5px;
    font-size: 13px;
  }
}

.profileMenu-language {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style-type: none;

  li {
    display: inline-block;
    padding: 5px;
  }

  a {
    display: block;
    padding: 5px 5px 3px;
    color: #ddd;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #666;
    border-radius: 2px;
  }

  .active a {
    color: $primary-color;
  }

  a:hover {
    background-color: #666;
  }
}
