.dialog[open] {
  padding: 0;
  animation: show 0.4s;
  position: absolute;
  inset: 0;
  margin: auto;
  overflow: visible;
  z-index: 2147483646;
}
.dialog[open]::backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    animation: show 0.4s;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dialog[open].is-closing {
  animation: hide 0.4s;
}
.dialog[open].is-closing::backdrop {
  animation: hide 0.4s;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.dialog__content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 60px 120px;
  width: 100%;
  max-width: 500px;
}
.dialog__close {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: transparent;
  width: 3rem;
  height: 3rem;
  font-size: 2.5rem;
  color: #000;
  cursor: pointer;
}
.dialog__strong {
  font-size: 28px !important;
}
.dialog__text {
  padding-top: 24px !important;
}
.dialog__button-link {
  margin-top: 24px;
  display: inline-block;
  min-height: 70px;
  padding: 20px 0;
  width: 100%;
  max-width: 400px;
  background-color: #cf142b;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity ease .3s;
}
.dialog__button-link:hover {
  opacity: 0.7;
}
.dialog__button-link span {
  font-size: 20px;
  padding-left: 30px;
  margin-right: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  letter-spacing: .046em;
}
.dialog__button-link img {
  right: 12px;
  width: 20px !important;
  height: 20px;
  position: absolute;
  top: 50%;
  display: inline-block;
  transform: translateY(-50%);
}
.dialog__button-text {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  padding-left: 23px;
  cursor: pointer;
  background-color: #fff;
  font-family: "FrutigerLTPro-Roman" !important;
}
.dialog__button-text img {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 16px !important;
  height: 16px;
  transform: translateY(-50%);
}
.dialog__button-text span {
  font-weight: 700;
  color: #cf142b !important;
  word-break: break-word;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .dialog__content {
  padding: 50px 20px;
  width: 90%;
  }
}