.modal {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
}

.body1 {
  background-color: #000;
}

.transparentmodal {
  display: block;
  width: 1100px;
  margin-top: 308px;
  margin-right: auto;
  margin-left: auto;
  padding: 0px 0px 1px;
  background-color: hsla(0, 0%, 100%, .6);
}

.top-bar-with-close {
  height: 42px;
}

.closebox {
  width: 42px;
  height: 42px;
  padding: 9px;
  float: right;
}

.modalcontent {
  margin: 0px 42px 42px;
}

.modal-left {
  width: 50%;
  float: left; display: inline-block;
}

.modal-right {
  display: inline-block;
  width: 50%;
}

@media (max-width: 991px) {
  .transparentmodal {
    width: 90%;
    margin-top: 90px;
    font-style: italic;
  }
}

@media (max-width: 767px) {
  .transparentmodal {
    margin-top: 90px;
  }
  .top-bar-with-close {
    height: 27px;
  }
  .closebox {
    width: 25px;
    height: 25px;
    padding: 0px;
  }
  .modalcontent {
    margin-right: 27px;
    margin-bottom: 27px;
    margin-left: 27px;
  }
  .modal-left {
    width: 50%;
  }
  .modal-right {
    width: 50%;
  }
}

@media (max-width: 479px) {
  .modal {
    z-index: 1000;
  }
  .transparentmodal {
    margin-top: 90px;
  }
  .modal-left {
    width: auto;
  }
  .modal-right {
    width: auto;
  }
}