.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: 111111;
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;

  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-animation: react-confirm-alert-fadeIn 0.1s 0.2s forwards;
  -moz-animation: react-confirm-alert-fadeIn 0.1s 0.2s forwards;
  -o-animation: react-confirm-alert-fadeIn 0.1s 0.2s forwards;
  animation: react-confirm-alert-fadeIn 0.1s 0.2s forwards;
}

.react-confirm-alert {}

.react-confirm-alert-body {
  width: 400px;
  text-align: left;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: #666;
}

.react-confirm-alert-svg{
  display: none;
}

.react-confirm-alert-body  h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
  padding-bottom: 14px;
  border-bottom: 2px dashed #ddd;
}

.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-end;
  padding: 15px;
  text-align: right;
  /*border-top: 1px solid #e5e5e5;*/
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #85c056;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

@-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;
  }
}
