.content-for-modal{
  display: none !important;
}
button.open-modal{
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
.whm-modal {
  display: none;
}
.whm-modal .whm-modal-dialog {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
}
.whm-modal .whm-modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.whm-modal .whm-modal-content {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whm-modal .whm-modal-body {
  margin: 0 auto;
  width: 100%;
  max-height: 100%;
  position: relative;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .whm-modal .whm-modal-body {
    width: 90%;
  }
}
.whm-modal .whm-modal-body .close {
  all: unset;
  line-height: 1;
  color: #fff;
  z-index: 1;
  position: absolute;
  right: 0;
  top: -1.2rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.whm-modal .whm-modal-body .close:hover, .whm-modal .whm-modal-body .close:focus {
  color: var(--orange);
  text-decoration: underline;
}