/* Layout structure css */

@font-face {
    font-family: 'Myriad Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('../fonts/MYRIADPRO-REGULAR.woff'), url('../fonts/MYRIADPRO-REGULAR.woff') format('woff');
}

body {
    font-family: 'Myriad Pro Regular' !important;
    font-size: 1rem;
    color: #37405d;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
}

/*---------- Global CSS ------------*/

*,
*:focus {
    outline: none;
}

ol, ul {
    list-style-type: none;
    padding: 0;
}
.RadButton_Default.rbSkinnedButton {
    background-image: none !important;
    height: auto !important;
    /*background-color: #0f2e56 !important;*/
}
/*------ reset default cursor for disabled elements -------*/

button[disabled],
html input[disabled] {
    cursor: default;
}

/* ----- variables defined here ----- */

:root {
    --navyBlue-button: #0f2e56;
    --navyBlue-button-hover: #0f4c75;
    --white-button: #ffffff;
    --white-button-hover: #0f4c75;
    --grey-button: #444444;
    --grey-button-hover: #808080;
}

/*------ heading style ------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #0f2e56;
    line-height: 1.4 !important;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.50rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.10rem;
}

.width100 {
    width: 100%;
}

/*----- common class for padding ------*/
.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.plr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ptop-10 {
    padding-top: 10px !important;
}

.pright-10 {
    padding-right: 10px !important;
}

.pbottom-10 {
    padding-bottom: 10px !important;
}

.pleft-10 {
    padding-left: 10px !important;
}

.ptop-15 {
    padding-top: 15px;
}

.pbottom-15 {
    padding-bottom: 15px;
}
/*----- common class for margin ------*/
.mlr-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mar-0 {
    margin: 0 !important;
}

.mtop-0 {
    margin-top: 0 !important;
}

.mright-0 {
    margin-right: 0 !important;
}

.mbottom-0 {
    margin-bottom: 0 !important;
}

.mleft-0 {
    margin-left: 0 !important;
}

.mtop-10 {
    margin-top: 10px !important;
}

.mright-10 {
    margin-right: 10px !important;
}

.mbottom-10 {
    margin-bottom: 10px !important;
}
.mtop-5 {
    margin-top: 5px;
}
.mtop-15 {
    margin-top: 15px;
}
.mleft-5 {
    margin-left: 5px !important;
}
.mleft-10 {
    margin-left: 10px !important;
}

.mtop-20 {
    margin-top: 20px !important;
}

.mtopbottom-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mtop-30 {
    margin-top: 30px !important;
}
.mtop-50 {
    margin-top: 50px !important;
}
.mtop-60 {
    margin-top: 60px !important;
}

.mbottom-15 {
    margin-bottom: 15px !important;
}

.mbottom-20 {
    margin-bottom: 20px !important;
}

.mbottom-30 {
    margin-bottom: 30px !important;
}

.mbottom-45 {
    margin-bottom: 45px !important;
}

/*--- Error Messages ----*/

.error-message {
    color: #d62829 !important;
    position: absolute;
    font-size: 0.875rem !important;
    display:block;
    line-height: 1.25rem;
}

.text-danger {
    padding: .375rem .75rem;
    color: #d62829 !important;
}

.label-error {
    border: 1px solid #b00020 !important;
}

.success-message {
    color: var(--form-label);
    font-size: 1rem;
    line-height: 1.25rem;
    display: flex;
}

.required-error-message {
    color: #d62829 !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem;
}

/*-------------- common CSS ---------------*/

a:link {
    color: #6abef7;
    font-size: 1rem;
    text-decoration: none;
}
/* visited link */
a:visited {
    color: #6abef7;
}
/* mouse over link */
a:hover,
a:focus {
    text-decoration: none;
}
/* selected link */

a:active {
    color: #6abef7;
}

/* ----- button styling ----- */

.btn-blue-center {
    margin: 10px auto 20px auto;
}

.btn-section {
    margin-bottom: 7px;
    padding-top: 15px;
    border-top: 1px solid #ccc;
}

.navyBlue-button, .white-button, .grey-button {
    border-radius: 2.25rem !important;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    /* min-width: 15rem; */
    font-weight: 500;
    font-size: 1rem !important;
    text-align: center;
    padding: 0.675rem 1.50rem !important;
    transition: all 0.4s ease 0s;
}

.navyBlue-button {
    background-color: var(--navyBlue-button);
    border: 1px solid var(--navyBlue-button);
    color: var(--white-button) !important;
}

.navyBlue-button img {
    margin-left: 7px
}

.white-button {
    background-color: var(--white-button);
    border: 1px solid var(--navyBlue-button);
    color: var(--navyBlue-button);
}

    .white-button img {
        margin-right: 7px
    }

.navyBlue-button:hover,
.navyBlue-button:focus {
    background-color: var(--navyBlue-button-hover) !important;
    outline: none;
    box-shadow: none;
    color: #fff;
}

.white-button:hover,
.white-button:focus {
    background-color: var(--navyBlue-button-hover) !important;
    outline: none;
    box-shadow: none;
    color: var(--white-button);
}

.grey-button {
    background-color: var(--grey-button) !important;
    border: 1px solid var(--grey-button) !important;
    color: var(--white-button) !important;
}

    .grey-button:hover,
    .grey-button:focus {
        background-color: var(--grey-button-hover) !important;
        outline: none;
        box-shadow: none;
        color: var(--white-button);
    }

.btn-bd-download {
    font-weight: 600;
    color: #0f2e56 !important;
    border-color: #0f2e56;
    background-color: #fff;
    border-radius: 36px;
    padding: 6px 20px;
}

    .btn-bd-download:hover {
        background-color: #0f2e56;
        color: #fff !important;
    }




/* .btn-nevyblue,
.btn-gray,
.btn-default,
.btn-upgrade,
.btn-ochre {
  min-width: 7.813rem;
  border-radius: 0.313rem;
  font-size: 1.063rem;
  padding: 0.875rem 1.25rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  line-height: 1.42857143;
}

.navyBlue-button,
.btn-gray,
.btn-upgrade {
  border: none;
}

.navyBlue-button {
  background-color: var(--navyBlue-button);
  color: #ffffff;
}

.navyBlue-button:hover,
.navyBlue-button:focus {
  background-color: var(--green-button-hover-color);
  outline: none;
  box-shadow: none;
} */

/*--------Custom Checkbox--------*/
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #0f2e56;
    background-color: #0f2e56;
}

.custom-control-label::before, .custom-control-label::after {
    top: 0.15rem;
    display: none;
}

/*----- login screen------*/

.login-bg-container {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-image: url('../images/bg-img.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

    .login-bg-container::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(15,76,117,0.8);
    }

.login-wrapper {
    max-width: 540px;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
    background: #ffffff;
    position: relative;
    text-align: center;
    min-width: 480px;
}
#mainLogo {
    margin-bottom: 30px;
}

.login-screen h4 {
    margin-bottom: 0 !important;
}
.user-name {
    font-size: 2.75rem;
}

.login-wrapper .form-group {
    position: relative;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

    .login-wrapper .form-group .show-hide-icon {
        display: inline-block;
        position: absolute;
        top: 8px;
        right: 0.938rem;
        cursor: pointer;
        z-index: 1;
    }

        .login-wrapper .form-group .show-hide-icon img {
            width: 1rem;
            opacity: 0.7;
        }

.copyright-text {
    color: #666;
    font-size: 11px;
    margin-top: 60px;
}


/*--------- Stepper form --------*/
.on-username .form-group {
    position: relative;
}

    .on-username .form-group .show-hide-icon {
        display: inline-block;
        position: absolute;
        top: 11px;
        right: 0.938rem;
        cursor: pointer;
        z-index: 1;
    }

        .on-username .form-group .show-hide-icon img {
            width: 1rem;
            opacity: 0.7;
        }

/* ---------- header section --------------*/
header.header {
    background-color: #ffffff;
    -webkit-box-shadow: 0 3px 10px -3px #c1c1c1;
    -moz-box-shadow: 0 3px 10px -3px #c1c1c1;
    box-shadow: 0 3px 10px -3px #c1c1c1;
    padding: 10px 30px;
    position:fixed;
    z-index:999;
}
header .onRight-section {
    margin-left: auto;
}



/* ---------- Main section --------------*/
.onContent-wrapper {
    padding: 72px 30px 20px 30px;
}

.onContent-wrapper h2 {
    margin-bottom: 15px;
}

/*---- main footer section----*/
footer {
    clear: both;
}

    footer .main-footer {
        background: #e4e4e4;
        padding: 15px;
        color: #444;
        border-top: 1px solid #d2d6de;
    }


/*---------Stepper content common ------------*/

.generic-tab-bg {
    position: fixed;
    right: 0;
    top: 69px;
    z-index: -100;
    transition: all 0.2s ease-in;
}

.on-welcome.active .on-welcome-bg,
.on-terms.active .on-terms-bg,
.on-username.active .on-username-bg,
.on-myInfo.active .on-myInfo-bg,
.on-direct-deposit.active .on-direct-deposit-bg,
.on-emergency-contacts.active .on-emergency-contacts-bg,
.on-taxwith-holding.active .on-taxwith-holding-bg,
.on-eligibility.active .on-eligibility-bg,
.on-documents-Forms.active .on-documents-Forms-bg,
.on-benefits.active .on-benefits-bg,
.custom-step.active .custom-step-bg {
    display: block !important;
}

* {
    box-sizing: border-box;
}

.on-widget h4 {
    margin-bottom: 10px;
}

.on-widget > p {
    margin: -5px 0 25px 0;
}

.onboarding-video {
    border-radius: 5px;
}

.on-widget-content {
    margin-bottom: 30px;
}

.on-widget .sincerely p {
    margin-bottom: 2px;
}

/*---------Terms of Use css------------*/


/*--------Username -form styling------*/
.required-mark {
    color: #d62829 !important;
    padding: 0 2px;
}


/*-----Password strong tips--------*/
.pwdStrengthTips {
    /* border: 1px solid #D5CEC8; */
    display: none;
    /* float: left; */
    padding: 10px;
    position: relative;
    width: 254px;
    background: #fff;
    position: absolute;
    z-index: 99;
    right: -260px;
    top: 0;
    border-radius: 5px;
    box-shadow: 0 1px 5px #ccc;
}

    .pwdStrengthTips:before,
    .pwdStrengthTips:after {
        content: ' ';
        height: 0;
        position: absolute;
        width: 0;
        border: 10px solid transparent;
        /* arrow size */
    }

    .pwdStrengthTips:before {
        border-bottom: 7px solid rgba(0, 0, 0, 0);
        border-right: 7px solid rgba(0, 0, 0, 0.1);
        border-top: 7px solid rgba(0, 0, 0, 0);
        content: "";
        display: inline-block;
        left: -18px;
        position: absolute;
        top: 10px;
    }

    .pwdStrengthTips:after {
        border-bottom: 6px solid rgba(0, 0, 0, 0);
        border-right: 6px solid #fff;
        border-top: 6px solid rgba(0, 0, 0, 0);
        content: "";
        display: inline-block;
        left: -16px;
        position: absolute;
        top: 11px;
    }

#pswd_info ul {
    list-style-type: none;
    margin: 5px 0 0;
    padding: 0;
}

    #pswd_info ul li {
        padding: 0 0 0 20px;
    }

        #pswd_info ul li.valid {
            color: green;
        }

#passwordStrength {
    display: block;
    height: 5px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.strength0 {
    background: none;
    width: 0px;
}

.strength1 {
    background: none repeat scroll 0 0 #FF4545;
    width: 25px;
}

.strength2 {
    background: none repeat scroll 0 0 #FFC824;
    width: 75px;
}

.strength3 {
    background: none repeat scroll 0 0 #6699CC;
    width: 100px;
}

.strength4 {
    background: none repeat scroll 0 0 #008000;
    width: 150px;
}



/*------I9 form--------*/
.i9-form {
    background: #ffffff;
}

    .i9-form .form-group {
        padding: 10px 0;
        /*border: 1px solid #eaf0f4;*/
        margin-bottom: 0;
    }

        .i9-form .form-group .error-message {
            position: absolute;
        }


/*---------capcha-------*/
.capcha-wrapper {
    border: 1px solid #d3d3d3;
    padding: 15px;
    background: #f9f9f9;
    color: #000;
    border-radius: 3px;
    box-shadow: 0 0 4px 1px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,0.08);
    -moz-box-shadow: 0 0 4px 1px rgba(0,0,0,0.08);
    margin-top: 30px !important;
}

    .capcha-wrapper input {
        margin: auto;
    }

    .capcha-wrapper label {
        margin: auto;
    }

    .capcha-wrapper img {
        margin: auto;
    }

    .capcha-wrapper .img-capcha p {
        margin-bottom: 0;
    }


/*------Model popup -------*/

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    margin: auto;
    width: 40%;
    border-radius: 10px;
    /* background-color: #fefefe;
  margin: auto;
  padding: 10px 20px 10px 20px;
  border: 1px solid #888;
  display: block; */
}

.modal-header {
    background: #f8f8f8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .modal-header h4 {
        margin-bottom: 0 !important;
    }
/* The Close Button */
.confirm-contact-close, .add-contact-close, .confirm-delete-contact-close,
.add-account-close, .confirm-account-close, .confirm-delete-account-close,
.confirm-conclusion-close, .submit-fed-close {
    color: #b1b1b1;
    font-size: 24px;
    font-weight: bold;
}

    .confirm-contact-close:hover, .confirm-contact-close:focus,
    .add-contact-close:hover, .add-contact-close:focus,
    .confirm-delete-contact-close:hover, .confirm-delete-contact-close:focus,
    .confirm-account-close:hover, .confirm-account-close:focus,
    .add-account-close:hover, .add-account-close:focus,
    .confirm-delete-account-close:hover, .confirm-delete-account-close:focus,
    .confirm-conclusion-close:hover, .submit-fed-close:hover {
        color: #666666;
        text-decoration: none;
        cursor: pointer;
    }

.modal .modal-content .main-content {
    padding: 20px;
}

.popup-btn-section {
    padding: 15px;
    width: 100%;
}
#taxWithholdingAlertModal .modal-content, #deleteContactConfirmModal .modal-content, #deleteAccountConfirmModal .modal-content,
#ECAlertModal .modal-content, #accountConfirmModal .modal-content, #EmployeeEligibilityAlertModal .modal-content,
#BankDepositAlertModal .modal-content, #contactConfirmModal .modal-content, #DocumentsAlertModal .modal-content, #CompanyPolicyAlertModal .modal-content {
    width: 25rem;
}

#conclusionModal .main-content {
    padding-left: 60px;
    padding-right: 60px;
}
.username input {
    float: left;
}

.username .text-danger {
    float: left
}
/*------------ While integration overwrite CSS starts --------------*/
#passwordValidator {
    position: absolute;
    left: 0px;
    /* top: 0px; */
    padding-top: 3px;
    padding-bottom: 3px;
}

html body .RadInput_Default .riRead, html body .RadInput_Read_Default {
    background: transparent !important;
    border: none !important;
}
/*---Scrollbar styling------*/

::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    border-radius: 20px;
}

/*Track*/
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
}

/*Handle*/
::-webkit-scrollbar-thumb {
    background: #c3c4c4;
    border-radius: 20px;
}
    /*Handle on hover*/
    ::-webkit-scrollbar-thumb:hover {
        background: #c3c4c4;
    }

.right-arrow {
    background: url(images/right-arrow-icon.png);
    background-repeat: no-repeat;
}

.custom-control-label input {
    left: -22px;
    position: absolute;
    top: 4px;
}

.custom-control-label label {
    display: initial;
}












/*------------ While integration overwrite CSS ends --------------*/



/*  Emergency Contact */

.table-wrapper {
    width: 100%;
    overflow: auto;
    display: grid;
    border: 1px solid var(--navyBlue-button-hover);
}

.rgHeaderDiv table {
    width: 100.1% !important;
}
.rgHeaderDiv {
    margin-right: 0 !important;
}
.rgDataDiv {
    overflow-x: auto;
    overflow-y: auto;
    width: 100%;
    max-height: 290px !important;
    min-height: 100px;
    background: #ffffff;
    height:initial !important;
}

.rgMasterTable td, .rgMasterTable th {
    padding: .50rem;
    vertical-align: top;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
   /* display: table-cell;*/
   text-align:left !important;
}

.contact-details .rgMasterTable td, .contact-details .rgMasterTable th,
.account-details .rgMasterTable td, .account-details .rgMasterTable th {
    width: 130px;
}
.company-policies .rgMasterTable td, .company-policies .rgMasterTable th {
    width: 330px;
    /*display: inline-block;*/
    line-height: 1.7;
}
.company-policies .rgMasterTable td.clock-action, .company-policies .rgMasterTable th.clock-action {
    width: 66px;
    text-align:center !important;
}
.company-policies .rgMasterTable td.clock-action input {
    vertical-align:middle;
}
.doc-forms .rgMasterTable td, .doc-forms .rgMasterTable th {
    width: 200px;
}
.doc-forms .rgMasterTable td:first-child, .doc-forms .rgMasterTable th:first-child {
    width: 300px;
}


/*
.contact-details .rgMasterTable td:last-child, .contact-details .rgMasterTable th:last-child,
.contact-details .rgMasterTable td:nth-last-child(3), .contact-details .rgMasterTable th:nth-last-child(3) {
    width: 12%;
}

.account-details .rgMasterTable td:last-child, .account-details .rgMasterTable th:last-child,
.account-details .rgMasterTable td:nth-last-child(2), .account-details .rgMasterTable th:nth-last-child(2) {
    width: 10%;
}
*/
.contact-details .rgNoRecords td div,
.account-details .rgNoRecords td div {
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
}

.table-wrapper .rgHeader, .table-wrapper .rgHeader a {
    background-color: var(--navyBlue-button-hover);
    color: var(--white-button);
    font-weight: normal;
}

#contactModal .contact-details-content {
    overflow-y: auto;
    max-height: 750px;
    overflow-x: hidden;
}

.primary-info, .address-info {
    background-color: #eaf0f4;
}

#contactModal .form-group {
    margin-bottom: 0;
    padding: 0 0 20px 0;
}

/*.address-info .RadInput_Default,*/ .address-info .RadDropDownList_Bootstrap, .address-info .RadInputMgr_Default,
.address-info .RadComboBox_Bootstrap {
    margin-bottom: 1.50rem !important;
}

.address-info .email-address .RadInput_Default {
    margin-bottom: 0 !important;
}

.contact-details-list {
    border: 1px solid var(--navyBlue-button-hover);
}

.contact-details-th {
    background-color: var(--navyBlue-button-hover);
    color: var(--white-button) !important;
}

.contact-details .edit-contact,
.account-details .edit-account {
    float: left;
    color: #6abef7;
    padding-top: 2px;
    cursor: pointer;
}

.contact-details .delete-contact,
.account-details .delete-account {
    float: right;
    cursor: pointer;
    padding-top: 1px;
    color: #808080;
}
/* Style the buttons that are used to open and close the accordion panel */
#contactModal .accordion {
    background-color: #eaf0f4;
    color: #37405d;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

    #contactModal .active, #contactModal .accordion:focus {
        outline: none;
    }

    #contactModal .accordion:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

#contactModal .active:after {
    content: "\2212";
}

#contactModal .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#contactModal .contact-details-content {
    overflow-y: auto;
    max-height: 750px;
    overflow-x: hidden;
}

.contact-details .rgHeader input.rgSortAsc, .account-details .rgHeader input.rgSortAsc {
    background-image: url(../images/sorting-up-arrow.png);
    background-color: var(--navyBlue-button-hover);
    color: var(--white-button);
    border: none;
    background-repeat: no-repeat;
    background-position: 0 10px;
}

.contact-details .rgHeader input.rgSortDesc, .account-details .rgHeader input.rgSortDesc {
    background-image: url(../images/sorting-bottom-arrow.png);
    background-color: var(--navyBlue-button-hover);
    color: var(--white-button);
    border: none;
    background-repeat: no-repeat;
    background-position: 0 10px;
}

.table-wrapper .rgDataDiv .rgMasterTable tr:nth-child(odd) {
    background: #ebf0f4;
}

.modal-content .riSingle {
    width: 100% !important;
}
/*
.w4-form .riSingle {
    width: 200px !important;
}*/

.bootstrap-dropdown, bootstrap-textbox, .RadInput.RadInput_Bootstrap {
    width: 100% !important;
    line-height: 1.4rem !important;
    font-family: 'Myriad Pro Regular' !important;
    font-size: 1rem !important;
}
/*.bootstrap-dropdown .rddlInner {
    color: #808080 !important;
}*/
.color-grey {
    color: #808080;
}

.on-myInfo .bootstrap-dropdown {
    width: 60% !important;
}

.contact-list-item {
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100px;
}

    .contact-list-item.email-item {
        width: 130px;
    }

.contact-action, .account-action {
    width: 70px;
}
.account-action span, .contact-action span {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
}






html body .RadInput_Default .riTextBox, html body .RadInputMgr_Default, html body .riSingle .riTextBox, html body .RadInput_Default .riTextBox, html body .RadInputMgr_Default,
.RadDropDownList_Bootstrap .rddlFocused {
    font-family: 'Myriad Pro Regular' !important;
    font-size: 1rem !important;
    display: block !important;
    width: 100% !important;
    height: 2.3rem;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5;
    color: #37405d !important;
    background-color: #fff !important;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
}

.RadDropDownList_Bootstrap .rddlFocused {
    box-shadow: none !important;
}

.RadDropDownList_Bootstrap .rddlFocused, .RadDropDownList_Bootstrap {
    font-family: 'Myriad Pro Regular' !important;
    font-size: 1rem !important;
}

    .RadDropDownList_Bootstrap .rddlInner {
        border: 1px solid #ced4da !important;
    }

html body .on-terms .RadInput_Default .riTextBox {
    background-color: transparent !important;
    border: none !important;
}

.on-eligibility .riSingle {
    display: initial !important;
}

.on-myInfo .riSingle, .RadPicker {
    width: 60% !important;
}

.on-myInfo .date-of-birth .riSingle {
    width: 100% !important;
}

.on-eligibility .i9-form .form-group .RadPicker {
    width: 100% !important;
}
/*.RadComboBox_Bootstrap, .RadDropDownList_Bootstrap {
    font-family: 'Myriad Pro Regular' !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #37405d !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
}*/

.RadButton, .rddlPopup, .RadComboBoxDropDown {
    font-family: 'Myriad Pro Regular' !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.routing-number .RadComboBox_Bootstrap table td.rcbInputCell {
    border: none
}
.routing-number .RadComboBox_Bootstrap .rcbInput {
    font-size: 16px !important;
    font-family: 'Myriad Pro Regular' !important;
    color: #37405d !important;
}
.RadComboBox_Bootstrap .rcbHovered .rcbArrowCell {
    background-color: transparent !important;
}

.routing-number table {
    border-width: 1px !important;
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
}

.routing-number .RadComboBox_Bootstrap .rcbFocused .rcbArrowCell {
    background-color: transparent !important;
}

.RadComboBox_Bootstrap .rcbInputCell, .RadComboBox_Bootstrap .rcbArrowCell, .RadComboBox_Bootstrap .rcbFocused .rcbArrowCell {
    height: 2.3rem !important;
    border-color: #ced4da !important;
}


#directDepositModal .form-group {
    position: relative;
}

#directDepositModal .error-message {
    position: absolute !important;
    bottom: -20px;
}

#directDepositModal .rcbSlide {
    width: auto !important;
}

#EsignModal .modal-content, #CompanyPolicyModal .modal-content {
    width: 50%;
    padding: 15px;
}

.doc-popup-checkbox label {
    display: initial !important;
}

.conclusion-heading {
    color: #9ab920;
    padding-left: 8px;
    display: inline-block;
    font-weight: 600;
}

.RadButton_Default.rbLinkButton {
    background-color: var(--navyBlue-button) !important;
    border: 1px solid var(--navyBlue-button) !important;
    color: var(--white-button) !important;
    background-image: none !important;
    border-radius: 20px !important;
}
.RadButton_Default.rbButton.navyBlue-button, .RadButton_Default.rbButton.blue-button input {
    background-color: var(--navyBlue-button) !important;
    border: 1px solid var(--navyBlue-button) !important;
    color: var(--white-button) !important;
    background-image: none !important;
    height: auto !important;
    border-radius: 2.25rem !important;
}
.RadButton_Default.rbButton.white-button, .RadButton_Default.rbButton.white-button input {
    background-color: #eaf0f4 !important;
    border: 1px solid var(--navyBlue-button) !important;
    color: var(--white-button) !important;
    background-image: none !important;
    height: auto !important;
    border-radius: 2.25rem !important;
    color: var(--navyBlue-button) !important;
}

    .RadButton_Default.rbLinkButton:hover,
    .RadButton_Default.rbButton:hover {
        background-color: var(--navyBlue-button-hover) !important;
        outline: none !important;
        box-shadow: none !important;
    }
.RadButton_Default.rbButton.white-button:hover {
    color: var(--white-button) !important;
}

.RadGrid tr.rgNoRecords {
    background-color: transparent !important;
}

.ruButton.ruBrowse, .ruDropZone {
    display: none;
}

.profile-pic img {
    width: 100%;
}

.ruFileInput {
    width: 100%;
}

/* TaxWithholding CSS*/

.RadRadioButton .rbText {
    /*padding-left: 0 !important;
    display: flex !important;
    position: relative !important;
    max-width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
    display: inline-block !important;
    margin-bottom: .5rem !important;*/
    color: #37405d !important;
}

.chk-list input {
    margin-top: 10px;
    vertical-align: top;
}
.state-withholding-form {
    padding-top: 6px;
    border-top: 1px solid #ccc;
}
.state-withholding-form .checkbox-label {
    /*margin-top: 5px;*/
    margin-right:10px;
    display:block;
}

.chk-list label {
    padding: .375rem .75rem;
}

.i9-form input[type=checkbox], input[type=radio] /*, .state-withholding-form input[type=checkbox]*/ {
    margin-top: 5px;
    margin-left:5px;
}

.to-change-state {
    color: #0f4c75;
    font-size: 14px;
    font-style: italic;
    margin-top:10px;
}

.state-withholding-form, .fed-results {
    background: #ffffff;
}
.state-withholding-form .checkBox {
    padding-right: 10px;
    padding-left: 5px;
}

.state-withholding-form .form-group, .fed-results .form-group {
    padding: 6px 0;
   /* border: 1px solid #eaf0f4;*/
    margin-bottom: 0;
}
/*
.i9-form label {
    padding: .375rem .75rem;
}*/

.i9-form .form-check {
    padding-left: 0;
}
.w4-form p {
    margin-bottom:8px !important;
    display:flex;
}
.RadRadioButton.RadButton .rbText, .RadCheckBox.RadButton .rbText {
    padding:0 !important;
}
.w4-form .col-form-label {
    padding-left:0 !important;
    display:block;
}
/*------w4 form--------*/
.w4-form.i9-form .form-group, .state-withholding-form .form-group, .fed-results .form-group {
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    margin-bottom: 10px;
}

.w4-form.i9-form .form-group {
    position:relative;
}
.w4-form.i9-form .form-group
.form-check label{
    display:inline;
    margin-left:0.5rem;
}
.w4-form.i9-form .form-group .tax-return-error {
        left: 32px;
        bottom: -5px;
}
.RadButton.RadRadioButton {
    white-space: normal;
    text-align: left;
    width: 100%;
}
/*
.federal-withholding-new .error-message{
    padding-top:8px;
}*/

.login-screen .form-group .error-message {
    position: absolute;
    left:0;
}

.login-screen .form-group .login-failed {
    bottom: -60px;
    right: 0;
}

.success-message {
    color: #008000 !important;
    position: absolute;
    font-size: 0.875rem !important;
    left: 0;
    right: 0;
    font-size: 1rem;
    line-height: 1.25rem;
}

.forgot-password .form-group {
    margin-bottom: 25px;
}

.form-signin {
    position: relative;
}
.checkTwoJobsBullet {
    margin-left: 0 !important;
}
.RadComboBoxDropDown_Bootstrap .rcbItem, .RadComboBox .rcbInput, .RadComboBoxDropDown_Bootstrap .rcbHovered {
    color: #37405d !important;
}
.RadComboBox table td.rcbInputCell {
    padding: 0 4px 0 12px;
}
.RadComboBox_Bootstrap .rcbInput, .RadComboBox .rcbInput {
    font-size: 1rem !important;
}
.RadButton.rbButton.rbSecondary .rbText {
    margin-right:20px !important;
}
.RadButton.rbButton.rbPrimary .rbText {
    margin-left: 20px !important;
}
.RadButton.btn .rbPrimaryIcon, .RadButton.btn .rbSecondaryIcon {
    width: 1.33333333em;
    height: 1.33333333em;
    top: 13px !important;
    position:absolute !important;
}
.RadButton.btn .rbSecondaryIcon {
    right: 15px !important;
    background-image: url(../images/right-arrow-icon.png);
}
.RadButton.btn .rbPrimaryIcon {
    left: 15px !important;
    background-image: url(../images/left-arrow-icon.png);
}

.account-details .rgHeaderDiv, .contact-details .rgHeaderDiv {
    margin-right: 0 !important;
}
.account-details .rgDataDiv, .contact-details .rgDataDiv {
    max-height: 290px !important;
    min-height: 100px !important;
    height: auto !important;
}
.custom-checkbox .error-message {
    display: block;
    position:absolute;
}
.RadButton .rbText {
    vertical-align: initial !important;
}
.rbVerticalList .RadButton {
    display:flex !important;
}
html body .RadInput_Default .riTextBox {
    color: #808080;
}
.RadPicker_Default .rcCalPopup {
    background-image: url(../images/mygo_icons/calendar-icon.png) !important;
    position: absolute;
    top: 7px;
    right: 8px;
    z-index:1;
}
.RadPicker_Default .rcCalPopup {
    background-position: 0 0 !important;
}
.RadPicker td {
    position: relative;
}
.RadPicker .rcCalPopup {
    height: 24px !important;
}
caption {
    padding-bottom:0 !important;
}
table.routing-item-table td {
    width: 10px;
    max-width: 10px;
}


.documents-step .RadGrid.RadGrid_Default.radGrid {
    width: 100% !important;
}

.doc-forms .rgMasterTable {
    table-layout: fixed !important;
}
.doc-forms .rgMasterTable th, .doc-forms .rgMasterTable td {
   /* width:40% !important;*/
    text-align:left !important;
}
/*
.doc-forms .rgMasterTable th:first-child, .doc-forms .rgMasterTable td:first-child {
    width:45% !important;
}
.doc-forms .rgMasterTable th:last-child, .doc-forms .rgMasterTable td:last-child {
    width: 15% !important;  
}
    */

.company-policies.doc-forms .rgMasterTable th, .company-policies.doc-forms .rgMasterTable td {
   /* width: 40% !important;*/
    text-align: left !important;
}
/*
.company-policies.doc-forms .rgMasterTable th:first-child, .company-policies.doc-forms .rgMasterTable td:first-child {
    width: 5% !important;
}
.company-policies.doc-forms .rgMasterTable th:last-child, .company-policies.doc-forms .rgMasterTable td:last-child {
    width: 15% !important;
}
*/
/*.stampLabel {
    color: #0e4c75;
    font-weight: 600;
}*/
.doc-header {
    position: relative;
    display: -webkit-box;
}
.doc-header h4 {
    margin-right:12px;
}
.doc-header img {
    vertical-align:text-top;
}
/*
    .doc-header::before {
        position: absolute;
        counter-increment: section;
        content: counter(section);
        height: 26px;
        width: 26px;
        color: white;
        background-color: #B2B2B2;
        border-radius: 50%;
        text-align: center;
        line-height: 26px;
        font-weight: 400;
        transition: background-color 400ms cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 14px;
        right: -30px;
        top: 7px;
    }

    .doc-header:before {
        background-color: #003058;
    }

    .doc-header::before {
        content: '\e5ca';
        font-size: 16px;
        font-family: 'Material Icons';
    }
    */
.rigTemplate img {
    width:100% !important;
}
.doc-popup-checkbox {
    background: #f4f4f4;
    padding: 10px;
}
.doc-popup-checkbox input {
    margin-right:10px;
}
#divButtons .RadButton_Default.rbSkinnedButton, #divButtons .RadButton_Default .rbDecorated {
    background-image: none !important;
    color: #fff !important;
}
#divButtons .rbSkinnedButton {
    height:initial !important;
}

.RadButton_Default .rbDecorated {
    background-image: none !important;
    color: #fff !important;
}

.RadButton {
    box-sizing:border-box !important;
}
.trademarks-content {
    width: 300px;
    text-align: center;
    margin: 0 auto;
    margin-top: 70px;
    font-size: 14px;
}
.trademarks-content p {
    margin-bottom: 0 !important;
}
.header .onRight-section .RadButton_Default.rbSkinnedButton {
    padding: 0 !important;
    background-image: none !important;
    height: auto !important;
    background-color: #0f2e56 !important;
}
/*
.RadButton .rbDecorated {
    background-color: transparent !important;
    border-radius: 20px !important;
    border: 1px solid #003057 !important;
    color: #003057 !important;
    padding: 5px 20px !important;
}
.RadButton .rbDecorated:hover {
   background-color: #003057 !important;
   color:#fff !important;
}
    */
.header .onRight-section .rbSkinnedButton .rbDecorated {
    height: auto !important;
    background-color: var(--white-button);
    border: 1px solid var(--navyBlue-button);
    color: var(--navyBlue-button) !important;
    border-radius: 2.25rem;
    padding: 0.675rem 1.50rem !important;
}
.header .onRight-section .rbSkinnedButton .rbDecorated:hover {
    background-color: var(--navyBlue-button);
    color:#fff !important;
}
.RadButton_Default .rbToggleRadio, .RadButton_Default .rbToggleRadioChecked, .RadButton_Default .rbToggleCheckboxChecked {
    background-image: none !important;
}
.RadComboBoxDropDown_Bootstrap .rcbItem, .RadComboBoxDropDown_Bootstrap .rcbHovered {
    padding: 2px 1em !important
}
/*
.RadAjax.RadAjax_Default {
    z-index: 2000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto;
    background-color: rgb(0,0,0) !important;
    background-color: rgba(0,0,0,0.4) !important;
}*/

/*
.mygo-timeoffrequest .rgHeaderDiv table th, .mygo-timeoffrequest .rgDataDiv table td, .mygo-timeoffrequest .rgEditRow.rgSelectedRow > td {
    width: 11% !important;
}
*/

.store-section {
    display: none;
}

.withholding-row-left  {
    display:contents;
    
}
   
.withholding-row-right {
    
    /*float: right;
    top: 0px;
    position: absolute;
    right: 0;*/
}

#imgLogo {
    max-height: 72px;
}
#imgPL {
    max-height: 72px;
}

.RadComboBox_Bootstrap table td.rcbArrowCellRight {
    border-left: none;
}

.state-withholding-form .form-group {
    display:flex;
}

/* Media query start here*/
@media only screen and (max-width: 1366px) {
    #taxWithholdingAlertModal .modal-content, #deleteContactConfirmModal .modal-content, #deleteAccountConfirmModal .modal-content,
    #ECAlertModal .modal-content, #accountConfirmModal .modal-content, #EmployeeEligibilityAlertModal .modal-content, #BankDepositAlertModal .modal-content, #contactConfirmModal .modal-content {
        width: 35%;
    }
    .modal-content {
        width: 60%;
    }
}

@media only screen and (max-width: 1280px) {
    .generic-tab-bg,
    .on-welcome.active .on-welcome-bg,
    .on-terms.active .on-terms-bg,
    .on-username.active .on-username-bg,
    .on-myInfo.active .on-myInfo-bg,
    .on-direct-deposit.active .on-direct-deposit-bg,
    .on-emergency-contacts.active .on-emergency-contacts-bg,
    .on-taxwith-holding.active .on-taxwith-holding-bg,
    .on-eligibility.active .on-eligibility-bg,
    .on-documents-Forms.active .on-documents-Forms-bg,
    .on-benefits.active .on-benefits-bg,
    .custom-step.active .custom-step-bg {
        display: none !important;
    }
    #EsignModal .modal-content {
        width: 80%;
    }
}

@media only screen and (max-width: 1023px) {
    .modal-content {
        width: 75%;
    }
    #EsignModal .modal-content, #CompanyPolicyModal .modal-content {
        width: 95%;
        padding: 10px;
    }
}
@media only screen and (max-width: 900px) {
    #taxWithholdingAlertModal .modal-content, #deleteContactConfirmModal .modal-content, #deleteAccountConfirmModal .modal-content, #ECAlertModal .modal-content,
    #accountConfirmModal .modal-content, #EmployeeEligibilityAlertModal .modal-content, #BankDepositAlertModal .modal-content, #contactConfirmModal .modal-content {
        width: 45%;
    }
    .rcbSlide {
        left:80px !important;
    }
    #directDepositModal .rcbSlide {
        left: 10px !important;
    }
}
@media only screen and (max-width: 768px) {
   /* html {
        font-size: 80% !important;
    }*/
    .modal-content {
        width: 75%;
    }
    .store-section {
        display: block;
        padding:20px;
    }

}

@media only screen and (max-width: 767px) {
    .mg-actionbtn {
        margin-bottom: 10px;
    }
    .navyBlue-button, .white-button, .grey-button {
        width: 100%;
    }

    .text-danger {
        padding-left: 0;
    }

    .white-button, .grey-button {
        margin-bottom: 10px;
    }

    /*-----Password strong tips------*/
    .pwdStrengthTips {
        right: 0;
        top: 45px;
    }

        .pwdStrengthTips:before {
            border-bottom: 7px solid rgba(0, 0, 0, 0.2);
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            right: 15px;
            top: -15px;
            left: initial;
        }

        .pwdStrengthTips:after {
            border-left: 6px solid rgba(0, 0, 0, 0);
            border-bottom: 6px solid #fff;
            border-right: 6px solid rgba(0, 0, 0, 0);
            right: 16px;
            position: absolute;
            top: -13px;
            left: initial;
        }

    .on-myInfo .riSingle, .RadPicker {
        width: 100% !important;
    }

    .name-section, .upload-picture {
        padding-right: 0;
    }

    #directDepositModal .updload-picture {
        padding-left: 0;
    }

    /*** Login Page ***/

    .login-bg-container .login-wrapper {
        min-width: 360px;
        max-width: inherit;
        padding: 20px;
    }

    .login-screen .form-group {
        width: 100%;
    }

    .login-bg-container .login-wrapper .btn.navyBlue-button.float-left {
        margin-bottom: 20px;
    }
    .on-myInfo .bootstrap-dropdown {
        width: 100% !important;
    }
    .submit-fed-form {
        margin-bottom:10px;
    }
    /*
    .state-withholding-form .form-group {
        flex-wrap: wrap;
    }
        */
}
@media only screen and (max-width: 568px) {
    #taxWithholdingAlertModal .modal-content, #deleteContactConfirmModal .modal-content, #deleteAccountConfirmModal .modal-content, #ECAlertModal .modal-content,
    #accountConfirmModal .modal-content, #EmployeeEligibilityAlertModal .modal-content, #BankDepositAlertModal .modal-content, #contactConfirmModal .modal-content {
        width: 70%;
    }
    #conclusionModal .modal-content {
        width: 20rem;
    }
    .withholding-row-right {
        position:relative;
        padding:0;
    }
    .state-withholding-form .form-group {
        display: -webkit-box;
    }
    .w4-form .riSingle {
        width: 100% !important;
    }
    .form-group .col-sm-6, .form-group .col-sm-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/*-------- Media query ends here  ---------*/


.username-captcha {
    padding: 5px;
    margin-top: 10px;
}
.username-captcha .imageClass,
.username-captcha p {
    margin: 0px auto;

}

.required-error-message {
    padding-left: 10px;
}