body.react-confirm-alert-body-element {
  overflow-y: hidden;
}

/* .react-confirm-alert-blur {
      filter: url(#gaussian-blur);
      filter: blur(2px);
      -webkit-filter: blur(2px);
  } */

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.85);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  /* display: flex; */
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  /* -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
      -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
      -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
      animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards; */
}

.react-confirm-alert-body {
  /* font-family: Arial, Helvetica, sans-serif; */
  width: 240px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  margin-top: 29px;
  color: #000;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 30px;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  display: block;
}

.react-confirm-alert-button-group > button {
  width: 40%;
  height: 45px;
  border-radius: 28px;
  background-color: #fff;
  border: 1px solid #999;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.14);

  padding: 0;
  cursor: pointer;
  outline: none;
}
.react-confirm-alert-button-group > button:last-child {
  margin-left: 10px;
}

@-webkit-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
