/*
    Common 
*/

.en-forms-wizard,
.en-forms-tabcontrol
{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 25% 1fr;
	grid-template-columns: 25% 1fr;
	-ms-grid-rows: -webkit-min-content;
	-ms-grid-rows: min-content;
	grid-template-rows: -webkit-min-content;
	grid-template-rows: min-content;
	position: relative;
	margin: 3px 0;
}
.en-forms-wizard > *:nth-child(1), .en-forms-tabcontrol > *:nth-child(1)
{
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
.en-forms-wizard > *:nth-child(1), .en-forms-tabcontrol > *:nth-child(2)
{
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}
.en-forms-multipage-menu-item{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 11% 78% 11%;
	grid-template-columns: 11% 78% 11%;
	-ms-grid-rows: -webkit-min-content;
	-ms-grid-rows: min-content;
	grid-template-rows: -webkit-min-content;
	grid-template-rows: min-content;
	position: relative;
}.en-forms-multipage-menu-item > *:nth-child(1){
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}.en-forms-multipage-menu-item > *:nth-child(2){
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}.en-forms-multipage-menu-item > *:nth-child(3){
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
.en-forms-multipage-menu-item-auto{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 86% 14%;
	grid-template-columns: 86% 14%;
	-ms-grid-rows: -webkit-min-content;
	-ms-grid-rows: min-content;
	grid-template-rows: -webkit-min-content;
	grid-template-rows: min-content;
	position: relative;
}.en-forms-multipage-menu-item-auto > *:nth-child(1){
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}.en-forms-multipage-menu-item-auto > *:nth-child(2){
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

.en-forms-wizard a,
.en-forms-tabcontrol a
{
    outline: 0;
}

.en-forms-wizard ul,
.en-forms-tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.en-forms-wizard ul > li,
.en-forms-tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.en-forms-wizard .en-forms-steps .en-forms-current-info,
.en-forms-tabcontrol .en-forms-steps .en-forms-current-info
{
    position: absolute;
    left: -999em;
}

.en-forms-wizard > .en-forms-content > .en-forms-title,
.en-forms-tabcontrol > .en-forms-content > .en-forms-title
{
    position: absolute;
    left: -999em;
}

/*
    Wizard
*/

.en-forms-wizard .en-forms-steps
{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.en-forms-wizard .en-forms-steps {
	position: sticky;
    height: min-content;
    top: 10px;
    display: block;
    
    padding-right: 15px;
    box-sizing: border-box;

	grid-row: 1;
	grid-column: 1;
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	min-width: 180px;
}
@supports (-ms-ime-align:auto) {
	.en-forms-wizard .en-forms-steps {
		position: static;
		top: auto;
	}
}
.en-forms-wizard .en-forms-content {    
	grid-row: 1;
	grid-column: 2;
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

.en-forms-wizard .en-forms-steps .en-forms-number
{
    /* font-size: 1.429em; */
   /*  color: #000000; */
}

.en-forms-wizard .en-forms-steps > ul > li
{
    width: 25%;
}

.en-forms-wizard .en-forms-steps > ul > li
{
    float: left;
}

.en-forms-wizard.en-forms-vertical .en-forms-steps > ul > li
{
    float: none;
    width: 100%;
    border: 0px !important;
    margin-left: 5px;
}

.en-forms-wizard .en-forms-steps a,
.en-forms-wizard .en-forms-steps a:hover,
.en-forms-wizard .en-forms-steps a:active
{
    display: block;
    width: auto;
    padding: 8px;
    text-decoration: none;
    border-left: transparent 3px solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: normal !important;
    color:black;
}


.en-forms-wizard .en-forms-steps .en-forms-disabled a,
.en-forms-wizard .en-forms-steps .en-forms-disabled a:hover,
.en-forms-wizard .en-forms-steps .en-forms-disabled a:active
{
    background: #eee;
    color: #aaa;
    cursor: default;
}

.en-forms-wizard .en-forms-steps .en-forms-current a,
.en-forms-wizard .en-forms-steps .en-forms-current a:hover,
.en-forms-wizard .en-forms-steps .en-forms-current a:active
{

    background: #F0F0F0;
    border-left: #D0D0D0 3px solid;
    cursor: default;
    border-radius: 0px 6px 6px 0px;
}

.en-forms-wizard .en-forms-steps .en-forms-done a,
.en-forms-wizard .en-forms-steps .en-forms-done a:hover,
.en-forms-wizard .en-forms-steps .en-forms-done a:active
{
   /* background: #D3D3D3;
    color: #fff;*/
}

.en-forms-wizard .en-forms-steps .en-forms-error a,
.en-forms-wizard .en-forms-steps .en-forms-error a:hover,
.en-forms-wizard .en-forms-steps .en-forms-error a:active
{
       background: #ffffff;
    color: #151111;
    border: 1px solid red;
}

.en-forms-wizard > .en-forms-content
{
    /* min-height: 25em; */
    overflow-x: hidden;
    overflow-y:hidden;
    position: relative;
}
.en-forms-wizard.en-forms-vertical > .en-forms-content
{
	border-left: 1px solid #d8e2d8;
}
/* .en-forms-wizard.en-forms-vertical > .en-forms-content:hover {
  overflow-y: auto;
} */

.en-forms-wizard > .en-forms-content > .en-forms-body
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.en-forms-wizard > .en-forms-content > .en-forms-body ul
{
    list-style: disc !important;
}

.en-forms-wizard > .en-forms-content > .en-forms-body ul > li
{
    display: list-item;
}

.en-forms-wizard > .en-forms-content > .en-forms-body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.en-forms-wizard > .en-forms-content > .en-forms-body input
{
   /* display: block; */
   border: 1px solid #ccc;
}


.en-forms-wizard > .en-forms-content > .en-forms-body input[type="checkbox"]
{
    display: inline-block;
}

.en-forms-wizard > .en-forms-content > .en-forms-body input.en-forms-error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.en-forms-wizard > .en-forms-content > .en-forms-body label
{
    display: inline-block;
    margin-bottom: 0.5em;
}

.en-forms-wizard > .en-forms-content > .en-forms-body label.en-forms-error
{
    color: #8a1f11;
    display: inline-block;
    margin-left: 1.5em;
}

.en-forms-wizard .en-forms-actions
{
    text-align: center;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    white-space: nowrap;
}

.en-forms-wizard .en-forms-actions > ul {
    display: -ms-grid;
    display: grid;
	-ms-grid-columns: 82px 82px;
	grid-template-columns: 82px 82px;
	-ms-grid-rows: 1fr;
	grid-template-rows: 1fr;
	margin: 15px 0!important;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
     justify-content: center;
}.en-forms-wizard .en-forms-actions > ul > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}.en-forms-wizard .en-forms-actions > ul > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}.en-forms-wizard .en-forms-actions > ul > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.en-forms-wizard .en-forms-actions a,
.en-forms-wizard .en-forms-actions a:active
{
    background: #f9f9f9;
    color: #000000;
    display: block;
   /*  padding: 0.5em 1em; */
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: normal !important;
}

.en-forms-wizard .en-forms-actions .en-forms-disabled a,
.en-forms-wizard .en-forms-actions .en-forms-disabled a:hover,
.en-forms-wizard .en-forms-actions .en-forms-disabled a:active
{
  background: #eee1;
  color: #aaa;
}
.en-forms-wizard .en-forms-actions .en-forms-draft-save {
	/* color: #2184bc !important;
	background: #f0f0f0 !important;
	border: 2px solid #2184bc !important; */
}
.en-forms-wizard .en-forms-actions a:hover {
  /* color: #FFFFFF !important;
  font-weight: bold !important; */
  background: #efefef;
}
.en-forms-wizard .en-forms-actions .en-forms-disabled a:hover {
    background: #eee1  !important;
    color: #aaa  !important;
    font-weight: normal !important;
    cursor: default  !important;
}
#openContinueFormLaterModalBtn:hover {
 /*   color: #2184bc  !important;
  font-weight: bold !important; */
}
#saveContinueFormDraft:hover {
 /*   color: #2184bc  !important;
  font-weight: bold !important; */
}
.en-forms-wizard > .en-forms-loading
{
}

.en-forms-wizard > .en-forms-loading .en-forms-spinner
{
}



/*
    Tabcontrol
*/

.en-forms-tabcontrol .en-forms-steps
{
    position: relative;
    display: block;
    width: 100%;
}

.en-forms-tabcontrol .en-forms-steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.en-forms-tabcontrol .en-forms-steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.en-forms-tabcontrol .en-forms-steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.en-forms-tabcontrol .en-forms-steps > ul > li.en-forms-current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.en-forms-tabcontrol .en-forms-steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.en-forms-tabcontrol .en-forms-steps > ul > li > a:hover
{
    text-decoration: none;
}

.en-forms-tabcontrol .en-forms-steps > ul > li.en-forms-current > a
{
    padding: 15px 30px 10px 30px;
}

.en-forms-tabcontrol > .en-forms-content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.en-forms-tabcontrol > .en-forms-content > .en-forms-body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.en-forms-tabcontrol > .en-forms-content > .en-forms-body ul
{
    list-style: disc !important;
}

.en-forms-tabcontrol > .en-forms-content > .en-forms-body ul > li
{
    display: list-item;
}
li.draftpopup_li {
	  border: 1px solid #ddd;
	  margin-top: -1px; /* Prevent double borders */
	  background-color: #f6f6f6;
	  padding: 2px;
	  text-decoration: none;
	  font-size: 18px;
	  color: black;
	  display: block;
	  position: relative;
}
.draftpopup__close {
	 cursor: pointer;
	  position: absolute;
	  top: 50%;
	  right: 0%;
	  padding: 12px 16px;
	  transform: translate(0%, -50%);
}
ul.draftpopup_ul {
	  list-style-type: none;  
	  padding: 0;  margin: 0;	
}
.continueFormLaterModalContentBody{
	background-color: White; 
	border: 2px solid black;
    z-index: 9900; 
    top: 200px; 
   	width: 50%;
	height: auto;
	color: black;
	position: fixed;
}
.continueFormLaterModalBackGround{
	top:0;
	left:0;
	display:none;		
	background-color:rgba(0,0, 0, 0.6);
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    display: none;
    margin: 0px;
    padding: 0px;
}
.en-forms-badge
{
	height:-webkit-fit-content;
	height:-moz-fit-content;
	height:fit-content
}