@font-face {
    font-family: "Arial";
    src: url("fonts/arial/arial.ttf") format('truetype');
}
@font-face {
    font-family: "Arial Bold";
    font-weight: bold;
    src: url("fonts/arial/arial_bold.ttf") format('truetype');
}
@font-face {
    font-family: "Arial Italic";
    font-style: italic, oblique;
    src: url("fonts/arial/arial_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Arial Bold Italic";
    font-weight: bold;
    font-style: italic, oblique;
    src: url("fonts/arial/arial_bold_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Calibri";
    src: url("fonts/calibri/calibri.ttf") format('truetype');
}
@font-face {
    font-family: "Calibri Bold";
    font-weight: bold;
    src: url("fonts/calibri/calibri_bold.ttf") format('truetype');
}
@font-face {
    font-family: "Calibri Italic";
    font-style: italic, oblique;
    src: url("fonts/calibri/calibri_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Calibri Bold Italic";
    font-weight: bold;
    font-style: italic, oblique;
    src: url("fonts/calibri/calibri_bold_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Courier";
    src: url("fonts/courier/courier.ttf") format('truetype');
}
@font-face {
    font-family: "Courier Bold";
    font-weight: bold;
    src: url("fonts/courier/courier_bold.ttf") format('truetype');
}
@font-face {
    font-family: "Courier Italic";
    font-style: italic, oblique;
    src: url("fonts/courier/courier_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Courier Bold Italic";
    font-weight: bold;
    font-style: italic, oblique;
    src: url("fonts/courier/courier_bold_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Helvetica";
    src: url("fonts/helvetica/helvetica.ttf") format('truetype');
}
@font-face {
    font-family: "Helvetica Bold";
    font-weight: bold;
    src: url("fonts/helvetica/helvetica_bold.ttf") format('truetype');
}
@font-face {
    font-family: "Helvetica Italic";
    font-style: italic, oblique;
    src: url("fonts/helvetica/helvetica_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Helvetica Bold Italic";
    font-weight: bold;
    font-style: italic, oblique;
    src: url("fonts/helvetica/helvetica_bold_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Times New Roman";
    src: url("fonts/times_new_roman/times_new_roman.ttf") format('truetype');
}
@font-face {
    font-family: "Times New Roman Bold";
    font-weight: bold;
    src: url("fonts/times_new_roman/times_new_roman_bold.ttf") format('truetype');
}
@font-face {
    font-family: "Times New Roman Italic";
    font-style: italic, oblique;
    src: url("fonts/times_new_roman/times_new_roman_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Times New Roman Bold Italic";
    font-weight: bold;
    font-style: italic, oblique;
    src: url("fonts/times_new_roman/times_new_roman_bold_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Verdana";
    src: url("fonts/verdana/verdana.ttf") format('truetype');
}
@font-face {
    font-family: "Verdana Bold";
    font-weight: bold;
    src: url("fonts/verdana/verdana_bold.ttf") format('truetype');
}
@font-face {
    font-family: "Verdana Italic";
    font-style: italic, oblique;
    src: url("fonts/verdana/verdana_italic.ttf") format('truetype');
}
@font-face {
    font-family: "Verdana Bold Italic";
    font-weight: bold;
    font-style: italic, oblique;
    src: url("fonts/verdana/verdana_bold_italic.ttf") format('truetype');
}

.go-document-zoom-control {
    position: absolute;
    z-index: 1;
    
    top: 16px;
    left: 62px;

    background: #00a7de;
    padding: 6px;
    border-radius: 6px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.go-document-zoom-control input {
    height: 6px;
}
.go-document-zoom-control svg {
    width: 24px !important;
    height: 24px !important;

    fill: white !important;
    color: white !important;
}
.go-document-zoom-control .zoom-in, .go-document-zoom-control .zoom-out {
    width: 24px;
    height: 24px;
}

.go-document-viewer {
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.go-document-loading {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;
}
.go-document-loading label {
    font-size: 14px;
    color: black;
    font-weight: 500;
}

.go-document-scroll {
    width: 100%;
    height: 100%;
    padding: 0px;
    box-sizing: border-box;
    overflow: auto;
}

.go-document-backdrop {
    position: fixed;
    z-index: 2;
    
    width: 100%;
    height: 100%;

    background: gray;
    opacity: 0.5;
}

.go-document-selector {
    display: flex;
    flex-direction: column;
    position: relative;

    background: white;

    border-bottom: 1px solid lightgray;

    min-width: 350px;
}
.go-document-selector .go-document-selector-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
    font-weight: 500;

    padding: 0;

    cursor: pointer;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.go-document-selector .go-document-selector-toggler {
    color: #0369ab;
    font-weight: 500;

    padding: 8px 14px;
}
.go-document-selector .go-document-selector-toggler span {
    text-decoration: underline;
}
.go-document-selector .go-document-selector-toggler md-icon {
    margin: 0px;
    padding: 0px;

    color: #0369ab;
}
.go-document-selector .go-document-selector-placeholder {
    font-size: 12px;
    font-weight: 500;

    display: flex;
    flex-direction: column;
}
.go-document-selector .go-document-selector-items-placeholder {
    position: absolute;
    z-index: 9999;

    left: 0;
    top: 38px;
    
    width: 100%;
    padding: 12px 0px;

    background: white;
    border-top: 1px solid lightgray;
}
.go-document-selector .go-document-selector-mass-selection {
    padding: 0px 12px 12px;
}
.go-document-selector .go-document-selector-mass-selection a {
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
    color: #0369ab;
    cursor: pointer;
}
.go-document-selector .go-document-selector-item {
    display: flex;
    flex-direction: row;

    padding: 8px 12px;
}
.go-document-selector .go-document-selector-checkbox {
    margin-right: 12px;
    position: relative;

    width: 16px;
    height: 16px;
}

.go-document-selector .go-document-selector-item.cancelled .go-document-selector-checkbox md-icon {
    font-size: 16px;
    color: red;
}
.go-document-selector .go-document-selector-item.cancelled .go-document-selector-checkbox .checkbox:not(.checkbox--material).checked:after {
    border-color: red;
}
.go-document-selector .go-document-selector-item.completed .go-document-selector-checkbox md-icon {
    font-size: 16px;
    color: green;
}
.go-document-selector .go-document-selector-item.completed .go-document-selector-checkbox .checkbox:not(.checkbox--material).checked:after {
    border-color: green;
}
.go-document-selector .go-document-selector-item.waiting .go-document-selector-checkbox md-icon {
    font-size: 16px;
}
.go-document-selector .go-document-selector-item.waiting .go-document-selector-checkbox .checkbox:not(.checkbox--material).checked:after {
    border-color: gray;
}

.go-document-selector .go-document-selector-checkbox input[type="checkbox"] {
    margin: 0;
    height: 16px;
    width: 16px;
}
.go-document-selector .go-document-selector-checkbox input[type="checkbox"].disabled {
    pointer-events: none;
    cursor: none;
    opacity: 1;
}

.go-document-selector .go-document-selector-item-name {
}
.go-document-selector .go-document-selector-item-state {
    padding-top: 4px; 
    font-size: 11px; 
    font-weight: 600;
}
.go-document-selector .go-document-selector-item.cancelled .go-document-selector-item-state {
    color: #ef2d24;
}
.go-document-selector .go-document-selector-item.completed .go-document-selector-item-state {
    color: green;
}
.go-document-selector .go-document-selector-item.waiting .go-document-selector-item-state {
    color: gray;
}

.go-document-selector .go-document-selector-items-placeholder .go-document-selector-confirmation {
    padding: 14px 32px 8px;
}


.go-document-pages {
    width: 100%;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
    overflow: auto;
	transform-origin: top left;
}
.go-document-viewer.has-form-fields .go-document-pages {
    padding-top: 72px;
}
.go-document-page {
    width: 100%;
    position: relative;
    display: flex;
}
.go-document-page img {
    width: 100%;
    height: 100%;
    user-select: none;
}
.go-document-page+.go-document-page {
    margin-top: 24px;
}
.go-document-page .go-document-page-label {
    position:  absolute;
    bottom: 0px;

    font-size: 10px;
    font-weight: bold;

    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.go-document-page .go-document-page-label > div {
    padding: 6px 12px;
}
.go-document-page .go-document-page-label > div:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.go-document-index {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 150px;
    height: 100%;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: auto;
    background: white;
    /* box-shadow: 2px 0px 2px rgb(0 0 0 / 30%);*/
    transform: translateX(-100%);
    transition: 0.2s ease-in-out;
    padding: 12px;
    box-sizing: border-box;
}
.go-document-index.visible {
    transform: translateX(0px);
    box-shadow: 2px 0px 2px rgb(0 0 0 / 30%);
}
.go-document-thumb {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 1px 1px 7px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.go-document-thumb.current {
    outline: 2px solid #0469ab;
}
.go-document-thumb img {
    width: 100%;
}
.go-document-thumb+.go-document-thumb {
    margin-top: 12px;
}
.go-document-thumb .go-document-thumb-label {
    position:  absolute;
    bottom: 0px;

    font-size: 8px;
    font-weight: bold;

    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.go-document-thumb .go-document-thumb-label > div {
    padding: 2px 4px;
}
.go-document-thumb .go-document-thumb-label > div:first-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.go-document-toggle-index-button {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #00A7DE;
    fill: white;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    padding: 0px;
    border-radius: 4px;
    top: 16px;
    left: 16px;
    z-index: 1;
}
.go-document-toggle-index-button svg {
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
}

.go-signature-indicator {
    position: absolute;
    box-sizing: border-box;
    background: rgba(248, 201, 95, 1);
    opacity: 0.9;
    transform: translate(-50%,-50%);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.go-signature-indicator.disabled{
	background: #eee;
	pointer-events: none;
}
.go-signature-indicator span {
    font-weight: 600;
    padding-bottom: 5%;
}
.go-signature-indicator .go-signature-username-container {
    line-height: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    flex: none;
}
.go-signature-indicator .go-signature-username-container span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1;
    width: 100%;
    overflow: hidden;
}

.go-signature-indicator .go-signature-pencil {
    flex: none;

    width: 24%;
    height: auto;
}
.go-signature-indicator .go-signature-backstitch {
    width: 100%;
    height: auto;

    position: absolute;
    bottom: 6%;
}


.go-document-field {
    position: absolute;
    z-index: 2;

    transform: translate(-50%, -50%);

    font-weight: 400;
    color: black;
    -webkit-text-fill-color: black;
    fill:  #A33943;

    background: #FFF2C5;

    display: flex;    
    align-items: center;
    justify-content: center;
    
    /*
    padding: 0 calc(150% / 100);
    box-sizing: border-box;
    */
}
.go-document-field input {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    padding: 0px;
    background: transparent;
    color: inherit;
    font-weight: inherit;

    /*
    box-sizing: border-box;
    */

    flex: 1;
    outline: none;
    font-size: 12px;
    font-family: inherit !important;
    text-decoration: inherit !important;
}
.go-document-field textarea {
	outline: none;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	background: transparent;
	resize: none;

    /*
	box-sizing: border-box;
    */

	padding: 0px;
	line-height: normal;
	font-family: inherit !important;

    overflow: hidden;
}
.go-document-field input[type='checkbox'] {
    flex: none;
    pointer-events: all;
    outline: none;
    pointer-events: none;
}
.go-document-field input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
.go-document-field label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1vw;
    user-select: none;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 0px 2.4vw;
    box-sizing: border-box;
    padding-right: 1vw;
}
.go-document-field textarea:focus {
}
.go-document-field input:focus {
    /* outline: 2px solid; */
}
.go-document-field.readonly{
	/*
    background: #ccc;
    */

	fill: #777;
}
.go-document-field.readonly input{
}
.go-document-field.required{
	background: #F8B6B8;
	fill:  #A33943;
}
.go-document-field.complete {
    background: #FFF2C5;
	fill:  #0C70AC;
}
.go-document-field.current {
    background: #FFF2C5;
    fill:  #C69262;
    z-index: 9;
}
.go-document-field-checkmark {
	display: none;
	position: absolute;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 50%;
	transform: translateY(-50%);
	top: 50%;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+52,1+52,0+58,0+100 */
	background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 52%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 52%,rgba(255,255,255,0) 58%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 52%,rgba(255,255,255,0) 58%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.go-document-field-padlock {
	position: absolute;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 50%;
	transform: translateY(-50%);
	top: 50%;
}
.go-document-field-padlock, .go-document-field-padlock path {
    fill: black !important;
    color: black !important;
}
.go-document-field-calendar {
	position: absolute;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	/* border-radius: 50%; */
	transform: translateY(-50%);
	top: 50%;
	cursor: pointer;
}
.go-document-field.complete:not(.current) .go-document-field-checkmark{
    display: inline-flex;
}

.go-document-field-tooltip{
	background: #eee;
	pointer-events: none;
	transition: 0.3s ease-in all;
	display: flex;
	flex-direction: column;
	font-weight: 500;
	white-space: nowrap;
	opacity:0;
	position: absolute;
	color: #ef2d24;
	background: #F8B6B8;
}
.go-document-field *:hover > .popover{
	opacity: 1;
}
.go-document-field .popover b{
	font-size:10px;
	margin-top: 4px;
}

.go-document-field *::placeholder, .go-document-field *:placeholder-shown { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black;
    opacity: 1; /* Firefox */

    /*overflow: hidden;*/
    text-overflow: ellipsis;
    white-space: nowrap;
}



.go-document-field-indicator {
    position: absolute;
    z-index: 1;

    transform: translate(-50%, -50%);

    font-weight: 400;
    color: black;
    -webkit-text-fill-color: black;
    fill:  #A33943;

    background: #e9e9e9;

    display: flex;    
    align-items: center;
    justify-content: center;
    
    /*
    padding: 0 calc(150% / 100);
    box-sizing: border-box;
    */
}

.go-document-field-indicator input, .go-document-field-indicator textarea {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    padding: 0px;
    background: transparent;
    color: inherit;
    font-weight: inherit;
    pointer-events:none;
    box-sizing: border-box;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    flex: 1;
    resize: none;
    font-family: inherit !important;
}
.go-document-field-indicator input[type="checkbox"] {
    width: 100%;
    height: 100%;
    flex: none;
    pointer-events: none;
    outline: none;
}
.go-document-field-indicator label{
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	font-size: 1vw;
	background: transparent;
	color: inherit;
	font-weight: inherit;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	font-family: Arial;
	margin-left: -2px;
	margin-top: 2px;
}
.go-document-form-progress {
    position: absolute;
    top: 16px;
    right: 24px;
    left: 24px;
    z-index: 2;
    height: 36px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background: #0469ab;
    padding: 0px 12px;
    box-sizing: border-box;
}
.go-document-toggle-index-button+.go-document-form-progress {
    left: 64px;
}
.go-document-button {
    font-size: 10px;
    background: white;
    border-radius: 4px;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 4px 12px;
    box-sizing: border-box;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    user-select: none;
}
.go-document-form-progress-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 12px;
}
.go-document-form-progress-label {
    font-size: 10px;
    color: white;
    font-weight: 600;
    line-height: 1;
}
.go-document-form-progress-rail {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 4px;
    background: #fff;
    box-shadow: inset 0 0 3px rgb(0 0 0 / 80%);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
}
.go-document-form-progress-fill {
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    background: #2590cf;
}



.go-document-signature {
    position: absolute;
    z-index: 3;
    left: 0px;
    text-align: center;
    /* min-height: 50px; */
    line-height: 1;
    /*overflow: hidden;*/
}
.go-document-signature-one-click {
    height: 50px;
    /*min-width: 210px;*/

    /*padding-left: 4px;
    padding-right: 4px;*/
}
.go-document-signature-one-click.rejection {
    font-size: calc(30px - 100%) !important;   
}
.go-document-signature-one-click.desyrel {
    font-size: calc(28px - 100%) !important;
}
.go-document-signature-one-click.sunshine {
    font-size: calc(28px - 100%) !important;
}
.go-document-signature-one-click.everything {
    font-size: calc(30px - 100%) !important;
}
.go-document-signature-one-click.heatwood {
    font-size: calc(22px - 100%) !important;
    line-height: 2;
}

.go-document-signature-one-click.firma_linea .go-document-signature-line {
    bottom: 16px;
}
.go-document-signature-one-click.firma_linea .go-document-signature-x {
    bottom: 28px;

    width: 5px;
    height: 6px;

    line-height: 1;
}


.go-document-signature-one-click.rejection.firma_linea .go-document-signature-name {
    padding-left: 36px;
    padding-right: 36px;
}
.go-document-signature-one-click.desyrel.firma_linea .go-document-signature-name {
    padding-left: 36px;
    padding-right: 36px; /**/
}
.go-document-signature-one-click.sunshine.firma_linea .go-document-signature-name {
    padding-left: 36px;
    padding-right: 32px; /**/
}
.go-document-signature-one-click.everything.firma_linea .go-document-signature-name {
    padding-left: 36px;
    padding-right: 28px; /**/
}
.go-document-signature-one-click.heatwood.firma_linea .go-document-signature-name {
    padding-left: 36px;
    padding-right: 36px; /**/
}

.go-document-signature-one-click.solo_firma {
    /*justify-content: center;*/
}

.go-document-signature-handmade {
    height: 86px;
    width: 86px;
}
.go-document-signature-handmade.firma_linea {
    width: 156px;
    height: 108px;

    display: flex;
    /*align-items: self-end;*/
}
.go-document-signature-handmade.firma_linea .go-document-signature-line {
    bottom: 0;
}
.go-document-signature-handmade.firma_linea .go-document-signature-x {
    bottom: 10px;
}
.go-document-signature-handmade.firma_linea .go-document-signature-image {
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 12px;

    height: 86px;
    width: 86px;
}

.go-document-signature-image {
    height: 95%;
    width: 95%;

    padding: 1px;
	/*padding: 28px 32px 0px 32px;*/
	/*box-sizing: border-box;*/
	/*display: inline-block;*/
	/*line-height: 0;*/
}
.go-document-signature-name {
    font-family: inherit;

    /*padding-left: 38px;*/
    /*padding-right: 16px;*/
    /*box-sizing: border-box;*/
    /*padding-bottom: 12px;*/

    width: auto;
    flex: 1;
    line-height: inherit;
    text-align: left;
    display: flex;
    height: 50px;
    align-items: center;
    white-space: nowrap;
}
.go-document-signature-date {
    font-size: 6px;
    text-align: right;
    padding: 0px 4px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 10px;
    line-height: 10px;
}
.go-document-signature.obsolete:before {
    content: "";
    width: 8px;
    height: 8px;
    background-image: url(x.svg);
    background-size: 8px 8px;
    position: absolute;
    bottom: 16px;
    left: 11px;
}
.go-document-signature.obsolete::after {
    content: "";
    display: block;
    background-image: url(pespunte.png);
    background-repeat: repeat-x;
    background-size: 125px 2px;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 10px;
}
.go-document-signature-line {
    display: block;
    height: 1px;
    position: absolute;
    bottom: 10px;
    width: 469px;
}
.go-document-signature-x {
    font-size: 16px;

    width: 7px;
    height: 8px;
    position: absolute;
    bottom: 20px;
    left: 21px;
}
.go-document-signature-x svg {
    width: 100%;
    height: 100%;

    color: #9b999e !important;
    fill: #9b999e !important;
}
.go-document-signature-x img {
    width: 100%;
    height: 100%;
}

/*.go-document-signature.firma_datos .go-document-signature-line{
	display:none;
}
.go-document-signature.firma_datos .go-document-signature-x{
	display:none;
}
.go-document-signature.firma_datos .go-document-signature-name {
	padding-left: 4px;
}
.go-document-signature.solo_firma .go-document-signature-line{
	display:none;
}
.go-document-signature.solo_firma .go-document-signature-x{
	display:none;
}
.go-document-signature.solo_firma .go-document-signature-date {
    display: none;
}
.go-document-signature.solo_firma .go-document-signature-name {
    padding: 0px;
    align-items: center;
    justify-content: center;
}
.go-document-signature.firma_linea .go-document-signature-date {
    display: none;
}*/


.go-document-signature-stamp{
	position: absolute;
}
.go-document-signature-stamp.moveable {
    border: 2px dashed #00a7de;
}


.rolldate-container header {
    font-size: 15px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #000;
    padding: 24px 124px;
	line-height: 1.25;
}
span.rolldate-btn.rolldate-cancel {
	color: #ef2d24;
}
span.rolldate-btn {
	display: flex;
	align-items: center;
}
li.wheel-item {
    cursor: pointer;
}
li.wheel-item:hover {
    background: rgba(0, 0, 0, 0.07);
}
