﻿.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
    /*added*/
    background-color: #ffffff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}
.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
    position: relative;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
}

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

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

/*
    Wizard
*/

.wizard > .steps
{
    width: 100%;
    position: relative;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 100%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
}

.wizard > .steps > ul > li
{
    list-style-type: none;
    width: 33.33%;
    float: left;
    font-size: 12px;
    position: inherit;
    text-align: center;
    color: #7d7d7d;
    /*z-index: 5;*/
}

.wizard > .steps > ul > li.step1 {
    z-index: 6;
}
.wizard > .steps > ul > li.step2 {
    z-index: 5;
}
.wizard > .steps > ul > li.step3 {
    z-index: 4;
}

.wizard > .steps > ul > li:before
{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}

.wizard > .steps > ul > li:after
{
    width: 95%;
    height: 4px;
    content: '';
    position: absolute;
    background-color: #ddd;
    top: 30px;
    left: -47%;
    z-index: -1;
}


.wizard > .steps > ul > li:first-child:after {
    content: none;
}

.wizard > .actions > ul > li
{
    float: left;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

/* circle for image in tab*/
.bigCircle{
    width: 40px;
    height: 40px;
    border-radius: 35px;
    margin: -7px 0 0 -7px;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    padding: 10px;
    text-align: center;
    margin: 10px auto 10px auto;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #ffffff;
    color: #aaa;
    cursor: default;

    /*added*/
    width: 50px;
    height: 50px;
    border: 2px solid #aaa;
    border-radius: 30px;
}

/* css for the  image tabs*/

.wizard > .steps .disabled a .bigCircle{
    background: #aaa;
}

.wizard > .steps .disabled a .icon-register-account-details,
.wizard > .steps .disabled a .icon-register-personal-details,
.wizard > .steps .disabled a .icon-register-residence-details
{
    color: #ffffff;
}
/* end - css for the  image tabs*/

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #ffffff;
    color: #000000;
    cursor: default;

    /*added*/
    width: 50px;
    height: 50px;
    border: 2px solid #ffc107;
    border-radius: 30px;
}


.wizard > .steps .current a .bigCircle{
    background: #ffffff;
}


.wizard > .steps .current a .icon-register-account-details,
.wizard > .steps .current a .icon-register-personal-details,
.wizard > .steps .current a .icon-register-residence-details
{
    color: #ffc107;

}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #ffffff;
    color: #aaa;

    /*added*/
    width: 50px;
    height: 50px;
    border: 2px solid #ffc107;
    border-radius: 30px;
}

.wizard > .steps .done a .bigCircle {
    background: #ffc107;
}

.wizard > .steps .done a .icon-register-account-details,
.wizard > .steps .done a .icon-register-personal-details,
.wizard > .steps .done a .icon-register-residence-details
{
    color: #ffffff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizard > .content
{
    /*background: #eee;*/
    display: block;
    margin: 0.5em;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    padding: 6% 0;
}

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

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

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

.wizard > .content > .body input
{
    /*added*/
    display: inline-block;
    border: 1px solid #000000;
    border-radius: 2px;
}

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

.wizard > .content > .body input.error
{
    background: #fffffff;
    border: 1px solid #ebaba3;
    border-radius: 2px;
    color: #8a1f11;
    position: relative;
}

.wizard > .content > .body label
{
    /*added*/
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-top: 2%;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    /*display: inline-block;*/
  /*added*/

}

.wizard > .actions
{
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul
{
    display: inline-block;
    text-align: right;
}

.wizard > .actions > ul > li
{
    margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active,
.submitRegister
{
    background: #ffc107;
    color: #000000;
    font-weight: 700;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    /*added*/
    width: 150px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: none !important;
    outline:none !important;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;

    /*added*/
    width: 150px;
    height: 40px;
    text-align: center;
    font-size: 16px;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

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

.tabcontrol > .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;
}

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

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

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

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

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

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

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

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

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}

/*added*/
.pDesign{
    clear:both;
    float: left;
}

.genderBtn{
    width: 100%
}

.genderBtn .active
{
    background-color: #536d78;
    width: 50% !important;
    box-shadow: none !important;
    margin-top: 7px;
    padding: 9px;
    opacity: 1;
    font-weight: 600 !important;
}

.genderBtn .disabled
{
    background-color: #ffffff;
    width: 50% !important;
    box-shadow: none !important;
    margin-top: 7px;
    padding: 9px;
    opacity: 1;
    font-weight: 600 !important;
}

#user_country{
    width: 100%;
    float:left;
    border: 1px solid #000000;
}

#user_language{
    width: 100%;
    border: 1px solid #000000;
}

.faCheckStatus{
    width:auto;
    margin: 10px -100px auto 5px;
}

.faCheckStatus .text-danger{
    display: none;
}

.accountH3{
    display: inline-block;
    margin-left: -200%;
}

.personalH3{
    display: inline-block;
    margin-left: -307%;
}

.residenceH3{
    display: inline-block;
    margin-left: -317%;
}

.styleH3{
    font-size:16px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
    width:200px;
    margin: 10px auto 10px -85px;
}
@media only screen and (max-width: 530px){
    .styleH3{
        font-size: 15px!important;
    }
}

/* register icons*/
@font-face {
    font-family: 'register-steps-icons';
    src:  url('../fonts/register-steps-icons.eot?kmiuxq');
    src:  url('../fonts/register-steps-icons.eot?kmiuxq#iefix') format('embedded-opentype'),
    url('../fonts/register-steps-icons.ttf?kmiuxq') format('truetype'),
    url('../fonts/register-steps-icons.woff?kmiuxq') format('woff'),
    url('../fonts/register-steps-icons.svg?kmiuxq#register-steps-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'register-steps-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 35px;
    font-size: 25px;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-register-account-details:before{
    content: "\e900";
    display: inline-block;
}
.icon-register-personal-details:before{
    content: "\e901";
    display: inline-block;
}
.icon-register-residence-details:before{
    content: "\e902";
    display: inline-block;
}

.fieldContainer {
    width: 45% !important;
    height:20% !important;
    text-align: right !important;
    position: relative;
    margin-top: 0 !important;
    margin-left: 55% !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    /*padding: 10px !important;*/
    /*float:right !important;*/

    /*background: rgb(251, 227, 228) !important;*/
    /*border-radius: 0 !important;*/
    /*box-shadow: 1px 1px 1px #aaaaaa;*/
}

/*.fieldContainer:before{*/
    /*content: '';*/
    /*width: 0;*/
    /*height: 0;*/
    /*border-left: 10px solid transparent;*/
    /*border-right: 10px solid transparent;*/
    /*border-top: 10px solid  rgb(251, 227, 228);*/
    /*position: absolute;*/
    /*bottom: -10px;*/
/*}*/


.dateInputDiv{
    width: 100% !important;
    position: relative;
    height: 40px;
}
.dateInputDiv .fa-calendar{
    position: absolute;
    top: 12px;
    right: 7px;
    font-size: 15px;
    z-index: 4;
}

.styleRegisterForm{
    width: 40%;
    margin:0px auto;
}

@media (min-width: 768px) and (max-width: 992px) {
    .styleRegisterForm{
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .styleRegisterForm{
        width: 78%;
    }
}


/*@media (max-width: 600px){*/
    /*.wizard > .steps > ul > li*/
    /*{*/
        /*width: 50%;*/
    /*}*/

    /*.wizard > .steps a,*/
    /*.wizard > .steps a:hover,*/
    /*.wizard > .steps a:active*/
    /*{*/
        /*margin-top: 0.5em;*/
    /*}*/

    /*.wizard.vertical > .steps,*/
    /*.wizard.vertical > .actions*/
    /*{*/
        /*display: block;*/
        /*float: none;*/
        /*width: 100%;*/
    /*}*/

    /*.wizard.vertical > .content*/
    /*{*/
        /*display: block;*/
        /*float: none;*/
        /*margin: 0 0.5em 0.5em;*/
        /*width: auto;*/
    /*}*/
/*}*/

@media (max-width: 515px) {
    .wizard > .steps > ul > li
    {
        width: 100%;
        margin-bottom: 3%;
    }

    .wizard > .steps > ul > li:after {
       visibility: hidden;
    }
}

/* responsive for line tablist */

@media (max-width: 1200px){
    .wizard > .steps > ul > li:after {
        width: 95%;
        left: -45%;
    }
}

@media (max-width: 991px){
    .wizard > .steps > ul > li:after {
        width: 90%;
        left: -45%;
    }
}

@media (max-width: 767px){
    .wizard > .steps > ul > li:after {
        width: 85%;
        left: -40%;
    }
}

@media (max-width: 377px){
    .wizard > .actions > ul > li
    {
        float: none;
        margin-bottom: 2%;
    }
}

.customBirthdayError{
    font-family: Roboto, serif!important;
    font-size: 13px!important;
    color: #8a1f11!important;
    margin-top: 10px!important;
    margin-bottom: -4px!important;
}

/* datepicker  style - start*/
.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    border: 0;
    font-weight: 700;
    width: 100%;
    padding: 4px 0;
    background-color: #f5f5f5;
    color: gray
}

.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px
}

.ui-datepicker .ui-datepicker-next {
    right: 2px
}

.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    /*left: 50%;*/
    /*margin-left: -3px;*/
    /*top: 50%;*/
    /*margin-top: -8px*/
    margin-left: -10px;
}
.ui-datepicker .ui-datepicker-prev span{
    display: block;
    position: absolute;
    /*left: 50%;*/
    /*margin-left: -3px;*/
    /*top: 50%;*/
    /*margin-top: -8px*/
    margin-left: 4px;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month-year {
    width: 100%
}

.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year {
    width:35%;
    border: none;
    background-color: whitesmoke;
    color: #818181;
    font-weight: 900;
    margin-top: 0;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    border: 0
}

.ui-datepicker td {
    border: 0;
    padding: 1px
}

.ui-datepicker td a,.ui-datepicker td span {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em;
    width: auto;
    overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left
}

.ui-datepicker.ui-datepicker-multi {
    width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0
}

.ui-datepicker-rtl {
    direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group {
    float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px
}

.ui-datepicker-cover {
    display: none;
    display: block;
    position: absolute;
    z-index: -1;
    filter: mask();
    top: -4px;
    left: -4px;
    width: 200px;
    height: 200px
}

.ui-datepicker th {
    font-weight: 700;
    color: gray
}

.ui-datepicker-today a:hover {
    background-color: gray;
    color: #fff
}

.ui-datepicker-today a {
    background-color: #BFBFBF;
    cursor: pointer;
    padding: 0 4px;
    margin-bottom: 0
}

.ui-datepicker td a {
    margin-bottom: 0;
    border: 0
}

.ui-datepicker td:hover {
    color: #fff
}

.ui-datepicker td .ui-state-default {
    border: 0;
    background: 0 0;
    margin-bottom: 0;
    padding: 5px;
    color: gray;
    text-align: center;
    filter: none
}

.ui-datepicker td .ui-state-highlight {
    color: #fff;
    background-color: #A90329;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
    border-color: rgba(0,0,0,.1)rgba(0,0,0,.1)rgba(0,0,0,.25);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.ui-datepicker td .ui-state-active {
    color: #333;
    background-color: #ebebeb;
    margin-bottom: 0;
    font-size: normal;
    text-shadow: 0;
    border-color: rgba(0,0,0,.1)rgba(0,0,0,.1)rgba(0,0,0,.25);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.ui-datepicker td .ui-state-hover {
    color: #fff;
    background: #428bca;
    background-color: #428bca;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
    border-color: #357ebd;
    border-color: rgba(0,0,0,.1)rgba(0,0,0,.1)rgba(0,0,0,.25);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}
/* datepicker  style - end*/

