/* blazor error */
#blazor-error-ui {
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.logo-loading {
  position: absolute;
  top: 35%;
  left: 45%;
  padding: 2vh;
  border-radius: 10px;
}

.logo-loading .loading-info {
  position: absolute;
  left: -50%;
  text-align: center;
  color: #2196f3;
  width: 200%;
}

/*Create document loading message  for mobile*/
@media (max-width: 991px) {
  .logo-loading {
    position: absolute;
    top: 65%;
    left: 50% !important;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 345px) and (max-width: 405px) {
  .loading-info span {
    position: relative;
    width: max-content !important;
    max-width: 100%;
    font-size: 13px;
    left: -2%;
  }
  .loading-info {
    width: max-content !important;
    left: -25% !important;
  }
}
/*End of custom loading wrapper for mobile*/
@media (max-width: 768px) {
  .logo-loading {
    left: 23%;
  }
}
.avatar__circle {
  background: linear-gradient(-45deg, #275FD4, #52AFFF);
  border-radius: 50%;
  height: 56px;
  text-align: center;
  width: 56px;
}

.avatar__circle .initials {
  font-size: 28px; /* 50% of parent */
  line-height: 1;
  position: relative;
  top: 14px; /* 25% of parent */
  color: #fff;
}

.avatar__circle__big {
  background: linear-gradient(-45deg, #275FD4, #52AFFF);
  border-radius: 50%;
  height: 100px;
  text-align: center;
  width: 100px;
}

.avatar__circle__big .initials {
  font-size: 50px; /* 50% of parent */
  line-height: 1;
  position: relative;
  top: 25px; /* 25% of parent */
  color: #fff;
}

/* Custom tooltip */
.upload-tooltip {
  position: relative;
}

.upload-tooltip .upload-tooltip__text {
  visibility: hidden;
  background-color: rgb(148, 163, 184);
  color: #fff;
  border-radius: 6px;
  padding: 15px;
  width: 240px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  margin-left: -80px;
}

.upload-tooltip:hover .upload-tooltip__text {
  visibility: visible;
}

/*# sourceMappingURL=loader.css.map */
