﻿.install-prompt {
  background-color: #54595f;
  color: #fff;
  position: fixed;
  bottom: 0.5rem;
  padding: 0.5rem;
  display: flex;
  font-size: 1.5rem;
  border-radius: 0.25rem;
  z-index: 99;
}
.install-prompt__btn-install, .install-prompt__btn-cancel {
  width: 4em;
}
.install-prompt__btn-install {
  margin-left: auto;
}
.install-prompt__btn-cancel {
  margin-left: 0.3rem;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 7px;
  width: 10em;
  height: 10em;
  transform: translate(-50%, -50%);
}
.loader__text {
  margin-top: 7.5rem;
  margin-left: -6.25rem;
  width: 18.75rem;
  text-align: center;
}

.loader-block {
  opacity: 0;
  background: #07689f;
  -webkit-animation: show 0.88s step-end infinite alternate, pulse 0.88s linear infinite alternate;
  animation: show 0.88s step-end infinite alternate, pulse 0.88s linear infinite alternate;
  box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
}

.loader-block:nth-child(1) {
  -webkit-animation-delay: 0.065s;
  animation-delay: 0.065s;
}

.loader-block:nth-child(2) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
}

.loader-block:nth-child(3) {
  -webkit-animation-delay: 0.195s;
  animation-delay: 0.195s;
}

.loader-block:nth-child(4) {
  -webkit-animation-delay: 0.325s;
  animation-delay: 0.325s;
}

.loader-block:nth-child(5) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
}

.loader-block:nth-child(6) {
  -webkit-animation-delay: 0.455s;
  animation-delay: 0.455s;
}

.loader-block:nth-child(7) {
  -webkit-animation-delay: 0.39s;
  animation-delay: 0.39s;
}

.loader-block:nth-child(8) {
  -webkit-animation-delay: 0.26s;
  animation-delay: 0.26s;
}

@-webkit-keyframes pulse {
  from, 40% {
    background: #fdfdfd;
  }
  to {
    background: #07689f;
  }
}
@-webkit-keyframes show {
  from, 40% {
    opacity: 0;
  }
  41%, to {
    opacity: 1;
  }
}
@keyframes pulse {
  from, 40% {
    background: #fdfdfd;
  }
  to {
    background: #07689f;
  }
}
@keyframes show {
  from, 40% {
    opacity: 0;
  }
  41%, to {
    opacity: 1;
  }
}
.key-value-list .row {
  align-items: center;
}
.key-value-list .row .key-label {
  font-size: 1rem;
}

.bg-purple {
  background-color: #b182e3;
}

.bg-editable {
  background-color: rgb(215, 239, 139);
}

.bg-editable.alt-row {
  background-color: rgb(204.25, 227.05, 132.05);
}

.bg-non-editable {
  background-color: beige;
}

.bg-non-editable.alt-row {
  background-color: rgb(232.75, 232.75, 209);
}
