/*============Custom fonts============*/

@font-face {
    font-family: 'Merlo-RoundBold';
    src: url('../fonts/Merlo-RoundBold.woff2') format('woff2'), url('../fonts/Merlo-RoundBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('~/content/fonts/OpenSans-Bold.woff2') format('woff2'), url('~/content/fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'), url('../fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
/*============Common styles============*/

html,
body {
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-family: 'Open Sans';
    height: 100%;
    letter-spacing: 1px;
}
/*body{
    background: #9fbbd0; 
}
    */
.clear {
    clear: both;
}

form {
    height: 100%;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.hide-desktop {
    display: none!important;
}

.pos-relative {
    position: relative;
}

.page-wrapper {
    width: 100%;
    background: url(../images/loginpageBackground.png) no-repeat;
    background-size: cover;
    background-position: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-wrapper {
    width: 92%;
    margin: 0 auto;
}

header#login-header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 92%;
}

.logo {
    margin: 0 auto;
    text-align: center;
}

div.logo img {
    max-width:200px;
    max-height:100px;
}
/*============login section============*/

#login-section {
    position: relative;
}

.login-wrapper {
    background: #fff;
    width: 38.5%;
    display: inline-block;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    position: absolute;
    z-index: 1;
    left: 47px;
    top: -25px;
    /*-webkit-box-shadow: 0 21px 8px -6px #7ea4be;
    -moz-box-shadow: 0 21px 8px -6px #7ea4be;
    box-shadow: 0 21px 8px -6px #7ea4be;*/
}

    .login-wrapper h1 {
        font-size: 32px;
        color: #202e66;
        padding-bottom: 23px;
        border-bottom: 2px solid #f2f2f2;
        display: inline-block;
        text-align: center;
        margin: 0 auto;
        text-transform: uppercase;
        padding-left: 5%;
        padding-right: 5%;
        letter-spacing: 2px;
    }

#login-form {
    width: 80%;
    margin: 20px auto 0;
}

.floating-labels {
    position: relative;
    margin-bottom: 23px;
}

    .floating-labels label.flabel {
        color: #888;
        left: 0;
        font-weight: normal;
        position: absolute;
        font-size: 13px !important;
        top: 8px;
        z-index: -1;
        -moz-transition: all, 150ms;
        -o-transition: all, 150ms;
        -webkit-transition: all, 150ms;
        transition: all, 150ms;
    }

    .floating-labels.typing label.flabel {
        color: #0F783B;
        font-size: 12px !important;
        top: -12px;
        left: 0;
    }

.login-username input[type="text"],
.login-passowrd input[type="password"] {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 2px solid #bfbfbf;
    padding: 5px 0;
    font-size: 14px;
    line-height: 25px;
    color: #1A315D;
}
/*========================= place holder style=========*/
::placeholder {
    color: #c9c9c9;
    letter-spacing: 1px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c9c9c9;
    letter-spacing: 1px;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #c9c9c9;
    letter-spacing: 1px;
}
/*============Remember password============*/
.remember-password {
    text-align: left;
    position: relative;
    display: block;
    width: 50%;
    float: left;
    font-size: 14px;
}

    .remember-password label {
        padding-left: 25px;
        color: #252525;
        font-size: 14px;
    }

input[type="checkbox"] {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
    margin-left: -20px;
}

.helper {
    position: absolute;
    top: -4px;
    left: -5px;
    cursor: pointer;
    display: block;
    font-size: 16px;
    user-select: none;
    color: #e7e7e7;
}

    .helper:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        margin: 4px;
        width: 15px;
        height: 15px;
        transition: transform 0.28s ease;
        border: 2px solid #cccccc;
    }

    .helper:after {
        content: '';
        display: block;
        width: 10px;
        height: 5px;
        border-bottom: 2px solid #0F783B;
        border-left: 2px solid #0F783B;
        -webkit-transform: rotate(-45deg) scale(0);
        -moz-transform: rotate(-45deg) scale(0);
        -ms-transform: rotate(-45deg) scale(0);
        transform: rotate(-45deg) scale(0);
        position: absolute;
        top: 8px;
        left: 8px;
    }

input[type="checkbox"]:checked ~ .helper::before {
    color: #0F783B;
    border: 2px solid #0F783B;
}

input[type="checkbox"]:checked ~ .helper::after {
    -webkit-transform: rotate(-45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    -ms-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}

.checkbox label {
    min-height: 24px;
    padding-left: 35px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    vertical-align: sub;
}

input[type="checkbox"]:focus + label::before {
    outline: rgb(59, 153, 252) auto 5px;
}
/*============Forgot password============*/
.forgot-password-wrapper {
    float: right;
}

    .forgot-password-wrapper a {
        color: #615f5f;
        font-size: 14px;
        text-decoration: none;
    }

        .forgot-password-wrapper a:hover,
        .forgot-password-wrapper a:active,
        .forgot-password-wrapper a:focus {
            color: #0f783c;
            text-decoration: none;
        }
/*============Login button============*/
.login-button {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #0F783B;
    color: #fff;
    border: 0px;
    font-size: 14px;
    margin-top: 31px;
}

    .login-button:hover {
        background: #1a315d;
        cursor: pointer;
    }
/*============Registration============*/
.registration {
    min-height: 320px;
    background: #1a315d;
    width: 73%;
    top: 23px;
    /*-webkit-box-shadow: 0 21px 8px -6px #7ea4be;
    -moz-box-shadow: 0 21px 8px -6px #7ea4be;
    box-shadow: 0 21px 8px -6px #7ea4be;*/
}

.registration-left {
    float: left;
    width: 63%;
}

.registration-right {
    float: right;
    width: 33%;
    color: #fff;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 4%;
    padding-right: 4%;
}

    .registration-right h3 {
        margin-top: 0px;
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 15px;
    }

.register-content {
    padding-bottom: 30px;
}

.register-now {
    border: 1px solid #fff;
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 17px;
    padding-bottom: 17px;
    color: #fff;
    text-decoration: none;
}

    .register-now:hover {
        background: #0f783c;
        color: #fff;
        text-decoration: none;
        border-color: #0f783c;
    }
/*============Footer Section ============*/
footer {
    width: 100%;
    background: rgba(234, 240, 244, 0.8);
    position: fixed;
    bottom: 0;
    color: #3d3e3e;
    padding-top: 16px;
    padding-bottom: 16px;
    z-index: 2;
    font-size: 12px;
    letter-spacing: 0px;
}

    footer .inner-wrapper {
        width: 84%;
    }

        footer .inner-wrapper a {
            color: #1A315D;
            text-decoration: none;
            font-weight: bold;
        }

            footer .inner-wrapper a:hover {
                text-decoration: underline;
            }

.copyright {
    float: left;
}

.footer-rightside-links {
    float: right;
}

    .footer-rightside-links ul {
        display: inline-block;
        margin: 0;
    }

        .footer-rightside-links ul li {
            float: left;
            list-style: none;
            padding-right: 2px;
            padding-right: 2px;
        }

            .footer-rightside-links ul li a {
                color: #252525;
                text-decoration: none;
            }

                .footer-rightside-links ul li a:hover,
                .footer-rightside-links ul li a:active,
                .footer-rightside-links ul li a:focus {
                    color: #0f783c;
                    text-decoration: none;
                }

.popup-link {
    cursor: pointer;
}

.hidden {
    display: none;
}

.popup-wrapper {
    text-align: left;
    max-width: 1000px;
    position: fixed !important;
    top: 10% !important;
    overflow: hidden;
    padding: 25px;
}

    .popup-wrapper:before,
    .popup-wrapper:after {
        content: "";
        position: absolute;
        left: 25px;
        right: 25px;
        height: 25px;
        background: #fff;
    }

    .popup-wrapper:before {
        top: 2px;
    }

    .popup-wrapper:after {
        bottom: 2px;
    }

.custom-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #1A315D;
}

.popup-container {
    background: #fff;
    height: 100%;
    padding: 0 25px;
    overflow: auto;
}

.popup-wrapper h2 {
    margin-top: 0;
    color: #0F783B;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
}

.popup-wrapper h4 {
    color: #1A315D;
    font-size: 16px;
    margin-bottom: 10px;
}

.popup-wrapper p {
    color: #777;
    margin-top: 0;
}

.popup-close {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/close.svg) no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0px;
    top: 0;
    cursor: pointer;
}

/*============Dashboard ============*/
body.dashboard {
    background: #fff!important;
    overflow: visible!important;
}

.top-header {
    background: #fff;
    border-bottom: 2px solid #E7E9ED;
}

.no-margin-grid .left-menu-grid_3.grid_3 {
    width: 20%;
}

.no-margin-grid .left-menu-grid_9.grid_9 {
    width: 80%;
}

.no-margin-grid.left-menu-grid_8.grid_8 {
    margin: 0px;
    width: 65.667%;
}

.no-margin-grid.left-menu-grid_4.grid_4 {
    margin: 0px;
    width: 32.333%;
}

.profile-picture {
    padding-top: 20px;
    padding-left: 20px;
}

    .profile-picture img {
        border-radius: 50%;
        width: 54px;
        float: left;
    }

.welcome-message {
    float: left;
    position: relative;
}

    .welcome-message h2 {
        color: #2A4B88;
        font-size: 18px;
        padding-left: 10px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

        .welcome-message h2 span {
            color: #BEC1CA;
            position: relative;
        }

        .welcome-message h2 .dropdown-submenu:after {
            /* position: absolute;*/
            content: "\e252";
            font-family: 'Glyphicons Halflings';
            bottom: 11px;
            font-size: 12px;
            color: #2A4B88;
            /*left: 89px;*/
        }

        .welcome-message h2 .dropdown-submenu.caret-change:after {
            /*position: absolute;*/
            content: "\e253";
            font-family: 'Glyphicons Halflings';
            bottom: 11px;
            font-size: 12px;
            color: #2A4B88;
            /*right: 15px;
    top: 12px;*/
        }

.main-header-submenu {
    position: absolute;
    top: 40px;
    z-index: 40;
    background: #fff;
    right: 0;
    width: 188px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 8px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 1px 8px 2px rgba(0,0,0,0.4);
    box-shadow: 0 1px 8px 2px rgba(0,0,0,0.4);
    display: none;
}

    .main-header-submenu.header-menu-opened {
        display: block;
    }

    .main-header-submenu ul {
        padding-left: 0;
    }
        /*
.main-header-submenu:after{
    position: absolute;
    content: "";
    background: #fff;
    border-color: #000 #000 #000 #000;
    width: 16px;
    right:3px;
    top: -8px;
    height: 17px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
} */
        .main-header-submenu ul li {
            list-style: none;
            padding: 10px;
            text-align: center;
        }

            .main-header-submenu ul li a {
                color: #264786;
            }

            .main-header-submenu ul li a {
                color: #264786;
                text-decoration: none;
            }

.welcome-message p {
    color: #BEC1CA;
    font-size: 14px;
    margin-top: 0;
    display: inline-block;
    padding-left: 10px;
}

    .welcome-message p span {
        color: #2A4B88;
        font-weight: bold;
    }

.inner-page-logo {
    padding-top: 22px;
    text-align: center;
}

.time-expire {
    padding-top: 20px;
}

.expiring-warning {
    margin-top: 4px;
    margin-bottom: 0px;
    font-size: 10px;
}

.expiring-warning {
    float: left;
}

.time-to-expire {
    float: left;
    border: 1px solid #ccc !important;
    border-radius: 10px;
    margin-left: 7px;
    padding: 2px;
    font-size: 10px;
    width: 35px;
}

.logout {
    margin-top: 20px;
    width: 100px;
    position: relative;
}

    .logout a {
        border: 1px solid #264786;
        text-align: center;
        padding: 5px 10px;
        border-radius: 50px;
        color: #fff;
        background: #264786;
        position: relative;
        padding-left: 34px;
        width: 100px;
    }

        .logout a:before {
            position: absolute;
            content: '';
            left: 10px;
            background: url(../images/logout.png);
            width: 16px;
            height: 16px;
            background-size: 16px;
        }

.content-section .left-menu-grid_3.grid_3 {
    margin: 0px;
}
/*====================== left menu scrollbar======================*/
::-webkit-scrollbar {
    width: 12px;
    height: 5px;
}

::-webkit-scrollbar-track {
    border: 1px solid #182E54;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #182E54;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #182E54;
    }
/*====================== left side bar======================*/
.left-side-bar {
    background-color: #264786;
}

.mainmenu, .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mainmenu li {
        border-bottom: 1px solid #fff;
    }

    .submenu li {
        border-bottom: 0px;
    }

    .mainmenu li a {
        padding-left: 52px;
    }

    .mainmenu .category, .mainmenu a {
        display: block;
        background-color: #264786;
        text-decoration: none;
        padding: 12px 10px;
        color: #fff;
        padding-left: 52px;
        line-height: 18px;
    }

.innermenu.category {
    background: #1A315D;
}

.mainmenu .category {
    position: relative;
    cursor: pointer;
}
/*==========up and down arrow in the left side bar=========*/
.category:after {
    position: absolute;
    content: "\e252";
    font-family: 'Glyphicons Halflings';
    bottom: 14px;
    font-size: 12px;
    color: #fff;
    right: 15px;
    top: 12px;
}

.category.open:after {
    position: absolute;
    content: "\e253";
    font-family: 'Glyphicons Halflings';
    bottom: 11px;
    font-size: 12px;
    color: #fff;
    right: 15px;
    top: 12px;
}
/*==========icons in the left side bar=========*/
.icon-dashboard {
    position: relative;
}

    .icon-dashboard:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Dashboard.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 15px;
        top: 15px;
    }
.icon-contact {
    position: relative;
}

    .icon-contact:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Contact.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }	
	
.icon-history {
    position: relative;
}

    .icon-history:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/History.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }	

.icon-message {
    position: relative;
}

    .icon-message:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Message.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }
.icon-report {
    position: relative;
}

    .icon-report:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Report.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }

.icon-score {
    position: relative;
}

    .icon-score:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Scorecard.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }

.icon-vendors {
    position: relative;
}

    .icon-vendors:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Vendors.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }

.accounting:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Accounting.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 11px;
}

.property {
    position: relative;
}

    .property:before {
        content: '';
        position: absolute;
        left: 20px;
        background: url(../images/Property.svg)no-repeat;
        background-size: 20px;
        width: 20px;
        height: 25px;
        top: 10px;
    }

.address {
    position: relative;
}

.address:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Address.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 25px;
    top: 10px;
}

.product {
    position: relative;
}

.product:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Product.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 10px;
}

.document-library {
    position: relative;
}

.document-library:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Document.svg)no-repeat;
    background-size: 20px;
    width: 25px;
    height: 25px;
    top: 10px;
}

.communication {
    position: relative;
}

.communication:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Communication.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 10px;
}

.map {
    position: relative;
}

.map:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Maps.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 10px;
}

.production-statistics {
    position: relative;
}

.production-statistics:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Production.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 10px;
}

.profile {
    position: relative;
}

.profile:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Profile.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 10px;
}

.administrator {
    position: relative;
}

.administrator:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Administrator.svg)no-repeat;
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 10px;
}

.orders {
    position: relative;
}

.orders:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(../images/Order.svg)no-repeat;
    background-size: 18px;
    width: 20px;
    height: 27px;
    top: 9px;
}
/*==========main menu submenu color=========*/
.mainmenu a:hover {
    background-color: #0D3279;
}

.left-side-bar .submenu a {
    background-color: #1a315d;
}

    .left-side-bar .submenu a:hover {
        background-color: #142F63;
    }

.submenu {
    display: none;
}

    .submenu li:hover .submenu.inner-submenu {
        display: block;
        max-height: 400px;
    }
    /*==========inner submenu=========*/
    .submenu.inner-submenu {
        overflow: hidden;
        max-height: 0;
        -webkit-transition: all 0.5s ease-out;
        padding-left: 0;
    }

        .submenu.inner-submenu li {
            list-style: none;
        }

            .submenu.inner-submenu li a {
                background: #090d31;
                padding-left: 70px;
                -webkit-transition: all 0.5s ease-out;
            }

                .submenu.inner-submenu li a:hover {
                    background: #0c103b;
                }

/*============Top Menu ============*/
.dashboard .left-menu-grid_9.grid_9 {
    margin-left: 0;
    margin-right: 0px;
}

nav {
    position: relative;
    margin: 0 auto;
}

#topheadermenu,
#topheadermenu ul,
#topheadermenu ul li,
#topheadermenu ul li a,
#topheadermenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    #topheadermenu ul {
        margin-top: 0;
        margin-bottom: 0px;
        padding-left: 0;
        float: left;
        width: 685px;
    }

    #topheadermenu #dvlinks {
        margin-top: 7px;
        padding: 0;
        float: right;
        width: 395px;
    }

        #topheadermenu #dvlinks table {
            float: right;
        }

    #topheadermenu ul li {
        position: relative;
    }

        #topheadermenu ul li + li:before {
            content: " | ";
            position: absolute;
            top: 15px;
            left: 0;
            color: #fff;
        }

        #topheadermenu ul li + li ul li:before {
            content: '';
        }

        #topheadermenu ul li + li:hover:before {
            color: #18A253!important;
        }

    #topheadermenu:after,
    #topheadermenu > ul:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }

    #topheadermenu #head-mobile {
        display: none;
    }

#topheadermenu {
    background: #19BC5F;
}

    #topheadermenu > ul > li {
        float: left;
        background: #19BC5F;
        /*width: 16.667%;*/
        text-align: center;
    }

        #topheadermenu > ul > li a {
            padding: 18px 20px;
            font-size: 12px;
            letter-spacing: 1px;
            text-decoration: none;
            color: #fff;
        }

        #topheadermenu > ul > li > a.logo {
            padding: 7px 10px;
        }

        #topheadermenu > ul > li:hover a,
        #topheadermenu ul li.active a {
            color: #ddd;
        }

        #topheadermenu > ul > li:hover,
        #topheadermenu ul li.active:hover,
        #topheadermenu ul li.active,
        #topheadermenu ul li.has-sub.active:hover {
            background: #18A253!important;
            -webkit-transition: background .3s ease;
            -ms-transition: background .3s ease;
            transition: background .3s ease;
        }

        #topheadermenu > ul > li.has-sub > a {
            padding-right: 30px;
        }

    #topheadermenu ul ul.submenu {
        position: absolute;
        left: -9999px;
        z-index: 90;
    }

    #topheadermenu > ul > li:hover .submenu {
        display: block;
        left: 0;
        min-width: 200px;
    }

    #topheadermenu ul ul.submenu li {
        background: #16AB56!important;
    }

    #topheadermenu ul ul[style] {
        display: block!important;
    }

    #topheadermenu ul ul ul {
        margin-left: 100%;
        top: 0;
    }

    #topheadermenu ul ul {
        width: 100%;
        z-index: 99;
        left: 0;
    }

        #topheadermenu ul ul li a {
            border-bottom: 1px solid rgba(150,150,150,0.15);
            padding: 11px 6px;
            font-size: 12px;
            text-decoration: none;
            color: #fff;
            font-weight: 400;
        }

        #topheadermenu ul ul li:last-child > a,
        #topheadermenu ul ul li.last-item > a {
            border-bottom: 0;
        }

        #topheadermenu ul ul li:hover > a,
        #topheadermenu ul ul li a:hover {
            color: #ddd;
        }

        #topheadermenu ul ul li.has-sub > a:after {
            position: absolute;
            top: 16px;
            right: 11px;
            width: 8px;
            height: 2px;
            display: block;
            background: #ddd;
            content: '';
        }

        #topheadermenu ul ul li.has-sub > a:before {
            position: absolute;
            top: 13px;
            right: 14px;
            display: block;
            width: 2px;
            height: 8px;
            background: #ddd;
            content: '';
            -webkit-transition: all .25s ease;
            -ms-transition: all .25s ease;
            transition: all .25s ease;
        }

        #topheadermenu ul ul > li.has-sub:hover > a:before {
            top: 17px;
            height: 0;
        }

        #topheadermenu ul ul li.has-sub:hover,
        #topheadermenu ul li.has-sub ul li.has-sub ul li:hover {
            background: #19BC5F;
        }

        #topheadermenu ul ul ul li.active a {
            border-left: 1px solid #fff;
        }

    #topheadermenu > ul > li.has-sub > ul > li.active > a,
    #topheadermenu > ul ul > li.has-sub > ul > li.active > a {
        border-top: 1px solid #fff;
    }

.top-navigation .category:after, .top-navigation .category.open:after {
    content: '';
}

.top-navigation .category {
    padding-top: 18px;
    padding-bottom: 16px;
    color: #fff;
    cursor: pointer;
}

.left-side-bar .submenu-button {
    display: none;
}

.top-navigation {
    background: #19BC5F;
}

ul.back-button li {
    float: left;
    color: #fff;
    list-style: none;
    padding: 16px 14px;
    position: relative;
}

    ul.back-button li a {
        color: #fff;
    }

    ul.back-button li:before {
        content: '';
        background: url(../images/uTurnArrow.png);
        background-size: 14px;
        width: 14px;
        height: 14px;
        position: absolute;
        top: 17px;
        left: -5px;
    }

    ul.back-button li a:hover {
        text-decoration: none;
    }
/*============footer style ================*/
.footer {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
    background: #264786;
    color: #fff;
}

    .footer p {
        color: #fff;
        margin-bottom: 0;
        font-size: 11px;
    }
/*============Button style overwrite================*/
.left-side-bar .submenu-button {
    background: none;
    border-radius: 0;
    border-style: solid;
    border-width: 0;
    border-color: #111111;
    color: #FFFFFF !important;
    padding: 0;
    box-shadow: 0 0 0;
}
/*======================= Dashboard changed Content section========================================*/
.inner-content-change {
    background: #E7E9ED;
}
/*========================= Search section ===================================*/
.search-bar {
    width: 100%;
}

.search-right {
    padding-top: 20px;
    padding-bottom: 20px;
    float: right;
}

.search {
    padding: 20px 0;
}

.searchTerm .x-form-text-wrap-default {
    border: none;
}

.searchTerm input[type='text'] {
    border: 1px solid #C3CAD8 !important;
    padding: 5px 5px 5px 16px !important;
    border-radius: 15px !important;
    outline: none;
    color: #9DBFAF;
    width: 100%;
}

.searchTerm:focus {
    color: #C3CAD8;
}

.searchButton {
    position: absolute;
    right: 40px;
    top: 0;
    width: 40px;
    height: 31px;
    border: 0px;
    /*background: url(../images/search.png)no-repeat;*/
    background: transparent !important;
    background-position: 10px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

#searchcontent {
    position: absolute;
    right: 0;
    z-index:5000;
}

.search-box {
    width: 65%;
    float: right;
    position: relative;
}

.btn-advanced-search {
    width: 39px;
    height: 30px;
    background: #19BC5F;
    float: right;
    border-radius: 16px;
    border: 1px solid #E7E9ED;
    text-align: center;
    margin-left: 5px;
}

    .btn-advanced-search:hover {
        background: #19BC5F;
    }
/*=========== tabbed menu section=======*/
.tabbed-menu {
    background: #fff;
    border-radius: 5px;
    padding-bottom: 30px;
    padding-top: 30px;
    overflow: hidden;
}

    .tabbed-menu ul {
        padding-left: 0px;
    }

.menu-section {
    float: left;
    margin: 10px;
    background: #F4F4F4;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 8px 2px #ddd;
    -moz-box-shadow: 0 1px 8px 2px #ddd;
    box-shadow: 0 1px 8px 2px #ddd;
    list-style: none;
    width: 80px;
    height: 90px;
    text-align: center;
}
/*============Media Query ============*/
@media screen and (max-width:450px) {
    #searchcontent {
        position: initial;
        right: initial;
    }

    header {
        position:initial !important;
    }
}

/*@media screen and (min-width:769px) {
    .left-side-bar {
        overflow-x: auto;
    }
}*/

@media screen and (max-width:768px) {
}

@media screen and (min-width:1201px) {
    .page-wrapper {
        height: 100%;
    }
}

@media screen and (max-width:1100px) {
    .popup-close {
        right: 4px;
    }
}

@media screen and (min-width:891px)and (max-width:945px) {
    .remember-password,
    .forgot-password-wrapper {
        font-size: 13px;
    }

    .registration {
        top: 1px;
    }

    .login-wrapper {
        left: 0;
        top: -6px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width:768px) {
    .mobile-hide {
        display: none!important;
    }

    .mobile-full-width {
        width: 100%!important;
    }

    .hide-desktop {
        display: block!important;
    }

    .top-header {
        background: #fff;
        border-bottom: 0px;
    }

    .profile-picture {
        padding-top: 0;
        padding-left: 2px;
    }

    .left-side-bar {
        background: #fff;
    }

    .mainmenu, .mobile-bottom-menu {
        display: none!important;
    }

        .mainmenu.menu-opened, .mobile-bottom-menu.menu-opened {
            display: block!important;
            -webkit-transition: all .3s ease;
            -ms-transition: all .3s ease;
            transition: all .3s ease;
        }

    /*============top menu=======================*/

    nav {
        width: 100%;
    }

    #topheadermenu {
        width: 100%;
    }

        #topheadermenu ul {
            width: 100%;
        }

            #topheadermenu ul li {
                width: 100%;
                border-top: 1px solid #fff;
            }

                #topheadermenu ul li:hover {
                    background: #19BC5F;
                }

            #topheadermenu ul ul li,
            #topheadermenu li:hover > ul > li {
                height: auto;
            }

            #topheadermenu ul li + li:before {
                content: '';
            }

            #topheadermenu ul li a,
            #topheadermenu ul ul li a {
                width: 100%;
                border-bottom: 0;
            }

        #topheadermenu > ul > li {
            float: none;
        }

        #topheadermenu ul ul li a {
            padding-left: 25px;
        }

        #topheadermenu ul ul li {
            background: #19BC5F!important;
        }

            #topheadermenu ul ul li:hover {
                background: #19BC5F!important;
            }

        #topheadermenu ul ul ul li a {
            padding-left: 35px;
        }

        #topheadermenu ul ul li a {
            color: #fff;
            background: #137D41;
            padding-left: 70px;
        }

        #topheadermenu ul ul li:hover > a,
        #topheadermenu ul ul li.active > a {
            color: #fff;
        }

        #topheadermenu ul ul,
        #topheadermenu ul ul ul {
            position: relative;
            left: 0;
            width: 100%;
            margin: 0;
            text-align: left;
        }

            #topheadermenu > ul > li.has-sub > a:after,
            #topheadermenu > ul > li.has-sub > a:before,
            #topheadermenu ul ul > li.has-sub > a:after,
            #topheadermenu ul ul > li.has-sub > a:before {
                display: none;
            }

        #topheadermenu > ul > li div, #topheadermenu > ul > li a {
            text-align: left;
            padding-left: 42px;
        }

    #head-mobile {
        display: block;
        color: #ddd;
        font-size: 12px;
        font-weight: 700;
    }

    .left-side-bar .submenu-button {
        display: block;
        width: 55px;
        height: 46px;
        position: absolute;
        right: 3px;
        top: -60px!important;
        cursor: pointer;
        z-index: 12399994;
    }

        .left-side-bar .submenu-button:after {
            position: absolute;
            top: 20px;
            right: 4px;
            display: block;
            height: 6px;
            width: 30px;
            border-top: 3px solid #264786;
            border-bottom: 3px solid #264786;
            content: '';
        }

        .left-side-bar .submenu-button:before {
            -webkit-transition: all .3s ease;
            -ms-transition: all .3s ease;
            transition: all .3s ease;
            position: absolute;
            top: 10px;
            right: 4px;
            display: block;
            height: 3px;
            width: 30px;
            background: #264786;
            content: '';
        }

        .left-side-bar .submenu-button.change-close-button:after {
            top: 13px;
            border: 0;
            height: 25px;
            width: 24px;
            background: url(../images/close-menu-blue.png);
        }

        .mainmenu{
    height: auto;
}
.left-side-bar{
    position: relative;
}
.left-side-bar:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right:0 ;
    bottom: 0;
    background: #264786;
    z-index: -1;    
}


@media screen and (min-width:769px){
    .mainmenu{
        padding-bottom: 13px;
    }
}
@media screen and (min-width:769px){
         .left-side-bar{
              background: #264786;
        }
}


    .submenu-button.change-close-button:before {
        top: 23px;
        background: #fff;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #topheadermenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #444;
        height: 46px;
        width: 46px;
        cursor: pointer;
    }

        #topheadermenu .submenu-button.submenu-opened {
            background: #18A253;
        }

    #topheadermenu ul ul .submenu-button {
        height: 34px;
        width: 34px;
    }

    #topheadermenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #ddd;
        content: '';
    }

    #topheadermenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px;
    }

    #topheadermenu .submenu-button.submenu-opened:after {
        background: #fff;
    }

    #topheadermenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #ddd;
        content: '';
    }

    #topheadermenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px;
    }

    #topheadermenu .submenu-button.submenu-opened:before {
        display: none;
    }

    #topheadermenu ul ul ul li.active a {
        border-left: none;
    }

    #topheadermenu > ul > li.has-sub > ul > li.active > a,
    #topheadermenu > ul ul > li.has-sub > ul > li.active > a {
        border-top: none;
    }

    #topheadermenu ul li + li ul li:before {
        content: '';
    }
}

@media screen and (max-width:767px) {
    .floating-labels label.flabel {
        top: 12px;
    }

    .copyright {
        float: none;
    }

    .footer-rightside-links {
        float: left;
    }

        .footer-rightside-links ul {
            padding-left: 0;
        }

    .popup-wrapper {
        top: 25px !important;
        bottom: 25px !important;
    }
}

@media screen and (max-width:890px) {
    .inner-wrapper {
        display: block;
    }

    .login-wrapper {
        width: 100%;
        left: 0;
        position: relative;
        margin-bottom: 30px;
    }

    #login-form {
        margin: 20px auto 10px;
    }

    .registration {
        position: relative;
        width: 100%;
        min-height: 100%;
        padding-bottom: 10px;
    }

    .login-wrapper,
    .registration {
        box-shadow: 0 0 0;
    }

    .registration-left {
        display: none;
    }

    .registration-right {
        width: 80%;
        padding-right: 10%;
        padding-right: 10%;
    }

    footer {
        position: relative;
        margin-top: 30px;
    }

        footer .inner-wrapper {
            width: 92%;
        }
}

@media screen and (min-width:2000px) {
    .registration {
        width: 51%;
    }

    .inner-wrapper {
        display: block;
        height: 100%;
    }

    .login-wrapper {
        width: 26.5%;
    }

    #login-section {
        margin-top: 10%;
    }
}

@media screen and (min-width:1500px) {
    .content-section .grid_3 {
        width: 15%;
    }

    .no-margin-grid .grid_9 {
        width: 85%;
    }
}

@media screen and (max-width:1200px) {
    .page-wrapper {
        justify-content: flex-start;
    }

    header {
        position: relative;
        margin: 0 auto;
    }

    .inner-wrapper {
        margin: 30px auto 60px;
    }

    footer {
        position: relative;
    }

        footer .inner-wrapper {
            margin: 0 auto;
        }
}

@media screen and (max-width:991px) and (min-width:769px) {
    #topheadermenu > ul > li {
        width: auto!important;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }

    .no-margin-grid .grid_3 {
        width: 25%;
    }

    .no-margin-grid .grid_9 {
        width: 75%;
    }

    .category:after {
        right: 0;
        bottom: 14px;
    }
}

@media screen and (max-width:1024px) and (min-width:769px) {

    /*.time-expire{
        padding-top:12%;
    }*/
}

@media screen and (max-width:1400px) and (min-width:769px) {
    /*.logout:before{
        left:18px;
    }*/
    .logout {
        text-align: right;
        width: 100%;
    }

    .time-expire {
        float: right;
        padding-right: 3px;
    }
}

@media screen and (max-width:1024px) and (min-height:667px) {
    .page-wrapper {
        height: 100%;
        justify-content: center;
    }

    /*header {
        position: absolute;
        margin: 0 auto;
    }*/

    .inner-wrapper {
        margin: 0 auto;
    }

    footer {
        position: absolute;
    }
}

@media screen and (max-height:800px) {
    .popup-wrapper {
        bottom: 10% !important;
    }
}

@media screen and (min-height:801px) {
    .popup-wrapper {
        height: 775px;
    }
}

.section-border {
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border: none;
    margin-bottom: 10px;
}

body[style] {
    overflow: initial !important;
}

.x-body,
button,
input,
select,
textarea,
p,
a,
ul li {
    font-family: 'Open Sans', sans-serif!important;
}

ul.shortcut-list li {
    border: 0;
}

.block-border {
    padding: 0;
    box-shadow: 0 0 0;
    background: #ddd;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border: none;
    margin-bottom: 10px;
}

.block-content,
.x-panel-default,
.x-panel-header-default {
    border-color: #ddd;
}

.x-panel-header-default {
    background-color: #f9f9f9;
    background-image: none;
    border: 0px;
}

.x-panel-body-default {
    border-color: #eee;
}

.x-form-text-default {
    background-image: none;
}

.block-content {
    margin-bottom: 10px;
}

.block-header {
    background: #f9f9f9;
    border: #eee;
    border-bottom: 0;
    margin-bottom: 1px;
    border-radius: 5px 5px 0 0;
}

.block-header2 {
    background: #f9f9f9;
    border: #eee;
    border-bottom: 0;
    margin-bottom: 1px;
    border-radius: 5px 5px 0 0;
}

.x-autocontainer-innerCt {
    background: transparent;
}

.x-panel-default-framed {
    background-color: #ffffff;
}

.x-toolbar-default {
    background-image: none!important;
    background-color: #f9f9f9;
    border-color: #eee;
}

.x-grid-header-ct {
    border-color: #c5c5c5;
    border-bottom-color: #c5c5c5;
}

.x-menu-default {
    border-color: #ddd;
}

.x-toolbar-default .x-toolbar-separator-horizontal {
    border-left-color: #eee;
    border-right-color: #eee;
}

.block-border .block-content {
    box-shadow: 0 0 0;
}

.block-content {
    border-color: #eee;
    background: #f9f9f9;
}

.x-grid-body {
    border-color: #eee;
}

.x-progress-default {
    border-color: #eee;
    background-color: #ddd;
}

.x-column-header-sort-ASC,
.x-column-header-sort-DESC {
    background-color: #ddd;
    background-image: none;
}

.x-column-header-over {
    background-color: #ddd;
    background-image: none;
}

.x-panel-header-title-default {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif!important;
}

.order-details {
    color: #ffffff;
}

.icon-controladdblue {
    background-image: url(../images/plus.png) !important;
    background-repeat: no-repeat;
}

.input-width120 .x-form-text-field-body-default {
    min-width:120px !important;
}
.input-width120 .x-form-item-label-inner-default {
    white-space:nowrap;
}
 .quick-search{
    width:315px;
    padding-top:5px;
}

.quick-search .searchButton {
    right:0;
}
.hide {
    display:none;
}

 .red-text {
    color : red !important;   
}
        
.blue-text {
    color:blue !important;   
}