.hnModernModalBg {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.hnModernModal {
  position: fixed;
  z-index: 110;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 650px;
  height: 50%;
  max-height: 50vh;
  border: none;
  background-color: #fff;
  border-radius: 8px;
  opacity: 1;
  text-align: justify;
  transform: translate(-50%, -50%);
}

.hnModernModalContent {
  overflow: auto;
  height: calc(88% - 30px);
  margin: 30px 10px 0 30px;
  padding-right: 30px;
}

.hnModernModalFooter {
  width: calc(100% - 60px);
  height: 12%;
  padding: 0 30px;
  border-top: 1px solid #c8cacb;
  cursor: pointer;
}

.hnModernModalFooterButtons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.hnModernModalCloseButton {
  position: absolute;
  top: 0;
  right: 3px;
  width: 30px;
  height: 30px;
  background-image: url('../img/icons/close.svg');
  background-size: cover;
}

.hnModernModalButton {
  min-width: 140px;
  height: auto;
  padding: 0.5em 1em;
  border: 1px solid;
  margin: 0 0 0 0.5em;
  border-radius: 2em;
  color: #232323;
  text-align: center;
}
