.OrderSignIn{

}

.signature-pad{
  border: 1px dashed #000;
  max-width: 400px;
  /* width: 100%; */
}

/* btn */
.OSI-showPDF-buttons{
  display: flex;
  gap: 3px;
}
.OSI-showPDF-buttons .button{
  background: #1e2432;
  color: #fff;
  border: 1px solid #1e2432;
  border-radius: 0;
}

/* modal */
.OSI-PdfDialog{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;

}
.OSI-PdfDialog__overlay{
  background-color: #00000074;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.OSI-PdfDialog__modal{
  background-color: #fff;
  box-shadow: #00000096 5px 5px 30px -10px;
  width: 100%;
  max-width: 800px;
  padding: 30px 25px 25px;
  position: relative;
}
.OSI-PdfDialog__modal iframe{
  width: 100%;
  height: 90vh;
  border: 1px solid #eee;
}
.OSI-PdfDialog .close{
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background: transparent;
  color: #000;
  border: 0;

  transition: 333ms;
  cursor: pointer;

}
.OSI-PdfDialog .close:hover svg{
  transform: scale(1.1);
}
.OSI-PdfDialog .close svg{
  display: block;
  height: 15px;
  width: 15px;
  transform-origin: center;
}
