.dialog {
  width: 100%;
  height: 100%;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  background: transparent;
  padding: spacing(4) 0;
  color: #000;
  overflow-y: scroll;
  position: fixed;
  display: none;
  align-items: center;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-family: "AnoRegular-Regular", sans-serif;
  text-transform: none;
}
.dialog[open] {
  display: flex;
}
@media screen and (min-width: 850px) {
  .dialog {
    font-size: 16px;
    line-height: 20px;
  }
}
.dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.dialog__inner {
  background: #000;
  color: #fff;
  padding: 30px;
  margin: 0 auto;
  max-width: 600px;
}

.dialog__header {
  margin: 0 0 20px 0;
}

.dialog__header__title {
  margin: 0;
}

.dialog__content {
  margin: 0 0 25px 0;
}
.dialog__content > * {
  margin: 0;
}
.dialog__content > *:not(:first-child) {
  margin: 10px 0 0 0;
}

.dialog__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog__button {
  display: inline-block;
  margin: 0;
  text-decoration: none;
  border: 0;
  font-family: "AnoRegular-Regular", sans-serif;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  padding: 2px 10px 0 10px;
  font-size: 14px;
  letter-spacing: 1px;
}
.dialog__button:focus {
  outline: none;
}
.dialog__button:not(:first-child) {
  margin: 0 0 0 15px;
}
