#user-panel {
  background-color: #bbdff5;
}

#user-panel .header-panel {
  background-color: #BBDEF4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#user-panel .header-panel img {
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
}

#user-panel .header-panel h2 {
  font-size: 2.2rem;
  color: #172e4d;
}

#user-panel .header-panel .user-welcome-name {
  font-weight: bold;
}

.user-welcome-name{
  text-transform: capitalize;
}

#user-panel .logged-menu-link .my-feed-menu {
  padding: 18px;
  font-size: 1.4rem;
  display: block;
  color: #31a8db;
  position: relative;
  border-right: 6px solid #31a8db;
  background-color: #f5f6f6;
}

#user-panel .logged-menu-link .my-feed-menu .notification-number {
  display: inline-block;
  margin: 0 3px;
  padding: 3px;
  background-color: orange;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  text-align: center;
  color: white;
  font-weight: bold;
  position: absolute;
  right: 25px;
  top: 15px;
}

#user-panel .links-edit-panel {
  background-color: #BBDEF4;
  display: flex;
  justify-content: space-around;
}

#user-panel .links-edit-panel > div {
  flex-grow: 1;
  text-align: center;
  font-size: 1.4rem;
  color: #5FACDE;
  border-top: 1px solid #5FACDE;
  position: relative;
}

#user-panel .links-edit-panel > div:first-child {
  margin-left: 10px;
}

#user-panel .links-edit-panel > div:first-child::after {
  content: " ";
  display: block;
  width: 1px;
  height: 70%;
  background-color: #5FACDE;
  position: absolute;
  right: 0;
  top: 15%;
}

#user-panel .links-edit-panel > div:last-child {
  margin-right: 10px;
}

#user-panel .links-edit-panel > div a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

#user-panel .links-edit-panel .account-link a:before {
  content: '';
  background-image: url("/sites/all/modules/custom/nin_my_feed/icons/gear-ico.PNG");
  width: 40px;
  height: 40px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-y: 5px;
}

#user-panel .links-edit-panel .profile-link a:before {
  content: '';
  background-image: url("/sites/all/modules/custom/nin_my_feed/icons/pencil-ico.PNG");
  width: 40px;
  height: 40px;
  background-position-y: 5px;
  background-size: 100%;
  background-repeat: no-repeat;
}

#user-panel .menu-panel {
  background-color: #ffffff;
}

#user-panel .menu-panel li {
  transition: 0.2s;
}

#user-panel .menu-panel li:hover {
  background-color: #f1f6fc;
}

#user-panel .menu-panel li a {
  padding: 18px;
  font-size: 1.4rem;
  display: block;
  color: #31a8db;
}

#user-panel .menu-panel li a.active {
  color: #31a8db;
}

#user-panel .menu-panel li a.logout {
  color: #A3A3A3;
}

#user-panel .childs .child .child-info {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background-color: #cde2f4;
}

#user-panel .childs .child .child-info .image-child img {
  border-radius: 50%;
}

#user-panel .childs .child .child-info .child-name-date {
  margin-left: 10px;
  color: #172e4d;
}

#user-panel .childs .child .child-info .child-name-date .child-name {
  font-size: 16px;
  font-weight: bold;
}

.child-name{
  text-transform: capitalize;
}

#user-panel .childs .child .child-info .child-name-date .child-date {
  font-size: 14px;
}

#user-panel .childs .child .child-info .child-change {
  overflow: hidden;
  position: relative;
  margin-left: auto;
}

#user-panel .childs .child .child-info .child-change span {
  display: block;
  width: 20px;
  height: 20px;
  color: transparent;
}

#user-panel .childs .child .child-info .child-change span::before, #user-panel .childs .child .child-info .child-change span::after {
  content: ' ';
  display: block;
  background-color: #f5953f;
  position: absolute;
}

#user-panel .childs .child .child-info .child-change span::before {
  width: 20px;
  height: 3px;
  top: 50%;
  left: 0;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#user-panel .childs .child .child-info .child-change span::after {
  height: 20px;
  width: 3px;
  left: 50%;
  top: 0;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#user-panel .childs .child .menu-wrapper {
  display: none;
}

#user-panel .childs .child.selected {
  background-color: #ffffff;
}

#user-panel .childs .child.selected .child-info {
  cursor: auto;
  background-color: #ffffff;
}

#user-panel .childs .child.selected .child-change {
  display: none;
}

#user-panel .childs .child.selected .menu-wrapper {
  display: block;
}

#user-panel .add-child-link a {
  padding: 18px;
  font-size: 1.4rem;
  display: block;
  color: #31a8db;
}

#user-panel .logout-link {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-my-feed-activitie .activitie-title{
  float: left;
  width: 200%;
}

@media screen and (max-width: 500px) {
  #user-panel .logout-link {
    position: relative;
  }
}

#user-panel .logout-link a {
  padding: 18px;
  font-size: 1.4rem;
  display: block;
  color: #333333;
}

#loggedin {
  display: flex;
  align-items: center;
}

#loggedin .my-feed-menu {
  color: white;
  font-family: "VAG Rounded W01 Light",Helvetica,Arial,sans-serif;
  font-weight: bold;
}

#loggedin .my-feed-menu .notification-number {
  display: inline-block;
  margin: 3px;
  padding: 3px;
  background-color: #f5953f;
  border-radius: 50%;
  min-width: 16px;
  min-height: 15px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  #loggedin .my-feed-menu {
    display: none;
  }
}
