@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
	--accent-color: #2C4AAB;
	--accent-color-hover: #000000;
	--green: #56bc73;
	--red: #c32525;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
	color: #1E293B;
	background-color: #FFF;
}
body.login {
	background-color: #C2D4EA;
	background-image: url("images/main_background.jpg");
}
a:link, 
a:active,
a:visited {
	color: #2C4AAB;
	text-decoration: none;
}
a:hover {
	color:#01196A;
	text-decoration: none;
}
h1 {
	font-size: 32px;
}
h2 {
	font-size: 28px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 18px;
}
#login {
	width: 100%;
	min-height: 100vh;
	font-size: 14px;
}
#login .logo img {
	max-height: 60px;
}
#login .aside {
	width: 100%;
    max-width: 600px;
	color: #01196A;
	font-weight: 600;
}
@media (max-width:1399px) {
	#login .aside {
		max-width: 400px;
	}
}
@media (max-width:991px) {
	#login .aside {
		max-width: 100%;
	}
}
#login .main {
	background-color: #fff;
}
#login .login-form {
	width: 100%;
	min-width: 400px;
	max-width: 400px;
}
#login .login-form h3 {
	font-size: 26px;
	text-align: center;
	font-weight: 600;
}
#login .login-form .text-muted {
	color: #B5B5C3 !important;
	text-align: center;
}
#login .login-form .form-control.form-control-solid {
    background-color: #F3F6F9;
    border-color: #F3F6F9;
    color: #3F4254;
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
	outline: none;
	box-shadow: none;
}
#login .login-form .form-control.form-control-solid:active,
#login .login-form .form-control.form-control-solid.active,
#login .login-form .form-control.form-control-solid:focus,
#login .login-form .form-control.form-control-solid.focus {
    background-color: #EBEDF3;
    border-color: #EBEDF3;
    color: #3F4254;
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
}

#forgot-passwd {
	width: 100%;
	min-height: 100vh;
	font-size: 14px;
}
#forgot-passwd .logo img {
	max-height: 80px;
}
#forgot-passwd .aside {
	width: 100%;
	max-width: 600px;
	color: #fff;
}
@media (max-width:1399px) {
	#forgot-passwd .aside {
		max-width: 400px;
	}
}
@media (max-width:991px) {
	#forgot-passwd .aside {
		max-width: 100%;
	}
}
#forgot-passwd .main {
	background-color: #fff;
}
#forgot-passwd .forgot-passwd-form {
	width: 100%;
	max-width: 400px;
}
#forgot-passwd .forgot-passwd-form h3 {
	font-size: 26px;
	text-align: center;
	font-weight: 600;
}
#forgot-passwd .forgot-passwd-form .text-muted {
	color: #B5B5C3 !important;
	text-align: center;
}
#forgot-passwd .forgot-passwd-form .form-control.form-control-solid {
	background-color: #F3F6F9;
	border-color: #F3F6F9;
	color: #3F4254;
	-webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
	outline: none;
	box-shadow: none;
}
#forgot-passwd .forgot-passwd-form .form-control.form-control-solid:active,
#forgot-passwd .forgot-passwd-form .form-control.form-control-solid.active,
#forgot-passwd .forgot-passwd-form .form-control.form-control-solid:focus,
#forgot-passwd .forgot-passwd-form .form-control.form-control-solid.focus {
	background-color: #EBEDF3;
	border-color: #EBEDF3;
	color: #3F4254;
	-webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
}

/* FLEX */
.flex-root {
    -webkit-box-flex: 1;
    flex: 1;
    -ms-flex: 1 0 0;
}
.flex-column-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.flex-column-fluid {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.flex-row-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.flex-row-fluid {
    -webkit-box-flex: 1;
    flex: 1 auto;
    -ms-flex: 1 0 0;
    min-width: 0;
}
.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (min-width: 576px) {
  .flex-sm-root {
    -webkit-box-flex: 1;
    flex: 1;
    -ms-flex: 1 0 0;
  }

  .flex-sm-column-auto {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .flex-sm-column-fluid {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }

  .flex-sm-row-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .flex-sm-row-fluid {
    -webkit-box-flex: 1;
    flex: 1 auto;
    -ms-flex: 1 0 0;
    min-width: 0;
  }
}
/* BUTTON */
.btn-smd {
	background-color: #01196A;
	border: 1px solid #01196A;
	color: #fff;
}
.btn-smd:hover {
	background-color: #2C4AAB;
	border: 1px solid #2C4AAB;
	color: #fff;
}
.btn-menu {
	font-size: 20px;
	background-color: #FFF;
	color: #01196A;
	border: 1px solid #FFF;
}
.btn-menu:hover, .btn-menu.active {
	background-color: #EEF1F9;
	color: #01196A;
	border: 1px solid #EEF1F9;
}
.sidebar_menu {
	width: 72px;
	height: 100vh;
	position: sticky;
	top: 0;
	padding-top: 10px;
	border-right: 1px solid #e9e9e9;
}
.sidebar_menu .small_logo img {
    max-width: 24px;
}
.sidebar_menu.open {
	transition-property: all !important;
	transition-timing-function: cubic-bezier(.4,0,.2,1) !important;
	animation-duration: .3s !important;
	transition-duration: .3s !important;
	width: 300px;
}
.sidebar_menu .menu .item {
	width: 100%;
	text-align: center;
}
.sidebar_menu .menu .item button {
	width: 48px;
	height: 48px;
	margin:0 auto;
}
.panel {
	width: 100%;
	margin:0;
}
.panel.with-sidebar {
	transition-property: all !important;
	transition-timing-function: cubic-bezier(.4,0,.2,1) !important;
	animation-duration: .3s !important;
	transition-duration: .3s !important;
}
.panel .header {
	height: 40px;
	padding: 0;
	border-bottom: 1px solid #e9e9e9;
}
.panel .header>div {
	padding: 0 12px;
	height: 40px;
	display: flex;
	align-items: center;
}
.panel .header>div:not(:last-child) {
	border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.panel .header .options>div:not(:last-child) {
	border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.panel .header .date-picker {
	position: relative;
	font-size: 14px;
}
.panel .header .date-picker span {
	font-size: 12px;
	color: #1E293B;
	margin: 0 5px;
}
.daterangepicker .ranges li.active,
.daterangepicker td.active, .daterangepicker td.active:hover {
	background-color: var(--accent-color);
}
#report-range {
	cursor: pointer;
	width: 100%
}
#report-range i {
	color: #1E293B;
}
.panel .header .title {
	font-weight: 600;
}
.panel .header .form-select {
	font-size: 12px;
	padding: .25rem 2rem .25rem .5rem;
	background-position: right .5rem center;
	border: none;
	outline: none;
	box-shadow: none;
}
.panel .main {
    min-height: calc(100vh - 40px);
    background-color: #EEF1F9;
	/*
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	*/
}
.panel .main .sm-section-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 8px;
}
.panel .header .navbar {
    padding: 0;
}
.panel .header .navbar-brand {
	padding: 1px 0 0;
}
.panel .header .navbar-brand img {
    height: 60px;
}
.panel .header .navbar-light .navbar-nav .nav-item {
	margin-right: 5px;
}
.panel .header .navbar-light .navbar-nav .nav-link {
	color: #2C4AAB;
}
.panel .header .navbar-light .navbar-nav .nav-link:focus,
.panel .header .navbar-light .navbar-nav .nav-link:hover,
.panel .header .navbar-light .navbar-nav .nav-link.active,
.panel .header .navbar-light .navbar-nav .show>.nav-link {
    background-color: rgba(255,255,255,.1);
	border-radius: 5px;
}
.navbar-toggler {
	padding: .25rem .75rem;
	font-size: 1.25rem;
	line-height: 1;
	color: #01196A;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: .25rem;
	transition: box-shadow .15s ease-in-out;
}

.panel .main .heading {
	font-size: 16px;
	font-weight: 600;
	color: #2C4AAB;
	padding: 8px 10px;
	background-color: #f8f9fa;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.panel .main .sidebar {
	width: 100%;
	background-color: #fdfdfd;
	border-bottom: 1px solid #d9d9d9;
}
.panel .main .sidebar.right {
    width: 340px;
    min-height: calc(100vh - 143px);
	border-bottom: none;
	border-left: 1px solid #d9d9d9;
}
.panel .main .sidebar.left {
    width: 340px;
    border-bottom: none;
    border-right: 1px solid #d9d9d9;
}
.panel .main .sidebar .box {
	padding: 15px;
	border-bottom: 1px solid #e9e9e9;
}
.panel .main .sidebar .box:last-child {
    border-bottom: none;
}
.panel .main .sidebar .box .form-check-label {
	font-size: 13px;
	cursor: pointer;
}
.panel .main .sidebar .box .form-check-input {
	width: 14px;
	height: 14px;
	margin-top: 2px;
	cursor: pointer;
	outline: none;
	box-shadow: none;
}
.panel .main .sidebar .box .sub-cat {
	padding-left: 30px;
}
.panel .main .sidebar .box .form-check-input:checked {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}
.panel .main .sidebar .box .title {
	font-size: 14px;
	font-weight: 400;
    display: inline-block;
    position: relative;
}
.panel .main .sidebar .box .counting .number {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--accent-color);
}
.panel .main .sidebar .next-pages {
	font-size: 13px;
}
.panel .main .sidebar .next-pages .page:not(:last-child) {
	margin-bottom: 5px;
}
.panel .main .sidebar .concurrents {
	background-color: #f0f4fa;
}
.panel .main .sidebar .recirculation-engage {
	display: flex;
	justify-content: space-between;
}
.panel .main .sidebar .chart-bar {
	margin-right: 10px;
}
.panel .main .sidebar .chart-bar .progress {
	width: 10px;
	height: 70px;
	border-radius: 0;
	background-color: #8FB7C9;
	position: relative;
}
.panel .main .sidebar .chart-bar .progress.traffic {
	background-color: #EEE;
}
.panel .main .sidebar .chart-bar .progress .progress-bar {
	width: 10px;
	position: absolute;
	bottom: 0;
	background-color: #2C4AAB;
}
.panel .main .sidebar .chart-bar.up .progress {
	background-color: var(--green);
}
.panel .main .sidebar .chart-bar.down .progress {
	background-color: var(--red);
}
.panel .main .sidebar .chart-bar.up .progress-bar {
	background-color: hsl(130 100% 25%);
}
.panel .main .sidebar .chart-bar.down .progress-bar {
	background-color: hsl(0, 100%, 30%);
}
.panel .main .sidebar .chart-bar.horizontal {
	margin-right: 0;
}
.panel .main .sidebar .chart-bar.horizontal .percent {
	font-size: 14px;
	font-weight: 600;
}
.panel .main .sidebar .chart-bar.horizontal .progress {
	margin-top: 4px;
	width: 100px;
	height: 12px;
}
.panel .main .sidebar .chart-bar.horizontal .progress-bar {
	height: 12px;
	left: 0;
}
.panel .main .sidebar .data .title {
	font-size: 14px;
}
.panel .main .sidebar .data .result-data {
	font-size: 26px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--accent-color);
}
.panel .main .sidebar .data .result-data sup {
	font-size: 14px;
	line-height: 1;
}
.panel .main .sidebar ul {
	padding: 0;
}
.panel .main .sidebar ul li {
	list-style-type: none;
	padding: 3px 0;
}
.panel .main .sidebar ul li i {
	color: #2C4AAB;
	width: 20px;
}
.panel .main .sidebar ul li a {
	display: block;
}
.panel .main .page-content {
	width: calc(100% - 340px);
	padding: 0;
}
.panel .main .page-content.full {
	width: 100%;
}
.panel .main .page-content .box-wrapper {
	width: 100%;
	background-color: #fff;
	padding: 10px 20px;
	border-bottom: 4px solid #f7f7f7;
}
.panel .main .page-content .box-wrapper .tab-content {
	background-color: #fff;
	padding: 10px 0;
}
.panel .main .page-content .box-wrapper .number {
	font-weight: 600;
	color: var(--accent-color);
	margin-right: 5px;
}
.page-title h1 {
	font-size: 24px;
	line-height: 1.1;
	font-weight: 400;
	text-align: center;
	padding: 0 30px;
	margin: 5px auto;
	color: var(--accent-color);
}
.page-title .meta {
	font-size: 14px;
	display: block;
	color: #8FB7C9;
	text-align: center;
	padding: 5px 0;
}

.stats {
	background-color: #fff;
	padding: 15px;
	border-right: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	text-align: center;

	&:last-child {
		border-right: none;
	}
}
.stats .icon {
	text-align: center;
	color: var(--accent-color);
	font-size: 22px;
	margin-bottom: 5px;
}
.stats .data .title {
	font-size: 14px;
}
.stats .data .number {
	font-size: 18px;
	font-weight: 600;
}
.stats .data .progress-status {
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.panel .main .page-content .box-wrapper.tabs {
	background-color: #FAFAFA !important;
	padding: 0;
	border-bottom: none;
}
.panel .main .page-content .box-wrapper.tabs .nav,
.panel .main .page-content .box-wrapper.tabs .tab-content{
	padding: 10px 15px;
	border-bottom: 4px solid #f7f7f7;
}
.panel .main .page-content .box-wrapper.tabs .nav-link {
	padding: 0 8px 8px;
	font-weight: 600;

	&.active {
		color: #000 !important;
	}
	&:active, &:focus, &:hover {
		color: var(--accent-color);
	}
}
.panel .main .page-content .box-wrapper.tabs .tab-content .table thead tr th {
	font-size: 14px;
	color: #818181;

	&:first-child {
		font-weight: 700;
	}
	&:not(:first-child) {
		text-align: center;
	}
}
.panel .main .page-content .box-wrapper.tabs .tab-content .table tbody tr td {
	background-color: #fff;
	font-size: 15px;
	line-height: 1.2;
	vertical-align: top;
	padding: 30px 10px;
	text-align: center;

	&.title {
		font-weight: 600;
	}
	&:first-child {
		width: 20px !important;
	}
	&:not(:first-child) {
		width: 180px !important;
	}
	&:nth-child(2) {
		text-align: left;
		width: auto !important;
	}
	&.title .date-time {
		display: block;
		font-weight: 400;
		font-size: 12px;
		color: #8a8a8a;
		padding: 8px 0;
	}
    &.title span.section {
        display: inline-block;
        color: #664d03;
        padding: 10px;
        font-size: 14px;
        background-color: #fff3cd;
        border:1px solid #ffe69c;
    }
    &.title span.author {
        display: inline-block;
        color: #055160;
        padding: 10px;
        font-size: 14px;
        background-color: #cff4fc;
        border:1px solid #9eeaf9;
    }
    &.title span.referrer {
        display: inline-block;
        padding: 0 0 5px;
        font-size: 16px;
    }
    &.title .total-stories {
        display: block;
        font-weight: 400;
        font-size: 12px;
        color: #858585;
        padding: 8px 0;
    }
}
.categories {
    display: flex;
    justify-content: start;
    margin-top: 5px;

    & span {
        padding: 5px 8px;
        font-size: 10px;
        margin-right: 8px;
        background-color: var(--bs-secondary-bg-subtle)!important;
        color: var(--bs-secondary-text-emphasis)!important;
        border-bottom: 2px solid var(--bs-secondary-border-subtle);
    }
    & span.neutral {
        background-color: var(--bs-primary-bg-subtle)!important;
        color: var(--bs-primary-text-emphasis)!important;
        border-bottom: 2px solid var(--bs-primary-border-subtle);
    }
    & span.up {
        background-color: var(--bs-success-bg-subtle)!important;
        color: var(--bs-success-text-emphasis)!important;
        border-bottom: 2px solid var(--bs-success-border-subtle);
    }
    & span.down {
        background-color: var(--bs-danger-bg-subtle) !important;
        color: var(--bs-danger-text-emphasis)!important;
        border-bottom: 2px solid var(--bs-danger-border-subtle);
    }
}
.table tbody tr td .hover-titles {
    display: none;
    padding: 10px;
    font-size: 12px;
    color: #8a8a8a;
}
.table tbody tr:hover td .hover-titles {
    display: block;
}
.panel .main .page-content .box-wrapper.tabs .tab-content .position {
	width: 20px;
}

.nav-link.inner_tab.active,
.nav-link.tab.active {
	background-color: #2C4AAB;
	border: 1px solid #2C4AAB;
	color: #fff;
}
.nav-link.inner_tab,
.nav-link.tab {
	color: #2C4AAB;
}

.section-header h1 {
	font-size: 24px;
	line-height: 32px;
}
.section-header h2 {
	font-size: 22px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 0;
}
.tickets-header h3 {
	font-size: 22px;
	line-height: 31px;
}
.tickets-header.small h3 {
	font-size: 16px;
	line-height: 30px;
	color: #2C4AAB;
	padding-bottom: 5px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.search_bar {
	position: relative;
	height: 40px;
	display: flex;
	align-items: center;
}
.search_bar .form-control {
	outline: none;
	box-shadow: none;
	padding-left: 28px;
	font-size: 12px;
	border: none;
}
.search_bar .icon {
	position: absolute;
	top: 6px;
	left: 7px;
}
.search_bar .form-control:focus {
	border-color: var(--bs-border-color);
}
.table {
	border: 1px solid rgba(0, 0, 0, 0.01);
}
.table .fa-star.active,
.table .fa-star:hover {
    color: var(--green);
    cursor: pointer;
}
.table .fa-star {
    color: #ccc;
}
.table caption {
	font-size: 12px;
}
.table caption span {
	display: inline-block;
	width: 14px;
	height: 8px;
	border-radius: 4px;
}
.table caption .organic_traffic {
	background-color: var(--organic-traffic);
}
.table caption .direct_traffic {
	background-color: var(--direct-traffic);
}
.table caption .referral_traffic {
	background-color: var(--referral-traffic);
}
.table caption .social_traffic {
	background-color: var(--social-traffic);
}
.table thead tr th {
	background-color: #F8F9FA;
	font-size: 14px;
	font-weight: 400;
}
.table thead tr th.active {
	font-weight: 600;
}
.chart {
	padding: 20px;
}
.chart-wrapper {
	padding: 20px 0 0;
}
#realtime_table {
	margin-bottom: 0;
}
#realtime_table thead tr th,
#realtime_table tbody tr td {
	text-align: right;
}
#realtime_table tbody tr td {
	font-size:14px;
	line-height: 1.2;
	vertical-align: top;
	padding: 15px 10px;
	color: var(--accent-color);
}
#realtime_table tbody tr td.concurrents {
	font-size: 18px;
}
#realtime_table tbody tr td.article-title a {
	color: #1E293B;
	&:active {color: #1E293B;}
	&:visited {color: #1E293B;}
	&:hover {color: var(--accent-color);}
}
#realtime_table tbody tr td.article-title .datetime {
	display: block;
	font-size: 11px;
	color: #9E9E9E;
	padding: 3px 0;
}
#realtime_table thead tr th:nth-child(3),
#realtime_table tbody tr td:nth-child(3) {
	text-align: left;
	color: #1E293B;
}
#realtime_table thead tr th:nth-child(n+4):not(:last-child),
#realtime_table tbody tr td:nth-child(n+4):not(:last-child) {
	width: 150px;
}
#realtime_table thead tr th:first-child,
#realtime_table tbody tr td:first-child,
#realtime_table thead tr th:last-child,
#realtime_table tbody tr td:last-child{
	width: auto;
}
#realtime_table tbody tr td.article-title .compare {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 8px;
}
#realtime_table tbody tr td.article-title .compare span {
    font-weight: 600;
}
.up {
	color: var(--green) !important;
}
.down {
	color: var(--red) !important;
}
.table>:not(caption)>*>* {
	color: #1E293B;
	border-color: #efefef;
}
.table-hover>tbody>tr:hover>* {
	--bs-table-bg-state: rgb(0 0 0 / 2%);
}
.table>:not(:last-child)>:last-child>* {
	border-bottom-color: #EEE;
}
.table .form-check {
	min-height: auto;
}
.table tbody tr td {
	font-size: 14px;
	vertical-align: middle;
}
.table tbody tr td:nth-child(2) span {
	display: block;
	font-size: 11px;
}
.table tbody tr td .progress-stacked {
	border-radius: 4px;
}
.table tbody tr.subject td {
	white-space: nowrap;
	font-size: 20px;
    font-weight: 400;
	background-color: #f8f9fa;
	padding: 0;
}
.table tbody tr.ticket_subject td {
	white-space: nowrap;
	font-size: 20px;
    font-weight: 400;
	background-color: #f8f9fa;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.table tbody tr.ticket_subject td h2 {
	font-size: 26px;
	font-weight: 400;
}
.table tbody tr.ticket_subject td span {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 5px;
	font-size: 14px;
}
.table tbody tr.subject td a {
	display: block;
	padding: 1rem .5rem;	
}
.table tbody tr.ticket_details td span {
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 5px;
}
.table tbody tr.open td {
	background-color: #198754;
	color: #fff;
}
.table tbody tr.closed td {
	background-color: #6c757d;
	color: #fff;
}
.table tbody tr.top_divider td {
	height: 10px;
}
.table tbody tr.divider td {
	height: 20px;
}

.pagination {
    background-color: #F8F9FA;
    padding: 6px 15px;
    font-size: 12px;
    border-top:1px solid #efefef;
}

/* PROJECTS */
.project {
	background-color: #FFF;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	margin-bottom: 20px;
	border-radius: 4px;
}
.project .line {
	min-height: 44px;
	padding:10px 15px;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
    column-gap: 30px;
    flex-wrap: wrap;
}
.project .line:hover {
	background-color: #F8F9FA;
}
.project .site figure {
	margin: 0;
}
.project .site .fa-envelope {
    color: var(--accent-color);
}
.project .site img {
	width: 56px;
	height: 44px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-right: 20px;
}
.project .tracking-code {
	font-size: 16px;
	margin: 0 100px;
	min-width: 200px;
}
.project .traffic-status {
	text-wrap: nowrap;
	margin-right: 40px;
	font-size: 16px;
}
.project .name span {
	display: block;
}
.project .name .title {
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 5px;
}
.project .name .title svg path {
	/*fill: rgb(49, 140, 221);*/
	fill: var(--green);
}
.project .name .url {
	font-size: 13px;
}
.project .name .url a:link,
.project .name .url a:active,
.project .name .url a:visited {
	color: rgba(0, 0, 0, 0.52);
	margin: 3px 0;
}
.project .name .url a:hover {
	color: #000;
}
.project .details {
	padding:15px;
}
.project .details .column {
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 100px;
}

#project-page .nav-tabs .nav-link {
	border: none;
}
#project-page .nav-link {
	color: var(--accent-color);
	font-size: 14px;
}
#project-page .nav-link.active {
	background-color: var(--accent-color);
	color: #FFF;
}
#project-page .nav-link.active:hover {
	background-color: #01196A;
	color: #FFF;
}
#project-page .nav-link:focus, #project-page .nav-link:hover {
	color: var(--accent-color-hover);
}
#project-page .dropdown-menu {
	padding: 10px;
	width: 500px;
}
#project-page .dropdown-menu .dm-wrapper {
	font-size: 14px;
}
#project-page .date-range-options {
	border-right: 1px solid rgba(0, 0, 0, 0.01);
}
#project-page .date-range-options ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#project-page .dropdown-menu .dropdown-item {
	padding: 5px;
}
/*
.active {
	color: #00a510;
}
.inactive {
	color: #c60000;
}
*/
.ticket .message {
	padding: 0 0 15px;
}

#table_password,
#table_profile,
#table_page,
#table_page_settings {
	border-top: 1px solid #ddd;
}
#table_password .label,
#table_profile .label,
#table_page_settings .label,
#table_page .label,
#subaccount_edit .tab-content .label {
	background-color: #f8f9fa;
	padding: 10px;
	border-top: none;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
#table_password .value,
#table_profile .value,
#table_page_settings .value,
#table_page .value,
#subaccount_edit .tab-content .value{
	padding: 10px;
	border-top: none;
	border-bottom: 1px solid #ddd;
	border-left: 4px solid #ddd;
	border-right: 1px solid #ddd;	
}
#table_profile .email_accounts {
	list-style-type: none;
	margin: 10px auto;
	padding: 0;
}
#table_profile .email_accounts li {
	padding: 5px 0;
}

.show_password {
	cursor: pointer;
	width: 50px;
}
.show_password svg {
	margin: auto;
}
.show_password .fas {
	position: absolute!important;
	right:16px!important;
}
.show_password .progress {
	width: 100%;
	height: 100%;
	border-radius:0;
}
.show_password .progress .progress-bar {
	width:0;
	opacity:0.3;
}
.password-progress-bar {
	background-color: #2C4AAB!important;
}

/* Some Bootstrap Buttons */
.btn-white {
	background-color: #FFF;
	border: 2px solid rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
	background-color: #FFF;
	color: #000;
	border: 2px solid rgba(0, 0, 0, 0.1);
}
.btn-intellifeed {
	background-color: #2C4AAB;
	color: #fff;
	border-color: #2C4AAB;

	&:hover {
		background-color: #01196A !important;
		color: #fff !important;
		border-color: #01196A !important;
	}
}
.btn-intellifeed:disabled, .btn-intellifeed.disabled {
	color: #fff;
	background-color: #2C4AAB;
	border-color: #2C4AAB;
}

.btn-outline-intellifeed {
	background-color: transparent;
	color: #2C4AAB;
	border-color: #2C4AAB;

	&:hover {
		color: #fff!important;
		background-color: #01196A!important;
		border-color: #01196A!important;
	}
}

.btn-check:focus + .btn-outline-intellifeed, .btn-outline-intellifeed:focus {
	box-shadow: 0 0 0 0.25rem rgba(0, 125, 147, 0.5);
}
.btn-check:checked + .btn-outline-intellifeed, .btn-check:active + .btn-outline-intellifeed, .btn-outline-intellifeed:active, .btn-outline-intellifeed.active, .btn-outline-intellifeed.dropdown-toggle.show {
	color: #fff;
	background-color: #2C4AAB;
	border-color: #2C4AAB;
}
.btn-check:checked + .btn-outline-intellifeed:focus, .btn-check:active + .btn-outline-intellifeed:focus, .btn-outline-intellifeed:active:focus, .btn-outline-intellifeed.active:focus, .btn-outline-intellifeed.dropdown-toggle.show:focus {
	box-shadow: 0 0 0 0.25rem rgba(0, 125, 147, 0.5);
}
.btn-outline-intellifeed:disabled, .btn-outline-intellifeed.disabled {
	color: #2C4AAB;
	background-color: transparent;
}
.btn-dropdown {
	border: none;
	outline: none;
	background-color: #fff;
}
.btn-smd-accordion {
    background-color: #2C4AAB;
    border-radius: 0;
    color: #fff;
    border-color: #2C4AAB;
    width: 100%;
    padding: 10px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}
.btn-smd-accordion.active {
    background-color: #002b3d;
    color: #fff;
    border-color: #002b3d;
}
.back-to-realtime {
    position: absolute;
    left: 10px;
    top: 10px;
}
.btn-dropdown.btn-sm,
.dropdown-sm {
	font-size: 13px;
}
.panel .header .dropdown-toggle::after {
	content: '\f0d7';
	font: var(--fa-font-solid);
	font-size: 14px;
	border: none !important;
	position: relative;
	top: 4px;
}

.custom-popover {
    --bs-popover-border-color: var(--accent-color);
    --bs-popover-header-bg: var(--accent-color);
    --bs-popover-header-color: var(--bs-white);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem;
}

/* TRAFFIC */
.bg-organic {
	background-color: var(--organic-traffic) !important;
}
.bg-internal {
	background-color: var(--intenal-traffic) !important;
}
.bg-search {
	background-color: var(--search-traffic) !important;
}
.bg-links {
	background-color: var(--links-traffic) !important;
}
.bg-mobile {
	background-color: var(--mobile-traffic) !important;
}
.bg-unknown {
	background-color: var(--unknown-traffic) !important;
}
.bg-amp {
	background-color: var(--amp-traffic) !important;
}
.bg-direct {
	background-color: var(--direct-traffic) !important;
}
.bg-referral {
	background-color: var(--referral-traffic) !important;
}
.bg-social {
	background-color: var(--social-traffic) !important;
}

.datatable tr.highlight_timer td {
	background: #fdf5e3
}
.cboxIframe {
	width: 100%;
	height: 100%;
}
/*#cboxOverlay {*/
/*	background: #ddd;*/
/*	opacity: 0.9;*/
/*	filter: alpha(opacity = 90);*/
/*	position: fixed;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*}*/
/*#colorbox, #cboxOverlay, #cboxWrapper {*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	z-index: 9999;*/
/*	overflow: hidden;*/
/*	-webkit-transform: translate3d(0,0,0);*/
/*}*/

/*#cboxTitle {*/
/*	position: absolute;*/
/*	top: -30px;*/
/*	left: 15px;*/
/*	font-weight: bold;*/
/*	background: #fff;*/
/*	padding-left: 15px;*/
/*	padding-right: 15px;*/
/*}*/
#cboxClose {
	border: 0;
	padding: 0;
	margin: 0;
	text-indent: -9999px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -20px;
	background: url(images/colorbox-controls.png) no-repeat 0 0;
	background-position-x: 0;
	background-position-y: 0;
}
/*#cboxClose {*/
/*	position: absolute;*/
/*	top: -30px;*/
/*	right: 15px;*/
/*}*/

.md_link {
	display: none;
}
#inner_tabs .nav-item {
	width: 25%;
	text-align: center;
}
#inner_tabs .nav-link {
	font-size: 14px;
}
#outer_tabs .nav-item {
	width: 20%;
	cursor: pointer;
	text-align: center;
}

@media (max-width: 1399px) {/*xxl*/
	#inner_tabs .nav-item {
		width: 50%;
	}
	#outer_tabs .nav-item {
		width: 33%;
	}
}
@media (max-width: 1199px) {/*xl*/
	#outer_tabs .nav-item {
		width: 50%;
	}
	#outer_tabs .nav-link {
		font-size: 14px;
	}
}

@media (max-width: 991px) { /*md*/
	.sidebar { display: none }
	#navbarSupportedContent {
	}
	#navbarSupportedContent .navbar-nav {
		margin-top: 10px;
		background-color: #fff;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	}
	#navbarSupportedContent .nav-link {
		padding-left: 12px;
		color: black;
	}
	#navbarSupportedContent .nav-link:hover {
		color:  #2C4AAB;
	}
	.md_link {
		display: block;
	}
	#desktop_logout {
		display: none;
	}
	#inner_tabs .nav-item {
		width: 50%;
	}
	#outer_tabs .nav-item {
		width: 50%;
	}
}

div.grecaptcha-badge{
	width:0 !important;
}


.select2-container {
	z-index:1061!important;
}
.select2-search {
	z-index:1061!important;
}
.select2-search input {
	z-index:1062!important;
}
.select2-search__field {
	z-index: 1062!important;
}

.custom-tooltip {
	--bs-tooltip-bg: #2C4AAB;
	--bs-tooltip-color: #fff;
}
.form-check-input:checked {
    background-color: #2C4AAB;
    border-color: #2C4AAB;
}
.reorder_cross:hover {
    cursor: grab;
}
.reorder_cross:active {
    cursor: grabbing;
}

/*.select2-dropdown, .select2-container {*/
/*	z-index:10000*/
/*}*/
/*.select2-search {*/
/*	z-index:10001*/
/*}*/
/*.select2-search input {*/
/*	z-index:10002*/
/*}*/
#cboxClose { background-position: -50px -25px;!important; }

div.highcharts-tooltip {
    font-size:16px;
}
