/*---------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------

>> 	1.0 	General
	-------------------------------------------------------------
	1.1		General - Headings
	1.2		General - Typography
	1.3		General - Lists
	1.4		General - Scrollbar
	1.5		General - Breadcrumbs
	1.6		General - Pagination

>>	2.0 	Login
	-------------------------------------------------------------
	2.1		Login - Page Logo
	2.2		Login - Card

>>	3.0 	Navigation
	-------------------------------------------------------------
	3.1		Topbar
	3.2		Navbar (left)
	3.2.1	Navbar - Nav active
	3.2.2	Navbar - Nav small
	3.2.3	Navbar - Nav float
	3.2.3	Navbar - Nav grid
	3.3		Theme Colors
	3.3.1	Theme Color - blue (default)
	3.3.2	Theme Color - red
	3.3.3	Theme Color - orange
	3.4		Topbar Themes
	3.4.1	Topbar - light
	3.4.2	Topbar - blue
	3.4.5	Topbar - red
	3.4.6	Topbar - orange
	3.5		Navbar Themes
	3.5.1	Navbar - light
	3.6		Sidebar (right)
	3.7		Page Navigation Bar (small, right)
	
>>	4.0 	Components
	-------------------------------------------------------------
	4.1		
	4.2		Card
	4.3		Media
	4.4 	Image Card
	4.5		Gallery
	4.6		Card with Tabs

>>	5.0		Forms
	-------------------------------------------------------------
	5.1		Form Basics
	5.2		Custom Dropdown
	5.3		Custom Dropdown Icon
	5.4		Checkbox & Radio
	5.5		Wizard

>>	6.0 	Elements
	-------------------------------------------------------------
	6.1		Buttons
	6.2		Switcher
	6.3		Note
	6.4		Label
	6.5		Ribbon
	6.6		Spinner
	6.7 	Lists

>>	7.0 	Table
	-------------------------------------------------------------

>>	8.0 	Popups
	-------------------------------------------------------------
	8.1 	Tooltip
	8.2 	Modal
	8.3 	Image Modal

>>	9.0		Widgets
	-------------------------------------------------------------
	9.1		Widget - Stats
	9.2		Widget - Pie
	9.3 	Widget - Icon

>>	10.0 	Extras
	-------------------------------------------------------------
	10.1	File Manager
	10.2	Page Action Bar (?)
	10.3	Comment Box
	10.4	Chat
	10.5	Todo List
	10.6	Stopwatch
	10.7	User Card

>>	11.0 	Plugins
	-------------------------------------------------------------
	11.1	jQuery Datepicker
	11.2	jQuery Timepicker
	11.3 	jQuery Slider
	11.4 	vis.js
	11.5 	Datatables
	11.6	Select2
	11.7	lightgallery

>>	12.0 	Stats
	-------------------------------------------------------------
	12.1	Progress Bar
	12.2	Pie Chart
	12.3 	Bar chart
	12.4	Line Chart

>>	13.0	Fancy Stuff
	-------------------------------------------------------------
	13.1	Loading Animation Signals
	13.2	Loading Animation Map
	13.3	Rating Stars
	13.4	Flip Cards

>>	14.0	Keyframes
	-------------------------------------------------------------

>>	15.0	CSS Helper Classes
	-------------------------------------------------------------

>>	16.0	Mobile
	-------------------------------------------------------------

-----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------*/





/***********************************************************************************************
>> 	1.0 	General
************************************************************************************************/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
	--yellow: #ffed00;
	--orange: #f5a20a;
	--red: #d61a1a;
	--brown: #693323;
	--lime: #adca40;
	--olive: #727201;
	--darkolive: #495c29;
	--green: #038803;
	--lightblue: #9bc5cf;
	--cadetblue: #57a2a5;
	--steelblue: #467fad ;
	--violet: #8624e2;
	--black: #141414;
	--night: #27272e;
	--darkgrey: #444444;
	--grey: #707070;
	--lightgrey: #e6e6e6;
	--white: #ffffff;
	--fb_orange: rgb(219, 141, 28);
}
body {
	/*font-family: 'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;*/
	font-family: 'Montserrat', sans-serif;
	background: #f1f1f5 !important;
	padding: 70px 0 0 0;
	font-size: 14px;
	position: absolute;
	min-height: 100%;
	width: 100%;
}
.content {
	padding: 10px 20px;
	margin-left: 250px;
	display: block;
	overflow: hidden;
	min-height: 100%;
}
.content.nav-small {
	margin-left: 65px;
}
.hidden {
	display: none;
}

/* montserrat-regular - latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/montserrat-v14-latin/montserrat-v14-latin-regular.eot'); /* IE9 Compat Modes */
	src: local('Montserrat Regular'), local('Montserrat-Regular'),
			url('../fonts/montserrat-v14-latin/montserrat-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
			url('../fonts/montserrat-v14-latin/montserrat-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
			url('../fonts/montserrat-v14-latin/montserrat-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
			url('../fonts/montserrat-v14-latin/montserrat-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
			url('../fonts/montserrat-v14-latin/montserrat-v14-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}

/*******************
Headings
*******************/
.heading {
    line-height: 22px;
    font-size: 12px;
    font-weight: 600;
    color: #707070;
    text-transform: uppercase;
}
.page-heading {
	color: #27272e;
	margin-bottom: 10px;
    font-size: 22px;
    line-height: initial;
}
.tiny-heading {
	font-size: 10px;
	font-weight: 600;
	color: #707070;
	margin-bottom: 5px;
    text-transform: uppercase;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #27272e;
  font-weight: 400;
  margin-bottom: 10px; 
}
h1 {
  line-height: 40px;
  font-size: 36px; 
}
h2 {
  line-height: 36px;
  font-size: 24px; 
}
h3 {
  line-height: 30px;
  font-size: 21px; 
}
h4 {
  line-height: 22px;
  font-size: 18px; 
}
h5 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 400; 
}
h6 {
  line-height: 16px;
  font-size: 14px;
  font-weight: 400; 
}

/*******************
Typography
*******************/
a {
	text-decoration: none;
	color: #27272e;
}
.link {
	text-decoration: underline;
	color: #3b668a;
}
.link-red {
	text-decoration: none;
	color: #d61a1a;
}
.link-blue {
	text-decoration: none;
	color: #467fad;
}
p {
	font-size: 14px;
	color: #505152;
}
hr {
	margin: 20px 0;
	border: .5px solid rgb(238, 238, 238);
}
hr.hr-small {
	margin: 10px 0;
}
small {
	font-size: 70%;
	/*margin-left: 5px;*/
	color: #707070;
}

/*******************
Scroll Bar
*******************/
::-webkit-scrollbar {
	width: 12px;
	height: 6px;
}
::-webkit-scrollbar-track {
  background: #bebebe; 
}
 ::-webkit-scrollbar-thumb {
  background: #1a1a1a; 
  border-radius: 0 0 3px 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

/* TEXTAREA SCROLLBAR */ 
textarea {
	scrollbar-width: thin;
	scrollbar-color: #27272e;
}
textarea::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
textarea::-webkit-scrollbar-track {
  background: none; 
}
textarea::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
textarea::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


/*******************
Lists
*******************/
ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
ol li,
ul li {
	margin: 5px 0;
    list-style-position: inside;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
ul.list-unstyled li {
	list-style-type: none;
}
ul.list-icon {
    margin: 0;
	padding: 0;
	padding-left: 0;
}
ul.list-icon li {
    list-style-type: none;
    line-height: 30px;
    margin: 5px 0;
}
ul.list-icon li i {
    font-size: 13px;
	padding-right: 8px;
	width: 30px;
}
ul.list-href li {
	color: #444444;
	cursor: pointer;
}
ul.list-href li:hover {
	color: #467fad;
}
ul.list-hover li {
	white-space: nowrap;
}
ul.list-hover li:hover {
	color: var(--lightgrey);
	white-space: unset;
}
dl {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
dt {
    font-weight: 700;
}
dd {
	
    display: block;
    margin-bottom: 1em;
    margin-left: 0;
}
.list-sortable li {
    list-style-type: none;
	border: 1px solid #e6e6e6;
	background: #ffffff;
    margin: 0;
    padding: 10px 15px;
}
.list-sortable li i {
    color: #707070;
    margin-right: 10px;
}
.sortable-handle {
	cursor: move;
}

/*******************
Breadcrumbs
*******************/
.breadcrumbs {
	list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    float: right;
    margin: 0;
    position: inherit;
}
.breadcrumb-seperator {
    margin: 5px 10px;
    color: #707070;
	font-size: 12px;
}
.breadcrumb {
	color: #27272e;
	font-size: 12px;
}
.breadcrumb:hover {
	text-decoration: underline;
}
.breadcrumb-active {
	color: #707070;
	font-size: 12px;
}

/*******************
Pagination
*******************/
.pagination {
    list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
}
.pagination .page-item {
    min-width: 35px;
    min-height: 35px;
    vertical-align: middle;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
    border: 1px solid #e6e6e6;
	padding: 5px 10px;
	border-radius: 5px;
}
.pagination .page-item:hover {
	background: #e6e6e6;
	color: #27272e;
	cursor: pointer;
}
.pagination .page-item:hover .page-link,
.pagination .page-item:hover .page-link i {
	color: #27272e;
}
.pagination.pagination-closed .page-item {
	border-radius: 0;
	margin: 0;
}
.pagination.pagination-closed .page-item:first-child {
	border-radius: 5px 0 0 5px;
}
.pagination.pagination-closed .page-item:last-child {
	border-radius: 0 5px 5px 0;
}
.pagination .page-item:last-child {
    margin-right: 0;
}
.pagination .page-item .page-link {
	color: #707070;
}
.pagination .page-item .page-link i {
	font-size: 12px;
}
.pagination .page-item.active {
	background: #467fad;
	border: 1px solid #467fad;
	color: white;
}
.pagination .page-item.active:hover {
	background: #467fad;
	opacity: .9;
}
.pagination .page-item.active .page-link {
	color: white;
}


/***********************************************************************************************
>>	2.0 	Login
************************************************************************************************/

/*******************
Page Logo
*******************/
.page-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	padding: -100px 0 10px 0;
}

/*******************
Log In Card
*******************/
.login-register {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 100%;
	width: 100%;
	padding: 10% 0;
	position: fixed; 
}
  
.login-card {
	width: 400px;
	margin: 0 auto; 
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #ffffff;
	background: #ffffff;
}
@media (max-width: 576px) {
	.login-card {
		width: 300px;
	}
}
.login-heading {
	text-align: center;
	margin-bottom: 20px;
}
.login-card .form-control:focus {
	right: 0;
	border-bottom: 1px solid #467fad !important;
	-webkit-transition: 1s ease;
	   -moz-transition: 1s ease;
		 -o-transition: 1s ease;
			transition: 1s ease;
}
.pw-reset {
	display: block;
	margin-top: 5px;
	text-align: right;
	color: #707070;
	text-decoration: none;
}
  
.page-cover img {	
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    position: fixed;
    object-fit: cover;
    width: 100%;
	height: 100%;
	z-index: -2;
}
.page-cover .page-cover-bg {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
	opacity: .66;
	z-index: -1;
}

/***********************************************************************************************
>>	3.0 	Navigation
************************************************************************************************/

/*******************
 Topbar
*******************/
.topbar {
	position: fixed;
	top: 0;
	height: 60px;
	width: 100%;
	background: #343a44;
	z-index: 9992;
}
.topbar .nav-top {
	position: absolute;
	left: 0;
	width: 250px;
	height: 60px;
	padding: 10px;
	text-align: center;
}
.topbar .nav-top .logo {
	max-height: 100%;
	max-width: 200px;
}
@media (max-width: 576px) {
	.topbar .nav-top .logo {
		display: none;
	}
}
.topbar .nav-top .logo-small {
	display: none;
	max-height: 100%;
	max-width: 65px;
}
@media (max-width: 576px) {
	.topbar .nav-top .logo-small {
		display: block;
	}
}
.topbar .nav-section {
	float: right;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	list-style-type: none;
	align-items: center;
	height: 60px;
	margin-block-start: 0;
	margin-block-end: 0;
}
.topbar .nav-section li .nav-section-span {
	padding: 15px 8px;
    margin: 0 5px;
	transition: all .2s;
}
.topbar .nav-section li:hover .nav-section-span,
.topbar .nav-section li:hover .nav-section-span.active {
    background: rgb(38, 42, 53);
    border-radius: 50%;
}
.topbar .nav-section i {
	color: #ffffff;
	font-size: 18px;
	padding: 0 10px;
	cursor: pointer;
}
.topbar .nav-section .input-search {
    height: 30px;
	border-radius: 10px;
	font-size: 14px;
    border: none;
    color: #444444;
	width: 0;
	padding: 0;
	transition: width .2s ease;
}
.topbar .nav-section .input-search.active {
    padding: 10px;
	width: 250px;
	transition: width .2s ease;
}
.topbar .nav-section .input-search:focus {
	outline: none;
}
.topbar .nav-section .nav-notify {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background: #467fad;
    min-height: 18px;
    min-width: 18px;
    position: absolute;
    border-radius: 50px;
	margin: -10px -15px;
	padding: 0 5px;
	cursor: pointer;
}
.topbar .nav-section .nav-notify-dropdown,
.topbar .nav-section .nav-user-dropdown {
	position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
    max-height: 0;
}
.topbar .nav-section .nav-notify-dropdown.active,
.topbar .nav-section .nav-user-dropdown.active {
    position: absolute;
    background: #ffffff;
    border-radius: 5px;
	top: 40px;
	height: auto;
	width: 300px;
	max-height: 80vh;
	box-shadow: 0 13px 25px -2px rgba(0,0,0,.2);
	transition: max-height .5s ease;
	margin-block-end: 0;
	margin-block-start: 0;
	margin-top: 20px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #27272e;
}
.topbar .nav-section .nav-notify-dropdown.active::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.topbar .nav-section .nav-notify-dropdown.active::-webkit-scrollbar-track {
  background: none; 
}
.topbar .nav-section .nav-notify-dropdown.active::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
.topbar .nav-section .nav-notify-dropdown.active::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.topbar .nav-section .nav-user-dropdown.active {
	width: 250px;
	right: 60px;
}
.topbar .nav-section .nav-notify-dropdown.active {
	right: 110px;
}
.topbar .nav-section .nav-notify-dropdown li,
.topbar .nav-section .nav-user-dropdown li {
    list-style-type: none;
    padding: 10px 25px;
	margin: 0;
	min-height: 70px;
}
.topbar .nav-section .nav-notify-dropdown li {
    border-bottom: .5px solid #e6e6e6;
}
.topbar .nav-section .nav-user-dropdown li {
	min-height: 0;
    padding: 10px;
}
.topbar .nav-section .nav-user-dropdown li span,
.topbar .nav-section .nav-user-dropdown li span i {
	color: #444444;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first {
    min-height: 30px;
    background: #467fad;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first .nav-user-icon {
    height: 65px;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first .nav-user-name {
	position: absolute;
    margin: 20px 0 0 20px;
    color: white;
    font-size: 16px;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-second {
    height: 20px;
    background: white;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-last {
    border-top: .5px solid #e6e6e6;
    padding: 20px 10px;
}
.topbar .nav-section .nav-notify-dropdown li:hover,
.topbar .nav-section .nav-user-dropdown li:hover {
	background: #e6e6e6;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-last:hover {
    background: white;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first:hover {
    background: #467fad;
}
.topbar .nav-section .nav-notify-dropdown li:last-child,
.topbar .nav-section .nav-user-dropdown li:last-child {
    border-bottom: none;
}
.nav-user-dropdown::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.nav-user-dropdown::-webkit-scrollbar-track {
  background: none; 
}
.nav-user-dropdown::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
.nav-user-dropdown::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.topbar .nav-section .nav-notify-dropdown .notify-header-fix {
	min-height: 35px;
	max-height: 35px;
	font-size: 12px;
	background: #707070;
	color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9;
}
.topbar .nav-section .nav-notify-dropdown .notify-header-fix:hover {
    background: #707070;
}
.topbar .nav-section .nav-notify-dropdown .notify-all {
	min-height: 35px;
	max-height: 35px;
	font-size: 12px;
	color: #444444;
	text-align: center;
}
.topbar .nav-section .nav-notify-dropdown .notify-left {
    position: absolute;
    left: 0;
    width: 40px;
	color: #707070;
	padding-left: 5px;
}
.topbar .nav-section .nav-notify-dropdown .notify-left i {
    background: #707070;
    color: #ffffff;
	padding: 14px;
	margin-left: 8px;
    border-radius: 5px;
}
.topbar .nav-section .nav-notify-dropdown .notify-right {
    margin-left: 50px;
}
.topbar .nav-section .nav-notify-dropdown .notify-right .notify-heading {
    color: #27272e;
    font-weight: 600;
	font-size: 12px;
	margin-bottom: 1px;
}
.topbar .nav-section .nav-notify-dropdown .notify-right .text-muted {
	font-size: 10px;
	color: #707070;
	padding-top: 2px;
}
.topbar .nav-section .nav-notify-dropdown .notify-right .notify-text {
	font-size: 12px;
	color: #444444;
}
.topbar .nav-toggle {
    position: absolute;
    left: 260px;
    top: 22px;
    font-size: 18px;
    color: #ffffff;
	cursor: pointer;
    -webkit-transition: left .2s cubic-bezier(.4, 0, 1, 1);
       -moz-transition: left .2s cubic-bezier(.4, 0, 1, 1);
         -o-transition: left .2s cubic-bezier(.4, 0, 1, 1);
            transition: left .2s cubic-bezier(.4, 0, 1, 1);
}
.quick-view-grid {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.quick-view-grid .quick-view-item {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    width: calc(50% - 4px);
	min-height: 180px;
	height: 180px;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	padding: 1rem;
	margin: 2px;
    background: #f7f8fa;
	transition: all .3s;
    cursor: pointer;
}
.quick-view-grid .quick-view-item:hover {
	background: #467fad;
}
.quick-view-grid .quick-view-item .quick-view-item-icon {
	display: inline-block;
    text-align: center;
    margin-bottom: .5rem;
}
.quick-view-grid .quick-view-item .quick-view-item-icon i {
	font-size: 32px;
	color: #467fad;
}
.quick-view-grid .quick-view-item:hover .quick-view-item-icon i {
	color: white;
}
.quick-view-grid .quick-view-item .quick-view-item-title {
	display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #5d5b6f;
}
.quick-view-grid .quick-view-item:hover .quick-view-item-title {
	color: white;
}
@media (max-width: 667px) {
	.topbar .nav-section .input-search {
		transition: none;
	}
	.topbar .nav-section .input-search.active {
		position: absolute;
		top: 0;
		left: 0;
		width: 90%;
		height: 60px;
		border-radius: 0;
	}
	.topbar .nav-section.search_active {
		margin-right: -75px;
	}
}
@media (max-width: 576px) {
	.topbar .nav-toggle {
		left: 75px;
	}
}
@media (max-width: 667px) {
	.topbar .nav-section .nav-notify-dropdown.active,
	.topbar .nav-section .nav-user-dropdown.active {
		margin-top: 0;
		top: 60px;
		left: 0;
		right: 0;
		width: 100%;
		border-radius: 0;
	}
}

/*******************
 Nav
*******************/
.nav {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 250px;
	background: rgb(45, 50, 63);
	z-index: 9991;
	height: 100%;
	overflow: auto;
	scrollbar-width: none; /* firefox */
    -ms-overflow-style: none; /* ie */
}
@media (max-width: 576px) {
	.nav {
		width: 100%;
	}
}
.nav::-webkit-scrollbar { /* safari + chrome */
	width: 0;
	height: 0;
}
.nav .nav-head {
	position: initial;
	height: 250px;
	width: 100%;
	padding-top: 70px;
	background: rgb(90, 90, 90);
}
.nav .nav-head img {
	object-fit: cover;
	width: 250px;
	height: 250px;
    top: 0;
    position: absolute;
	padding-top: 60px;
	z-index: 2;
}
@media (max-width: 576px) {
	.nav .nav-head img {
		width: 100%;
	}
}
.nav .nav-head .img-cover {
	width: 250px;
	height: 250px;
    top: 0;
    position: absolute;
	padding-top: 60px;
	z-index: 2;
	background: rgba(0, 0, 0, .3);
}
@media (max-width: 576px) {
	.nav .nav-head .img-cover {
		width: 100%;
	}
}
.nav .nav-head .nav-user-bar {
	background: rgba(0, 0, 0, .35);
    padding: 15px;
    text-align: center;
    top: 190px;
    position: absolute;
	width: 250px;
	color: rgb(236, 236, 236);
	z-index: 3;
}
@media (max-width: 576px) {
	.nav .nav-head .nav-user-bar {
		width: 100%;
	}
}
.nav .nav-head .nav-user-bar:hover {
	background: rgba(0, 0, 0, .45);
}
.nav .nav-body {
	width: 100%;
	background: rgb(45, 50, 63);
	padding: 30px 0;
}
.nav .nav-body {
	position: initial;
	/*height: 100%;
	min-height: 100%;*/
}
.nav .nav-body .nav-group {
	margin-bottom: 10px;
}
.nav .nav-body .nav-group .group-heading {
	color: #707070;
	font-size: 12px;
	padding: 0 20px;
}
.nav .nav-body .nav-group li {
	list-style-type: none;
    padding: 10px 20px;
	font-size: 14px;
	color: rgb(199, 199, 199);
	cursor: pointer;
	margin: 0;
}
.nav .nav-body .nav-group li i {
	margin-right: 5px;
	display: inline;
	color: #606167; /* Fallback */
	color: #ffffff3b;
	transition: background-color .5s ease;
}
.nav .nav-body .nav-group li:hover {
	color: rgb(255, 255, 255);
	background: rgb(38, 42, 53);
}
.nav .nav-body .nav-group li:hover i {
    color: #467fad;
}
.nav .nav-body .nav-group li .nav-icon {
	display: inline-block;
	min-width: 18px;
}
.nav .nav-foot {
    position: fixed;
    bottom: 0;
    width: 250px;
    background: rgb(38, 42, 53);
    padding: 5px;
}
.nav .nav-foot .nav-foot-ul {
	margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
}
.nav .nav-foot .nav-foot-ul li {
	list-style-type: none;
	font-size: 16px;
	color: #3e4d55;
	cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
}
.nav .nav-foot li:hover {
	color: #4b6e8b;
	background: #1e2023;
}
.nav .nav-body .nav-group ul li .sub-caret,
.nav .nav-body .nav-group ul li .sub-sub-caret  {
	float: right;
}
.nav .nav-body .nav-group ul li .nav-label {
	background: #467fad;
	padding: 2px 5px;
	margin-left: 5px;
	margin-bottom: 0;
}
.has-sub,
.has-sub-sub {
	max-height: auto;
	-webkit-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
	   -moz-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
	     -o-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
			transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
}
.has-sub.nav-active,
.has-sub-sub.nav-active {
	max-height: 100%;
	-webkit-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
	   -moz-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
	     -o-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
			transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
}
.sub-menu,
.sub-sub-menu {
	color: #707070;
	padding-left: 22px;
	margin:	0;
	height: 0;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
	   -moz-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
	     -o-transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
			transition: max-height 2s cubic-bezier(.4, 0, 1, 1);
}
.sub-menu li,
.sub-sub-menu li {
	padding-left: 0 !important;
}
.sub-menu li i {
	font-size: 6px;
	vertical-align: middle;
	margin-right: 2px;
}
.sub-sub-menu li i,
.has-sub-sub i {
	font-size: inherit !important;
}
/*******************
 Nav Active
*******************/
.sub-menu.active,
.sub-sub-menu.active {
	height: auto;
	max-height: 9999px;
	margin-top: 10px;
}
.nav-active {
	border-left: 2px solid #467fad;
	background: rgb(38, 42, 53);
	transition: background-color .5s ease;
}
.nav-active i {
	color: #ffffff;
    margin-left: -2px;
}
.nav-active .sub-caret {
	transform: rotate(90deg);
}
.sub-caret-active,
.sub-sub-caret.active {
	transform: rotate(90deg);
}
.nav-sub-active {
	color: #ffffff !important;
}




/*******************
 Nav Small
*******************/
/* show small logo */
.topbar.nav-small .nav-top .logo-small {
	display: block;
}
/* move toggle button left */
.topbar.nav-small .nav-toggle {
	left: 75px;
    -webkit-transition: left .2s cubic-bezier(.4, 0, 1, 1);
       -moz-transition: left .2s cubic-bezier(.4, 0, 1, 1);
         -o-transition: left .2s cubic-bezier(.4, 0, 1, 1);
            transition: left .2s cubic-bezier(.4, 0, 1, 1);
}
/* change nav elements */
.nav.nav-small {
	width: 65px;
}
.nav.nav-small .nav-head {
	height: 0;
	padding-top: 0;
}
.nav.nav-small .nav-body .nav-group ul {
	margin-block-start: .7em;
}
.nav.nav-small .nav-body .nav-group li i {
	display: block;
	margin-right: 0;
	text-align: center;
}
.nav.nav-small .nav-body,
.nav.nav-small .nav-footer {
    padding: 50px 0 10px 0;
}
/* new sub-menu for small view 
.nav.nav-small .nav-body .nav-group li .sub-menu {
	display: none;
    background: rgb(38, 42, 53);
    position: fixed;
    width: 200px;
    left: 0;
	margin-left: 65px;
	margin-top: -24px;
	padding: 5px 20px;
}*/
.nav.nav-small .nav-body .nav-group li .sub-menu,
.nav.nav-small .nav-body .nav-group li .sub-menu.active {
	display: none;
}
/* hide this */
.nav.nav-small .nav-head img,
.nav.nav-small .nav-head .img-cover,
.nav.nav-small .nav-head .nav-user-bar {
	/*display: none;*/
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
}
.topbar.nav-small .nav-top .logo,
.nav.nav-small .nav-head .user-name,
.nav.nav-small .nav-body .nav-group .group-heading,
.nav.nav-small .nav-body .nav-group .nav-text,
.nav.nav-small .nav-body .nav-group .nav-label,
.nav.nav-small .nav-body .nav-group .sub-caret,
.nav.nav-small .nav-body .nav-group .sub-sub-caret,
.nav.nav-small .nav-foot .nav-text {
	/*display: none;*/
	width: 0;
	max-height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	position: absolute;
}
/* smooth transition while toggling */
.nav,
.nav .nav-head,
.nav .nav-head img,
.nav .nav-head .img-cover,
.nav .nav-head .nav-user-bar,
.nav-body {
    -webkit-transition: width .2s cubic-bezier(.4, 0, 1, 1);
       -moz-transition: width .2s cubic-bezier(.4, 0, 1, 1);
         -o-transition: width .2s cubic-bezier(.4, 0, 1, 1);
            transition: width .2s cubic-bezier(.4, 0, 1, 1);
}
.topbar .nav-top .logo,
.nav .nav-head .user-name,
.nav .nav-body .nav-group .group-heading,
.nav .nav-body .nav-group .nav-text,
.nav .nav-body .nav-group .nav-label,
.nav .nav-body .nav-group .sub-caret,
.nav .nav-body .nav-group .sub-sub-caret,
.nav .nav-foot .nav-text {
    -webkit-transition: opacity .2s cubic-bezier(.4, 0, 1, 1) .2s;
       -moz-transition: opacity .2s cubic-bezier(.4, 0, 1, 1) .2s;
         -o-transition: opacity .2s cubic-bezier(.4, 0, 1, 1) .2s;
            transition: opacity .2s cubic-bezier(.4, 0, 1, 1) .2s;
}
.nav.nav-small .nav-head .user-name,
.nav.nav-small .nav-body .nav-group .group-heading,
.nav.nav-small .nav-body .nav-group .nav-text,
.nav.nav-small .nav-body .nav-group .nav-label,
.nav.nav-small .nav-body .nav-group .sub-caret,
.nav.nav-small .nav-body .nav-group .sub-sub-caret,
.nav.nav-small .nav-foot .nav-text {
    -webkit-transition: opacity 0s cubic-bezier(.4, 0, 1, 1) 0s;
       -moz-transition: opacity 0s cubic-bezier(.4, 0, 1, 1) 0s;
         -o-transition: opacity 0s cubic-bezier(.4, 0, 1, 1) 0s;
            transition: opacity 0s cubic-bezier(.4, 0, 1, 1) 0s;
}
@media (max-width: 576px) {
	.nav.nav-small {
		width: 0;
	}
	.content.nav-small {
		margin-left: 0;
	}
}

/*******************
 Nav Small Hover
*******************/
/*
.nav.nav-small:hover {
	width: 250px;
}
.nav.nav-small:hover .nav-head {
	height: 250px;
	padding-top: 70px;
}
.nav.nav-small:hover .nav-body .nav-group ul {
	margin-block-start: 1em;
}
.nav.nav-small:hover .nav-body .nav-group li i {
	display: inline;
	margin-right: 5px;
}
.nav.nav-small:hover .nav-body,
.nav.nav-small:hover .nav-footer {  
    padding: 30px 0;
}
.nav.nav-small:hover .nav-head img,
.nav.nav-small:hover .nav-head .img-cover {
	width: 250px;
	height: 250px;
	padding-top: 60px;
}
.nav.nav-small:hover .nav-head .nav-user-bar {
	width: 250px;
	height: auto;
	padding: 15px;
}
.nav.nav-small:hover .nav-body .nav-group li .sub-menu.active {
	display: block;
}
.nav.nav-small:hover .nav-head .user-name,
.nav.nav-small:hover .nav-body .nav-group .group-heading,
.nav.nav-small:hover .nav-body .nav-group .nav-text,
.nav.nav-small:hover .nav-body .nav-group .nav-label,
.nav.nav-small:hover .nav-body .nav-group .sub-caret,
.nav.nav-small:hover .nav-foot .nav-text {
	width: auto;
	max-height: auto;
	margin: auto;
	padding: auto;
	overflow: hidden;
	opacity: 1;
	position: initial;
}
.nav.nav-small:hover .nav-body .nav-group .group-heading {
    padding: 0 20px;
    overflow: unset;
}
.topbar.nav-small:hover .nav-top .logo {
	max-height: 100%;
	max-width: 200px;
}
*/
/*******************
 Nav float
*******************/
.topbar.nav-float,
.nav.nav-float,
.nav.nav-float .nav-head img,
.nav.nav-float .nav-head .img-cover,
.nav.nav-float .nav-head .nav-user-bar,
.sidebar-right.active.nav-float {
	position: absolute;
}

/*******************
 Nav Grid
*******************/
.nav.nav-grid .nav-body .nav-group li {
	border-bottom: 1px solid #444444;
}
.nav.nav-grid .nav-body .nav-group li:first-child {
	border-top: 1px solid #444444;
}
.nav.nav-grid .nav-body .nav-group li ul li {
	border: none;
}
.nav.nav-grid .nav-body .nav-group li ul li:first-child {
	border: none;
}

/*******************
Theme Color Blue (Default)
*******************/
/* text colored */
.nav.nav-text-colored .nav-active .nav-text, 
.nav.theme-blue.nav-text-colored .nav-active i {
	color: #467fad;
}
/* bg colored */
.nav.nav-bg-colored .nav-active,
.nav.nav-small.nav-bg-colored .nav-body .nav-group li .sub-menu {
	color: #ffffff;
	background: #467fad;
}

/*******************
Theme Color Red
*******************/
.topbar.theme-red,
.nav.theme-red,
.nav.theme-red .nav-body {
	background: rgb(39, 39, 46);
}
.nav.theme-red .nav-foot {
    background: rgb(49, 52, 58); 
}
.nav.theme-red .nav-foot .nav-foot-ul .li:hover {
	color: rgb(86, 88, 92);
	background: #1b1b1f;
}
.nav.theme-red .nav-foot .nav-foot-ul li:hover {
	color: rgb(86, 88, 92);
	background: #1b1b1f;
}
.topbar.theme-red .nav-section li:hover .nav-section-span,
.topbar.theme-red .nav-section li:hover .nav-section-span.active {
    background: rgb(49, 52, 58); 
    border-radius: 50%;
}
.topbar.theme-red .nav-section .nav-notify,
.nav.theme-red .nav-body .nav-group ul li .nav-label {
	background: #d61a1a;
}
.nav.theme-red .nav-body .nav-group li:hover {
    color: rgb(255, 255, 255);
    background: rgb(49, 52, 58); 
}
.nav.theme-red .nav-body .nav-group li:hover i {
    color: #d61a1a;
}
.nav.theme-red .nav-active {
	border-left: 2px solid #d61a1a;
    background: rgb(49, 52, 58); 
}
/* text colored */
.nav.theme-red.nav-text-colored .nav-active .nav-text, 
.nav.theme-red.nav-text-colored .nav-active i {
	color: #d61a1a;
}
/* bg colored */
.nav.theme-red.nav-bg-colored .nav-active,
.nav.nav-small.nav-bg-colored .nav-body .nav-group li .sub-menu {
	color: #ffffff;
	background: #d61a1a;
}

/*******************
Theme Color Orange
*******************/
.topbar.theme-orange,
.nav.theme-orange,
.nav.theme-orange .nav-body {
	background: #27272e;
}
.nav.theme-orange .nav-foot {
    background: rgb(49, 52, 58); 
}
.nav.theme-orange .nav-foot .nav-foot-ul .li:hover {
	color: rgb(86, 88, 92);
	background: #1b1b1f;
}
.nav.theme-orange .nav-foot .nav-foot-ul li:hover {
	color: rgb(86, 88, 92);
	background: #1b1b1f;
}
.topbar.theme-orange .nav-section li:hover .nav-section-span,
.topbar.theme-orange .nav-section li:hover .nav-section-span.active {
    background: rgb(49, 52, 58); 
    border-radius: 50%;
}
.topbar.theme-orange .nav-section .nav-notify,
.nav.theme-orange .nav-body .nav-group ul li .nav-label {
	background: #f5a20a;
}
.nav.theme-orange .nav-body .nav-group li:hover {
	color: rgb(255, 255, 255);
    background: rgb(49, 52, 58); 
}
.nav.theme-orange .nav-body .nav-group li:hover i {
    color: #f5a20a;
}
.nav.theme-orange .nav-active {
	border-left: 2px solid #f5a20a;
    background: rgb(49, 52, 58); 
}
/* text colored */
.nav.theme-orange.nav-text-colored .nav-active .nav-text, 
.nav.theme-orange.nav-text-colored .nav-active i {
	color: #f5a20a;
}
/* bg colored */
.nav.theme-orange.nav-bg-colored .nav-active,
.nav.nav-small.nav-bg-colored .nav-body .nav-group li .sub-menu {
	color: #ffffff;
	background: #f5a20a;
}


/*******************
 Topbar light
*******************/
.topbar.topbar-light {
	background: #ffffff;
}
.topbar.topbar-light .nav-toggle {
	color: #27272e;
}
.topbar.topbar-light .nav-section i {
	color: #27272e;
}

/*******************
 Topbar blue
*******************/
.topbar.topbar-blue {
	background: #467fad;
}
.topbar.topbar-light .nav-toggle {
	color: #27272e;
}
.topbar.topbar-light .nav-section i {
	color: #27272e;
}

/*******************
 Topbar red
*******************/
.topbar.topbar-red {
	background: #d61a1a;
}
.topbar.topbar-light .nav-toggle {
	color: #27272e;
}
.topbar.topbar-light .nav-section i {
	color: #27272e;
}

/*******************
Topbar orange
*******************/
.topbar.topbar-orange {
	background: #f5a20a;
}
.topbar.topbar-light .nav-toggle {
	color: #27272e;
}
.topbar.topbar-light .nav-section i {
	color: #27272e;
}
 
/*******************
 Nav light
*******************/
.nav.nav-light .nav-body,
.nav.nav-light.nav-small .nav-body .nav-group li .sub-menu.active {
	background: #ffffff;
}
.nav.nav-light .nav-body .nav-group li {
	color: #535557;
}
.nav.nav-light .nav-body .nav-group li i {
	color: #777e83;
}
.nav.nav-light .nav-active {
    background: #fff;
    border-left: none;
}
.nav.nav-light .nav-active .sub-menu .nav-sub-active, 
.nav.nav-light .nav-active .nav-text {
	color: #385770 !important;
}
.nav.nav-light .nav-active i {
	color: #467fad !important;
}
.nav.nav-light .nav-body .nav-group li:hover {
    color: #385770;
    background: #f5f5f5;
}
.nav.nav-light .nav-body .nav-group li:hover i {
    color: #467fad;
}

/*******************
Right Sidebar
*******************/
.sidebar-right-toggle {
    font-size: 20px;
    color: #ffffff;
    background: #27272e;
    padding: 5px 10px 5px 5px;
    position: fixed;
    right: 0;
	top: 280px;
	z-index: 99;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
	transition: right .2s ease-in;
}
.sidebar-right-toggle.active {
	right: 250px;
	transition: right .2s ease-out;
}
.sidebar-right {
	display: none;
	right: -280px;
	width: 0;
	transition: right .2s ease-in;
	position: absolute;
}
.sidebar-right.active {
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 250px;
	z-index: 99;
	background: white;
    box-shadow: 0 0 10px 3px #80808042;
	padding: 80px 20px 20px 20px;
	transition: right .2s ease-out;
}
.sidebar-right.active .color-circle {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
}
.sidebar-right.active .color-circle.active {
    box-shadow: 0 0 4px 4px lightgrey;
    border: 2px solid white;
    height: 35px;
    width: 35px;
    margin-top: 5px;
}

/*******************
Page Navigation Bar
*******************/
.page-navigation {
    background: #ffffff;
    position: fixed;
    right: 0;
    top: 250px;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: #444444;
    border: 1px solid #707070;
    border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	text-align: center;
	z-index: 9;
}
.page-navigation i {
    padding: 12px 0;
    color: #707070;
	font-size: 16px;
	cursor: pointer;
}
.page-navigation i:hover {
	color: #27272e;
}



/***********************************************************************************************
>>	4.0 	Components
************************************************************************************************/

/*******************
Card
*******************/
.card {
	margin-bottom: 20px;
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 3px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.card.box-shadow {
	box-shadow: 0 0 8px 1px rgb(199, 199, 199);
}
.card .card-header {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
	background: white;
	border-bottom: 1px solid #e6e6e6;
    padding: 10px 15px;
    border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #27272e;
	min-height: 45px;
}
.card .card-header .card-label {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.card .card-header .card-label .card-label-icon {
	margin-right: 10px;
	color: #707070;
	font-size: 16px;
}
.card .card-action {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    align-items: center;
    align-content: flex-end;
}
.card .card-header .card-action .nav-tabs {
	margin: 0;
	margin-bottom: -11px;
}
.card .card-header .card-action .nav-tabs .tab-item {
	padding-bottom: 15px;
}
.card .card-body {
	padding: 15px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #27272e;
}
.card .card-body.card-full-width {
	padding: 15px 0;
}
.card::-webkit-scrollbar,
.card .card-body::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.card .card-body::-webkit-scrollbar-track {
  background: none; 
}
.card .card-body::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
.card .card-body::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.card .card-footer {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
	padding: 20px 15px;
	background: #ffffff;
	color: #444444;
    border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-top: 1px solid #e6e6e6;
	overflow: auto;
	font-size: 14px;
}
.card-default .card-header,
.card-default-outline .card-header {
	background: #e6e6e6;
	color: #27272e;
}
.card-default-full .card-header,
.card-default-full .card-body {
	background: #ffffff;
	color: #27272e;
}
.card-default-full .card-body p {
	color: #27272e;
}
.card-dark .card-header,
.card-dark-full .card-header,
.card-dark-full .card-body,
.card-dark-outline .card-header {
	background: #444444;
}
.card-info .card-header,
.card-info-full .card-header,
.card-info-full .card-body,
.card-info-outline .card-header {
	background: #467fad;
}
.card-warning .card-header,
.card-warning-full .card-header,
.card-warning-full .card-body,
.card-warning-outline .card-header {
	background: #f5a20a;
}
.card-success .card-header,
.card-success-full .card-header,
.card-success-full .card-body,
.card-success-outline .card-header {
	background: #adca40;
}
.card-danger .card-header,
.card-danger-full .card-header,
.card-danger-full .card-body,
.card-danger-outline .card-header {
	background: #d61a1a;
}
.card-default-full p,
.card-dark-full p,
.card-info-full p,
.card-success-full p,
.card-warning-full p,
.card-danger-full p {
	color: #ffffff;
}
.card-default-outline .card-body {
	border: 2px solid #e6e6e6;
}
.card-dark-outline .card-body {
	border: 2px solid #444444;
}
.card-info-outline .card-body {
	border: 2px solid #467fad;
}
.card-success-outline .card-body {
	border: 2px solid #adca40;
}
.card-warning-outline .card-body {
	border: 2px solid #f5a20a;
}
.card-danger-outline .card-body {
	border: 2px solid #d61a1a;
}
.card-dark .card-header,
.card-dark-full .card-header,
.card-dark-outline .card-header,
.card-info .card-header,
.card-info-full .card-header,
.card-info-outline .card-header,
.card-success .card-header,
.card-success-full .card-header,
.card-success-outline .card-header,
.card-warning .card-header,
.card-warning-full .card-header,
.card-warning-outline .card-header,
.card-danger .card-header,
.card-danger-full .card-header,
.card-danger-outline .card-header {
	border: none;
	color: white;
}

/*******************
Media
*******************/
.media {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.media+.media {
    margin-top: 15px;
}
.media .media-left,
.media .media-right,
.media .media-body {
	display: table-cell;
	vertical-align: top;
}
.media .media-object,
.media .media-object-round {
	width: 80px;
	height: 80px;
	object-fit: cover;
}
.media .media-object-round {
	border-radius: 50%;
}
.media .media-left {
	padding-right: 15px;
}
.media .media-right {
	padding-left: 15px;
}
.media.media-xs .media-object,
.media.media-xs .media-object-round {
	width: 40px;
	height: 40px;
}
.media.media-lg .media-object,
.media.media-lg .media-object-round {
	width: 160px;
	height: 160px;
}
.media.media-xl .media-object,
.media.media-xl .media-object-round {
	width: 240px;
	height: 240px;
}

/*******************
Image Cards
*******************/
.card .card-image,
.card .group-image {
    border: none;
    border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	height: 150px;
}
.card .card-image img,
.card .group-image img  {
	object-fit: cover;
	height: 150px;
    width: 100%;
    border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.card .card-image-content,
.card .group-image-content {
	padding: 15px;
    border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.card .card-image-action,
.card .group-image-action {
	padding: 15px;
    border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.card .card-image-overlay,
.card .group-image-overlay {
    border: none;
    border-radius: 5px;
	position: relative;
}
.card .card-image-overlay img,
.card .group-image-overlay img {
	object-fit: cover;
	width: 100%;
	border-radius: 5px;
}
.card .card-content-overlay,
.card .group-content-overlay {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
}
.card .card-content-overlay h1,
.card .card-content-overlay h2,
.card .card-content-overlay h3,
.card .card-content-overlay h4,
.card .card-content-overlay h5,
.card .card-content-overlay h6 {
	color: #ffffff;
}
.card .card-content-overlay p,
.card .card-content-overlay span {
	color: #e6e6e6;
}
.card .group-image img {
    height: 200px;
}
.image-header img {
	height: 200px;
	border-radius: 5px;
}

/*******************
Gallery
*******************/
.gallery-modal {
	display: none;
    position: fixed;
    margin: auto;
	top: 0;
	bottom: 0;
    left: 0;
    right: 0;
	height: 60vh;
	width: 60vw;
	background: #ffffff;
	z-index: 9994;
	border-radius: 5px;
	transform: scale(0);
	animation: zoomIn .5s cubic-bezier(.165, .84, .44, 1) forwards;
}
.gallery-modal img {
	top: 0;
	bottom: 0;
	height: 65vh;
	width: 60vw;
	border-radius: 5px;
	box-shadow: 0 0 25px 5px rgba(0, 0, 0, .5);
}
.gallery-modal .close_gallery {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e6e6e6;
	font-size: 22px;
	cursor: pointer;
}
.gallery-modal .next-image,
.gallery-modal .prev-image {
	position: absolute;
	display: table;
	margin: auto;
	top: 0;
	bottom: 0;
    color: #e6e6e6;
	font-size: 26px;
	cursor: pointer;
	padding: 20px;
}
.gallery-modal .next-image {
    right: 0;
	left: auto;
}
.gallery-modal .prev-image {
	left: 0;
	right: auto;
}
.image-cover {
	display: none;
	position: fixed;
	z-index: 9993;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(26, 26, 26, .774);
}
.gallery img {
    object-fit: cover;
    border-radius: 5px;
}
.gallery.extra-small-img img {
	width: 100px;
	height: 75px;
}
.gallery.small-img img {
	width: 200px;
	height: 150px;
}
.gallery.medium-img img {
	width: 400px;
	height: 300px;
}
.gallery.large-img img {
	width: 800px;
	height: 450px;
}

/*******************
Card Tabs
*******************/
.card .nav-tabs {
	background: rgb(241, 242, 243);
    border: none;
    border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #444444;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	list-style-type: none;
	font-size: 14px;
	cursor: pointer;
	margin-block-end: 0;
}
.card .nav-tabs li {
	margin: 0;
}
.card .nav-tabs-flex {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}
.card .nav-tabs-light,
.card .nav-tabs-white {
	background: #ffffff;
	color: #707070;
	border-bottom: .5px solid #e6e6e6;
}
.card .nav-tabs-dark {
	background: #27272e;
	color: #707070;
}
.card .nav-tabs .tab-item {
    margin-right: 10px;
    padding: 10px 15px;
}
.card .nav-tabs .tab-item:last-child {
	margin-right: 0;
}
.card .nav-tabs .tab-item:hover {
	background: #ffffff;
	border-radius: 3px 3px 0 0;
}
.card .nav-tabs-light .tab-item:hover {
	color: #27272e;
	background: unset;
	border-bottom: 1px solid #27272e;
}
.card .nav-tabs-dark .tab-item:hover {
	color: #e6e6e6;
	background: #27272e;
}
.card .nav-tabs-dark .tab-item-active:hover {
	color: #27272e;
	background: #ffffff;
}
.card .nav-tabs-flex .tab-item {
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
}
.card .nav-tabs .tab-item-active {
    border-radius: 3px 3px 0 0;
    color: #27272e;
    background: #ffffff;
}
.card .nav-tabs-light .tab-item-active {
	border-bottom: 1px solid #27272e;
	color: #27272e;
}
.card .nav-tabs-light.tabs-info .tab-item-active,
.card .nav-tabs-light.tabs-info .tab-item:hover {
	border-bottom: 1px solid #467fad;
	color: #467fad;
}
.card .nav-tabs-light.tabs-warning .tab-item-active,
.card .nav-tabs-light.tabs-warning .tab-item:hover {
	border-bottom: 1px solid #f5a20a;
	color: #f5a20a;
}
.card .nav-tabs-light.tabs-success .tab-item-active,
.card .nav-tabs-light.tabs-success .tab-item:hover {
	border-bottom: 1px solid #adca40;
	color: #adca40;
}
.card .nav-tabs-light.tabs-danger .tab-item-active,
.card .nav-tabs-light.tabs-danger .tab-item:hover {
	border-bottom: 1px solid #d61a1a;
	color: #d61a1a;
}
.card .nav-tabs-button {
	background: none;
	color: #707070;
    border: none;
    display: flex;
    justify-content: center;
}
.card .nav-tabs-button.button-left {
	justify-content: flex-start;
	padding-left: 15px;
}
.card .nav-tabs-button.button-right {
	justify-content: flex-end;
	padding-right: 15px;
}
.card .nav-tabs-button .tab-item {
	margin: 2px;
	padding: 0;
	padding-bottom: 10px;
}
.card .nav-tabs-button .tab-item .tab-button-v {
	display: flex;
	justify-content: center;
	align-items: center;
}
.card .nav-tabs-button .tab-item .tab-button-v {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.card .nav-tabs-button .tab-item .tab-button-v i {
	padding-bottom: 10px;
}
.card .nav-tabs-button .tab-item-active,
.card .nav-tabs-button .tab-item:hover {
	opacity: .5;
	color: #ffffff;
}


.card .nav-tabs .tab-item i,
.card .nav-tabs-flex .tab-item i {
	margin-right: 10px;
	font-size: 16px;
}
.card .card-body .tab-content {
	opacity: 0;
	display: none;
	transition: opacity .2s linear;
} 
.card .card-body .tab-content.tab-no-margin {
	margin: -15px;
} 
.card .card-body .tab-content-active {
	opacity: 1;
	display: block;
	transition: opacity .2s linear;
} 


/***********************************************************************************************
>>	5.0		Forms
************************************************************************************************/

/*******************
Form Basics
*******************/
.form-group {
	margin-bottom: 15px;
	align-items: center;
}
.form-label {
	padding-top: 2px;
}
.form-control,
.form-control-success {
	width: 100%;
	min-height: 36px;
	padding: 5px 15px;
	border: .5px solid #e6e6e6;
	border-radius: 3px;
	box-shadow: none;
	font-size: 14px;
	font-family: inherit;
}
.form-control:focus {
    background: rgba(253, 253, 253, 1);
    /* border-bottom: 1px solid rgb(102, 102, 102); */
    outline: none;
    border: .5px solid #cedbe6;
}
.form-control[readonly],
.form-control[disabled] {
	background: rgb(228, 228, 228);
	border: none;
}
.form-control-textonly[readonly],
.form-control-textonly[disabled] {
	background: none;
	border: none;
}
.form-control-lg {
	min-height: 46px;
	font-size: 18px;
}
.form-control-sm {
	min-height: 26px;
	font-size: 12px;
}
.form-control-success {
	background: #adca40;
	max-height: 40px;
}
.form-control-success option {
	background: #ffffff;
	padding: 2px 4px;
	max-height: 200px;
	transition: max-height 2s ease;
}
.form-control-success:focus {
	outline: none;
}
.form-input-group {
	position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.form-input-group-prepend, 
.form-input-group-append,
.form-input-group-between {
	display: flex;
}
.form-input-group-prepend {
	margin-right: -1px;
}
.form-input-group-append {
	margin-left: -1px;
}
.form-input-group .form-input-group-text {
    display: flex;
    align-items: center;
    padding: 5px 15px;;
    color: #74788d;
    text-align: center;
    white-space: nowrap;
    background-color: #f7f8fa;
	border: 1px solid #e2e5ec;
	border-radius: 3px;
}
.form-input-group .form-input-group-prepend .form-input-group-text,
.form-input-group .form-input-group-prepend .form-input-group-text .btn {
	border-radius: 3px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.form-input-group .form-input-group-append .form-input-group-text,
.form-input-group .form-input-group-append .form-input-group-text .btn {
	border-radius: 3px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.form-input-group .form-input-group-between .form-input-group-text {
	border-radius: 0;
}
.form-input-group .form-control {
    flex: 1 1 auto;
	width: 1%;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.form-input-group .form-control-right {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.form-input-group .form-control-left {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.form-input-group .form-control-center {
	border-radius: 0;
}
.form-input-group .form-input-group-text .checkbox,
.form-input-group .form-input-group-text .radio {
	margin-bottom: 20px !important;
	padding-left: 20px !important;
}
.form-input-group .form-input-group-text .btn {
	margin: -6px -16px;
}
.form-input-group .form-input-group-text .dropdown-inline .ul-dropdown {
    margin-left: -15px;
    margin-top: 5px;
    margin-right: 0;
}
.form-input-group .form-input-group-text .dropdown-position-right .ul-dropdown {
	margin-right: -20px;
	margin-top: 5px;
	margin-left: 0;
}
.form-submit {
	text-align: right;
	padding-top: 10px;
}
.form-datepicker {
	width: 90%;
}
label {
	display: inline-block;
	margin-bottom: 5px;	
}

/*******************
Dropdown Group
*******************/
.btn-group {
	display: flex;
}
.btn-group button:first-child {
    height: 40px;
    margin-right: 0;
    border-radius: 3px 0 0 3px;
    border-right: 1px solid white;
}
.btn-group button:last-child {
    height: 40px;
    margin-left: 0;
    border-radius: 0 3px 3px 0;
}

/*******************
Custom Dropdown
*******************/
.dropdown-inline {
	display: inline-block;
}
.btn-dropdown,
.btn-group-dropdown {
	text-align: left;
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.btn-dropdown .icon-dropdown,
.btn-group-dropdown .icon-dropdown {
	text-align: center;
	margin-left: 5px;
	float: right;
}
.btn-dropdown .icon-dropdown-single,
.btn-group-dropdown .icon-dropdown-single {
	text-align: center;
}
.ul-dropdown {
	margin-left: -9999px;
	position: absolute;
	max-height: 0;
	color: transparent;
}
.ul-dropdown.active {
	list-style-type: none;
	border: .5px solid #e6e6e6;
    border-radius: 3px;
    margin: 0;
    position: absolute;
    background: #ffffff;
	z-index: 99;
	color: #444444;
	transition: max-height .2s ease-out 0s, color .2s ease .1s;
    max-height: 800px;
    overflow: auto;
}
.ul-dropdown.active li:hover {
	background: #e6e6e6;
}
.ul-dropdown.active li {
    padding: 8px 15px;
    margin: 2px 0;
}
.ul-dropdown.active li:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding-top: 16px;
}
.ul-dropdown.active li:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	padding-bottom: 16px;
}
.ul-dropdown.ul-dropdown-nohover.active li:hover {
	background: none;
}
.ul-dropdown.active .dropdown-header {
    padding: 8px 15px;
	background: var(--lightgrey);
}
.ul-dropdown.active li i {
	margin-right: 5px;
}
.ul-dropdown.active li.dropdown-divider {
	height: 0;
	margin: .5rem 0;
	padding: 0;
	overflow: hidden;
	border-top: 1px solid #e9ecef; 
}
.ul-dropdown.active li.dropdown-divider:hover {
	background: #ffffff;
}
.ul-dropdown.dropdown-right {
	margin-right: -9999px;
}
.ul-dropdown.dropdown-right.active {
	right: 10px;
}
/* Select */
.custom-dropdown {
	position: relative;
}
.custom-dropdown .btn-dropdown {
	width: 100%;
	justify-content: space-between;
}
.custom-dropdown .dropdown-select {
	width: 100%;
}

/*******************
Dropdown Right
*******************/
.card-action-dropdown {
	display: block;
}
.card-action .ul-dropdown.active,
.card-action-dropdown .ul-dropdown.active,
.dropdown-position-right .ul-dropdown.active {
	right: 20px;
}

/*******************
Checkbox
*******************/
.checkbox {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	text-align: left;
	cursor: pointer;
	transition: all .3s ease;
}
.checkbox.checkbox-disabled {
	opacity: .8;
	cursor: not-allowed;
}
.checkbox>input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.checkbox>span {
	border-radius: 3px;
	background: none;
	position: absolute;
	top: 1px;
	left: 0;
	height: 18px;
	width: 18px;
}
.checkbox>span:after {
	content: '';
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	margin-left: -3px;
	margin-top: -8px;
	width: 5px;
	height: 10px;
	border-width: 0 2px 2px 0/*rtl:ignore*/
	!important;
	-webkit-transform: rotate(45deg)/*rtl:ignore*/
	;
	transform: rotate(45deg)/*rtl:ignore*/
	;
}
.checkbox>input:checked~span {
	transition: all .3s ease;
	background: none;
}
.checkbox>input:checked~span:after {
	display: block;
}
.checkbox:hover>input:not([disabled]):checked~span, .checkbox>input:checked~span {
	transition: all .3s ease;
}
.checkbox>input:disabled~span {
	opacity: .6;
	pointer-events: none;
}
.checkbox.checkbox-solid>span {
	border: 1px solid transparent;
}
.checkbox.checkbox-solid:hover>input:not([disabled])~span, .checkbox.checkbox-solid>input:focus~span {
	transition: all .3s ease;
}
.checkbox.checkbox-square>span {
	border-radius: 0;
}
.checkbox.checkbox-bold>span {
	border-width: 2px !important;
	transition: all .3s ease;
}
.form-inline .checkbox {
	margin-left: 15px;
	margin-right: 15px;
}
.checkbox.checkbox-single {
	width: 18px;
	height: 18px;
}
.checkbox.checkbox-single>span {
	top: 0;
}
th>.checkbox.checkbox-single, td>.checkbox.checkbox-single {
	right: -5px;
}
.input-group .checkbox {
	margin-bottom: 0 !important;
	padding-left: 0;
}
.checkbox-list {
	padding: 0 0;
}
.form-horizontal .form-group .checkbox-list {
	padding-top: 0;
}
.checkbox-list .checkbox {
	text-align: left;
	display: block;
}
.checkbox-list .checkbox:last-child {
	margin-bottom: 5px;
}
.checkbox-inline {
	padding: 0 0;
}
.checkbox-inline .checkbox {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 5px;
}
.checkbox-inline .checkbox:last-child {
	margin-right: 0;
}
.form-group.row .checkbox-inline {
	margin-top: .75rem;
}
.form-group.row .checkbox-list {
	margin-top: 2px;
}
.checkbox.checkbox-disabled {
	opacity: .7;
}
.checkbox>span {
	border: 1px solid #d1d7e2;
}
.checkbox>span:after {
	border: solid #bfc7d7;
}
.checkbox>input:disabled~span:after {
	border-color: #c8cfdd;
}
.checkbox>input:checked~span {
	border: 1px solid #c8cfdd;
}
.checkbox.checkbox-bold>input:checked~span {
	border: 2px solid #c8cfdd;
}
.checkbox>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-solid>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-solid>span:after {
	border: solid #99a6bf;
}
.checkbox.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-solid>input:checked~span {
	background: #dee2ea;
}
.checkbox.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-tick>span:after {
	border: solid #99a6bf;
}
.checkbox.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-tick>input:checked~span:after {
	border: solid #dee2ea;
}
.checkbox.checkbox-brand.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-brand>span {
	border: 1px solid #5d78ff;
}
.checkbox.checkbox-brand>span:after {
	border: solid #5d78ff;
}
.checkbox.checkbox-brand>input:disabled~span:after {
	border-color: #5d78ff;
}
.checkbox.checkbox-brand>input:checked~span {
	border: 1px solid #5d78ff;
}
.checkbox.checkbox-brand.checkbox-bold>input:checked~span {
	border: 2px solid #5d78ff;
}
.checkbox.checkbox-brand>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-brand.checkbox-solid>span {
	background: #5d78ff;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-brand.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-brand.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-brand.checkbox-solid>input:checked~span {
	background: #5d78ff;
}
.checkbox.checkbox-brand.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-brand.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-brand.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-brand.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-brand.checkbox-tick>input:checked~span:after {
	border: solid #5d78ff;
}
.checkbox.checkbox-metal.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-metal>span {
	border: 1px solid #d3dae6;
}
.checkbox.checkbox-metal>span:after {
	border: solid #d3dae6;
}
.checkbox.checkbox-metal>input:disabled~span:after {
	border-color: #d3dae6;
}
.checkbox.checkbox-metal>input:checked~span {
	border: 1px solid #d3dae6;
}
.checkbox.checkbox-metal.checkbox-bold>input:checked~span {
	border: 2px solid #d3dae6;
}
.checkbox.checkbox-metal>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-metal.checkbox-solid>span {
	background: #d3dae6;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-metal.checkbox-solid>span:after {
	border: solid #586272;
}
.checkbox.checkbox-metal.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-metal.checkbox-solid>input:checked~span {
	background: #d3dae6;
}
.checkbox.checkbox-metal.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-metal.checkbox-tick>span:after {
	border: solid #586272;
}
.checkbox.checkbox-metal.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-metal.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-metal.checkbox-tick>input:checked~span:after {
	border: solid #d3dae6;
}
.checkbox.checkbox-light.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-light>span {
	border: 1px solid #ffffff;
}
.checkbox.checkbox-light>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-light>input:disabled~span:after {
	border-color: #ffffff;
}
.checkbox.checkbox-light>input:checked~span {
	border: 1px solid #ffffff;
}
.checkbox.checkbox-light.checkbox-bold>input:checked~span {
	border: 2px solid #ffffff;
}
.checkbox.checkbox-light>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-light.checkbox-solid>span {
	background: #ffffff;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-light.checkbox-solid>span:after {
	border: solid #282a3c;
}
.checkbox.checkbox-light.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-light.checkbox-solid>input:checked~span {
	background: #ffffff;
}
.checkbox.checkbox-light.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-light.checkbox-tick>span:after {
	border: solid #282a3c;
}
.checkbox.checkbox-light.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-light.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-light.checkbox-tick>input:checked~span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-dark.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-dark>span {
	border: 1px solid #645ca1;
}
.checkbox.checkbox-dark>span:after {
	border: solid #645ca1;
}
.checkbox.checkbox-dark>input:disabled~span:after {
	border-color: #645ca1;
}
.checkbox.checkbox-dark>input:checked~span {
	border: 1px solid #645ca1;
}
.checkbox.checkbox-dark.checkbox-bold>input:checked~span {
	border: 2px solid #645ca1;
}
.checkbox.checkbox-dark>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-dark.checkbox-solid>span {
	background: #645ca1;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-dark.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-dark.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-dark.checkbox-solid>input:checked~span {
	background: #645ca1;
}
.checkbox.checkbox-dark.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-dark.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-dark.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-dark.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-dark.checkbox-tick>input:checked~span:after {
	border: solid #645ca1;
}
.checkbox.checkbox-accent.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-accent>span {
	border: 1px solid #00c5dc;
}
.checkbox.checkbox-accent>span:after {
	border: solid #00c5dc;
}
.checkbox.checkbox-accent>input:disabled~span:after {
	border-color: #00c5dc;
}
.checkbox.checkbox-accent>input:checked~span {
	border: 1px solid #00c5dc;
}
.checkbox.checkbox-accent.checkbox-bold>input:checked~span {
	border: 2px solid #00c5dc;
}
.checkbox.checkbox-accent>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-accent.checkbox-solid>span {
	background: #00c5dc;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-accent.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-accent.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-accent.checkbox-solid>input:checked~span {
	background: #00c5dc;
}
.checkbox.checkbox-accent.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-accent.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-accent.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-accent.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-accent.checkbox-tick>input:checked~span:after {
	border: solid #00c5dc;
}
.checkbox.checkbox-focus.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-focus>span {
	border: 1px solid #9816f4;
}
.checkbox.checkbox-focus>span:after {
	border: solid #9816f4;
}
.checkbox.checkbox-focus>input:disabled~span:after {
	border-color: #9816f4;
}
.checkbox.checkbox-focus>input:checked~span {
	border: 1px solid #9816f4;
}
.checkbox.checkbox-focus.checkbox-bold>input:checked~span {
	border: 2px solid #9816f4;
}
.checkbox.checkbox-focus>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-focus.checkbox-solid>span {
	background: #9816f4;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-focus.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-focus.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-focus.checkbox-solid>input:checked~span {
	background: #9816f4;
}
.checkbox.checkbox-focus.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-focus.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-focus.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-focus.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-focus.checkbox-tick>input:checked~span:after {
	border: solid #9816f4;
}
.checkbox.checkbox-primary.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-primary>span {
	border: 1px solid #5867dd;
}
.checkbox.checkbox-primary>span:after {
	border: solid #5867dd;
}
.checkbox.checkbox-primary>input:disabled~span:after {
	border-color: #5867dd;
}
.checkbox.checkbox-primary>input:checked~span {
	border: 1px solid #5867dd;
}
.checkbox.checkbox-primary.checkbox-bold>input:checked~span {
	border: 2px solid #5867dd;
}
.checkbox.checkbox-primary>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-primary.checkbox-solid>span {
	background: #5867dd;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-primary.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-primary.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-primary.checkbox-solid>input:checked~span {
	background: #5867dd;
}
.checkbox.checkbox-primary.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-primary.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-primary.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-primary.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-primary.checkbox-tick>input:checked~span:after {
	border: solid #5867dd;
}
.checkbox.checkbox-success.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-success>span {
	border: 1px solid #adca40;
}
.checkbox.checkbox-success>span:after {
	border: solid #adca40;
}
.checkbox.checkbox-success>input:disabled~span:after {
	border-color: #adca40;
}
.checkbox.checkbox-success>input:checked~span {
	border: 1px solid #adca40;
}
.checkbox.checkbox-success.checkbox-bold>input:checked~span {
	border: 2px solid #adca40;
}
.checkbox.checkbox-success>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-success.checkbox-solid>span {
	background: #adca40;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-success.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-success.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-success.checkbox-solid>input:checked~span {
	background: #adca40;
}
.checkbox.checkbox-success.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-success.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-success.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-success.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-success.checkbox-tick>input:checked~span:after {
	border: solid #adca40;
}
.checkbox.checkbox-info.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-info>span {
	border: 1px solid #467fad;
}
.checkbox.checkbox-info>span:after {
	border: solid #467fad;
}
.checkbox.checkbox-info>input:disabled~span:after {
	border-color: #467fad;
}
.checkbox.checkbox-info>input:checked~span {
	border: 1px solid #467fad;
}
.checkbox.checkbox-info.checkbox-bold>input:checked~span {
	border: 2px solid #467fad;
}
.checkbox.checkbox-info>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-info.checkbox-solid>span {
	background: #467fad;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-info.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-info.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-info.checkbox-solid>input:checked~span {
	background: #467fad;
}
.checkbox.checkbox-info.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-info.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-info.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-info.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-info.checkbox-tick>input:checked~span:after {
	border: solid #467fad;
}
.checkbox.checkbox-warning.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-warning>span {
	border: 1px solid #f5a20a;
}
.checkbox.checkbox-warning>span:after {
	border: solid #f5a20a;
}
.checkbox.checkbox-warning>input:disabled~span:after {
	border-color: #f5a20a;
}
.checkbox.checkbox-warning>input:checked~span {
	border: 1px solid #f5a20a;
}
.checkbox.checkbox-warning.checkbox-bold>input:checked~span {
	border: 2px solid #f5a20a;
}
.checkbox.checkbox-warning>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-warning.checkbox-solid>span {
	background: #f5a20a;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-warning.checkbox-solid>span:after {
	border: solid #111111;
}
.checkbox.checkbox-warning.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-warning.checkbox-solid>input:checked~span {
	background: #f5a20a;
}
.checkbox.checkbox-warning.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-warning.checkbox-tick>span:after {
	border: solid #111111;
}
.checkbox.checkbox-warning.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-warning.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-warning.checkbox-tick>input:checked~span:after {
	border: solid #f5a20a;
}
.checkbox.checkbox-danger.checkbox-disabled {
	opacity: .7;
}
.checkbox.checkbox-danger>span {
	border: 1px solid #d61a1a;
}
.checkbox.checkbox-danger>span:after {
	border: solid #d61a1a;
}
.checkbox.checkbox-danger>input:disabled~span:after {
	border-color: #d61a1a;
}
.checkbox.checkbox-danger>input:checked~span {
	border: 1px solid #d61a1a;
}
.checkbox.checkbox-danger.checkbox-bold>input:checked~span {
	border: 2px solid #d61a1a;
}
.checkbox.checkbox-danger>input:disabled~span {
	opacity: .6;
}
.checkbox.checkbox-danger.checkbox-solid>span {
	background: #d61a1a;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-danger.checkbox-solid>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-danger.checkbox-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-danger.checkbox-solid>input:checked~span {
	background: #d61a1a;
}
.checkbox.checkbox-danger.checkbox-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.checkbox.checkbox-danger.checkbox-tick>span:after {
	border: solid #ffffff;
}
.checkbox.checkbox-danger.checkbox-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.checkbox.checkbox-danger.checkbox-tick>input:checked~span {
	border: 1px solid transparent !important;
	background: #e4e8ee;
}
.checkbox.checkbox-danger.checkbox-tick>input:checked~span:after {
	border: solid #d61a1a;
}

/*******************
Radio
*******************/
.radio {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	text-align: left;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all .3s ease;
}
.radio.radio-disabled {
	opacity: .8;
	cursor: not-allowed;
}
.radio>input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.radio>span {
	background: none;
	position: absolute;
	top: 1px;
	left: 0;
	height: 18px;
	width: 18px;
	border-radius: 50% !important;
}
.radio>span:after {
	content: '';
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	margin-left: -6px;
	margin-top: -6px;
	width: 6px;
	height: 6px;
	border-radius: 100% !important;
}
.radio>input:checked~span {
	transition: all .3s ease;
	background: none;
}
.radio>input:checked~span:after {
	display: block;
}
.radio:hover>input:not([disabled]):checked~span, .radio>input:checked~span {
	transition: all .3s ease;
}
.radio>input:disabled~span {
	opacity: .6;
	pointer-events: none;
}
.radio.radio-solid>span {
	border: 1px solid transparent;
}
.radio.radio-solid:hover>input:not([disabled])~span, .radio.radio-solid>input:focus~span {
	transition: all .3s ease;
}
.radio.radio-square>span {
	border-radius: 0;
}
.radio.radio-bold>span {
	border-width: 2px !important;
	transition: all .3s ease;
}
.form-inline .radio {
	margin-left: 15px;
	margin-right: 15px;
}
.radio.radio-single {
	width: 18px;
	height: 18px;
}
.radio.radio-single>span {
	top: 0;
}
th>.radio.radio-single, td>.radio.radio-single {
	right: -5px;
}
.input-group .radio {
	margin-bottom: 0 !important;
	padding-left: 0;
}
.radio-list {
	padding: 0 0;
}
.form-horizontal .form-group .radio-list {
	padding-top: 0;
}
.radio-list .radio {
	display: block;
	text-align: left;
}
.radio-list .radio:last-child {
	margin-bottom: 5px;
}
.radio-inline {
	padding: 0 0;
}
.radio-inline .radio {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 5px;
}
.radio-inline .radio:last-child {
	margin-right: 0;
}
.form-group.row .radio-inline {
	margin-top: .75rem;
}
.form-group.row .radio-list {
	margin-top: 2px;
}
.radio.radio-disabled {
	opacity: .8;
}
.radio>span {
	border: 1px solid #d1d7e2;
}
.radio>span:after {
	border: solid #bfc7d7;
	background: #bfc7d7;
}
.radio>input:disabled~span:after {
	border-color: #c8cfdd;
}
.radio>input:checked~span {
	border: 1px solid #c8cfdd;
}
.radio.radio-bold>input:checked~span {
	border: 2px solid #c8cfdd;
}
.radio>input:disabled~span {
	opacity: .6;
}
.radio.radio-solid>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-solid>span:after {
	border: solid #99a6bf;
	background: #99a6bf;
}
.radio.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-solid>input:checked~span {
	background: #dee2ea;
}
.radio.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-tick>input:checked~span:after {
	border: solid #dee2ea;
	background: #dee2ea;
}
.radio.radio-brand.radio-disabled {
	opacity: .8;
}
.radio.radio-brand>span {
	border: 1px solid #5d78ff;
}
.radio.radio-brand>span:after {
	border: solid #5d78ff;
	background: #5d78ff;
}
.radio.radio-brand>input:disabled~span:after {
	border-color: #5d78ff;
}
.radio.radio-brand>input:checked~span {
	border: 1px solid #5d78ff;
}
.radio.radio-brand.radio-bold>input:checked~span {
	border: 2px solid #5d78ff;
}
.radio.radio-brand>input:disabled~span {
	opacity: .6;
}
.radio.radio-brand.radio-solid>span {
	background: #5d78ff;
	border: 1px solid transparent !important;
}
.radio.radio-brand.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-brand.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-brand.radio-solid>input:checked~span {
	background: #5d78ff;
}
.radio.radio-brand.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-brand.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-brand.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-brand.radio-tick>input:checked~span:after {
	border: solid #5d78ff;
	background: #5d78ff;
}
.radio.radio-metal.radio-disabled {
	opacity: .8;
}
.radio.radio-metal>span {
	border: 1px solid #d3dae6;
}
.radio.radio-metal>span:after {
	border: solid #d3dae6;
	background: #d3dae6;
}
.radio.radio-metal>input:disabled~span:after {
	border-color: #d3dae6;
}
.radio.radio-metal>input:checked~span {
	border: 1px solid #d3dae6;
}
.radio.radio-metal.radio-bold>input:checked~span {
	border: 2px solid #d3dae6;
}
.radio.radio-metal>input:disabled~span {
	opacity: .6;
}
.radio.radio-metal.radio-solid>span {
	background: #d3dae6;
	border: 1px solid transparent !important;
}
.radio.radio-metal.radio-solid>span:after {
	border: solid #586272;
	background: #586272;
}
.radio.radio-metal.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-metal.radio-solid>input:checked~span {
	background: #d3dae6;
}
.radio.radio-metal.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-metal.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-metal.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-metal.radio-tick>input:checked~span:after {
	border: solid #d3dae6;
	background: #d3dae6;
}
.radio.radio-light.radio-disabled {
	opacity: .8;
}
.radio.radio-light>span {
	border: 1px solid #ffffff;
}
.radio.radio-light>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-light>input:disabled~span:after {
	border-color: #ffffff;
}
.radio.radio-light>input:checked~span {
	border: 1px solid #ffffff;
}
.radio.radio-light.radio-bold>input:checked~span {
	border: 2px solid #ffffff;
}
.radio.radio-light>input:disabled~span {
	opacity: .6;
}
.radio.radio-light.radio-solid>span {
	background: #ffffff;
	border: 1px solid transparent !important;
}
.radio.radio-light.radio-solid>span:after {
	border: solid #282a3c;
	background: #282a3c;
}
.radio.radio-light.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-light.radio-solid>input:checked~span {
	background: #ffffff;
}
.radio.radio-light.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-light.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-light.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-light.radio-tick>input:checked~span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-dark.radio-disabled {
	opacity: .8;
}
.radio.radio-dark>span {
	border: 1px solid #645ca1;
}
.radio.radio-dark>span:after {
	border: solid #645ca1;
	background: #645ca1;
}
.radio.radio-dark>input:disabled~span:after {
	border-color: #645ca1;
}
.radio.radio-dark>input:checked~span {
	border: 1px solid #645ca1;
}
.radio.radio-dark.radio-bold>input:checked~span {
	border: 2px solid #645ca1;
}
.radio.radio-dark>input:disabled~span {
	opacity: .6;
}
.radio.radio-dark.radio-solid>span {
	background: #645ca1;
	border: 1px solid transparent !important;
}
.radio.radio-dark.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-dark.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-dark.radio-solid>input:checked~span {
	background: #645ca1;
}
.radio.radio-dark.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-dark.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-dark.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-dark.radio-tick>input:checked~span:after {
	border: solid #645ca1;
	background: #645ca1;
}
.radio.radio-accent.radio-disabled {
	opacity: .8;
}
.radio.radio-accent>span {
	border: 1px solid #00c5dc;
}
.radio.radio-accent>span:after {
	border: solid #00c5dc;
	background: #00c5dc;
}
.radio.radio-accent>input:disabled~span:after {
	border-color: #00c5dc;
}
.radio.radio-accent>input:checked~span {
	border: 1px solid #00c5dc;
}
.radio.radio-accent.radio-bold>input:checked~span {
	border: 2px solid #00c5dc;
}
.radio.radio-accent>input:disabled~span {
	opacity: .6;
}
.radio.radio-accent.radio-solid>span {
	background: #00c5dc;
	border: 1px solid transparent !important;
}
.radio.radio-accent.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-accent.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-accent.radio-solid>input:checked~span {
	background: #00c5dc;
}
.radio.radio-accent.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-accent.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-accent.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-accent.radio-tick>input:checked~span:after {
	border: solid #00c5dc;
	background: #00c5dc;
}
.radio.radio-focus.radio-disabled {
	opacity: .8;
}
.radio.radio-focus>span {
	border: 1px solid #9816f4;
}
.radio.radio-focus>span:after {
	border: solid #9816f4;
	background: #9816f4;
}
.radio.radio-focus>input:disabled~span:after {
	border-color: #9816f4;
}
.radio.radio-focus>input:checked~span {
	border: 1px solid #9816f4;
}
.radio.radio-focus.radio-bold>input:checked~span {
	border: 2px solid #9816f4;
}
.radio.radio-focus>input:disabled~span {
	opacity: .6;
}
.radio.radio-focus.radio-solid>span {
	background: #9816f4;
	border: 1px solid transparent !important;
}
.radio.radio-focus.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-focus.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-focus.radio-solid>input:checked~span {
	background: #9816f4;
}
.radio.radio-focus.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-focus.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-focus.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-focus.radio-tick>input:checked~span:after {
	border: solid #9816f4;
	background: #9816f4;
}
.radio.radio-primary.radio-disabled {
	opacity: .8;
}
.radio.radio-primary>span {
	border: 1px solid #5867dd;
}
.radio.radio-primary>span:after {
	border: solid #5867dd;
	background: #5867dd;
}
.radio.radio-primary>input:disabled~span:after {
	border-color: #5867dd;
}
.radio.radio-primary>input:checked~span {
	border: 1px solid #5867dd;
}
.radio.radio-primary.radio-bold>input:checked~span {
	border: 2px solid #5867dd;
}
.radio.radio-primary>input:disabled~span {
	opacity: .6;
}
.radio.radio-primary.radio-solid>span {
	background: #5867dd;
	border: 1px solid transparent !important;
}
.radio.radio-primary.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-primary.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-primary.radio-solid>input:checked~span {
	background: #5867dd;
}
.radio.radio-primary.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-primary.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-primary.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-primary.radio-tick>input:checked~span:after {
	border: solid #5867dd;
	background: #5867dd;
}
.radio.radio-success.radio-disabled {
	opacity: .8;
}
.radio.radio-success>span {
	border: 1px solid #adca40;
}
.radio.radio-success>span:after {
	border: solid #adca40;
	background: #adca40;
}
.radio.radio-success>input:disabled~span:after {
	border-color: #adca40;
}
.radio.radio-success>input:checked~span {
	border: 1px solid #adca40;
}
.radio.radio-success.radio-bold>input:checked~span {
	border: 2px solid #adca40;
}
.radio.radio-success>input:disabled~span {
	opacity: .6;
}
.radio.radio-success.radio-solid>span {
	background: #adca40;
	border: 1px solid transparent !important;
}
.radio.radio-success.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-success.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-success.radio-solid>input:checked~span {
	background: #adca40;
}
.radio.radio-success.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-success.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-success.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-success.radio-tick>input:checked~span:after {
	border: solid #adca40;
	background: #adca40;
}
.radio.radio-info.radio-disabled {
	opacity: .8;
}
.radio.radio-info>span {
	border: 1px solid #467fad;
}
.radio.radio-info>span:after {
	border: solid #467fad;
	background: #467fad;
}
.radio.radio-info>input:disabled~span:after {
	border-color: #467fad;
}
.radio.radio-info>input:checked~span {
	border: 1px solid #467fad;
}
.radio.radio-info.radio-bold>input:checked~span {
	border: 2px solid #467fad;
}
.radio.radio-info>input:disabled~span {
	opacity: .6;
}
.radio.radio-info.radio-solid>span {
	background: #467fad;
	border: 1px solid transparent !important;
}
.radio.radio-info.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-info.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-info.radio-solid>input:checked~span {
	background: #467fad;
}
.radio.radio-info.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-info.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-info.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-info.radio-tick>input:checked~span:after {
	border: solid #467fad;
	background: #467fad;
}
.radio.radio-warning.radio-disabled {
	opacity: .8;
}
.radio.radio-warning>span {
	border: 1px solid #f5a20a;
}
.radio.radio-warning>span:after {
	border: solid #f5a20a;
	background: #f5a20a;
}
.radio.radio-warning>input:disabled~span:after {
	border-color: #f5a20a;
}
.radio.radio-warning>input:checked~span {
	border: 1px solid #f5a20a;
}
.radio.radio-warning.radio-bold>input:checked~span {
	border: 2px solid #f5a20a;
}
.radio.radio-warning>input:disabled~span {
	opacity: .6;
}
.radio.radio-warning.radio-solid>span {
	background: #f5a20a;
	border: 1px solid transparent !important;
}
.radio.radio-warning.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-warning.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-warning.radio-solid>input:checked~span {
	background: #f5a20a;
}
.radio.radio-warning.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-warning.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-warning.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-warning.radio-tick>input:checked~span:after {
	border: solid #f5a20a;
	background: #f5a20a;
}
.radio.radio-danger.radio-disabled {
	opacity: .8;
}
.radio.radio-danger>span {
	border: 1px solid #d61a1a;
}
.radio.radio-danger>span:after {
	border: solid #d61a1a;
	background: #d61a1a;
}
.radio.radio-danger>input:disabled~span:after {
	border-color: #d61a1a;
}
.radio.radio-danger>input:checked~span {
	border: 1px solid #d61a1a;
}
.radio.radio-danger.radio-bold>input:checked~span {
	border: 2px solid #d61a1a;
}
.radio.radio-danger>input:disabled~span {
	opacity: .6;
}
.radio.radio-danger.radio-solid>span {
	background: #d61a1a;
	border: 1px solid transparent !important;
}
.radio.radio-danger.radio-solid>span:after {
	border: solid #ffffff;
	background: #ffffff;
}
.radio.radio-danger.radio-solid>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-danger.radio-solid>input:checked~span {
	background: #d61a1a;
}
.radio.radio-danger.radio-tick>span {
	background: #e4e8ee;
	border: 1px solid transparent !important;
}
.radio.radio-danger.radio-tick>input:focus~span {
	border: 1px solid transparent !important;
}
.radio.radio-danger.radio-tick>input:checked~span {
	background: #e4e8ee;
}
.radio.radio-danger.radio-tick>input:checked~span:after {
	border: solid #d61a1a;
	background: #d61a1a;
}


/*******************
Wizard
*******************/
.wizard {
	margin-bottom: 20px;
    background: white;
    border: none;
    box-shadow: none;
    border-radius: 3px;
}
.wizard.box-shadow {
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.wizard-body {
	padding: 15px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #27272e;
}
.wizard-footer {
	padding: 5px 15px;
	background: #f2f3f4;
	color: #ffffff;
    border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	overflow: auto;
}
.wizard .wizard-tabs {
	background: #e6e6e6;
    border: none;
	color: #444444;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
	list-style-type: none;
	font-size: 14px;
	cursor: pointer;
	margin-block-end: 0;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}
.wizard .wizard-tabs li {
	margin: 0;
}
.wizard .wizard-tabs .tab-item {
	padding: 15px;
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
}
.wizard .wizard-tabs .tab-item .tab-number {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background: #017292;
    min-height: 20px;
	min-width: 20px;
	margin-right: 5px;
	padding: 1px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
}
.wizard .wizard-tabs .tab-item .tab-text-info {
    display: inline-block;
}
.wizard .wizard-tabs .tab-item .tab-text-info .tab-text-info-small {
    display: block;
}
.wizard .wizard-tabs .tab-item:hover {
	background: white;
	color: #27272e;
}
.wizard .wizard-tabs .tab-item-active {
    color: #27272e;
    background: white;
}
.wizard .wizard-tabs .tab-item i,
.wizard .wizard-tabs-flex .tab-item i {
	margin-right: 5px;
}

.wizard .wizard-body .tab-content {
	display: none;
} 
.wizard .wizard-body .tab-content.tab-no-margin {
	margin: -15px;
} 
.wizard .wizard-body .tab-content-active {
	display: block;
} 


/***********************************************************************************************
>>	6.0 	Elements
************************************************************************************************/

/*******************
Buttons
******************/
.btn {
	padding: 9px 15px;
	margin: 2px 1px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer; 
	border: none;
	border-radius: 3px;
	transition: opacity .1s ease-in;
	font-family: inherit;
} 
.btn:hover {
	opacity: .6;
	transition: opacity .1s ease-out;
}
.btn:focus {
	outline: 0;
	opacity: .6;
}
.btn-no-hover:hover,
.btn-no-hover:focus {
	opacity: 1;
	transition: none;
}
.btn-xs {
	padding: 5px 5px;
	font-size: 12px; 
	min-height: 26px;
	min-width: 26px;
} 
.btn-sm {
	padding: 7px 12px;
	font-size: 12px; 
	min-height: 30px;
	min-width: 30px;
}
.btn-lg {
	padding: 12px 20px;
	font-size: 16px; 
	min-height: 36px;
	min-width: 36px;
}
.btn-xl {
	padding: 18px 24px;
	font-size: 18px; 
	min-height: 44px;
	min-width: 44px;
}
.btn-w-xs {
	padding: 9px 5px;
} 
.btn-w-sm {
	padding: 9px 15px;
}
.btn-w-lg {
	padding: 9px 25px;
}
.btn-w-xl {
	padding: 9px 35px;
}
.btn.btn-round {
	border-radius: 20px;
}
.btn-circle {
	border-radius: 100%;
	width: 40px;
	height: 40px;
	padding: 10px; 
}  
.btn-circle.btn-xs {
	width: 22px;
	height: 22px;
	padding: 4px 4px;
	font-size: 12px; 
}  
.btn-circle.btn-sm {
	width: 35px;
	height: 35px;
	padding: 8px 10px;
	font-size: 14px; 
}  
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 14px 15px;
	font-size: 18px; 
}  
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 14px 15px;
	font-size: 24px; 
}
.btn-block {
	width: 100%;
}
button[disabled],
button[disabled]:hover {
	background: #e6e6e6 !important;
	cursor: auto;
	color: #707070;
	opacity: .8;
	border-color: #e6e6e6 !important;
}
.btn-white {
	background: #ffffff;
	border: .5px solid rgb(231, 231, 231);
	color: #141414;
}
.btn-white:hover {
	background: rgb(225, 225, 225);
	transition: background-color .1s ease-out;
}
.btn-default {
	background: #e6e6e6;
	color: #141414;
}
.btn-yellow {
	background: #ffed00;
	color: #141414;
}
.btn-success {
	background: #adca40;
	color: #ffffff;
}
.btn-warning {
	background: #f5a20a;
	color: #ffffff;
}
.btn-danger {
	background: #d61a1a;
	color: #ffffff;
}
.btn-lightblue {
	background: #9bc5cf;
	color: #141414;
}
.btn-info {
	background: #467fad;
	color: #ffffff;
}
.btn-lime {
	background: #adca40;
	color: #ffffff;
}
.btn-green {
	background: #038803;
	color: #ffffff;
}
.btn-grey {
	background: #707070;
	color: #ffffff;
}
.btn-dark {
	background: #27272e;
	color: #ffffff;
}
.btn-outline {
	background: #ffffff;
	color: #27272e;
}
.btn-outline.btn-white {
	border: 1px solid #ffffff;
	color: #707070;
}
.btn-outline.btn-default {
	border: 1px solid #e6e6e6;
	color: #707070;
}
.btn-outline.btn-yellow {
	border: 1px solid #ffed00;
	color: #ffed00;
}
.btn-outline.btn-success {
	border: 1px solid #adca40;
	color: #adca40;
}
.btn-outline.btn-warning {
	border: 1px solid #f5a20a;
	color: #f5a20a;
}
.btn-outline.btn-danger {
	border: 1px solid #d61a1a;
	color: #d61a1a;
}
.btn-outline.btn-lightblue {
	border: 1px solid #9bc5cf;
	color: #9bc5cf;
}
.btn-outline.btn-info {
	border: 1px solid #467fad;
	color: #467fad;
}
.btn-outline.btn-lime {
	border: 1px solid #adca40;
	color: #adca40;
}
.btn-outline.btn-green {
	border: 1px solid #038803;
	color: #038803;
}
.btn-outline.btn-grey {
	border: 1px solid #707070;
	color: #707070;
}
.btn-outline.btn-dark {
	border: 1px solid #27272e;
	color: #27272e;
}
.btn-card {
	background: #ffffff;
	color: #27272e;
}
.btn-card:hover {
	opacity: 1;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.btn-card:focus,
.btn-card.active {
	opacity: 1;
	box-shadow: 0 0 12px 2px rgb(214, 214, 214);
}

/*******************
Switcher
*******************/
input[type="checkbox"].switcher-checkbox {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 50px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    transition: background-color .2s ease 0s;
}
input[type="checkbox"].switcher-checkbox::after {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    height: 30px;
    width: 30px;
	margin-left: 0;
	left: 0;
    top: 0;
	box-shadow: 0 0 1px 1px #707070;
	transition: margin-left .1s ease;
}
input[type="checkbox"].switcher-checkbox:checked::after {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin-left: 20px;
    top: 0;
    box-shadow: 0 0 1px 1px #707070;
}
input[type="checkbox"].switcher-checkbox:disabled {
	opacity: .5; 
}
input[type="checkbox"].switcher-checkbox:checked {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    transition: background-color .2s ease 0s;
}
input[type="checkbox"].switcher-checkbox.switcher-info:checked {
    background-color: #467fad;
    border-color: #467fad;
}
input[type="checkbox"].switcher-checkbox.switcher-success:checked {
    background-color: #adca40;
    border-color: #adca40;
}
input[type="checkbox"].switcher-checkbox.switcher-warning:checked {
    background-color: #f5a20a;
    border-color: #f5a20a;
}
input[type="checkbox"].switcher-checkbox.switcher-danger:checked {
    background-color: #d61a1a;
    border-color: #d61a1a;
}
input[type="checkbox"].switcher-checkbox.switcher-dark:checked {
    background-color: #27272e;
    border-color: #27272e;
}

/*******************
Note
*******************/
.note {
    position: relative;
	margin-bottom: 20px;
	background-color: #e6e6e6;
	color: rgb(59, 59, 59);
    border: none;
    box-shadow: none;
	border-radius: 3px;
	padding: 15px;
	font-size: 14px;
}
.note .note-content {
	margin-left: 85px;
}
.note .note-content-right {
	margin-right: 85px;
	text-align: right;
}
.note .close-note {
    color: #444444;
    float: right;
    position: absolute;
    top: 10px;
	right: 10px;
	cursor: pointer;
}
.note-with-icon .note-icon,
.note-with-icon .note-icon-right {
	position: absolute;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	top: 0;
	bottom: 0;
	width: 80px;
	font-size: 30px;
}
.note-with-icon .note-icon i,
.note-with-icon .note-icon-right i {
	left: 0;
	right: 0;
	margin: auto;
}
.note-with-icon .note-icon {
	left: 0;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.note-with-icon .note-icon-right {
	left: auto;
	right: 0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.note-default {
	background: #e6e6e6;
}
.note-default .note-icon,
.note-default .note-icon-right {
	background: #707070;
}
.note-dark,
.note-dark .close-note,
.note-dark .note-content * {
	background: #444444;
	color: #e6e6e6;
}
.note-dark .note-icon,
.note-dark .note-icon-right {
	background: #27272e;
}
.note-warning {
	background: #f5a20a
}
.note-warning .note-icon,
.note-warning .note-icon-right {
	background: rgb(231, 131, 0);
}
.note-info,
.note-info .note-content * {
	background: #467fad;
	color: white;
}
.note-info .note-icon,
.note-info .note-icon-right {
	background: rgb(53, 81, 104);
}
.note-success,
.note-success .note-content * {
	background: #adca40;
	color: white;
}
.note-success .note-icon,
.note-success .note-icon-right {
	background: rgb(35, 141, 35);
}
.note-danger,
.note-danger .note-content * {
	background: #d61a1a;
	color: white;
}
.note-danger .note-icon,
.note-danger .note-icon-right {
	background: rgb(128, 29, 29);
}
.note-light,
.note-light .note-content * {
	background: white;
	border: 1px solid #707070;
	color: #27272e;
}
.note-light .note-icon,
.note-light .note-icon-right {
	background: #e6e6e6;
	color: #27272e;
}

/*******************
Notification
*******************/

.notification {
    padding: 15px;
    padding-right: 35px;
    background: white;
    position: fixed;
    top: 80px;
    right: 20px;
    border-radius: 5px;
	animation: zoomIn .5s cubic-bezier(.165, .84, .44, 1) forwards;
	box-shadow: 0 0 8px 1px rgb(199, 199, 199);
	z-index: 999;
}
.notification .close-notification {
    color: var(--darkgrey);
    float: right;
    position: absolute;
    top: 10px;
	right: 10px;
	cursor: pointer;
}
@keyframes zoomIn {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
}
@media (max-width: 769px) {
	.notification {
		top: 60px;
		right: 0;
	}
}

/*******************
Label
*******************/
.label {
	display: inline-block;
	margin: 0 2px 5px 0;
	padding: 4px 8px;
	font-size: 12px;
	line-height: 1;
	border: none;
	border-radius: 3px;
	background: #e6e6e6;
} 
.label-round {
	border-radius: 50px;
}
.label-xs {
	padding: 3px 5px;
	font-size: 11px;
}
.label:first-child {
	margin-left: 0;
}
.label:last-child {
	margin-right: 0;
}
.label-white {
	background: #ffffff;
	border: .5px solid rgb(231, 231, 231);
	color: #141414;
}
.label-default {
	background: #e6e6e6;
	color: #141414;
}
.label-yellow {
	background: #ffed00;
	color: #141414;
}
.label-success {
	background: #adca40;
	color: #ffffff;
}
.label-warning {
	background: #f5a20a;
	color: #ffffff;
}
.label-danger {
	background: #d61a1a;
	color: #ffffff;
}
.label-lightblue {
	background: #9bc5cf;
	color: #141414;
}
.label-info {
	background: #467fad;
	color: #ffffff;
}
.label-lime {
	background: #adca40;
	color: #ffffff;
}
.label-green {
	background: #038803;
	color: #ffffff;
}
.label-grey {
	background: #707070;
	color: #ffffff;
}
.label-dark {
	background: #27272e;
	color: #ffffff;
}

/*******************
Ribbon
*******************/
.ribbon-box {
	overflow: visible;
	margin-bottom: 20px;
	padding: 15px;
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 3px;
}
.ribbon,
.ribbon-shape,
.ribbon-round {
    background: #444444;
    color: #ffffff;
    margin-left: -15px;
    margin-bottom: 15px;
    padding: 5px;
	padding-right: 15px;
	float: left;
}
.ribbon.float-right,
.ribbon-shape.float-right,
.ribbon-round.float-right {
	margin-right: -15px;
	padding-right: 5px;
	padding-left: 15px;
}
.ribbon-shape {
	clip-path: polygon(100% 0, 85% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
	padding-right: 20px;
}
.ribbon-shape.float-right {
	clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 15% 50%, 0 0);
    padding-left: 20px;
}
.ribbon-round {
	border-radius: 0 5px 5px 0;
}
.ribbon-round.float-right {
	border-radius: 5px 0 0 5px;
}
.ribbon-box .ribbon-context {
	clear: both;
}
.ribbon-info {
	background: #467fad;
}
.ribbon-warning {
	background: #f5a20a;
}
.ribbon-danger {
	background: #d61a1a;
}
.ribbon-success {
	background: #adca40;
}
.ribbon-light {
	background: #e6e6e6;
	color: #27272e;
}
.ribbon-dark {
	background: #27272e;
}

/*******************
Spinner
*******************/
.spinner {    
	border: 4px solid #eee;
    font-size: 40px;
    width: 2em;
    height: 2em;
    border-radius: 1em;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
    left: 0;
    right: 0;
    margin: 40px auto;
	border-top-color: #467fad;
}

@-webkit-keyframes spin {
	to {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes spin {
	to {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	to {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*******************
List
*******************/
.list-box {
	position: relative;
}
.list-badge::before {
	position: absolute;
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
	left: 3px;
	background: #e6e6e6;
}
.list-item:first-child {
    padding-top: 0;
    margin-top: 0;
}
.list-item {
    position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
	align-items: center;
	padding: 8px 0;
}
.list-item .list-item-text {
    width: 100%;
    display: inline-block;
    text-align: left;
	padding: 0 5px 0 0;
	color: #444444;
}
.list-item .list-item-time {
    min-width: 80px;
    text-align: right;
    display: inline-block;
	padding: 0;
	font-size: 12px;
	color: #707070;
}
.list-item .list-item-icon {
    display: inline-block;
    min-width: 50px;
    padding: 0 15px 0 10px;
    line-height: 0;
    text-align: center;
}
.list-item .list-item-icon i {
    font-size: 18px;
	color: #707070;
}
.list-item .list-item-badge {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    width: 20px;
}
.list-item .list-item-badge::before {
    position: absolute;
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    left: 0;
	border-radius: 100%;
	background: #707070;
}
.list-item .list-item-badge-line {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
	width: 4px;
	height: 20px;
	margin-right: 10px;
}
.list-box.list-hover .list-item:hover .list-item-icon,
.list-box.list-hover .list-item:hover .list-item-text,
.list-box.list-hover .list-item:hover .list-item-time {
	color: #dddddd;
}
.list-box.list-hover .list-item:hover .list-item-badge::before {
	background: #467fad;
}
.list-box.list-nowrap .list-item .list-item-text {
	white-space: nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
}
.list-box.list-nowrap .list-item:hover .list-item-text {
	color: #cfcfcf;
	white-space: unset;
}


/*******************
Icons
*******************/
.icons-list i {
    font-size: 20px;
    color: #444444;
    margin-right: 10px;
    width: 50px;
    height: 50px;
}
.icons-list div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/***********************************************************************************************
>>	7.0 	Table
************************************************************************************************/

/*******************
Basic table
*******************/
.table {
	width: 100%;
	border-collapse: collapse;
	/*display: inline-block;*/
	overflow: auto;
}
.table thead th, .table>thead>tr>th {
    color: #242a30;
    font-weight: 600;
	border-bottom: 1px solid #b6c2c9;
	text-align: left;
}
.table th, 
.table td {
    border-color: #e2e7eb;
    padding: 10px 15px;
}
.table td {
	border-top: .5px solid rgb(240, 240, 240);
	color: #707070;
}
.table-hover tbody tr:hover {
	background: rgb(224, 224, 224);
}
.td-element {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	text-align: right;
}
.td-element button,
.td-element select,
.td-element input,
.td-element textarea {
	width: 100%;
	margin-left: 5px;
}
.table-border th,
.table-border td {
	border: .5px solid #e6e6e6;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}
.table-grey td {
	background: rgb(247, 247, 247);
}
.tr-default td {
	background: rgb(230, 230, 230);
	border-color: rgb(230, 230, 230);
	color: #707070;
}
.tr-lightblue td {
	background: rgb(195, 221, 230);
	border-color: rgb(195, 221, 230);
	color: rgb(49, 49, 122);
}
.tr-lightgreen td {
	background: rgb(184, 230, 184);
	border-color: rgb(184, 230, 184);
	color: rgb(49, 107, 49);
}
.tr-lightorange td {
	background: rgb(236, 212, 167);
	border-color: rgb(236, 212, 167);
	color: rgb(112, 87, 39);
}
.tr-lightred td {
	background: rgb(255, 164, 164);
	border-color: rgb(255, 164, 164);
	color: rgb(117, 38, 38);
}
.th-5 {
	width: 5%;
}
.th-10 {
	width: 10%;
}
.th-20 {
	width: 20%;
}
.th-30 {
	width: 30%;
}
.th-40 {
	width: 40%;
}
.th-50 {
	width: 50%;
}
.th-60 {
	width: 60%;
}
.th-70 {
	width: 70%;
}
.th-80 {
	width: 80%;
}
.th-90 {
	width: 90%;
}


/***********************************************************************************************
>>	8.0 	Popups
************************************************************************************************/

/*******************
Popover + Tooltip
*******************/
.popover,
.tooltip {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: none;
	max-width: 200px;
	/*min-width: 100px;*/
	outline: none;
	position: absolute;
	z-index: 9999;
	top: 0;
	transform: scale(0);
}
.popover.active,
.tooltip.active {
	display: block;
	transform: scale(1);
	transition: transform .2s ease;
}
.popover-round,
.tooltip-round,
.popover-round .popover-body,
.tooltip-round .tooltip-body {
	border-radius: 50px;
}
.popover-rotate {
	transform: rotate(180deg);
}
.popover-rotate.active {
	transform: rotate(360deg);
	transition: transform .2 ease;
}
.tooltip-rotate-y,
.popover-rotate-y {
	transform: rotateY(90deg);
}
.tooltip-rotate-y.active,
.popover-rotate-y.active {
	transform: rotateY(0);
	transition: transform 1 ease;
}
.popover-round .popover-body,
.tooltip-round .tooltip-body {
	padding: 20px;
}
.popover-handler,
.tooltip-handler {
	cursor: pointer;
	border-bottom: 1px dotted #aaa;
	font-weight: 600;
}
.popover-header,
.tooltip-header {
	background: #e6e6e6;
	text-align: center;
	padding: 10px 15px;
}
.popover-body,
.tooltip-body {
	font-size: .85em;
	line-height: 16px;
	padding: 15px;
	text-align: center;
}
.tooltip-body {
	padding: 5px;
}
.popover-tip,
.tooltip-tip {
	background-color: transparent;
	display: inline-block;
	height: 20px;
	pointer-events: none;
	overflow: hidden;
	position: absolute;
	width: 20px;
}
.popover-tip:before,
.tooltip-tip:before {
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	-webkit-transform-origin: top left;
	transform-origin: top left;
	content: '';
	height: 8px;
	position: absolute;
	width: 8px;
}
.popover, .popover-tip:before,
.tooltip, .tooltip-tip:before {
	-moz-box-shadow: 1px 1px 2px 0 rgba(170, 170, 170, .75);
	-webkit-box-shadow: 1px 1px 2px 0 rgba(170, 170, 170, .75);
	box-shadow: 1px 1px 2px 0 rgba(170, 170, 170, .75);
	background-color: white;
	border: 1px solid #aaa;
}
.popover-top .popover-tip,
.tooltip-top .tooltip-tip {
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	top: 100%;
}
.popover-top .popover-tip:before,
.tooltip-top .tooltip-tip:before {
	-moz-transform: translate(10px, -6.65685px) rotate(45deg);
	-ms-transform: translate(10px, -6.65685px) rotate(45deg);
	-webkit-transform: translate(10px, -6.65685px) rotate(45deg);
	transform: translate(10px, -6.65685px) rotate(45deg);
}
.popover-bottom .popover-tip,
.tooltip-bottom .tooltip-tip {
	-moz-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	-webkit-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	left: 50%;
	top: 0;
}
.popover-bottom .popover-tip:before,
.tooltip-bottom .tooltip-tip:before {
	-moz-transform: translate(10px, 13.34315px) rotate(45deg);
	-ms-transform: translate(10px, 13.34315px) rotate(45deg);
	-webkit-transform: translate(10px, 13.34315px) rotate(45deg);
	transform: translate(10px, 13.34315px) rotate(45deg);
}
.popover-right .popover-tip,
.tooltip-right .tooltip-tip {
	-moz-transform: translate(-20px, -50%);
	-ms-transform: translate(-20px, -50%);
	-webkit-transform: translate(-20px, -50%);
	transform: translate(-20px, -50%);
	top: 50%;
	left: 0;
}
.popover-right .popover-tip:before,
.tooltip-right .tooltip-tip:before {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-transform: translate(20px, 4.34315px) rotate(45deg);
	-ms-transform: translate(20px, 4.34315px) rotate(45deg);
	-webkit-transform: translate(20px, 4.34315px) rotate(45deg);
	transform: translate(20px, 4.34315px) rotate(45deg);
}
.popover-left .popover-tip,
.tooltip-left .tooltip-tip {
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	top: 50%;
	left: 100%;
}
.popover-left .popover-tip:before,
.tooltip-left .tooltip-tip:before {
	-moz-transform: translate(0, 4.34315px) rotate(45deg);
	-ms-transform: translate(0, 4.34315px) rotate(45deg);
	-webkit-transform: translate(0, 4.34315px) rotate(45deg);
	transform: translate(0, 4.34315px) rotate(45deg);
}
/*colors*/
.tooltip.tooltip-dark,
.tooltip.tooltip-dark .tooltip-tip:before,
.tooltip.tooltip-dark .tooltip-header,
.tooltip.tooltip-dark .tooltip-body,
.popover.popover-dark,
.popover.popover-dark .popover-tip:before,
.popover.popover-dark .popover-header,
.popover.popover-dark .popover-body {
	background: #27272e;
	color: white;
    border: 1px solid #27272e;
}
.tooltip.tooltip-dark .tooltip-header,
.popover.popover-dark .popover-header {
    border-bottom: 1px solid #707070;
}
.tooltip.tooltip-info,
.tooltip.tooltip-info .tooltip-tip:before,
.tooltip.tooltip-info .tooltip-header,
.tooltip.tooltip-info .tooltip-body,
.popover.popover-info,
.popover.popover-info .popover-tip:before,
.popover.popover-info .popover-header,
.popover.popover-info .popover-body {
	background: #467fad;
	color: white;
    border: 1px solid #467fad;
}
.tooltip.tooltip-info .tooltip-header,
.popover.popover-info .popover-header {
    border-bottom: 1px solid #707070;
}
.tooltip.tooltip-success,
.tooltip.tooltip-success .tooltip-tip:before,
.tooltip.tooltip-success .tooltip-header,
.tooltip.tooltip-success .tooltip-body,
.popover.popover-success,
.popover.popover-success .popover-tip:before,
.popover.popover-success .popover-header,
.popover.popover-success .popover-body {
	background: #adca40;
	color: white;
    border: 1px solid #adca40;
}
.tooltip.tooltip-success .tooltip-header,
.popover.popover-success .popover-header {
    border-bottom: 1px solid #707070;
}
.tooltip.tooltip-warning,
.tooltip.tooltip-warning .tooltip-tip:before,
.tooltip.tooltip-warning .tooltip-header,
.tooltip.tooltip-warning .tooltip-body,
.popover.popover-warning,
.popover.popover-warning .popover-tip:before,
.popover.popover-warning .popover-header,
.popover.popover-warning .popover-body {
	background: #f5a20a;
	color: white;
    border: 1px solid #f5a20a;
}
.tooltip.tooltip-warning .tooltip-header,
.popover.popover-warning .popover-header {
    border-bottom: 1px solid #707070;
}
.tooltip.tooltip-danger,
.tooltip.tooltip-danger .tooltip-tip:before,
.tooltip.tooltip-danger .tooltip-header,
.tooltip.tooltip-danger .tooltip-body,
.popover.popover-danger,
.popover.popover-danger .popover-tip:before,
.popover.popover-danger .popover-header,
.popover.popover-danger .popover-body {
	background: #d61a1a;
	color: white;
    border: 1px solid #d61a1a;
}
.tooltip.tooltip-danger .tooltip-header,
.popover.popover-danger .popover-header {
    border-bottom: 1px solid #707070;
}
.js-tooltip,
.js-popover {
    cursor: pointer;
}


/*******************
Modal
*******************/
.modal {
	display: none;
    position: fixed;
	margin: auto;
	height: auto;
	max-height: 70vh;
	overflow: auto;
    top: 15vh;
    left: 0;
    right: 0;
	background: #ffffff;
	z-index: 9994;
	border-radius: 6px;
	transform: scale(0);
	animation: zoomIn .5s cubic-bezier(.165, .84, .44, 1) forwards;
    box-shadow: 0 0 25px 2px #444444a1;
}
.modal-header {
	background: #707070;
	color: #ffffff;
	padding: 15px 15px;
	border-radius: 5px 5px 0 0;
	border-bottom: 1px solid #707070;
}
.modal-body,
.modal-action {
	padding: 15px;
	margin-bottom: -10px;
}
.modal-notify .modal-body {
	padding: 25px;
}
.open_modal {
	cursor: pointer;
}
.close_modal {
	float: right;
	cursor: pointer;
}
.modal-small .modal-action,
.modal-medium .modal-action,
.modal-large .modal-action {
	margin-top: 20px;
	float: right;
	border-top: .5px solid #e6e6e6;
    width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
}
.modal-notify {
	width: 400px;
	min-height: 280px;
}
.modal-notify .modal-body {
	text-align: center;
}
.modal-notify .modal-body .modal-icon {
	font-size: 82px;
	margin-bottom: 15px;
}
.modal-notify .modal-body .modal-action {
    margin-top: 15px;
    display: inline-block;
}
.modal-notify .modal-body .modal-action .close_modal {
    float: unset;
}
.modal-body, .modal-action {
	margin-bottom: unset !important;
}
.modal-small {
	width: 400px;
	min-height: 200px;
}
.modal-medium {
	width: 600px;
}
.modal-large {
	top: 10vh;
}
.modal-left {
    left: 0;
    right: auto;
    top: 0;
	bottom: 0;
    border-radius: unset;
	min-width: 300px;
	transform: scale(1);
	animation: leftRight .5s cubic-bezier(.165, .84, .44, 1) forwards;
}
.modal-right {
    left: auto;
    right: 0;
    top: 0;
	bottom: 0;
    border-radius: unset;
	min-width: 300px;
	transform: scale(1);
	animation: rightLeft .2s cubic-bezier(.165, .84, .44, 1) forwards;
}
.modal-left .modal-header,
.modal-right .modal-header {
	background: #fff;
	border-radius: none;
	padding: 15px;
	border-bottom: 1px solid #e6e6e6;
	color: #444444;
}
.modal-left .modal-header .close_modal i,
.modal-right .modal-header .close_modal i {
	color: #444444;
}
.modal-left.left-small,
.modal-right.right-small {
	width: 300px;
	min-width: 300px;
}
.modal-left.left-medium,
.modal-right.right-medium {
	width: 450px;
	min-width: 450px;
}
.modal-left.left-large,
.modal-right.right-large {
	width: 600px;
	min-width: 600px;
}
.modal-top {
    top: 0;
    min-height: 80px;
    border-radius: unset;
	transform: scale(1);
	animation: topDown .5s cubic-bezier(.165, .84, .44, 1) forwards;
}
.modal-bottom {
	top: unset;
	bottom: 0;
    min-height: 80px;
    border-radius: unset;
	transform: scale(1);
	animation: bottomUp .5s cubic-bezier(.165, .84, .44, 1) forwards;
}
.modal-top.top-small,
.modal-bottom.bottom-small {
	min-height: 120px;
}
.modal-top.top-medium,
.modal-bottom.bottom-medium {
	min-height: 220px;
}
.modal-top.top-large,
.modal-bottom.bottom-large {
	min-height: 320px;
}
.modal-top .modal-icon-area,
.modal-bottom .modal-icon-area {
    padding: 15px 20px;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
    vertical-align: middle;
    min-height: 80px;
}
.modal-top .modal-icon-area i,
.modal-bottom .modal-icon-area i {
    font-size: 60px;
    margin-right: 20px;
    padding: 15px;
	border-radius: 50%;
	cursor: pointer;
}
.modal-top .modal-icon-area i:active,
.modal-top .modal-icon-area i:hover,
.modal-bottom .modal-icon-area i:active,
.modal-bottom .modal-icon-area i:hover {
	box-shadow: 0 0 5px 10px #e6e6e6;
}
@media (max-width: 768px) {
	.modal-right,
	.modal-left {
		width: 100vw !important;
		min-width: 100vw !important;
		max-width: 100vw !important;
	}
}
.modal-cover {
	display: none;
	position: fixed;
	z-index: 9993;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: none;
	animation: fadeIn .5s cubic-bezier(.165, .84, .44, 1) forwards;
}

/* MODAL SCROLLBAR */ 
.modal {
	scrollbar-width: thin;
	scrollbar-color: #27272e;
}
.modal::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.modal::-webkit-scrollbar-track {
  background: none; 
}
.modal::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
.modal::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

/*******************
Image Modal
*******************/
.gallery-modal {
	display: none;
    position: fixed;
    margin: auto;
	top: 0;
	bottom: 0;
    left: 0;
    right: 0;
	height: 60vh;
	width: 60vw;
	background: #ffffff;
	z-index: 9994;
	border-radius: 5px;
	transform: scale(0);
	animation: zoomIn .5s cubic-bezier(.165, .84, .44, 1) forwards;
}
.gallery-modal img {
	top: 0;
	bottom: 0;
	height: 65vh;
	width: 60vw;
	border-radius: 5px;
	box-shadow: 0 0 25px 5px rgba(0, 0, 0, .5);
}
.gallery-modal .close_gallery {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e6e6e6;
	font-size: 22px;
	cursor: pointer;
}
.gallery-modal .next-image,
.gallery-modal .prev-image {
	position: absolute;
	display: table;
	margin: auto;
	top: 0;
	bottom: 0;
    color: #e6e6e6;
	font-size: 26px;
	cursor: pointer;
	padding: 20px;
}
.gallery-modal .next-image {
    right: 0;
	left: auto;
}
.gallery-modal .prev-image {
	left: 0;
	right: auto;
}
.image-cover {
	display: none;
	position: fixed;
	z-index: 9993;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(26, 26, 26, .774);
}


/***********************************************************************************************
>>	9.0		Widgets
************************************************************************************************/

/*******************
Widgets Stats
*******************/
.widget-stats {
	position: relative;
	margin-bottom: 20px;
	background: #707070;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.widget-stats .stats-icon {
	position: absolute;
    font-size: 128px;
    top: 15px;
    right: 0;
    color: #ffffff;
    width: 128px;
    height: 50px;
    line-height: 50px;
	text-shadow: 3px 7px rgba(0,0,0,.25);
	opacity: .15;
}
.widget-stats .stats-icon i {
    position: relative;
}
.widget-stats .stats-content {
	padding: 20px 20px 0 20px;
	color: rgb(228, 228, 228);
}
.widget-stats .stats-content .stats-title {
	padding-bottom: 10px;
	font-size: 12px;
}
.widget-stats .stats-content .stats-number {
	padding-bottom: 10px;
	font-size: 22px;
}
.widget-stats .stats-progress {
	padding: 10px 20px 10px 20px;
	padding-top: 10px;
}
.widget-stats .stats-progress .bar-container {
	background: #27272e;
	height: 1px;
	border: none;
}
.widget-stats .stats-progress .bar-container .bar {
	background: #ffffff;
}
.widget-stats.with-link .stats-icon {
	font-size: 60px;
	margin-right: -30px;
}
.widget-stats .stats-link {
	display: block;
    padding: 10px 20px 10px 20px;
    background: #00000026;
	color: #ffffff;
	text-align: right;
}
.widget-stats .stats-link:hover {
	background: #00000066;
}

/*******************
Widget Pie
*******************/
.widget-pie,
.widget-pie-light {
	position: relative;
	margin-bottom: 20px;
	background: #707070;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.widget-pie-light {
	background: #ffffff;
}
.widget-pie .pie-graphic,
.widget-pie-light .pie-graphic {
	position: absolute;
    top: 0;
    right: 0;
    color: #ffffff;
    height: 40px;
    line-height: 40px;
    text-shadow: 3px 7px rgba(0,0,0,.25);
    font-size: 40px;
    transform: scale(.7);
}
.widget-pie .pie-circle {
	background: #707070;
}
.widget-pie-light .pie-circle {
	background: #ffffff;
}
.widget-pie .widget-pie-content {
	padding: 20px;
	color: #ffffff;
}
.widget-pie-light .widget-pie-content {
	padding: 20px;
	color: rgb(32, 32, 32);
}
.widget-pie .widget-pie-content .content-title,
.widget-pie-light .widget-pie-content .content-title {
	font-size: 12px;
	margin-bottom: 10px;
}
.widget-pie .widget-pie-content .content-number,
.widget-pie-light .widget-pie-content .content-number {
	font-size: 22px;
}

/*******************
Widget Icon
*******************/
.widget-icon,
.widget-icon-light {
	position: relative;
	margin-bottom: 20px;
	background: #707070;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.widget-icon-light {
	background: #ffffff;
}
.widget-icon .widget-icon-content,
.widget-icon-light .widget-icon-content {
	padding: 20px;
	color: #ffffff;
	text-align: right;
	z-index: 1;
	position: relative;
}
.widget-icon-light .widget-icon-content {
	color: #444444;
}
.widget-icon .widget-icon-content .content-title,
.widget-icon-light .widget-icon-content .content-title {
	font-size: 12px;
	margin-bottom: 10px;
}
.widget-icon .widget-icon-content .content-number,
.widget-icon-light .widget-icon-content .content-number {
	font-size: 22px;
	font-weight: 600;
}
.widget-icon i,
.widget-icon-light i {
    position: absolute;
    font-size: 50px;
    left: 20px;
	top: 20px;
	color: #ffffff;
}
.widget-icon-light i {
	color: #444444;
}
.widget-icon-small-light,
.widget-icon-small-dark {
	margin-bottom: 20px;
	background: #ffffff;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: space-between;
	vertical-align: middle;
	padding: 20px;
	color: #444444;
	font-size: 24px;
	font-weight: 600;
}
.widget-icon-small-dark {
	background: #444444;
	color: white;
}
.widget-icon-small-light i,
.widget-icon-small-dark i {
	font-size: 30px;
}

/*******************
Widget Multi Chart
*******************/
.widget-chart {
	background: #ffffff;
	padding: 25px;
	margin-bottom: 10px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
	border-radius: 5px;
}
.widget-chart .w-chart-chart {
    height: 150px;
    margin-bottom: 20px;
	padding: 0 80px;
}
.widget-chart .barchart-vertical .bars-vertical {
	position: inherit;
	width: 100%;
}
.widget-chart .barchart-vertical,
.widget-chart .barchart-vertical .bars-vertical,
.widget-chart .barchart-vertical .bars-vertical li {
	height: inherit;
}
.w-chart-chart-full {
	border-radius: 5px 5px 0 0;
}
.w-chart-chart-full .svg-box svg {
	padding-bottom: 20px;
}
.w-chart-chart-full .w-chart-full-content,
.w-chart-chart-full .w-chart-full-content-dark {
    position: absolute;
    top: 20px;
    left: 30px;
}
.w-chart-chart-full .w-chart-full-content .w-chart-full-number{
	color: white;
	font-size: 22px;
}
.w-chart-chart-full .w-chart-full-content .w-chart-full-text{
	color: white;
}
.w-chart-chart-full .w-chart-full-content-dark .w-chart-full-number{
	color: #27272e;
	font-size: 22px;
}
.w-chart-chart-full .w-chart-full-content-dark .w-chart-full-text{
	color: #27272e;
}


/***********************************************************************************************
>>	1.0 	Extras
************************************************************************************************/

/*******************
File Manager
*******************/
.card-file {
	padding: 15px;
	display: block;
	text-align: center;
}
.card-file .file-icon i,
.card-file .file-icon-image i,
.card-file .file-icon-pdf i,
.card-file .file-icon-excel i,
.card-file .file-icon-other i {
	font-size: 42px;
	padding-right: 5px;
	padding-bottom: 10px;
}
.card-file .file-open i,
.card-file .file-delete i {
    position: absolute;
    right: 20px;
	top: 10px;
	color: #707070;
	cursor: pointer;
}
.card-file .file-action i {
    position: absolute;
    left: 20px;
	top: 10px;
	color: #707070;
	cursor: pointer;
}
.card-file .file-name {
	color: #444444;
	margin: 0;
}
.card-file .file-icon-image {
	color: #f5a20a;
}
.card-file .file-icon-excel {
	color: #038803;
}
.card-file .file-icon-pdf {
	color: #d61a1a;
}
.card-file .file-icon-other {
	color: #57a2a5;
}
ul.list-filter li {
	color: #444444;
	cursor: pointer;
}
ul.list-filter li:hover {
	color: #467fad;
}
ul.list-filter li.active {
	color: #467fad;
	font-weight: 600;
}

/*******************
Page Action Bar
*******************/
.page-action {
    margin-bottom: 20px;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    width: 100%;
    align-items: stretch;
}
.page-action button {
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
	margin: 0 5px;
}
.page-action button:first-child {
	margin-left: 0;
}
.page-action button:last-child {
	margin-right: 0;
}

/*******************
Comment Box
*******************/
.box-comment {
	background: white;
	padding-bottom: 15px;
}
.box-comment .comment-name {
	font-weight: 600;
	color: #27272e;
}
.box-comment .comment-content {
	padding: 5px 0;
	color: #444444;
}
.box-comment .comment-time {
    font-size: 12px;
	color: #707070;
	float: right;
}

/*******************
Chat
*******************/
.chat {
	margin-bottom: 20px;
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 3px;
}
.chat .chat-header {
	display: flow-root;
	background: rgb(43, 44, 53);
    padding: 10px 15px;
    border: none;
    border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #ffffff;
}
.chat.chat-dark .chat-header {
	background: rgb(33, 34, 41);
}
.chat .chat-header .chat-icon {
    position: absolute;
    font-size: 24px;
}
.chat .chat-header .chat-header-content {
	padding-left: 40px;
}
.chat .chat-header .chat-header-content .chat-heading {
	margin-left: 5px;
	margin-bottom: 0;
	color: #ffffff;
}
.chat .chat-body {
	padding: 15px;
    max-height: 400px;
    overflow: auto;
}
.chat .chat-body::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.chat .chat-body::-webkit-scrollbar-track {
  background: none; 
}
.chat .chat-body::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
.chat .chat-body::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.chat.chat-dark .chat-body {
	background: #373940;
}
.chat .chat-body .chat-date {
    text-align: center;
    color: rgb(187, 187, 187);
    font-size: 12px;
    font-weight: 600;
    padding: 4px;
}
.chat .chat-body .message-in,
.chat .chat-body .message-out {
	margin: 10px 0;
}
.chat .chat-body .message-out {
    text-align: right;
}
.chat .chat-body .message-in .message-text,
.chat .chat-body .message-out .message-text {
	background: rgba(100, 128, 170, .1);
    max-width: 80%;
    border-radius: 5px;
	display: inline-block;
	padding: 5px 10px;
}
.chat .chat-body .message-out .message-text {
	background: rgb(247, 247, 247);
}
.chat.chat-dark .chat-body .message-in .message-text,
.chat.chat-dark .chat-body .message-out .message-text {
	background: #ffffff;
}
.chat .chat-body .message-in .message-text img,
.chat .chat-body .message-out .message-text img {
    padding: 10px 0;
}
/* one item */
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(1),
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(1) {
	width: 100%;
}
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(2),
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(2) ~ img,
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(2),
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(2) ~ img {
	width: 45%;
}
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(3),
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(3) ~ img,
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(3),
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(3) ~ img  {
	width: 30%;
}
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(n +4),
.chat .chat-body .message-in .message-text .message-image img:first-child:nth-last-child(n +4) ~ img,
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(n +4),
.chat .chat-body .message-out .message-text .message-image img:first-child:nth-last-child(n +4) ~ img  {
	width: 23%;
}
.chat .chat-body .message-in .message-text .message-username,
.chat .chat-body .message-out .message-text .message-username {
	font-weight: 600;
}
.chat .chat-body .message-in .message-data,
.chat .chat-body .message-out .message-data {
    padding-left: 30px;
    padding-top: 5px;
    font-size: 10px;
    color: #707070;
}
.chat .chat-body .message-out .message-data  {
	padding-right: 30px;
}
.chat .chat-body .message-in .user-logo,
.chat .chat-body .message-out .user-logo {
    position: absolute;
    font-size: 16px;
    display: contents;
}
.chat.chat-dark .chat-body .message-in .user-logo,
.chat.chat-dark .chat-body .message-out .user-logo {
	color: #ffffff;
}
.chat .chat-body .message-out .user-logo i {
	margin-left: 10px;
}
.chat .chat-body .message-in .user-logo i {
	margin-right: 10px;
}
.chat .chat-footer {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    align-items: center;
	padding: 10px 15px;
	background: rgb(223, 223, 223);
	color: #ffffff;
    border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.chat.chat-dark .chat-footer {
	background: rgb(33, 34, 41);
}
.chat .chat-footer .chat-message {
	width: 88%;
}
.chat .chat-footer .chat-message .chat-input {
    width: 100%;
    min-height: 36px;
    padding: 5px 15px;
    border: .5px solid #e6e6e6;
    border-radius: 15px;
    box-shadow: none;
	font-size: 14px;
	color: #212121;
}
.chat .chat-footer .chat-message .chat-input:focus {
	outline: none;
}
.chat .chat-footer .message-send {
    right: 20px;
	position: absolute;
	padding: 10px;
	font-size: 24px;
	cursor: pointer;
}
.chat .chat-footer .message-media {
	font-size: 24px;
	cursor: pointer;
}

/*******************
Todo List
*******************/
.todo-list {
	margin-bottom: 20px;
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 3px;
}
.todo-list .todo-header {
	display: flow-root;
	background: rgb(43, 44, 53);
    padding: 10px 15px;
    border: none;
    border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	color: #ffffff;
}
.todo-list .todo-header .list-count {
    float: right;
	font-size: 14px;
	font-weight: 600;
    border: 1px solid #707070;
    border-radius: 50%;
    padding: 5px 10px;
}
.todo-list .todo-body {
	padding: 0;
	min-height: 200px;
    max-height: 400px;
    overflow: auto;
}
.todo-list .todo-body table tr td:first-child {
	width: 5%;
}
.todo-list .todo-body::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.todo-list .todo-body::-webkit-scrollbar-track {
  background: none; 
}
.todo-list .todo-body::-webkit-scrollbar-thumb {
  background: #e6e6e6; 
  border-radius: 0 0 3px 3px;
}
.todo-list .todo-body::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.todo-list .todo-footer {
	padding: 0;
	background: rgb(223, 223, 223);
	color: #ffffff;
    border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
}
.todo-list .todo-footer .add-task {
    width: 90%;
    background: transparent;
    border: none;
	padding: 5px 15px;
	height: 40px;
}
.todo-list .todo-footer .add-task:focus {
    outline: none;
}
.todo-list .todo-footer i {
	font-size: 26px;
	cursor: pointer;
}
.todo-list .todo-body .list-action {
	text-align: right;
}
.todo-list .todo-body .list-action .list-prio {
	height: 25px;
    border: none;
}
.todo-list .todo-body .list-action .list-prio:focus {
    outline: none;
}


/*******************
Stopwatch
*******************/
.ticket-card {
	width: 400px;
	margin: 0 auto; 
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #ffffff;
	background: #ffffff;
}
.stopwatch-box {
    padding: 20px;
}
.stopwatch {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.stopwatch .stopwatch-time {
    font-size: 60px;
}
.stopwatch .stopwatch-time::after,
.stopwatch .stopwatch-divider::after {
    font-size: 12px;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    justify-content: center;
}
#sw_h::after {
    content: 'HOURS';
}
#sw_m::after {
    content: 'MINUTES';
}
#sw_s::after {
    content: 'SECONDS';
}
.stopwatch .stopwatch-divider::after {
    content: ':';
    opacity: 0;
}
.stopwatch .stopwatch-divider {
    font-size: 50px;
    color: #707070;
    padding: 0 4px;
}
.stopwatch-button {
    text-align: center;
}
.stopwatch-button button {
    padding: 10px 20px;
    font-size: 18px;
}
.stopwatch-button button i {
    margin-right: 10px;
}
.stopwatch-button .btn-sw-hidden {
    display: none;
}

.stopwatch-box.stopwatch-round .stopwatch {
    border: 1px solid grey;
    border-radius: 50%;
    height: 250px;
	width: 250px;
	margin: auto;
	margin-bottom: 30px;
}
.stopwatch-box.stopwatch-round .stopwatch .stopwatch-time {
    font-size: 40px;
}
.stopwatch-box.stopwatch-round .stopwatch .stopwatch-divider {
    font-size: 30px;
}
.stopwatch-box.stopwatch-big {
	transform: scale(1.5);
	padding: 80px
}
.stopwatch-box.stopwatch-small .stopwatch .stopwatch-time {
	font-size: 40px;
}
.stopwatch-box.stopwatch-small .stopwatch .stopwatch-divider {
	font-size: 30px;
}
.stopwatch-box.stopwatch-small .stopwatch-button button {
    font-size: 14px;
    padding: 8px 15px;
}
.stopwatch-box.stopwatch-no-text .stopwatch #sw_h::after,
.stopwatch-box.stopwatch-no-text .stopwatch #sw_m::after,
.stopwatch-box.stopwatch-no-text .stopwatch #sw_s::after,
.stopwatch-box.stopwatch-no-text .stopwatch .stopwatch-divider::after  {
	content: none;
}

/*******************
User Card
*******************/
.user-card {
	margin-bottom: 20px;
    background-color: var(--white);
    border: none;
    box-shadow: none;
    border-radius: 3px;
	box-shadow: 0 0 12px 1px rgb(221, 221, 221);
}
.user-card.box-shadow {
	box-shadow: 0 0 8px 1px rgb(199, 199, 199);
}
.user-card .user-card-body {
	padding: 15px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--night);
	display: flex;
	align-items: center;
    justify-content: space-between;
}
.user-card .user-card-body .user-content {
	display: flex;
	align-items: center;
}
.user-card .user-card-body .user-content .user-img {
    margin-right: 10px;
    background: white;
    border-radius: 50%;
	border: 1px solid var(--night);
	color: var(--darkgrey);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-card .user-card-body .user-content .user-info .user-position {
	color: var(--grey);
}
.user-card .user-card-footer {
	background: #fafafa;
	color: var(--white);
    border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	overflow: auto;
	font-size: 14px;
    border-top: 1px solid var(--lightgrey);
	padding: 15px 15px 8px 15px;
}


/***********************************************************************************************
>>	11.0 	Plugins
************************************************************************************************/

/*******************
jQuery Datepicker
*******************/
.ui-datepicker-trigger {
	border: none;
	background: none;
	margin-left: 5px;
	cursor: pointer;
}
.ui-datepicker-inline {
    border: none !important;
    background: #ffffff;
	color: #333333;
	box-shadow: none !important;
	width: 100%;
	max-width: 400px;
}
/*
.ui-datepicker {
    border: none !important;
    background: #ffffff !important;
	color: #333333 !important;
	box-shadow: 0 4px 6px lightgrey !important;
}
.ui-state-default, 
.ui-widget-content 
.ui-state-default, 
.ui-widget-header 
.ui-state-default, 
.ui-button {
	border: none !important;
	background: none !important;
	padding: 5px !important;
	text-align: center;
}
*/
.ui-datepicker-prev  {
    transform: scale(.5);
}
.ui-datepicker-prev span {
	border: solid #141414;
	border-width: 0 2px 2px 0;
	display: inline-block;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.ui-datepicker-next {
	transform: scale(.5);
}
.ui-datepicker-next span {
	border: solid #141414;
	border-width: 0 2px 2px 0;
	display: inline-block;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

/*******************
jQuery Timepicker
*******************/
.ui-timepicker-container {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box;
	border: none;
}
.ui-timepicker, .ui-timepicker-viewport {
	box-sizing: content-box;
	height: 205px;
	display: block;
	margin: 0
}
.ui-timepicker {
	list-style: none;
	padding: 0 1px;
	text-align: center
}
.ui-timepicker-viewport {
	padding: 0;
	overflow: auto;
	overflow-x: hidden
}
.ui-timepicker-standard {
	font-size: 1.1em;
	background-color: #ffffff;
	color: #222;
	margin: 0;
	padding: 2px
}
.ui-timepicker-standard a {
	border: 1px solid transparent;
	color: #222;
	display: block;
	padding: .2em .4em;
	text-decoration: none
}
.ui-timepicker-standard .ui-state-hover {
	background-color: rgb(245, 245, 245);
	border: 1px solid rgb(194, 194, 194);
	font-weight: 400;
	color: #212121
}
.ui-timepicker-standard .ui-menu-item {
	margin: 0;
	padding: 0
}
.ui-timepicker-corners, .ui-timepicker-corners .ui-corner-all {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.ui-timepicker-hidden {
	display: none
}
.ui-timepicker-no-scrollbar .ui-timepicker {
	border: none
}

/*******************
jQuery Slider
*******************/
.slider-text {
	border: none;
	background: none;
}
.slider-vertical {
	height: 200px;
}
.ui-slider-handle.ui-corner-all.ui-state-default {
	border: 1px solid #e6e6e6 !important;
	background: #ffffff !important;
}
.slider-info .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus {
	outline: none !important;
	border-radius: 5px !important;
	border: 1px solid #e6e6e6 !important;
}
.ui-slider-range,
.ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #707070 !important;
}
.slider-info .ui-slider-range,
.slider-info .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #467fad !important;
}
.slider-success .ui-slider-range,
.slider-success .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #adca40 !important;
}
.slider-warning .ui-slider-range,
.slider-warning .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #f5a20a !important;
}
.slider-danger .ui-slider-range,
.slider-danger .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #d61a1a !important;
}
.slider-dark .ui-slider-range,
.slider-dark .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #27272e !important;
}

/*******************
Timeline
*******************/
.vis-timeline {
	border: 1px solid #444444;
	font-size: 14px;
	background: #ffffff;
} 
.vis-time-axis .vis-text.vis-major {
	font-weight: bold;
}
.vis-time-axis .vis-grid.vis-minor {
	border-width: 2px;
	border-color: #e6e6e6;
}
.vis-time-axis .vis-grid.vis-major {
	border-width: 2px;
	border-color: #707070;
} 
.vis-current-time {
	display: none;
}
.vis-saturday,
.vis-sunday {
	background: #e6e6e6;
}
.vis-item {
	z-index: 0 !important;
}
.vis-group.orange .vis-item {
	background: #f5a20a;
	border: 1px solid #f5a20a;
}
.vis-group.blue .vis-item {
	background: #467fad;
	border: 1px solid #467fad;
}
.vis-group.lime .vis-item {
	background: #adca40;
	border: 1px solid #adca40;
}
.vis-item.vis-selected {
	border: 1px solid #707070 !important;
}
.vis-group.orange .vis-item,
.vis-item.orange {
	background: #f5a20a;
	border: 1px solid #707070;
}
.vis-group.blue .vis-item,
.vis-item.blue {
	background: #467fad;
	border: 1px solid #707070;
}
.vis-group.lime .vis-item,
.vis-item.lime {
	background: #adca40;
	border: 1px solid #707070;
}
.vis-group.grey .vis-item,
.vis-item.grey {
	background: #e6e6e6;
	border: 1px solid #707070;
}
.vis-group.dark .vis-item,
.vis-item.dark {
	background: #444444;
	border: 1px solid #27272e;
}
.vis-group.red .vis-item,
.vis-item.red {
	background: #d61a1a;
	border: 1px solid #27272e;
}
.vis-item.vis-selected {
	border: 1px solid #707070 !important;
}
.vis-item.timeline_1 {
	background: #4CAF50;
	border: 1px solid #707070;
}
.vis-item.timeline_2 {
	background: #2196F3;
	border: 1px solid #707070;
}
.vis-item.timeline_3 {
	background: #607D8B;
	border: 1px solid #707070;
}
.vis-item.timeline_4 {
	background: #9E9E9E;
	border: 1px solid #707070;
}
.vis-item.timeline_5 {
	background: #F44336;
	border: 1px solid #707070;
}
.vis-item.timeline_6 {
	background: #E19800;
	border: 1px solid #707070;
}
.vis-item.timeline_7 {
	background: #795548;
	border: 1px solid #707070;
}
.vis-item.timeline_8 {
	background: #673AB7;
	border: 1px solid #707070;
}
.vis-item.timeline_9 {
	background: #707070;
	border: 1px solid #707070;
}
.vis-item.timeline_10 {
	background: #ffed13;
	border: 1px solid #707070;
}
.vis-item.timeline_51 {
	background: #FFD45B;
	border: 1px solid #FFD45B;
}
.vis-item.timeline_52 {
	background: #755500;
	border: 1px solid #755500;
}
.vis-item.timeline_53 {
	background: #B7B7B7;
	border: 1px solid #B7B7B7;
}
.vis-item.timeline_54 {
	background: #FF6464;
	border: 1px solid #FF6464;
}
.vis-item.timeline_55 {
	background: #C47400;
	border: 1px solid #C47400;
}
.vis-item.timeline_56 {
	background: #798CA7;
	border: 1px solid #798CA7;
}
.vis-item.timeline_57 {
	background: #1F262F;
	border: 1px solid #1F262F;
}
.vis-item.timeline_58 {
	background: #7A0EFF;
	border: 1px solid #7A0EFF;
}
.vis-item.timeline_59 {
	background: #12D1EE;
	border: 1px solid #12D1EE;
}
.vis-item.timeline_60 {
	background: #FF0000;
	border: 1px solid #FF0000;
}
.vis-item.timeline_61 {
	background: #FFFF00;
	border: 1px solid #FFFF00;
}
.vis-item.timeline_62 {
	background: #B80000;
	border: 1px solid #B80000;
}
.vis-item.timeline_63 {
	background: #808080;
	border: 1px solid #808080;
}
.vis-item.timeline_64 {
	background: #3C04EE;
	border: 1px solid #3C04EE;
}
.vis-item.timeline_65 {
	background: #4A772F;
	border: 1px solid #4A772F;
}
.vis-item.timeline_66 {
	background: #2D3746;
	border: 1px solid #2D3746;
}
.vis-item.timeline_67 {
	background: #C47400;
	border: 1px solid #C47400;
}
.vis-item.timeline_68 {
	background: #652A96;
	border: 1px solid #652A96;
}
.vis-item.timeline_69 {
	background: #4a4a4a;
	border: 1px solid #4a4a4a;
}

/*******************
Datatables
*******************/
.dt-buttons {
    display: inline-block !important;
    margin-left: 20px !important;
    float: none !important;
}
table.dataTable span.highlight {
    background-color: #d61a1a;
    /* border-radius: .28571429rem; */
    color: white;
}

table.dataTable span.column_highlight {
    background-color: #d61a1a;
    /* border-radius: .28571429rem; */
    color: white;
}

/*******************
Select2
*******************/
.select2-container {
	z-index: 9991 !important;
	width: 100% !important;
}
.select2-container--open {
    z-index: 9999999 !important;
}
.select2-search__field:focus,
.select2-selection:focus,
.select2-selection:active {
	outline: none !important;
}


/*******************
lightgallery
*******************/
.lg-backdrop {
    z-index: 9993 !important;
}
.lg-outer {
    z-index: 9994 !important;
}
.lg-sub-html {
    background-color: rgba(0, 0, 0, .55) !important;
}
.lg-sub-html h4,
.lg-sub-html p {
    color: #EEE !important;
}
.lg-outer .lg-toggle-thumb {
	border: none;
}


.demo-gallery > ul {
  margin-bottom: 0;
  padding-left: 15px;
}

.demo-gallery > ul > li {
  margin-bottom: 15px;
  width: 220px;
  display: inline-block;
  margin-right: 15px;
  list-style: outside none none;
}

.demo-gallery > ul > li a {
  border-radius: 3px;
  display: flex;
  overflow: hidden;
  position: relative;
  height: 130px;
}

.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform .15s ease 0s;
  -moz-transition: -moz-transform .15s ease 0s;
  -o-transition: -o-transform .15s ease 0s;
  transition: transform .15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery > ul > li a:hover .demo-gallery-poster > i {
  opacity: 1;
    color: #EEE;
}

.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, .1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color .15s ease 0s;
  -o-transition: background-color .15s ease 0s;
  transition: background-color .15s ease 0s;
}

.demo-gallery > ul > li a .demo-gallery-poster > i {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity .3s ease 0s;
  -o-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, .5);
}

.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform .15s ease 0s;
  -moz-transition: -moz-transform .15s ease 0s;
  -o-transition: -o-transform .15s ease 0s;
  transition: transform .15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > i {
  opacity: 1;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, .1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color .15s ease 0s;
  -o-transition: background-color .15s ease 0s;
  transition: background-color .15s ease 0s;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster > i {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity .3s ease 0s;
  -o-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, .5);
}

.demo-gallery .video .demo-gallery-poster i {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: .8;
  width: 48px;
}

.demo-gallery.dark > ul > li a {
  border: 3px solid #04070a;
}


.demo-gallery.small img {
	width: 100px;
	height: 75px;
}
.demo-gallery.small a {
	height: auto;
}
.demo-gallery.small li {
	width: auto;
	margin: 0;
}
.demo-gallery.small ul {
	padding: 0;
	margin: 0;
}


/***********************************************************************************************
>>	12.0 	Stats
************************************************************************************************/

/*******************
Progress Bar
*******************/
.bar-container {
  overflow: hidden;
  height: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: .5px solid #e6e6e6;
  background: #e6e6e6;
}
.bar-container.bar-slim {
	height: 3px;
	border-radius: 0;
	border: none;
	background: #e6e6e6;
}
.bar-container.bar-small {
	height: 10px;
	border-radius: 15px;
}
.bar-container.bar-medium {
	height: 30px;
	border-radius: 15px;
}
.bar-container.bar-large {
	height: 40px;
	border-radius: 20px;
}
.bar  {
	display: grid;
	align-items: center;
    width: 0%;
    height: 100%;
    float: left;
    border-radius: 10px 0 0 10px;
	background: #e6e6e6;
}
.bar .bar-content {
	padding: 0 15px;
	color: #ffffff;
	overflow: visible;
	white-space: nowrap;
}
.bar .bar-content.content-slide {
	text-align: right;
}
.bar .bar-content.content-right {
    position: absolute;
    right: 30px;
    color: #707070;
    padding: 1px 10px;
}
.bar.slide-slow {
	transition: width 2s ease;
}
.bar.slide-fast {
	transition: width 1s ease;
}

.bar-default {
	border: .5px solid #e6e6e6;
}
.bar-default .bar {
	background: #707070;
}
.bar-info {
	border: .5px solid #467fad;
}
.bar-info .bar {
	background: #467fad;
}
.bar-success {
	border: .5px solid #adca40;
}
.bar-success .bar {
	background: #adca40;
}
.bar-warning {
	border: .5px solid #f5a20a;
}
.bar-warning .bar {
	background: #f5a20a;
}
.bar-danger {
	border: .5px solid #d61a1a;
}
.bar-danger .bar {
	background: #d61a1a;
}
.bar-dark {
	border: .5px solid rgb(54, 54, 54);
}
.bar-dark .bar {
	background: rgb(54, 54, 54);
}

/*******************
Pie Chart (old)
*******************/
.simple-pie-chart {
	background: #adca40;
	background-image: linear-gradient(to right, transparent 50%, #655 0);
	border-radius: 50%;
	height: 100px;
	width: 100px;
}
.simple-pie-chart:before {
	background: #655;
	border-radius: 0 100% 100% 0 / 50%;
	content: '';
	display: block;
	height: 100%;
	margin: 0 0 0 50%;
	transform: rotate(.1turn);
	transform-origin: left;
}
.animated-pie-chart {
	background: #adca40;
	background-image: linear-gradient(to right, transparent 50%, #655 0);
	border-radius: 50%;
	height: 100px;
	width: 100px;
}
.animated-pie-chart:before {
	animation: spin 3s linear infinite, bg 6s step-end infinite;
	background-color: inherit;
	border-radius: 0 100% 100% 0 / 50%;
	content: '';
	display: block;
	height: 100%;
	margin: 0 0 0 50%;
	transform-origin: left;
}
.static-pie-chart,
.static-pie-chart-dark,
.static-pie-chart-info,
.static-pie-chart-success,
.static-pie-chart-warning,
.static-pie-chart-danger {
	background: #e6e6e6;
	background-image: linear-gradient(to right, transparent 50%, #444444 0);
	border-radius: 50%;
	color: transparent;
	display: inline-block;
	position: relative;
	text-align: center;
	width: 100px;
	height: 100px;
	line-height: 100px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	margin: 10px;
}
.static-pie-chart-dark {
	background-image: linear-gradient(to right, transparent 50%, rgb(44, 44, 44) 0);
}
.static-pie-chart-info {
	background-image: linear-gradient(to right, transparent 50%, steelblue 0);
}
.static-pie-chart-success {
	background-image: linear-gradient(to right, transparent 50%, yellowgreen 0);
}
.static-pie-chart-warning {
	background-image: linear-gradient(to right, transparent 50%, orange 0);
}
.static-pie-chart-danger {
	background-image: linear-gradient(to right, transparent 50%, firebrick 0);
}
.static-pie-chart:before,
.static-pie-chart-dark:before,
.static-pie-chart-info:before,
.static-pie-chart-success:before,
.static-pie-chart-warning:before,
.static-pie-chart-danger:before {
	animation: spin 50s linear infinite, bg 100s step-end infinite;
	animation-delay: inherit;
	animation-play-state: paused;
	background-color: inherit;
	border-radius: 0 100% 100% 0 / 50%;
	content: '';
	height: 100%;
	left: 50%;
	position: absolute;
	transform-origin: left;
	top: 0;
	width: 50%;
}
.static-pie-chart-dark:before {
	animation: spin 50s linear infinite, pie-dark 100s step-end infinite;
	animation-delay: inherit;
	animation-play-state: paused;
	background-color: inherit;
}
.static-pie-chart-info:before {
	animation: spin 50s linear infinite, pie-info 100s step-end infinite;
	animation-delay: inherit;
	animation-play-state: paused;
	background-color: inherit;
}
.static-pie-chart-success:before {
	animation: spin 50s linear infinite, pie-success 100s step-end infinite;
	animation-delay: inherit;
	animation-play-state: paused;
	background-color: inherit;
}
.static-pie-chart-warning:before {
	animation: spin 50s linear infinite, pie-warning 100s step-end infinite;
	animation-delay: inherit;
	animation-play-state: paused;
	background-color: inherit;
}
.static-pie-chart-danger:before {
	animation: spin 50s linear infinite, pie-danger 100s step-end infinite;
	animation-delay: inherit;
	animation-play-state: paused;
	background-color: inherit;
}
.pie-circle {
	position: absolute;
	background: #ffffff;
	border-radius: 50%;
	height: 80px;
	width: 80px;
	margin-left: 10px;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    align-items: center;
}
.pie-text {
	color: rgb(29, 29, 29);
	font-size: 18px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

@-webkit-keyframes spin {
	to {
	  transform: rotate(.5turn);
	}
}
@-moz-keyframes spin {
	to {
		transform: rotate(.5turn);
	}
}
@-ms-keyframes spin {
	to {
		transform: rotate(.5turn);
	}
}
@keyframes spin {
	to {
		transform: rotate(.5turn);
	}
}
@-webkit-keyframes bg {
	50% {
		background: #444444;
	}
}
@-moz-keyframes bg {
	50% {
		background: #444444;
	}
}
@-ms-keyframes bg {
	50% {
		background: #444444;
	}
}
@keyframes bg {
	50% {
		background: #444444;
	}
}
@-webkit-keyframes pie-dark {
	50% {
		background: rgb(44, 44, 44);
	}
}
@-moz-keyframes pie-dark {
	50% {
		background: rgb(44, 44, 44);
	}
}
@-ms-keyframes pie-dark {
	50% {
		background: rgb(44, 44, 44);
	}
}
@keyframes pie-dark {
	50% {
		background: rgb(44, 44, 44);
	}
}
@-webkit-keyframes pie-info {
	50% {
		background: #467fad;
	}
}
@-moz-keyframes pie-info {
	50% {
		background: #467fad;
	}
}
@-ms-keyframes pie-info {
	50% {
		background: #467fad;
	}
}
@keyframes pie-info {
	50% {
		background: #467fad;
	}
}
@-webkit-keyframes pie-success {
	50% {
		background: #adca40;
	}
}
@-moz-keyframes pie-success {
	50% {
		background: #adca40;
	}
}
@-ms-keyframes pie-success {
	50% {
		background: #adca40;
	}
}
@keyframes pie-success {
	50% {
		background: #adca40;
	}
}
@-webkit-keyframes pie-warning {
	50% {
		background: #f5a20a;
	}
}
@-moz-keyframes pie-warning {
	50% {
		background: #f5a20a;
	}
}
@-ms-keyframes pie-warning {
	50% {
		background: #f5a20a;
	}
}
@keyframes pie-warning {
	50% {
		background: #f5a20a;
	}
}
@-webkit-keyframes pie-danger {
	50% {
		background: #d61a1a;
	}
}
@-moz-keyframes pie-danger {
	50% {
		background: #d61a1a;
	}
}
@-ms-keyframes pie-danger {
	50% {
		background: #d61a1a;
	}
}
@keyframes pie-danger {
	50% {
		background: #d61a1a;
	}
}


/*******************
Donut Chart
*******************/
figure {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
	flex-direction: column;
	margin-left: -15px;
	margin-right: -15px;
}
@media (min-width: 768px) {
	figure {
		flex-direction: row;
	}
}
.figure-content,
.figure-key {
	padding-left: 15px;
	padding-right: 15px;
	align-self: center;
}
.figure-content svg {
	height: auto;
}
.donut .donut-hole {
	fill: white;
}
.donut .donut-ring {
	fill: transparent;
	stroke: lightgrey;
	stroke-width: 8;
}
.donut .donut-segment {
	fill: transparent;
	stroke-width: 8;
	opacity: .9;
}
.donut .donut-segment:hover {
	stroke-width: 11;
	opacity: 1;
}
/*donut-colors*/
.donut-default .donut-segment {
	stroke: #707070;
}
.donut-info .donut-segment {
	stroke: #467fad;
}
.donut-success .donut-segment {
	stroke: #adca40;
}
.donut-warning .donut-segment {
	stroke: #f5a20a;
}
.donut-danger .donut-segment {
	stroke: #d61a1a;
}

/*donut thickness*/
.donut-xs .donut-ring,
.donut-xs .donut-segment {
	stroke-width: 2;
}
.donut-xs .donut-segment:hover {
	stroke-width: 5;
}
.donut-sm .donut-ring,
.donut-sm .donut-segment {
	stroke-width: 6;
}
.donut-sm .donut-segment:hover {
	stroke-width: 9;
}
.donut-lg .donut-ring,
.donut-lg .donut-segment {
	stroke-width: 10;
}
.donut-lg .donut-segment:hover {
	stroke-width: 13;
}
.donut-xl .donut-ring,
.donut-xl .donut-segment {
	stroke-width: 14;
}
.donut-xl .donut-segment:hover {
	stroke-width: 17;
}
.donut-xxl .donut-ring,
.donut-xxl .donut-segment {
	stroke-width: 18;
}
.donut-xxl .donut-segment:hover {
	stroke-width: 20;
}

/*donut text*/
.donut-percentage {
	font-size: .6em;
	line-height: 1;
	text-anchor: middle;
}
.donut-text-only {
	font-size: .4em;
	line-height: 1;
	text-anchor: middle;
}
.donut-text {
	fill: #000;
	-moz-transform: translateY(.25em);
	-ms-transform: translateY(.25em);
	-webkit-transform: translateY(.25em);
	transform: translateY(.25em);
}
.donut-number {
	font-size: .6em;
	line-height: 1;
	text-anchor: middle;
	-moz-transform: translateY(-.25em);
	-ms-transform: translateY(-.25em);
	-webkit-transform: translateY(-.25em);
	transform: translateY(-.25em);
}
.donut-label {
	font-size: .2em;
	text-transform: uppercase;
	text-anchor: middle;
	-moz-transform: translateY(.7em);
	-ms-transform: translateY(.7em);
	-webkit-transform: translateY(.7em);
	transform: translateY(.7em);
}
/*donut info right*/
.figure-key-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.figure-key-list li {
	margin: 0 0 8px;
	padding: 0;
}
.shape-circle {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
			border-radius: 50%;
}

.chart-pie-tooltip {
	display: none;
	position: absolute;
	background: white;
	border: 1px solid #27272e;
	padding: 15px;
	border-radius: 5px;
}
.chart-pie-tooltip.visible {
	display: block;
}

/*******************
Bar Chart
*******************/


.barchart-vertical {
	width: 100%;
	height: 300px;
	display: block;
	margin-bottom: 25px;
}
.barchart-vertical .bars-vertical {
	display: inline-block;
	width: 100%;
	height: 300px;
	padding: 0;
	margin: 0;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
	align-items: stretch;
	position: absolute;
	width: 90%;
}
.barchart-vertical .bars-vertical li {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    height: 300px;
    margin: 0;
    text-align: center;
    position: relative;
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
    justify-content: center;
}
.barchart-vertical .bars-vertical li .bar-vertical {
	display: block;
	width: 90%;
	background: #467fad;
	position: absolute;
	bottom: 0;
	height: 0;
	-webkit-transition: height 1s ease-in-out;
	-moz-transition: height 1s ease-in-out;
	-o-transition: height 1s ease-in-out;
	transition: height 1s ease-in-out;
}
.barchart-vertical .bars-vertical li span {
	color: #27272e;
	width: 100%;
	position: absolute;
	bottom: -35px;
	left: 0;
	text-align: center;
} 
.bars-vertical li .bar-vertical:hover {
	opacity: .6;
	cursor: pointer;
}
.bars-vertical li .bar-vertical:hover:before {
	color: #27272e;
	content: attr(data-value) '%';
	position: relative;
	bottom: 20px;
} 


/*******************
Line Chart
*******************/
/*
canvas {
	display: block;
	width: 100%;
	visibility: hidden;
}
*/
.svg-box {
	/*position: relative;*/
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
}
.svg-box svg {
	/*position: absolute;*/
	position: relative;
	padding-bottom: 15px;
	width: 100%;
	height: inherit;
	overflow: visible;
}
.linechart-legend {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row-reverse;
	margin-right: 50px;
}
.linechart-legend .linechart-legend-text {
	padding-left: 10px;
}
.linechart .linechart-grid {
	stroke: #ccc;
	stroke-dasharray: 0;
	stroke-width: 1;
}
.linechart .linechart-labels.x-labels {
	text-anchor: middle;
}
.linechart .linechart-labels.y-labels {
	text-anchor: end;
}
.linechart .linechart-labels {
	font-size: 13px;
}
.linechart .linechart-labels .label-title {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	fill: black;
}
.linechart g circle:hover {
	stroke-width: 5; 
	cursor: pointer;
}
.linechart.no-effect g circle:hover {
	stroke-width: 0; 
	cursor: unset;
}
.linechart .linechart-background {
	stroke: #707070;
	fill: #f7f7f7;
	stroke-width: 2;
}
.linechart .linechart-graph {
	stroke: #707070;
	fill: none;
	stroke-width: 2;
}
.linechart .linechart-graph.graph-blue {
	stroke: #467fad;
	fill: none;
}
.linechart .linechart-graph.graph-orange {
	stroke: #f5a20a;
}
.linechart .linechart-data {
	fill: #707070;
	stroke: #707070;
	stroke-width: 2; 
}
.linechart .linechart-data.data-blue {
	fill: #467fad;
	stroke: #467fad;
}
.linechart .linechart-data.data-orange {
	fill: #f5a20a;
	stroke: #f5a20a;
}
.linechart .linechart-graph.graph-full {
	fill: #444444;
	stroke-width: 0;
	opacity: .8;
}
.linechart .linechart-graph.graph-full.graph-blue {
	fill: #467fad;
}
.linechart .linechart-graph.graph-full.graph-blue-light {
	fill: #467fad;
	opacity: .6;
}
.linechart .linechart-graph.graph-full.graph-blue-dark {
	fill: #3b668a;
}
.linechart .linechart-graph.graph-full.graph-orange {
	fill: #f5a20a;
}
.linechart .linechart-graph.graph-full.graph-dark {
	fill: #27272e;
}
/*
.linechart .linechart-graph.graph-full:hover {
	opacity: 1;
}
*/
.linechart .linechart-data.data-full {
	fill: none;
	stroke: none;
	stroke-width: 0; 
}
circle.circle-active {
	stroke: grey;
	stroke: #707070;
	fill: #f7f7f7;
	stroke-width: 5; 
	cursor: pointer;

}


.chart-tooltip {
	display: none;
	position: absolute;
	background: white;
	border: 1px solid grey;
	padding: 15px;
	height: 120px;
	width: 180px;
	border-radius: 5px;
}



/***********************************************************************************************
>>	13.0	Fancy Stuff
************************************************************************************************/

/*******************
Loading Animation Signals
*******************/
.signals {
	position: relative;
}
.signals .dot{
	width: 10px;
	height: 10px;
	background: #444;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	left: 30%;
	top: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	animation: blink .6s ease-in infinite alternate;
}

.signals .first{
	margin-left: 0;
}

.signals .second{
	margin-left: 30px;
	animation-delay: .2s;
}

.signals .third{
	margin-left: 60px;
	animation-delay: .4s;
}

@keyframes blink {
	from { opacity: 0 }
	to { opacity: 1 }
}
@-webkit-keyframes blink {
	from { opacity: 0 }
	to { opacity: 1 }
}

/*******************
Loading Animation Map
*******************/
.loading-box {
	display: flex;
    z-index: 9993;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
	justify-content: center;
	transition: all 1s ease;
}
.loading-box .map-loading {
    height: 600px;
    width: 100%;
	z-index: 9999;
    border-radius: 30px;
    border: 1px solid lightgrey;
    margin: 0 auto;
    background-image: url("../img/map_light.png");
    background-size: cover;
    display: flex;
    align-items: center;
	justify-content: center;
	transition: all 1s ease;
	transform: scale(1);
}
.loading-box.active .map-loading {
    animation-name: scaleMap;
	animation-duration: 1s;
}
.map-loading img {
    height: 400px;
    width: 400px;
    border-radius: 30px;
}
.map-loading .marker {
    font-size: 6rem;
    transition: all .5s ease;
    animation-name: jump;
	animation-duration: 15s;
	animation-delay: 1s;
	animation-iteration-count: infinite;
	color: orange;
}
.map-loading .loading-text {
    position: absolute;
    margin-top: 150px;
    color: #949494;
    font-size: 22px;
    text-align: center;
}
@keyframes loadingCover {
	0% {
		background: none;
	}
	100% {
		background: #5f5f5fe0;
	}
}
@keyframes scaleMap {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes jump {
	0% {
        transform: translateY(0);
        color: rgb(255, 174, 0);
	}
	10% {
        transform: translateY(-50px);
	}
	20% {
        transform: translateY(0);
        color: rgb(187, 255, 0);
	}
	30% {
        transform: translateY(-50px);
	}
	40% {
        transform: translateY(0);
        color: rgb(212, 27, 3);
	}
	50% {
        transform: translateY(-50px);
	}
	60% {
        transform: translateY(0);
        color: rgb(1, 223, 223);
	}
	70% {
        transform: translateY(-50px);
	}
	80% {
        transform: translateY(0);
        color: rgb(15, 120, 240);
	}
	90% {
        transform: translateY(-50px);
	}
	100% {
        transform: translateY(0);
        color: rgb(255, 174, 0);
	}
}

/*******************
Star Rating
*******************/
fieldset {
	border: 0;
	width: 5em;
}
.star-cb-group {
	direction: rtl;
	display: flex;
}
.star-cb-group * {
	font-size: 30px;
}
.star-cb-group > input {
	display: none;
}
.star-cb-group > input + label {
	display: inline-block;
	overflow: hidden;
	text-indent: 9999px;
	width: 1em;
	white-space: nowrap;
	cursor: pointer;
}
.star-cb-group > input + label:before {
	display: inline-block;
	text-indent: -9999px;
	content: "☆";
	color: #888;
}
.star-cb-group > input:checked ~ label:before, 
.star-cb-group > input + label:hover ~ label:before, 
.star-cb-group > input + label:hover:before {
	content: "★";
	color: orange;
}
.star-cb-group > .star-cb-clear + label {
	text-indent: -9999px;
	width: .5em;
	margin-left: -.5em;
}
.star-cb-group > .star-cb-clear + label:before {
	width: .5em;
}
.star-cb-group:hover > input + label:before {
	content: "☆";
	color: #888;
}
.star-cb-group:hover > input + label:hover ~ label:before, 
.star-cb-group:hover > input + label:hover:before {
	content: "★";
	color: orange;
}

/*******************
Flip Cards
*******************/
.card.flip {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: .5s;
	transition: .5s;
}
.card.flip .face {
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 2;
}
.card.flip .front {
	z-index: 1;
	display: block;
}
.card.flip .back {
	-webkit-transform: rotatex(-180deg);
	transform: rotatex(-180deg);
	display: none;
}

.card.flipped {
	-webkit-transform: rotatex(-180deg);
	transform: rotatex(-180deg);
}
.card.flip.flipped .back {
	display: block;
}
.card.flip.flipped .front {
	display: none;
}
.js-flip,
.js-flip-all {
	cursor: pointer;
}

/***********************************************************************************************
>>	14.0	Keyframes
************************************************************************************************/

@keyframes zoomIn {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
}
  @keyframes zoomOut {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(0);
	}
}
@keyframes fadeIn {
	0% {
		background: none;
	}
	100% {
		background: rgba(0, 0, 0, .4);
	}
}
@keyframes topDown {
	0% {
	  top: -200px;
	}
	100% {
	  top: 0;
	}
}
@keyframes bottomUp {
	0% {
	  bottom: -200px;
	}
	100% {
	  bottom: 0;
	}
}
@keyframes leftRight {
	0% {
	  left: -300px;
	}
	100% {
	  left: 0;
	}
}
@keyframes rightLeft {
	0% {
	  right: -300px;
	}
	100% {
	  right: 0;
	}
}
@keyframes colorProgress {
	0% {
		background: #d61a1a;
	}
	50% {
		background: #f5a20a;
	}
	100% {
		background: #adca40;
	}
}







/***********************************************************************************************
>>	15.0	CSS Helper Classes
************************************************************************************************/

.bold {
	font-weight: 600;
}

/*******************
Rows and Columns
*******************/
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px;
}
.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}
.col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}
.col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}
.col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}
.col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
.col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}
.col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}
.col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}
.col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}
.col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}
.col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}
.col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}
.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
@media (min-width: 576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (min-width: 768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (min-width: 992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (min-width: 1200px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*******************
General
*******************/
.overflow-auto {
	overflow: auto !important;
}
.overflow-unset {
	overflow: unset !important;
}
.overflow-hidden {
	overflow: hidden !important;
}
.overflow-visible {
	overflow: visible !important;
}
.overflow-scroll {
	overflow: scroll !important;
}
.overflow-x-hidden {
	overflow-x: hidden !important;
}
.overflow-x-visible {
	overflow-x: visible !important;
}
.overflow-x-scroll {
	overflow-x: scroll !important;
}
.overflow-y-hidden {
	overflow-y: hidden !important;
}
.overflow-y-visible {
	overflow-y: visible !important;
}
.overflow-y-scroll {
	overflow-y: scroll !important;
}

.float-left {
	float: left !important;
}
.float-right {
	float: right !important;
}

.b-radius-5 {
	border-radius: 5px !important;
}
.b-radius-10 {
	border-radius: 10px !important;
}
.b-radius-15 {
	border-radius: 15px !important;
}
.b-radius-20 {
	border-radius: 20px !important;
}
.b-radius-full {
	border-radius: 50% !important;
}

.display-block {
	display: block;
}
.display-inline-block {
	display: inline-block;
}
.display-flex {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.flex {
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
}
.box-shadow-none {
	box-shadow: none;
}

/*******************
Width & Height
*******************/

.width-p-100 {
	width: 100% !important;
}
.width-p-90 {
	width: 90% !important;
}
.width-p-80 {
	width: 80% !important;
}
.width-p-70 {
	width: 70% !important;
}
.width-p-60 {
	width: 60% !important;
}
.width-p-50 {
	width: 50% !important;
}
.width-p-40 {
	width: 40% !important;
}
.width-p-30 {
	width: 30% !important;
}
.width-p-20 {
	width: 20% !important;
}
.width-p-15 {
	width: 15% !important;
}
.width-p-10 {
	width: 10% !important;
}
.width-p-5 {
	width: 5% !important;
}
.width-600 {
	width: 600px !important;
}
.width-550 {
	width: 550px !important;
}
.width-500 {
	width: 500px !important;
}
.width-450 {
	width: 450px !important;
}
.width-400 {
	width: 400px !important;
}
.width-350 {
	width: 350px !important;
}
.width-300 {
	width: 300px !important;
}
.width-250 {
	width: 250px !important;
}
.width-200 {
	width: 200px !important;
}
.width-150 {
	width: 150px !important;
}
.width-100 {
	width: 100px !important;
}
.width-50 {
	width: 50px !important;
}
.width-auto {
	width: auto !important;
}

.height-p-100 {
	height: 100% !important;
}
.height-p-90 {
	height: 90% !important;
}
.height-p-80 {
	height: 80% !important;
}
.height-p-70 {
	height: 70% !important;
}
.height-p-60 {
	height: 60% !important;
}
.height-p-50 {
	height: 50% !important;
}
.height-p-40 {
	height: 40% !important;
}
.height-p-30 {
	height: 30% !important;
}
.height-p-20 {
	height: 20% !important;
}
.height-p-15 {
	height: 15% !important;
}
.height-p-10 {
	height: 10% !important;
}
.height-p-5 {
	height: 5% !important;
}
.height-600 {
	height: 600px !important;
}
.height-550 {
	height: 550px !important;
}
.height-500 {
	height: 500px !important;
}
.height-450 {
	height: 450px !important;
}
.height-400 {
	height: 400px !important;
}
.height-350 {
	height: 350px !important;
}
.height-300 {
	height: 300px !important;
}
.height-250 {
	height: 250px !important;
}
.height-200 {
	height: 200px !important;
}
.height-150 {
	height: 150px !important;
}
.height-100 {
	height: 100px !important;
}
.height-50 {
	height: 50px !important;
}
.height-auto {
	height: auto !important;
}


/*******************
Text & Fonts
*******************/

.f-s-6 {
	font-size: 6px !important;
}
.f-s-8 {
	font-size: 8px !important;
}
.f-s-10 {
	font-size: 10px !important;
}
.f-s-12 {
	font-size: 12px !important;
}
.f-s-14 {
	font-size: 14px !important;
}
.f-s-16 {
	font-size: 16px !important;
}
.f-s-18 {
	font-size: 18px !important;
}
.f-s-20 {
	font-size: 20px !important;
}
.f-s-22 {
	font-size: 22px !important;
}
.f-s-24 {
	font-size: 24px !important;
}
.f-s-26 {
	font-size: 26px !important;
}
.f-s-28 {
	font-size: 28px !important;
}

.f-w-100 {
	font-weight: 100 !important;
}
.f-w-200 {
	font-weight: 200 !important;
}
.f-w-300 {
	font-weight: 300 !important;
}
.f-w-400 {
	font-weight: 400 !important;
}
.f-w-500 {
	font-weight: 500 !important;
}
.f-w-600 {
	font-weight: 600 !important;
}
.f-w-700 {
	font-weight: 700 !important;
}

.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}



.h4-two-lines {
	min-height: 45px !important;
}


/*******************
Margin
*******************/

.m-0 {
	margin: 0 !important;
}
.m-1 {
	margin: 1px !important;
}
.m-2 {
	margin: 2px !important;
}
.m-3 {
	margin: 3px !important;
}
.m-4 {
	margin: 4px !important;
}
.m-5 {
	margin: 5px !important;
}
.m-10 {
	margin: 10px !important;
}
.m-15 {
	margin: 15px !important;
}
.m-20 {
	margin: 20px !important;
}
.m-25 {
	margin: 25px !important;
}
.m-30 {
	margin: 30px !important;
}
.m-35 {
	margin: 35px !important;
}
.m-40 {
	margin: 40px !important;
}
.m-45 {
	margin: 45px !important;
}
.m-50 {
	margin: 50px !important;
}
.m-auto {
	margin: auto !important;
}

.m-t-0 {
	margin-top: 0 !important;
}
.m-t-1 {
	margin-top: 1px !important;
}
.m-t-2 {
	margin-top: 2px !important;
}
.m-t-3 {
	margin-top: 3px !important;
}
.m-t-4 {
	margin-top: 4px !important;
}
.m-t-5 {
	margin-top: 5px !important;
}
.m-t-10 {
	margin-top: 10px !important;
}
.m-t-15 {
	margin-top: 15px !important;
}
.m-t-20 {
	margin-top: 20px !important;
}
.m-t-25 {
	margin-top: 25px !important;
}
.m-t-30 {
	margin-top: 30px !important;
}
.m-t-35 {
	margin-top: 35px !important;
}
.m-t-40 {
	margin-top: 40px !important;
}
.m-t-45 {
	margin-top: 45px !important;
}
.m-t-50 {
	margin-top: 50px !important;
}
.m-t-auto {
	margin-top: auto !important;
}

.m-r-0 {
	margin-right: 0 !important;
}
.m-r-1 {
	margin-right: 1px !important;
}
.m-r-2 {
	margin-right: 2px !important;
}
.m-r-3 {
	margin-right: 3px !important;
}
.m-r-4 {
	margin-right: 4px !important;
}
.m-r-5 {
	margin-right: 5px !important;
}
.m-r-10 {
	margin-right: 10px !important;
}
.m-r-15 {
	margin-right: 15px !important;
}
.m-r-20 {
	margin-right: 20px !important;
}
.m-r-25 {
	margin-right: 25px !important;
}
.m-r-30 {
	margin-right: 30px !important;
}
.m-r-35 {
	margin-right: 35px !important;
}
.m-r-40 {
	margin-right: 40px !important;
}
.m-r-45 {
	margin-right: 45px !important;
}
.m-r-50 {
	margin-right: 50px !important;
}
.m-r-auto {
	margin-right: auto !important;
}

.m-b-0 {
	margin-bottom: 0 !important;
}
.m-b-1 {
	margin-bottom: 1px !important;
}
.m-b-2 {
	margin-bottom: 2px !important;
}
.m-b-3 {
	margin-bottom: 3px !important;
}
.m-b-4 {
	margin-bottom: 4px !important;
}
.m-b-5 {
	margin-bottom: 5px !important;
}
.m-b-10 {
	margin-bottom: 10px !important;
}
.m-b-15 {
	margin-bottom: 15px !important;
}
.m-b-20 {
	margin-bottom: 20px !important;
}
.m-b-25 {
	margin-bottom: 25px !important;
}
.m-b-30 {
	margin-bottom: 30px !important;
}
.m-b-35 {
	margin-bottom: 35px !important;
}
.m-b-40 {
	margin-bottom: 40px !important;
}
.m-b-45 {
	margin-bottom: 45px !important;
}
.m-b-50 {
	margin-bottom: 50px !important;
}
.m-b-auto {
	margin-bottom: auto !important;
}

.m-l-0 {
	margin-left: 0 !important;
}
.m-l-1 {
	margin-left: 1px !important;
}
.m-l-2 {
	margin-left: 2px !important;
}
.m-l-3 {
	margin-left: 3px !important;
}
.m-l-4 {
	margin-left: 4px !important;
}
.m-l-5 {
	margin-left: 5px !important;
}
.m-l-10 {
	margin-left: 10px !important;
}
.m-l-15 {
	margin-left: 15px !important;
}
.m-l-20 {
	margin-left: 20px !important;
}
.m-l-25 {
	margin-left: 25px !important;
}
.m-l-30 {
	margin-left: 30px !important;
}
.m-l-35 {
	margin-left: 35px !important;
}
.m-l-40 {
	margin-left: 40px !important;
}
.m-l-45 {
	margin-left: 45px !important;
}
.m-l-50 {
	margin-left: 50px !important;
}
.m-l-auto {
	margin-left: auto !important;
}

/*******************
Padding
*******************/

.p-0 {
	padding: 0 !important;
}
.p-1 {
	padding: 1px !important;
}
.p-2 {
	padding: 2px !important;
}
.p-3 {
	padding: 3px !important;
}
.p-4 {
	padding: 4px !important;
}
.p-5 {
	padding: 5px !important;
}
.p-10 {
	padding: 10px !important;
}
.p-15 {
	padding: 15px !important;
}
.p-20 {
	padding: 20px !important;
}
.p-25 {
	padding: 25px !important;
}
.p-30 {
	padding: 30px !important;
}
.p-35 {
	padding: 35px !important;
}
.p-40 {
	padding: 40px !important;
}
.p-45 {
	padding: 45px !important;
}
.p-50 {
	padding: 50px !important;
}
.p-auto {
	padding: auto !important;
}

.p-t-0 {
	padding-top: 0 !important;
}
.p-t-1 {
	padding-top: 1px !important;
}
.p-t-2 {
	padding-top: 2px !important;
}
.p-t-3 {
	padding-top: 3px !important;
}
.p-t-4 {
	padding-top: 4px !important;
}
.p-t-5 {
	padding-top: 5px !important;
}
.p-t-10 {
	padding-top: 10px !important;
}
.p-t-15 {
	padding-top: 15px !important;
}
.p-t-20 {
	padding-top: 20px !important;
}
.p-t-25 {
	padding-top: 25px !important;
}
.p-t-30 {
	padding-top: 30px !important;
}
.p-t-35 {
	padding-top: 35px !important;
}
.p-t-40 {
	padding-top: 40px !important;
}
.p-t-45 {
	padding-top: 45px !important;
}
.p-t-50 {
	padding-top: 50px !important;
}
.p-t-auto {
	padding-top: auto !important;
}

.p-r-0 {
	padding-right: 0 !important;
}
.p-r-1 {
	padding-right: 1px !important;
}
.p-r-2 {
	padding-right: 2px !important;
}
.p-r-3 {
	padding-right: 3px !important;
}
.p-r-4 {
	padding-right: 4px !important;
}
.p-r-5 {
	padding-right: 5px !important;
}
.p-r-10 {
	padding-right: 10px !important;
}
.p-r-15 {
	padding-right: 15px !important;
}
.p-r-20 {
	padding-right: 20px !important;
}
.p-r-25 {
	padding-right: 25px !important;
}
.p-r-30 {
	padding-right: 30px !important;
}
.p-r-35 {
	padding-right: 35px !important;
}
.p-r-40 {
	padding-right: 40px !important;
}
.p-r-45 {
	padding-right: 45px !important;
}
.p-r-50 {
	padding-right: 50px !important;
}
.p-r-auto {
	padding-right: auto !important;
}

.p-b-0 {
	padding-bottom: 0 !important;
}
.p-b-1 {
	padding-bottom: 1px !important;
}
.p-b-2 {
	padding-bottom: 2px !important;
}
.p-b-3 {
	padding-bottom: 3px !important;
}
.p-b-4 {
	padding-bottom: 4px !important;
}
.p-b-5 {
	padding-bottom: 5px !important;
}
.p-b-10 {
	padding-bottom: 10px !important;
}
.p-b-15 {
	padding-bottom: 15px !important;
}
.p-b-20 {
	padding-bottom: 20px !important;
}
.p-b-25 {
	padding-bottom: 25px !important;
}
.p-b-30 {
	padding-bottom: 30px !important;
}
.p-b-35 {
	padding-bottom: 35px !important;
}
.p-b-40 {
	padding-bottom: 40px !important;
}
.p-b-45 {
	padding-bottom: 45px !important;
}
.p-b-50 {
	padding-bottom: 50px !important;
}
.p-b-auto {
	padding-bottom: auto !important;
}

.p-l-0 {
	padding-left: 0 !important;
}
.p-l-1 {
	padding-left: 1px !important;
}
.p-l-2 {
	padding-left: 2px !important;
}
.p-l-3 {
	padding-left: 3px !important;
}
.p-l-4 {
	padding-left: 4px !important;
}
.p-l-5 {
	padding-left: 5px !important;
}
.p-l-10 {
	padding-left: 10px !important;
}
.p-l-15 {
	padding-left: 15px !important;
}
.p-l-20 {
	padding-left: 20px !important;
}
.p-l-25 {
	padding-left: 25px !important;
}
.p-l-30 {
	padding-left: 30px !important;
}
.p-l-35 {
	padding-left: 35px !important;
}
.p-l-40 {
	padding-left: 40px !important;
}
.p-l-45 {
	padding-left: 45px !important;
}
.p-l-50 {
	padding-left: 50px !important;
}
.p-l-auto {
	padding-left: auto !important;
}



/*******************
Background
*******************/

/* helper to display colors */
.bg-color-box {
	height: 20px;
	width: 20px;
	border-radius: 5px;
	display: inline-block;
	margin-right: 5px;
}
.text-color-box {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
}

/* Background - Yellow */
.bg-yellow,
.bg-yellow::before,
.bg-yellow::after,
.bg-yellow .pie-circle {
	background: #ffed00 !important;
}
.bg-yellow-lighter {
	background: rgb(255, 255, 111) !important;
}
.bg-yellow-darker {
	background: rgb(190, 190, 21) !important;
}
.bg-yellow-transparent-9 {
	background: #ffed00 !important;
	opacity: .9 !important;
}
.bg-yellow-transparent-8 {
	background: #ffed00 !important;
	opacity: .8 !important;
}
.bg-yellow-transparent-7 {
	background: #ffed00 !important;
	opacity: .7 !important;
}
.bg-yellow-transparent-6 {
	background: #ffed00 !important;
	opacity: .6 !important;
}
.bg-yellow-transparent-5 {
	background: #ffed00 !important;
	opacity: .5 !important;
}
.bg-yellow-transparent-4 {
	background: #ffed00 !important;
	opacity: .4 !important;
}
.bg-yellow-transparent-3 {
	background: #ffed00 !important;
	opacity: .3 !important;
}
.bg-yellow-transparent-2 {
	background: #ffed00 !important;
	opacity: .2 !important;
}
.bg-yellow-transparent-1 {
	background: #ffed00 !important;
	opacity: .1 !important;
}
/* Text - Yellow */
.text-yellow {
	color: #ffed00 !important;
}
.text-yellow-lighter {
	color: rgb(255, 255, 111) !important;
}
.text-yellow-darker {
	color: rgb(190, 190, 21) !important;
}
.text-yellow-transparent-9 {
	color: #ffed00 !important;
	opacity: .9 !important;
}
.text-yellow-transparent-8 {
	color: #ffed00 !important;
	opacity: .8 !important;
}
.text-yellow-transparent-7 {
	color: #ffed00 !important;
	opacity: .7 !important;
}
.text-yellow-transparent-6 {
	color: #ffed00 !important;
	opacity: .6 !important;
}
.text-yellow-transparent-5 {
	color: #ffed00 !important;
	opacity: .5 !important;
}
.text-yellow-transparent-4 {
	color: #ffed00 !important;
	opacity: .4 !important;
}
.text-yellow-transparent-3 {
	color: #ffed00 !important;
	opacity: .3 !important;
}
.text-yellow-transparent-2 {
	color: #ffed00 !important;
	opacity: .2 !important;
}
.text-yellow-transparent-1 {
	color: #ffed00 !important;
	opacity: .1 !important;
}

/* Background - Orange */
.bg-orange,
.bg-orange::before,
.bg-orange::after,
.bg-warning,
.bg-warning .pie-circle,
.bg-orange .pie-circle {
	background: #f5a20a !important;
}
.bg-orange-lighter {
	background: #f5ba4c !important;
}
.bg-orange-darker {
	background: #c27400 !important;
}
.bg-orange-transparent-9 {
	background: #f5a20a !important;
	opacity: .9 !important;
}
.bg-orange-transparent-8 {
	background: #f5a20a !important;
	opacity: .8 !important;
}
.bg-orange-transparent-7 {
	background: #f5a20a !important;
	opacity: .7 !important;
}
.bg-orange-transparent-6 {
	background: #f5a20a !important;
	opacity: .6 !important;
}
.bg-orange-transparent-5 {
	background: #f5a20a !important;
	opacity: .5 !important;
}
.bg-orange-transparent-4 {
	background: #f5a20a !important;
	opacity: .4 !important;
}
.bg-orange-transparent-3 {
	background: #f5a20a !important;
	opacity: .3 !important;
}
.bg-orange-transparent-2 {
	background: #f5a20a !important;
	opacity: .2 !important;
}
.bg-orange-transparent-1 {
	background: #f5a20a !important;
	opacity: .1 !important;
}
/* Text - Orange */
.text-orange,
.text-warning {
	color: #f5a20a !important;
}
.text-orange-lighter {
	color: #f5ba4c !important;
}
.text-orange-darker {
	color: #c27400 !important;
}
.text-orange-transparent-9 {
	color: #f5a20a !important;
	opacity: .9 !important;
}
.text-orange-transparent-8 {
	color: #f5a20a !important;
	opacity: .8 !important;
}
.text-orange-transparent-7 {
	color: #f5a20a !important;
	opacity: .7 !important;
}
.text-orange-transparent-6 {
	color: #f5a20a !important;
	opacity: .6 !important;
}
.text-orange-transparent-5 {
	color: #f5a20a !important;
	opacity: .5 !important;
}
.text-orange-transparent-4 {
	color: #f5a20a !important;
	opacity: .4 !important;
}
.text-orange-transparent-3 {
	color: #f5a20a !important;
	opacity: .3 !important;
}
.text-orange-transparent-2 {
	color: #f5a20a !important;
	opacity: .2 !important;
}
.text-orange-transparent-1 {
	color: #f5a20a !important;
	opacity: .1 !important;
}

/* Background - Red */
.bg-red,
.bg-red::before,
.bg-red::after,
.bg-danger,
.bg-danger .pie-circle,
.bg-red .pie-circle {
	background: #d61a1a !important;
}
.bg-red-lighter {
	background: #fd6666 !important;
}
.bg-red-darker {
	background: #bd1111 !important;
}
.bg-red-transparent-9 {
	background: #d61a1a !important;
	opacity: .9 !important;
}
.bg-red-transparent-8 {
	background: #d61a1a !important;
	opacity: .8 !important;
}
.bg-red-transparent-7 {
	background: #d61a1a !important;
	opacity: .7 !important;
}
.bg-red-transparent-6 {
	background: #d61a1a !important;
	opacity: .6 !important;
}
.bg-red-transparent-5 {
	background: #d61a1a !important;
	opacity: .5 !important;
}
.bg-red-transparent-4 {
	background: #d61a1a !important;
	opacity: .4 !important;
}
.bg-red-transparent-3 {
	background: #d61a1a !important;
	opacity: .3 !important;
}
.bg-red-transparent-2 {
	background: #d61a1a !important;
	opacity: .2 !important;
}
.bg-red-transparent-1 {
	background: #d61a1a !important;
	opacity: .1 !important;
}
/* Text - Red */
.text-red,
.text-danger {
	color: #d61a1a !important;
}
.text-red-lighter {
	color: #fd6666 !important;
}
.text-red-darker {
	color: #bd1111 !important;
}
.text-red-transparent-9 {
	color: #d61a1a !important;
	opacity: .9 !important;
}
.text-red-transparent-8 {
	color: #d61a1a !important;
	opacity: .8 !important;
}
.text-red-transparent-7 {
	color: #d61a1a !important;
	opacity: .7 !important;
}
.text-red-transparent-6 {
	color: #d61a1a !important;
	opacity: .6 !important;
}
.text-red-transparent-5 {
	color: #d61a1a !important;
	opacity: .5 !important;
}
.text-red-transparent-4 {
	color: #d61a1a !important;
	opacity: .4 !important;
}
.text-red-transparent-3 {
	color: #d61a1a !important;
	opacity: .3 !important;
}
.text-red-transparent-2 {
	color: #d61a1a !important;
	opacity: .2 !important;
}
.text-red-transparent-1 {
	color: #d61a1a !important;
	opacity: .1 !important;
}

/* Background - Brown */
.bg-brown,
.bg-brown::before,
.bg-brown::after,
.bg-brown .pie-circle {
	background: #693323 !important;
}
.bg-brown-lighter {
	background: #8d4c39 !important;
}
.bg-brown-darker {
	background: #5a291b !important;
}
.bg-brown-transparent-9 {
	background: #693323 !important;
	opacity: .9 !important;
}
.bg-brown-transparent-8 {
	background: #693323 !important;
	opacity: .8 !important;
}
.bg-brown-transparent-7 {
	background: #693323 !important;
	opacity: .7 !important;
}
.bg-brown-transparent-6 {
	background: #693323 !important;
	opacity: .6 !important;
}
.bg-brown-transparent-5 {
	background: #693323 !important;
	opacity: .5 !important;
}
.bg-brown-transparent-4 {
	background: #693323 !important;
	opacity: .4 !important;
}
.bg-brown-transparent-3 {
	background: #693323 !important;
	opacity: .3 !important;
}
.bg-brown-transparent-2 {
	background: #693323 !important;
	opacity: .2 !important;
}
.bg-brown-transparent-1 {
	background: #693323 !important;
	opacity: .1 !important;
}
/* Text - Brown */
.text-brown {
	color: #693323 !important;
}
.text-brown-lighter {
	color: #8d4c39 !important;
}
.text-brown-darker {
	color: #5a291b !important;
}
.text-brown-transparent-9 {
	color: #693323 !important;
	opacity: .9 !important;
}
.text-brown-transparent-8 {
	color: #693323 !important;
	opacity: .8 !important;
}
.text-brown-transparent-7 {
	color: #693323 !important;
	opacity: .7 !important;
}
.text-brown-transparent-6 {
	color: #693323 !important;
	opacity: .6 !important;
}
.text-brown-transparent-5 {
	color: #693323 !important;
	opacity: .5 !important;
}
.text-brown-transparent-4 {
	color: #693323 !important;
	opacity: .4 !important;
}
.text-brown-transparent-3 {
	color: #693323 !important;
	opacity: .3 !important;
}
.text-brown-transparent-2 {
	color: #693323 !important;
	opacity: .2 !important;
}
.text-brown-transparent-1 {
	color: #693323 !important;
	opacity: .1 !important;
}

/* Background - Lime */
.bg-lime,
.bg-lime::before,
.bg-lime::after,
.bg-success,
.bg-success .pie-circle,
.bg-lime .pie-circle {
	background: #adca40 !important;
}
.bg-lime-lighter {
	background: #bce766 !important;
}
.bg-lime-darker {
	background: #77a718 !important;
}
.bg-lime-transparent-9 {
	background: #adca40 !important;
	opacity: .9 !important;
}
.bg-lime-transparent-8 {
	background: #adca40 !important;
	opacity: .8 !important;
}
.bg-lime-transparent-7 {
	background: #adca40 !important;
	opacity: .7 !important;
}
.bg-lime-transparent-6 {
	background: #adca40 !important;
	opacity: .6 !important;
}
.bg-lime-transparent-5 {
	background: #adca40 !important;
	opacity: .5 !important;
}
.bg-lime-transparent-4 {
	background: #adca40 !important;
	opacity: .4 !important;
}
.bg-lime-transparent-3 {
	background: #adca40 !important;
	opacity: .3 !important;
}
.bg-lime-transparent-2 {
	background: #adca40 !important;
	opacity: .2 !important;
}
.bg-lime-transparent-1 {
	background: #adca40 !important;
	opacity: .1 !important;
}
/* Text - Lime */
.text-lime,
.text-success {
	color: #adca40 !important;
}
.text-lime-lighter {
	color: #bce766 !important;
}
.text-lime-darker {
	color: #77a718 !important;
}
.text-lime-transparent-9 {
	color: #adca40 !important;
	opacity: .9 !important;
}
.text-lime-transparent-8 {
	color: #adca40 !important;
	opacity: .8 !important;
}
.text-lime-transparent-7 {
	color: #adca40 !important;
	opacity: .7 !important;
}
.text-lime-transparent-6 {
	color: #adca40 !important;
	opacity: .6 !important;
}
.text-lime-transparent-5 {
	color: #adca40 !important;
	opacity: .5 !important;
}
.text-lime-transparent-4 {
	color: #adca40 !important;
	opacity: .4 !important;
}
.text-lime-transparent-3 {
	color: #adca40 !important;
	opacity: .3 !important;
}
.text-lime-transparent-2 {
	color: #adca40 !important;
	opacity: .2 !important;
}
.text-lime-transparent-1 {
	color: #adca40 !important;
	opacity: .1 !important;
}

/* Background - Olive */
.bg-olive,
.bg-olive::before,
.bg-olive::after,
.bg-olive .pie-circle {
	background: #727201 !important;
}
.bg-olive-lighter {
	background: #86860e !important;
}
.bg-olive-darker {
	background: #525203 !important;
}
.bg-olive-transparent-9 {
	background: #727201 !important;
	opacity: .9 !important;
}
.bg-olive-transparent-8 {
	background: #727201 !important;
	opacity: .8 !important;
}
.bg-olive-transparent-7 {
	background: #727201 !important;
	opacity: .7 !important;
}
.bg-olive-transparent-6 {
	background: #727201 !important;
	opacity: .6 !important;
}
.bg-olive-transparent-5 {
	background: #727201 !important;
	opacity: .5 !important;
}
.bg-olive-transparent-4 {
	background: #727201 !important;
	opacity: .4 !important;
}
.bg-olive-transparent-3 {
	background: #727201 !important;
	opacity: .3 !important;
}
.bg-olive-transparent-2 {
	background: #727201 !important;
	opacity: .2 !important;
}
.bg-olive-transparent-1 {
	background: #727201 !important;
	opacity: .1 !important;
}
/* Text - Olive */
.text-olive {
	color: #727201 !important;
}
.text-olive-lighter {
	color: #86860e !important;
}
.text-olive-darker {
	color: #525203 !important;
}
.text-olive-transparent-9 {
	color: #727201 !important;
	opacity: .9 !important;
}
.text-olive-transparent-8 {
	color: #727201 !important;
	opacity: .8 !important;
}
.text-olive-transparent-7 {
	color: #727201 !important;
	opacity: .7 !important;
}
.text-olive-transparent-6 {
	color: #727201 !important;
	opacity: .6 !important;
}
.text-olive-transparent-5 {
	color: #727201 !important;
	opacity: .5 !important;
}
.text-olive-transparent-4 {
	color: #727201 !important;
	opacity: .4 !important;
}
.text-olive-transparent-3 {
	color: #727201 !important;
	opacity: .3 !important;
}
.text-olive-transparent-2 {
	color: #727201 !important;
	opacity: .2 !important;
}
.text-olive-transparent-1 {
	color: #727201 !important;
	opacity: .1 !important;
}

/* Background - Darkolive */
.bg-darkolive,
.bg-darkolive::before,
.bg-darkolive::after,
.bg-darkolive .pie-circle {
	background: #495c29 !important;
}
.bg-darkolive-lighter {
	background: #5d7238 !important;
}
.bg-darkolive-darker {
	background: #36441f !important;
}
.bg-darkolive-transparent-9 {
	background: #495c29 !important;
	opacity: .9 !important;
}
.bg-darkolive-transparent-8 {
	background: #495c29 !important;
	opacity: .8 !important;
}
.bg-darkolive-transparent-7 {
	background: #495c29 !important;
	opacity: .7 !important;
}
.bg-darkolive-transparent-6 {
	background: #495c29 !important;
	opacity: .6 !important;
}
.bg-darkolive-transparent-5 {
	background: #495c29 !important;
	opacity: .5 !important;
}
.bg-darkolive-transparent-4 {
	background: #495c29 !important;
	opacity: .4 !important;
}
.bg-darkolive-transparent-3 {
	background: #495c29 !important;
	opacity: .3 !important;
}
.bg-darkolive-transparent-2 {
	background: #495c29 !important;
	opacity: .2 !important;
}
.bg-darkolive-transparent-1 {
	background: #495c29 !important;
	opacity: .1 !important;
}
/* Text - Darkolive */
.text-darkolive {
	color: #495c29 !important;
}
.text-darkolive-lighter {
	color: #5d7238 !important;
}
.text-darkolive-darker {
	color: #36441f !important;
}
.text-darkolive-transparent-9 {
	color: #495c29 !important;
	opacity: .9 !important;
}
.text-darkolive-transparent-8 {
	color: #495c29 !important;
	opacity: .8 !important;
}
.text-darkolive-transparent-7 {
	color: #495c29 !important;
	opacity: .7 !important;
}
.text-darkolive-transparent-6 {
	color: #495c29 !important;
	opacity: .6 !important;
}
.text-darkolive-transparent-5 {
	color: #495c29 !important;
	opacity: .5 !important;
}
.text-darkolive-transparent-4 {
	color: #495c29 !important;
	opacity: .4 !important;
}
.text-darkolive-transparent-3 {
	color: #495c29 !important;
	opacity: .3 !important;
}
.text-darkolive-transparent-2 {
	color: #495c29 !important;
	opacity: .2 !important;
}
.text-darkolive-transparent-1 {
	color: #495c29 !important;
	opacity: .1 !important;
}

/* Background - Green */
.bg-green,
.bg-green::before,
.bg-green::after,
.bg-green .pie-circle {
	background: #038803 !important;
}
.bg-green-lighter {
	background: #229b22 !important;
}
.bg-green-darker {
	background: #036603 !important;
}
.bg-green-transparent-9 {
	background: #038803 !important;
	opacity: .9 !important;
}
.bg-green-transparent-8 {
	background: #038803 !important;
	opacity: .8 !important;
}
.bg-green-transparent-7 {
	background: #038803 !important;
	opacity: .7 !important;
}
.bg-green-transparent-6 {
	background: #038803 !important;
	opacity: .6 !important;
}
.bg-green-transparent-5 {
	background: #038803 !important;
	opacity: .5 !important;
}
.bg-green-transparent-4 {
	background: #038803 !important;
	opacity: .4 !important;
}
.bg-green-transparent-3 {
	background: #038803 !important;
	opacity: .3 !important;
}
.bg-green-transparent-2 {
	background: #038803 !important;
	opacity: .2 !important;
}
.bg-green-transparent-1 {
	background: #038803 !important;
	opacity: .1 !important;
}
/* Text - Green */
.text-green {
	color: #038803 !important;
}
.text-green-lighter {
	color: #229b22 !important;
}
.text-green-darker {
	color: #036603 !important;
}
.text-green-transparent-9 {
	color: #038803 !important;
	opacity: .9 !important;
}
.text-green-transparent-8 {
	color: #038803 !important;
	opacity: .8 !important;
}
.text-green-transparent-7 {
	color: #038803 !important;
	opacity: .7 !important;
}
.text-green-transparent-6 {
	color: #038803 !important;
	opacity: .6 !important;
}
.text-green-transparent-5 {
	color: #038803 !important;
	opacity: .5 !important;
}
.text-green-transparent-4 {
	color: #038803 !important;
	opacity: .4 !important;
}
.text-green-transparent-3 {
	color: #038803 !important;
	opacity: .3 !important;
}
.text-green-transparent-2 {
	color: #038803 !important;
	opacity: .2 !important;
}
.text-green-transparent-1 {
	color: #038803 !important;
	opacity: .1 !important;
}

/* Background - Lightblue */
.bg-lightblue,
.bg-lightblue::before,
.bg-lightblue::after,
.bg-lightblue .pie-circle {
	background: #9bc5cf !important;
}
.bg-lightblue-lighter {
	background: #adcad1 !important;
}
.bg-lightblue-darker {
	background: #6ca0ad !important;
}
.bg-lightblue-transparent-9 {
	background: #9bc5cf !important;
	opacity: .9 !important;
}
.bg-lightblue-transparent-8 {
	background: #9bc5cf !important;
	opacity: .8 !important;
}
.bg-lightblue-transparent-7 {
	background: #9bc5cf !important;
	opacity: .7 !important;
}
.bg-lightblue-transparent-6 {
	background: #9bc5cf !important;
	opacity: .6 !important;
}
.bg-lightblue-transparent-5 {
	background: #9bc5cf !important;
	opacity: .5 !important;
}
.bg-lightblue-transparent-4 {
	background: #9bc5cf !important;
	opacity: .4 !important;
}
.bg-lightblue-transparent-3 {
	background: #9bc5cf !important;
	opacity: .3 !important;
}
.bg-lightblue-transparent-2 {
	background: #9bc5cf !important;
	opacity: .2 !important;
}
.bg-lightblue-transparent-1 {
	background: #9bc5cf !important;
	opacity: .1 !important;
}
/* Text - Lightblue */
.text-lightblue {
	color: #9bc5cf !important;
}
.text-lightblue-lighter {
	color: #adcad1 !important;
}
.text-lightblue-darker {
	color: #6ca0ad !important;
}
.text-lightblue-transparent-9 {
	color: #9bc5cf !important;
	opacity: .9 !important;
}
.text-lightblue-transparent-8 {
	color: #9bc5cf !important;
	opacity: .8 !important;
}
.text-lightblue-transparent-7 {
	color: #9bc5cf !important;
	opacity: .7 !important;
}
.text-lightblue-transparent-6 {
	color: #9bc5cf !important;
	opacity: .6 !important;
}
.text-lightblue-transparent-5 {
	color: #9bc5cf !important;
	opacity: .5 !important;
}
.text-lightblue-transparent-4 {
	color: #9bc5cf !important;
	opacity: .4 !important;
}
.text-lightblue-transparent-3 {
	color: #9bc5cf !important;
	opacity: .3 !important;
}
.text-lightblue-transparent-2 {
	color: #9bc5cf !important;
	opacity: .2 !important;
}
.text-lightblue-transparent-1 {
	color: #9bc5cf !important;
	opacity: .1 !important;
}


/* Background - Cadetblue */
.bg-cadetblue,
.bg-cadetblue::before,
.bg-cadetblue::after,
.bg-cadetblue .pie-circle {
	background: #57a2a5 !important;
}
.bg-cadetblue-lighter {
	background: #84c0c2 !important;
}
.bg-cadetblue-darker {
	background: #3d7c7e !important;
}
.bg-cadetblue-transparent-9 {
	background: #57a2a5 !important;
	opacity: .9 !important;
}
.bg-cadetblue-transparent-8 {
	background: #57a2a5 !important;
	opacity: .8 !important;
}
.bg-cadetblue-transparent-7 {
	background: #57a2a5 !important;
	opacity: .7 !important;
}
.bg-cadetblue-transparent-6 {
	background: #57a2a5 !important;
	opacity: .6 !important;
}
.bg-cadetblue-transparent-5 {
	background: #57a2a5 !important;
	opacity: .5 !important;
}
.bg-cadetblue-transparent-4 {
	background: #57a2a5 !important;
	opacity: .4 !important;
}
.bg-cadetblue-transparent-3 {
	background: #57a2a5 !important;
	opacity: .3 !important;
}
.bg-cadetblue-transparent-2 {
	background: #57a2a5 !important;
	opacity: .2 !important;
}
.bg-cadetblue-transparent-1 {
	background: #57a2a5 !important;
	opacity: .1 !important;
}
/* Text - Cadetblue */
.text-cadetblue {
	color: #57a2a5 !important;
}
.text-cadetblue-lighter {
	color: #84c0c2 !important;
}
.text-cadetblue-darker {
	color: #3d7c7e !important;
}
.text-cadetblue-transparent-9 {
	color: #57a2a5 !important;
	opacity: .9 !important;
}
.text-cadetblue-transparent-8 {
	color: #57a2a5 !important;
	opacity: .8 !important;
}
.text-cadetblue-transparent-7 {
	color: #57a2a5 !important;
	opacity: .7 !important;
}
.text-cadetblue-transparent-6 {
	color: #57a2a5 !important;
	opacity: .6 !important;
}
.text-cadetblue-transparent-5 {
	color: #57a2a5 !important;
	opacity: .5 !important;
}
.text-cadetblue-transparent-4 {
	color: #57a2a5 !important;
	opacity: .4 !important;
}
.text-cadetblue-transparent-3 {
	color: #57a2a5 !important;
	opacity: .3 !important;
}
.text-cadetblue-transparent-2 {
	color: #57a2a5 !important;
	opacity: .2 !important;
}
.text-cadetblue-transparent-1 {
	color: #57a2a5 !important;
	opacity: .1 !important;
}

/* Background - Steelblue */
.bg-steelblue,
.bg-steelblue::before,
.bg-steelblue::after,
.bg-info,
.bg-info .pie-circle,
.bg-steelblue .pie-circle {
	background: #467fad !important;
}
.bg-steelblue-lighter {
	background: #6692b6 !important;
}
.bg-steelblue-darker {
	background: #3b668a !important;
}
.bg-steelblue-transparent-9 {
	background: #467fad !important;
	opacity: .9 !important;
}
.bg-steelblue-transparent-8 {
	background: #467fad !important;
	opacity: .8 !important;
}
.bg-steelblue-transparent-7 {
	background: #467fad !important;
	opacity: .7 !important;
}
.bg-steelblue-transparent-6 {
	background: #467fad !important;
	opacity: .6 !important;
}
.bg-steelblue-transparent-5 {
	background: #467fad !important;
	opacity: .5 !important;
}
.bg-steelblue-transparent-4 {
	background: #467fad !important;
	opacity: .4 !important;
}
.bg-steelblue-transparent-3 {
	background: #467fad !important;
	opacity: .3 !important;
}
.bg-steelblue-transparent-2 {
	background: #467fad !important;
	opacity: .2 !important;
}
.bg-steelblue-transparent-1 {
	background: #467fad !important;
	opacity: .1 !important;
}
/* Text - Steelblue */
.text-steelblue,
.text-info {
	color: #467fad !important;
}
.text-steelblue-lighter {
	color: #6692b6 !important;
}
.text-steelblue-darker {
	color: #3b668a !important;
}
.text-steelblue-transparent-9 {
	color: #467fad !important;
	opacity: .9 !important;
}
.text-steelblue-transparent-8 {
	color: #467fad !important;
	opacity: .8 !important;
}
.text-steelblue-transparent-7 {
	color: #467fad !important;
	opacity: .7 !important;
}
.text-steelblue-transparent-6 {
	color: #467fad !important;
	opacity: .6 !important;
}
.text-steelblue-transparent-5 {
	color: #467fad !important;
	opacity: .5 !important;
}
.text-steelblue-transparent-4 {
	color: #467fad !important;
	opacity: .4 !important;
}
.text-steelblue-transparent-3 {
	color: #467fad !important;
	opacity: .3 !important;
}
.text-steelblue-transparent-2 {
	color: #467fad !important;
	opacity: .2 !important;
}
.text-steelblue-transparent-1 {
	color: #467fad !important;
	opacity: .1 !important;
}

/* Background - Violet */
.bg-violet,
.bg-violet::before,
.bg-violet::after,
.bg-violet .pie-circle {
	background: #8624e2 !important;
}
.bg-violet-lighter {
	background: #a462e2 !important;
}
.bg-violet-darker {
	background: #6016a5 !important;
}
.bg-violet-transparent-9 {
	background: #8624e2 !important;
	opacity: .9 !important;
}
.bg-violet-transparent-8 {
	background: #8624e2 !important;
	opacity: .8 !important;
}
.bg-violet-transparent-7 {
	background: #8624e2 !important;
	opacity: .7 !important;
}
.bg-violet-transparent-6 {
	background: #8624e2 !important;
	opacity: .6 !important;
}
.bg-violet-transparent-5 {
	background: #8624e2 !important;
	opacity: .5 !important;
}
.bg-violet-transparent-4 {
	background: #8624e2 !important;
	opacity: .4 !important;
}
.bg-violet-transparent-3 {
	background: #8624e2 !important;
	opacity: .3 !important;
}
.bg-violet-transparent-2 {
	background: #8624e2 !important;
	opacity: .2 !important;
}
.bg-violet-transparent-1 {
	background: #8624e2 !important;
	opacity: .1 !important;
}
/* Text - Violet */
.text-violet {
	color: #8624e2 !important;
}
.text-violet-lighter {
	color: #a462e2 !important;
}
.text-violet-darker {
	color: #6016a5 !important;
}
.text-violet-transparent-9 {
	color: #8624e2 !important;
	opacity: .9 !important;
}
.text-violet-transparent-8 {
	color: #8624e2 !important;
	opacity: .8 !important;
}
.text-violet-transparent-7 {
	color: #8624e2 !important;
	opacity: .7 !important;
}
.text-violet-transparent-6 {
	color: #8624e2 !important;
	opacity: .6 !important;
}
.text-violet-transparent-5 {
	color: #8624e2 !important;
	opacity: .5 !important;
}
.text-violet-transparent-4 {
	color: #8624e2 !important;
	opacity: .4 !important;
}
.text-violet-transparent-3 {
	color: #8624e2 !important;
	opacity: .3 !important;
}
.text-violet-transparent-2 {
	color: #8624e2 !important;
	opacity: .2 !important;
}
.text-violet-transparent-1 {
	color: #8624e2 !important;
	opacity: .1 !important;
}

/* Background - Lightgrey */
.bg-lightgrey,
.bg-lightgrey::before,
.bg-lightgrey::after,
.bg-default,
.bg-default .pie-circle,
.bg-lightgrey .pie-circle {
	background: #e6e6e6 !important;
}
.bg-lightgrey-lighter {
	background: #eeeeee !important;
}
.bg-lightgrey-darker {
	background: #cacaca !important;
}
.bg-lightgrey-transparent-9 {
	background: #e6e6e6 !important;
	opacity: .9 !important;
}
.bg-lightgrey-transparent-8 {
	background: #e6e6e6 !important;
	opacity: .8 !important;
}
.bg-lightgrey-transparent-7 {
	background: #e6e6e6 !important;
	opacity: .7 !important;
}
.bg-lightgrey-transparent-6 {
	background: #e6e6e6 !important;
	opacity: .6 !important;
}
.bg-lightgrey-transparent-5 {
	background: #e6e6e6 !important;
	opacity: .5 !important;
}
.bg-lightgrey-transparent-4 {
	background: #e6e6e6 !important;
	opacity: .4 !important;
}
.bg-lightgrey-transparent-3 {
	background: #e6e6e6 !important;
	opacity: .3 !important;
}
.bg-lightgrey-transparent-2 {
	background: #e6e6e6 !important;
	opacity: .2 !important;
}
.bg-lightgrey-transparent-1 {
	background: #e6e6e6 !important;
	opacity: .1 !important;
}
/* Text - Lightgrey */
.text-lightgrey {
	color: #e6e6e6 !important;
}
.text-lightgrey-lighter {
	color: #eeeeee !important;
}
.text-lightgrey-darker,
.text-muted {
	color: #cacaca !important;
}
.text-lightgrey-transparent-9 {
	color: #e6e6e6 !important;
	opacity: .9 !important;
}
.text-lightgrey-transparent-8 {
	color: #e6e6e6 !important;
	opacity: .8 !important;
}
.text-lightgrey-transparent-7 {
	color: #e6e6e6 !important;
	opacity: .7 !important;
}
.text-lightgrey-transparent-6 {
	color: #e6e6e6 !important;
	opacity: .6 !important;
}
.text-lightgrey-transparent-5 {
	color: #e6e6e6 !important;
	opacity: .5 !important;
}
.text-lightgrey-transparent-4 {
	color: #e6e6e6 !important;
	opacity: .4 !important;
}
.text-lightgrey-transparent-3 {
	color: #e6e6e6 !important;
	opacity: .3 !important;
}
.text-lightgrey-transparent-2 {
	color: #e6e6e6 !important;
	opacity: .2 !important;
}
.text-lightgrey-transparent-1 {
	color: #e6e6e6 !important;
	opacity: .1 !important;
}

/* Background - Grey */
.bg-grey,
.bg-grey::before,
.bg-grey::after,
.bg-grey .pie-circle {
	background: #707070 !important;
}
.bg-grey-lighter {
	background: #929292 !important;
}
.bg-grey-darker {
	background: #444444 !important;
}
.bg-grey-transparent-9 {
	background: #707070 !important;
	opacity: .9 !important;
}
.bg-grey-transparent-8 {
	background: #707070 !important;
	opacity: .8 !important;
}
.bg-grey-transparent-7 {
	background: #707070 !important;
	opacity: .7 !important;
}
.bg-grey-transparent-6 {
	background: #707070 !important;
	opacity: .6 !important;
}
.bg-grey-transparent-5 {
	background: #707070 !important;
	opacity: .5 !important;
}
.bg-grey-transparent-4 {
	background: #707070 !important;
	opacity: .4 !important;
}
.bg-grey-transparent-3 {
	background: #707070 !important;
	opacity: .3 !important;
}
.bg-grey-transparent-2 {
	background: #707070 !important;
	opacity: .2 !important;
}
.bg-grey-transparent-1 {
	background: #707070 !important;
	opacity: .1 !important;
}
/* Text - Grey */
.text-grey {
	color: #707070 !important;
}
.text-grey-lighter {
	color: #929292 !important;
}
.text-grey-darker {
	color: #444444 !important;
}
.text-grey-transparent-9 {
	color: #707070 !important;
	opacity: .9 !important;
}
.text-grey-transparent-8 {
	color: #707070 !important;
	opacity: .8 !important;
}
.text-grey-transparent-7 {
	color: #707070 !important;
	opacity: .7 !important;
}
.text-grey-transparent-6 {
	color: #707070 !important;
	opacity: .6 !important;
}
.text-grey-transparent-5 {
	color: #707070 !important;
	opacity: .5 !important;
}
.text-grey-transparent-4 {
	color: #707070 !important;
	opacity: .4 !important;
}
.text-grey-transparent-3 {
	color: #707070 !important;
	opacity: .3 !important;
}
.text-grey-transparent-2 {
	color: #707070 !important;
	opacity: .2 !important;
}
.text-grey-transparent-1 {
	color: #707070 !important;
	opacity: .1 !important;
}

/* Background - Black */
.bg-black,
.bg-black::before,
.bg-black::after,
.bg-black .pie-circle {
	background: #141414 !important;
}
.bg-black-lighter {
	background: #313131 !important;
}
.bg-black-darker {
	background: #141414 !important;
}
.bg-black-transparent-9 {
	background: #141414 !important;
	opacity: .9 !important;
}
.bg-black-transparent-8 {
	background: #141414 !important;
	opacity: .8 !important;
}
.bg-black-transparent-7 {
	background: #141414 !important;
	opacity: .7 !important;
}
.bg-black-transparent-6 {
	background: #141414 !important;
	opacity: .6 !important;
}
.bg-black-transparent-5 {
	background: #141414 !important;
	opacity: .5 !important;
}
.bg-black-transparent-4 {
	background: #141414 !important;
	opacity: .4 !important;
}
.bg-black-transparent-3 {
	background: #141414 !important;
	opacity: .3 !important;
}
.bg-black-transparent-2 {
	background: #141414 !important;
	opacity: .2 !important;
}
.bg-black-transparent-1 {
	background: #141414 !important;
	opacity: .1 !important;
}
/* Text - Black */
.text-night {
	color: #27272e !important;
}
.text-black {
	color: #141414 !important;
}
.text-black-lighter {
	color: #313131 !important;
}
.text-black-darker {
	color: #141414 !important;
}
.text-black-transparent-9 {
	color: #141414 !important;
	opacity: .9 !important;
}
.text-black-transparent-8 {
	color: #141414 !important;
	opacity: .8 !important;
}
.text-black-transparent-7 {
	color: #141414 !important;
	opacity: .7 !important;
}
.text-black-transparent-6 {
	color: #141414 !important;
	opacity: .6 !important;
}
.text-black-transparent-5 {
	color: #141414 !important;
	opacity: .5 !important;
}
.text-black-transparent-4 {
	color: #141414 !important;
	opacity: .4 !important;
}
.text-black-transparent-3 {
	color: #141414 !important;
	opacity: .3 !important;
}
.text-black-transparent-2 {
	color: #141414 !important;
	opacity: .2 !important;
}
.text-black-transparent-1 {
	color: #141414 !important;
	opacity: .1 !important;
}

/* Background - White */
.bg-white,
.bg-white::before,
.bg-white::after,
.bg-white .pie-circle {
	background: #ffffff !important;
}
.bg-white-transparent-9 {
	background: #ffffff !important;
	opacity: .9 !important;
}
.bg-white-transparent-8 {
	background: #ffffff !important;
	opacity: .8 !important;
}
.bg-white-transparent-7 {
	background: #ffffff !important;
	opacity: .7 !important;
}
.bg-white-transparent-6 {
	background: #ffffff !important;
	opacity: .6 !important;
}
.bg-white-transparent-5 {
	background: #ffffff !important;
	opacity: .5 !important;
}
.bg-white-transparent-4 {
	background: #ffffff !important;
	opacity: .4 !important;
}
.bg-white-transparent-3 {
	background: #ffffff !important;
	opacity: .3 !important;
}
.bg-white-transparent-2 {
	background: #ffffff !important;
	opacity: .2 !important;
}
.bg-white-transparent-1 {
	background: #ffffff !important;
	opacity: .1 !important;
}
/* Text - White */
.text-white {
	color: #ffffff !important;
}
.text-white-transparent-9 {
	color: #ffffff !important;
	opacity: .9 !important;
}
.text-white-transparent-8 {
	color: #ffffff !important;
	opacity: .8 !important;
}
.text-white-transparent-7 {
	color: #ffffff !important;
	opacity: .7 !important;
}
.text-white-transparent-6 {
	color: #ffffff !important;
	opacity: .6 !important;
}
.text-white-transparent-5 {
	color: #ffffff !important;
	opacity: .5 !important;
}
.text-white-transparent-4 {
	color: #ffffff !important;
	opacity: .4 !important;
}
.text-white-transparent-3 {
	color: #ffffff !important;
	opacity: .3 !important;
}
.text-white-transparent-2 {
	color: #ffffff !important;
	opacity: .2 !important;
}
.text-white-transparent-1 {
	color: #ffffff !important;
	opacity: .1 !important;
}




/***********************************************************************************************
>>	16.0	Mobile
************************************************************************************************/

/* MOBILE + NOMOBILE */
@media (max-width: 769px) {
	.nomobile {
		display: none !important;
	}
	.modal-medium,
	.modal-notify {
		width: unset !important;
	}
	.modal-mobile {
		height: 100%;
		top: 0;
	}
	.breadcrumbs {
		display:none;
	}
	.card-header a,
	.card-footer a {
		display: inline-block;
	}
	.mobile-small {
		font-size: 70%;
	}
	.mobile-border-bottom {
		border-bottom: 1px dashed lightgrey;
		margin-bottom: 5px;
		padding-bottom: 5px;
	}
	.mobile-m-t-5 {
		margin-top: 5px;
	}
	.mobile-m-t-10 {
		margin-top: 10px;
	}
	.mobile-m-b-5 {
		margin-bottom: 5px;
	}
	.mobile-m-b-5 {
		margin-bottom: 10px;
	}
	.chat {
		width: auto !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		margin-bottom: 0 !important;
	}
	.mobile-display-block {
		display: block !important;
	}
}
@media (min-width: 769px) {
	.onlymobile {
		display: none !important;
	}
}
/* TABLED + NOTABLET */
@media (max-width: 1198px) {
	.notablet {
		display: none !important;
	}
}
@media (min-width: 1199px) {
	.onlytablet {
		display: none !important;
	}
}

.idhide {
    display: none;
}
.fa-facebook {
    padding: 20px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    background: #3B5998;
    color: white;
  }
  .fa-youtube {
    padding: 20px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    background: #bb0000;
    color: white;
  }
  
  .fa-instagram {
    padding: 20px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    background: #125688;
    color: white;
  }