html{scroll-behavior: smooth;}

:root
{
    --clr-primary-bg: #571893;
    --width-left-nav: 100px;
    --box-height: 80px;
}

body
{
    background: var(--clr-primary-bg);
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

.toggle, [id^=drop]
{
    display: none;
}
nav
{
    margin: 0;
    padding: 0;
    background-color: #254441;
    z-index: 999;
}
        
#logo
{
    display: block;
    padding: 0 30px;
    float: left;
    font-size: 20px;
    line-height: 60px;
}
nav:after
{
    content: "";
    display: table;
    clear: both;
}
        
/* Removing padding, margin and "list-style" from the "ul",
* and adding "position:reltive" */
nav ul
{
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 999;
}
        
/* Positioning the navigation items inline */
nav ul li
{
    margin: 0px;
    display: inline-block;
    float: left;
    background-color: #254441;
}
        
/* Styling the links */
nav a
{
    display: block;
    padding: 14px 14px;
    color: #FFF;
    font-size: 17px;
    text-decoration: none;
}
        
        
nav ul li ul li:hover
{
    background: #000000;
}
        
/* Background color change on Hover */
        
        
/* Hide Dropdowns by Default
* and giving it a position of absolute */
nav ul ul
{
    display: none;
    position: absolute; /* has to be the same number as the "line-height" of "nav a" */
    top: 60px;
}
        
/* Display Dropdowns on Hover */
nav ul li:hover > ul
{
    display: inherit;
}
        
/* Fisrt Tier Dropdown */
nav ul ul li
{
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}
        
/* Second, Third and more Tiers	
* We move the 2nd and 3rd etc tier dropdowns to the left
* by the amount of the width of the first tier.
*/
nav ul ul ul li
{
    position: relative;
    top: -60px; /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}
        
        
/* Change ' +' in order to change the Dropdown symbol */
li > a:after
{
    content: ' +';
}
li > a:only-child:after
{
    content: '';
}
        
        
/* Media Queries
--------------------------------------------- */
        
@media all and (max-width : 768px)
{
        
    #logo
    {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }
        
    nav
    {
        margin: 0;
    }
        
    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a, .menu
    {
        display: none;
    }
        
    /* Stylinf the toggle lable */
    .toggle
    {
        display: block;
        background-color: #254441;
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
        text-decoration: none;
        border: none;
        position: absolute;
        right: 0;
        top: 0;
    }
        
    .toggle:hover
    {
        background-color: #000000;
    }
        
    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul
    {
        display: block;
    }
        
    /* Change menu item's width to 100% */
    nav ul li
    {
        display: block;
        width: 100%;
    }
        
    nav ul ul .toggle, nav ul ul a
    {
        padding: 0 40px;
    }
        
    nav ul ul ul a
    {
        padding: 0 80px;
    }
        
    nav a:hover, nav ul ul ul a
    {
        background-color: #000000;
    }
        
    nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a
    {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }
        
        
    nav ul li ul li .toggle, nav ul ul a
    {
        background-color: #212121;
    }
        
    /* Hide Dropdowns by Default */
    nav ul ul
    {
        float: none;
        position: static;
        color: #ffffff; /* has to be the same number as the "line-height" of "nav a" */
    }
        
    /* Hide menus on hover */
    nav ul ul li:hover > ul, nav ul li:hover > ul
    {
        display: none;
    }
        
    /* Fisrt Tier Dropdown */
    nav ul ul li
    {
        display: block;
        width: 100%;
    }
        
    nav ul ul ul li
    {
        position: static; /* has to be the same number as the "width" of "nav ul ul li" */
    }
        
}
        
@media all and (max-width : 330px)
{
    nav ul li
    {
        display: block;
        width: 94%;
    }
        
}
.top-header
{
    background-color: var(--clr-primary-bg);
    left: var(--width-left-nav);
}
.nav-left-panel
{
    position: fixed;
    top:0;
    left:0;
    width: var(--width-left-nav); 
    height: 100%; 
    background-color: var(--clr-primary-bg);
    padding: 5px;
}
.nav-left-panel ul
{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}
.nav-left-panel ul li
{
    cursor:pointer;
    padding:20px 0;
    margin-bottom:10px;
    border-radius: 0 10px 10px 0;
    text-transform:uppercase;
    font-size:10px;
    font-weight:600;
    transition:0.3s all;
}
.nav-left-panel ul li.active
{
    background: rgb(35,6,62);
    background: linear-gradient(90deg, rgba(0,0,0,0) 14%, rgba(35,6,62,0.6) 100%);
}
.nav-left-panel ul li:hover
{
    background: rgb(35,6,62);
    background: linear-gradient(90deg, rgba(0,0,0,0) 14%, rgba(35,6,62,0.8) 100%);
}
.nav-left-panel ul li:hover a, .nav-left-panel ul li.active a
{
    color:#FFF;
}
.nav-left-panel ul li i
{
    display:block;
    font-size:30px;
}
.nav-left-panel ul li a
{
    color:#BBB;
    text-decoration:none;
    transition:0.3s all;
}
.nav-left-panel ul li a span
{
    line-height: 20px;
}
.content-panel
{
    margin-top: 60px;
    margin-left: var(--width-left-nav);
    background:#FFF;
    border-radius:10px;
}
.content-panel.not-active
{
    margin-top: 0!important;
    margin-left: 0!important;
}
@media all and (max-width : 780px)
{
    .top-header
    {
        left: 0; 
    }
    .nav-left-panel
    {
        left: calc(0px - var(--width-left-nav)); 
    }
    .nav-left-panel ul li i
    {
        font-size:20px;
    }
    .nav-left-panel ul li span
    {
        display:none;
    }
    .content-panel
    {
        margin-left: 0;
    }
    .sticky
    {
        left:0 !important;
        width: 100% !important;
    }
        
}

.box
{
    color: #444;
    border-radius: 5px;
    padding: 5px;
    height: var(--box-height);
    position: relative;
    overflow: hidden;
    border-bottom: solid 4px rgba(0,0,0,0);
    transition: color 150ms ease-in-out, border-bottom 150ms ease-in-out, background 450ms ease-in-out, transform 150ms ease-in-out;
}
.box-text
{
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 400;
    font-size: var(--fs-normal-400);
}
.box-text2
{
    position: absolute;
    bottom: 15px;
    left: 10px;
    font-weight: 600;
    font-size: var(--fs-normal-400);
    white-space: nowrap;
}
.box-text3
{
    position: absolute;
    bottom: 0px;
    left: 10px;
    font-weight: 600;
    font-size: var(--fs-normal-400);
}
.box-value
{
    position: absolute;
    top: 0px;
    left: 10px;
    font-size: 26px;
}
.box-sign
{
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.5;
}
.bg-yellow-light
{
    background-color: #fee069 !important;
}
.bg-info-light
{
    background-color: #61d9ff !important;
}
.bg-orange-light
{
    background-color: #ffbf5b !important;
}
.bg-green-light
{
    background-color: #5fe598 !important;
}
.bg-teal-light
{
    background-color: #4cdec1 !important;
}
.bg-danger-light
{
    background-color: #ec8176 !important;
}
.text-purple
{
    color:rgb(87,24,147) !important;
}
.bg-purple
{
    color:#EEE;
    background-color: rgb(87,24,147) !important;
}
.bg-purple-light
{
    background-color: #a687ff !important;
}
.bg-pink-light
{
    color:#EEE;
    background-color: #ff39cd !important;
}
.no-hover
{
}
.no-hover:hover .box
{
    color: #222;
    border-bottom: solid 4px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}
.no-hover:hover .bg-yellow-light
{
    background: rgb(254,224,105);
    background: linear-gradient(35deg, rgba(254,224,105,1) 0%, rgba(228,255,0,1) 100%);
}
.no-hover:hover .bg-info-light
{
    background: rgb(97,217,255);
    background: linear-gradient(35deg, rgba(97,217,255,1) 0%, rgba(0,255,222,1) 100%);
}
.no-hover:hover .bg-orange-light
{
    background: rgb(255,191,91);
    background: linear-gradient(35deg, rgba(255,153,0,1) 0%, rgba(255,191,91,1) 100%);
}
.no-hover:hover .bg-green-light
{
    background: rgb(95,229,152);
    background: linear-gradient(35deg, rgba(1,172,0,1) 0%, rgba(95,229,152,1) 100%);
}
.no-hover:hover .bg-teal-light
{
    background: rgb(76,222,193);
    background: linear-gradient(35deg, rgba(12,185,235,1) 0%, rgba(76,222,193,1) 100%);
}
.no-hover:hover .bg-danger-light
{
    background: rgb(230,64,64);
    background: linear-gradient(35deg, rgba(230,64,64,1) 0%, rgba(236,129,118,1) 100%);
}
.no-hover:hover .bg-purple-light
{
    background: rgb(181,85,255);
    background: linear-gradient(35deg, rgba(181,85,255,1) 0%, rgba(35,183,229,1) 100%);
}
.no-hover:hover .bg-pink-light
{
    color:#FFF;
    background: rgb(253,50,56);
    background: linear-gradient(35deg, rgba(253,50,56,1) 0%, rgba(255,170,0,1) 100%);
}



.input_up {width:85%;}
.input_up_half {width:41%;}

@media screen and (min-width:320px) and (max-width:600px) 
{
    .input_up_half {width:100%;}
    .input_up {width:90%;}
    input#dob_input {padding-left:42px !important;}
}
                
#ctl00_ContentPlaceHolder1_ggfh1_popupDiv 
{
    background-color:#eee; border:1px solid;
}                

.form_wrapper {
    background:#ffffffde;
    width: 400px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 8px auto 0;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: none;
    transition: none;
    -webkit-animation: expand 0.8s 0.6s ease-out forwards;
    animation: expand 0.8s 0.6s ease-out forwards;
    opacity: 0;
}
.form_wrapper h2 {
    font-size: 2em;
    line-height: 1.5em;
    margin: 0;
}
.form_wrapper .title_container {
    text-align: center;
    margin-bottom: 5px;
    padding: 5px;
    background: #fce9b6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.form_wrapper .form_container
{
    padding: 25px;
}
.form_wrapper h3 {
    font-size: 1.1em;
    font-weight: normal;
    line-height: 1.5em;
    margin: 0;
}
.form_wrapper label {
    font-size: 12px;
}
.form_wrapper .row {
  margin: 10px -15px;
}
.form_wrapper .row > div {
    padding: 0 15px;
    box-sizing: border-box;
}
.form_wrapper .col_half {
    width: 50%;
    float: left;
}
.form_wrapper .input_field {
    position: relative;
    margin-bottom: 10px;
    -webkit-animation: bounce 0.6s ease-out;
    animation: bounce 0.6s ease-out;
    width: 90%;
}
.form_wrapper .input_field > span {
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    height: 100%;
    border: 1px solid #cccccc;
    text-align: center;
    width: 35px;
    z-index:0;
}
.form_wrapper .input_field > span > i {
  padding-top: 10px;
    z-index:1;
}
.form_wrapper .textarea_field > span > i {
  padding-top: 10px;
    z-index:1;
}
.form_wrapper input[type=text], .form_wrapper input[type=email], .form_wrapper input[type=password] {
    /*width: 100%;*/
    padding: 8px 10px 9px 35px;
    height: 35px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.form_wrapper input[type=text]:hover, .form_wrapper input[type=email]:hover, .form_wrapper input[type=password]:hover {
  background: #fafafa;
}
.form_wrapper input[type=text]:focus, .form_wrapper input[type=email]:focus, .form_wrapper input[type=password]:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid #f5ba1a;
    background: #fafafa;
}
.form_wrapper input[type=checkbox], .form_wrapper input[type=radio] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.form_wrapper .input_field > span.required_star 
{
    position:absolute;
    top: 0px;
    border:0;
    border-left: solid 3px #FF0000;
    border-radius: 3px 0 0 3px;
    display:block;
}
.form_wrapper .input_field > span.validate_star 
{
    position:absolute;
    top: 0px;
    border:0;
    border-left: solid 3px #ff8c1a;
    border-radius: 3px 0 0 3px;
    display:block;
}

.form_container .row .col_half.last {
  border-left: 1px solid #cccccc;
}

.checkbox_option label {
  margin-right: 1em;
  position: relative;
}
.checkbox_option label:before {
    content: "";
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.5em;
    vertical-align: -2px;
    border: 2px solid #cccccc;
    padding: 0.12em;
    background-color: transparent;
    background-clip: content-box;
    transition: all 0.2s ease;
}
.checkbox_option label:after {
    border-right: 2px solid #000000;
    border-top: 2px solid #000000;
    content: "";
    height: 20px;
    left: 2px;
    position: absolute;
    top: 7px;
    transform: scaleX(-1) rotate(135deg);
    transform-origin: left top;
    width: 7px;
    display: none;
}
.checkbox_option input:hover + label:before {
    border-color: #000000;
}
.checkbox_option input:checked + label:before {
    border-color: #000000;
}
.checkbox_option input:checked + label:after {
    -moz-animation: check 0.8s ease 0s running;
    -webkit-animation: check 0.8s ease 0s running;
    animation: check 0.8s ease 0s running;
    display: block;
    width: 7px;
    height: 20px;
    border-color: #000000;
}

.radio_option label {
  margin-right: 1em;
}
.radio_option label:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-right: 0.5em;
    border-radius: 100%;
    vertical-align: -3px;
    border: 2px solid #cccccc;
    padding: 0.15em;
    background-color: transparent;
    background-clip: content-box;
    transition: all 0.2s ease;
}
.radio_option input:hover + label:before {
  border-color: #000000;
}
.radio_option input:checked + label:before {
  background-color: #000000;
  border-color: #000000;
}

.select_option {
  position: relative;
  width: 100%;
}
.select_option select {
  display: inline-block;
  width: 100%;
  height: 35px;
  padding: 0px 15px;
  cursor: pointer;
  color: #7b7b7b;
  border: 1px solid #cccccc;
  border-radius: 0;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s ease;
}
.select_option select::-ms-expand {
  display: none;
}
.select_option select:hover, .select_option select:focus {
  color: #000000;
  background: #fafafa;
  border-color: #000000;
  outline: none;
}

.select_arrow {
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-width: 8px 5px 0 5px;
  border-style: solid;
  border-color: #7b7b7b transparent transparent transparent;
}

.select_option select:hover + .select_arrow, .select_option select:focus + .select_arrow {
  border-top-color: #000000;
}

.credit {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 15px;
  color: #f5ba1a;
}
.credit a {
  color: #e1a70a;
}

@-webkit-keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 7px;
  }
  50% {
    height: 20px;
    width: 7px;
  }
}
@keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 7px;
  }
  50% {
    height: 20px;
    width: 7px;
  }
}
@-webkit-keyframes expand {
  0% {
    -webkit-transform: scale3d(1, 0, 1);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale3d(1, 1.2, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 0.85, 1);
  }
  75% {
    -webkit-transform: scale3d(1, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes expand {
  0% {
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale3d(1, 1.2, 1);
    transform: scale3d(1, 1.2, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 0.85, 1);
    transform: scale3d(1, 0.85, 1);
  }
  75% {
    -webkit-transform: scale3d(1, 1.05, 1);
    transform: scale3d(1, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate3d(0, -25px, 0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translate3d(0, 10px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -6px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 2px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -6px, 0);
    transform: translate3d(0, -6px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .form_wrapper .col_half {
    width: 100%;
    float: none;
  }

  .bottom_row .col_half {
    width: 50%;
    float: left;
  }

  .form_container .row .col_half.last {
    border-left: none;
  }

  .remember_me {
    padding-bottom: 20px;
  }
}


input#submit {background: #f5ba1a;
    height: 35px;
    line-height: 35px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	text-align:center;}
	
	
	
input#submit_otp {background: #f5ba1a;
    height: 35px;
    line-height: 35px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	text-align:center;
	    width: 24%;
    margin-top: -35px;
    margin-left: 265px;
    position: absolute;}
    
    

/* CALENDAR START */
.ajax__calendar_container   {
background-color: #DEF1F4;
border:solid 1px #77D5F7;
z-index: 1000;
width:178px!important;
}

.ajax__calendar_header  {
background-color: #ffffff;
margin-bottom: 4px;
}

.ajax__calendar_title,
.ajax__calendar_next,
.ajax__calendar_prev    {
color: #004080;
padding-top: 3px;
}

.ajax__calendar_body    {
background-color: #ffffff;
border: solid 1px #77D5F7;
}

.ajax__calendar_dayname {
text-align:center;
font-weight:bold;
margin-bottom: 4px;
margin-top: 2px;
color: #004080;
}

.ajax__calendar_day {
color: #004080;
text-align:center;
}

.ajax__calendar_hover .ajax__calendar_day,
.ajax__calendar_hover .ajax__calendar_month,
.ajax__calendar_hover .ajax__calendar_year,
.ajax__calendar_active  {
color: #004080;
font-weight: bold;
background-color: #DEF1F4;
}


.ajax__calendar_today   {
font-weight:bold;
}

.ajax__calendar_other,
.ajax__calendar_hover .ajax__calendar_today,
.ajax__calendar_hover .ajax__calendar_title {
color: #bbbbbb;
}
/* CALENDAR END*/

h2
{
    font-size: 26px;
}
.input_field {
    position: relative;
    margin-bottom: 20px;
    -webkit-animation: bounce 0.6s ease-out;
    animation: bounce 0.6s ease-out;
    text-align:left;
}
.input_field > span {
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    height: 100%;
    border: 1px solid #cccccc;
    border-radius: 3px 0 0 3px;
    text-align: center;
    width: 35px;
    z-index:0;
}
.input_field > span > i {
  padding-top: 10px;
    z-index:1;
}
.input_field  input[type=text], .input_field input[type=email], .input_field input[type=password], .input_field select {
    margin-left:34px;
    padding: 4px 5px 4px 5px;
    height: 35px;
    border: 1px solid #cccccc;
    border-radius: 0 3px 3px 0;
    box-sizing: border-box;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.input_field input[type=text]:hover, .input_field input[type=email]:hover, .input_field input[type=password]:hover, .input_field select:hover {
  background: #fafafa;
}
.input_field input[type=text]:focus, .input_field input[type=email]:focus, .input_field input[type=password]:focus, .input_field select:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid #f5ba1a;
    background: #fafafa;
}

.input_field div.country-code
{
    position:absolute;
    top:9px;
    left:36px;
    color:#999;
    font-size:12px;
}

input[type=checkbox] ~ label{padding-left: 5px;font-weight:bold;}

.checkbox_option input
{
    display: none;
}
                
#heading
{
    color: var(--clr-primary-bg);
    font-weight: 600;
}

.msform-blank
{
    position: relative;
    margin: 0;
    font-size: 14px;
    padding-right: 10px;
}
.msform
{
    position: relative;
    margin: 0;
    margin-bottom: 20px;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    padding: 10px;
    border-top: 5px solid var(--clr-primary-bg);
    border-radius: 6px;
}
        
.msform input:focus, .msform textarea:focus
{
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #1c9c04;
    outline-width: 0;
}

/*.msform .row
{
    display:none;
}*/
.msform h2
{
   background: rgb(113 0 255 / 20%); 
   padding: 5px;
   border-radius:5px;
}
        
.add
{
    width: auto;
    background: #1c9c04;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 10px;
    margin: 10px 0px 10px 5px;
    float: right;
}
        
.card
{
    z-index: 0;
    border: none;
    position: relative;
}
        
.fs-title
{
    font-size: 22px;
    color: var(--clr-primary-bg);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}
        
.purple-text
{
    color: #1c9c04;
    font-weight: normal;
}
        
.steps
{
    font-size: 16px;
    color: gray;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 500;
    text-align: right;
}
        
.fieldlabels
{
    margin-top: 5px;
    color: #555;
    text-align: left;
    font-weight: bold;
    display: block;
}
*{
    --clr-domestic-header-back: #ffe4d0;
    --clr-domestic-header-front: #BD6407;
    --clr-international-header-back: #d8ffe2;
    --clr-international-header-front: #07bd35;
}

#divPageProgressBar
{
    --clr-progressbar-header-back: var(--clr-domestic-header-back);
    --clr-progressbar-header-front: var(--clr-domestic-header-front);
}
#divPageProgressBar.international
{
    --clr-progressbar-header-back: var(--clr-international-header-back);
    --clr-progressbar-header-front: var(--clr-international-header-front);
}
.progressbar-header
{
    background-color: var(--clr-progressbar-header-back);
}
.headingIsDomestic
{
    background-color: var(--clr-progressbar-header-back);
    color: var(--clr-progressbar-header-front);
}
.progressbar-header
{
    border-radius:0 0 6px 6px;
    border-top: solid 4px var(--clr-progressbar-header-front);
}

.headingApplicationNumber
{
    width: 150px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
.headingApplicationNumber span
{
    font-size: 14px;
}
.headingApplicationNumberBorder
{
    border-top: 1px solid;
}
.headingIsDomestic
{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 10px;
    font-size: 12px;
    text-align: center;
    border-radius: 0 0 6px 6px;
    margin-bottom: 5px;
    text-transform: uppercase;
    border-bottom: solid 2px rgba(0,0,0,0.3);
    display: inline-block;
}
@media screen and (max-width: 1000px)
{
    .mobile-hidden
    {
        display:none;
    }
    .headingApplicationNumber
    {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-size: 12px;
        font-weight: bold;
    }
    .headingApplicationNumberBorder
    {
        border: none;
        display: none;
    }
}

#progressbar
{
    overflow: hidden;
    color: lightgrey;
    margin-bottom: 5px!important;
    padding-left: 0;
}
        
#progressbar .active
{
    color: var(--clr-primary-bg);
}
  
#progressbar a.active li
{
    background-color: rgb(113 0 255 / 20%);  
    color: #084769;
    border-radius:5px;  
}

#progressbar a:hover li
{
    background-color:rgba(255,193,7,0.2)!important;
    border-radius:5px;
    transition: 0.3s all;    
}

#progressbar li
{
    list-style-type: none;
    font-size: 14px;
    width: 20%;
    float: left;
    position: relative;
    font-weight: 400;
}
        
#progressbar #account:before
{
    font-family: FontAwesome;
    content: "\f007";
}
        
#progressbar #personal:before
{
    font-family: FontAwesome;
    content: "\f02d";
}
        
#progressbar #payment:before
{
    font-family: FontAwesome;
    content: "\f00b";
}
        
#progressbar #sign:before
{
    font-family: FontAwesome;
    content: "\f044";
}
        
        
#progressbar #confirm:before
{
    font-family: FontAwesome;
    content: "\f0d6";
}
        
#progressbar li:before
{
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: #d0d0d0;
    border-radius: 50%;
    margin: 0 auto;
    padding: 0px;
}
        
#progressbar li:after
{
    content: '';
    width: 100%;
    height: 1px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 20px;
    z-index: -1;
}

#progressbar li.active:before, #progressbar li.active:after
{
    background-color: var(--clr-primary-bg)!important;
}

.sticky
{
    position: fixed;
    top: 0;
    left:100px;
    width: calc(100% - 100px);
    z-index:9999;
    padding:5px 15px;
    background: rgba(255,255,255,1.0);
    box-shadow: rgba(0,0,0,0.3) 0 3px 6px;
    border-bottom: solid 4px var(--clr-progressbar-header-front);
}
.sticky + .page-content 
{
    padding-top: 136px;
    z-index:0;
}

.progress
{
    height: 18px;
}
        
.progress-bar
{
    width: 0 !important;
    background-color: var(--clr-primary-bg);
}

@media only screen and (max-width: 600px)
{
    #heading
    {
        font-size: 20px;
        padding-top: 10px;
        text-align: center;
    }
    ul#progressbar li
    {
        font-size: 10px;
    }
}
     
.fit-image
{
    width: 100%;
    object-fit: cover;
}
.errormsg
{
    font-size: 11px;
    color: red;
    float: right;
}
.chckbox
{
    display: inline;
    font-size: 12px;
}
.form-check-inline label input
{
    width: auto !important;
}
.adbtn
{
    background-color: #1c9c04;
    border-radius: 0;
    color: #fff !important;
    padding: 5px 8px;
    font-weight: bold;
    float: right;
    font-size: 13px;
    margin-bottom: 10px;
}
#chkFatherTaxPay, #chkMotherTaxPayee, #chkIsLateral
{
    margin-right: 8px;
}
        
.checkbox_option label
{
    margin-right: 1em;
    position: relative;
}
        
.input label
{
    margin-left: 5px;
    margin-right: 5px;
    color: #333;
}


/*    TAB START     */
.Tab .ajax__tab_header
{
    margin: 15px 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: solid 4px var(--clr-primary-600) !important;
}
.ajax__tab_default .ajax__tab_tab
{
    overflow: hidden;
    text-align: center;
    display: inline-block;
    border: none;
}

/*Tab Hover*/
.Tab .ajax__tab_hover .ajax__tab_tab,.Tab .ajax__tab_hoverer:hover .ajax__tab_tab
{
    border-color: #007bff;
    background: #d2f5fe !important;
    color:  #007bff;
}

.ajax__tab_hover .ajax__tab_inner
{
    color: #FFF4BC;
    padding: 0px !important;
}

.Tab .ajax__tab_hover .ajax__tab_outer, .Tab .ajax__tab_hoverer:hover .ajax__tab_outer
{
  
    color: #084769;
    padding-right: 0px;
}

/*Tab Inactive*/
.Tab .ajax__tab_outer
{
    margin-right: 4px !important;
    display: inline-block;
}

.Tab .ajax__tab_tab, .Tab .ajax__tab_active .ajax__tab_tab
{
    color: #007bff;
    line-height: 26px;
    font-size: var(--fs-normal-400);
    font-weight: bold;
    padding: 3px 12px;
    border: solid 1px var(--clr-primary-600);
    border-bottom: 0;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.Tab .ajax__tab_inner, .Tab .ajax__tab_active .ajax__tab_inner, .Tab .ajax__tab_active .ajax__tab_outer, .Tab .ajax__tab_inner
{
    padding: 0 !important;
    
}

.Tab .ajax__tab_outer
{
    color: #f5ba1a;
    padding-right: 0px;
    margin-right: 0px;
  
}

.ajax__tab_active, .ajax__tab_outer
{
    background: none;    
}

.Tab .ajax__tab_active .ajax__tab_tab
{
    color: #084769;
    background: #f5ba1a !important;
}

/*tab-body*/
.Tab .ajax__tab_body
{
    border: none;
    overflow: visible;
    padding: 0 !important;
    margin: 0 !important;
}


.Tab.Vertical .ajax__tab_header_verticalleft
{
    margin: 0px;
    padding-right: 0;
    margin-right: 0;
    border-right: solid 4px var(--clr-primary-600) !important;
}
/*Tab Inactive*/
.Tab.Vertical .ajax__tab_outer
{
    margin: 0px !important;
    margin-bottom: 4px !important;
    display: inline-block;
}
.Tab.Vertical .ajax__tab_tab, .Tab.Vertical .ajax__tab_active .ajax__tab_tab
{
    border: solid 1px #EEE;
    border-right: 0;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
/*    TAB END     */

