html, boby, .layout-wrapper, .layout-content {
    height: 100%;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--surface-a);
    font-family: var(--font-family);
    font-weight: normal;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 1.5rem 0 0 0;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@keyframes pulse {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }
    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }
    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}

.p-toast.p-toast-topright,
.p-toast.p-toast-topleft {
    top: 100px;
}

.action-button {
    font-weight: bold;
    text-align: center;
    color: #2b3034 !important;
    background-color: #FEAB4D;
    padding: 10px 24px 9px 24px;
    border-radius: 3px;
    transition: background-color .2s;
}

.action-button:hover {
    background-color: #feb767;
    color: #ffffff;
    text-decoration: none !important;
}

.status-indicator {
    position: fixed;
    width: 42px;
    height: 42px;
    right: 7px;
    bottom: 7px;
    font-size: 28px;
    color: var(--primary-color);
    pointer-events: none;
}

.text-secondary {
    color: var(--text-color-secondary);
}

.p-connected-overlay {
    opacity: 0;
    transform: scaleY(0.8);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
}

.p-connected-overlay-visible {
    opacity: 1;
    transform: scaleY(1);
}

.p-connected-overlay-hidden {
    opacity: 0;
    transform: scaleY(1);
    transition: opacity .1s linear;
}

@-webkit-keyframes connected-overlay-in {
    from {
        opacity: 0;
        -webkit-transform: scaleY(0.8);
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes connected-overlay-in {
    from {
        opacity: 0;
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes connected-overlay-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fade-out-down {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.connected-overlay-in {
    -webkit-animation-name: connected-overlay-in;
    animation-name: connected-overlay-in;
}

.connected-overlay-out {
    -webkit-animation-name: connected-overlay-out;
    animation-name: connected-overlay-out;
}

.layout-topbar {
    /*background: url(../images/banner_web.png) center;*/
    background-color: #1f91ed;
    background-size: 100% 100%;
    padding: 0;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    padding: 0 35px;
}

.layout-topbar .menu-button {
    display: none;
    color: var(--primary-color-text);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    transition: background-color .2s;
    overflow: hidden;
    cursor: pointer;
}

.layout-topbar .chart-button {
    display: block;
    color: var(--primary-color-text);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    transition: background-color .2s;
    overflow: hidden;
    cursor: pointer;
}


.layout-topbar .menu-button:hover {
    background-color: var(--surface-c);
}

.layout-topbar .chart-button:hover {
    background-color: #18558A;
}

.layout-topbar .menu-button i {
    font-size: 24px;
    line-height: inherit;
}

.layout-topbar .chart-button i {
    font-size: 24px;
    line-height: inherit;
}

.layout-topbar .logo {
	display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
}

.layout-topbar .logo img {
    width: 40px;
    margin-right:10px 
}

.layout-topbar .logo:focus {
    outline: 0 none;
    transition: box-shadow .2s;
    box-shadow: 0 0 0 0.2rem #BBDEFB;
}

.layout-topbar .topbar-form {
    margin-left: auto;
}

.layout-topbar .query-form {
    display: none;
    align-items: center;
    margin-left: 70px;
}

body .layout-wrapper .layout-content .route-bar {
    min-height: 40px;
    background-color: #EFEFEF;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

body .layout-wrapper .layout-content .route-bar:after {
    content: "";
    display: table;
    clear: both;
}

body .layout-wrapper .layout-content .route-bar .route-bar-breadcrumb {
    padding: 9px 20px;
    display: inline-block;
}

body .layout-wrapper .layout-content .route-bar .route-bar-breadcrumb ul {
    padding-left: 0;
    margin: 0;
}

body .layout-wrapper .layout-content .route-bar .route-bar-breadcrumb ul li {
    list-style-type: none;
    display: inline-block;
    padding: 0 0.25em;
}

body .layout-wrapper .layout-content .route-bar .route-bar-breadcrumb ul li a {
    font-size: 16px;
    font-weight: bold;
}

body .layout-wrapper .layout-content .route-bar .route-bar-breadcrumb ul li a:hover {
    color: #0d89ec;
    text-decoration: unset;
}


body .layout-wrapper .layout-content .route-bar .route-bar-breadcrumb ul li i {
    color: #828282;
    font-size: 18px;
    position: relative;
    top: 1px;
}


.layout-topbar .topbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
}

.layout-topbar .topbar-menu > li {
    height: 70px;
    line-height: 70px;
}

.layout-topbar .topbar-menu > li > a {
    text-decoration: none;
    color: var(--primary-color-text);
    min-width: 120px;
    font-size: 18px;
    display: block;
    text-align: center;
    user-select: none;
    line-height: 68px;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color .2s;
    cursor: pointer;
    padding: 0 20px;
}

.layout-topbar .topbar-menu > li > a:hover, .layout-topbar .topbar-menu > li > a:focus {
    background-color: #246dff;
}

.layout-topbar .topbar-menu > li > a:focus {
    z-index: 1;
    outline: 0 none;
    transition: box-shadow .2s;
    box-shadow: inset 0 0 0 0.2em #BBDEFB;
}

.layout-topbar .topbar-menu > li.topbar-submenu {
    position: relative;
}

.layout-topbar .topbar-menu > li.topbar-submenu .ui-overlay-badge {
    display: inline;
}

.layout-topbar .topbar-menu > li.topbar-submenu.topbar-submenu-active > ul {
    display: block;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul {
    display: none;
    position: absolute;
    transform-origin: top;
    top: 70px;
    right: 0;
    width: 275px;
    max-height: 400px;
    background-color: var(--surface-f);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
    overflow: auto;
    list-style-type: none;
    padding: 1rem;
    margin: 0;
    border-radius: 3px;
    animation-duration: .12s;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul > li {
    line-height: 1;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul > li.topbar-submenu-header {
    display: block;
    color: var(--text-color-secondary);
    font-weight: 600;
    user-select: none;
    padding: 1.5rem 0 1rem 0;
    font-size: 0.857rem;
    text-transform: uppercase;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul > li.topbar-submenu-header:first-child {
    padding-top: 1rem;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul a {
    text-decoration: none;
    color: var(--text-color);
    padding: .5rem;
    display: flex;
    align-items: center;
    user-select: none;
    border-radius: 3px;
    cursor: pointer;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul a:hover {
    background-color: var(--surface-c);
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul a span {
    margin-left: .5rem;
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul a i {
    font-size: 18px;
    color: var(--text-color-secondary);
}

.layout-topbar .topbar-menu > li.topbar-submenu > ul a img {
    width: 32px;
    margin-right: .5rem;
}

.layout-topbar .topbar-menu .theme-badge {
    padding: 2px 4px;
    vertical-align: middle;
    border-radius: 3px;
    color: #ffffff;
    font-weight: bold;
    font-size: 11px;
    position: relative;
    top: -1px;
}

.layout-topbar .topbar-menu .theme-badge.material {
    background: linear-gradient(to bottom, #2196F3, #2196F3);
}

.layout-topbar .topbar-menu .theme-badge.bootstrap {
    background: linear-gradient(to bottom, #563D7C, #966BD8);
}

.layout-topbar .topbar-menu .theme-badge.darkmode {
    background: linear-gradient(to bottom, #141d26, #5a6067);
}

.layout-sidebar {
    position: fixed;
    left: 0;
    top: 70px;
    height: calc(100% - 70px);
    background-color: var(--surface-a);
    width: 200px;
    border-right: 1px solid var(--surface-d);
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
    display: flex;
    flex-direction: column;
}

.layout-sidebar .layout-sidebar-avatar {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--surface-d);
    background-color: var(--surface-a);
}

.layout-sidebar .layout-menu {
    /* padding: 0 1rem; */
    overflow-y: auto;
    flex-grow: 1;
}

.layout-sidebar .layout-menu .menu-category {
    display: block;
    color: var(--text-color-secondary);
    font-weight: 600;
    user-select: none;
    padding: 1.5rem 0 1rem 0;
    font-size: 0.857rem;
    text-transform: uppercase;
    border-top: 1px solid var(--surface-d);
}

.layout-sidebar .layout-menu .menu-category:first-child {
    border-top: 0 none;
    padding-top: 1rem;
}

.layout-sidebar .layout-menu .menu-items {
    display: flex;
    flex-direction: column;
}

.layout-sidebar .layout-menu .menu-items a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    font-size: 16px;
}

.layout-sidebar .layout-menu .menu-items a:hover {
    background-color: var(--surface-c);
}

.layout-sidebar .layout-menu .menu-items a:focus {
    z-index: 1;
    outline: 0 none;
    transition: box-shadow .2s;
    box-shadow: 0 0 0 0.2em #BBDEFB;
}

.layout-sidebar .layout-menu .menu-items a.router-link-active {
    font-weight: 700;
    color: #2196F3;
    background-color: #F2F7FF;
}

.layout-sidebar .layout-menu .menu-items a .ui-tag {
    padding-top: .125rem;
    padding-bottom: .125rem;
    margin-left: .5rem;
}

.layout-sidebar .layout-menu .menu-items a.hidden {
    pointer-events: none;
}

.layout-sidebar .layout-menu .menu-items .submenu {
    display: none;
}

.layout-sidebar .layout-menu .menu-items .submenu ul {
    padding: .5rem 0;
    margin: 0;
    list-style-type: none;
}

.layout-sidebar .layout-menu .menu-items .submenu ul a {
    font-size: .875rem;
    padding: .475rem .5rem .475rem 2rem;
}

.layout-sidebar .layout-menu .menu-items a > i {
    width: 16px;
    margin-right: 0.5rem;
}


.layout-sidebar-filter-panel.ui-autocomplete-panel {
    padding: 0.5rem 0;
}

.layout-sidebar-filter-panel.ui-autocomplete-panel .ui-autocomplete-table .ui-widget-header td {
    border: 1px solid transparent;
    padding: 3px 5px;
}

.layout-sidebar-filter-panel.ui-autocomplete-panel .ui-autocomplete-table .ui-autocomplete-item.ui-autocomplete-row > td {
    border: 1px solid transparent;
    padding: 0;
}

.layout-sidebar-filter-panel.ui-autocomplete-panel .ui-autocomplete-table .ui-autocomplete-item.ui-autocomplete-row > td a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--text-color);
}

.layout-sidebar-filter-panel.ui-autocomplete-panel .ui-autocomplete-table .ui-autocomplete-item.ui-autocomplete-row > td a .ui-tag {
    padding-top: .125rem;
    padding-bottom: .125rem;
    margin-left: .5rem;
}

.layout-sidebar-filter-panel.ui-autocomplete-panel .ui-autocomplete-table .ui-autocomplete-item.ui-autocomplete-row.ui-state-highlight > td a {
    background: var(--primary-color);
    color: var(--primary-color-text);
}

.layout-content {
    margin-left: 200px;
    padding-top: 70px;
    background-color: var(--surface-b);
}

.layout-bread {
    border: 0 !important;
}

.layout-content .content-section {
    padding: 1.2rem;
}

.layout-content .content-section.content {
    color: var(--text-color);
}

.layout-content .card {
    background: var(--surface-e);
    padding: 1em;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.layout-content .card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home a {
    text-decoration: none;
    color: #2196f3;
    font-weight: 600;
}

.home a:hover {
    text-decoration: underline;
}

.home p {
    margin-bottom: 2rem;
}


@media screen and (max-width: 960px) {
    .layout-wrapper.layout-news-active .layout-content {
        padding-top: 180px;
    }

    .layout-wrapper.layout-news-active .layout-sidebar {
        top: 0;
        height: 100%;
    }

    .layout-wrapper.layout-news-active .layout-news-button {
        opacity: 0;
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        margin: 0;
        top: 0;
        left: 0;
    }



    .layout-topbar {
     	/*background:  url(../images/banner_web.png) center;*/
     	background-color: #1f91ed;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }

    .layout-topbar .menu-button {
        display: block;
    }

    .layout-topbar .chart-button {
        display: block;
        margin-left: 0px;
    }

    .layout-topbar .search-input {
        display: none;
    }

    .layout-topbar .logo img {
        width: 40px;
    }

    .layout-topbar .app-theme {
        margin-left: 0;
        margin-right: 23px;
    }

    .layout-topbar .topbar-form {
    	flex:1;
        display: block;
        margin-left: unset;
    }

	.layout-topbar .chart-button{
		width: unset;
	}


    .layout-topbar .query-form {
        margin-left: 0px;
    }
    


    .layout-topbar .topbar-menu {
        background-color: var(--surface-a);
        width: 100%;
        height: 40px;
        margin: 0;
    }

    .layout-topbar .topbar-menu > li {
        height: 40px;
        line-height: 40px;
    }

    .layout-topbar .topbar-menu > li > a {
        padding-bottom: 0;
        height: 40px;
        line-height: 38px;
        width: 100%;
        font-size: 14px;
        min-width: auto;
        color: #495057;
    }

    .layout-topbar .topbar-menu > li > a:focus {
        background-color: transparent !important;
        border-bottom-color: var(--primary-color);
    }

    .layout-topbar .topbar-menu > li.topbar-submenu > ul {
        top: 40px;
    }

    .layout-sidebar {
        top: 0;
        z-index: 999;
        height: 100%;
        transform: translateX(-100%);
    }

    .layout-sidebar.active {
        transform: translateX(0);
    }

    .layout-content {
        margin-left: 0;
        padding-top: 70px;
    }

    .layout-content .content-section.introduction {
        flex-direction: column;
    }

    .layout-content .video-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

    .layout-content .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .layout-mask {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .layout-mask.layout-mask-active {
        z-index: 998;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.4);
        transition: background-color .2s;
    }

    .home .introduction > div {
        width: 100%;
    }

    .home .features > div {
        width: 100%;
    }

    .home .whouses > div {
        width: 100%;
    }

    .home .prosupport > div {
        width: 100%;
    }

    .home .video iframe {
        width: 100% !important;
    }

    .layout-config .layout-config-button {
        left: auto;
        right: -52px;
    }

    .layout-config.layout-config-active {
        width: 100%;
    }

    .blocked-scroll {
        overflow: hidden;
    }
    
     .web-btn{
	display:none;
	}
	
	.app-btn{
	display:block;
	}
	
	.web-display-td{
		display:none !important;
	}
	
}

@media screen and (max-width: 640px) {
    .layout-wrapper.layout-news-active .topbar-menu > li.topbar-submenu > ul {
        top: 180px;
    }

    .layout-topbar .topbar-menu > li.topbar-submenu {
        position: static;
    }

    .layout-topbar .topbar-menu > li.topbar-submenu > ul {
        top: 110px;
        position: fixed;
        right: auto;
        left: 0;
        width: 100vw;
    }

    .layout-error img {
        width: 80%;
    }
}


body .ui-messages ul {
    margin-left: 30px !important;
}

.login-body {
    background-image: url("../common/images/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.login-body .login-panel {
    width: 890px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -445px;
    margin-top: -260px;
}

.login-body .login-panel .left-side {
    padding-bottom: 0;
}

.login-body .login-panel .right-side {
    padding: 20px 60px 0 60px;
}

.login-body .login-panel .right-side .p-col-12 {
    padding-bottom: 24px;
}

.login-body .login-panel .p-col-12.container {
    margin-bottom: 20px;
}

.web-btn{
	display:block;
}

.app-btn{
	display:none;
}
	
.web-display-td{
	display:table-cell !important;
}

.web-check-td{
		width:16px;
	}

@media (max-width: 991px) {
    .login-body .login-panel .left-side {
        display: none;
    }

    .login-body .login-panel {
        width: 100%;
        margin: 0;
        left: 0;
        top: 150px;
    }
    
}

@media (max-width: 640px) {
    .ui-datatable-reflow .ui-datatable-data td[role="gridcell"]:not(.ui-helper-hidden) {
        text-align: left;
        padding:0.4em;
        display: flex;
        border: 0 none;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        clear: left;
    }
    .web-btn{
	display:none;
	}
	.app-btn{
	display:block;
	}
	.web-display-td{
	display:none !important;
	}
}

.layout-dashboard .card {
    min-height: 140px;
    margin-top: 0px;
}

.card:last-child {
    margin-bottom: 0;
}

.overview-box-1 {
    height: 100%;
}

.overview-box-1 .card-header {
    padding-bottom: 17px;
}

.overview-box-1 .overview-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 11px 4px 6px 0px;
}

.overview-box-1 .card-header .header-buttons > a {
    width: 20px;
    height: 20px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(148, 154, 166, 0.1);
    border: 1px solid transparent;
    text-decoration: unset;
}

.overview-box-1 .card-header .header-buttons > a i {
    color: #949aa6;
    font-size: 12px;
    width: 12px;
}

.overview-box-1 .overview-content .overview-graph {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
}

.overview-box-1.teal .overview-content .overview-graph > span {
    background-color: #00acac;
}

.overview-box-1.orange .overview-content .overview-graph > span {
    background-color: #f1b263;
}

.overview-box-1 .overview-content .overview-graph > span > span {
    font-size: 12px;
    min-width: 6px;
    position: absolute;
    padding: 1px;
    border-radius: 2px;
    background-color: #E8F1F8;
    top: -22px;
    left: -4px;
    display: none;
    z-index: 2;
}

.overview-box-1 .overview-content .overview-graph > span {
    width: 8px;
    height: 12px;
    display: block;
    background-color: #2f8ee5;
    margin-left: 4px;
    border-radius: 1px;
    opacity: 0.4;
    cursor: pointer;
    position: relative;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 1;
}

.overview-box-1 .overview-content .overview-graph > span:last-child {
    opacity: 1;
}

.overview-box-1 .overview-content .overview-graph > span:hover {
    transform: scale3d(1.1, 1.1, 1);
    opacity: 1;
}

.overview-box-1 .overview-content .overview-graph > span:hover .graph-tooltip {
    display: block;
}

.overview-box-1 .overview-footer {
    margin-top: 10px;
}

.overview-box-1 .overview-footer > span i {
    color: #00acac;
}

.overview-box-1 .overview-footer > span > span {
    color: #00acac;
    font-weight: 600;
}

.overview-box-1 .overview-footer > span.down > span {
    color: #f16383;
}

.overview-box-1 .overview-footer > span.down i {
    color: #f16383;
}

.sale-graph .card-header {
    margin-bottom: 13px;
}

.card .card-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 6px;
}

.card .card-header .header-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}


.layout-dashboard .summary .title {
    font-size: 20px;
}

.layout-dashboard .summary .detail {
    color: #a4a4a4;
    display: block;
}

.layout-dashboard .summary .count.visitors {
    background-color: #20d077;
}

.layout-dashboard .summary .count {
    color: #ffffff;
    font-size: 18px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.layout-dashboard .traffic {
    height: 99%;
}

.layout-dashboard .traffic .traffic-tabs {
    margin-top: 28px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.layout-dashboard .traffic .traffic-tabs .traffic-tab {
    border-radius: 4px;
    background-color: #E8F1F8;
    text-align: center;
    padding: 6px 1px 8px;
    width: 100%;
    margin-right: 5px;
    cursor: pointer;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.layout-dashboard .traffic .traffic-tabs .traffic-tab > span {
    display: block;
    font-size: 12px;
    color: #515C66;
    margin-top: 6px;
}

.layout-dashboard .traffic .traffic-tabs .traffic-tab > i {
    font-size: 24px;
}

.layout-dashboard .traffic .traffic-tabs .traffic-tab.traffic-tab-active > h6, .layout-dashboard .traffic .traffic-tabs .traffic-tab.traffic-tab-active > span, .layout-dashboard .traffic .traffic-tabs .traffic-tab.traffic-tab-active i {
    color: #ffffff;
}

body .ui-accordion .ui-accordion-header.ui-state-active {
    background: #007ad9;
    border-color: #007ad9;
    color: #fff;
}

