#ac-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(144, 48, 4, 0.6);
  z-index: 1001;
}

#popup {
  width: 360px;
  padding: 30px 40px;
  height: 340px;
  background: #FFFFFF;
  border-radius: 8px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%; 
  left: 50%;
}

button{
  display: block;
  margin: 0 0 20px auto;
  background-color: transparent;
  font-size: 30px;
  color: #e82929;
  border: none;
  outline: none;
  cursor: pointer;
}

.popup p{
  font-size: 14px;
  text-align: justify;
  margin: 20px 0;
}


