
#medical-records a.media {
    cursor: pointer;
}

canvas#signature-pad {
    background: #fff;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    touch-action: none;
}

button#clear {
    height: 100%;
    background: #3BAFDA !important;
    border: 1px solid transparent;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
    button#clear span {
        transform: rotate(270deg);
        display: block;
    }

.hx-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: #2196f3;
    border-radius: 50%;
    animation: hx-spin 0.75s linear infinite;
}
@keyframes hx-spin {
    to { transform: rotate(360deg); }
}