.ac-system-body.bb-user-management {
  .user-profile-wrapper {
    padding: 20px;
    border-right: 1px solid $color-border;
    height: calc(100vh - 52px);
    position: sticky;
    top: 52px;

    .user-profile-photo {
      background-color: $white-100;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      z-index: 1;
      margin-bottom: 10px;

      .thumbnail {
        height: 240px;
        background-size: cover;
        background-position: center;
        background-color: $gray-80;
        background-repeat: no-repeat;
        border-radius: 10px;
      }

      .setting-button {
        position: absolute;
        left: 15px;
        top: 15px;
        font-size: 18px;
        color: $white-100;
        background-color: transparent;
        border: none;
        cursor: pointer;
      }
    }

    .profile-information {
      .profile-top-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;

        h3 {
          font-size: 26px;
          line-height: 1.4;

          span {
            font-size: 1rem;
            line-height: 1.5;
            font-weight: 400;
            display: block;
            color: $color-text;
          }
        }
      }

      .edit-icon {
        max-width: 16px;
      }

      p {
        font-size: 1rem;
        color: $color-heading;
        line-height: 160%;
        margin-bottom: 10px;
      }

      .social-links {
        margin-bottom: 20px;

        a {
          max-width: 26px;
          margin-right: 10px;
          display: inline-block;

          &:last-child {
            margin-right: 0;
          }

          img {
            width: 100%;
          }
        }
      }
      .website-link {
        margin-top: 20px;

        a {
          color: $ac-primary;
          display: flex;
          align-items: center;
          margin-bottom: 10px;
          font-size: 1rem;
          &:last-child {
            margin-bottom: 0;
          }

          img {
            max-width: 15px;
            margin-right: 10px;
          }
        }
      }
    }
  }
}

.sign-up-notification {
  border: 1px solid $color-border;
  padding: 20px;
}
// circle type profile start
.ac-profile-photo {
  figure {
    img {
      width: 120px;
      height: 120px;
      border: 2px solid $ac-primary;
    }

    figcaption {
      font-size: 18px;
      color: $color-heading;
      margin-top: 10px;
      display: block;
    }
  }
}

// circle type profile end

// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {
  .user-profile-wrapper.width-300 {
    width: 100% !important;
  }
}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) {
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) {
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) {
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
