/*
 * Copyright © 2022. ЭБС Знаниум. znanium.com
 */
@keyframes rotate-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.z-overlay {
  background-color: rgba(250, 235, 215, 0.4);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.z-overlay > div {
  border: 1px solid #377cb5;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
  box-shadow: inset 0 0 20px 2px rgba(55, 124, 181, 0.5);
}
.z-overlay .svg16 {
  width: 64px;
  height: 64px;
  margin-top: 16px;
  fill: #377cb5 !important;
  animation-duration: 1s;
  animation-name: rotate-spinner;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
