:root {
    --menu_text: #fbc9a6; /* SAL's Website Mobile Menu Color #fbc9a6 */
    --main_text: #3e4745; /* SAL Primary Dark Grey Pantone 446C #3e4745 - 100% */
    --highlight_1: #0063a7; /* SAL Primary Blue Pantone 300C #0063a7 - 100%*/
    --highlight_1_hover: #66a1ca; /* SAL Primary Blue Pantone 300C #0063a7 - 60%*/
    --highlight_2: #e34626; /* SAL Seconday Red Pantone 1665C #e34626 - 100% */
    --highlight_2_hover: #ee907d; /* SAL Seconday Red Pantone 1665C #e34626 - 60% */
    --highlight_2_hover_2: #f9dad4; /* SAL Seconday Red Pantone 1665C #e34626 - 20% */
    --button_base: #535353; /* SAL Primary Dark Grey Pantone 446C #3e4745 - 80% */
    --announcement: #834c9e; /* SAL Secondary Purple Pantone 2587C #834c9e - 100% */
    --announcement_base: #e6dbec; /* SAL Secondary Purple Pantone 2587C #834c9e - 20% */
    --title_base: #dde3e9; /* SAL Primary Light Grey Blue Pantone 538C #c7d1db - 60% */
    --page_base: #f4f6f8; /* SAL Primary Light Grey Blue Pantone 538C #c7d1db - 20% */
    --step_1: #ebf5fc; /* SAL Tertiary Light Blue Pantone 291C #9acbee - 20% */
    --step_2: #e1effa; /* SAL Tertiary Light Blue Pantone 291C #9acbee - 30% */
    --step_3: #c2e0f5; /* SAL Tertiary Light Blue Pantone 291C #9acbee - 60% */
    --step_4: #aed5f1; /* SAL Tertiary Light Blue Pantone 291C #9acbee - 80% */
    --step_5: #9acbee; /* SAL Tertiary Light Blue Pantone 291C #9acbee - 100% */
    --footer_bar: #535353; /* SAL Primary Dark Grey Pantone 446C #3e4745 - 80% */
    --white: #ffffff;
    --shadow: #333333;
}

#loader {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    border: 8px solid #dde3e9;
    border-top: 8px solid #0063a7;
    border-radius: 50%;
    z-index: 2000;
    animation: spin 1.5s linear infinite;
    -webkit-animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-dialog {
    margin-top: 100px;
}

.modal-content {
    border-radius: 0;
    border: 0;
    border-bottom: 6px #0063a7 solid;
    text-align: center;
}

.modal-header {
    background-color: #dde3e9;
    color: #0063a7;
    border-bottom: 0;
    padding-bottom: 5px;
    padding-top: 12px;
}

    .modal-header .close {
        font-size: 2.8em;
        color: #3e4745;
        font-weight: 300;
        text-shadow: none;
        opacity: 1;
        overflow: hidden;
        margin-top: -11px;
        margin-right: -4px;
    }

        .modal-header .close:hover {
            color: #0063a7;
        }

.modal-body h2 {
    display: block;
    font-size: 4em;
    color: #0063a7;
    margin-bottom: 15px;
}

.modal-footer {
    text-align: center;
    border-top: 0;
    padding: 0 20px 30px;
}

    .modal-footer .btn {
        color: #ffffff;
        background: #535353;
        border-radius: 0;
        border: none;
        font-size: 1.3em;
        margin: 0 5px;
        min-width: 80px;
        height: 40px;
    }

        .modal-footer .btn:hover {
            background: #66a1ca;
        }

        .modal-footer .btn.btn-action:hover {
            background: #ffffff;
        }

        .modal-footer .btn.btn-action {
            background: #0063a7;
            /*width: 100%;
            margin: 0 0 10px 0;*/
        }

        .modal-footer .btn.btn-default {
            /*width: 100%;
            margin: 0 0 10px 0;*/
        }

body {
    font-weight: normal;
    color: #3e4745;
    font-size: 1.4em;
    background: #f4f6f8;
    font-family: 'Lato', sans-serif;
}

a:focus, * {
    outline: none !important;
    text-decoration: none;
}
/*html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
*/
.container {
    max-width: 970px;
}
/** {
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	outline: none;
}*/

.container-fluid {
    padding-left: 5px;
    padding-right: 5px;
}

.wrapper {
    /* position: relative;*/
    min-height: 100%;
    min-width: 320px;
    max-width: 999px;
    margin: 0 auto;
    background: #ffffff;
    /*		transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;*/
}

.sallogo {
    padding-left: 20px;
    border-bottom: 1px #ccc solid;
    padding-bottom: 15px;
    padding-top: 15px;
}

.logoutbtn {
    float: right;
    margin-top: 20px;
    background: #e34626;
    /* text-decoration: none; */
    color: #fff;
    display: block;
    padding: 10px;
    border: none;
    width: 80px;
    font-size: 15px;
    line-height: 20px;
}

    .logoutbtn:hover {
        background: #0063a7;
        text-decoration: none;
    }  

.login {
    float: right;
    margin-top: 10px;
}

.login a {
    background: #0063a7;
    color: #fff;
    display: block;
    padding: 8px 20px;
} 

.navbar .login a:hover {
    background: #e34626;
    border-top: none;
    text-decoration: none;
}

.navbar .login.logout a {
    background: #e34626;
    text-decoration: none;
}

    .navbar .login.logout a:hover {
        background: #0063a7;
        text-decoration: none;
    }

.container-main {
}

.navbar {
    border-radius: 0;
    border: none;
    height: 80px;
    background: #ffffff;
    margin: 0;
}

.navbar-brand {
    height: auto;
    padding-bottom: 10px;
}

.header-right {
    float: right;
    padding-right: 10px;
}

    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin: 0;
        padding-right: 0;
        padding-left: 0; 
    }

.navbar-default .navbar-brand img {
    /*max-width: 180px;
    margin-top: 5px;*/
    padding-left: 20px;
}

.navbar .navbar-nav > li > a {
    color: #0063a7;
    border-top: 5px solid transparent;
    padding: 25px 15px 10px 15px;
    margin: 0 10px;
    font-size: 15px;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #0063a7;
    background: none;
    border-top: 5px solid #e34626;
}

.navbar .navbar-nav > li > a:hover {
    background: none;
    color: #0063a7;
    border-top: 5px solid #ee907d;
}

.navbar .navbar-nav > li > a.login {
    background: #0063a7;
    color: #ffffff;
    border-top: none;
    margin: 20px 0 0 10px;
    padding-top: 10px;
    width: 80px;
    text-align: center;
}

    .navbar .navbar-nav > li > a.login:hover {
        background: #e34626;
        border-top: none;
    }

    .navbar .navbar-nav > li > a.login.logout {
        background: #e34626;
    }

        .navbar .navbar-nav > li > a.login.logout:hover {
            background: #0063a7;
        }

.announcement-icon {
    display: none;
}

.notification {
    padding: 10px 50px 10px 80px;
    background: #0063a7;
    color: var(--white);
    position: relative;
}

/*.notification {
    padding: 10px 50px 10px 80px;
    background: #834c9e;
    color: #ffffff;
    position: relative;
}*/
    .notification::before {
        content: "\e6b7";
        font-family: 'themify';
        position: absolute;
        color: var(--white);
        font-size: 40px;
        left: 15px;
        line-height: 100%;
        height: 42px;
        width: 42px;
        top: 50%;
        margin-top: -21px;
    }
    /*.notification::before {
        content: "\e6b7";
        font-family: 'themify';
        position: absolute;
        color: #ffffff;
        font-size: 40px;
        left: 15px;
        line-height: 100%;
        height: 42px;
        width: 42px;
        top: 50%;
        margin-top: -21px;
    }*/ 
    .notification p {
        font-size: 1em;
        margin-bottom: 5px;
    } 
.close-ntification {
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 1.8em;
    line-height: 100%;
    height: 25px;
    margin-top: -13px;
}

    .close-ntification:hover {
        cursor: pointer;
        color: var(--main_text);
    }
    /*.close-ntification:hover {
        cursor: pointer;
        color: #3e4745;
    }*/

.carousel-control {
    background: none !important;
}

    .carousel-control span {
        font-size: 30px;
        line-height: 100%;
        position: absolute;
        top: 50%;
        margin-top: -20px;
        left: 10px;
    }

    .carousel-control.right span {
        left: auto;
        right: 10px;
    }

.carousel-inner > .item > img {
    object-fit: cover;
    overflow: hidden;
    max-width: 100%;
    margin-left: 0;
}

.error-icon {
    margin-top: 20px;
    text-align: center;
    font-size: 150px;
    color: #e34626;
}

.error-text {
    margin: -60px auto 60px auto;
    max-width: 500px;
    text-align: center;
}

    .error-text p {
        width: 100%;
        padding-bottom: 10px;
        text-align: left;
    }

.row.table-view {
    display: table;
    width: 100%;
    margin: 0;
}

.col-sm-4.table-cell {
    display: table-cell;
    float: none;
    padding: 30px 35px;
}

.announcement {
    background: #e4e6ec;
}

.search_will {
    background-color: var(--step_1);
}

.deposit_will {
    background-color: var(--step_2);
}

.attachmentfilenewgrid {
    font-weight: normal;
    color: #3e4745;
    font-size: 16px;
}

.search_will:hover, .deposit_will:hover {
    background-color: var(--white);
    cursor: pointer;
}	

.table-cell h2 {
    color: #3e4745;
    line-height: 100%;
    font-size: 1.7em;
    font-weight: normal;
    margin-bottom: 30px;
}

.table-cell.will-record h2 {
    color: var(--highlight_1);
    font-weight: 300;
    font-size: 2em;
}

.col-sm-4.table-cell.will-record p {
    padding-left: 40px;
    position: relative;
}

    .col-sm-4.table-cell.will-record p span {
        position: absolute;
        left: 0;
        font-size: 24px;
        color: #666;
        top: 5px;
    }

.navbar-collapse-overlay {
    display: none
}

.table-cell p {
    margin-bottom: 15px;
}

.close-announcement {
    display: none;
}

.top-heding {
    background: #dde3e9;
    padding: 12px 20px;
    color: #0063a7;
    font-size: 20px;
    margin: 0px 0 20px 0px;
}

.center-heading {
    font-weight: 300;
    margin: 30px 0;
    float: left;
    width: 100%;
    color: #0063a7;
    font-size: 30px;
}

.center-heading-error {
    font-weight: 600;
    margin: 30px 0;
    float: left;
    width: 100%;
    color: #e34626;
    font-size: 30px;
}

.center-message-error {
    text-align: center;
    color: #e34626;
}

.content-right {
    margin: 20px auto 60px auto;
    max-width: 500px;
    min-height: 400px;
}

.contact-us {
    margin: 20px auto 60px auto;
    max-width: 500px;
    min-height: 400px;
}

    .contact-us p {
        float: left;
        width: 100%;
        padding-left: 20px;
        padding-bottom: 10px;
        min-height: 30px;
        margin-bottom: 15px;
        font-size:16px;
    }
.glyphicon.glyphicon-envelope {
    font-size: 30px;
}
.custom-hr {
    width: 100%;
    font-size: 4px;
    color: #dde3e9;
    /*#0063a7;*/
    line-height: 4px;
    background-color: #dde3e9; /*#0063a7;*/
    margin-top: 10px;
    margin-bottom: 10px;
}

.article-summary {
    border-bottom: 1px #0063a7 solid;
    padding: 30px 0 30px 0;
}

.article-details {
    padding: 30px 0 30px 0;
}

    .article-summary h2, .article-details h2 {
        color: #0063a7;
        font-weight: 700;
        font-size: 22px;
        margin: 0;
    }

    .article-summary h3, .article-details h3 {
        color: #3e4745;
        font-weight: 700;
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

.article-summary img {
    float: right;
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin-top: 5fpx;
    padding-left: 20px;
    padding-bottom: 20px;
}

.article-details img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.article-summary p, .article-details p {
    color: #3e4745;
    font-weight: 500;
    font-size: 16px;
    background: none !important;
    padding-left: 0 !important;
    float: none !important;
}

.faq-page {
    max-width: 600px
}

.margin-top-30 {
    margin-top: 30px;
}

.content-right p {
    background: url(../images/book-bg.jpg) no-repeat left center;
    float: left;
    width: 100%;
    padding-left: 40px;
    padding-bottom: 10px;
    min-height: 30px;
    margin-bottom: 15px;
}

    .content-right p a {
        display: inline !important;
        background: none !important;
        padding: 0 !important;
        color: #0063a7 !important;
        text-decoration: none !important;
    }

        .content-right p a:hover {
            text-decoration: underline !important;
        }

.faq > ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    float: left;
    width: 100%;
}

    .faq > ul > .faq-section {
    }

        .faq > ul > .faq-section.is-hidden {
            display: none;
        }

    .faq > ul > li h2 {
        font-size: 16px;
        font-weight: normal;
        margin: 0;
        padding: 0;
    }

    .faq > ul > li.is-active h2 {
        border-bottom: 0;
    }

    .faq > ul > li a {
        text-decoration: none !important;
        color: #3e4745;
        padding: 15px 0;
        background: url(../images/faq.png) no-repeat left 12px;
        display: block;
        background-size: 24px;
        padding-left: 40px;
    }

    .faq > ul > li h2:hover a, .faq > ul > li h2:focus a, .faq > ul > li.is-active h2 a, .faq > ul > li:target h2 a {
        color: #0063a7;
    }

.faq input:focus {
    box-shadow: 0px 4px 8px rgba( 52, 67, 75, .4 );
}

.details-content .faq p {
    margin-left: 0;
}

.faq .highlight {
    background-color: #e34626;
    display: inline-block !important;
    color: #ffffff;
}

.faq > ul > li.is-hidden {
    display: none;
}

.faq > ul > li {
    margin-top: 0px;
    padding-top: 0;
    padding-bottom: 0;
    padding: 0px;
    margin-bottom: 0px;
    float: left;
    width: 100%;
}

    .faq > ul > li.is-active {
        padding-bottom: 10px;
    }

        .faq > ul > li.is-active a {
            background: url(../images/faq-collapse.png) no-repeat left 12px;
            background-size: 24px;
        }

    .faq > ul > li.is-active {
        padding-bottom: 10px;
    }

    .faq > ul > li > div {
        display: none;
    }

        .faq > ul > li > div > ul {
            list-style-type: square;
            padding-bottom: 10px;
        }

        .faq > ul > li > div p {
            margin: 0;
        }

    .faq > ul > li.is-active > div {
        display: block;
        margin-top: 0px;
        line-height: 1.8em;
        padding: 15px 15px 5px;
        float: left;
        width: 100%;
        background: #f4f6f8;
    }

        .faq > ul > li.is-active > div p {
            background: none;
            padding-left: 0;
        }

.faq__notfound {
    font-size: 15px;
    display: none;
    margin-top: 10px;
}

    .faq__notfound.is-visible {
        display: block;
        color: #e34626;
    }

.faq .btn.btn-search, .search-container.will-search .btn.btn-search {
    background: #0063a7;
    color: #ffffff;
    padding: 0px 30px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

    .faq .btn.btn-search:hover, .search-container.will-search .btn.btn-search:hover {
        background: #66a1ca;
    }

.faq .form-control, .search-container.will-search .form-control {
    height: 40px;
    border: 1px solid #0063a7;
    box-shadow: none !important;
}

.search-container.will-search select.form-control {
    border-right: none;
}


.faq .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-spacing: 0;
    border-collapse: collapse;
}

.faq .table-bordered, .faq .table-bordered > tbody > tr > td {
    border: 1px #dde3e9 solid;
}

.faq .table thead, .faq .table thead th {
    background: #dde3e9;
    border: none;
}

.mobile-footer-links {
    display: none;
}

.social-links span {
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
    margin-left: 4px;
}

    .social-links span a {
        display: inline-block;
    }

        .social-links span a span {
            font-size: 18px;
            color: #535353;
            background: #ffffff;
            margin: 0;
            width: 28px;
            height: 28px;
            border-radius: 3px;
            line-height: 30px;
            text-align: center;
        }

            .social-links span a span:hover {
                color: #ffffff;
                background: #535353
            }

.footer-links span {
    display: inline-block;
    margin-right: 15px;
}

    .footer-links span a {
        display: block;
        font-size: 13px;
        color: #ffffff;
    }

.copyright {
    padding-top: 19px;
    background: #535353;
    width: 100%;
    height: 60px;
    color: #ffffff;
    float: left;
}



.login-box {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.56);
    top: 0;
    z-index: 999;
    text-align: center;
    display: none;
}

.login-main {
    position: absolute;
    width: 580px;
    height: 340px;
    top: 50%;
    margin-top: -170px;
    left: 50%;
    margin-left: -290px;
    background: #ffffff;
    padding: 25px;
    border-radius: 5px;
    border: 2px solid #ddd;
    box-shadow: 0 0 8px 3px #333333;
}

.login-by {
    background: #f6f6f6;
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 5px;
}

.login-main .social-links span a span {
    font-size: 20px;
    color: #ffffff;
    background: #dddddd;
    margin: 0;
    width: 48px;
    height: 48px;
    border-radius: 0;
    line-height: 50px;
    text-align: center;
}

.login-main .social-links span a:hover span {
    background: #0060a2;
}

.login-logo {
    display: inline-block;
}

.login-by a {
    display: inline-block;
    padding: 10px 20px;
    background: #0060a2;
    border-radius: 5px;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
}

    .login-by a:hover, .login-by a:focus {
        text-decoration: none
    }

    .login-by a.new-user-registration {
        background: none;
        color: #000;
        font-size: 20px;
        text-decoration: underline;
        font-weight: 300;
    }

.close-login {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.8em;
    line-height: 100%;
    height: 25px;
    color: #999;
}

    .close-login:hover {
        cursor: pointer;
    }

.content-center {
    margin-bottom: 50px;
}

    .content-center h2 {
        text-align: center;
    }

.content-list ul {
    float: left;
    /*padding-left: 20px;
    list-style: url;
    list-style-type: square;
    font-size: 1.1em;
    line-height: 1.6;*/
}

    .content-list ul li > ol {
        list-style: lower-alpha;
        margin-top: 15px;
    }

    .content-list ul li {
        margin-bottom: 15px;
    }

.content-list h5 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
}

.button-center {
    float: left;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

    .button-center .btn {
        color: #ffffff;
        background: #535353;
        border-radius: 0;
        border: none;
        font-size: 1.3em;
        margin: 0 5px;
        min-width: 80px;
        height: 40px;
    }

        .button-center .btn:hover {
            background: #66a1ca;
        }

        .button-center .btn.btn-action {
            background: #0063a7;
        }

            .button-center .btn.btn-action:hover {
                background: #66a1ca;
            }


.button-left {
    float: none !important;
    text-align: left !important;
    margin: 0;
}

    .button-left .btn {
        color: #ffffff;
        background: #535353;
        border-radius: 0;
        border: none;
        font-size: 1.3em;
        margin: 0 5px;
        min-width: 80px;
        height: 40px;
    }

        .button-left .btn:first-child {
            margin-left: 0;
        }

        .button-left .btn:hover {
            background: #66a1ca;
        }

        .button-left .btn.btn-action {
            background: #0063a7;
        }

            .button-left .btn.btn-action:hover {
                background: #66a1ca;
            }


.processing-bar {
    float: left;
    width: 100%
}

    .processing-bar ul {
        float: left;
        width: 100%;
        display: table;
        list-style: none;
        padding: 0;
    }

        .processing-bar ul li {
            width: 20%;
            font-size: 13px;
            float: none;
            display: table-cell;
            vertical-align: middle;
            text-align: center;
            border-bottom: 5px solid transparent;
            height: 90px;
        }

            .processing-bar ul li.active {
                border-bottom: 5px solid #e34626;
            }

            .processing-bar ul li:nth-child(1) {
                background: #ebf5fc;
            }

            .processing-bar ul li:nth-child(2) {
                background: #e1effa;
            }

            .processing-bar ul li:nth-child(3) {
                background: #c2e0f5;
            }

            .processing-bar ul li:nth-child(4) {
                background: #aed5f1;
            }

            .processing-bar ul li:nth-child(5) {
                background: #9acbee;
            }

            .processing-bar ul li span {
                width: 40px;
                font-size: 1.4em;
                height: 40px;
                background: #ffffff;
                display: block;
                margin: 5px auto;
                line-height: 40px;
                border-radius: 50%;
            }

            .processing-bar ul li strong {
                font-weight: normal;
            }

.margin-bottom-none {
    margin-bottom: 0;
}

.content-center h2 span:first-child {
    display: block;
    color: #3e4745;
    font-size: 16px;
    font-weight: normal;
    margin: 30px 0 0 0;
}

.content-center h2 span {
    display: block;
    color: #3e4745;
    font-size: 16px;
    font-weight: normal;
    margin: 10px 0;
}

.input-group-btn .form-control {
    min-width: 240px;
}

.search-container.will-search {
    float: left;
    width: 100%;
}

    .search-container.will-search .search-input-group {
        max-width: 600px;
        margin: 0 auto;
        margin-bottom: 50px;
    }

.content-center .text-center {
    text-align: center;
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
}

.mandatory-field {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

    .mandatory-field span {
        color: #e34626;
        font-size: 17px;
    }

.form-body {
    float: left;
    width: 100%;
}

.slide-box {
    float: left;
    width: 100%;
}

.form-heading {
    margin-left: -15px;
    margin-right: -15px;
    background: #ebf5fc url(../images/faq-collapse.png) no-repeat right 15px center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
    padding: 10px;
    border-left: 5px solid #0063a7;
    margin-bottom: 10px;
}

    .form-heading.collapsed {
        background: #ebf5fc url(../images/faq.png) no-repeat right 15px center;
    }

    .form-heading:hover {
        cursor: pointer;
    }

.form-error .form-heading {
    background: #f9dad4 url(../images/error-collapse.png) no-repeat right 15px center;
    border-left: 5px solid #e34626;
}

    .form-error .form-heading.collapsed {
        background: #f9dad4 url(../images/error.png) no-repeat right 15px center;
    }

.form-error li {
    color: #e34626;
    margin: 10px 0 0;
}

.form-sub-heading {
    font-size: 16px;
    font-weight: bold;
    color: #0063a7;
    margin: 20px 0 20px 0;
}

.form-body .form-control {
    border: 1px solid #c2e0f5;
    box-shadow: none;
    border-radius: 0;
    height: 40px;
    color: #0063a7;
}

.form-control.calendar {
    background: url(../images/calendar-icon.jpg) right 10px center no-repeat;
}

.form-body .form-group {
    margin-bottom: 20px;
}

.form-group > p {
    font-size: 16px;
    color: #0063a7;
    margin-bottom: 30px;
}

.submission-note {
    display: inline-block;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    background-color: #ebf5fc;
}

    .submission-note > h2 {
        color: #0063a7;
        font-weight: bold;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

    .submission-note > h3 {
        color: #0063a7;
        font-weight: bold;
        padding-bottom: 10px;
        font-size: 1.5em;
        padding-bottom: 20px;
    }

    .submission-note > p {
        color: #3e4745;
        font-size: 16px;
    }

        .submission-note > p > strong {
            color: #0063a7;
        }

    .submission-note label {
        padding-top: 20px;
        font-size: 16px;
        color: #0063a7;
        font-weight: bold;
    }

.payment-important-note {
    display: inline-block;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    /*text-align: center;*/
    background-color: #ebf5fc;
}

.payment-important-note > h2 {
    color: #0063a7;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.payment-important-note > h3 {
    color: #0063a7;
    font-weight: bold;
    padding-bottom: 10px;
    font-size: 1.5em;
    padding-bottom: 20px;
}

.payment-important-note > p {
    color: #3e4745;
    font-size: 16px;
}

.payment-important-note > p > strong {
    color: #0063a7;
}

.payment-important-note label {
    padding-top: 20px;
    font-size: 16px;
    color: #0063a7;
    font-weight: bold;
}

.form-field-error {
    font-size: 0.9em;
    color: #e34626;
}

.form-body .form-group .form-group {
    margin: 0;
}

.form-body .control-label, .form-body label {
    font-weight: normal;
    color: #3e4745;
    font-size: 16px;
}

.data-table .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: none;
    background: #dde3e9;
    font-size: 16px;
}

.unformatted-address {
    display: none;
}

.will-drawn-by {
    background: #fbc9a6;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
    text-transform: none;
    color: #3e4745;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
}

    .will-drawn-by .radio-inline {
        margin-left: 25px;
        text-transform: none;
        color: #666;
        font-size: 16px;
    }

.Person_Who_Drew_Up .radio-inline {
    margin-left: 25px;
}

.form-body .form-group.mandatory .control-label {
    position: relative;
}

    .form-body .form-group.mandatory .control-label::after {
        content: "*";
        color: #e34626;
        margin-left: 2px;
    }

.data-table .table > thead > tr > th, .data-table .table > tbody > tr > td {
    padding: 12px 15px !important;
    border: 2px solid #fff;
}

.data-table .table > tbody > tr > td {
    background: #f8f9fb;
}

@media (max-width: 991px) {
    .navbar-default .navbar-brand img {
        max-width: 160px;
        margin-top: 8px;
    }

    .footer-links span {
        display: inline-block;
        margin: 5px 10px;
        font-size: 12px;
    }

        .footer-links span a, .social-links span {
            font-size: 12px;
        }

    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        padding-bottom: 25px;
    }
}

@media (max-width: 849px) {
    .Person_Who_Drew_Up .control-label {
        display: block;
    }

    .Person_Who_Drew_Up .radio-inline {
        margin-left: 0;
    }

        .Person_Who_Drew_Up .radio-inline + .radio-inline {
            margin-left: 25px;
        }
}

@media (max-width: 767px) {

    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        padding-bottom: 0;
    }

    @media (min-width: 768px) {

        .modal-dialog {
            width: 500px;
        }
    }

    .navbar-default .navbar-brand img {
        max-width: 140px;
        margin-top: 10px;
        margin-left: 8px;
    }

    .col-sm-4.table-cell.announcement {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: var(--announcement_base);
        color: var(--main_text);
        padding-left: 15px;
        overflow: auto;
        display: none;
    }

    .col-sm-4.table-cell.will-record {
        width: 50%;
        padding: 20px 25px;
    }

    .table-cell.will-record h2 br {
        display: none;
    }

    .table-cell.will-record h2 {
        font-size: 1.5em;
    }
    /*.notification::before{ display:none}
.close-ntification{ top:30px; color:#333333;}*/

    .navbar-header {
        float: left;
        margin-left: 75px !important;
    }

    .nav.navbar-nav.navbar-right.navbar-login {
        float: right;
    }

    .navbar .navbar-nav > li > a.login {
        margin-top: 0;
    }

    .navbar-default .navbar-brand {
        max-width: 130px;
        padding-bottom: 0;
        padding-top: 5px;
    }

    .navbar-toggle {
        position: absolute;
        left: 15px;
        border: none !important;
        background: none !important;
        padding: 0;
        top: 18px;
        font-size: 25px;
        margin: 0;
        color: #0063a7;
        line-height: 100%;
        width: 26px;
        height: 26px;
        z-index: 9999;
    }


        .navbar-toggle::after {
            content: "\e68e";
            font-family: 'themify';
        }

        .navbar-toggle.active::after {
            content: "\e646";
            font-family: 'themify';
        }

    .navbar-collapse {
        position: fixed;
        left: 0;
        height: 100% !important;
        width: 240px;
        background: #e34626;
        z-index: 999;
        top: 0;
        padding: 15px;
        overflow: auto;
        margin-left: -240px !important;
        transition: all .2s linear;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
    }

    body {
        position: relative;
        left: 0;
        transition: all .2s linear;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -o-transition: all .2s linear;
    }

        body.nav-open {
            left: 240px;
            height: 100%;
            overflow: hidden;
        }

    .navbar-collapse, .body {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .navbar-collapse.active {
            margin-left: -0px !important;
        }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #0063a7;
    }


    .announcement-icon {
        display: block;
        position: absolute;
        left: 55px;
        font-size: 25px;
        top: 17px;
        color: var(--highlight_1);
    }

    .navbar {
        border-radius: 0;
        border: none;
        height: 60px;
        background: #ffffff;
        margin: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        border-bottom: 1px solid #ddd;
    }



    .notification {
        padding: 80px 15px 10px 65px;
        background: rgba(131,76,158,1.0);
        color: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        height: 100%;
        /*text-shadow: 1px 1px #333333;*/
    }

        .notification::before {
            top: 80px;
            margin: 0;
        }

    .close-ntification {
        top: 30px;
    }

    .close-announcement {
        display: block;
        position: absolute;
        right: 15px;
        font-size: 1.8em;
        line-height: 100%;
        height: 25px;
        margin-top: -13px;
    }

    .article-summary, .article-details {
        padding-top: 0;
    }

    .article-details {
        margin-top: -10px;
    }

    .article-summary img {
        float: none;
        width: 100%;
        padding-top: 30px;
        padding-left: 0;
    }

    .mobile-footer-links {
        margin-top: 90px;
        display: block;
    }

        .mobile-footer-links ul {
            padding: 0;
            list-style: none;
        }

        .mobile-footer-links .social-links span:first-child {
            display: block;
            margin-top: 30px;
            margin-left: 0;
            color: #fbc9a6;
        }

        .mobile-footer-links .social-links p span {
            display: inline-block !important;
            margin: 0 !important;
        }

    .navbar .navbar-nav > li > a {
        padding: 10px 0;
        margin: 0;
        color: #ffffff !important;
    }

    .mobile-footer-links ul > li > a {
        padding: 7px 0;
        margin: 0;
        color: #fbc9a6;
        display: inline-block;
        text-decoration: none !important
    }

    .navbar-nav {
        margin: 0;
    }

    .mobile-footer-links .social-links span a span {
        color: #e34626 !important;
        background: #fbc9a6;
    }

    .navbar .navbar-nav > li > a.login {
        margin-top: 10px;
        padding: 10px 15px;
    }

    .copyright {
        height: 30px;
        padding-top: 0;
    }

    .footer-links span {
        display: none
    }

        .footer-links span.visible {
            display: block;
            text-align: center;
        }

    .pull-left.footer-links {
        width: 100%;
    }

    .copyright .social-links {
        display: none;
    }

    body {
        padding-top: 60px !important;
    }

    .navbar-collapse-overlay {
        position: fixed;
        left: 0;
        top: 0;
        background: rgba(255,255,255,0.60);
        width: 100%;
        height: 100%;
    }

    .login-box {
        z-index: 99999;
    }

    .login-main {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        margin-top: 0;
        left: 0;
        margin-left: 0;
        overflow: auto;
        padding-top: 10%;
    }

    .carousel-inner > .item > img {
        max-width: 120%;
        margin-left: -10%;
    }

    .carousel-control span {
        font-size: 24px;
        margin-top: -10px;
        left: 5px;
    }

    .carousel-control.right span {
        left: auto;
        right: 5px;
    }

    .will-search .input-group {
        display: block;
    }

    .search-container.will-search .form-control {
        margin-bottom: 2px;
    }

    .search-container.will-search .search-input-group {
        margin-bottom: 30px;
    }

    .search-container.will-search .btn.btn-search {
        border-radius: 0px;
        width: 100%;
    }

    .data-table.table-responsive {
        border: none;
    }

    .data-table table,
    .data-table thead,
    .data-table tbody,
    .data-table th,
    .data-table td,
    .data-table tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        .data-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    .data-table tr {
        border: 1px solid #ccc;
        border-bottom: 3px solid #0063a7;
        margin-bottom: 10px;
    }

    .data-table td {
        /* Behave  like a "row" */
        position: relative;
        border-bottom: medium none !important;
        white-space: normal;
        text-align: left;
    }

        .data-table td:first-child {
            border-top: none !important;
        }

        .data-table td::before {
            left: 0px;
            padding: 12px;
            padding-right: 10px;
            position: absolute;
            text-align: left;
            top: 0px;
            white-space: normal;
            width: 48%;
            height: 100%;
            background: #f8f9fb;
            font-weight: bold;
        }

        /*
	Label the data
	*/
        .data-table td::before {
            content: attr(data-title);
            padding-left: 10px;
        }

    .data-table .table tbody tr td {
        -moz-border-bottom-colors: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        border-color: currentcolor currentcolor #eee;
        border-image: none;
        border-style: none none solid;
        border-width: medium medium 1px;
        padding-left: 50% !important;
        position: relative;
        text-align: left;
        white-space: normal;
    }

    .data-table .table tbody tr td {
        min-height: 48px;
        white-space: normal;
    }

    .data-table .table tbody tr.no-border {
        border: none;
    }

        .data-table .table tbody tr.no-border .showing-licences {
            border: medium none;
            font-size: 16px;
            padding-left: 0;
        }

    .data-table .table tbody tr td {
        background: #ffffff;
    }

    .button-center .btn {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .data-table.table-responsive {
        border: none;
        margin-bottom: 0;
    }

    .content-center h2 span {
        margin: 20px 0 0 0;
    }

    .center-heading {
        font-size: 24px;
    }

    .processing-bar {
        margin-bottom: 32px;
    }

        .processing-bar ul li strong {
            display: none;
        }

        .processing-bar ul {
            position: relative;
        }

            .processing-bar ul li.active:nth-child(1)::after {
                content: "Select Case";
                background: #ebf5fc;
            }

            .processing-bar ul li.active:nth-child(2)::after {
                content: "Will Search Details";
                background: #e1effa;
            }

            .processing-bar ul li.active:nth-child(3)::after {
                content: "Confirm Submission";
                background: #c2e0f5;
            }

            .processing-bar ul li.active:nth-child(4)::after {
                content: "Payment";
                background: #aed5f1;
            }

            .processing-bar ul li.active:nth-child(5)::after {
                content: "Transaction Completion";
                background: #9acbee;
            }

            .processing-bar ul li::after {
                bottom: -42px;
                position: absolute;
                left: 0;
                width: 100%;
                padding: 10px;
                font-weight: bold;
                font-size: 1.2em;
            }

            .processing-bar ul li.active {
                border: none;
            }

    .top-heding {
        font-size: 15px;
    }

    .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 0;
        display: block;
        width: 100%;
    }

    .form-body .form-group .form-group {
        margin-bottom: 20px;
    }

    .form-heading {
        font-size: 17px;
        padding-right: 44px;
    }
}

@media (max-width: 549px) {

    .radio-inline {
        margin-top: 0;
        margin-left: 0 !important;
        display: block;
        width: 100%;
    }
}

@media (max-width: 413px) {

    .carousel-inner > .item > img {
        max-width: 140%;
        margin-left: -20%;
    }

    .carousel-control span {
        font-size: 16px;
        margin-top: -8px;
        left: 2px;
    }

    .carousel-control.right span {
        left: auto;
        right: 2px;
    }

    .col-sm-4.table-cell.will-record {
        display: block;
        width: 100%;
        padding: 25px 50px;
    }
}

@media (max-width: 349px) {

    .navbar-default .navbar-brand img {
        max-width: 100px;
        margin-top: 15px;
    }
}

.form-group ul {
    list-style: decimal;
    padding-left: 35px;
}

.act-btn {
    color: #333;
    font-size: 28px;
    display: inline-block;
    vertical-align: middle;
    line-height: 100%;
}

.slide_Individual, .Solicitor_Company_form, .Manual_Filling_form {
    display: none;
}

.user {
    padding: 10px;
    background: #0063a7;
    color: #ffffff;
    position: relative;
    text-align: right;
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .user {
        padding: 5px;
        font-size: 12px;
        text-align: center;
    }
}

.willLoginMain { 
   /* margin-top: 20px;*/
    text-align: center;
    background: #ffffff;
    padding: 25px; 
    border-radius: 5px;
    border: 2px solid #ddd;
    box-shadow: 0 0 8px 3px #333333;
}

.willLoginMainDesktop {
    width: 80%;
    margin: 20px auto;
    /*width: 580px;
    height: 340px;
    margin-left: 20%;
    margin-right: 20%;*/
}

.willLoginMainMobile {
    width: 100%;
    height: 100%;
    margin-left: 0%;
}

.willLoginBy {
    background: #f6f6f6;
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 5px;
}

    .willLoginBy a {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 5px;
        color: #ffffff;
        font-size: 20px;
        text-decoration: none;
        margin-right: 20px;
    }
        .willLoginBy a:last-child {
            float: right;
            padding: 10px 20px; 
            color: #0063a7;
            font-size: 13px;
            text-decoration:underline;
            margin-right: 63px; 
        }

    .willLoginBy a:hover, .willLoginBy a:focus {
        text-decoration: none
    }


.willLoginByMobile {
    background: #f6f6f6;
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 5px;
}

    .willLoginByMobile a {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 5px;
        color: #ffffff;
        font-size: 20px;
        text-decoration: none;
        margin:0px 20px 10px 0px;
        width:100%;
    }

        .willLoginByMobile a:last-child {
            /*float: right;
            padding: 10px 20px;*/
            color: #0063a7;
            font-size: 13px;
            text-decoration: underline;
            /*margin-right: 63px;*/
        }

        .willLoginByMobile a:hover, .willLoginByMobile a:focus {
            text-decoration: none
        }

.legalone {
    background: #0060a2;
}
.singpass {
    background: #e34626;
}
.corpass {
    background: #24b9a2;
}

.register-legalone {
    color: #0060a2;
    font-size: 10px;
    text-decoration: none;
}

.legaloneMobile {
    width: 100%;
    margin-bottom: 10px;
}

.singpassMobile {
    width: 100%;
    margin-bottom: 10px;
}

.corpassMobile {
    width: 100%;
    margin-bottom: 10px;
}

.register-legaloneMobile {
    width: 100%;
    margin-bottom: 10px;
}

.labelrelationship {
    font-weight: normal;
    color: #3e4745;
    font-size: 16px;
}

    .labelrelationship ul{
        font-weight: normal;
        color: #3e4745;
        font-size: 16px;
        float:none;
    }

        .labelrelationship ul li{
            margin-top:8px;
        }
.news-events-line {
    border-bottom: 1px solid black;
    position: absolute;
}



.user-login {
    background: #fff;
    /*border-top: 4px solid #005f9f;*/
    text-align: center;
    padding: 5px 0;
}

    .user-login div {
        position: relative;
        display: inline-block;
        width: 190px;
        padding: 30px 10px;
        min-height: 220px;
        margin: 10px 15px;
        border: 1px solid #005f9f;
        border-radius: 5px;
        vertical-align: top;
    }
        .user-login div::before {
           /* background: #005f9f none repeat scroll 0 0;
            border: 2px solid #005f9f;
            border-radius: 50%;
            color: #fff;
            content: "via";
            font-size: 20px;
            height: 50px;
            left: 50%;
            line-height: 44px;
            margin-left: -25px;
            position: absolute;
            top: -27px;
            width: 50px;*/
        }

        .user-login div p img {
            max-width: 160px;
            margin: 50px 0 0 0;
        }



.login-via-corppass:after {
  /*  content: "or";
    border-radius: 50%;
    line-height: 40px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    right: -55px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: #666;*/
}

.login-via-singpass:after {
  /*  content: "or";
    border-radius: 50%;
    line-height: 40px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    right: -55px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: #666;*/
}

.login-via-singpass-overlay:after {
    /*content: "or";
    border-radius: 50%;
    line-height: 40px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    right: -55px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: grey;
    opacity: .8;*/
}

.absolute-btn-disable {
    position: absolute;
    bottom: 50px;
    text-align: center;
    width: 100%;
    left: 0;
    margin: 0;
}

    .absolute-btn-disable a {
        text-decoration: none;
        background: #005f9f;
        border-radius: 3px;
        display: inline-block;
        color: #989898;
        font-size: 16px;
        font-weight: 400;
        padding: 10px 15px;
        cursor: not-allowed;
    }

    .absolute-btn-disable span {
        vertical-align: middle;
        margin-left: 10px;
        margin-top: -3px;
        display: inline-block;
    }

.absolute-btn {
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%;
    left: 0;
    margin: 10px 0px;
}

    .absolute-btn a {
        text-decoration: none;
        background: #005f9f;
        border-radius: 3px;
        display: inline-block;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        padding: 10px 10px;
    }

        .absolute-btn a:hover {
            background: #17a49c;
        }

    .absolute-btn span {
        vertical-align: middle;
        margin-left: 10px;
        margin-top: -3px;
        display: inline-block;
    }

.via-sal {
    font-weight: 600;
    color: #005f9f;
    font-size: 25px;
    margin: 10px 0;
}

    .via-sal span {
        display: inline-block;
        vertical-align: middle;
        line-height: 60px;
        text-align: center;
        height: 60px;
        width: 60px;
        background: #005f9f;
        color: #fff;
        font-size: 20px;
        margin-top: -6px;
        border-radius: 50%;
    }

.create-account {
    position: absolute;
    bottom: 10px;
    margin: 10px 2px 10px 80px;
    font-size: 12px;
}