.is-signup-box *
{
	box-sizing: border-box;

}

/* scrollable */
.is-signup-box html
{
	overflow: auto;
}

.main.center-box
{
	margin: 0;
	padding: 50px;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

.is-signup-box .section2
{
	width: 100%;
}

.is-signup-box .signup-btn--abort
{
	position: relative;
}

.is-signup-box .signup-btn--skip
{

	/* position: absolute; */
	margin-top: -60px;
	/* margin-left: 78px; */
	margin-right: 160px;
	/* right: 0px; */
	float: right;
}

.is-signup-box form[name='skipform']
{
	border: none;
}

@media screen and (max-width: 720px)
{
	.is-signup-box .signup-btn--skip
	{

		/* position: absolute; */
		margin-top: -90px;
		/* margin-left: 78px; */
		margin-right: 15px;
		/* right: 0px; */
		float: right;

	}

	/*.container*/
	/*{*/
	/*margin-top: 0.2em !IMPORTANT;*/
	/*}*/
	/*.container h1*/
	/*{*/
	/*font-size: 1.17em;*/
	/*font-weight: 400;*/
	/*}*/
	/*.container .middle*/
	/*{*/
	/*width: 90%;*/
	/*}*/
	/*.container .left, .right*/
	/*{*/
	/*width: 5%;*/
	/*}*/
	/*.container label*/
	/*{*/
	/*font-size: 1em;*/
	/*padding: 0.2em 2em;*/
	/*}*/

}

@media print
{
	.is-signup-box
	{
		width: 100%;
	}
}

/* Create three equal columns that floats next to each other */
.column
{
	float: left;
	/* width: 33.33%; */
	/*padding: 10px;*/
	/*border: 1px dashed yellow;*/
}

/* Clear floats after the columns */
.row:after
{
	content: '';
	display: table;
	clear: both;
}

.wrapper-canvas
{
	/*width: 100%;*/
	padding: 0 33px 30px 30px;
	/*padding: 15px 0 30px 0;*/
}

/* create the canvas wrapper */
.wrapper-canvas canvas
{
	background: white;
	border: 1px solid #cccccc;
	width: 100%;
	margin-left: 2px;

}

.is-signup-box
{
	font-family: my-new-regular-font, sans-serif;
}

.is-signup-box label a
{
	color: #007bff;
	cursor: pointer;

}

.is-signup-box .vcenter
{
	display: inline-block;
	top: 50%;
	left: 50%;
}

.is-signup-box #chkbox-recreate-docs-input-box
{

	/*margin-top: 20px;*/
}

.is-signup-box .border
{

	border-radius: 50px;
}

.is-signup-box .is-check-section
{
	padding: 20px 30px 10px 30px;
}

.is-signup-box .is-check-section2
{
	padding: 5px 0 30px 0;
}

.is-signup-box form
{
	/*background-color: #e6e6e6;*/
	/*margin-top: 2em;*/
	border: 1px solid #c5c5c5;
	border-radius: 6px;
	/*padding: 30px;*/
}

.is-signup-box ~ .signature-pad
{
	background-color: #ffffff;
	margin: 25px;
}

.is-signup-box .float-right
{
	float: right;
}

.is-signup-box .checkboxwrapper
{

	display: inline-table;
	position: relative;
	padding-left: 35px;
	width: 100%;

	/*padding-left: 30px;*/
	margin-bottom: 12px;
	margin-bottom: 0px;
	cursor: pointer;
	/*font-size: 22px;*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.is-signup-box .checkboxwrapper > span
{
	margin-left: -30px;

}

.is-signup-box .checkboxwrapper > span.checkboxdescr
{
	display: inline-table;
	margin-left: 5px;
	/*border: 1px #5f3f3f dashed;*/
	height: 100%;
	width: 95%;

	/*margin-left: 0px;*/
}

/* Hide the browser's default checkbox */
.is-signup-box .checkboxwrapper input
{
	position: absolute;
	opacity: 0;

}

.is-signup-box .checkboxwrapper input[type=checkbox]:checked
{
	border-color: limegreen;
}

.is-signup-box .custom-checkbox2
{
	width: 28px;
	height: 16px;
	float: left;
	border-radius: 8px;
	border-color: OrangeRed;
	border-style: solid;
	border-width: 1px;
	margin: 2px 6px 0 0;
	background-color: white;

	/*border: 1px #ff0000 dashed;*/
}

.is-signup-box .custom-checkbox2 > div
{
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border-color: transparent;
	border-style: none;
	border-width: 0;
	background-color: OrangeRed;
	margin: 2px 0 0 2px;
	transition: margin 100ms linear;

}

/* When the checkbox is checked, add a blue background */
.is-signup-box .checkboxwrapper input:checked ~ .custom-checkbox2
{
	border-color: limegreen;

}

.is-signup-box .checkboxwrapper input:checked ~ .custom-checkbox2 > div
{

	background-color: limegreen;
	margin: 2px 0 0 14px;

}

/* Create a custom checkbox */
.is-signup-box .custom-checkbox
{
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #cccccc;
	border-radius: 50%;

}

/* On mouse-over, add a grey background color */
.is-signup-box .checkboxwrapper:hover input ~ .custom-checkbox
{
	background-color: #cccccc;
}

/* When the checkbox is checked, add a blue background */
.is-signup-box .checkboxwrapper input:checked ~ .custom-checkbox
{
	background-color: #0069d9;

}

/* Create the checkmark/indicator (hidden when not checked) */
.is-signup-box .custom-checkbox:after
{
	content: '';
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.is-signup-box .checkboxwrapper input:checked ~ .custom-checkbox:after
{
	display: block;
}

/* Style the checkmark/indicator */
.is-signup-box .checkboxwrapper .custom-checkbox:after
{
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.is-signup-box .is-submit-button
{
	margin-right: 0;
	/*font-size: 10px;*/
}

.is-signup-box #resetcanvas
{
	/* margin-top: -1px; */
	border: 1px solid #c8c8c8;
	background: aliceblue;
	font-size: 11px;
	font-variant-caps: all-petite-caps;
	font-family: inherit;
	padding: 5px;
	margin: -55px -2px 0 0;
	width: 50px;
	height: 50px;
	float: right;
	/* z-index: 99; */
	position: relative;
	background-repeat: no-repeat;
	background-image: url(./image/billing-grid.png);
	background-position: 13px 10px;
}

.is-signup-box #clearcanvas
{
	/* margin-top: -1px; */
	border: 1px solid #c8c8c8;
	background: aliceblue;
	font-size: 11px;
	font-variant-caps: all-petite-caps;
	font-family: inherit;
	padding: 5px;
	margin: -55px -2px 0 0;
	width: 50px;
	height: 50px;
	float: right;
	/* z-index: 99; */
	position: relative;
	background-repeat: no-repeat;
	background-image: url(./image/billing-grid.png);
	background-position: 13px 10px;
}

.is-signup-box #clearcanvasorigin
{
	/* margin-top: -1px; */
	border: 1px solid #c8c8c8;
	background: aliceblue;
	font-size: 11px;
	font-variant-caps: all-petite-caps;
	font-family: inherit;
	padding: 5px;
	margin: -55px -2px 0 0;
	width: 50px;
	height: 50px;
	float: right;
	/* z-index: 99; */
	position: relative;
	background-repeat: no-repeat;
	background-image: url(./image/billing-grid.png);
	background-position: 13px 10px;
}

/* Setup for Sigma-Signpad*/
.is-signpad-box
{

	font-size: 10px;
	padding: 15px 0 0 0;
	font-family: my-new-regular-font, sans-serif;
}

.is-signpad-box.textBox
{

	text-align: center;
}

.is-signpad-box ~ p
{

	font-size: 10px;
	color: grey;
	font-family: my-new-regular-font, sans-serif;

}

.is-signpad-box span,
.is-signpad-box button
{
	font-family: my-new-regular-font, sans-serif;
}

.is-signpad-box .textcenter
{
	text-align: center;
}

.is-signpad-box nav ul li
{
	list-style: none;
	margin: 0;
	padding: 0;
}

.is-signpad-box .choiceServer
{
	text-align: center;
	display: block;

	/*border: 1px darkcyan dashed;*/

}

.is-signpad-box .choiceServer nav > ul > li
{

	background: red;
}

.is-signpad-box .choiceServer .dropbtn
{
	background-color: rgba(108, 255, 112, 0);
	color: rgba(8, 16, 8, 0.58);;
	padding: 5px;
	font-size: 10px;
	border: none;
	cursor: pointer;
}

.is-signpad-box .choiceServer .dropdown
{
	position: relative;
	display: inline-block;
}

.is-signpad-box .choiceServer .dropdown-content
{
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 60px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.is-signpad-box .choiceServer .dropdown-content a
{
	color: black;
	padding: 5px 5px;
	text-decoration: none;
	display: block;
}

.is-signpad-box .choiceServer .dropdown-content a:hover
{
	background-color: #f1f1f1
}

.is-signpad-box .choiceServer .dropdown:hover .dropdown-content
{
	display: block;
}

.is-signpad-box .choiceServer .dropdown:hover .dropbtn
{
	background-color: #b6b6b6;
}

.is-signpad-box b
{

}

.is-signpad-box .circle:before
{
	content: ' \25CF';
	font-size: 20px;
	font-size: 15px;
}

.is-signpad-box .on
{

	color: green;
}

.is-signpad-box .off
{

	color: red;
}

.is-signpad-box .upper
{

	text-transform: uppercase;
}

.is-signpad-box textarea
{
	width: 50em;
	height: 4em;

}

.signup-ready
{
	font-size: 20px;
	text-align: center;
	padding: 10px;
}

.signup-ready p:after
{

	content: '✔';
	font-size: 40px;
}

@media screen and (max-width: 480px)
{

	.is-signup-box
	{
		font-size: 0.75em;
	}

	.is-signup-box .middle
	{
		width: 80%;

	}

	.is-signup-box .left, .right
	{
		width: 5%;
	}

	.is-signup-box .custom-checkbox2
	{
		/*margin-top: -20px;*/
	}

	.is-signup-box .is-reset-button
	{
		/*font-size: 10px;*/
	}

	.is-signup-box .is-submit-button
	{
		/*font-size: 10px;*/
	}

	.is-check-section
	{
		padding: 20px 5% 0 5% !important;
	}

	.wrapper-canvas
	{
		/*width: 100%;*/
		padding: 0 6% 30px 5%;
	}
}

#the-signup-link-box
{
	padding: 20px 5% 50px 5%;
}

#the-signup-link-box .is-customersignup-box
{
	border: solid 1px silver;
	padding: 13px 17px 23px 17px;
}

.is-redesigned .is-triangle-border.is-signup-note
{
	padding: 12px 15px 18px 15px;
	margin-bottom: 20px;
}

.is-signup-note p
{
	font-weight: bold;
}
