body { padding-top: 100px; }

img.square-image {
    width: 30px;
}

.user-pic {
  position: relative;
  text-align: center;
  width: 50px;
  height: 50px;
}

.user-pic .profession {
  position: absolute;
  bottom: -1px;
  left: -5px;
}

.user-pic .reputation {
  position: absolute;
  bottom: -1px;
  right: -5px;
}


.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: lightgray;
  /*transform: translate(-50%, -50%);*/
}


.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;

    left: 50%;
    position: absolute;
    top: 50%;

}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.img-crop-square-top {
  object-fit: cover;
  object-position: top;
}

.img-crop-square-center {
  object-fit: cover;
  object-position: center;
}
