﻿/* Colors */
/* Containers */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
}

form {
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
}

#container {
    height: 100vh;
    position: absolute;
    width: 100vw;
    overflow: hidden;
}

.view {
    -webkit-transition: padding-left 0.3s ease;
    -moz-transition: padding-left 0.3s ease;
    -o-transition: padding-left 0.3s ease;
    transition: padding-left 0.3s ease;
    width: 100%;
    padding-left: 200px;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
}

    .view #divBody {
        height: 100%;
    }

    .view .singleaction {
        padding-top: 50px;
        height: 100%;
    }

    .view .doubleaction {
        padding-top: 50px;
        padding-bottom: 50px;
        height: 100%;
    }

    .view .content {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 25px;
    }
/* Navbar */
.sidebar {
    width: 200px;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .sidebar.loading #menub {
        /*width: 50px !important;*/
        background-color: #f7f7f7;
        transition: all 0.3s ease-in-out;
    }

    .sidebar.loading #menuc {
        width: 150px !important;
    }

        .sidebar.loading #menuc .button {
            opacity: 0 !important;
        }

    .sidebar .button, .sidebar .title {
        width: 100%;
        height: 50px;
        position: relative;
        display: block;
        padding-left: 15px;
        padding-right: 5px;
        line-height: 50px;
        color: #003e7e;
        font-size: 14px !important;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

        .sidebar .button:hover, .sidebar .title:hover {
            background: #fbfbfb;
        }

        .sidebar .button:active, .sidebar .title:active, .sidebar .button:focus, .sidebar .title:focus {
            outline: none;
            border: none;
        }

        .sidebar .button.selected, .sidebar .title.selected {
            background: #fff;
        }

        .sidebar .button.active-nav, .sidebar .title.active-nav {
            display: block !important;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

    .sidebar .title {
        background-color: #eaeaea;
        cursor: default;
        font-weight: bold;
        text-transform: uppercase;
    }

        .sidebar .title:hover {
            background-color: #eaeaea;
        }

#menua {
    width: 50px;
    border-right: 1px solid #fff;
    background-color: #003e7e;
    position: relative;
    float: left;
    height: 100vh;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#menub, #menuc {
    width: 200px;
    border-right: 0px solid #e6e6e6;
    background-color: #f7f7f7;
    position: relative;
    float: left;
    height: 100vh;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
}

    #menub .button, #menuc .button {
        padding-left: 15px;
    }

#collapse-bar {
    position: relative;
    width: 14px;
    height: 100vh;
    left: 250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    #collapse-bar:hover {
        cursor: ew-resize;
    }

        #collapse-bar:hover #toggleNav {
            opacity: 0.7;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

#menub {
    background-color: #eaeaea;
}

    #menub .button, #menub .title {
        display: block;
        padding-left: 50px;
    }

#menuc .button, #menuc .title {
    display: none;
}

.pos1 .view, .pos2 .view {
    padding-left: 250px;
}

.pos1 .sidebar, .pos2 .sidebar {
    width: 250px;
}

    .pos1 .sidebar #menua, .pos2 .sidebar #menua {
        width: 50px;
    }

    .pos1 .sidebar #menub .im, .pos2 .sidebar #menub .im {
        position: absolute;
        left: 12px;
        top: 15px;
    }

    .pos1 .sidebar #toggleNav, .pos2 .sidebar #toggleNav {
        position: absolute;
        top: 48%;
        left: -2px;
        display: block;
        opacity: 0;
        padding: 0px !important;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        cursor: pointer;
    }

        .pos1 .sidebar #toggleNav > .im, .pos2 .sidebar #toggleNav > .im {
            position: absolute;
            top: 5px;
            left: 5px;
            font-size: 11px;
        }

        .pos1 .sidebar #toggleNav:hover, .pos2 .sidebar #toggleNav:hover {
            background-color: transparent;
            left: -5px;
        }

            .pos1 .sidebar #toggleNav:hover > .im, .pos2 .sidebar #toggleNav:hover > .im {
                color: #003e7e;
            }

.pos1.sidebar-collapsed .view, .pos2.sidebar-collapsed .view {
    padding-left: 100px !important;
}

.pos1.sidebar-collapsed .sidebar, .pos2.sidebar-collapsed .sidebar {
    width: 100px !important;
}

    .pos1.sidebar-collapsed .sidebar #menub, .pos2.sidebar-collapsed .sidebar #menub {
        width: 50px !important;
    }

    .pos1.sidebar-collapsed .sidebar #menuc, .pos2.sidebar-collapsed .sidebar #menuc {
        width: 0px !important;
    }

    .pos1.sidebar-collapsed .sidebar #collapse-bar, .pos2.sidebar-collapsed .sidebar #collapse-bar {
        left: 100px;
    }

        .pos1.sidebar-collapsed .sidebar #collapse-bar #toggleNav, .pos2.sidebar-collapsed .sidebar #collapse-bar #toggleNav {
            left: -5px;
        }

            .pos1.sidebar-collapsed .sidebar #collapse-bar #toggleNav .im, .pos2.sidebar-collapsed .sidebar #collapse-bar #toggleNav .im {
                transform: rotate(180deg);
            }

            .pos1.sidebar-collapsed .sidebar #collapse-bar #toggleNav:hover, .pos2.sidebar-collapsed .sidebar #collapse-bar #toggleNav:hover {
                left: -2px;
            }

.pos1.sidebar-collapsed .topaction, .pos2.sidebar-collapsed .topaction, .pos1.sidebar-collapsed .bottomaction, .pos2.sidebar-collapsed .bottomaction {
    padding-right: 360px;
}

    .pos1.sidebar-collapsed .topaction .search, .pos2.sidebar-collapsed .topaction .search, .pos1.sidebar-collapsed .bottomaction .search, .pos2.sidebar-collapsed .bottomaction .search {
        right: 280px;
    }

    .pos1.sidebar-collapsed .topaction .buttons, .pos2.sidebar-collapsed .topaction .buttons, .pos1.sidebar-collapsed .bottomaction .buttons, .pos2.sidebar-collapsed .bottomaction .buttons {
        right: 100px;
    }

    .pos1.sidebar-collapsed .topaction.stages, .pos2.sidebar-collapsed .topaction.stages, .pos1.sidebar-collapsed .bottomaction.stages, .pos2.sidebar-collapsed .bottomaction.stages {
        padding-right: 300px;
    }

    .pos1.sidebar-collapsed .topaction.tabson, .pos2.sidebar-collapsed .topaction.tabson, .pos1.sidebar-collapsed .bottomaction.tabson, .pos2.sidebar-collapsed .bottomaction.tabson {
        padding-right: 300px;
    }

    .pos1.sidebar-collapsed .topaction.searchon.active, .pos2.sidebar-collapsed .topaction.searchon.active, .pos1.sidebar-collapsed .bottomaction.searchon.active, .pos2.sidebar-collapsed .bottomaction.searchon.active {
        padding-right: 250px;
    }

        .pos1.sidebar-collapsed .topaction.searchon.active .search, .pos2.sidebar-collapsed .topaction.searchon.active .search, .pos1.sidebar-collapsed .bottomaction.searchon.active .search, .pos2.sidebar-collapsed .bottomaction.searchon.active .search {
            right: 150px;
        }

.pos1 .sidebar #menub {
    width: 200px;
}

.pos1 .sidebar #menuc {
    width: 0px;
}

.pos2 .sidebar #menub {
    width: 50px;
}

.pos2 .sidebar #menuc {
    width: 150px;
}

.logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    display: block;
    color: rgba(255, 255, 255, 0);
    background: #003e7e url('https://shieldsmarketplace.azureedge.net/Content/Svg/shields.arches.white.svg') center center no-repeat;
    background-size: contain;
    border-radius: 5px;
}

.notification-icon {
    position: relative;
    top: 50px;
    left: 16px;
    display: block;
    color: #fff;
    background-size: contain;
    border-radius: 50px;
}

.clock-icon {
    position: relative;
    top: 60px;
    left: 16px;
    display: block;
    color: #fff;
    background-size: contain;
    border-radius: 50px;
}

.help-icon {
    position: absolute;
    bottom: 45px;
    left: 16px;
    width: 40px;
    height: 40px;
    display: block;
    color: #fff;
    background-size: contain;
    border-radius: 50px;
}

.profile {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    display: block;
    color: #fff;
    background-size: contain;
    border-radius: 50px;
    font-size: 37px;
}

    .profile img {
        border: 1px solid #f4f4f4;
        background: #fff;
        border-radius: 100px;
    }

.clock-icon .im, .notification-icon .im, .help-icon .im {
    font-size: 18px !important;
}

.menua-icon {
    color: #eaeaea;
}

    .menua-icon:hover {
        color: #fff !important;
    }
/* Top/Bottom Action Area */
.topaction, .bottomaction {
    position: absolute;
    width: 100%;
    height: 50px;
    background: #f8f8f8;
    padding-right: 450px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10 !important;
}

    .topaction button, .bottomaction button, .topaction .btn, .bottomaction .btn, .topaction .button, .bottomaction .button {
        font-family: sans-serif;
        font-size: 14px !important;
    }

    .topaction.searchon, .bottomaction.searchon {
        padding-right: 500px;
    }

.topaction {
    top: 0px;
}

.bottomaction {
    bottom: 0px;
}
/* Tabs */
.topaction .tabs {
    display: none;
    height: 100%;
    position: relative;
    left: 0px;
    overflow: hidden;
    float: left;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .topaction .tabs .tab {
        height: 100%;
        background: #eaeaea;
        position: relative;
        float: left;
        line-height: 50px;
        text-align: left;
        border-right: 1px solid #f7f7f7;
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding: 0 15px 0 25px;
        cursor: default;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .topaction .tabs .tab:hover {
            background: #f2f1f1;
        }

        .topaction .tabs .tab.active:hover {
            background: #fff;
        }
/* one tab */
.tab:first-child:nth-last-child(1) {
    width: 100%;
}
/* two tabs */
.tab:first-child:nth-last-child(2), .tab:first-child:nth-last-child(2) ~ .tab {
    width: 50%;
}
/* three tabs */
.tab:first-child:nth-last-child(3), .tab:first-child:nth-last-child(3) ~ .tab {
    width: 33.3333%;
}
/* four tabs */
.tab:first-child:nth-last-child(4), .tab:first-child:nth-last-child(4) ~ .tab {
    width: 25%;
}
/* five tabs */
.tab:first-child:nth-last-child(5), .tab:first-child:nth-last-child(5) ~ .tab {
    width: 20%;
}
/* six tabs */
.tab:first-child:nth-last-child(6), .tab:first-child:nth-last-child(6) ~ .tab {
    width: 16.6667%;
}
/* seven tabs */
.tab:first-child:nth-last-child(7), .tab:first-child:nth-last-child(7) ~ .tab {
    width: 14.28%;
}
/* eight tabs */
.tab:first-child:nth-last-child(8), .tab:first-child:nth-last-child(8) ~ .tab {
    width: 12.5%;
}

.topaction .tabs .tab.active {
    background: #fff;
}

.topactionsub .tabs {
    height: 50px;
    position: relative;
    left: 0px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 25px;
}

    .topactionsub .tabs .tab {
        height: 100%;
        position: relative;
        float: left;
        line-height: 50px;
        text-align: left;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding: 0 15px 0 25px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-bottom: 1px solid #665;
        color: #665;
        cursor: default;
    }

        .topactionsub .tabs .tab.active {
            background-color: transparent !important;
            border-bottom: 3px solid #000;
            font-weight: bold;
            color: #000;
        }

            .topactionsub .tabs .tab.active:hover {
                background: none;
            }

        .topactionsub .tabs .tab:hover {
            background: none;
            border-bottom: 3px solid #666;
        }
/* Search */
.topaction .search {
    display: none;
}

.topaction.searchon .search {
    height: 100%;
    padding: 8px 10px 8px 70px;
    right: 430px;
    width: 60px;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
    background: #e2e2e2;
}

    .topaction.searchon .search .im {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 60px;
        height: 50px;
        background: #ccc;
        text-align: center;
        padding-top: 15px;
    }

        .topaction.searchon .search .im.activatesearch {
            z-index: 30;
        }

.search input {
    width: 100%;
    min-height: 35px;
    height: 100%;
    border-radius: 50px;
    font-size: 13px;
    border: 0px;
    padding-left: 20px;
}

    .search input:focus {
        outline: none;
        border-color: transparent !important;
    }

.topaction .searchpanelcontainer {
    position: absolute;
    left: 0px;
    width: 100%;
    padding: 0 150px 0 60px;
    top: 50px;
    height: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.searchon.active .advancedsearchpanalactive .searchpanelcontainer {
    height: 150px;
    opacity: 1;
}

.searchon.active .suggestionspanalactive .searchpanelcontainer {
    height: auto;
    opacity: 1;
}

.topaction.searchon .search .im.advanced-search {
    position: relative;
    float: right;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    margin-left: 2px;
    background: transparent;
    color: #003e7e;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.topaction.searchon.active .search .search-clear {
    opacity: 1;
}

.searchpanel {
    background-color: #fff;
    position: relative;
    padding: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y: auto;
    max-height: 40vh;
    -webkit-overflow-scrolling: touch;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.advancedsearchpanalactive .searchpanelcontainer .searchpanel, .suggestionspanalactive .searchpanelcontainer .searchpanel {
    opacity: 1;
}

.topaction.searchon.active .search .im.advanced-search {
    opacity: 1;
}

.topaction.searchon .search.advancedsearchpanalactive .im.advanced-search {
    transform: rotate(-180deg);
}

.topaction.searchon.active .search .im.clear-search {
    opacity: 1;
}

.advancedsearchoptions {
    opacity: 0;
    height: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    padding: 15px;
    margin-top: -30px;
}

.advancedsearchpanalactive .advancedsearchoptions {
    height: 100%;
    opacity: 1;
    margin-top: 0px;
}

.suggestions {
    padding: 15px;
    opacity: 0;
    height: 0px;
    overflow: hidden;
    display: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.suggestionspanalactive .suggestions {
    opacity: 1;
    height: auto;
    display: block;
}
/* Stages */
.topaction.stages .tabs {
    width: 100%;
    display: block;
}

.topaction.stages .tab:first-child:before {
    display: none;
}

.topaction.stages .tab:last-child {
    margin-right: 0;
}

    .topaction.stages .tab:last-child:after {
        display: none;
    }

.topaction.stages .tab:before {
    content: "";
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    border-top: 25px solid #eaeaea;
    border-left: 6px solid #f7f7f7;
    border-bottom: 25px solid #eaeaea;
    height: 0;
    line-height: 50px;
    position: absolute;
    left: 0px;
    top: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.topaction.stages .tab:after {
    content: "";
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    border-top: 25px solid #f7f7f7;
    border-left: 6px solid #eaeaea;
    border-bottom: 25px solid #f7f7f7;
    height: 0;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.topaction.stages .tab:hover:before {
    border-top: 25px solid #f2f1f1;
    border-left: 6px solid #f7f7f7;
    border-bottom: 25px solid #f2f1f1;
}

.topaction.stages .tab:hover:after {
    border-top: 25px solid #f7f7f7;
    border-left: 6px solid #f2f1f1;
    border-bottom: 25px solid #f7f7f7;
}

.topaction.stages .tab.active:before, .topaction.stages .tab.active:hover:before {
    border-top: 25px solid #fff;
    border-left: 6px solid #f7f7f7;
    border-bottom: 25px solid #fff;
}

.topaction.stages .tab.active:after, .topaction.stages .tab.active:hover:after {
    border-top: 25px solid #f7f7f7;
    border-left: 6px solid #fff;
    border-bottom: 25px solid #f7f7f7;
}

.topaction.tabson .tabs {
    width: 100%;
    display: block;
}

.topaction.tabson.searchon .tabs {
    width: 100%;
    display: block;
}

.topaction.tabson.searchon.active .tabs {
    width: 60%;
    display: block;
}

.topaction.tabson.searchon.active .search {
    width: 40%;
    right: 300px;
    display: block;
    padding-right: 160px;
}

.topaction .dropdown, .bottomaction .dropdown {
    position: absolute;
    right: 0;
    z-index: 550;
    display: none !important;
    width: 200px;
    float: right;
    padding: 0 !important;
    margin: 0 !important;
}

    .topaction .dropdown ul, .bottomaction .dropdown ul {
        list-style-type: none;
        border-radius: 0px !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

        .topaction .dropdown ul li, .bottomaction .dropdown ul li {
            height: 50px;
            text-align: center !important;
            width: 100% !important;
            background-color: #003e7e;
            color: #fff !important;
            border-left: 1px solid #f7f7f7;
        }

            .topaction .dropdown ul li button, .bottomaction .dropdown ul li button {
                width: 100% !important;
                border: none !important;
            }

                .topaction .dropdown ul li button[disabled], .bottomaction .dropdown ul li button[disabled] {
                    background-color: #eaeaea;
                    color: #858585;
                    opacity: 1;
                }

                    .topaction .dropdown ul li button[disabled]:hover, .bottomaction .dropdown ul li button[disabled]:hover {
                        background-color: #eaeaea;
                    }

                .topaction .dropdown ul li button:hover, .bottomaction .dropdown ul li button:hover {
                    background-color: #0053aa;
                }

            .topaction .dropdown ul li label, .bottomaction .dropdown ul li label {
                color: #fff;
            }

    .topaction .dropdown.dropdown-show, .bottomaction .dropdown.dropdown-show {
        display: block !important;
    }

.bottomaction .buttons {
    width: 600px;
    right: 250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 0px;
    height: 100%;
}

    .bottomaction .buttons .btn {
        background: #003e7e;
        color: #fff;
        text-align: center;
        width: 180px;
        height: 100%;
        border: 0px;
        font-size: 13px;
        position: relative;
        float: right;
        border-left: 1px solid #f7f7f7;
        border-radius: 0px;
    }

        .bottomaction .buttons .btn:hover {
            background-color: #0053aa;
        }

        .bottomaction .buttons .btn.dropdown-icon {
            position: relative;
            height: 100%;
            width: 20px;
            background: rgba(0, 0, 0, 0.5);
            display: block;
            top: 0px;
            background: #00274e;
            padding: 0px !important;
            float: right;
            border-left: 0px;
        }

            .bottomaction .buttons .btn.dropdown-icon .im {
                font-size: 12px;
            }

    .bottomaction .buttons div:first-child {
        position: relative;
        height: 100%;
    }

    .bottomaction .buttons .dropdown {
        bottom: 50px;
        -webkit-box-shadow: -3px -3px 13px -8px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -3px -3px 13px -8px rgba(0, 0, 0, 0.75);
        box-shadow: -3px -3px 13px -8px rgba(0, 0, 0, 0.75);
    }

.topaction .buttons {
    width: 200px;
    right: 250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 0px;
    height: 100%;
}

    .topaction .buttons .btn {
        background: #003e7e;
        color: #fff;
        text-align: center;
        width: 180px;
        height: 100%;
        border: 0px;
        font-size: 13px;
        position: relative;
        float: right;
        border-left: 1px solid #f7f7f7;
        border-radius: 0px;
    }

        .topaction .buttons .btn:hover {
            background-color: #0053aa;
        }

    .topaction .buttons > .btn {
        width: 200px;
    }

    .topaction .buttons div:first-child {
        position: relative;
        height: 100%;
    }

        .topaction .buttons div:first-child .btn.dropdown-icon {
            position: relative;
            height: 100%;
            width: 20px;
            background: rgba(0, 0, 0, 0.5);
            display: block;
            top: 0px;
            background: #00274e;
            padding: 0px !important;
            float: right;
            border-left: 0px;
        }

            .topaction .buttons div:first-child .btn.dropdown-icon .im {
                font-size: 12px;
            }

    .topaction .buttons .dropdown {
        -webkit-box-shadow: -3px 3px 13px -8px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: -3px 3px 13px -8px rgba(0, 0, 0, 0.75);
        box-shadow: -3px 3px 13px -8px rgba(0, 0, 0, 0.75);
    }
/* Right filter */
.right.filter {
    position: absolute;
    width: 30px;
    overflow: hidden;
    background: #f7f7f7;
    height: 100%;
    right: 0px;
    top: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: -5px 0px 13px -8px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -5px 0px 13px -8px rgba(0, 0, 0, 0.75);
    box-shadow: -5px 0px 13px -8px rgba(0, 0, 0, 0.75);
}

    .right.filter .filters {
        position: absolute;
        top: 34px;
        bottom: 34px;
        width: 100%;
    }

    .right.filter .filter-title {
        position: absolute;
        top: 0px;
        width: 220px;
        height: 34px;
        background: #eee;
    }

        .right.filter .filter-title label {
            text-align: center;
            width: 100%;
            display: block;
            line-height: 35px;
            font-weight: bold;
        }

    .right.filter #right-toggle {
        width: 30px;
        height: 100%;
        background: #003e7e;
        position: absolute;
        text-align: center;
        padding-top: 10px;
        color: #fff;
    }

    .right.filter i {
        font-size: 20px;
    }

    .right.filter #area {
        position: absolute;
        height: 100%;
        left: 30px;
        width: 220px;
        display: block;
    }

    .right.filter .transparentbtn {
        position: absolute;
        right: 8px;
        background: none;
        border: 0px;
        text-decoration: underline;
        top: 8px;
    }

    .right.filter .apply {
        position: absolute;
        right: 0px;
        left: 2px;
        bottom: 0px;
        width: 220px;
        height: 27px;
        background: #003e7e;
        color: #fff;
        border-radius: 0px !important;
    }

        .right.filter .apply:hover {
            color: #fff !important;
        }

    .right.filter i.arrow {
        position: absolute;
        top: 50%;
        left: 5px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .right.filter.open {
        width: 250px;
    }

        .right.filter.open i.arrow {
            transform: rotate(-180deg);
        }

    .right.filter.closed #right-toggle {
        left: 0px;
    }

.filters {
    overflow-x: hidden;
    overflow-y: auto;
}

    .filters > ul {
        list-style-type: none;
        padding: 0px !important;
    }

        .filters > ul > li {
            padding: 1rem 1rem;
            border-bottom: 1px solid #ebebeb;
        }

            .filters > ul > li input[type=text] {
                border: 1px solid;
                width: 100%;
                border: 1px solid #e5e6e7 !important;
                background-color: #fff;
                padding: 4px 12px 2px 12px;
                font-size: 12px;
                color: #676a6c;
            }

                .filters > ul > li input[type=text]:focus {
                    border: 1px solid #aaa !important;
                }

            .filters > ul > li label {
                line-height: 14px;
                font-size: 0.85em;
                font-weight: 100;
                padding-left: 0;
                margin: 0 !important;
            }

            .filters > ul > li .form-check .form-check-sign {
                float: right !important;
            }

                .filters > ul > li .form-check .form-check-sign .check {
                    width: 16px;
                    height: 16px;
                }

                    .filters > ul > li .form-check .form-check-sign .check::before {
                        margin-top: -5px;
                        margin-left: 5px;
                    }

.gridcontainer {
    position: relative;
    overflow: hidden;
    padding-right: 30px;
}

.content .ui-grid-contents-wrapper {
    min-height: 500px;
}

.content .gridcontainer {
    min-height: 500px;
}

.no-fill-grid .ui-grid-contents-wrapper {
    min-height: unset;
}
/*********TYPEAHEAD SEARCH*************/
.typeahead-div {
    position: relative;
}

    .typeahead-div .typeahead-buttons {
        position: absolute;
        right: 10px;
        top: 6px;
        z-index: 22 !important;
        width: 50px;
    }

        .typeahead-div .typeahead-buttons .advanced-search {
            position: relative;
            float: right;
            margin-left: 2px;
        }

        .typeahead-div .typeahead-buttons .typeahead-clear {
            position: relative;
            top: 0px;
            float: right;
            border: none;
            border-radius: 100%;
            outline: none;
            text-align: center;
            background-color: transparent;
            color: #eaeaea;
            width: 24px;
            height: 24px;
        }

            .typeahead-div .typeahead-buttons .typeahead-clear:hover {
                background-color: #eaeaea;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -o-transition: all 0.3s ease;
                transition: all 0.3s ease;
                cursor: pointer;
                opacity: 0.7;
                color: #003e7e;
            }

.typeahead-small .typeahead-div .typeahead-buttons {
    top: 0px;
    right: 0px;
}

.form-group .typeahead-buttons {
    top: 3px !important;
    font-size: 10px !important;
}

    .form-group .typeahead-buttons .typeahead-clear {
        font-size: 10px !important;
        width: 18px;
        height: 18px;
    }

.hidden-it {
    display: none !important;
}

.shown-it {
    display: block !important;
}
/* Card */
.card {
    display: block;
    margin-bottom: 30px;
    text-align: center;
    padding: 12px 16px 8px 16px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: default;
}

    .card .title {
        font-weight: 500;
    }

    .card:hover {
        box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
    }

.search-alphabet {
    margin-bottom: 40px;
}

    .search-alphabet span {
        margin-right: 6px;
        cursor: pointer;
        float: left;
    }

        .search-alphabet span:first-child {
            margin-right: 14px;
        }

        .search-alphabet span.selected {
            font-size: 1.4em;
        }

.checkbox_tootip {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .checkbox_tootip:hover .tooltiptext {
        visibility: visible;
    }

    .checkbox_tootip .tooltiptext {
        visibility: hidden;
        width: auto;
        background-color: #464343;
        color: #fff;
        text-align: center;
        border-radius: 3px;
        padding: 5px;
        position: absolute;
        z-index: 1;
    }

.text-underline {
    text-decoration: underline;
}

.font-weight-normal {
    font-weight: 100 !important;
}

.bulk-role-assign form {
    max-width: 100% !important;
    max-height: 360px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.bulk-role-assign #divNoRecord {
    display: none;
}

.bulk-role-assign .context-user-insight {
    max-width: 85% !important;
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipients {
    margin-bottom: 5px;
    cursor: pointer !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-profile-view .form-control[disabled], .user-profile-view .form-control[readonly], .user-profile-view fieldset[disabled], .user-profile-view select[disabled], .user-profile-view .form-control[disabled]:focus, .user-profile-view .form-control[readonly]:focus, .user-profile-view fieldset[disabled]:focus {
    background-color: transparent !important;
    border-color: #e5e6e7 !important;
    cursor: default;
}

.btn-shields-login {
    width: 100%;
    position: relative;
    top: 20px;
    right: 10px;
    height: 40px;
    border: 2px solid #0747a6 !important;
    background-color: transparent !important;
    color: #0747a6 !important;
    font-weight: 600 !important;
    border-radius: 3px;
}

    .btn-shields-login:hover {
        color: #fff !important;
        background-color: #0747a6 !important;
    }

.not-found {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

    .not-found .title {
        font-size: 70px !important;
        font-weight: 500;
        color: #0747a6;
    }

        .not-found .title small {
            font-size: 60%;
        }

    .not-found .btn-home {
        background-color: #0747a6;
        color: #fff;
        border-radius: 18px;
        padding: 6px 12px !important;
    }

        .not-found .btn-home:hover {
            color: #fff;
        }
/*#region Override Bootstrap STYLE*/
.input-group-btn {
    vertical-align: top !important;
}
/*#region Override Bootstrap STYLE*/
/*#region General STYLE*/
.loading-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    z-index: 5000 !important;
    background-color: white;
    opacity: 1;
}

.loading-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100% !important;
    z-index: 5000 !important;
    background-color: #fff;
    opacity: 0.9;
    text-align: center;
}
/*#region General STYLE*/
/*#region CHOSEN DROPDOWN STYLE*/
.chosen-container .chosen-single span {
    display: table !important;
    table-layout: fixed;
    width: 100%;
    word-wrap: break-word;
    overflow: hidden !important;
}
/*#region CHOSEN DROPDOWN STYLE*/
.privacy-policy ul h4, .privacy-policy ol h4 {
    margin-top: 8px;
    margin-bottom: 2px;
}

.no-list-style {
    list-style: none !important;
}
/*#region Spacing*/
.p-1 {
    padding: 0.25em !important;
}

.p-2 {
    padding: 0.5em !important;
}

.p-3 {
    padding: 1em !important;
}

.p-4 {
    padding: 1.5em !important;
}

.p-5 {
    padding: 2em !important;
}

.p-6 {
    padding: 3em !important;
}

.p-x-1 {
    padding: 0.25em 0 !important;
}

.p-x-2 {
    padding: 0.5em 0 !important;
}

.p-x-3 {
    padding: 1em 0 !important;
}

.p-x-4 {
    padding: 1.5em 0 !important;
}

.p-x-5 {
    padding: 2em 0 !important;
}

.p-x-6 {
    padding: 3em 0 !important;
}

.p-y-1 {
    padding: 0 0.25em !important;
}

.p-y-2 {
    padding: 0 0.5em !important;
}

.p-y-3 {
    padding: 0 1em !important;
}

.p-y-4 {
    padding: 0 1.5em !important;
}

.p-y-5 {
    padding: 0 2em !important;
}

.p-y-6 {
    padding: 0 3em !important;
}

.p-t-1 {
    padding-top: 0.25em !important;
}

.p-t-2 {
    padding-top: 0.5em !important;
}

.p-t-3 {
    padding-top: 1em !important;
}

.p-t-4 {
    padding-top: 1.5em !important;
}

.p-t-5 {
    padding-top: 2em !important;
}

.p-t-6 {
    padding-top: 3em !important;
}

.p-r-1 {
    padding-right: 0.25em !important;
}

.p-r-2 {
    padding-right: 0.5em !important;
}

.p-r-3 {
    padding-right: 1em !important;
}

.p-r-4 {
    padding-right: 1.5em !important;
}

.p-r-5 {
    padding-right: 2em !important;
}

.p-r-6 {
    padding-right: 3em !important;
}

.p-b-1 {
    padding-bottom: 0.25em !important;
}

.p-b-2 {
    padding-bottom: 0.5em !important;
}

.p-b-3 {
    padding-bottom: 1em !important;
}

.p-b-4 {
    padding-bottom: 1.5em !important;
}

.p-b-5 {
    padding-bottom: 2em !important;
}

.p-b-6 {
    padding-bottom: 3em !important;
}

.p-l-1 {
    padding-left: 0.25em !important;
}

.p-l-2 {
    padding-left: 0.5em !important;
}

.p-l-3 {
    padding-left: 1em !important;
}

.p-l-4 {
    padding-left: 1.5em !important;
}

.p-l-5 {
    padding-left: 2em !important;
}

.p-l-6 {
    padding-left: 3em !important;
}

.m-1 {
    margin: 0.25em !important;
}

.m-2 {
    margin: 0.5em !important;
}

.m-3 {
    margin: 1em !important;
}

.m-4 {
    margin: 1.5em !important;
}

.m-5 {
    margin: 2em !important;
}

.m-6 {
    margin: 3em !important;
}

.m-x-1 {
    margin: 0.25em 0 !important;
}

.m-x-2 {
    margin: 0.5em 0 !important;
}

.m-x-3 {
    margin: 1em 0 !important;
}

.m-x-4 {
    margin: 1.5em 0 !important;
}

.m-x-5 {
    margin: 2em 0 !important;
}

.m-x-6 {
    margin: 3em 0 !important;
}

.m-y-1 {
    margin: 0 0.25em !important;
}

.m-y-2 {
    margin: 0 0.5em !important;
}

.m-y-3 {
    margin: 0 1em !important;
}

.m-y-4 {
    margin: 0 1.5em !important;
}

.m-y-5 {
    margin: 0 2em !important;
}

.m-y-6 {
    margin: 0 3em !important;
}

.m-t-1 {
    margin-top: 0.25em !important;
}

.m-t-2 {
    margin-top: 0.5em !important;
}

.m-t-3 {
    margin-top: 1em !important;
}

.m-t-4 {
    margin-top: 1.5em !important;
}

.m-t-5 {
    margin-top: 2em !important;
}

.m-t-6 {
    margin-top: 3em !important;
}

.m-r-1 {
    margin-right: 0.25em !important;
}

.m-r-2 {
    margin-right: 0.5em !important;
}

.m-r-3 {
    margin-right: 1em !important;
}

.m-r-5 {
    margin-right: 2em !important;
}

.m-r-6 {
    margin-right: 3em !important;
}

.m-b-1 {
    margin-bottom: 0.25em !important;
}

.m-b-2 {
    margin-bottom: 0.5em !important;
}

.m-b-3 {
    margin-bottom: 1em !important;
}

.m-b-4 {
    margin-bottom: 1.5em !important;
}

.m-b-5 {
    margin-bottom: 2em !important;
}

.m-b-6 {
    margin-bottom: 3em !important;
}

.m-l-1 {
    margin-left: 0.25em !important;
}

.m-l-2 {
    margin-left: 0.5em !important;
}

.m-l-3 {
    margin-left: 1em !important;
}

.m-l-4 {
    margin-left: 1.5em !important;
}

.m-l-5 {
    margin-left: 2em !important;
}

.m-l-6 {
    margin-left: 3em !important;
}
/*#regionend Spacing*/
.outline-none {
    outline: none;
}

.disabled-field {
    pointer-events: none;
    opacity: 0.8;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.visibility-gone {
    visibility: hidden;
    height: 0px !important;
}
/* Multi Search UI START*/
.filter-checkboxes label {
    display: block;
    float: left;
    padding-right: 10px;
    white-space: nowrap;
}

.filter-checkboxes input {
    vertical-align: middle;
}

.filter-checkboxes label span {
    vertical-align: middle;
}

#btnClear_autocompleteAutoCompleteQuote {
    margin-right: 25px !important;
    z-index: 999 !important;
}

.quote-part-results-padding {
    padding-top: 0em !important;
}

.searchDiv_ {
    background: #e2e2e2 !important;
}

.search_ {
    background: #e2e2e2 !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    padding: 8px 50px 0px 0px !important;
    width: 100% !important;
}

    .search_ input {
        border-radius: 50px !important;
    }

.bSreach {
    color: #003e7e !important;
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mbtn {
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bSreach_ {
    color: #003e7e !important;
    padding: 6px 12px !important;
}

.bSreachBox {
    border: 1px solid #003e7e !important;
    margin-bottom: 20px !important;
}

.uper_ {
    margin-top: -72px !important;
    margin-right: 48px !important;
}

.uper2_ {
    position: absolute !important;
    left: 100% !important;
    right: 50px !important;
}

.visibility_ {
    visibility: hidden !important;
}

.width0 {
    width: 0px !important;
}

.width10 {
    width: 10px !important;
}

.DefaultShields_ {
    font-size: 18px !important;
    height: 26px !important;
}

.ui-grid-cell .checkbox.grid-site {
    margin-top: 5px !important;
}

    .ui-grid-cell .checkbox.grid-site label {
        padding-left: 10px !important;
    }
/* Multi Search UI END */
.theme-blue-color {
    color: #263286;
}
/* accordion */
.accordion-panel .collapse-panel {
    display: block;
    margin-bottom: 5px;
}

    .accordion-panel .collapse-panel .panel-heading {
        cursor: default;
        background-color: #eaeaea;
        color: #333;
        padding: 10px;
    }

        .accordion-panel .collapse-panel .panel-heading h4 {
            margin: 5px auto;
        }

    .accordion-panel .collapse-panel .panel-body {
        display: block;
        border: 1px solid #333 6;
        background-color: #fefefe;
        transition: display ease-in-out 250ms;
    }

    .accordion-panel .collapse-panel .icon {
        transition: transform ease-in-out 150ms;
    }

    .accordion-panel .collapse-panel.collapsed .panel-body {
        display: none;
        transition: display ease-in-out 250ms;
    }

    .accordion-panel .collapse-panel.collapsed #addItemButton {
        display: none;
    }

    .accordion-panel .collapse-panel.collapsed .icon {
        transform: rotate(45deg);
    }
/*Date Picker Wrapper*/
.roTextbox {
    background-color: #fafafb !important;
}

.dx-freespace-row {
    height: 30px !important;
}

.tdPager {
    padding: 5px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-right: 10px;
    /*margin-left: 10px;*/
    min-width: 135px;
}
/*md chips*/
.md-chip {
    display: inline-block;
    background: #003e7e;
    padding: 0 12px;
    border-radius: 32px;
    font-size: 12px;
    color: white;
}

    .md-chip .md-chip-hover:hover {
        background: #ccc;
    }

.md-chip-clickable {
    cursor: pointer;
}

.md-chip, .md-chip-icon {
    height: 25px;
    line-height: 25px;
    margin: 2px;
}

.md-chip-icon {
    display: block;
    float: left;
    background: #009587;
    width: 32px;
    border-radius: 50%;
    text-align: center;
    color: white;
    margin: 0 8px 0 -12px;
}

.md-chip-remove {
    display: inline-block;
    background: #aaa;
    border: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    padding: 0;
    margin: 0 -4px 0 4px;
    cursor: pointer;
    font: inherit;
    line-height: 20px;
}

    .md-chip-remove:after {
        color: #e0e0e0;
    }

    .md-chip-remove:hover {
        background: #999;
    }

    .md-chip-remove:active {
        background: #777;
    }

.md-chips {
    margin: 0px !important;
}

.md-chips {
    padding: 0px !important;
}

.md-chip-raised {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.cExploreBtn {
    background-color: #2e6fb2;
    border: 0;
    color: #fff;
    padding: 10px 10px;
    font-size: 14px;
    cursor: pointer;
}

    .cExploreBtn:hover {
        background-color: #003e7e;
    }

.dx-header-row {
    font-weight: 700;
    color: #676a6c;
    background: #f3f3f3;
    border-color: #d4d4d4;
}

    .dx-header-row .dx-datagrid-text-content {
        white-space: initial !important;
        text-align: left !important;
    }

.tdGridPagerButtonContainer {
    margin-left: 16px;
    margin-right: 5px;
    width: 100px;
}

    .tdGridPagerButtonContainer .btn {
        background: white;
        border: 1px solid;
        border-color: #003e7e;
        float: left;
        width: 40px;
        margin-right: 5px;
    }

.filterRowButtons button {
    background: #003e7e;
    color: #fff;
    border: 0;
    margin-right: 2px;
    height: 25px;
}

.input-validation-error {
    border: 1px solid red !important;
}

.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

.fileupload-drop-zone {
    border: dotted 3px lightgray;
}

.md-whiteframe-1dp, .md-whiteframe-z1 {
    box-shadow: none;
}

md-autocomplete md-autocomplete-wrap {
    border: 1px solid #e5e6e7;
}

md-autocomplete-wrap, md-autocomplete, md-autocomplete input:not(.md-input) {
    height: 24px !important;
    font-size: 12px !important;
    color: #826a9f;
}

.md-chips {
    font-family: inherit !important;
}

md-chips.md-default-theme .md-chips, md-chips .md-chips {
    box-shadow: none !important;
}

.uatocomplete-custom-template li {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    font-size: 12px !important;
}

.modal-backdrop {
    z-index: 99 !important
}

.modal {
    z-index: 2010 !important;
}

.row-auto-resize {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.base-col-auto-resize {
    position: relative;
    width: 100%;
    min-height: 1px;
}

.col-auto-resize {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 180px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        text-decoration: none;
        display: block;
    }

.show {
    display: block;
}

.hide {
    display: none;
}

#loaderdiv {
    position: absolute;
    top: 0;
    left: 250px;
    width: 100%;
    height: 100% !important;
    z-index: 5000 !important;
    background-color: white;
    opacity: .9;
}

.sidebar-collapsed #loaderdiv {
    left: 100px;
}

.modal-body #loaderdiv {
    left: 0px;
}

.modal-body .loader-shell-img {
    left: 45%;
}

.loader-shell-img {
    width: 5% !important;
    display: inline-block;
    position: absolute;
    top: 38%;
    left: 38%;
}

.sidebar-collapsed .loader-shell-img {
    left: 38%;
}

.dropdown-content-custom {
    padding: 10px;
    text-align: center;
    min-width: 180px !important;
}

.no-margin {
    margin: 0px !important;
    color: #0747a6;
    font-size: 20px;
}

.heading-50 {
    margin: 0px !important;
    color: #0747a6;
    font-size: 50px !important;
    font-weight: 500;
    line-height: 2em;
}

.font-cap {
    font-family: 'Maven Pro',Sans-Serif;
    font-size: 15px;
    line-height: 1.75em;
    margin-bottom: 10px;
}

.bulletsremove {
    list-style-type: none;
    padding-left: 0px !important;
}

.oem-span {
    color: #263286;
    font-weight: bold;
}

.oem-span-color {
    color: #263286;
}

.oem-img {
    width: 65px;
    margin-left: 2px;
    margin-bottom: 1px;
}

.mod-label {
    padding-right: 0px;
    padding-top: 4px !important;
    text-align: left !important;
    font-weight: normal;
    font-size: 12px;
    padding-left: 10px;
}

.input-group-addon {
    background-color: #f3f3f3;
    padding: 9px 6px !important;
}

.picture-area {
    height: 400px;
}

    .picture-area > .picture-thumbnails-area {
        width: 100%;
        min-height: 62px;
        overflow-x: auto;
        overflow-y: hidden;
        display: inline-block;
        background-color: #ECECEC;
        white-space: nowrap;
        padding: 5px;
    }

        .picture-area > .picture-thumbnails-area > .picture-thumbnail {
            display: inline-block;
            width: 65px;
            height: 50px;
            cursor: pointer;
            margin: 0px 2px;
        }

            .picture-area > .picture-thumbnails-area > .picture-thumbnail:first-child {
                margin-top: 0px;
            }

            .picture-area > .picture-thumbnails-area > .picture-thumbnail:last-child {
                margin-bottom: 0px;
            }

            .picture-area > .picture-thumbnails-area > .picture-thumbnail > img {
                width: 100%;
                height: 100%;
            }

    .picture-area > .picture-view-area {
        height: 82%;
    }

        .picture-area > .picture-view-area > .pane {
            padding: 2px 6px;
            border-bottom: 2px solid #0747a6;
        }

        .picture-area > .picture-view-area > .viewer {
            width: 100%;
            max-height: 400px;
        }

            .picture-area > .picture-view-area > .viewer > a {
                position: relative;
                top: 0;
                left: 0;
                max-width: 100%;
                max-height: 100%;
            }

                .picture-area > .picture-view-area > .viewer > a > img {
                    max-width: 100%;
                    height: 295px;
                    display: block;
                    margin: 0 auto;
                }

.jumbotron-title {
    font-weight: 700;
    color: #263286;
}

.jumborton-title-icon {
    background: #263286;
    color: white;
    font-size: 10px;
    line-height: 24px !important;
    width: 40px;
    height: 100%;
    text-align: center;
    border-top-right-radius: 10px;
    cursor: pointer;
}

.btn-row {
    border-bottom: 3px solid #c3c4c5;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 3px;
}

.btn_ {
    background: #ffffff;
    padding: 4px;
    display: inline-block;
    border-style: none !important;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif !important;
}

    .btn_:disabled,
    .btn_[disabled] {
        cursor: not-allowed;
        box-shadow: none;
        opacity: .65;
    }

.btn_default {
    color: #6f6f6f !important;
}

    .btn_default:hover {
        color: #0052cc !important;
    }

    .btn_default:disabled:hover,
    .btn_default[disabled]:hover {
        color: #6f6f6f !important;
    }

.btn_primary {
    color: #fff !important;
    background-color: #0747a6 !important;
    border-radius: 4px;
    padding: 4px 20px !important;
}

    .btn_primary:hover {
        background-color: #0065ff !important;
    }

    .btn_primary:disabled:hover,
    .btn_primary[disabled]:hover {
        color: #fff !important;
        background-color: #0747a6 !important;
    }

.btn_danger {
    color: #6f6f6f !important;
}

    .btn_danger:hover {
        color: #ed5565 !important;
    }

    .btn_danger:disabled:hover,
    .btn_danger[disabled]:hover {
        color: #6f6f6f !important;
    }

.height-35 {
    height: 35px !important;
}

.height-24 {
    height: 24px !important;
}

.CustomPadding .col-lg-12 .col-lg-4 {
    margin-top: 10px;
}

#myDropdown {
    z-index: 1000;
}

.salesgrid .ui-grid-cell-contents {
    white-space: pre-line;
}

.hideFooter .ui-grid-pager-panel {
    display: none;
}

.hideFooter .ui-grid-viewport {
    overflow-y: hidden !important;
}

.ui-grid-viewport, ng-isolate-scope {
    height: auto !important;
}

.ui-grid {
    min-height: 100px !important;
    height: auto !important;
}

.watermark {
    position: absolute;
    top: 70%;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

.h-separator {
    font-size: 12px;
    color: #555 !important;
}

.fieldset_ {
    border: 1px solid #d1d2d2;
    padding: 5px;
    border-radius: 3px;
}

.col-padding {
    padding-top: 0px !important;
    padding-right: 0px;
    padding-left: 5px;
}

.jumbotron-squeeze {
    padding: 5px !important;
    margin-bottom: 15px !important;
}

.textarea-resize {
    resize: none
}

.text-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.disableddiv {
    pointer-events: none;
    opacity: 1;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active, .accordion:hover {
        background-color: #ccc;
    }

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.dropdown_simple {
    border: 1px solid #e5e6e7 !important;
    box-shadow: none !important;
    min-height: unset !important;
    line-height: inherit !important;
    background: #fff;
    box-shadow: none;
    -moz-box-sizing: border-box;
    border-radius: 2px;
    cursor: text;
    height: auto !important;
    margin: 0;
    min-height: 30px;
    overflow: hidden;
    padding: 8px 8px;
    position: relative;
    width: 100%;
    font-size: 11px !important;
}

.dropdown_simple_grid {
    padding: 4px 8px !important;
}

.divider {
    height: 0;
    margin: .5rem 0;
    border-top: 1px solid #e9ecef;
    overflow: hidden;
}

.dropzone .dz-title {
    background: #00627D;
    color: white;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.dropZone {
    border: 2px dashed #ddd !important;
    background: white;
    border-radius: 5px;
    padding: 0;
    margin: 20px 0;
    min-height: 100px;
}

/*.dx-button-mode-contained {
    background-color: #606060 !important;
    border-color: #ddd;
    color: #fff;
}*/
