/** Custom style */

.imgInvert{
    /* Images inversées : noir devient blanc */
    -webkit-filter: invert(100%);
    filter: invert(100%);
}


html,
body,
#container {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Avenir-Light", Arial, sans-serif;
}

#container {
    display: table;
    width: 100%;
}

#root {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.Demo {
    display: table-cell;

    text-align: center;
    vertical-align: middle;
}

/** Signature */
.container {
    width: 150%;
    height: 150%;
    top: 10%;
    left: 10%;
}

canvas {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
}

.sigContainer {
    width: 80%;
    height: 80%;
    margin: 0 auto;
    background-color: #fff;
}

.sigPad {
    width: 100%;
    height: 100%;
}

.buttons {
    width: 100%;
    height: 30px;
}

.sigImage {
    background-size: 200px 50px;
    width: 200px;
    height: 50px;
    background-color: white;
}

/*supprime la croix ie 11*/
::-ms-clear {display: none;}

input:focus {
    outline:  none;
}

textarea {
    overflow: auto;
}

textarea:focus {
    outline:  none;
}
