::ng-deep.upload-list {
  overflow: hidden;
}

.overlay {
  position: relative;
  .delete-button {
    background-color: #fafafa;
    position: absolute;
    top: -6px;
    right: -6px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
  }
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;

  .btn-close {
    margin: 0;
  }
}

::ng-deep.profile-tabs {
  border-bottom: 0;
  .nav-item {
    margin-bottom: -0px;

    .nav-link {
      position: relative;
      padding: 0.7rem 0;
      margin: 0 1rem;
      font-weight: 500;
      color: var(--bs-body-color);
      display: inline-flex;
      align-items: center;
      &:after {
        content: '';
        background: var(--bs-primary);
        position: absolute;
        transition: all 0.3s ease-in-out;
        left: 50%;
        right: 50%;
        bottom: -1px;
        height: 2px;
        border-radius: 2px 2px 0 0;
      }
    }
  }

  .nav-link:hover {
    border-color: transparent;
    color: var(--bs-primary);
    .material-icons-two-tone {
      background-color: var(--bs-primary);
    }
  }

  .nav-item.show .nav-link,
  .nav-link.active {
    border-color: transparent;
    background: transparent;
    color: var(--bs-primary);
    &:after {
      left: 0;
      right: 0;
    }
  }
}
