.spg-dialog-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  animation-name: fade-in;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.spg-dialog-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 2.5px;
  animation-name: spg-dialog-show;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  text-align: center;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
}

@keyframes spg-dialog-show {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 20px));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.spg-dialog-title {
  font-size: 1.35rem;
  margin: 10px 0 25px;
}

.spg-dialog-subtitle {
  margin-top: 30px;
  font-size: 1.15rem;
}

input.spg-dialog-password-input {
  min-width: 350px;
  padding: 0.5rem;
  background-color: #f0f4f7;
  border: 1px solid #ddd;
  text-align: center;
}

.spg-btn {
  font-size: 1rem;
  border: none;
  background-color: #444;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 3.5px;
  cursor: pointer;
  transition: all 0.1s ease-out;
}

.spg-btn:hover {
  background-color: #111;
}

.spg-btn-danger {
  background-color: #e25353;
}

.spg-btn-danger:hover {
  background-color: #a74747;
}

.spg-btn-accept,
.spg-btn-discard {
  margin-top: 15px;
  margin-right: 5px;
}

.spg-btn-more {
  margin-top: 15px;
  color: #333;
  background-color: #fff;
  padding: 2px 5px;
}

.spg-btn-more:hover {
  background-color: #fff;
  color: #000;
  text-decoration: underline;
}

.spg-dialog-more {
  display: none;
  margin-top: 20px;
}

.spg-dialog-more-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.spg-range {
  width: 100%;
}

.spg-label {
  cursor: pointer;
}

.spg-align-left {
  text-align: left;
  margin-top: 5px;
}

.spg-btn-new {
  margin-top: 15px;
}

.spg-password-length {
  margin-bottom: 10px;
}
