
.signature-pad {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 800px;
  border: 1px solid #e8e8e8;
  /*background-color: #f8f8f8;*/
  border-radius: 5px;
  padding: 10px;
}

.signature-pad--body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #f0f0f0;
}

.signature-pad--body
canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.signature-pad--header {
  margin-bottom: 8px;
  line-height: 2;
}

.signature-pad--footer {
  margin-top: 5px;
  margin-bottom: 0px;
  line-height: 2;
}

.signature-pad--actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}