.modal{
  width: 100vw;
  height: 100vh;
  position:fixed;
  top:0;
  left:0;
  z-index: 100000;
}
.modal > .overlay{
  width: 100vw;
  height: 100vh;
  position:fixed;
  top:0;
  left:0;
  z-index: 100000;
  opacity: 0.6;
  background-color: black;
}
.modal > .content{
  width: 30vw;
  position:fixed;
  top:50%;
  left: 50%;
  z-index: 100001;
  transform: translate(-50%, -50%);
  display:block;
  min-height: unset;
  padding:2em;
  max-height: 100vh;
  overflow:auto;
}
@media screen and (max-width: 992px){
	.modal > .content{
		width:90vw;
	}
}

.modal > .content .button.decline{
  background-color: red;
}
.modal > .content .button.info{
  background-color: white;
  border: 1px solid #202020;
}