.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  z-index: 100;
}

.modal-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 80%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 30px;
  background-color: #e30000;
}

.modal-body {
  padding: 20px;
}

.modal-body h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #111111;

  width: 100%;

  padding-bottom: 20px;
  margin-bottom: 40px;

  border-bottom: #1111115b 1px solid;
}

.modal-body p {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: left;
  color: #111111;
}

.modal-close {
  cursor: pointer;
  margin-right: 10px;
  color: #fff;
}

.modal-inner {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
