﻿@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0
}

@font-face {
    font-family: 'RobotoThin';
    src: url('../fonts/RobotoThin.eot');
    src: url('../fonts/RobotoThin.eot') format('embedded-opentype'), url('../fonts/RobotoThin.woff2') format('woff2'), url('../fonts/RobotoThin.woff') format('woff'), url('../fonts/RobotoThin.ttf') format('truetype'), url('../fonts/RobotoThin.svg#RobotoLight') format('svg')
}

@font-face {
    font-family: 'RobotoLight';
    src: url('../fonts/RobotoLight.eot');
    src: url('../fonts/RobotoLight.eot') format('embedded-opentype'), url('../fonts/RobotoLight.woff2') format('woff2'), url('../fonts/RobotoLight.woff') format('woff'), url('../fonts/RobotoLight.ttf') format('truetype'), url('../fonts/RobotoLight.svg#RobotoLight') format('svg')
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../fonts/RobotoRegular.eot');
    src: url('../fonts/RobotoRegular.eot') format('embedded-opentype'), url('../fonts/RobotoRegular.woff2') format('woff2'), url('../fonts/RobotoRegular.woff') format('woff'), url('../fonts/RobotoRegular.ttf') format('truetype'), url('../fonts/RobotoRegular.svg#RobotoRegular') format('svg')
}

@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/RobotoMedium.eot');
    src: url('../fonts/RobotoMedium.eot') format('embedded-opentype'), url('../fonts/RobotoMedium.woff2') format('woff2'), url('../fonts/RobotoMedium.woff') format('woff'), url('../fonts/RobotoMedium.ttf') format('truetype'), url('../fonts/RobotoMedium.svg#RobotoMedium') format('svg')
}

body {
    font-family: 'RobotoRegular', Arial, Georgia;
    color: #511f31;
    font-size: 15px;
    background: #f0f4f5;
}
/*typography styles*/
.font-roboto-medium {
    font-family: 'RobotoMedium' !important
}

.font-roboto-light {
    font-family: 'RobotoLight' !important
}

.font-roboto-thin {
    font-family: 'RobotoThin' !important
}

.font-12 {
    font-size: 12px
}

.font-14 {
    font-size: 14px
}

.font-16 {
    font-size: 16px
}

.font-18 {
    font-size: 18px;
}

.font-22 {
    font-size: 22px;
}

.color-secondary {
    color: #717070
}

.color-link {
    color: #74246c
}

.color-white, .color-white:hover {
    color: #fff
}

.bg-dynamic-orange {
    background: #F0B323;
    border-color: #F0B323;
}

.bg-influential-orange {
    background: #DC6B2F;
    border-color: #DC6B2F;
}
/*bg-hover effects*/
.bg-dynamic-orange:hover {
    background: #F0B323;
    border-color: #F0B323;
}
/*typography styles*/
/*common styles*/
.bg-sprite {
    background: url(../images/icon-sprite.png) no-repeat;
    width: 32px;
    height: 32px;
    display: inline-block;
    background-position: -9px -9px;
    float: none;
    margin: auto;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
}

.chevron-icon {
    height: 14px;
    width: 14px
}

.chevron-dark {
    background-position: -100px -9px
}

.chevron-white {
    background-position: -192px -9px
}

.chevron-dark-down {
    background-position: -100px -9px
}

.chevron-dark-up {
    background-position: -100px -23px
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0
}

.no-padding-left {
    padding-left: 0
}

.no-padding-right {
    padding-right: 0
}

.remove-text-decoration:hover, .remove-text-decoration a:hover {
    text-decoration: none
}

.float-container {
    float: left;
    width: 100%
}

.margin-top {
    margin-top: 15px
}

.margin-bottom {
    margin-bottom: 15px;
}
/*common styles*/

/*header styles*/
header {
    padding: 8px 40px;
    float: left;
    width: 100%;
    background: #fff;
    border-bottom: 3px solid #74246c;
}

.header-links li {
    float: left;
    padding: 0 20px
}

    .header-links li a {
        display: block;
        text-align: center;
        position: relative
    }

.header-links a:after {
    position: absolute;
    top: auto;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #9d2062;
    content: '';
    -webkit-transition: all 0.2s;
    -webkit-backface-visibility: hidden;
    transition: all 0.2s;
    backface-visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.header-links li a:hover:after {
    background-color: #9d2062;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
/*header styles*/

/*center layout styles starts here*/
.center-layout {
    float: left;
    width: 100%;
    padding: 0 40px;
    min-height: 40px
}
/*center layout styles ends here*/

/*table styles starts here*/
.table th {
    font-weight: normal;
    font-size: 14px;
    color: #717070
}

.table th, .table td {
    vertical-align: middle !important
}

.table-instructions td:nth-child(2) {
    word-break: break-word !important
}
/*table styles starts here*/

/*footer styles starts herer*/
footer {
    background: #fff;
    float: left;
    width: 100%
}

.fat-footer {
    padding-top: 5px;
    padding-bottom: 5px
}

.footer {
    background: #74246c;
    padding: 0px 15px;
}

.footer-links {
    padding: 15px 0 0 30px
}
/*footer styles starts herer*/
/*sticky footer styles starts here*/
html {
    position: relative;
    min-height: 100%
}

body {
    margin-bottom: 200px
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%
}
/*sticky footer styles ends here*/
/*side bar styles starts here*/
/* Toggle Styles */
#wrapper {
    padding: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease
}
/*side bar styles ends here*/
.footable-detail-row {
    background-color: #f0f4f5
}

.footable-details > tbody > tr > th:nth-child(1) {
    font-size: 14px;
    color: #717070
}

.page-header {
    margin: 0 0 15px
}
/*form styles starts here*/

.field-line-textbox {
    background-color: transparent !important;
    border-width: 0 0 1px 0 !important;
    border-style: solid !important;
    border-bottom-color: #b2b2b2 !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
    transition: all .3s;
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 15px !important
}

    .field-line-textbox:focus {
        border-bottom: 1px solid #72246C !important;
        box-shadow: 0 1px 0 0 #72246C !important
    }

.form-group label {
    font-size: 14px;
    color: #515151;
}
/*Custom Radio & Checkbox styles*/
.checkbox.checkbox-inline, .radio.radio-inline {
    margin-top: 0
}

.radio {
    padding-left: 20px
}

    .radio input[type=radio] {
        cursor: pointer;
        opacity: 0;
        z-index: 1;
        outline: 0 !important
    }

    .radio label {
        display: inline-block;
        padding-left: 5px;
        position: relative
    }

.radio-info input[type=radio]:checked + label::before {
    border-color: #72246C
}

.radio label::before {
    -o-transition: border .5s ease-in-out;
    -webkit-transition: border .5s ease-in-out;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #ccc;
    content: "";
    height: 17px;
    left: 0;
    transition: border .5s ease-in-out;
    width: 17px;
    outline: 0 !important;
    top: 2px
}

.radio label::after, .radio label::before {
    display: inline-block;
    margin-left: -20px;
    position: absolute
}

.radio-info input[type=radio] + label::after, .radio-info input[type=radio]:checked + label::after {
    background-color: #72246C;
}

.radio input[type=radio]:checked + label::after {
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

.radio label::after {
    -moz-transition: -moz-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -o-transition: -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -webkit-transform: scale(0, 0);
    -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    background-color: #555;
    border-radius: 50%;
    content: " ";
    height: 11px;
    left: 3px;
    top: 5px;
    transform: scale(0, 0);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    width: 11px
}

.checkbox {
    padding-left: 20px
}

    .checkbox input[type="checkbox"] {
        cursor: pointer;
        opacity: 0;
        z-index: 1;
        outline: none !important
    }

    .checkbox label, .radio label {
        min-height: 20px;
        margin-bottom: 0;
        font-weight: 400;
        cursor: pointer;
        color: #511f31
    }

    .checkbox label {
        display: inline-block;
        padding-left: 5px;
        position: relative
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #72246C;
    border-color: #72246C
}

.checkbox label::before {
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 2px;
    border: 1px solid #cccccc;
    content: "";
    display: inline-block;
    height: 17px;
    left: 0;
    margin-left: -20px;
    position: absolute;
    transition: 0.3s ease-in-out;
    width: 17px;
    outline: none !important;
    margin-top: 1px
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #ffffff
}

.checkbox input[type="checkbox"]:checked + label::after {
    content: "\e013";
    font-family: 'Glyphicons Halflings'
}

.checkbox label::after {
    color: #555555;
    display: inline-block;
    font-size: 11px;
    height: 16px;
    left: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    position: absolute;
    top: 0;
    width: 16px;
    margin-top: 1px
}

.btn-large {
    padding: 14px;
    font-size: 16px;
}

.btn-positive {
    position: relative;
    padding-right: 32px !important;
}

    .btn-positive:after {
        content: "";
        background: url(images/icon-sprite.png) no-repeat;
        height: 16px;
        width: 16px;
        position: absolute;
        right: 9px;
        background-position: -132px -17px;
        transition: all .2s ease;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -ms-transition: all .2s ease
    }

    .btn-positive:hover:after {
        transform: translateX(6px);
        -webkit-transform: translateX(6px);
        -moz-transform: translateX(6px);
        -ms-transform: translateX(6px)
    }

.btn + .btn {
    margin-left: 8px
}

.datepicker-icon {
    background-position: -392px -3px;
    position: absolute;
    right: -3px;
    top: -4px;
    cursor: pointer
}

.modal-content {
    border-radius: 2px
}

.field-error {
    display: block;
    font-size: 12px;
    padding-top: 5px;
    color: red;
    display: none;
    position: absolute;
}

.required:after {
    content: '*';
    color: #a94442;
    padding-left: 2px
}
/*form styles ends here*/
.firm-info-xs, .search-info-xs {
    display: none
}
/*Filter styles starts here*/
.page-action-btns a {
    padding-left: 38px;
    position: relative
}

    .page-action-btns a:before {
        content: "";
        background-image: url("../images/icon-sprite.png");
        background-repeat: no-repeat;
        height: 20px;
        width: 24px;
        position: absolute;
        left: 9px
    }

.bg-sprite.info-icon {
    background-position: -420px -116px;
    height: 20px;
    margin: 0 3px;
    width: 20px
}
/*Filter styles ends here*/
/*Grid Styles starts here*/
.pagination {
    float: right
}

.footable-paging .label.label-default {
    float: left;
    margin: 10px 0
}
/*Grid Styles ends here*/

.header-links {
    display: inline-block;
}
/* Firm Maintenance styles starts here*/
.helpimages {
    background: #fff;
    bottom: 100%;
    border: 1px solid #eceaea;
    right: 0;
    padding: 10px;
    position: absolute;
    z-index: 999;
}

    .helpimages.helpImagesInfo, .helpimages.socialSecurityNumberInfo {
        background-color: #fff8dc;
        width: 50%;
        border: 1px solid darkgray;
        margin-bottom: 10px;
    }
/* Firm Maintenance styles ends here*/
.table-container {
    display: table;
    width: 100%
}

.table-cell {
    display: table-cell
}

.btn-group.bootstrap-select.input-group-btn:first-child {
    border-right: 1px solid #ccc;
}
/* Custom search styles ends here*/
input::-ms-clear {
    display: none
}

.date, .demotime, .dateOne {
    position: relative
}

    .date span, .demotime span, .dateOne span {
        background: transparent;
        border: 0 none;
        border-radius: 0;
        padding: 0;
        position: absolute;
        right: 2px;
        top: 0
    }

span.input-group.demotime {
    width: 100% !important;
}

header .header-links {
    display: none
}
/* Dropdown Additional Action button*/
div.page-header > div.dropdown {
    margin-top: 3px;
}

.leftPadding {
    padding-left: 15px;
}

.center-layout.login {
    padding: 0;
}

.loginDetails {
    width: 40%;
    padding: 6.5px 30px;
}

.loginFooter {
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.caption {
    position: absolute;
    top: 35%;
    width: 100%;
    padding-left: 50px;
    color: #000;
}

    .caption h2 {
        font-size: 78px;
    }

        .caption h2.font-48 {
            font-size: 48px;
        }
/* CSR dashboard */


.bootstrap-select > select {
    display: none !important;
}

@media (min-width: 320px) and (max-width: 480px) {
    .btn {
        width: 100%
    }

        .btn + .btn {
            margin: 15px 0 0 0
        }

    tr.footable-paging > td {
        padding: 0 !important
    }

    .footable-paging .label.label-default {
        margin: 18px 0 !important
    }

    .footable-details tbody th {
        width: 50%
    }

    table.footable-details > tbody > tr > td:nth-child(2) {
        word-break: break-word;
    }

    .btn.status {
        float: left;
        width: 100% !important
    }

    .bootstrap-select.btn-group .dropdown-toggle .caret {
        right: 3px
    }

    .table-cell > p:first-child {
        margin: 0
    }

    .loginDetails {
        padding: 20px !important
    }
}

@media (min-width: 320px) and (max-width: 990px) {
    header {
        padding: 8px 15px;
        position: fixed;
        z-index: 90;
        box-shadow: 2px 2px 2px #dedede
    }

    .header-links-master {
        display: none
    }

    .center-layout {
        padding: 15px;
        margin-top: 68px
    }

    .header-links {
        width: 100%
    }

        .header-links li {
            width: 33.33%;
            padding: 0
        }

            .header-links li a:hover, .header-links li a:focus {
                color: #fff
            }

                .header-links li a:hover:after {
                    background: #fff
                }

    .footer-links {
        padding: 0 15px
    }

    .services-logo {
        height: 90px
    }

    .header-links li a {
        border-right: 1px solid #f0f0f0;
        padding: 4px 0
    }

    .header-links li:last-child a {
        border: none
    }

    body {
        margin-bottom: 230px
    }

    .firm-info-xs, .search-info-xs {
        display: block
    }

    .btn + .btn {
        margin-left: 1px
    }

    .page-action-btns a {
        padding: 6px 12px;
        ;
        font-size: 13px
    }

        .page-action-btns a:before {
            left: 4px;
        }

    .pagination {
        margin-top: 0
    }

    .footable .label.label-default {
        margin-top: 10px !important;
    }

    .modal-footer .btn + .btn {
        margin-top: 0 !important
    }

    .modal-footer .btn {
        width: auto !important;
    }

    table.footable > tbody > tr > td:first-child, table.footable > thead > tr > th:first-child, .footable-details > tbody > tr > td, .footable-details > tbody > tr > th {
        text-align: left !important
    }

    .login-details-container h3 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    /*.forgotPwd {
 float: none !important;
}*/
    .login-icon + .login-icon {
        margin: 0 0 15px 0;
    }

    fieldset {
        border-top: none;
    }

    .login-with-social-media {
        margin-bottom: 0;
    }

    .aon-login-icon {
        padding-left: 15px !important;
    }

    .login-banner {
        display: none;
    }

    .loginDetails {
        width: 100%;
        padding: 6.5px 30px;
        margin-top: 55px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .btn {
        width: 100%
    }

        .btn + .btn {
            margin: 15px 0 0 0
        }
}

@media (min-width: 320px) and (max-width: 767px) {
    .forgot-details-container {
        width: 100% !important;
        margin: 0 auto !important;
    }

    .table-container .table-cell {
        width: 100%;
        display: block
    }

    .login-details-container {
        padding: 15px 0;
        background-color: #fff;
    }
    /*footer.loginFooter {
 position: relative;
}*/
    .loginDetails {
        width: 100% !important;
        padding: 20px;
        margin-top: 0px !important;
    }

    .table-cells {
        min-height: 60px;
    }

    .forgotsecuritycode {
        position: absolute;
        left: 15px !important;
        top: -20px !important;
    }

    .login-details-container h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .login-banner {
        display: none;
    }

    .login-icon + .login-icon {
        margin: 0 0 15px 0;
    }

    fieldset {
        border-top: none;
    }

    .login-with-social-media {
        margin-bottom: 0;
    }

    .aon-login-icon.login-icon {
        padding-left: 15px !important;
    }

    .loginLinks {
        text-align: center !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .table-cell {
        padding: 10px
    }

    .caption {
        padding: 15px;
    }

        .caption h2 {
            font-size: 40px !important;
        }

    .forgotsecuritycode {
        position: absolute;
        left: 15px !important;
        top: -20px !important;
    }

    .login-icon {
        padding: 6px 12px 6px 38px !important;
    }
}

@media (min-width: 768px) {
    .firm-info-xs, .search-info-xs {
        margin-bottom: 10px;
    }
}

@media (min-width: 991px) and (max-width: 1100px) {
    header {
        padding: 8px 15px
    }

    .center-layout {
        padding: 0 15px
    }

    .dropdown-menu li a {
        font-size: 13px;
        padding: 10px
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .table-cells {
        min-height: 57px !important;
    }

    .address h4 {
        font-size: 16px !important;
    }
}

@media (min-width: 992px) and (max-width: 1366px) {
    .forgot-details-container .form-group {
        min-height: 70px !important;
    }
}

@media (min-width: 1052px) and (max-width: 1100px) {
    .table-cells {
        min-height: 74px !important;
    }
}

@media (min-width: 1200px) {
    .pull-right.header-links-master {
        width: 31% !important;
    }
}

@media (min-width: 1360px) and (max-width: 1400px) {
    .loginDetails .margin-bottom {
        margin-bottom: 5px;
    }

    .loginDetails .form-group {
        min-height: 70px;
    }
}

.forgot-details-container {
    background-color: #fff;
    padding: 9px;
    margin: 60px auto;
    width: 60%;
    /*min-height: 493px;*/
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid #fcfcfc;
    border-radius: 4px;
}

    .forgot-details-container .form-group {
        min-height: 45px;
    }

span.captcha {
    font-size: 16px;
    padding: 5px 10px;
    background-color: #015DA6;
    border: 1px solid #fff;
    color: #fff;
}

.captchaContainer {
    margin-bottom: 40px;
}

.privacy {
    border: 1px solid #bababa;
    height: 300px;
    overflow: auto;
    padding: 2%;
}

    .privacy p {
        font-size: 13px;
    }

.refreshCaptcha {
    margin-left: 5px;
}

.helpimages.helpImagesInfo {
    background-color: #fff8dc;
    width: 100%;
    border: 1px solid darkgray;
    margin-bottom: 10px;
}

.loginHeading {
    font-weight: 600;
    padding-left: 13px;
}

.dropdown-header span.text {
    font-size: 16px;
    color: #000;
}

.securityCode {
    position: relative;
}

.forgotsecuritycode {
    position: absolute;
    left: -5px;
    top: 38px;
}

.forgotCodeMessage p {
    color: red;
}

.disclaimer.margin-top {
    margin-top: 10px !important;
}

body {
    counter-reset: section sect;
}

.red {
    color: #BA4166;
}

.margin-right {
    margin-right: 15px !important;
}

.field-line-textbox {
    position: relative;
}

    .field-line-textbox:focus + label {
        top: -10px;
        line-height: .938em;
    }

.help-desk {
    padding: 6px 12px;
    margin: 10px 15px 0 0;
    background: #e46d37;
}

.login-banner {
    float: left;
    height: 667px;
    position: relative;
    width: 60%;
}

.banner {
    height: 750px;
}

.banner {
    float: left;
    position: absolute;
    width: 100%;
    left: 0;
}

body {
    margin-bottom: 0;
}

.login-with:after {
    content: "";
    margin-right: 5px;
}

.google-login-icon:before {
    background-position: -465px -261px;
    height: 24px;
}

.windows-login-icon:before {
    background-position: -505px -261px;
    height: 24px;
}

.aon-login-icon:before {
    background-position: -414px -262px;
    height: 24px;
    width: 40px !important;
}

.aon-login-icon {
    padding-left: 55px !important;
}

.google-login-icon {
    background-color: #dc4e41;
    border-color: #dc4e41;
}

    .google-login-icon:hover, .google-login-icon:focus, .google-login-icon:active, .google-login-icon:active:focus, .google-login-icon:active:hover {
        background-color: #e8594c !important;
        border-color: #e8594c !important;
    }

.windows-login-icon {
    background-color: #00b4f2;
    border-color: #00b4f2;
}

    .windows-login-icon:hover, .windows-login-icon:focus, .windows-login-icon:active, .windows-login-icon:active:focus, .windows-login-icon:active:hover {
        background-color: #35c5f7 !important;
        border-color: #35c5f7 !important;
    }

.aon-login-icon {
    background-color: #395795;
    border-color: #395795;
}

    .aon-login-icon:hover, .aon-login-icon:focus, .aon-login-icon:active, .aon-login-icon:active:focus, .aon-login-icon:active:hover {
        background-color: #4667ac !important;
        border-color: #4667ac !important;
    }

.quick-pay-btn:after {
    background-position: -132px -13px;
    height: 22px;
}

.margin-top-40 {
    margin-top: 40px;
}

.login-with-social-media {
    margin-top: 20px;
}

.paragraph-login-with {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ccc;
    line-height: 0.1em;
    margin: 10px 0 30px;
}

    .paragraph-login-with .login-with {
        background: #fff;
        font-size: 18px;
    }

a.quick-pay-btn:visited {
    color: #FFF;
}

.info-icon {
    cursor: pointer;
}

.modal-header.custom-header {
    padding: 15px 0 5px 15px !important;
    border-bottom: 1px solid #e5e5e5;
}
/*Start User Registration wizard*/
User Registration
.nav-tabs.wizard {
    background-color: transparent;
    padding: 0;
    width: 100%;
    margin: 15px 0px 0px;
    display: block;
    clear: both;
    border-bottom: none;
}

.nav-tabs.wizard li {
    width: 100%;
    float: none;
}

    .nav-tabs.wizard li > * {
        position: relative;
        padding: 6px;
        color: #fff;
        /*background-color: #b74264;
  border-color: #b74264;*/
        background-color: #b74264;
        border-color: #b74264;
    }

    .nav-tabs.wizard li.completed > * {
        color: #fff !important;
        /*background-color: #5d5d5d !important;
  border-color: #5d5d5d !important;*/
        background-color: #8f3777 !important;
        border-color: #8f3777 !important;
        border-bottom: none !important;
    }

    .nav-tabs.wizard li.active > *, .nav-tabs.wizard a:hover, .nav-tabs.wizard a:focus {
        color: #fff !important;
        background-color: #74246c !important;
        border-color: #74246c !important;
        border-bottom: none !important;
    }

    .nav-tabs.wizard li::after:last-child {
        border: none;
    }

.nav-tabs.wizard > li > a {
    opacity: 1;
    border-radius: 0;
    margin-right: 4px;
    pointer-events: none;
}
/*
.nav-tabs.wizard a:hover {
  color: #fff;
  background-color: #a2a2a2;
  border-color: #a2a2a2
}*/

span.nmbr {
    display: inline-block;
    padding: 5px 0 0 0;
    background: #ffffff;
    width: 25px;
    line-height: 100%;
    height: 25px;
    margin: auto;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 2px;
}

.nav-tabs.wizard li {
    position: relative;
    padding: 0;
    /* margin: 0px 4px 4px 0;*/
    width: 1%;
    display: table-cell;
    float: none;
    text-align: center;
}
    /* .nav-tabs.wizard li.active a {
    padding-top: 15px;
  }*/
    .nav-tabs.wizard li::after,
    .nav-tabs.wizard li > *::after {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        height: 0;
        width: 0;
        border: 30px solid transparent;
        border-right-width: 0;
        border-left-width: 20px
    }

    .nav-tabs.wizard li::after {
        z-index: 1;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(4px);
        -ms-transform: translateX(4px);
        -o-transform: translateX(4px);
        transform: translateX(0px);
        border-left-color: #fff;
        margin: 0
    }

    .nav-tabs.wizard li > *::after {
        z-index: 2;
        border-left-color: inherit
    }

.nav-tabs.wizard > li:nth-of-type(1) > a {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.nav-tabs.wizard li:last-child a {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    margin-right: 0;
}

.nav-tabs.wizard li:last-child {
    margin-right: 0;
}

    .nav-tabs.wizard li:last-child a:after,
    .nav-tabs.wizard li:last-child:after {
        content: "";
        border: none;
    }

span.nmbr {
    display: block;
}

.field-line-input-group .input-group-addon {
    padding: 6px 4px;
    font-size: 16px;
    color: #74246c;
    background-color: transparent;
    border-radius: 0;
    border-width: 0 0 1px 0 !important;
    border-style: solid !important;
    border-bottom-color: #b2b2b2 !important;
    cursor: pointer;
}

.field-line-textbox:focus + .input-group-addon {
    border-bottom: 1px solid #72246C !important;
    box-shadow: 0 1px 0 0 #72246C !important;
}

.glyphicon-eye-close:after {
    content: "Show";
    font-family: 'RobotoMedium';
    font-size: 14px;
    position: relative;
    top: -3px;
    padding-left: 6px;
}

.glyphicon-eye-open:after {
    content: "Hide";
    font-family: 'RobotoMedium';
    font-size: 14px;
    position: relative;
    top: -3px;
    padding-left: 6px;
}
.title-section {
    background: linear-gradient(90deg, #672d89 40%, #b74264 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#672d89', endColorstr='#b74264');
    float: left;
    width: 100%;
    padding: 0 40px;
}
.widget {
    background: #fff;
    border: 1px solid #eceaea;
    border-radius: 2px;
    margin-bottom: 15px;
    padding: 15px;
    float: left;
    width: 100%;
}
/*End User Registration wizard*/
/*Loading spinner css*/
#divLoading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-color: rgba(0, 0, 0, .3);
    z-index: 2040;
    transition: all .3s;
    -webkit-overflow-scrolling: touch;
}

    #divLoading .spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        overflow: hidden;
        opacity: 1;
        width: 50px;
        height: 40px;
        text-align: center;
        font-size: 10px;
        z-index: 2050;
        transition: all .4s .2s;
    }

        #divLoading .spinner > div {
            background: linear-gradient(#672d89 20%, #b74264 60%);
            filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#672d89', endColorstr='#b74264');
            height: 100%;
            width: 6px;
            opacity: 1;
            overflow: hidden;
            display: inline-block;
            -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
            animation: sk-stretchdelay 1.2s infinite ease-in-out;
        }

        #divLoading .spinner .rect2 {
            -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
        }

        #divLoading .spinner .rect3 {
            -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
        }

        #divLoading .spinner .rect4 {
            -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
        }

        #divLoading .spinner .rect5 {
            -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
        }
/*END Loading spinner css*/
/*Password strength*/

#content {
    margin-left: 57px;
    margin-top: 40px;
}

#register label {
    margin-right: 5px;
}

#register input {
    padding: 5px 14px;
    border: 1px solid #d5d9da;
    box-shadow: 0 0 9px #0E34F5 inset;
    font-size: 1em;
}

#register .short {
    font-weight: bold;
    color: #FF0000;
    font-size: larger;
}

#register .weak {
    font-weight: bold;
    color: orange;
    font-size: larger;
}

#register .good {
    font-weight: bold;
    color: #2D98F3;
    font-size: larger;
}

#register .strong {
    font-weight: bold;
    color: limegreen;
    font-size: larger;
}
@media (min-width: 992px) {
    .RegistrationPopScroll {
        overflow-y: scroll;
        height: 450px;
    }
}