.modal-background {
  display: flex;
  justify-content: center;
  align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 600;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0,0,0,.7);
    transition: opacity .25s ease,visibility 0s ease .25s;
}

.modal-background-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease,visibility 0s ease;
}

.modal-wrapper {
  height: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 20px;
}

.modal {
  height: auto;
width: 100%;
box-sizing: border-box;
padding: 20px 20px;
background-color: #fff;
border-radius: 12px;
text-align: center;

}

.modal img {
  width: 80px;
}

.modal-title {
  font-family: 'Roboto-Semibold';
  font-size: 23px;
  margin-top: 12px;
}

.modal-subtitle {
  font-family: 'Roboto-Regular';
  font-size: 15px;
  margin-top: 5px;
}

.modal-success-button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  background-color: #0018FF;
  margin-top: 25px;
  border-radius: 7px;
  color: #fff;
}

.modal-failure-button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  background-color: #000;
  margin-top: 25px;
  border-radius: 7px;
  color: #fff;
}
