.noShow{
    display:none !important;
}
#backButton {
    float: left;
}
#nextButton {
    float: right;
}
#submitButton {
    float: right;
}



INPUT.fancyButton,  
INPUT.fancyCheckbox
{
    display:none;
}
LABEL.fancyButton, LABEL.fancyCheckbox
{
    background-color:transparent;
    padding:5px 10px;
    margin: 0 2px 3px 2px;
    color:#fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 3px;
    border-color: #FECC66;
    border-width: 2px;
    padding: 6px 12px;
    border: 1px solid #9ec900;
    color:#474747;
    font:200 20px/2.3em "Source Sans Pro", "Helvetica Neue", Helvetica, sans-serif;
    letter-spacing:1px;
    display:inline-block;
    min-height:48px;
    text-indent: 0;
    -webkit-transition: 0.25s linear;
    transition: 0.25s linear;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;    
}
LABEL.fancyButton I, LABEL.fancyCheckbox I
{
    text-shadow:none;
}
LABEL.fancyButton:hover,
LABEL.fancyCheckbox:hover
{
    border-color:orange;
    color: #000;
}
LABEL.fancyButton.disabled,
LABEL.fancyCheckbox.disabled
{
    background-color:#ccc;
    color:#fff;
    cursor:not-allowed;
}
.fancyButton:checked + label.fancyButton,
.fancyCheckbox:checked + label.fancyCheckbox
{
    background-color:#9ec900;
    color: #fff;
}
.fancyButton:disabled + label.fancyButton,
.fancyCheckbox:disabled + label.fancyCheckbox
{
	cursor:not-allowed;
}

/* Statements interface: white boxes with light green border (startCh3cklist) */
.main-inner-checklist .checklist .checkboxWrapper {
	display: block;
	margin-bottom: 6px;
}
.main-inner-checklist .checklist .checkboxWrapper label.fancyCheckbox {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #a8d08d;
	color: #2c3e50;
	padding: 5px;
	margin: 0;
	min-height: auto;
	line-height: 1.4;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	border-radius: 2px;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.main-inner-checklist .checklist .checkboxWrapper label.fancyCheckbox:hover {
	border-color: #7cb342;
	background-color: #f8fdf5;
}
.main-inner-checklist .checklist .fancyCheckbox:checked + label.fancyCheckbox,
.main-inner-checklist .checklist input.fancyCheckbox:checked + label.fancyCheckbox {
	background-color: #c5e0b4;
	border-color: #7cb342;
	color: #2c3e50;
}

/* Checklist progress bar */
.checklist-progress-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.checklist-progress {
	flex: 1;
	height: 10px;
	background: #e8f5e9;
	border-radius: 5px;
	overflow: hidden;
}
.checklist-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #a8d08d 0%, #7cb342 100%);
	border-radius: 5px;
	transition: width 0.3s ease;
}
.checklist-progress-label {
	font-size: 0.875rem;
	color: #6c757d;
	min-width: 3rem;
	text-align: right;
}

/* Instruction box: light green background */
.main-inner-checklist .checklist-instruction {
	background-color: #e8f5e9;
	border: 1px solid #a8d08d;
	border-radius: 2px;
	padding: 12px 14px;
	margin-bottom: 1rem;
	color: #2c3e50;
}

/* Popup alert modal (Ooops / validation on startCh3cklist) – backdrop and panel */
#dimOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1040;
}
#popupAlertOverlay {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	width: 90%;
	max-width: 480px;
	max-height: 85vh;
	margin: 0 !important;
	transform: translate(-50%, -50%);
	background: #fff;
	border: 1px solid #dc3545;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	padding: 1.25rem 1.5rem;
	overflow: auto;
	z-index: 1050;
	font-size: 1rem;
	line-height: 1.5;
	color: #2c3e50;
	text-align: left;
}
#popupAlertOverlay .floatRight:first-of-type {
	position: absolute;
	top: 0.75rem;
	right: 1rem;
	cursor: pointer;
	color: #6c757d;
	font-size: 1.25rem;
}
#popupAlertOverlay .floatRight:first-of-type:hover {
	color: #dc3545;
}
#popupAlertOverlay .helloHead {
	display: none;
}
#popupAlertOverlay p:first-of-type {
	margin-top: 0;
	font-weight: 700;
	font-size: 1.25rem;
	color: #dc3545;
}
#popupAlertOverlay p {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}
#popupAlertOverlay p.center {
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 0.8rem;
	color: #6c757d;
}

/* Submit confirmation modal (panelConfirmOpen on startCh3cklist) – same backdrop, panel styling */
#popupPanelOverlay {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	width: 90%;
	max-width: 480px;
	max-height: 85vh;
	margin: 0 !important;
	transform: translate(-50%, -50%);
	background: #fff;
	border: 1px solid #7cb342;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	padding: 1.25rem 1.5rem;
	overflow: auto;
	z-index: 1050;
	font-size: 1rem;
	line-height: 1.5;
	color: #2c3e50;
	text-align: left;
}
#popupPanelOverlay #popupPanelCloseLink {
	position: absolute;
	top: 0.75rem;
	right: 1rem;
	cursor: pointer;
	color: #6c757d;
	font-size: 1.25rem;
}
#popupPanelOverlay #popupPanelCloseLink:hover {
	color: #2c3e50;
}
#popupPanelOverlay .helloHead {
	display: none;
}
#popupPanelOverlay p {
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}
#popupPanelOverlay p:first-of-type {
	margin-top: 0;
	font-weight: 700;
	font-size: 1.25rem;
	color: #2c3e50;
}
#popupPanelOverlay h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 1rem 0 0.75rem;
	color: #2c3e50;
}
#popupPanelOverlay p:last-of-type {
	margin-top: 1.25rem;
	margin-bottom: 0;
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
#popupPanelOverlay button.new {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 1rem;
	font-size: 0.95rem;
	border-radius: 6px;
	border: 1px solid #dee2e6;
	background: #fff;
	color: #2c3e50;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
#popupPanelOverlay button.new:hover {
	background: #f5f6f8;
	border-color: #adb5bd;
}
#popupPanelOverlay button.new .fa-check-square-o {
	color: #7cb342;
}
#popupPanelOverlay button.new .fa-times {
	color: #e85d04;
}