body, html {
  margin: 0;
  padding: 0;
}

*{ box-sizing: border-box; }

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

.modal-wrapper {
    overflow: auto;    
    width: 70%;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 20px;
    background: #fff;
    border-radius: 15px;
}



.modalBody{
  display: block;
  padding: 5px;
  width: 98%;
}

.bodyContent{
  display: flex;
}
 
.modalLabel{
  margin-right: 5px !important;
  width: 40%;
  min-width: 40%;
}


.title-modal{
  text-align: center;
  margin-bottom: 20px;
}



