.modWin {
  border: none;
  padding: 0;
  overflow: hidden;
  background: none;
  max-width: 70%;
}

.modWin.dialog {
  box-shadow: 3px 5px 10px #777;
}

.modWin .resultsButtons,
.modWin .buttons {
  text-align: end;
}

.modWin::backdrop {
  background-color: #777;
  opacity: 0.5;
}

.modWin .titleBar {
  display: flex;
  color: white;
  background: var(--color-primary);
  padding: 10px;
  cursor: move;
}

.modWin .titleBar:hover {
  background-color: #b70016;
}

.modWin .titleBar .title {
  order: 1;
  width: 100%;
  color: #fff;
  font: 13px/13px Arial, sans-serif;
  text-transform: uppercase;
}

.modWin .titleBar .closeBtn {
  order: 2;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center, center;
  float: left;
  width: 16px;
  height: 16px;
  padding-left: 10px;
}

.modWin .content {
  padding: 10px;
  background-color: #eee;
}

.fetchApiLoader {
  margin: auto;
  width: 200px;
  height: 200px;
  font-size: 5em;
  animation: spin 5s infinite linear;
  text-align: center;
  vertical-align: middle;
  line-height: 100px;
  color: #e0e0e0;
}

.fetchApiLoader.icon-spinner {
  opacity: 1;
  color: var(--color-primary);
  font-size: 10em;
  text-shadow: 3px 5px 10px #777;
}

#fetchApiLoader:focus {
  outline: none;
}

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