﻿/*----------------------------------------
  Header
----------------------------------------*/
.header {
    display: block;
    height: 50px;
    max-height: 50px;
    width: 100%;
    position: fixed;
    padding: 0px;
    z-index: 1040;
    background-color: #ffffff;
    margin-bottom: 0px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .header .header-container:before, .header .header-container:after {
        content: " ";
        display: table;
    }

    .header .header-container:after {
        clear: both;
    }

    .header .header-container .nav-left, .header .header-container .nav-right {
        position: relative;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0px;
    }

        .header .header-container .nav-left > li, .header .header-container .nav-right > li {
            float: left;
        }

            .header .header-container .nav-left > li > a, .header .header-container .nav-right > li > a {
                padding: 0 10px;
                line-height: calc(50px);
                min-height: calc(50px);
                display: block;
                color: #8a8a8a;
                transition: all 0.2s ease-in-out;
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
                -ms-transition: all 0.2s ease-in-out;
            }

                .header .header-container .nav-left > li > a i, .header .header-container .nav-right > li > a i {
                    font-size: 16px !important;
                }

                .header .header-container .nav-left > li > a:hover, .header .header-container .nav-left > li > a:focus, .header .header-container .nav-right > li > a:hover, .header .header-container .nav-right > li > a:focus {
                    text-decoration: none;
                    color: #515365;
                }

                .header .header-container .nav-left > li > a.dropdown-toggle:after, .header .header-container .nav-right > li > a.dropdown-toggle:after {
                    display: none;
                    border-radius: 0px;
                }

    .header .header-container .nav-left {
        float: left;
    }

    .header .header-container .nav-right {
        float: right;
    }


    /*----------------------------------------
    Logo
----------------------------------------*/

    .header .header-container .nav-logo {
        line-height: 0;
        float: left;
        width: 120px;
        padding: 0 !important;
        transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
    }

        .header .header-container .nav-logo > a {
            display: inline-block;
            max-width: 200px;
            width: 100%;
        }

            .header .header-container .nav-logo > a .logo {
                background-repeat: no-repeat;
                background-position: center left;
                display: inline-block;
                width: 100%;
                min-height: calc(50px - 1px);
            }

                .header .header-container .nav-logo > a .logo.logo-white {
                    display: none;
                }

    /*----------------------------------------
Header Search
----------------------------------------*/


    .header .header-container .app-search-input i.search-icon.fas.fa-search {
        position: relative;
        top: 23px;
        float: left;
    }

    .header .header-container .app-search-input {
        border-bottom: 1px solid #ededed !important;
        border-radius: 0;
        display: inline-block;
    }

i.search-icon-close.far.fa-times-circle {
    position: relative;
    top: 21px;
    display: none;
    float: right;
    cursor: pointer;
}

.header .header-container .app-search-input input {
    font-family: Roboto;
    font-style: italic;
    border: 0px;
    box-shadow: none;
    background-color: transparent;
    outline: none;
    height: 30px;
    margin-top: 10px;
    padding: 5px 20px;
}

    .header .header-container .app-search-input input::-webkit-input-placeholder, .header .header-container .app-search-input input:-ms-input-placeholder, .header .header-container .app-search-input input:-moz-placeholder, .header .header-container .app-search-input input::-moz-placeholder {
        font-family: Roboto;
        font-style: italic;
        color: white;
        color: rgba(255, 255, 255, 0.5);
    }

.header .header-container .app-search-input .search-predict {
    display: none;
    position: absolute;
    top: 60px;
    width: 350px;
    min-height: 50px;
    max-height: 500px;
    background-color: #ffffff;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

    .header .header-container .app-search-input .search-predict.active {
        display: block;
    }

    .header .header-container .app-search-input .search-predict .search-wrapper {
        position: relative;
        max-height: 400px;
        overflow-y: auto;
    }

.header .header-container .app-search-input .search-footer {
    border-top: 1px solid #e9eaec;
    text-align: center;
    padding: 15px;
}


/*----------------------------------------
 Notifications                             
----------------------------------------*/
.header .header-container .nav-left .notifications, .header .header-container .nav-right .notifications {
    position: relative;
}

    .header .header-container .nav-left .notifications .counter, .header .header-container .nav-right .notifications .counter {
        position: absolute;
        right: 6px;
        top: 12px;
        background-color: #fd3259;
        color: #ffffff;
        padding: 3px 5.5px;
        border-radius: 50px;
        line-height: 1;
        font-size: 10px;
    }

/*---------------------------------------
Profile picture                          
---------------------------------------*/
.header .header-container .nav-left .user-profile .profile-img, .header .header-container .nav-right .user-profile .profile-img {
    width: 35px;
    border-radius: 50%;
    margin-top: 12px;
    float: left;
}

/*----------------------------------------
Dropdown
----------------------------------------*/
.dropdown.dropdown-animated:not(.scale-left) .dropdown-menu, .dropdown.dropdown-animated:not(.scale-right) .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px) !important;
    -moz-transform: translateY(15px) !important;
    -ms-transform: translateY(15px) !important;
    transform: translateY(15px) !important;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    display: block;
    margin: 0px;
    top: auto !important;
}

    .dropdown.dropdown-animated:not(.scale-left) .dropdown-menu.show, .dropdown.dropdown-animated:not(.scale-right) .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px) !important;
        -moz-transform: translateY(0px) !important;
        -ms-transform: translateY(0px) !important;
        transform: translateY(0px) !important;
    }

.dropdown.dropdown-animated.scale-left .dropdown-menu {
    -webkit-transform-origin: top right !important;
    -moz-transform-origin: top right !important;
    -ms-transform-origin: top right !important;
    transform-origin: top right !important;
    transform: scale(0, 0) !important;
    -webkit-transform: scale(0, 0) !important;
    -moz-transform: scale(0, 0) !important;
    -ms-transform: scale(0, 0) !important;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    display: block;
    margin: 0px;
    right: 0 !important;
    left: auto !important;
    top: auto !important;
}

    .dropdown.dropdown-animated.scale-left .dropdown-menu.show {
        transform: scale(1, 1) !important;
        -webkit-transform: scale(1, 1) !important;
        -moz-transform: scale(1, 1) !important;
        -ms-transform: scale(1, 1) !important;
        z-index: 1030;
    }

.dropdown.dropdown-animated.scale-right .dropdown-menu {
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transform: scale(0, 0) !important;
    -webkit-transform: scale(0, 0) !important;
    -moz-transform: scale(0, 0) !important;
    -ms-transform: scale(0, 0) !important;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    display: block;
    margin: 0px;
    top: auto !important;
}

    .dropdown.dropdown-animated.scale-right .dropdown-menu.show {
        transform: scale(1, 1) !important;
        -webkit-transform: scale(1, 1) !important;
        -moz-transform: scale(1, 1) !important;
        -ms-transform: scale(1, 1) !important;
    }

.dropdown-menu {
    border: 0px;
    border-radius: 0px;
    min-width: 180px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    top: 100%;
}

    .dropdown-menu.dropdown-md {
        min-width: 250px;
    }

    .dropdown-menu.dropdown-lg {
        min-width: 360px;
    }

    .dropdown-menu.dropdown-xl {
        min-width: 450px;
    }

    .dropdown-menu > li.divider {
        border-bottom: 1px solid #e9eaec;
        height: 1px;
        overflow: hidden;
    }

    .dropdown-menu > li > a {
        line-height: 1.5;
        min-height: auto;
        padding: 10px 15px;
        display: block;
        transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        color: #8a8a8a;
    }

        .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
            color: #515365;
            text-decoration: none;
            background-color: #f7f7f8;
        }

    .dropdown-menu.dropdown-grid {
        display: flex !important;
        flex-wrap: wrap;
        padding: 10px;
    }

        .dropdown-menu.dropdown-grid > li {
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
            -webkit-box-pack: center;
            justify-content: center;
        }

            .dropdown-menu.dropdown-grid > li > a {
                padding: 10px;
                border: 1px solid #e9eaec;
                margin: 7px;
                border-radius: 4px;
            }

        .dropdown-menu.dropdown-grid.col-2 > li {
            flex-basis: 50%;
        }

        .dropdown-menu.dropdown-grid.col-3 > li {
            flex-basis: 33.333333%;
        }


        .dropdown-menu.dropdown-grid.col-4 > li {
            flex-basis: 25%;
        }

.dropdown-toggle:after {
    text-align: center;
    display: inline;
    border: 0;
    font-family: Material Design Icons;
    content: "\F140";
    line-height: 0;
    vertical-align: middle;
    position: relative;
}

.dropdown-header {
    padding: 10px 20px;
    font-weight: 500;
    color: #717171;
    font-size: 15px;
}

.dropdown, .dropup {
    display: block;
}


.header .header-container .nav-right > li > a.exitFullScreen {
    display: none;
}

ul.nav-sticky {
    background: #fff;
    padding: 10px;
    list-style: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 0 15px 1px rgba(69,65,78,.2);
}

.nav-sticky li a i {
    color: #fff;
}

li.nav-sticky-item {
    padding: 5px 3px;
}



/*----------------------------------------
Quick View
----------------------------------------*/
.quick-view {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    width: 300px;
    height: calc(100% - 50px);
    border-left: 1px solid #e9eaec;
    margin: 0px;
    margin-top: 50px;
    overflow: hidden;
    z-index: 1030;
    transform: translateX(300px);
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    -o-transform: translateX(300px);
    -ms-transform: translateX(300px);
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
}

    .quick-view .nav-tabs {
        border-bottom: 1px solid #e9eaec;
        position: absolute;
        width: 100%;
    }

        .quick-view .nav-tabs > li.active > a {
            color: #515365;
            background-color: transparent;
            border: 0px;
            border-bottom-color: transparent;
        }

            .quick-view .nav-tabs > li.active > a:hover, .quick-view .nav-tabs > li.active > a:focus {
                color: #515365;
                background-color: transparent;
                border: 0px;
                border-bottom-color: transparent;
            }

        .quick-view .nav-tabs > li.active .nav-link {
            border-bottom: 0px;
        }

        .quick-view .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.4;
            border-radius: 0;
            color: #8a8a8a;
            padding: 0px 20px;
            line-height: 55px;
            min-height: 55px;
            font-weight: bold;
        }

            .quick-view .nav-tabs > li > a:hover, .quick-view .nav-tabs > li > a:focus {
                background-color: transparent;
                color: #515365;
            }

    .quick-view .tab-content {
        position: absolute;
        width: 100%;
        margin-top: 55px;
        max-height: calc(100% - 55px);
        overflow-y: auto;
    }

        .quick-view .tab-content .tab-pane {
            height: 100%;
        }

    .quick-view .quick-view-chat {
        padding: 15px 0px;
        position: relative;
        height: calc(100% - 60px);
    }

        .quick-view .quick-view-chat .quick-view-conversation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0px;
            right: -300px;
            background-color: #ffffff;
            transition: all 0.1s ease-out;
            -webkit-transition: all 0.1s ease-out;
            -moz-transition: all 0.1s ease-out;
            -o-transition: all 0.1s ease-out;
            -ms-transition: all 0.1s ease-out;
        }

            .quick-view .quick-view-chat .quick-view-conversation .quick-view-conversation-body {
                height: calc(100% - 115px);
                overflow-y: auto;
            }

        .quick-view .quick-view-chat.conversation-expand .quick-view-conversation {
            right: -0px;
        }

.quick-view-expand .quick-view {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
}

.appsearch-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1010;
}

.quick-view-backdrop, .quick-menu-backdrop, .notification-backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    cursor: pointer;
    background: #515365; /* The Fallback */
    background: rgba(81, 83, 101, 0.5);
    z-index: 1010;
}

.theme-selector input:checked ~ .theme-color:after, .color-selector input:checked ~ .theme-color:after {
    content: "\f005" !important;
    font: 14px/1 DXIcons;
}


/*----------------------------------------
Tabs
----------------------------------------*/
.nav-tabs {
    border-bottom: 1px solid #e9eaec;
}

    .nav-tabs > li {
        margin-bottom: -2px;
    }

        .nav-tabs > li > a {
            margin-right: 0px;
            line-height: 2.5;
            border-radius: 0;
            color: #515365;
            opacity: 0.75;
            border: 0px;
            border-bottom: 2px solid transparent;
            display: block;
            padding: 10px 15px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
        }

            .nav-tabs > li > a:hover {
                border-color: transparent;
            }

            .nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
                background-color: transparent;
                opacity: 1;
            }

            .nav-tabs > li > a.active {
                border: 0px;
                background-color: transparent;
                border-bottom: 2px solid #6569df;
                opacity: 1;
            }

                .nav-tabs > li > a.active:hover, .nav-tabs > li > a.active:focus {
                    border: 0px;
                    background-color: transparent;
                    border-bottom: 2px solid #6569df;
                    opacity: 1;
                }

                .nav-tabs > li > a.active.nav-link {
                    border-bottom: 2px solid #6569df;
                    color: #515365;
                    background-color: transparent;
                }

    .nav-tabs .nav-link {
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
    }

        .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:active {
            border-color: transparent;
        }

.fade.in {
    opacity: 1;
}

.collapse.in {
    display: block;
}

/*----------------------------------------
Search drop down lists
----------------------------------------*/
.list-media {
    margin-bottom: 0px;
    display: block;
    position: relative;
    padding-left: 0;
    list-style: none;
}

    .list-media > .list-item {
        display: block;
    }

        .list-media > .list-item > a {
            display: block;
            position: relative;
            padding: 12px 0px;
        }

            .list-media > .list-item > a:hover, .list-media > .list-item > a:focus {
                text-decoration: none;
            }

        .list-media > .list-item.active {
            background-color: #fafafa;
        }

        .list-media > .list-item .media-hover:hover, .list-media > .list-item .media-hover:focus {
            text-decoration: none;
            background-color: #fafafa;
        }

    .list-media .media-img {
        position: relative;
        float: left;
    }

        .list-media .media-img img, .list-media .media-img .icon-avatar {
            line-height: 40px;
            height: 40px;
            width: 40px;
            text-align: center;
            font-size: 17px;
            border-radius: 50px;
            color: #ffffff;
        }

        .list-media .media-img .status {
            right: 0px;
            bottom: 0px;
            position: absolute;
            left: auto;
            top: auto;
        }

            .list-media .media-img .status:before {
                content: "";
                position: absolute;
                background-color: transparent;
                width: 15px;
                height: 14px;
                bottom: -5px;
                right: -6px;
                border-radius: 50px;
                border: 2px solid #ffffff;
            }

    .list-media .info {
        padding-left: 55px;
        min-height: 40px;
        height: auto;
        position: relative;
    }

        .list-media .info .title {
            display: block;
            color: #515365;
            line-height: 1.5;
        }

            .list-media .info .title.pdd-top-5 {
                padding-top: 7px !important;
            }

        .list-media .info .sub-title {
            display: block;
            font-size: 12.5px;
            color: #adadad;
            color: rgba(138, 138, 138, 0.7);
            max-width: 90%;
        }

        .list-media .info .float-item {
            position: absolute;
            right: 0px;
            color: #8a8a8a;
            top: 50%;
            font-size: 12px;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        }

        .list-media .info.status {
            padding-left: 0px;
            min-height: auto;
            height: 10px;
            position: absolute;
        }

.theme-configurator {
    position: relative;
}

.theme-selector label, .color-selector label {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.theme-selector input, .color-selector input {
    opacity: 0;
}

    .theme-selector input:checked ~ .theme-color:after, .color-selector input:checked ~ .theme-color:after {
        font-size: 12px;
        font-weight: bold;
        display: block;
        color: #ffffff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .theme-selector input:checked ~ .theme-color.bg-white:after, .color-selector input:checked ~ .theme-color.bg-white:after {
        color: #515365;
    }

.theme-selector .theme-color, .color-selector .theme-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

.color-pallet {
    border: 1px solid #e9eaec;
    min-width: 180px;
    margin-bottom: 20px;
}

    .color-pallet .box {
        height: 120px;
    }

    .color-pallet .desc {
        padding: 10px;
    }

/*----------------------------------------
Header ToolBar
----------------------------------------*/

#headertoolbar {
    padding: 5px;
    background-color: transparent !important;
}

    #headertoolbar .dx-item.dx-toolbar-item.dx-toolbar-label {
        width: 120px !important;
    }

#logoimg {
    background-image: url('/img/digicast_logo.jpg');
    display: inline-block;
    margin-top: -10px;
    margin-left: -10px;
}

.header-default #logoimg, .header-warning #logox, .header-warning-gradient #logoimg {
    display: none !important;
}

.header-default .logo-whiteimage, .header-warning #logoimg, .header-warning-gradient #logoimg {
    display: inline-block !important;
    background-image: url('/img/digicast_logo.jpg');
    margin-top: -10px;
    background-size: 110%;
    margin-left: -10px;
}

#globalSearch {
    width: 130px;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #ededed !important;
    background-color: transparent;
    /*margin-bottom: 20px;*/
}

#headertoolbar i.dx-icon, #headertoolbar .dx-icon-search:before {
    color: #fff !important;
}

body.header-warning #globalSearch .dx-icon-clear:before, body.header-warning #globalSearch .dx-icon-search:before, body.header-warning #globalSearch .dx-texteditor-input, body.header-default #globalSearch .dx-texteditor-input, body.header-default #globalSearch .dx-placeholder,
body.header-warning #globalSearch .dx-placeholder, body.header-warning #headertoolbar i.dx-icon,
body.header-default #headertoolbar i.dx-icon {
    color: #8a8a8a !important;
}

#globalSearch .dx-texteditor-input, #globalSearch .dx-placeholder {
    background-color: transparent;
    font-style: italic;
    color: #fff !important;
    padding-top: 4px;
}

body.header-warning #globalSearch, body.header-default #globalSearch {
    border-bottom: 1px solid #8a8a8a !important;
}

.globalSearchresult .dx-list-item-content {
    padding: 5px !important;
}

.globalSearchresult {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2) !important;
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2) !important;
    width: 306px;
    margin-top: -6px;
    position: fixed;
}

.SearchInfo > div {
    padding-left: 5px;
}

#globalSearch .dx-texteditor-input {
    padding-top: 9px !important;
}

.infoheading {
    font-weight: bold;
    padding-bottom: 5px;
}

.globalSearchfooter {
    padding: 5px;
    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2) !important;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2) !important;
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2) !important;
    text-align: center;
    color: #8a8a8a;
    background-color: #fff;
    font-size: 12px;
}

.globalSearchList {
    border-bottom: 1px solid #e9eaec !important;
    max-height: calc(100vh - 70px);
}

.userProfilelist {
    min-width: 200px;
}

.userProfileinfo {
    list-style: none;
    padding-left: 10px;
}

    .userProfileinfo a {
        color: #8a8a8a;
        display: block;
    }

    .userProfileinfo span {
        padding-left: 10px;
    }

.userprofiles .dx-menu-item.dx-state-hover, .userprofiles .dx-menu-item.dx-state-active, .userprofiles .dx-menu-item-expanded {
    background-color: transparent !important;
}

.userprofiles img {
    width: 25px;
    border-radius: 50%;
    height: 25px;
}

    .userprofiles img:hover {
        width: 25px;
        border-radius: 50%;
        height: 25px;
    }

.userProfileinfo a {
    text-decoration: none;
}

#headertoolbar .dx-button {
    border: 0px;
    background-color: transparent;
}

.userProfilelist .list-item {
    padding-top: 5px;
}

#headertoolbar .dx-button .dx-button-content {
    padding: 4px !important;
}

#headertoolbar .dx-menu-base .dx-menu-item-content {
    padding: 0 !important;
}

.userprofiles .dx-context-menu-container-border {
    border: none !important;
}

.userprofiles .dx-menu-horizontal:after {
    height: 0 !important;
}

.text-semibold {
    text-transform: capitalize;
}

.dx-menu-separator {
    margin: 0 !important;
}

.dx-submenu {
    margin-top: 11px;
}

.dx-context-menu.dx-datagrid .dx-submenu {
    margin-top: 0px !important;
}

.groupicon {
    float: left;
    padding-right: 10px;
}

#headertoolbar .dx-show-clear-button .dx-icon-clear, #headertoolbar .dx-searchbox .dx-icon-search {
    top: 60% !important;
}

@media only screen and (max-width: 390px) {
    .globalSearchresult {
        width: 186px !important;
    }
}

@media only screen and (max-width: 490px) {
    .globalSearchresult {
        width: 277px;
    }
}

.copyright a:hover {
    color: #04a1f4;
    text-decoration: underline;
}

#quickmenu {
    z-index: 1030;
    top: 0;
    right: 0;
    position: fixed;
    margin-top: 50px;
}

#notification {
    max-height: calc(100vh - 70px);
    z-index: 1030;
    top: 0;
    right: 0;
    position: fixed;
    margin-top: 50px;
}

.nodata {
    width: 77px !important;
    font-size: 11px;
}

.quickmenuinfo {
    height: 18px !important;
    width: 77px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
}

    .quickmenuinfo .tooltiptext {
        visibility: hidden;
        width: 120px;
        color: #8a8a8a;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        margin-top: 26px;
        margin-left: -100px;
    }

    .quickmenuinfo:hover .tooltiptext {
        visibility: visible;
    }

.secColumn {
    min-width: 246px !important;
}

.singleColumn {
    min-width: 125px !important;
}

.dx-menu-horizontal {
    height: 30px !important;
}

.dx-toolbar-menu-section .dx-toolbar-item-auto-hide {
    padding: 0 !important;
}

.dx-menu-horizontal .dx-menu-item-wrapper {
    display: block !important;
}

.dx-menu-base .dx-menu-items-container {
    display: block !important;
}

@media only screen and (max-width: 320px) {
    .page-container .main-content {
        padding: 85px 10px 10px 10px;
    }
}

.infoheadingIcon, .infoheading {
    color: #696969;
    font-size: 20px;
}

.infoheading {
    color: #696969;
    font-size: 13px;
}

.SearchInfo {
    padding: 5px;
}

.iteminfo {
    padding-left: 40px !important;
}

.IconInfo {
    padding-top: 10px;
    width: 40px;
}

.gscurrentdatetime {
    font-size: 13px;
}

.contactheader {
    display: inline-block;
}

#headericon {
    font-size: 22px;
    padding: 10px;
}

.actions {
    display: inline-block;
}


/* Links inside the navbar */
.cw-dropdown-menu {
    overflow: hidden;
    background-color:transparent;
}

/*.cw-dropdown-menu a {
    float: left;
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
}*/

/* The dropdown container */
.cw-dropdown-menu {
    float: left;
    overflow:auto;
}
    .cw-dropdown-menu .dropbtn {
        background-color: transparent;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
    }
    /* Dropdown button */
    .cw-dropdown-menu .dropbtn a {
        border: none;
        outline: none;
        color: white;
        background-color: transparent;
        font: inherit; /* Important for vertical align on mobile phones */
        margin: 0; /* Important for vertical align on mobile phones */
        text-transform: uppercase;
        padding: 0.4em 1.2em;
    }


/* Dropdown content (hidden by default) */
    .cw-dropdown-menu .dropdown-content {
        display: none;
        position: absolute;
        background-color: #fff;
        width: auto;
        right: 0;
        padding: 20px 0 0 10px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1000;
        border: 3px solid var(--main-info-bg-color);
    }

/* Create three equal columns that floats next to each other */
.cw-dropdown-menu .column {
    width: 210px;
    padding: 0;
    background-color: transparent;
    height: auto;
    padding-bottom:20px;
}

    .cw-dropdown-menu .column h3 {
        text-transform: uppercase;
        color: hsl(216deg 98% 52%);
        font-size: 13px;
        padding: 0 0 0 5px;
    }
        /* Style links inside the columns */
    .cw-dropdown-menu .column a {
        float: none;
        color: #000;
        padding: 3px 5px;
        text-decoration: none;
        display: block;
        text-align: left;
        font-size: 13px;
        text-transform: none;
    }

        /* Add a background color on hover */
        .cw-dropdown-menu .column a:hover {
            background-color: transparent ;
        }

/* Clear floats after the columns */
.cw-dropdown-menu .row:after {
    content: "";
    display: table;
    clear: both;
}

#navbarMenu {
    margin-top: -10px;
    display: flex !important;
    position: absolute;
    justify-content: flex-end;
    right: 0;
    top: 0;
}
@media only screen and (max-width: 991px) {

    #navbarMenu.show {
        display: block !important;
        position: relative;
        height: auto;
        background-color: var(--main-info-bg-color);
    }

        #navbarMenu.show .flex-column {
            height: 100%;
        }
        /*.unauthorised #navbarMenu.show .flex-column .nav-item {
            height:100%;
        }*/

        #navbarMenu.show .utility-nav, #navbarMenu.show .login-nav, #navbarMenu.show .primary-nav {
            float: none;
            display: block;
        }
}


