*,
*::before,
*::after {
    box-sizing: border-box;
}

.sigWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20%;
    width: 70%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    font-family: Helvetica, Sans-Serif;
    padding-top: 20px;
    padding-bottom: 20px;
}

.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;
    font-size: 10px;
    max-width: 700px;
    max-height: 460px;
    border-radius: 4px;
    padding: 5px;
}

.signature-pad--body
canvas {
    left: 0;
    top: 0;
    width: 250px;
    height: 100px;
    border-radius: 4px;
    border: 1px solid grey;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
    background: #ffffff;
    
}

.signature-pad--footer {
    color: #C3C3C3;
    text-align: center;
    font-size: 1.2em;
    margin-top: 8px;
}

.signature-pad--actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-top: 8px;
}

.signature-pad--actions button {
    width: 100%;
}
