body {
  margin: 0;
  padding: 0;
  background-color: #fdf7f1;
  font-family: "Roboto", Arial, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #202124;
  text-align: center
}

.warning-text {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
  padding-top: 80px;
}

@media (min-width: 900px) {
  .warning-text {
    padding-top: 180px;
  }
}

.user-info {
  text-align: left;
  width: 300px;
}

.user-info-flag {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  vertical-align: middle;
}

.popup {
  position: fixed;
  bottom: -300px;
  left: 0;
  right: 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0-2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 0 0;
  transition: transform .3s ease-out;
  z-index: 1000
}

.popup.show {
  transform: translateY(-300px)
}

.popup-content {
  max-width: 600px;
  margin: 0 auto;
}

.popup-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px
}

.logo {
  width: 32px;
  height: 32px;
  background-image: url(data:image/svg+xml,<svg\ xmlns=\"http://www.w3.org/2000/svg\"\ viewBox=\"0\ 0\ 24\ 24\"><path\ d=\"M12\ 2C6.48\ 2\ 2\ 6.48\ 2\ 12s4.48\ 10\ 10\ 10\ 10-4.48\ 10-10S17.52\ 2\ 12\ 2zm0\ 18c-4.41\ 0-8-3.59-8-8s3.59-8\ 8-8\ 8\ 3.59\ 8\ 8-3.59\ 8-8\ 8z\"\ fill=\"%231a73e8\"\/><circle\ cx=\"12\"\ cy=\"12\"\ r=\"4\"\ fill=\"%231a73e8\"\/><\/svg>);
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0
}

.popup-header {
  font-size: 22px;
  color: #202124;
  margin: 0;
  font-weight: 500;
  text-align: center;
  padding: 0 8px
}

.popup-text {
  color: #5f6368;
  line-height: 1.4;
  margin-bottom: 32px;
  font-size: 16px;
}

.popup-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.button {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: background-color .2s
}

.button-primary {
  background-color: #1a73e8;
  color: white
}

.button-primary:hover {
  background-color: #1557b0
}

.button-secondary {
  background-color: transparent;
  color: #1a73e8
}

.button-secondary:hover {
  background-color: #f6fafe
}

.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  --_m:
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

.loader-container {
  padding-top: 4rem;
}