

.alert *:focus {
  outline: 0
}

.alert {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -135px;
  margin-top: -50px;
  width: 270px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 13px;
  overflow: hidden;
  z-index: 9999999999999999999999998;
  background-color: rgba(255, 255, 255, 1.0);
}

.alert .inner {
  padding: 15px;
}

.alert .title {
  font-weight: 500;
  font-size: 18px;
}

.alert .text {
  margin-top: 5px;
}

.alert .button {
  position: relative;
  height: 44px;
  line-height: 44px;
  font-size: 17px;
  color: #007aff;
  border-radius: 0 0 13px 13px;
  overflow: hidden;
  cursor: pointer;
}

.alert .button:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  display: block;
  background-color: #c4c4c4;
  z-index: 9999999999999999999999999;
}