.notification-dot {
  background-color: $rose;
  border: 2px solid white;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  position: relative;
}

.profile-icon-wrapper {
  border: 3px solid;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 2px 0 0 2px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  background-color: white;

  &.mobile {
    position: absolute;
    top: -3px;
    z-index: 80;
    right: 19px;
  }

  &.has-notification .profile-icon {
    //position: relative;
    &::after {
      background-color: $rose;
      border: 2px solid white;
      border-radius: 50%;
      display: inline-block;
      vertical-align: middle;
      width: 14px;
      height: 14px;
      position: absolute;
      top: -4px;
      right: -4px;
      content: "";
    }
  }
}

.profile-icon {
  width: 40px;
  height: 40px;
  position: relative;
  background-size: cover;
  background-position: center;

  &.dashboard-reveal {
    line-height: 60px;
    height: 60px;
    font-size: 24px;
    margin: auto;
    color: white;
  }

  &.remember {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid $white;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.06);
    line-height: 55px;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
  }

  &.mobile {
    width: 44px;
    height: 44px;
    padding: 2px;
    border: 1px solid #fefefe;
    position: absolute;
    left: 0;
    top: 0;
  }

  & > img {
    display: block;
    width: 100%;
  }

  & > div {
    transition: background-color 1s ease-out;
    height: 100%;
    background-color: #84CEA3;
    color: white;
    text-align: center;
    border-radius: 50%;
    font-weight: 400;
    line-height: 40px;
    text-transform: uppercase;
  }

  &.border-dark-mint {
    border: 2px solid $dark-mint;
    padding: 2px;

    & > div {
      padding: 10px 0
    }
  }

  &.border-charcoal {
    padding: 2px;
    border: 2px solid $charcoal;

    & > div {
      padding: 10px 0
    }
  }
}