:root {
	--main-acdd-blue-color: #0097D7;
	--navbar-height: 3.55rem;
}


@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-ExtraLight.ttf');
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src:url('../assets/font/Nunito-ExtraLightItalic.ttf');
	font-weight: 200;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-Light.ttf');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-LightItalic.ttf');
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-Regular.ttf');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-Italic.ttf');
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-SemiBold.ttf');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-SemiBoldItalic.ttf');
	font-weight: 600;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-Bold.ttf');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-BoldItalic.ttf');
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-ExtraBold.ttf');
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-ExtraBoldItalic.ttf');
	font-weight: 800;
	font-style: italic;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-Black.ttf');
	font-weight: 900;
	font-style: normal;
}
@font-face {
	font-family: 'Nunito';
	src: url('../assets/font/Nunito-BlackItalic.ttf');
	font-weight: 900;
	font-style: italic;
}

html {
	font-size: 16px;
}

body {
	font-family: 'Nunito', sans-serif;
}

.main-acdd-blue-color {
	color: var(--main-acdd-blue-color);
}

a.navbar-brand {
	display: flex;
	align-items: center;
	height: auto;
	padding: 0;
	float: none;
	margin: 0;
}

a.navbar-brand .brand-logo {
	margin-right: .5rem;
	height: 5rem;
	width: 13rem;
	display: flex;
	background-color: var(--main-acdd-blue-color);
	justify-content: center;
	align-items: center;
}

.brand-name {
	height: var(--navbar-height);
	display: flex;
	align-items: center;
	align-self: baseline;
	font-size: 1.25rem;
}

.brand-name span {
	padding-left: .5rem;
}

.acdd-header-navbar {
	border-top: 0;
	border-bottom: 0.3rem solid #bababa;
	margin-bottom: 0;
	height: var(--navbar-height);
}

.navbar-nav > li.acdd-ui.dropdown.open .icon-bar {
	background-color: var(--main-acdd-blue-color);
}

.dropdown-menu {
	padding: 0;
	background-color: #f8f8f8;
}
.dropdown-menu > li > a {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.dropdown-toggle {
	padding: 0 0.25rem!important;
}

.dropdown-item {
	list-style: none;
}

.acdd-user-navbar {
	display: flex;
	align-items: center;
}

.profile-menu {
	border: none;
	background-color: inherit;
	padding: 0 0.125rem;
	width: 2.25rem;
}

.profile-menu > .icon-bar {
	display: block;
	height: 0.125rem;
	border-radius: 0.125rem;
	background-color: #888;
	margin-top: 0.4rem;
}

.profile-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.25rem;
	color: #FFFFFF;
	background-color: var(--main-acdd-blue-color);
	box-shadow: 0 0 0.5rem 0.125rem rgb(0 0 0 / 50%);
	margin: 0.125rem 0;
}

.profile-name-and-location {
	display: flex;
	flex-direction: column;
	margin: 0 0.25rem;
	align-items: center;
}
.profile-location {
	color: #5d5d5d;
}

/*
 * Sidebar
 */

.sidebar {
	position: fixed;
	width: 13rem;
	padding: 0;
	background-color: var(--main-acdd-blue-color);
	top: 5rem;
	bottom: 0;
	overflow-y: auto;
	padding-bottom: 10rem;
	font-family: 'Nunito', sans-serif;
}

/* Sidebar navigation */
.sidebar .nav-sidebar {
	margin: 0;
}
.sidebar .nav-sidebar > li > a {
	padding-right: 20px;
	padding-left: 20px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}
.sidebar .nav-sidebar > .active > a,
.sidebar .nav-sidebar > .active > a:hover,
.sidebar .nav-sidebar > .active > a:focus {
	color: #fff;
}

.sidebar .nav-sidebar > li > a:hover {
	background-color: #1da0db;
}

.sidebar .nav-sidebar > li > a:focus,
.sidebar .nav-sidebar > li > a:hover {
	background-color: #1da0db;
}

.sidebar .nav-sidebar > li > a.active,
.sidebar .nav-sidebar > li > a.active:hover {
	background-color: #4c4c4c;
}

.sidebar .nav-sidebar.help-ticket li a {
	background-color: #E6E7E6;
	color: black;
	margin: 1rem;
	text-align: center;
}

.product-support a {
	text-align: center;
	font-size: 1.25rem!important;
	padding: .75rem!important;
}

.main-content-template {
	margin-left: 13.5rem;
	margin-top: -15px;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	border-top: .125rem solid #F3F3F3;
	background-color: #f8f8f8;
	box-shadow: 0 0 0.5rem 0.125rem rgb(0 0 0 / 20%);
	padding-top: 1rem;
}

.footer p {
	font-family: 'Nunito', sans-serif !important;
}

.footer hr {
	margin-top: 0;
}

.panel-primary>.panel-heading {
	background-color: var(--main-acdd-blue-color);
}

.btn-primary {
	background-color: var(--main-acdd-blue-color);
	border-color: var(--main-acdd-blue-color);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn-primary:focus:active {
	background-color: #1da0db;
	border-color: #1da0db;
}

.btn-primary.active, .btn-primary.active:hover, .btn-primary.active:active, .btn-primary.active:focus {
	background-color: #006d9f;
	border-color: #006d9f;
}

.nav-tabs a:visited,
.nav-tabs a:link,
.nav-tabs a:active {
	font-family: 'Nunito', sans-serif !important;
	font-size: 14px !important;
	font-weight: normal !important;
}