.save-game-button {
  position: relative;
}

.save-game-button > span {
  font-size: 1.15rem;
  color: #8ce7df;
}

.save-game-button > i {
  position: absolute;
  width: 8px;
  height: 8px;
  right: 9px;
  bottom: 9px;
  border-radius: 50%;
  background: #819297;
  box-shadow: 0 0 0 3px rgba(7, 17, 24, .8);
}

.save-game-button.saved > i {
  background: #68e2c5;
  box-shadow: 0 0 12px #68e2c5, 0 0 0 3px rgba(7, 17, 24, .8);
}

.save-game-panel {
  position: fixed;
  z-index: 85;
  top: 152px;
  left: 50%;
  transform: translateX(-50%);
  width: min(440px, calc(100vw - 36px));
  max-height: calc(100vh - 250px);
  overflow: auto;
  padding: 24px;
  color: #eaf5f2;
  border: 1px solid rgba(111, 218, 207, .3);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 24, 31, .97), rgba(6, 15, 22, .95));
  box-shadow: 0 28px 75px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .04);
}

.save-panel-head,
.save-status-line,
.save-slot,
.save-primary-actions {
  display: flex;
  align-items: center;
}

.save-panel-head {
  justify-content: space-between;
  margin-bottom: 20px;
}

.save-panel-head small {
  color: #f2ad55;
  letter-spacing: .15em;
  font-weight: 800;
}

.save-panel-head h2 {
  margin: 3px 0 0;
  font-size: 2rem;
}

.save-panel-head button {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(159, 201, 202, .25);
  color: #b9c8ca;
  background: rgba(255, 255, 255, .035);
  font-size: 1.8rem;
}

.save-status-line {
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid rgba(104, 226, 197, .18);
  border-radius: 16px;
  background: rgba(104, 226, 197, .055);
}

.save-status-line > span {
  flex: 0 0 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #6de3c7;
  box-shadow: 0 0 16px rgba(109, 227, 199, .8);
}

.save-status-line div,
.save-slot-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.save-status-line small,
.save-slot small,
.save-privacy {
  color: #91a6aa;
}

.save-primary-actions {
  gap: 10px;
  margin: 14px 0 18px;
}

.save-primary-actions button {
  flex: 1;
  min-height: 74px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  text-align: left;
  padding: 12px 13px;
  border: 1px solid rgba(104, 226, 197, .24);
  border-radius: 16px;
  color: #e9f5f2;
  background: rgba(104, 226, 197, .075);
}

.save-primary-actions button > span {
  grid-row: 1 / 3;
  font-size: 1.3rem;
  color: #70dfd6;
  text-align: center;
}

.save-primary-actions button small {
  color: #91a6aa;
}

.save-primary-actions button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.google-g {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f2eb;
  color: #2b6acb !important;
  font: 800 1rem/1 system-ui;
}

.save-slots {
  display: grid;
  gap: 8px;
}

.save-slot {
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(163, 198, 200, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.save-slot-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(242, 173, 85, .12);
  color: #f2ad55;
  font-weight: 900;
}

.save-slot-copy {
  flex: 1;
}

.save-slot-actions {
  display: flex;
  gap: 5px;
}

.save-slot-actions button {
  border: 1px solid rgba(145, 166, 170, .2);
  border-radius: 9px;
  padding: 7px 9px;
  color: #cbd8d7;
  background: rgba(255, 255, 255, .035);
  font-size: .7rem;
  font-weight: 800;
}

.save-file-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 15px;
}

.save-file-actions button,
.save-file-actions label,
.save-return-launch {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(145, 166, 170, .2);
  border-radius: 12px;
  color: #bdcccd;
  background: rgba(255, 255, 255, .03);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.save-return-launch {
  margin-top: 8px;
}

.save-privacy {
  margin: 14px 2px 0;
  font-size: .72rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .save-game-panel {
    top: 112px;
    left: 50%;
    max-height: calc(100vh - 190px);
  }
}
