﻿.delete {
    cursor: pointer;
}

body {
    min-width: 900px;
}

#loadingPanel {
    /*width: 100%;*/
    height: 69px;
    text-align: center;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cssload-speeding-wheel-background {
    width: 73px;
    height: 73px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 50%;
    border: 18px solid rgba(0, 0, 0, .75);
    line-height: 73px;
    position: relative;
    transform: scale(.7);
    -moz-transform: scale(.7);
    -webkit-transform: scale(.7);
    -o-transform: scale(.7);
    -ms-transform: scale(.7);
    -webkit-transform: scale(.7);
    /*transition: transform .2s ease-in-out;
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition:transform 0.2s ease-in-out;
    -ms-transition:transform 0.2s ease-in-out;*/
}

/*.cssload-speeding-wheel-background.show-spinner {
    transform: scale(.7);
    animation: scale-spinner-down .2s;
		-o-animation: scale-spinner-down .2s;
		-ms-animation: scale-spinner-down .2s;
		-webkit-animation: scale-spinner-down .2s;
		-moz-animation: scale-spinner-down .2s;
}*/

.cssload-speeding-wheel-blue {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 69px;
    height: 69px;
    margin: 0 auto;
    border: 4px solid #4F91CC;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 1000ms infinite linear;
    -o-animation: cssload-spin 1000ms infinite linear;
    -ms-animation: cssload-spin 1000ms infinite linear;
    -webkit-animation: cssload-spin 1000ms infinite linear;
    -moz-animation: cssload-spin 1000ms infinite linear;
}

.cssload-speeding-wheel-red {
    position: absolute;
    top: -11px;
    left: -11px;
    width: 59px;
    height: 59px;
    margin: 0 auto;
    border: 4px solid #F55032;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 1100ms infinite linear;
    -o-animation: cssload-spin 1100ms infinite linear;
    -ms-animation: cssload-spin 1100ms infinite linear;
    -webkit-animation: cssload-spin 1100ms infinite linear;
    -moz-animation: cssload-spin 1100ms infinite linear;
    /*animation: cssload-spin-reverse 1000ms infinite linear;
		-o-animation: cssload-spin-reverse 1000ms infinite linear;
		-ms-animation: cssload-spin-reverse 1000ms infinite linear;
		-webkit-animation: cssload-spin-reverse 1000ms infinite linear;
		-moz-animation: cssload-spin-reverse 1000ms infinite linear;*/
}

.cssload-speeding-wheel-green {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 49px;
    height: 49px;
    margin: 0 auto;
    border: 4px solid #AFBD20;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 1200ms infinite linear;
    -o-animation: cssload-spin 1200ms infinite linear;
    -ms-animation: cssload-spin 1200ms infinite linear;
    -webkit-animation: cssload-spin 1200ms infinite linear;
    -moz-animation: cssload-spin 1200ms infinite linear;
}

/*@keyframes scale-spinner-down {
    from {
        transform:scale(1.5);
    }
    to {
        transform:scale(.7);
    }
}*/

@keyframes cssload-spin {
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-spin {
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-spin {
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-spin {
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes cssload-spin-45 {
    from {
        transform: rotate(45deg);
        transform: rotate(45deg)
    }

    to {
        transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@-o-keyframes cssload-spin-45 {
    from {
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    to {
        -o-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@-ms-keyframes cssload-spin-45 {
    from {
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    to {
        -ms-transform: rotate(360deg);
        transform: rotate(405deg);
    }
}

@-webkit-keyframes cssload-spin-45 {
    from {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    to {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@-moz-keyframes cssload-spin-45 {
    from {
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    to {
        -moz-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@keyframes cssload-spin-90 {
    from {
        transform: rotate(90deg);
        transform: rotate(90deg)
    }

    to {
        transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@-o-keyframes cssload-spin-90 {
    from {
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    to {
        -o-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@-ms-keyframes cssload-spin-90 {
    from {
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    to {
        -ms-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@-webkit-keyframes cssload-spin-90 {
    from {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    to {
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@-moz-keyframes cssload-spin-90 {
    from {
        -moz-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    to {
        -moz-transform: rotate(450deg);
        transform: rotate(450deg);
    }
}

@keyframes cssload-spin-reverse {
    100% {
        transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-o-keyframes cssload-spin-reverse {
    100% {
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-ms-keyframes cssload-spin-reverse {
    100% {
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes cssload-spin-reverse {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-moz-keyframes cssload-spin-reverse {
    100% {
        -moz-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#SiteHeaderContainer {
    vertical-align: middle;
    background-color: #EEEEEE;
    height: 50px;
    width: 100%;
}

#SiteHeader {
    position: relative;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    padding: 5px;
}
#SiteHeaderMobile {
    position: relative;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    padding: 5px;
}

#AncorLogoContainer {
    display: inline-block;
    margin-top: 8px;
    margin-left: 15px;
    vertical-align: middle;
}

#AncorLogo {
    display: inline-block;
    height: 22px;
    cursor: pointer;
}

#EnvirnomentIndicator {
    display: inline-block;
    float: right;
    margin-right: 250px;
}

    #EnvirnomentIndicator.modernLayout span {
        color: white;
        font-size: 29px;
        font-weight: 900;
    }

    #EnvirnomentIndicator.nonModern span {
        color: #1976D3;
        font-size: 29px;
        font-weight: 900;
    }

#HeaderLinks {
    position: absolute;
    right: 0;
    display: inline-block;
    margin-right: 20px;
    margin-top: 7px;
}

div#UserNotifications.nonModern {
    right: 225px !important;
}

#UserNotifications {
    position: absolute;
    right: 0;
    display: inline-block;
    margin-right: 20px;
    margin-top: 7px;
}
#NotificationsBell {
    width: 45px !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
    #NotificationsBell i {
        position: relative;
        float: right;
        font-size: 26px;
        transform: rotate(15deg);
        color: #FFD700;
        text-shadow: 0px 0px 10px #fff;
    }
#NotificationsNumber {
    position: relative;
    top: -30px;
    right: 10px;
    width: 25px;
}
    #NotificationsNumber span {
        background-color: #1976D3;
        padding: 3px 5px 3px 4px;
        float: right;
    }
.red-background {
    background-color: #c12e2a !important;
}
#NotificationsNumber span{
    font-size: 12px;
}
.newNotificationTxt {
    text-decoration: none !important;
    margin-right: 8px;
}

    .newNotificationTxt i {
        transform: rotate(15deg);
        margin-left: 4px;
        color: #FFD700 !important;
    }
#UserProfile {
    padding: 2px 10px 2px 10px;
    background-color: #1976D3;
    height: 25px;
    border-radius: 12.5px;
    color: white;
    box-shadow: rgba(0,0,0,.4) 0 2px 6px;
    cursor: pointer;
}

    #UserProfile label {
        cursor: pointer;
    }

    #UserProfile > span {
        margin-right: 5px;
    }

#UserMenuDropdownIcon {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 2px;
}

#UserNotificationsMenu {
    top: 52px;
    display: none;
}
#UserNotificationsMenu .mega-menu-buttons{
    min-width: 270px;
}
    #UserNotificationsMenu ul {
        max-height: 315px;
        overflow-y: auto;
        width: 100%;
        margin-bottom: 0px;
    }
    #UserNotificationsMenu li {
        width: 100%;
        border-bottom: 1px solid #d7d7d7;
        font-weight: 600;
        padding-right: 10px;
    }
        #UserNotificationsMenu li:hover, #UserNotificationsMenu li:focus {
            background-color: #e3e3e3;
        }
    #UserNotificationsMenu .black-text{
        color: #191919;
        font-size: 13px;
        padding-left: 10px;
    }

#UserProfileMenu {
    display: none;
    width: 160px;
    height: 90px;
    text-align: center;
    position: absolute;
    top: 43px;
    right: 0;
    margin-top: 7px;
    box-shadow: rgba(0,0,0,.4) 0 2px 6px;
    cursor: pointer;
}

    #UserProfileMenu .vert-menu-mouse-helper {
        width: 190px;
    }

#UserProfileMenuMouseHelper {
    display: block;
    position: absolute;
    height: 40px;
    width: 100%;
    top: -40px;
    right: 0;
    cursor: pointer;
}

#UserProfileMenuButtons {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: #1976D3;
    text-align: center;
}

#UserProfileMenuBorderTriangle {
    position: absolute;
    top: -5px;
    right: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background-color: #1976D3;
    width: 15px;
    height: 15px;
    z-index: 1;
}

#UserProfileMenu span:not(#lnkSignOut) {
    background-color: #1976D3;
}

    #UserProfileMenu span:not(#lnkSignOut):hover {
        /*background-color: #5091CE;*/
    }

#UserProfileMenu span:not(:last-child) {
    border-bottom: 1px solid #63A3E0;
}

#lnkSignOut {
    width: 100% !important;
    height: 100%;
    background-color: #EB5534;
    border: none;
    color: white;
    font-weight: 600;
    outline: none;
}

    #lnkSignOut:hover {
        /*background-color: #f5775b;*/
    }

#ClientHeaderContainer {
    vertical-align: middle;
    background-color: #FFFFFF;
    height: 53px;
    width: 100%;
    box-shadow: rgba(0,0,0,.2) 0 2px 6px;
    white-space: nowrap;
    min-width: 900px;
}

#ClientHeader {
    position: relative;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
}
.ContainerBorder {
    border: 2px solid #1976D3 !important;
    box-shadow: rgba(0, 0, 0, .5) 0 2px 6px;
}
#ClientLogoContainer {
    position: absolute;
    left: 0;
    /*display:inline-block;*/
    margin-left: 15px;
}

#ClientLogo {
    height: 25px;
}

#SiteMenuContainer {
    text-align: right;
    vertical-align: middle;
    /*display:inline-block;*/
    background-color: white;
    margin-left: 5px;
    padding: 0;
    height: 100%;
    position: absolute;
    right: 0;
}
#SiteMenuContainer-Middle {
    vertical-align: middle;
    background-color: white;
    margin-left: 5px;
    padding: 0;
    height: 100%;
}
#SiteMenu {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

.menubar-item {
    display: inline-block;
    cursor: pointer;
    width: 140px;
    text-align: center;
    vertical-align: top;
    position: relative;
}

.menubar-item > div:not(.vert-menu) {
    display: inline-block;
}

.menubar-item > img {
    height: 25px;
    margin-right: 5px;
}

.menubar-item > div > a,
.menubar-item > a > div {
    font-weight: 600;
    text-decoration: none;
}

.menubar-item > div > a > i,
.menubar-item > a > div > i {
    height: 25px;
    line-height: 18px;
    vertical-align: middle;
    margin-left: 3px;
}

.menubar-item:hover {
    background-color: #1976D3;
    box-shadow: rgba(0,0,0,.4) 0 0 5px inset;
}

.menubar-item:hover > div > a,
.menubar-item:hover > a > div {
    color: white;
}

.submenu {
    display: none;
}

.menu-img-unselected {
    color: #1976D3;
    padding-left: 15px;
}

.menu-img-selected {
    color: white;
    display: none;
    padding-left: 15px;
}

.submenu > div > a {
    font-size: 12px;
    color: white;
    font-weight: 600;
}

.submenu > div {
    height: 40px;
    line-height: 12px;
}

.vert-menu {
    display: none;
    width: 160px;
    text-align: center;
    position: absolute;
    top: 56px;
    right: 0;
    margin-right: 0;
    margin-top: 7px;
    box-shadow: rgba(0,0,0,.4) 0 2px 6px;
    cursor: pointer;
    z-index: 8;
}

.vert-menu-mouse-helper {
    display: block;
    position: absolute;
    height: 63px;
    width: 120px;
    top: -63px;
    right: 0;
    cursor: pointer;
}

.vert-menu-border-triangle {
    position: absolute;
    top: -5px;
    right: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background-color: #1976D3;
    width: 15px;
    height: 15px;
    z-index: 1;
}

.vert-menu-buttons {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: #1976D3;
    text-align: center;
}

.vert-menu-link {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    cursor: pointer;
    z-index: 2;
    line-height: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    vertical-align: middle;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-wrap: normal;
    white-space: normal;
}

    .vert-menu-link:not(:last-child) {
        border-bottom: 1px solid #63A3E0;
    }

    .vert-menu-link a {
        line-height: 10px !important;
        text-decoration: none;
        outline: none;
    }

    .vert-menu-link:hover {
        /*background-color: #5091CE;*/
        background-color: #215f99;
        /*transform: scaleX(1.25);*/
        /*width: 100%;*/
    }

.mega-menu {
    display: none;
    text-align: center;
    position: absolute;
    top: 56px;
    right: 0px;
    margin-right: 0;
    box-shadow: none;
    color: transparent;
    border: none;
    cursor: default !important;
    z-index: 8;
    width: 670px;
}
.mega-menu-mouse-helper {
    display: block;
    position: absolute;
    height: 63px;
    width: 150px;
    top: -63px;
    right: 0px;
    cursor: pointer;
}

.mega-menu-border-triangle {
    position: absolute;
    top: -5px;
    right: 85px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background-color: #1976D3;
    width: 15px;
    height: 15px;
    z-index: 1;
}

.mega-menu-buttons {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 2;
    background-color: white;
    text-align: center;
    border: 2px solid #1976D3;
    box-shadow: rgb(0 0 0 / 50%) 0 2px 6px;
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 675px;
}

.mega-menu-link {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    cursor: pointer;
    z-index: 2;
    line-height: 20px;
    vertical-align: middle;
    color: #428bca;
    font-weight: 600;
    font-size: 14px;
    text-wrap: normal;
    white-space: normal;
    padding: 8px 5px 8px 10px;
    background-color: white;
}
.under-line {
    width: 70%;
    left: 25%;
    height: 1.5px;
    line-height: 1.5px;
    border-top: 1.5px solid #428bca;
    list-style-type: none;
    margin-left: 5px;
}
.mega-menu-sub-link {
    text-align: left;
    padding: 8px 5px 8px 25px;
    margin-right: auto;
    width: 100%;
    cursor: pointer;
    z-index: 2;
    line-height: 13px;
    vertical-align: middle;
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 12px;
    text-wrap: normal;
    white-space: normal;
}

    .mega-menu-sub-link:hover {
        text-decoration: underline;
    }
/*    .mega-menu-sub-link:last-child {
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }*/

.mega-menu-link a {
    color: white;
    line-height: 18px !important;
    text-decoration: none;
    outline: none;
    display: block;
}

.mega-menu-link li {
    list-style-type: none;
}
.mega-menu-columns {
    padding-left: 0px !important;
    padding-right: 0px !important;
    min-width: 166.5px;
}
.subnav-contents {
    padding-left: 0px !important;
}
.reportissue-menu {
    display: none;
    width: 160px;
    text-align: center;
    position: absolute;
    top: 56px;
    right: 0;
    margin-right: 0;
    margin-top: 7px;
    box-shadow: rgba(0,0,0,.4) 0 2px 6px;
    cursor: pointer;
    z-index: 8;
}

.reportissue-menu-mouse-helper {
    display: block;
    position: absolute;
    height: 63px;
    width: 120px;
    top: -63px;
    right: 0;
    cursor: pointer;
}

.reportissue-menu-border-triangle {
    position: absolute;
    top: -5px;
    right: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background-color: #1976D3;
    width: 15px;
    height: 15px;
    z-index: 1;
}

.reportissue-menu-buttons {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: #1976D3;
    text-align: center;
}

.reportissue-menu-link {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    cursor: pointer;
    z-index: 2;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: middle;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-wrap: normal;
    white-space: normal;
}

    .reportissue-menu-link:hover {
        /*background-color: #5091CE;*/
        background-color: #215f99;
        color: white;
        text-decoration: none;
        /*transform: scaleX(1.25);*/
        /*width: 100%;*/
    }


#ModalMessage {
    display: none;
    position: fixed;
    z-index: 1090;
    width: 100%;
    height: 100%;
}

#ModalMessageContent {
    max-height: calc(100% - 50px);
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0,0,0,.3) 0 0 15px;
    min-width: 300px;
}

.modal-message-header {
    padding: 10px;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #EDEDED;
}

    .modal-message-header img {
        height: 20px;
    }

.modal-message-body {
    background-color: #5192CA;
    padding: 10px;
    width: 100%;
    margin-top: -1px;
    margin-bottom: -1px;
    color: white;
    padding: 10px 30px 10px 30px;
    text-transform: uppercase;
}

.modal-message-footer {
    background-color: #5192CA;
    padding: 10px;
    width: 100%;
    text-align: right;
}

    .modal-message-footer input {
        background-color: transparent;
        border: none;
        color: white;
        width: 60px;
        margin-left: 10px;
    }

#MobileSiteMenu {
    display: none;
}

#HamburgerMenu {
    display: none;
}

#MobileClientList {
    display: none;
}

/* In between Desktop & Mobile, 992px - 700px*/
@media (max-width: 992px) {
    .mega-menu {
        width: 550px;
    }
}

/* MOBILE BEGIN */
@media (max-width: 700px) {
    body {
        min-width: 350px;
    }

    .dataTables_paginate {
        text-align: center;
    }

    .body-content {
        z-index: 1;
        padding-top: 50px !important;
    }

    .page-title {
        padding-top: 15px !important;
    }

    #PageFooter {
        z-index: 5;
    }

    #ClientHeaderContainer {
        z-index: 3;
        min-width: 350px;
        width: 100%;
        position: absolute;
    }

    #ClientHeader {
        position: relative;
    }

    #SiteMenuContainer {
        display: none;
    }

    #SiteMenu {
        display: none;
    }

    #ClientList {
        display: none;
    }

    #MobileSiteMenuContainer {
        z-index: 6;
        position: absolute;
        display: none;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #MobileSiteMenu {
        display: block;
        width: 100%;
    }

    #MobileClientList {
        display: table-cell;
        cursor: pointer;
        width: 100% !important;
    }

        #MobileClientList a:hover {
            text-decoration: none;
            color: #337ab7;
        }

    #HamburgerMenu {
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        cursor: pointer;
        background-color: #EC5433;
        width: 65px;
        height: 53px;
        color: white;
        font-size: 32px;
        text-align: center;
    }
    .menubar-item {
        width: 50%;
        display: inline-block;
        text-align: center;
    }

    #MobileMenuTable {
        z-index: 5;
        width: 100%;
        min-width: 350px;
    }

        #MobileMenuTable tr {
            width: 100%;
        }

        #MobileMenuTable td {
            background-color: white;
            text-align: center;
            line-height: 80px;
            /*width: 50%;*/
            height: 80px;
            /*display: inline-block;*/
            border-bottom: 1px solid black;
            text-transform: uppercase;
            font-weight: bold;
        }

        #MobileMenuTable tr:not(:first-child):not(.mobile-vert-menu-tr) td:first-child,
        #MobileMenuTable tr:not(:first-child):not(.mobile-vert-menu-tr) td:nth-child(2n+1) {
            border-right: 1px solid black;
        }

        #MobileMenuTable td > img {
            height: 30px;
            margin-right: 5px;
        }

        #MobileMenuTable td a {
            line-height: 30px;
            font-weight: 600;
            text-decoration: none;
        }

        #MobileMenuTable td > a:hover {
            text-decoration: none;
            color: #337ab7;
        }

        #MobileMenuTable td i.sort-icon {
            height: 25px;
            font-size: 20px;
            transform: rotate(-90deg);
            line-height: 20px;
            vertical-align: middle;
            margin-left: 3px;
            margin-bottom: 5px;
            color: #337ab7;
        }

        #MobileMenuTable td i.rotated {
            transform: rotate(0deg);
        }

    .mobile-menubar-item {
        color: #337ab7;
        cursor: pointer;
    }

        .mobile-menubar-item.final {
            width: 100% !important;
        }

    .mobile-vert-menu-tr {
        display: none;
        width: 100%;
    }

    .mobile-vert-menu-td {
        width: 100% !important;
        background-color: #1976D3 !important;
        height: auto !important;
    }

    .report-buttons {
        margin-top: 15px;
    }
}
/* MOBILE END*/


/* Styling for Back to top button -KG 09/06/2018*/
/* Back to top button edited -AJ 05/08/2024 */
#back-top {
    position: fixed;
    cursor: pointer;
    width: 35px;
    height: 30px;
    bottom: 45px;
    right: 13px;
    z-index: 1;
    background-color: #D7D7D7;
    border-radius: 10px;
}

#backToTopBtn {
    position: fixed;
    bottom: 45px;
    right: 15px;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 0;
    /*background: url(../../../images/feedback.png) no-repeat center center;*/
    opacity: 1; /* originally 0.7 */
    /*filter: alpha(opacity=70); /* For IE8 and earlier */
    -webkit-transition: 1s;
    -moz-transition: 1s;
}

    /*#back-top a {
        width: 30px;
        display: block;
        text-align: center;
        font: 8px/100% Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        text-decoration: none;
        color: #8e8f8e;*/
        /* background color transition */
        /*-webkit-transition: 1s;
        -moz-transition: 1s;
        transition: 1s;
    }*/

        #back-top a:hover {
            color: #000;
        }
    /* arrow icon (span tag) */
    /*#back-top span#arrow {
        width: 30px;
        height: 30px;
        display: block;
        background: url(../../Images/backToTop.png) no-repeat center center;
        background-color: transparent;
        opacity: 1;*/
        /*filter: alpha(opacity=70);  For IE8 and earlier */
        /*-webkit-transition: 1s;
        -moz-transition: 1s;
        transition: 1s;
    }

    #back-top a:hover span#arrow {
        background: url(../../../Images/backToTop.png) no-repeat center center;
        opacity: 0.7;*/
        /*filter: alpha(opacity=100); /* For IE8 and earlier */
    /*}*/

/* Styling for feedback button - KG 09/06/2018*/
/* Feedback button edited -AJ 05/08/2024 */
#feedback-container {
    position: fixed;
    bottom: 0px;
    right: 10px;
    z-index: 1;
    width: 40px;
    height: 35px;
    display: block;
    background-color: #D7D7D7;
    opacity: 1;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: 1s;
}

#feedbackBtn {
    position: fixed;
    bottom: 0px;
    right: 13px;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: block;
    margin-bottom: 0;
    /*background: url(../../../images/feedback.png) no-repeat center center;*/
    opacity: 1; /* originally 0.7 */
    /*filter: alpha(opacity=70); /* For IE8 and earlier */
    -webkit-transition: 1s;
    -moz-transition: 1s;
}


    #feedbackBtn:hover {
        opacity: 0.5;
    }

#give-feedback-text {
    display: none;
    font-size: 13px;
    margin: 9px 0 0 43px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

    #give-feedback-text:hover {
        color: #787276;
    }

#aichat-container {
    position: fixed;
    bottom: 0px;
    right: 60px;
    z-index: 1;
    width: 40px;
    height: 35px;
    display: block;
    background-color: #D7D7D7;
    opacity: 1;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: right 1s ease, width 1s ease;
}

#aichatBtn {
    position: absolute;
    bottom: 0px;
    right: 2px;
    z-index: 1;
    width: 35px;
    height: 35px;
    display: block;
    margin-bottom: -2px;
    opacity: 1; /* originally 0.7 */
    /*filter: alpha(opacity=70); /* For IE8 and earlier */
    -webkit-transition: 1s;
    -moz-transition: 1s;
}

#aichatBtn:hover {
    opacity: 0.5;
}

#ask-chatbot-text {
    display: none;
    font-size: 13px;
    margin: 9px 0 0 43px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

#ask-chatbot-text:hover {
    color: #787276;
}

/* Styling for Feedback Modal -KG 09/06/2018*/
#feedbackAskTextModal {
    margin-left: 15px;
}

#feedbackNotes {
    resize: none;
    width: 95%;
    -webkit-box-sizing: border-box; /* <=iOS4, <= Android  2.3 */
    -moz-box-sizing: border-box; /* FF1+ */
    box-sizing: border-box; /* Chrome, IE8, Opera, Safari 5.1*/
    margin-left: 15px;
    height: 120px;
}

#btnCancelFeedback {
    border: none;
    background-color: transparent;
    text-decoration: underline;
    margin-right: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

#btnSubmitFeedback {
    margin-right: 15px;
}

/************* Nav tabs ****************/
.ribbon_tabs {
    margin-right: auto;
    margin-bottom: 5px;
    margin-left: 15px;
    position: relative;
    height: 70px;
    color: #aaa;
}

    .ribbon_tabs > div {
        display: block;
    }

    .ribbon_tabs ul {
        margin: 0;
    }

    .ribbon_tabs .title {
        background: #1976D3;
        color: #FFF;
        height: 55px;
        padding-top: 15px;
        padding-left: 10px;
        padding-right: 10px;
        font-weight: bold;
    }

        .ribbon_tabs .title > i {
            margin-right: 10px;
            position: relative;
            top: -3px;
        }

    .ribbon_tabs * {
        float: left;
    }

    .ribbon_tabs li a {
        float: left;
        text-align: center;
        margin-top: 0;
        font-weight: bold;
        height: 55px;
        padding: 15px 25px 15px 25px;
    }

    .ribbon_tabs li:hover {
        background: #1976D3;
        box-shadow: rgba(0,0,0,.4) 0 0 5px inset;
    }

        .ribbon_tabs li:hover a {
            color: #FFF;
            text-decoration: none;
        }

    .ribbon_tabs .selected {
        font-weight: bold;
        border-bottom: 5px solid #1976D3;
    }

    .ribbon_tabs li * {
        float: none;
        margin: 0;
    }

    .ribbon_tabs li i {
        position: relative;
        left: -5px;
    }

    .ribbon_tabs a {
        color: #1976D3;
    }

/****************************************/

#new-search-area input {
/*    max-width: 300px;
*/    /*font-size: 20px;*/
    padding: 5px;
    margin-bottom: 10px;
    padding: 10px 10px 10px 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 30px;
    text-decoration: none;
    outline: none;
}

.userName-row .selected {
    font-weight: bold;
    background: #1976D3;
    color: #FFF;
}

#PasswordStrength {
    margin-top: 10px;
    border-radius: 4px;
}

.poor {
    background: red;
    font-weight: bold;
    text-align: center;
    margin: auto;
}

.weak {
    background: orange;
    font-weight: bold;
    text-align: center;
    margin: auto;
}

.good {
    background: yellow;
    font-weight: bold;
    text-align: center;
    margin: auto;
}

.strong {
    background: green;
    font-weight: bold;
    text-align: center;
    margin: auto;
}

/*Add sorting icon to sorted datatables*/
.sorting_asc::after {
    font-family: "Font Awesome 5 Free";
    content: " \f161";
    white-space: nowrap;
    color: #104982;
    font-size: 12px;
    padding: 3px;
}

.sorting_desc::after {
    font-family: "Font Awesome 5 Free";
    content: " \f160";
    white-space: nowrap;
    /*color: #104982;*/
    padding: 3px;
    font-size: smaller;
}

/*Remove sort icon from columns with no-sort class applied */
th.no-sort:after {
    content: none !important;
}

#setRows:not(.searchPageField) {
    max-width: 115px;
}


ul.inlineCommaList {
    display: inline;
    list-style: none;
}

ul.inlineCommaList li {
    display: inline;
}

ul.inlineCommaList li:not(:last-child):after {
    content: ", ";
}

div#InformationTop div.noLabelCount {
    padding-left: 20%
}

div.noLabelCount {
    line-height: normal;
    font-style: oblique;
    padding-top: 7px;
    padding-bottom: 7px;
}

#ClientList .mega-menu-link{
    color: #000;
}
    #ClientList .mega-menu-link:hover {
        text-decoration: underline
    }
a.nav-item {
    cursor: pointer;
}
.rowSpacing10 {
    padding-top: 10px;
}
.ViewOnlyTextFormat {
    color: red;
    margin-left: 15px;
    /*width: 50%;*/
    display: none;
    padding-bottom: 10px;
}
/*#ViewOnlyWVText {
    color: red;
    margin-left: 15px;
    width: 50%;
    display:none;
}
#ViewOnlyWVTextWVHome {
    color: red;
    margin-left: 15px;
    width: 50%;
    display: none;
}*/

.selectize-input {
    height: 40px;
    padding-top: 8px !important;
}

.removeLeftPad {
    padding-left: 0 !important;
}

.removeRightPad {
    padding-right: 0 !important;
}

.grid-list-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.column3 {
    -moz-column-count: 3; /* For FireFox */
    -webkit-column-count: 3; /* For Safari/Chrome */
    column-count: 3; /* For when the standard gets fully supported */
}

#sidePanelChatbot {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 45px;
    z-index: 99999;
}

#chatbotFrame {
    border: none;
    width: 100%;
    height: 100%;
}

#closeChatbot {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 32px;
    padding: 0 8px;
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
}