.custom_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .9);
  z-index: -1000;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom_modal > div {
  max-width: 800px;
  width: 90%;
}

.custom_modal .bg-white {
  background-color: white;
}

.custom_modal > div h3,
.custom_modal > div p {
  text-align: center;
  color: white;
}

.custom_modal > div h3 {
  font-size: 2rem;
}

.custom_modal > div hr {
  height: 2px;
  background-color: rgb(66, 66, 66);
  border: 0;
}

.custom_modal > div p {
  font-size: 1rem;
}

.custom_modal > div button {
  background-color: transparent;
  margin: 7px;
  float: right;
}

.custom_modal > div button:hover,
.custom_modal > div button:focus {
  color: white;
}

.custom_modal > div .agree {
  border: 1px solid #4CAF50;
  color: #4CAF50;
}

.custom_modal > div .agree:hover,
.custom_modal > div .agree:focus {
  background-color: #4CAF50;
}

.custom_modal > div .disagree {
  border: 1px solid #F44336;
  color: #F44336;
}

.custom_modal > div .disagree:hover,
.custom_modal > div .disagree:focus {
  background-color: #F44336;
}
