.mobile .dialog {
  display: none;
  position: fixed;
  top: calc(50vh - 150px);
  left: calc(50vw - 300px);
  width: 1000px;
  height: 600px;
  background-color: #358dfb;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 999;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  animation: fade 0.5s;
}
.mobile .dialog__close:hover {
  transform: rotate(180deg);
}
.mobile .dialog__close {
  position: absolute;
  height: 100px;
  width: 100px;
  top: -50px;
  right: -50px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s;
  cursor: pointer;
}
.mobile .dialog__container {
  border: 2px solid #fff;
  height: 576px;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
}
.mobile .dialog__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 120px;
}
.mobile .dialog__text-img {
  width: 95%;
}
.mobile .dialog__img {
  width: 35%;
}
.mobile .dialog__info-row {
  font-size: 40px;
  margin-bottom: 23px;
  color: #fff;
}
.mobile .dialog__info-row:first-child {
  margin-top: 48px;
}
.mobile .dialog__info-row:last-child {
  margin-left: -24px;
}
.mobile .dialog__button {
  height: 72px;
  width: 300px;
  margin-top: 56px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  margin-right: 24px;
  background-color: #fff;
}
.mobile .dialog__submit {
  background-color: #f27117;
  color: #fff;
}
.mobile ._LRF-bottom {
  display: none;
}
