/* @import "/assets/production/css/component/variable.scss"; */
body {
	font-family: var(--font-family);
	color: var(--text-grey);
	font-size: var(--font-size);
	font-weight: var(--font-weight);
	background: linear-gradient(180deg, var(--bg-color) 0%, var(--text-white) 100%);
}

a {
	color: var(--primary-color);
	font-size: var(--font-size);
}

a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

p {
	font-size: var(--font-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family);
	color: var(--primary-color);
}

h1 {
	font-size: calc(var(--font-size) + 0.5rem);
}

h2 {
	font-size: calc(var(--font-size) + 0.4rem);
}

h3 {
	font-size: calc(var(--font-size) + 0.3rem);
}

h4 {
	font-size: calc(var(--font-size) + 0.2rem);
}

h5 {
	font-size: calc(var(--font-size) + 0.1rem);
}

h6 {
	font-size: var(--font-size);
}

p {
	font-size: calc(var(--font-size) + 1px);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 21px 0;
}

@media (min-width: 992px) {
	#header {
		padding: 23px 0;
	}
	#header .logo a {
		font-size: 24px !important;
	}
}

#header .container-fluid {
	border-bottom: 1px solid var(--light-primary-color);
}

#header .logo a {
	font-size: 20px;
	margin: 0;
	padding: 10px 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	text-decoration: none;
}

#header .logo h1 a span,
#header .logo h1 a:hover span {
	color: var(--secondary-color);
}

#header .logo img {
	padding: 0;
	margin: 0;
	/* max-height: 40px; */
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.nav-menu ul {
	border-radius: 6px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: var(--primary-color);
	padding: 2px 10px;
	transition: 0.3s;
	font-size: calc(var(--font-size) + 2px);
	font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: var(--primary-color);
	text-decoration: none;
}

.nav-menu .get-started a {
	background: var(--primary-color);
	color: var(--text-white);
	border-radius: 50px;
	margin: 2px 0 0 15px;
	padding: 4px 25px 6px 25px;
	border: 2px solid var(--secondary-color);
}

.nav-menu .get-started a:hover {
	background: var(--secondary-color);
	color: var(--primary-color);
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	right: 0;
	top: calc(100% - 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: var(--text-white);
	box-shadow: 0px 0px 30px var(--light-primary-color);
	transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 80px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: calc(var(--font-size) + 2px);
	font-weight: var(--heading-font-weight);
	text-transform: none;
	color: #3e6f9b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: var(--secondary-color);
}


/* .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
} */

#login-dropdown>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/

.section-title {
	font-weight: var(--heading-font-weight);
	text-transform: uppercase;
	margin-bottom: 0px;
	padding-bottom: 13px;
	position: relative;
	font-family: var(--heading-font-family);
	color: var(--primary-color);
	text-align: center;
}


.section-title h1::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 12px;
	left: calc(50% - 60px);
}

.section-title h1::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: var(--secondary-color);
	bottom: 11px;
	left: calc(50% - 20px);
}

.section-title p {
	margin-bottom: 0;
}

.section-title-icon {
	font-size: calc(var(--font-size) + 0.3rem);
}


/*--------------------------------------------------------------
  # Sections General End
  --------------------------------------------------------------*/


/* Custom Css */

.form-control {
	font-size: var(--font-size);
}

.icon-positioning {
	font-size: calc(var(--font-size) + 0.3rem);
}

.btn-dark-blue {
	background: var(--primary-color);
	color: var(--text-white);
	border-radius: 50px;
	padding: 4px 25px 6px 25px;
	border: 2px solid var(--secondary-color);
	font-size: var(--font-size);
}

.btn-dark-blue:hover {
	background: var(--secondary-color);
	color: var(--primary-color);
	font-size: var(--font-size);
}


/* Customized buttons */

.btn-customized-success {
	color: var(--text-white);
	background-color: var(--green);
	border-color: var(--green);
}

.btn-customized-success:hover {
	color: var(--green);
	background-color: transparent;
	border-color: var(--green);
}

.btn-customized-danger {
	color: var(--text-white);
	background-color: var(--red);
	border-color: var(--red);
}

.btn-customized-danger:hover {
	color: var(--red);
	background-color: transparent;
	border-color: var(--red);
}

.box-bordered {
	z-index: 10;
	margin: 10px 0px 10px 0px;
	border: 1px solid var(--secondary-color);
	padding: 20px;
}


/* Customized buttons */


/* Table Start */

.table {
	border-collapse: var(--border-collapse);
}

.table td {
	padding: 0.4rem !important;
	font-size: var(--font-size) !important;
	font-weight: var(--font-weight) !important;
	/* text-align: var(--text-center) !important; */
}

thead {
	background-color: var(--primary-color);
	color: var(--text-white);
	/* text-align: var(--text-center); */
}

.bootstrap-table .fixed-table-container .table thead th .th-inner {
	padding: 0.42rem !important;
}


/* .table tr td a i{
   font-size: calc(var(--font-size) + 0.16rem);
   margin-right: 0.4rem;
} */

.table tr td a .badge {
	font-weight: 600;
}

.table tr td a:hover {
	color: var(--text-grey);
}


/* Table End */


.btn-group-vertical>.btn,
.btn-group>.btn {
	padding: .35rem .5rem;
	font-size: var(--font-size);
}

.pricing .box {
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 30px var(--light-primary-color);
	background: #fff;
	text-align: center;
	position: relative;
}

.btn-primary-bg {
	background-color: var(--primary-color) !important;
	color: var(--text-white);
}

.btn-primary-bg:hover {
	background-color: var(--primary-color) !important;
	color: var(--text-white);
}

.badge {
	font-weight: 500;
}

.logo a {
	color: var(--secondary-color);
}

.cursor-pointer {
	cursor: var(--cursor-pointer);
}

.text-underline {
	text-decoration: var(--text-underline);
}

#sidebar {
	min-width: 170px;
	max-width: 270px;
	background: var(--light-primary-color);
	color: var(--primary-color);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	position: relative;
	box-shadow: 0 1px 4px 0px var(--light-primary-color);
}

#sidebar.active {
	margin-left: -171px;
}

#sidebar.active .custom-menu {
	margin-right: -39px;
}

@media (max-width: 778px) {
	#sidebar.active .custom-menu {
		margin-right: -57px;
	}
}

#sidebar.active .btn.btn-primary:before {
	content: "\f054";
	font-family: "Font Awesome\ 5 Free";
	font-weight: 900;
	left: 2px !important;
}

#sidebar.active .btn.btn-primary:after {
	display: none;
}

#sidebar h1 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 20px;
}

#sidebar h1 .logo {
	color: #fff;
	display: block;
	padding: 10px 30px;
	background: #2f89fc;
}

#sidebar ul.components {
	padding: 0;
}

#sidebar ul li {
	font-size: 16px;
}

#sidebar ul li>ul {
	margin-left: 10px;
}

#sidebar ul li>ul li {
	font-size: 14px;
}

#sidebar ul li a {
	/* margin: 2px 8px; */
    padding: 9px;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#sidebar ul li a span.notif {
	position: relative;
}

#sidebar ul li a span.notif small {
	position: absolute;
	top: -3px;
	bottom: 0;
	right: -3px;
	width: 12px;
	height: 12px;
	content: '';
	background: red;
	border-radius: 50%;
	font-family: "Poppins", Arial, sans-serif;
	font-size: 8px;
}

#sidebar ul li a:hover {
	color: var(--primary-color);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--secondary-color);
}

#sidebar ul li.active>a {
	background: var(--primary-color);
	font-weight: bold;
	color: #fff;
}

#sidebar ul li.active>a:hover {
	background: var(--secondary-color);
}

@media (max-width: 778px) {
	#sidebar {
		margin-left: -170px;
	}
	#sidebar.active {
		margin-left: 0;
	}
	#sidebar .custom-menu {
		top: 10px !important;
	}
}

#sidebar .custom-menu {
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 0;
	margin-right: -35px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: 999;
}

@media (prefers-reduced-motion: reduce) {
	#sidebar .custom-menu {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}


#sidebar .custom-menu .btn.btn-primary {
	background: #2f89fc;
	border-color: transparent;
	position: relative;
	color: #000;
	width: 30px;
	height: 30px;
}

#sidebar .custom-menu .btn.btn-primary:after,
#sidebar .custom-menu .btn.btn-primary:before {
	position: absolute;
	top: 2px;
	left: 0;
	right: 0;
	bottom: 0;
	font-family: "Font Awesome\ 5 Free";
	font-weight: 900;
	color: #fff;
}

#sidebar .custom-menu .btn.btn-primary:after {
	content: "\f105";
    left: 1px;
    font-size: large;
    top: 1px;
}

.bg-wrap {
	width: 100%;
	position: relative;
	z-index: 0;
}

.bg-wrap:after {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: #000;
	opacity: .3;
}

.bg-wrap .user-logo .img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.bg-wrap .user-logo h3 {
	color: #fff;
	font-size: 18px;
}

a[data-toggle="collapse"] {
	position: relative;
}


@media (max-width: 991.98px) {
	#sidebarCollapse span {
		display: none;
	}
}

#content {
	width: 100%;
	padding: 0;
	min-height: 100vh;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.btn.btn-primary {
	background: #2f89fc;
	border-color: #2f89fc;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
	background: #2f89fc !important;
	border-color: #2f89fc !important;
}

/* @media (max-width: 778px) {
	#sidebar .custom-menu {
		right: 23px;
	}
} */