/* Member profile — game_tgn_0037 BLUEPRINT HALL */

.g37-profile-page {
  flex: 1;
  min-width: 0;
  padding: 20px 0 40px;
  color: var(--g37-fg);
}

.g37-profile-page button,
.g37-profile-page .g37-stat-badge,
.g37-profile-page .g37-profile-form label,
.g37-profile-page .g37-profile-nav-item,
.g37-profile-page .g37-btn-secondary {
  text-transform: none;
  letter-spacing: normal;
}

.g37-profile-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

@media (min-width: 900px) {
  .g37-profile-shell {
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 16px;
  }
}

.g37-profile-aside,
.g37-profile-main {
  background: var(--g37-navy2);
  border: 1px solid var(--g37-line);
  border-radius: var(--g37-radius);
  box-shadow: none;
  min-width: 0;
}

.g37-profile-aside {
  padding: 16px;
  color: var(--g37-fg);
}

@media (min-width: 900px) {
  .g37-profile-aside {
    position: sticky;
    top: calc(var(--g37-title-offset, var(--g37-title-h)) + 12px);
  }
}

.g37-profile-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--g37-line);
}

.g37-profile-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--g37-radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--g37-cyan-ink);
  background: var(--g37-cyan);
  border: 1px solid var(--g37-line-strong);
}

.g37-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g37-profile-identity {
  min-width: 0;
}

.g37-aside-label {
  margin: 0 0 4px;
  font-family: var(--g37-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g37-cyan);
}

.g37-profile-name {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--g37-fg);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g37-profile-email {
  margin: 0;
  font-size: 0.75rem;
  color: var(--g37-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g37-profile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.g37-profile-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--g37-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--g37-radius-sm);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.g37-profile-nav-item:hover {
  background: var(--g37-navy3);
  color: var(--g37-fg);
  border-color: var(--g37-line);
}

.g37-profile-nav-item.active {
  background: rgba(94, 200, 216, 0.12);
  color: var(--g37-cyan);
  border-color: var(--g37-line);
}

.g37-profile-nav-item .g37-nav-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.g37-profile-nav-item .g37-nav-icon--heart {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}
.g37-profile-nav-item .g37-nav-icon--clock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 100 20 10 10 0 000-20zm0 2a8 8 0 110 16 8 8 0 010-16zm-.5 4v4.25l3.5 2.1.75-1.23-3-1.8V8H11.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 100 20 10 10 0 000-20zm0 2a8 8 0 110 16 8 8 0 010-16zm-.5 4v4.25l3.5 2.1.75-1.23-3-1.8V8H11.5z'/%3E%3C/svg%3E");
}
.g37-profile-nav-item .g37-nav-icon--user {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12a4 4 0 100-8 4 4 0 000 8zm-6 8a6 6 0 0112 0H6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 12a4 4 0 100-8 4 4 0 000 8zm-6 8a6 6 0 0112 0H6z'/%3E%3C/svg%3E");
}
.g37-profile-nav-item .g37-nav-icon--lock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 9h-1V7a4 4 0 00-8 0v2H7a2 2 0 00-2 2v8a2 2 0 002 2h10a2 2 0 002-2v-8a2 2 0 00-2-2zm-3 0h-4V7a2 2 0 114 0v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17 9h-1V7a4 4 0 00-8 0v2H7a2 2 0 00-2 2v8a2 2 0 002 2h10a2 2 0 002-2v-8a2 2 0 00-2-2zm-3 0h-4V7a2 2 0 114 0v2z'/%3E%3C/svg%3E");
}

@media (max-width: 899px) {
  .g37-profile-aside {
    padding: 12px;
  }
  .g37-profile-user {
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .g37-profile-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px 2px;
  }
  .g37-profile-nav::-webkit-scrollbar { display: none; }
  .g37-profile-nav-item {
    flex: 0 0 auto;
    width: auto;
    padding: 8px 12px;
    background: var(--g37-navy3);
    font-size: 0.8125rem;
  }
  .g37-profile-nav-item.active {
    background: rgba(94, 200, 216, 0.18);
    color: var(--g37-cyan);
    border-color: var(--g37-line);
  }
}

.g37-profile-main {
  padding: 18px 18px 20px;
}

.g37-profile-panel { display: none; }
.g37-profile-panel.active { display: block; width: 100%; }

.g37-profile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--g37-line);
}

.g37-profile-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--g37-fg);
}

.g37-stat-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--g37-cyan);
  background: rgba(94, 200, 216, 0.12);
  border: 1px solid var(--g37-line);
  border-radius: var(--g37-radius-sm);
}

.g37-profile-page .g37-game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 640px) {
  .g37-profile-page .g37-ranked-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .g37-profile-page .g37-ranked-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.g37-profile-page .g37-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--g37-navy3);
  border: 1px solid var(--g37-line);
  border-radius: var(--g37-radius-sm);
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.g37-profile-page .g37-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--g37-cyan);
}

.g37-profile-page .g37-card-index { display: none; }

.g37-profile-page .g37-ranked-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--g37-navy);
  text-decoration: none;
}

.g37-profile-page .g37-ranked-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g37-profile-page .g37-ranked-body,
.g37-profile-page .article-list .special-card-content {
  padding: 10px 10px 12px;
  min-width: 0;
}

.g37-profile-page .g37-game-card .game-title {
  display: block;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g37-profile-page .g37-game-card .game-title a {
  color: var(--g37-fg);
  text-decoration: none;
}

.g37-profile-page .g37-game-card .game-title a:hover {
  color: var(--g37-cyan);
}

.g37-profile-page .g37-game-card .game-star {
  margin: 0;
}

.g37-profile-page .g37-game-card .g37-card-tags,
.g37-profile-page .g37-game-card .brief-comment-game {
  display: none;
}

.g37-profile-page .g37-game-card .g37-btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
  min-height: 30px;
  padding: 0 10px;
  align-self: stretch;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--g37-muted);
  background: transparent;
  border: 1px solid var(--g37-line);
  border-radius: var(--g37-radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.g37-profile-page .g37-game-card .g37-btn-remove:hover {
  color: var(--g37-cyan-ink);
  background: var(--g37-cyan);
  border-color: var(--g37-cyan);
  text-decoration: none;
}

.g37-btn-clear,
.g37-btn-load-more,
.g37-btn-secondary,
.g37-btn-remove--inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--g37-radius-sm);
  border: 1px solid var(--g37-line);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.g37-btn-clear {
  color: var(--g37-muted);
  background: transparent;
}

.g37-btn-clear:hover {
  border-color: var(--g37-orange);
  color: var(--g37-orange);
}

.g37-btn-load-more {
  position: relative;
  width: 100%;
  margin-top: 16px;
  color: var(--g37-fg);
  background: transparent;
}

.g37-btn-load-more:hover {
  border-color: var(--g37-cyan);
  color: var(--g37-cyan);
  background: var(--g37-navy3);
}

.g37-btn-load-more.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.g37-btn-load-more:disabled {
  cursor: not-allowed;
  opacity: 0.85;
  filter: none;
}

.g37-btn-load-more.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: profile-load-more-spin 0.7s linear infinite;
}

@keyframes profile-load-more-spin {
  to { transform: rotate(360deg); }
}


.g37-btn-secondary {
  color: var(--g37-fg);
  background: var(--g37-navy3);
  cursor: pointer;
}

.g37-btn-secondary:hover {
  border-color: var(--g37-cyan);
  color: var(--g37-cyan);
}

.g37-btn-remove--inline {
  width: auto;
  color: var(--g37-muted);
  background: transparent;
}

.g37-btn-remove--inline:hover {
  color: var(--g37-orange);
  border-color: var(--g37-orange);
}

.g37-loading[hidden],
.g37-empty-state[hidden],
.g37-btn-load-more[hidden] {
  display: none !important;
}

.g37-empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--g37-muted);
}

.g37-empty-state p {
  margin: 0 0 14px;
}

.g37-empty-ico {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  background-color: var(--g37-cyan);
  opacity: 0.45;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.g37-empty-ico--heart {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}
.g37-empty-ico--clock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 100 20 10 10 0 000-20zm0 2a8 8 0 110 16 8 8 0 010-16zm-.5 4v4.25l3.5 2.1.75-1.23-3-1.8V8H11.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 100 20 10 10 0 000-20zm0 2a8 8 0 110 16 8 8 0 010-16zm-.5 4v4.25l3.5 2.1.75-1.23-3-1.8V8H11.5z'/%3E%3C/svg%3E");
}
.g37-empty-ico--trash {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 7h12v14a1 1 0 01-1 1H7a1 1 0 01-1-1V7zm3-4h6l1 2H8l1-2zM4 7h16v2H4V7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 7h12v14a1 1 0 01-1 1H7a1 1 0 01-1-1V7zm3-4h6l1 2H8l1-2zM4 7h16v2H4V7z'/%3E%3C/svg%3E");
}

.g37-loading {
  text-align: center;
  padding: 36px 12px;
  color: var(--g37-muted);
}

.g37-loading-spinner {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(94, 200, 216, 0.2);
  border-top-color: var(--g37-cyan);
  border-radius: 50%;
  animation: g37-profile-spin 0.7s linear infinite;
  margin-bottom: 8px;
}

@keyframes g37-profile-spin {
  to { transform: rotate(360deg); }
}

.g37-profile-form-block {
  max-width: 480px;
}

.g37-avatar-upload {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--g37-line);
}

.g37-avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: var(--g37-radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--g37-cyan-ink);
  background: var(--g37-cyan);
  border: 1px solid var(--g37-line-strong);
}

.g37-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g37-avatar-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.g37-avatar-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--g37-muted);
}

.g37-form-row {
  display: grid;
  gap: 12px;
}

@media (min-width: 560px) {
  .g37-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.g37-profile-form .g37-form-group { margin-bottom: 14px; }

.g37-profile-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--g37-muted);
}

.g37-profile-form .g37-form-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--g37-fg);
  background: var(--g37-navy);
  border: 1px solid var(--g37-line);
  border-radius: var(--g37-radius-sm);
  outline: none;
  box-sizing: border-box;
}

.g37-profile-form .g37-form-input:focus {
  border-color: var(--g37-cyan);
}

.g37-profile-form .g37-form-input[disabled] {
  background: var(--g37-navy3);
  color: var(--g37-muted);
  cursor: not-allowed;
}

.g37-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 40000;
  max-width: min(420px, 90vw);
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--g37-radius);
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.g37-toast.show { transform: translateX(-50%) translateY(0); }
.g37-toast.success {
  color: #b8f0c8;
  background: #123526;
  border-color: rgba(94, 200, 216, 0.45);
}
.g37-toast.error {
  color: #ffc9c9;
  background: #3a1a1a;
  border-color: rgba(232, 148, 90, 0.5);
}
.g37-toast.warning {
  color: #ffe0b8;
  background: #3a2a12;
  border-color: rgba(232, 148, 90, 0.45);
}

.g37-confirm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30000;
  background: rgba(5, 16, 28, 0.72);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.g37-confirm-overlay.show { display: flex; }

.g37-confirm-modal {
  width: 100%;
  max-width: 360px;
  padding: 24px;
  background: var(--g37-navy2);
  border: 1px solid var(--g37-line);
  border-radius: var(--g37-radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: var(--g37-fg);
}

.g37-confirm-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--g37-radius-sm);
  background: rgba(94, 200, 216, 0.12);
  color: var(--g37-cyan);
  border: 1px solid var(--g37-line);
}

.g37-confirm-icon .g37-empty-ico {
  margin: 0;
  width: 20px;
  height: 20px;
  opacity: 1;
  background-color: currentColor;
}

.g37-confirm-title {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  color: var(--g37-fg);
}

.g37-confirm-desc {
  margin: 0 0 18px;
  font-size: 0.875rem;
  color: var(--g37-muted);
}

.g37-confirm-actions {
  display: flex;
  gap: 10px;
}

.g37-confirm-cancel,
.g37-confirm-ok {
  flex: 1;
  min-height: 42px;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--g37-radius-sm);
  border: 1px solid var(--g37-line);
}

.g37-confirm-cancel {
  background: var(--g37-navy3);
  color: var(--g37-fg);
}

.g37-confirm-cancel:hover {
  border-color: var(--g37-line-strong);
}

.g37-confirm-ok {
  background: var(--g37-orange);
  color: var(--g37-orange-ink);
  border-color: var(--g37-orange);
}

.g37-confirm-ok:hover {
  background: var(--g37-cyan);
  border-color: var(--g37-cyan);
  color: var(--g37-cyan-ink);
}

@media (max-width: 767px) {
  .g37-profile-page { padding: 12px 0 24px; }
  .g37-profile-main { padding: 14px; }
  .g37-profile-page .g37-game-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .g37-loading-spinner { animation: none; }
  .g37-toast { transition: none; }
  .g37-profile-page .g37-game-card { transition: none; }
}


.g37-confirm-ok {
  position: relative;
}

.g37-confirm-ok:disabled,
.g37-confirm-cancel:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.g37-confirm-ok.is-loading {
  color: transparent;
  pointer-events: none;
}

.g37-confirm-ok.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: g37-confirm-spin 0.7s linear infinite;
}

@keyframes g37-confirm-spin {
  to { transform: rotate(360deg); }
}
