@media print {
  a[href]:after {
    content: none !important;
  }
}

.well-blue {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #004a80;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.bg-green{
	background-color: #5cb85c;
}

.bg-red{
	background-color: #d9534f;
}

.bg-blue{
	background-color: #428bca;
}

.bg-yellow{
	background-color: #f0ad4e;
}

.bold{
	font-weight: bold;
}
/* =========================== Padding Settings =========================== */

.paddingall10{
	padding: 10px 10px 10px 10px;
}

.paddingall20{
	padding: 20px 20px 20px 20px;
}

.paddingall30{
	padding: 30px 30px 30px 30px;
}

.paddingall40{
	padding: 40px 40px 40px 40px;
}

.padding-left20{
	padding-left: 20px;
}

.padding-left30{
    padding-left: 30px;
}

.padding-left40{
	padding-left: 40px;
}

.padding-right20{
	padding-right: 20px;
}

.padding-top-50{
	padding-top: 50px;
}

/* =========================== Margin Settings =========================== */

.marginright10{
	margin-right: 10px;
}

.marginall5{
	margin: 5px 5px 5px 5px;
}

.margin-top20{
	margin-top: 20px;
}

.margin-top10{
    margin-top: 10px;
}

.margin-top40{
    margin-top: 40px;
}

.margin-top50{
	margin-top: 50px;
}

.margin-top60{
    margin-top: 60px;
}

.margin-bottom-50 {
	margin-bottom: 50px;
}

/* =========================== Font Styles Settings =========================== */
.font-red{
	color:#FF0000;
}

.font-black{
	color:#000000;
}

.font-blue{
	color:#428bca;
}


.font-sky-blue{
    color: #00bcd4;
}

.font-white{
	color:white;
}

.font-maroon{
	color:#cf0404;
}

.font-dark-gray{
	color:#252525;
}

.font-light-gray{
    color:#666666;
}

.font-success{
	color:#5cb85c;
}

.font-darkgreen{
	color:#005826;
}

.font-bold{
	font-weight:bold;
}

.h1-mod{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-weight: 500;
 	line-height: 1.1;
    font-size: 36px;
    vertical-align: middle;
}

.p-like-h1{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-weight: 500;
 	line-height: 1.1;
    font-size: 36px;    
}

.font-15{
    font-size: 15px;
}

.font-justify{
    text-align: justify;
}

/* =========================== Alignment Settings =========================== */

.v-align-mid{
	vertical-align: middle;
}

.v-align-bottom{
	vertical-align: bottom;	
}

/* =========================== Background Styles Settings =========================== */

.dct-bg-silver{
	background-color:#E9E9E9;
}


/* =========================== Other Minor Effects Settings =========================== */

.link-no-underline{
	text-decoration:none;
}

.line-dotted{
	border-style:dotted;
	border-width:2px;
}

.remove-form-control-effect{
	border: none;
	background: none;
	box-shadow: none;
	color: #333333;
}

ol.circle {
    display: block;
    padding: 0 0 0 30px;
    list-style: none;    
    overflow: hidden;
    counter-reset: numList;
}

ol.circle li {
	margin-left: 10px;
	padding-left: 10px;  
	padding-bottom: 10px;  	
    /*float: left;    */
    position: relative    
}

ol.circle li:before {
    counter-increment: numList;
    content: counter(numList);
    
    float: left;
    position: absolute;
    left: -26px;
    
    font: bold 12px sans-serif;
    text-align: center;
    color: #fff;
    line-height: 18px;
    
    width: 18px; height: 18px;
    background: #333333;
    
    -moz-border-radius: 999px;
    border-radius: 999px
}

/* =========================== Dimensions Settings =========================== */

.width300{
	width: 300px;
}


/* =========================== Wrap Bypass =========================== */

.bypass-wrap40{
	margin-top: -40px;
	padding-top: -40px;
}

/* =========================== Border Styles =========================== */
.hr-dotted{
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}

.hr-slash{
	height: 6px;
	background: url("/img/hr-11.png") repeat-x 0 0;
    border: 0;
}

.hr-wave{
	height: 6px;
	background: url("/img/hr-12.png") repeat-x 0 0;
    border: 0;
}

.border-solid-all {
	border-style: solid;
	border-width: thin;	
}

.border-solid-right {
	border-right-style: solid;
	border-right-width: thin;
}

.my-divider {
  border: none;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  -webkit-border-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  -moz-border-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  border-image-slice: 1;
  height: 40px;
}

/* =========================== Visibility Styles =========================== */
.hide-me{
	display: none;
}

.show-me{
	display: initial;
}


/* =========================== Additional Styles for input type upload =========================== */
.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

#custom-search-input{
    padding: 3px;
    border: solid 1px #E4E4E4;
    border-radius: 6px;
    background-color: #fff;
}

#custom-search-input input{
    border: 0;
    box-shadow: none;
}

#custom-search-input button{
    margin: 2px 0 0 0;
    background: none;
    box-shadow: none;
    border: 0;
    color: #666666;
    padding: 0 8px 0 10px;
    border-left: solid 1px #ccc;
}

#custom-search-input button:hover{
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc;    
}

#custom-search-input .glyphicon-search{
    font-size: 23px;
}

.cursor-pointer:hover{
	cursor: pointer;
}




/* =========================== Kiosk Styles =========================== */

.textLabels{
	font-size: 16px;
    color: #666666;
}


.inputBox{
	position: relative;
	box-sizing: border-box;
	margin-bottom: 25px;
}

.inputBox .inputText{
	position: absolute;
    font-size: 16px;
    line-height: 50px;
    transition: .5s;
    color: #666666;
}


.inputBox .input{
	position: relative;
	width: 100%;
	height: 50px;
	background: transparent;
	border: none;
    outline: none;
    font-size: 20px;
    /*border-bottom: 1px solid rgba(0,0,0,.5);*/
    border-bottom: 1px solid #ccc;

}

.focus .inputText{
	transform: translateY(-32px);
	font-size: 14px;
	color: #00bcd4;

}





.select-options{
    width: 100%;
    padding: 16px 10px 10px 5px;
    border: 1px solid transparent;
    background: transparent;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    font-size: 16px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    background: 0 0;
    position: relative;
    z-index: 9;
    cursor: pointer;
    color: #666;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
}
.select-btn{
    z-index: 0;
    position: absolute;
    top: 20%;
    right:10%;
    font-size: 18px;
    color: #666;
}
.select-form-row .select-btn{
    top: 20%;
    right: 26%;
}
.input:focus, .select-options:focus{
    border-bottom: 1px solid #999;
}
.select-form-row select option {
    background: #4835d4;
}
.selectLabel{
    position: absolute;
    transition: .5s;
    font-size: 14px;
    color: #00bcd4;
    visibility: hidden;
}
.focusSelect .selectLabel{
    transform: translateY(-17px);
    visibility: visible;
}
.focusSelectText .select-options{
    color: black;
}
/*
input[type=date]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}
input[type=date]:focus::-webkit-datetime-edit {
    color: black !important;
}

input[type=date]:required:invalid::-moz-datetime-edit {
    color: transparent;
}
input[type=date]:focus::-moz-datetime-edit {
    color: black !important;
}*/

.mdl-textfield {
     color: transparent; 
}

.mdl-textfield-alt {
      color: black !important;
}


/*.unstyled::-webkit-inner-spin-button,
.unstyled::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}*/

.unstyled::-webkit-inner-spin-button{
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}




.btnKiosk{
    background: #3276B1;
    border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    width: 300px;
    border: none;
    /*margin: 6px 0 0 0;*/
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
}

.btnKiosk:hover{
	background: #2e6da0;
	color: #edeaea;
}












.inputBoxCol{
    position: relative;
    box-sizing: border-box;
    margin-bottom: 25px;
}

.inputBoxCol .inputTextCol{
	position: absolute;
    font-size: 16px;
    line-height: 50px;
    transition: .5s;
    color: #666666;
}


.inputBoxCol .inputCol{
	position: relative;
	width: 100%;
	height: 50px;
	background: transparent;
	border: none;
    outline: none;
    font-size: 20px;
    /*border-bottom: 1px solid rgba(0,0,0,.5);*/
    border-bottom: 1px solid #ccc;

}

.focusCol .inputTextCol{
	transform: translateY(-32px);
	font-size: 14px;
	color: #52aa52;

}



.select-optionsCol{
    width: 100%;
    padding: 16px 10px 10px 5px;
    border: 1px solid transparent;
    background: transparent;
    appearance: unset;
    -moz-appearance: unset;
    -webkit-appearance: unset;
    -o-appearance: unset;
    -ms-appearance: unset;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    font-size: 16px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    background: 0 0;
    position: relative;
    z-index: 9;
    cursor: pointer;
    color: #666;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
}
.select-btnCol{
    z-index: 0;
    position: absolute;
    top: 20%;
    right:10%;
    font-size: 18px;
    color: #666;
}
.select-form-rowCol .select-btnCol{
    top: 20%;
    right: 26%;
}
.inputCol:focus, .select-optionsCol:focus{
    border-bottom: 1px solid #999;
}
.select-form-rowCol select option {
    background: #4835d4;
}
.selectLabelCol{
    position: absolute;
    transition: .5s;
    font-size: 14px;
    color: #52aa52;
    visibility: hidden;
}
.focusSelectCol .selectLabelCol{
    transform: translateY(-17px);
    visibility: visible;
}
.focusSelectTextCol .select-optionsCol{
    color: black;
}
.btnKioskCol{
    background: #5CB85C;
    border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    width: 300px;
    border: none;
    /*margin: 6px 0 0 0;*/
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
}
.btnKioskCol:hover{
    background: #5dbf5d;
    color: #edeaea;
}

/*************************ADDITIONAL KIOSK STYLES*************************/
.bs-wizard-step-margin{
    margin-top: 50px;
}
.bs-wizard {
    border-bottom: solid 1px #e0e0e0; 
    padding: 0 0 10px 0;
}
.bs-wizard > .bs-wizard-step {
    padding: 0; 
    position: relative;
}
.bs-wizard > .bs-wizard-step + .bs-wizard-step {}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
    color: #595959; 
    font-size: 16px; 
    margin-bottom: 5px;
}
.bs-wizard > .bs-wizard-step .bs-wizard-info {
    color: #999; 
    font-size: 14px;
}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute; 
    width: 30px; 
    height: 30px; 
    display: block; 
    background: #bce2bd; 
    top: 45px; 
    left: 50%; 
    margin-top: -15px; 
    margin-left: -15px; 
    border-radius: 50%;
} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
    content: ' '; 
    width: 14px; 
    height: 14px; 
    background: #46a049; 
    border-radius: 50px; 
    position: absolute; 
    top: 8px; 
    left: 8px; 
} 
.bs-wizard > .bs-wizard-step > .progress {
    position: relative; 
    border-radius: 0px; 
    height: 8px; 
    box-shadow: none; 
    margin: 20px 0;
}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
    width:0px; 
    box-shadow: none; 
    background: #bce2bd;
}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
    width:100%;
}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
    width:50%;
}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
    width:0%;
}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
    width: 100%;
}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
    background-color: #f5f5f5;
}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
    opacity: 0;
}
.bs-wizard > .bs-wizard-step:first-child  > .progress {
    left: 50%; 
    width: 50%;
}
.bs-wizard > .bs-wizard-step:last-child  > .progress {
    width: 50%;
}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ 
    pointer-events: none; 
}

/*********************** INSTRUCTIONS LIST ***********************/
.instruction-ol{
    padding: 10px 30px; 
    text-align: justify;
}

.instruction-step{
    padding: 20px 20px 0 20px;
}

.nested-ins1 {
    font-size: 15px;
    counter-reset: nested-ins1;
    padding: 0 30px 0 50px;
    text-align: justify;
}

.nested-ins1 li {
    list-style-type: none;
    display: table;
}

.nested-ins1 li::before {
    counter-increment: nested-ins1;
    content: "1." counter(nested-ins1) " ";
    padding-right: 0.6em; 
    display: table-cell;
}


.nested-ins2 {
    font-size: 15px;
    counter-reset: nested-ins2;
    padding: 0 30px 0 50px;
    text-align: justify;
}

.nested-ins2 li {
    list-style-type: none;
    display: table;
}

.nested-ins2 li::before {
    counter-increment: nested-ins2;
    content: "2." counter(nested-ins2) " ";
    padding-right: 0.6em; 
    display: table-cell;
}

.additional-notes-li {
  list-style: none;
  text-align: justify;
  font-size: 15px;
  margin: 30px 10px;
}

.additional-notes-li li {
  padding-bottom: 10px;
}

.additional-notes-li li::before {
  content: "\2217";
  color: red;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

.instruction-req{
    padding: 0 40px;
    font-size: 15px;
}


.btnKioskNext{
    background: #5CB85C;
    border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    width: 180px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
}
.btnKioskNext:hover{
    background: #5dbf5d;
    color: #edeaea;
}

.btnKioskCancel{
    background: #f8f8f8;
    border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.30);
    width: 180px;
    border: none;
    cursor: pointer;
    color: #959795;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
    margin-bottom: 10px;
}

.btnKioskCancel:hover{
    background: #f2efef;
    color: #959795;
}
/***************************** radio *************************/
.funkyradio div {
  clear: both;
  overflow: hidden;
}
.funkyradio label {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #D1D3D4;
  font-weight: normal;
}
.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
  display: none;
}
.funkyradio input[type="radio"]:empty ~ label,
.funkyradio input[type="checkbox"]:empty ~ label {
  position: relative;
  line-height: 2.5em;
  /*text-indent: 3.25em;*/
  padding-left: 3.25em;
  margin-top: 2em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.funkyradio input[type="radio"]:empty ~ label:before,
.funkyradio input[type="checkbox"]:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 2.5em;
  background: #D1D3D4;
  border-radius: 3px 0 0 3px;
}
.funkyradio input[type="radio"]:hover:not(:checked) ~ label,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
  color: #888;
}
.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #C2C2C2;
}
.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
  color: #777;
}
.funkyradio input[type="radio"]:checked ~ label:before,
.funkyradio input[type="checkbox"]:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #333;
  background-color: #ccc;
}
.funkyradio input[type="radio"]:focus ~ label:before,
.funkyradio input[type="checkbox"]:focus ~ label:before {
  box-shadow: 0 0 0 3px #999;
}
.funkyradio-default input[type="radio"]:checked ~ label:before,
.funkyradio-default input[type="checkbox"]:checked ~ label:before {
  color: #333;
  background-color: #ccc;
}
.funkyradio-primary input[type="radio"]:checked ~ label:before,
.funkyradio-primary input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #337ab7;
}
.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #5cb85c;
}
.funkyradio-danger input[type="radio"]:checked ~ label:before,
.funkyradio-danger input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #d9534f;
}
.funkyradio-warning input[type="radio"]:checked ~ label:before,
.funkyradio-warning input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #f0ad4e;
}
.funkyradio-info input[type="radio"]:checked ~ label:before,
.funkyradio-info input[type="checkbox"]:checked ~ label:before {
  color: #fff;
  background-color: #5bc0de;
}
.small-label{
    font-size: 11px;
    font-style: italic;
}
/*Additional radio buttons*/
.checkboxNew label:after, 
.radioCheckNew label:after {
    content: '';
    display: table;
    clear: both;
}
.checkboxNew .cr,
.radioCheckNew .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}
.checkboxNew .cr .cr-icon,
.radioCheckNew .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}
.checkboxNew label input[type="checkbox"],
.radioCheckNew label input[type="radio"] {
    display: none;
}
.checkboxNew label input[type="checkbox"] + .cr > .cr-icon,
.radioCheckNew label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}
.checkboxNew label input[type="checkbox"]:checked + .cr > .cr-icon,
.radioCheckNew label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}
.checkboxNew label input[type="checkbox"]:disabled + .cr,
.radioCheckNew label input[type="radio"]:disabled + .cr {
    opacity: .5;
}
.radioCheckNewLabel{
    border: none !important ;
}




.checkBoxDiv2:first-of-type {
  margin-top: 20px;  
}

.checkBoxDiv2 {
  display: block;
  position: relative;
  padding-left: 50px;
  margin-top: 12px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkBoxDiv2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark2 {
  position: absolute;
  /*top: 0;*/
  left: 0;
  height: 20px;
  width: 40px;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
}

/* On mouse-over, add a grey background color */
.checkBoxDiv2:hover input ~ .checkmark2 {
  border-bottom: solid 1px #9b9999;
}

/* When the checkbox is checked, add a blue background */
.checkBoxDiv2 input:checked ~ .checkmark2 {
  background-color: #fff;
  border-bottom: solid 1px #ccc;
}

/* Create the checkmark2/indicator (hidden when not checked) */
.checkmark2:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark2 when checked */
.checkBoxDiv2 input:checked ~ .checkmark2:after {
  display: block;
}

/* Style the checkmark2/indicator */
.checkBoxDiv2 .checkmark2:after {
  left: 15px;
  /*top: -5px;*/
  margin-top: -5px;
  width: 10px;
  height: 20px;
  border: solid #ef9bcf;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}









/*------------------------------------------------------------------
[ Alert validate ]*/
.validate-input {
  position: relative;
}
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;
  font-family: Arial;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;
  display: block;
  position: absolute;
  background-color: #fff;
  top: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  animation: shake 0.5s;
  right: 5px;
}
.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}
@keyframes shake {
  0% { transform: translateX(1px) translateY(-50%) rotate(0deg); }
  10% { transform: translateX(-1px) translateY(-50%) rotate(0deg); }
  20% { transform: translateX(-3px) translateY(-50%) rotate(0deg); }
  30% { transform: translateX(3px) translateY(-50%) rotate(0deg); }
  40% { transform: translateX(1px) translateY(-50%) rotate(0deg); }
  50% { transform: translateX(-1px) translateY(-50%) rotate(0deg); }
  60% { transform: translateX(-3px) translateY(-50%) rotate(0deg); }
  70% { transform: translateX(3px) translateY(-50%) rotate(0deg); }
  80% { transform: translateX(-1px) translateY(-50%) rotate(0deg); }
  90% { transform: translateX(1px) translateY(-50%) rotate(0deg); }
  100% { transform: translateX(1px) translateY(-50%) rotate(0deg); }
}
/*------------------------------------------------------------------
[ Alert validate for input fields on student information forms]*/
.validate-input-2 {
  position: relative;
  margin-bottom: 15px;
}
.alert-validate-2::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 100%;
  background-color: transparent;
  /*border: 1px solid #c80000;*/
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -7px;
  pointer-events: none;
  font-family: Arial;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  /*visibility: hidden;
  opacity: 0;*/
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
  visibility: visible;
  opacity: 1;
  animation: shake 0.5s;
}
.alert-validate-2::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 18px;
  color: #c80000;
  display: block;
  position: absolute;
  background-color: #ffffff;
  top: -25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  animation: shake 0.5s;
  right: 3px;
}
/*------------------------------------------------------------------
[ Alert validate for select fields on student information forms]*/
.validate-input-2-select {
  position: relative;
}
.validate-input-2-select-2 {
  position: relative;
  margin-bottom: 15px;
}
.alert-validate-2-select::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 90%;
  background-color: transparent;
  /*border: 1px solid #c80000;*/
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: -15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -5px;
  pointer-events: none;
  font-family: Arial;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  /*visibility: hidden;
  opacity: 0;*/
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
  visibility: visible;
  opacity: 1;
  animation: shake 0.5s;
}
.alert-validate-2-select::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 18px;
  color: #c80000;
  display: block;
  position: absolute;
  background-color: #ffffff;
  top: -45px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  animation: shake 0.5s;
  right: 3px;
}
/*------------------------------------------------------------------
[ Alert validate for the whole form - student information forms]*/
.validate-input-one-line {
  position: relative;
  margin-bottom: 50px;
  margin-top: 10px;
}
.alert-validate-one-line::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 50%;
  background-color: transparent;
  /*border: 1px solid #c80000;*/
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: -15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  pointer-events: none;
  font-family: Arial;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  /*visibility: hidden;
  opacity: 0;*/
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
  visibility: visible;
  opacity: 1;
  animation: shake 0.5s;
}
.alert-validate-one-line::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 18px;
  color: #c80000;
  display: block;
  position: absolute;
  background-color: #ffffff;
  top: -16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  animation: shake 0.5s;
  left: 15px;
}
/*------------------------------------------------------------------
[ Alert validate for the whole form - student information forms]*/
.validate-checkbox-one-line {
  position: relative;
  margin-bottom: 50px;
  margin-top: 10px;
}
.alert-validate-checkbox-one-line::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 50%;
  background-color: transparent;
  /*border: 1px solid #c80000;*/
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  pointer-events: none;
  font-family: Arial;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  /*visibility: hidden;
  opacity: 0;*/
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
  visibility: visible;
  opacity: 1;
  animation: shake 0.5s;
}
.alert-validate-checkbox-one-line::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 18px;
  color: #c80000;
  display: block;
  position: absolute;
  background-color: #ffffff;
  top: 14px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  animation: shake 0.5s;
  left: 15px;
}


/* =========================== Custom Modal Bypass Styles =========================== */

.standard-modal-header h3 {
	margin: 0;
	line-height: 1.428571429;	
}

.standard-modal-header img {
	padding:0px 10px 0px 5px;
	height: 50px;
}

.modal-lg {
    /*width: 900px;*/
    width: 90%;
}

/* =========================== Enlistment Attachment Modal Styles =========================== */

#modalAttachmentsBody div {
	border: 1px solid #ddd; /* Gray border */
  	border-radius: 4px;  /* Rounded border */		
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;	
	position: relative;
	display:inline-block;    
    width: 200px; /* Set a small width */  	  	
    height: 200px;    
    left: 2%;
    overflow: hidden;
    white-space: nowrap;
}

#modalAttachmentsBody div:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);  
}

.files-thumbnails{	  	 	
	position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;  	  	
 	width: 100%; 
}

/***ADDITIONAL***/
.tooltip {
  /*font-size: 12px;*/
  min-width: 200px;
}
.pos-abs{
    position: absolute;
    top: -45px;
}
.guardian-address-div{
    margin-top: 15px;
}
.top-right-icon {
  text-align: center;
  border-radius: 50%;
  background-color: #00bcd4;
  color: #ffffff;
  padding: 10px;
  width:40px;
  height: 40px;
  position: absolute;
  right: 5px;
  top: -15px;
}
.top-right-icon:hover{
  border: 1px solid #00bcd4;
  background-color: white;
  color: #00bcd4;
}
.top-right-iconCol {
  text-align: center;
  border-radius: 50%;
  background-color: #52aa52;
  color: #ffffff;
  padding: 10px;
  width:40px;
  height: 40px;
  position: absolute;
  right: 5px;
  top: -15px;
}
.top-right-iconCol:hover{
  border: 1px solid #52aa52;
  background-color: white;
  color: #52aa52;
}
/*Override color of flag and country code in contact number*/
.iti--separate-dial-code .iti__selected-flag{
    background-color: transparent;
}
/********RESPONSIVE*********/
@media (max-width: 565px){
    .bs-wizard-step-margin{
        margin-top: 70px;
    }
    .bs-wizard > .bs-wizard-step .bs-wizard-info {
        font-size: 11px;
    }
    
}
@media (max-width: 992px){
    .small-label{
        display: block;
    }
    .pos-abs{
        position: static;
        margin-top: 30px;
    }
    .guardian-address-div{
        padding-top: 15px;
    }
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
        animation: shake 0.5s;
    }
    .validate-input-2 {
        padding-bottom: 20px;
    }
    .validate-input-2-select {
        padding-bottom: 20px;
    }
    .validate-input-2-select-2 {
        padding-bottom: 20px;
    }
    .validate-input-one-line {
        padding-bottom: 10px;
        margin-top: 30px;
    }
    .alert-validate-one-line::before {
        max-width: 100%;
    }
    .validate-checkbox-one-line {
        padding-bottom: 10px;
        margin-top: 30px;
    }
    .alert-validate-checkbox-one-line::before {
        max-width: 100%;
    }
}