.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__container {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  width: 90%;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.modal__header{
	border-bottom: 1px solid rgb(233, 233, 233);
}


.modal__content{
	font-size: 18px;
	font-family: BDO Grotesk,sans-serif;
}

footer{
	margin-top: 25px;
	display: flex;
	flex-direction: row;
	gap: 25px; 
	align-items: center;
}

.modal .modal__btn{
	cursor: pointer;
	font-size:16px;
}
.modal .modal__btn:last-child{
	color: black;
	text-decoration: none;
}

.modal .modal__btn:last-child:hover{
	color: rgb(56, 56, 56);
}


.modal .modal__btn-primary{
	padding: 10px 20px;
	background-color: #ffb32f;
	color: #000;
	border-radius: 2px;
	border: 1px solid #ffb32f;
}

.modal .modal__btn-primary:hover {
	background-color: black;
	color: #ffb32f;
	border: 1px solid #ffb32f;
}