/* loader */

.loading-window {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 5;
  right: 0;
  top: 0;
}
.loading-window-transparent-header {
  height: 60px;
  width: 100%;
  background: #ffffff94;
}

.loading-window-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  height: calc(100% - 60px);
}
.loading-window-label {
  color: #808080;
  font-size: 10px;
  font-family: "Fira Sans", sans-serif;
}

.loading-window img {
  width: 21px;
  height: 21px;
  margin-bottom: 5px;
  margin-top: 4%;
}
