.coin-wait-block {
  position: fixed;
  display: none;
  justify-content: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  font-family: 'Gilroy-Regular', sans-serif;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.coin-wait-block__coin-wait {
  background-color: white;
  margin: auto;
  border-radius: 20px;
  border: none;
  width: 260px;
}

.coin-wait {
  padding: 20px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

.coin-wait__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coin-wait__title h3 {
  float: left;
  order: 1;
  margin-right: auto;
}

.coin-wait__title img {
  float: right;
  order: 2;
  margin-left: auto;
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.coin-wait button {
  display: block;
  width: 150px;
  height: 35px;
  background: #75155C;
  color: white;
  font-size: 18px;
  margin: 7px auto;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}