.Company-Icon {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  height: 100%;

  box-sizing: border-box;
  user-select: none;
  text-align: center;
  background: #2C3336;
  border-radius: 4px;
  flex-shrink: 0;

  &:not(.--error) {
    .Company-Icon__image {
      display: block;
    }
    .Company-Icon__initials {
      display: none;
    }
  }
}

.Company-Icon__image {
  display: none;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 4px;
}

.Company-Icon__initials {
  height: 12px;
  color: #F7F7F7;
  width: 100%;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 16px;
  left: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  line-height: 24px;
  margin-top: -12px;
}
