/*---------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------

>> 	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
	4.7		Accordion
	4.8		Avatar

>>	5.0		Forms
	-------------------------------------------------------------
	5.1		Form Basics
	5.2		Custom Dropdown
	5.3		Custom Dropdown Icon
	5.4		Checkbox & Radio
	5.5		Wizard
	5.6		Password Strength
	5.7		Select Elements
	5.8		Validation
	5.9		File Upload

>>	6.0 	Elements
	-------------------------------------------------------------
	6.1		Buttons
	6.2		Switcher
	6.3		Note
	6.4		Label
	6.5		Ribbon
	6.6		Spinner
	6.7 	Lists
	6.8 	Portlets
	6.9		Overlay
	6.10	File Tile
	6.11	Todolist

>>	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
	9.4 	Widget - Iconbox
	9.5 	Widget - Callbox
	9.6 	Widget - Background Wave
	9.7 	Widget - Background Slash

>>	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
	10.8	Pricing
	10.9	Products
	10.10	Notepad
	10.11	Scrum board

>>	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
	11.8 	Dropzone
	11.9 	Slick
	11.10	Fullcalendar

>>	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
	13.5	Pulse

>>	14.0	Keyframes
	-------------------------------------------------------------

>>	15.0	CSS Helper Classes
	-------------------------------------------------------------

>>	16.0	Mobile
	-------------------------------------------------------------

-----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------*/





/***********************************************************************************************
--------------------------------------------GENERAL---------------------------------------------
************************************************************************************************/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
	--yellow: #ffed00;
	--orange: #ffb630;
	--warning: #ffb630;
	--red: #d50c2d;
	--danger: #d50c2d;
	--brown: #693323;
	--lime: #8c44c1;
	--olive: #727201;
	--darkolive: #495c29;
	--green: #57b399;
	--lightblue: #9bc5cf;
	--cadetblue: #57a2a5;
	--steelblue: #0016a7 ;
	--info: #0016a7 ;
	--primary: #0016a7 ;
	--violet: #6a3095;
	--secondary: #6a3095;
	--black: #414446;
	--night: #5d6267;
	--darkgrey: #444444;
	--grey: #abb0b1;
	--lightgrey: #e5e8ea;
	--white: #ffffff;
}
body {
    font-family: 'Poppins', sans-serif;
	background: #f2f3f7 !important;
	font-size: 14px;
	position: absolute;
	min-height: 100%;
	width: 100%;
}
.content {
	padding: 20px 30px;
	margin-top: 70px;
	margin-left: 260px;
	display: block;
	/*overflow: hidden;*/
	transition: margin-left 150ms linear;
    min-height: 85vh;
}
.content.fullsize {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    padding: 2vw 4vw;
    overflow: auto;
    background: #f2f3f7;
    margin: 0;
}
.content_fullsize_compress {
	display: none;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 999999999;
}
.content.navbar-small {
	margin-left: 65px;
}
.content.navbar-hidden {
	margin-left: 0;
}
.content.topbar-hidden {
	margin-top: 50px;
}
.hidden {
	display: none;
}

/*******************
Headings
*******************/
.heading {
    line-height: 22px;
    font-size: 12px;
    font-weight: 600;
    color: #abb0b1;
    text-transform: uppercase;
}
.page-heading {
	color: #5d6267;
	margin-bottom: 10px;
    font-size: 16px;
    line-height: initial;
	font-weight: 600;
}
.tiny-heading {
	font-size: 10px;
	font-weight: 600;
	color: #abb0b1;
	margin-bottom: 5px;
    text-transform: uppercase;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #5d6267;
  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: #5d6267;
}
.link {
	text-decoration: underline;
    color: #0016a7;
}
.link-red {
	text-decoration: none;
	color: #d50c2d;
}
.link-blue {
	text-decoration: none;
	color: #0016a7;
}
.link-hover-blue:hover {
	text-decoration: none;
	color: #0016a7;
}
.link-dotted {
    text-decoration: none;
    color: #0016a7;
    border-bottom: 1px dotted;
}
p {
	font-size: 14px;
	color: #505152;
}
hr {
	margin: 20px 0;
	border: 0.5px solid rgb(238, 238, 238);
}
hr.hr-small {
	margin: 10px 0;
	border: none;
	border-top: 0.5px solid rgb(238, 238, 238);
}
hr.hr-dotted {
	border: none;
	border-top: 0.5px dotted rgb(238, 238, 238);
}
small {
	font-size: 70%;
	/*margin-left: 5px;*/
	color: #abb0b1;
}
blockquote {
    padding: 45px 60px;
    position: relative;
    border: none;
    font-size: 16px;
    color: #444444;
}
blockquote:before, blockquote:after {
    position: absolute;
    font-size: 28px;
    padding: 10px;
    line-height: 1;
}
blockquote:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    content: "\f10d";
    top: 0;
    left: 10px;
    color: #e5e8ea;
}
blockquote:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    content: "\f10e";
    right: 10px;
    bottom: -.5em;
    color: #e5e8ea;
}
.quote-name {
    float: right;
    font-size: 14px;
    font-weight: 600;
}
/*******************
Scroll Bar
*******************/

::-webkit-scrollbar {
	width: 8px;
	height: 6px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #e5e8ea;
  border-radius: 0 0 3px 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bfc3c5;
}

.col-12::-webkit-scrollbar,
textarea::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.col-12::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
  background: none;
}
.col-12::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  background: #e2e2e280;
  border-radius: 0 0 3px 3px;
}
.col-12::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
  background: #e2e2e2;
}


/*******************
Lists
*******************/
ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
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: 0px;
    margin-inline-end: 0px;
}
ul.list li {
    line-height: 30px;
    margin: 5px 0;
}
ul.list-unstyled li {
	list-style-type: none;
}
ul.list-icon {
	padding: 0px;
	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: #0016a7;
}
ul.list-hover li {
	white-space: nowrap;
}
ul.list-hover li:hover {
	color: #e5e8ea;
	white-space: unset;
}
dl {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
dt {
    font-weight: 700;
}
dd {

    display: block;
    margin-bottom: 1em;
    margin-left: 0;
}
.list-sortable li {
    list-style-type: none;
	border: 1px solid #e5e8ea;
	background: #ffffff;
    margin: 0;
    padding: 10px 15px;
}
.list-sortable li i {
    color: #abb0b1;
    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: #abb0b1;
	font-size: 12px;
}
.breadcrumb,
.breadcrumb > a {
	color: #acadaf;
	font-size: 12px;
}
.breadcrumb:hover > a {
	color: #0016a7;
}
.breadcrumb-active {
	color: #acadaf;
	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 #e5e8ea;
	padding: 5px 10px;
	border-radius: 5px;
}
.pagination .page-item:hover {
	background: #e5e8ea;
	color: #5d6267;
	cursor: pointer;
}
.pagination .page-item:hover .page-link,
.pagination .page-item:hover .page-link i {
	color: #5d6267;
}
.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: #abb0b1;
}
.pagination .page-item .page-link i {
	font-size: 12px;
}
.pagination .page-item.active {
	background: #0016a7;
	border: 1px solid #0016a7;
	color: white;
}
.pagination .page-item.active:hover {
	background: #0016a7;
	opacity: .9;
}
.pagination .page-item.active .page-link {
	color: white;
}


/***********************************************************************************************
---------------------------------------------LOGIN----------------------------------------------
************************************************************************************************/

/*******************
Page Logo
*******************/
.page-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	padding: -100px 0px 10px 0px;
}

/*******************
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 #0016a7 !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: #abb0b1;
	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: 0.66;
	z-index: -1;
}

/***********************************************************************************************
------------------------------------------NAVIGATION--------------------------------------------
************************************************************************************************/

/*******************
Topbar
*******************/
.topbar {
	position: fixed;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	top: 0;
	min-height: 70px;
	width: 100%;
    padding: 10px 30px 10px 290px;
	background: #23283a;
	z-index: 9992;
    box-shadow: 0px 0px 40px 0px #523f691a;
	transition: padding-left 150ms linear;
}
.topbar.navbar-small {
	padding-left: 95px;
	transition: padding-left 150ms linear;
}
.topbar.navbar-hidden {
	padding-left: 30px;
}
.topbar .topbar-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
}
.topbar .topbar-action > button,
.topbar .topbar-action > div,
.topbar .topbar-action > span {
    padding-right: 5px;
}
.topbar.logo .topbar-action > .logo {
    max-height: 30px;
    padding-right: 15px;
}
.topbar.logo .topbar-action > .logo > a > img {
    max-height: 30px;
}
.topbar .nav-section {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	list-style-type: none;
	align-items: center;
	margin-block-start: 0;
	margin-block-end: 0;
}
.topbar .nav-section li .nav-section-span {
	padding: 12px;
	margin: 0 3px;
	border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar .nav-section li .nav-section-span img {
    height: 20px;
    width: 20px;
    border-radius: 5px;
    object-fit: cover;
}
.topbar .nav-section li:hover .nav-section-span,
.topbar .nav-section li:hover .nav-section-span.active {
    background: #61798b49;
    border-radius: 10%;
}
.topbar .nav-section i {
	color: #ffffff;
	font-size: 18px;
	cursor: pointer;
}
.topbar .nav-section .input-search {
    height: 40px;
	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 .div-dropdown,
.topbar .ul-dropdown,
.topbar .nav-section .ul-dropdown,
.topbar .nav-section .nav-notify-dropdown,
.topbar .nav-section .nav-user-dropdown {
	top: 73px;
}
.topbar .nav-section .nav-notify {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background: #0016a7;
    min-height: 18px;
    min-width: 18px;
    position: absolute;
    border-radius: 50px;
	margin: -10px -15px;
	padding: 0 5px;
	cursor: pointer;
    top: 10px;
    right: 15px;
}
.topbar .nav-section .nav-notify-dropdown,
.topbar .nav-section .nav-user-dropdown {
    background: #ffffff;
    border-radius: 5px;
	position: absolute;
	margin-block-end: 0;
	margin-block-start: 0;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #27272e;
	box-shadow: 0 13px 25px -2px rgba(0,0,0,.2);
    height: 0;
	max-height: 0;
    width: 0;
    max-height: 0;
	opacity: 0;
	transition: opacity .2s ease;
}
.topbar .nav-section .nav-notify-dropdown.active,
.topbar .nav-section .nav-user-dropdown.active {
	height: auto;
	width: 300px;
	max-height: 50vh;
	opacity: 1;
	transition: opacity .2s ease;
}
.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;
}
.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: 0.5px solid #e5e8ea;
}
.topbar .nav-section .nav-user-dropdown li {
	min-height: 0;
    padding: 15px;
}
.topbar .nav-section .nav-user-dropdown li span,
.topbar .nav-section .nav-user-dropdown li span i {
	color: #6e767d;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first {
    min-height: 30px;
    background: #fff;
    border-bottom: 1px solid #e5e8ea;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first .nav-user-icon {
    height: 65px;
    width: 65px;
    border-radius: 20px;
    object-fit: cover;
}
.topbar .nav-section .nav-user-dropdown .nav-user-dropdown-first .nav-user-name {
	position: absolute;
    margin: 10px 0 0 20px;
    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: 0.5px solid #e5e8ea;
    padding: 20px 15px;
}
.topbar .nav-section .nav-notify-dropdown li:hover,
.topbar .nav-section .nav-user-dropdown li:hover {
	background: #e5e8ea;
}
.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: #fff;
}
.topbar .nav-section .nav-notify-dropdown li:last-child,
.topbar .nav-section .nav-user-dropdown li:last-child {
    border-bottom: none;
}
.topbar .nav-section .nav-notify-dropdown .notify-header-fix {
	min-height: 35px;
	max-height: 35px;
	font-size: 12px;
	background: #abb0b1;
	color: #ffffff;
}
.topbar .nav-section .nav-notify-dropdown .notify-header-fix:hover {
    background: #abb0b1;
}
.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: #abb0b1;
	padding-left: 5px;
}
.topbar .nav-section .nav-notify-dropdown .notify-left i {
    background: #abb0b1;
    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: #5d6267;
    font-weight: 600;
	font-size: 12px;
	margin-bottom: 1px;
}
.topbar .nav-section .nav-notify-dropdown .notify-right .text-muted {
	font-size: 10px;
	color: #abb0b1;
	padding-top: 2px;
}
.topbar .nav-section .nav-notify-dropdown .notify-right .notify-text {
	font-size: 12px;
	color: #444444;
}
.topbar .nav-toggle {
    position: absolute;
    left: 280px;
    top: 22px;
    font-size: 18px;
    color: #ffffff;
	cursor: pointer;
    -webkit-transition: left .2s cubic-bezier(0.4, 0, 1, 1);
       -moz-transition: left .2s cubic-bezier(0.4, 0, 1, 1);
         -o-transition: left .2s cubic-bezier(0.4, 0, 1, 1);
            transition: left .2s cubic-bezier(0.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 0.3s;
}
.quick-view-grid .quick-view-item:hover {
	background: #0016a7;
}
.quick-view-grid .quick-view-item .quick-view-item-icon {
	display: inline-block;
    text-align: center;
    margin-bottom: 0.5rem;
}
.quick-view-grid .quick-view-item .quick-view-item-icon i {
	font-size: 32px;
	color: #0016a7;
}
.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: 1.2rem;
    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;
	}
}
/*******************
Themes
*******************/
/* topbar light */
.topbar.topbar-light {
	background: #fff;
}
.topbar.topbar-light .nav-section i {
	color: #6e767d; /* color navbar ?! */
}
.topbar.topbar-light .nav-section .nav-notify {
	background: #6cacee; /* color navbar icon hover ?! */
}
.topbar.topbar-light .nav-section .input-search.active {
    border: 1px solid #e5e8ea;
}
.topbar.topbar-light .nav-section li:hover .nav-section-span,
.topbar.topbar-light .nav-section li:hover .nav-section-span.active {
    background: #f1f1f1;
}

/* theme blue */
.topbar.topbar-dark.theme-blue {
	background: #568dc3;
}
.topbar.theme-blue .nav-section .nav-notify {
	background: #568dc3;
    border: 1px solid #fff;
}
.topbar.theme-blue .nav-section .nav-user-dropdown .nav-user-dropdown-first {
	background: #568dc3;
}
/* theme red */
.topbar.topbar-dark.theme-red {
	background: #d50c2d;
}
.topbar.theme-red .nav-section .nav-notify {
	background: #d50c2d;
    border: 1px solid #fff;
}
.topbar.theme-red .nav-section .nav-user-dropdown .nav-user-dropdown-first {
	background: #d50c2d;
}
.topbar.theme-red .quick-view-grid .quick-view-item .quick-view-item-icon i {
	color: #d50c2d;
}
.topbar.theme-red .quick-view-grid .quick-view-item:hover {
	background: #d50c2d;
}
.topbar.theme-red .quick-view-grid .quick-view-item:hover .quick-view-item-icon i {
	color: white;
}
/* theme green */
.topbar.topbar-dark.theme-green {
	background: #8c44c1;
}
.topbar.theme-green .nav-section .nav-notify {
	background: #8c44c1;
    border: 1px solid #fff;
}
.topbar.theme-green .nav-section .nav-user-dropdown .nav-user-dropdown-first {
	background: #8c44c1;
}
.topbar.theme-green .quick-view-grid .quick-view-item .quick-view-item-icon i {
	color: #8c44c1;
}
.topbar.theme-green .quick-view-grid .quick-view-item:hover {
	background: #8c44c1;
}
.topbar.theme-green .quick-view-grid .quick-view-item:hover .quick-view-item-icon i {
	color: white;
}
/* theme orange */
.topbar.topbar-dark.theme-orange {
	background: #ffb630;
}
.topbar.theme-orange .nav-section .nav-notify {
	background: #ffb630;
    border: 1px solid #fff;
}
.topbar.theme-orange .nav-section .nav-user-dropdown .nav-user-dropdown-first {
	background: #ffb630;
}
.topbar.theme-orange .quick-view-grid .quick-view-item .quick-view-item-icon i {
	color: #ffb630;
}
.topbar.theme-orange .quick-view-grid .quick-view-item:hover {
	background: #ffb630;
}
.topbar.theme-orange .quick-view-grid .quick-view-item:hover .quick-view-item-icon i {
	color: white;
}

/*******************
Navbar
*******************/
.navbar {
  width: 260px;
  color: #fff;
  font-size: 14px;
  background: #23283a;
  z-index: 9993;
  left: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  height: auto;
  overflow: auto;
  box-shadow: 0px 0px 28px 0px #9fb0c121;
}
.navbar::-webkit-scrollbar { /* safari + chrome */
	width: 0;
	height: 0;
}
.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar ul a, .navbar ul a:hover {
  text-decoration: none;
  color: inherit;
}
/* header */
.navbar-header {
  height: 70px;
  width: 100%;
  position: relative;
  background-color: #23283a;
  margin-bottom: 15px;
}
.navbar-header > .logo {
  height: 100%;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}
.navbar-header > .logo > a > img {
  width: 70%;
}
.navbar-header > .navbar-toggle {
  height: 100%;
  line-height: 70px;
  width: 70px;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #23283a;
  color: #425b77;
}
.navbar-header > .navbar-toggle:hover {
  background-color: #1e2333;
}
/* form input */
.navbar-form input, .navbar-form button {
  height: 100%;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  background: none;
  color: inherit;
}
.navbar-form input:focus, .navbar-form button:focus {
  outline: none;
}
.navbar-form > .field-container {
  background-color: #7b838c;
}
.navbar-form > .field-container:hover {
  background-color: #7abac7;
}
.navbar-form > .search-container {
  height: 50px;
  width: 100%;
  position: relative;
}
.navbar-form > .search-container > .search-wrapper {
  padding-right: 50px;
}
.navbar-form > .search-container > button.search-submit {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.navbar-form .search-wrapper {
  height: 100%;
  width: 100%;
}
.navbar-form input.search-input {
  padding: 0 20px;
}
.navbar-form input.search-input::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}
.navbar-form input.search-input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}
.navbar-form input.search-input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.8;
}
.navbar-form button.search-submit {
  width: 50px;
  display: inline-block;
  background-color: #7b838c;
}
.navbar-form button.search-submit:hover {
  background-color: #63a9b7;
}
/* menu */
ul.navbar-menu {
  width: 100%;
}
ul.navbar-menu li {
  min-height: 40px;
  margin: 0;
  overflow: hidden;
}
ul.navbar-menu li > a {
  height: 50px;
  display: block;
  white-space: nowrap;
  font-size: 0;
  cursor: pointer;
  background-color: #23283a;
  line-height: 50px;
}
ul.navbar-menu li > a:hover {
  background-color: #1e2333;
}
ul.navbar-menu li > a > .fa,
ul.navbar-menu li > a > .fas,
ul.navbar-menu li > a > .far,
ul.navbar-menu li > a > .fal,
ul.navbar-menu li > a > .fad {
  font-size: 16px;
  width: 60px;
  text-align: center;
  line-height: inherit;
  display: inline-block;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: #798fa7;
}
ul.navbar-menu li > a:hover > .fa,
ul.navbar-menu li > a:hover > .fas,
ul.navbar-menu li > a:hover > .far,
ul.navbar-menu li > a:hover > .fal,
ul.navbar-menu li > a:hover > .fad {
  color: #7085c9;
}
ul.navbar-menu li > a > .fa + .nav-label,
ul.navbar-menu li > a > .fas + .nav-label,
ul.navbar-menu li > a > .far + .nav-label,
ul.navbar-menu li > a > .fal + .nav-label,
ul.navbar-menu li > a > .fad + .nav-label {
  padding-right: 120px;
  padding-left: 0;
  margin-right: -60px;
  color: #cdd3da;
}
ul.navbar-menu li > a > .nav-label {
  font-size: 14px;
  width: 100%;
  line-height: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  min-width: 150px;
  padding-right: 60px;
  padding-left: 60px;
  color: #cdd3da;
}
ul.navbar-menu > li.navbar-tree > a:after {
  display: none;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
	content: "\f106";
  color: #7b838c;
  font-size: 10px;
  height: 100%;
  width: 60px;
  line-height: inherit;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  margin-left: -60px;
}
ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu {
  height: 0;
}
ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a {
  height: 40px;
  line-height: 40px;
}
ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a > i {
  font-size: 6px;
}
ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a:hover {
  background-color: #1e2333;
}
ul.navbar-menu > li.navbar-tree.navbar-tree-expand > a,
ul.navbar-menu li > a.active {
    background: #1e2333;
}
ul.navbar-menu > li.navbar-tree.navbar-tree-expand > a:after {
	font-family: "Font Awesome 5 Pro";
	font-weight: 600;
  	content: "\f107";
}
ul.navbar-menu > li.navbar-tree.navbar-tree-expand > ul.navbar-treemenu {
  height: auto;
}
/* seperator */
ul.navbar-menu > li.navbar-seperator {
	display: block;
    min-height: 20px;
    padding: 15px 20px 5px 25px;
	background: #23283a;
}
ul.navbar-menu > li.navbar-seperator > .navbar-seperator-text {
	display: block;
    font-size: 12px;
    color: #818990;
    text-transform: uppercase;
}
ul.navbar-menu > li.navbar-seperator > .navbar-seperator-icon {
	display: none;
    font-size: 12px;
    color: #818990;
	display: none;
}
/* collapsed */
.navbar-collapse .navbar {
  width: 75px;
}
.navbar-collapse .navbar-header > .navbar-toggle {
  width: 75px;
}
.navbar-collapse .navbar-form > .search-container > button.search-submit {
  width: 75px;
}
.navbar-collapse .navbar-form > .search-container:hover {
  width: 260px;
}
.navbar-collapse ul.navbar-menu > li > a > .fa,
.navbar-collapse ul.navbar-menu > li > a > .fas,
.navbar-collapse ul.navbar-menu > li > a > .far,
.navbar-collapse ul.navbar-menu > li > a > .fal,
.navbar-collapse ul.navbar-menu > li > a > .fad {
  font-size: 20px;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree > a:after {
	font-family: "Font Awesome 5 Pro";
	font-weight: 600;
  	content: "\f0d7";
}
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover {
  position: relative;
  overflow: visible;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > a {
  background-color: #1e2333;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu {
  height: auto;
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a {
  height: 50px;
  line-height: 50px;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a > .fa + .nav-label,
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a > .fas + .nav-label,
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a > .far + .nav-label,
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a > .fal + .nav-label,
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a > .fad + .nav-label {
  padding-left: 0;
  padding-right: 80px;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > ul.navbar-treemenu > li > a > .nav-label {
  padding-left: 20px;
  padding-right: 20px;
}
.navbar-collapse ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu {
  height: 0;
}
.navbar-collapse ul.navbar-menu > li.navbar-seperator > .navbar-seperator-text {
	display: none;
}
.navbar-collapse ul.navbar-menu > li.navbar-seperator > .navbar-seperator-icon {
	display: block;
}
/* transition */
.navbar,
.navbar > .navbar-header > .navbar-toggle,
.navbar > .navbar-form > .search-container > .search-submit,
.navbar > ul.navbar-menu > li > a > .fa,
.navbar > ul.navbar-menu > li > a > .fas,
.navbar > ul.navbar-menu > li > a > .far,
.navbar > ul.navbar-menu > li > a > .fal,
.navbar > ul.navbar-menu > li > a > .fad {
  transition: width 150ms linear;
}
.navbar > ul.navbar-menu > li > a,
ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a:hover,
.navbar-collapse ul.navbar-menu > li.navbar-tree:hover > a {
    transition: background-color 150ms linear;
}

/*******************
Themes
*******************/
/* navbar light */
.navbar.navbar-light,
.navbar.navbar-light .navbar-header,
.navbar.navbar-light .navbar-header > .navbar-toggle,
.navbar.navbar-light ul.navbar-menu .navbar-seperator,
.navbar.navbar-light ul.navbar-menu li > a {
	background: #ffffff;
}
.navbar.navbar-light .navbar-header > .navbar-toggle:hover,
.navbar.navbar-light ul.navbar-menu li > a:hover,
.navbar.navbar-light ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a:hover,
.navbar.navbar-light ul.navbar-menu > li.navbar-tree.navbar-tree-expand > a,
.navbar.navbar-light .navbar-collapse ul.navbar-menu > li.navbar-tree:hover > a{
	background: #f3f6f9;
}
.navbar.navbar-light ul.navbar-menu li > a > .fa,
.navbar.navbar-light ul.navbar-menu li > a > .fas,
.navbar.navbar-light ul.navbar-menu li > a > .far,
.navbar.navbar-light ul.navbar-menu li > a > .fal,
.navbar.navbar-light ul.navbar-menu li > a > .fad {
	color: #868686;
}
.navbar.navbar-light ul.navbar-menu li > a > .fa + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a > .fas + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a > .far + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a > .fal + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a > .fad + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a > .nav-label {
	color: #444444;
}
.navbar.navbar-light ul.navbar-menu > li.navbar-seperator > .navbar-seperator-text {
	color: #6e6e6e;
}
.navbar.navbar-light .navbar-header > .navbar-toggle,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fa,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fas,
.navbar.navbar-light ul.navbar-menu li > a:hover > .far,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fal,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fad {
	color: #0016a7;
}
.navbar.navbar-light ul.navbar-menu li > a:hover > .fa + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fas + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a:hover > .far + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fal + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a:hover > .fad + .nav-label,
.navbar.navbar-light ul.navbar-menu li > a:hover > .nav-label {
	color: #0016a7;
}

/* theme red - dark */
.navbar.navbar-dark.theme-red,
.navbar.navbar-dark.theme-red .navbar-header,
.navbar.navbar-dark.theme-red .navbar-header > .navbar-toggle,
.navbar.navbar-dark.theme-red ul.navbar-menu .navbar-seperator,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a {
	background: #e45e51;
}
.navbar.navbar-dark.theme-red .navbar-header > .navbar-toggle:hover,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a:hover,
.navbar.navbar-dark.theme-red ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a:hover,
.navbar.navbar-dark.theme-red ul.navbar-menu > li.navbar-tree.navbar-tree-expand > a,
.navbar.navbar-dark.theme-red .navbar-collapse ul.navbar-menu > li.navbar-tree:hover > a{
	background: #ef786d;
}
.navbar.navbar-dark.theme-red .navbar-header > .navbar-toggle,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a:hover > .fa,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a:hover > .fas,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a:hover > .far,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a:hover > .fal,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a:hover > .fad {
	color: #ca2a1a;
}
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fa,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fas,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .far,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fal,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fad {
	color: #cc4e42;
}
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fa + .nav-label,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fas + .nav-label,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .far + .nav-label,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fal + .nav-label,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .fad + .nav-label,
.navbar.navbar-dark.theme-red ul.navbar-menu li > a > .nav-label {
	color: #f5dbd8;
}
.navbar.navbar-dark.theme-red ul.navbar-menu > li.navbar-seperator > .navbar-seperator-text {
	color: #f1c2be;
}

/* theme red - light */
.navbar.navbar-light.theme-red .navbar-header > .navbar-toggle,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fa,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fas,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .far,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fal,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fad {
	color: #fa3e3e;
}
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fa + .nav-label,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fas + .nav-label,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .far + .nav-label,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fal + .nav-label,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .fad + .nav-label,
.navbar.navbar-light.theme-red ul.navbar-menu li > a:hover > .nav-label {
	color: #fa3e3e;
}

/* theme green */
.navbar.navbar-dark.theme-green,
.navbar.navbar-dark.theme-green .navbar-header,
.navbar.navbar-dark.theme-green .navbar-header > .navbar-toggle,
.navbar.navbar-dark.theme-green ul.navbar-menu .navbar-seperator,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a {
	background: #80bf50;
}
.navbar.navbar-dark.theme-green .navbar-header > .navbar-toggle:hover,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a:hover,
.navbar.navbar-dark.theme-green ul.navbar-menu > li.navbar-tree > ul.navbar-treemenu > li > a:hover,
.navbar.navbar-dark.theme-green ul.navbar-menu > li.navbar-tree.navbar-tree-expand > a,
.navbar.navbar-dark.theme-green .navbar-collapse ul.navbar-menu > li.navbar-tree:hover > a{
	background: #80bf50c7;
}
.navbar.navbar-dark.theme-green .navbar-header > .navbar-toggle,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a:hover > .fa,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a:hover > .fas,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a:hover > .far,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a:hover > .fal,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a:hover > .fad {
	color: #579c37;
}
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fa,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fas,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .far,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fal,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fad {
	color: #a9da67;
}
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fa + .nav-label,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fas + .nav-label,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .far + .nav-label,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fal + .nav-label,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .fad + .nav-label,
.navbar.navbar-dark.theme-green ul.navbar-menu li > a > .nav-label {
	color: #dcfdc2;
}
.navbar.navbar-dark.theme-green ul.navbar-menu > li.navbar-seperator > .navbar-seperator-text {
	color: #dcfdc2;
}

/* theme red - light */
.navbar.navbar-light.theme-green .navbar-header > .navbar-toggle,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fa,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fas,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .far,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fal,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fad {
	color: #8c44c1;
}
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fa + .nav-label,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fas + .nav-label,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .far + .nav-label,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fal + .nav-label,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .fad + .nav-label,
.navbar.navbar-light.theme-green ul.navbar-menu li > a:hover > .nav-label {
	color: #8c44c1;
}

/***********************************************************************************************
>>	4.0 	Components
************************************************************************************************/

/*******************
Card
*******************/
.card {
	margin-bottom: 20px;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px #523f690d;
}
.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 #f1f0f0;
    padding: 10px 15px;
    border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: #5d6267;
	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: #abb0b1;
	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: 20px 25px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #5d6267;
}
.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: #e5e8ea;
  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: 10px 25px;
	background: #ffffff;
	color: #444444;
    border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top: 1px solid #f1f0f0;
	overflow: auto;
	font-size: 14px;
}
.card-default .card-header,
.card-default-outline .card-header {
	background: #e5e8ea;
	color: #5d6267;
}
.card-default-full .card-header,
.card-default-full .card-body {
	background: #ffffff;
	color: #5d6267;
}
.card-default-full .card-body p {
	color: #5d6267;
}
.card-dark .card-header,
.card-dark-full .card-header,
.card-dark-full .card-body,
.card-dark-outline .card-header {
	background: #444444 !important;
}
.card-info .card-header,
.card-info-full .card-header,
.card-info-full .card-body,
.card-info-outline .card-header {
	background: #0016a7 !important;
}
.card-warning .card-header,
.card-warning-full .card-header,
.card-warning-full .card-body,
.card-warning-outline .card-header {
	background: #ffb630 !important;
}
.card-success .card-header,
.card-success-full .card-header,
.card-success-full .card-body,
.card-success-outline .card-header {
	background: #8c44c1 !important;
}
.card-danger .card-header,
.card-danger-full .card-header,
.card-danger-full .card-body,
.card-danger-outline .card-header {
	background: #d50c2d !important;
}
.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 #e5e8ea;
}
.card-dark-outline .card-body {
	border: 2px solid #444444 !important;
}
.card-info-outline .card-body {
	border: 2px solid #0016a7 !important;
}
.card-success-outline .card-body {
	border: 2px solid #8c44c1 !important;
}
.card-warning-outline .card-body {
	border: 2px solid #ffb630 !important;
}
.card-danger-outline .card-body {
	border: 2px solid #d50c2d !important;
}
.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;
}

/* overlay hover effects */
.card-container-hover .card {
    overflow: hidden;
    display: block;
    position: relative;
}
.card-overlay {
    background: #abb0b1;
    color: #fff;
    padding: 20px 25px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.card-overlay p {
    color: #fff;
}
/* colors */
.card-overlay-info {
    background: #0016a7;
}
.card-overlay-warning {
    background: #ffb630;
}
.card-overlay-danger {
    background: #d50c2d;
}
.card-overlay-success {
    background: #8c44c1;
}
.card-overlay-dark {
    background: #5d6267;
}
/* effects */
.slide-in .card-overlay {
    transform: translateX(-100%);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.slide-in .card:hover .card-overlay {
    transform: translateX(0);
}
.slide-up .card-overlay {
    transform: translateY(100%);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.slide-up .card:hover .card-overlay {
    transform: translateY(0);
}
.slide-down .card-overlay {
    transform: translateY(-100%);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.slide-down .card:hover .card-overlay {
    transform: translateY(0);
}
.rotate .card-overlay {
    transform-origin: 0 0;
    transform: rotate(90deg);
    -webkit-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.rotate .card:hover .card-overlay {
    transform: rotate(0deg);
}
.scale .card-overlay {
    transform: translateX(210%) scale(3);
    -webkit-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}
.scale .card:hover .card-overlay {
    transform: translateX(0) scale(1);
}
.flip .card-overlay {
    opacity: 0;
    transform: rotateY(180deg);
    -webkit-transition: transform 0.4s ease-in-out 0.2s, opacity 0.2s ease-in-out;
    -o-transition: transform 0.4s ease-in-out 0.2s, opacity 0.2s ease-in-out;
    transition: transform 0.4s ease-in-out 0.2s, opacity 0.2s ease-in-out;
}
.flip .card:hover .card-overlay {
    opacity: 1;
    transform: rotateY(0deg);
}
.skew .card-overlay {
    opacity: 0;
    transform: skewX(-10deg);
    -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.skew .card:hover .card-overlay {
    transform: skewX(0deg);
    opacity: 1;
}
.corner-bottom .card-overlay {
    transform: translate(100%, 100%);
    -webkit-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}
.corner-bottom .card:hover .card-overlay {
    transform: translate(0, 0);
}
.corner-top .card-overlay {
    transform: translate(-100%, -100%);
    -webkit-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}
.corner-top .card:hover .card-overlay {
  transform: translate(0, 0);
}

/* card expand */
.card-container-expand {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.card-container-expand .card {
    position: relative;
    background: none;
    box-shadow: none;
}
.card-container-expand .card .expand-front,
.card-container-expand .card .expand-back {
    height: 200px;
    transition: 0.5s;
}
.card-container-expand .card .expand-front {
    background: #fff;
    position: relative;
    z-index: 1;
    transform: translateY(100px);
    box-shadow: 0px 0px 30px 0px #38363c0d;
    border-radius: 5px;
}
.card-container-expand .card:hover .expand-front {
    transform: translateY(0);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.card-container-expand .card .expand-back {
    position: relative;
    background: #5d6267;
    transform: translateY(-100px);
    z-index: 0;
    border-radius: 10px;
}
.card-container-expand .card .expand-back * {
    color: #fff;
}
.card-container-expand .card:hover .expand-back {
    transform: translateY(0);
    box-shadow: 0px 0px 30px 0px #38363c0d;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* overlay actions */
.overlay-hover-out {
    opacity: 1;
}
.card:hover .overlay-hover-out {
    opacity: 0;
}
.overlay-hover-in {
    opacity: 0;
}
.card:hover .overlay-hover-in {
    opacity: 1;
}
.overlay-hover.hover-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.card:hover .overlay-hover.hover-left {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.overlay-hover.hover-right {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.card:hover .overlay-hover.hover-right {
    flex-direction: row;
    justify-content: flex-end;
}
.overlay-hover-in.slide-up,
.card:hover .overlay-hover-out.slide-up {
    transform: translateY(100%);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.overlay-hover-out.slide-up,
.card:hover .overlay-hover-in.slide-up {
    transform: translateY(0);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.overlay-hover-in.slide-down,
.card:hover .overlay-hover-out.slide-down {
    transform: translateY(-100%);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.overlay-hover-out.slide-down,
.card:hover .overlay-hover-in.slide-down {
    transform: translateY(0);
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}


/*******************
Card - option groups
*******************/
.card-option {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    z-index: 3;
}
.card-option i {
    color: #abb0b1;
}
.card-option .option-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 34px;
    height: 34px;
    overflow: hidden;
    top: 0;
    right: 0;
    background: #abb0b1;
    border-radius: 0 4px 0 32px;
}
.card-option .option-corner i {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
}
/* full bg on hover */
.card-option.card-option-corner:hover {
    background: transparent;
}
.card-option.card-option-corner .card-body * {
    transition: color 0.25s ease-out;
}
.card-option.card-option-corner:hover .card-body * {
    color: #fff;
    z-index: 1;
    transition: color 0.25s ease-out;
}
.card-option.card-option-corner:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: #abb0b1;
    height: 34px;
    width: 34px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.4s ease-out;
}
.card-option.card-option-corner:hover:before {
    transform: scale(30);
}

/* highlight */
.card-option-highlight {
    top: 0px;
    box-shadow: 0px 0px 30px 0px #523f690d;
    transition: top 0.2s ease-out, box-shadow .2s ease-out;
}
.card-option-highlight:hover {
    transition: top 0.2s ease-out, box-shadow .2s ease-out;
    box-shadow: 0px 4px 8px rgb(38 38 38 / 20%);
    top: -4px;
    border: 1px solid #e5e8ea;
    background-color: white;
    margin-bottom: -4px;
}

/* dimmer */
.card-option-dimmer {
    border: 1px solid #fff;
    box-shadow: 0px 0px 30px 0px #523f690d;
    z-index: 1;
}
.card-option-dimmer:hover {
    border: 1px solid #e5e8ea;
    box-shadow: 0px 0px 999px 999px #f8fcff52;
    z-index: 2;
}

/* show arrow */
.card-option-arrow .option-corner {
    background: #e5e8ea;
    height: 100%;
    width: 40px;
    padding: 10px;
    padding-right: 15px;
    border-radius: 0;
    transform: skew(6deg);
    margin-right: -50px;
    align-items: start;
    transition: all 0.2s ease-out;
}
.card-option-arrow {
    border: 1px solid #fff;
}
.card-option-arrow:hover {
    border: 1px solid #e5e8ea;
}
.card-option-arrow:hover .option-corner {
    margin-right: -10px;
    transition: all 0.2s ease-out;
}



/* colors */
.card-option.option-info .option-corner,
.card-option.option-info.card-option-corner:before {
    background: #0016a7;
}
.card-option.option-warning .option-corner,
.card-option.option-warning.card-option-corner:before {
    background: #ffb630;
}
.card-option.option-danger .option-corner,
.card-option.option-danger.card-option-corner:before {
    background: #d50c2d;
}
.card-option.option-success .option-corner,
.card-option.option-success.card-option-corner:before {
    background: #8c44c1;
}
.card-option.option-dark .option-corner,
.card-option.option-dark.card-option-corner:before {
    background: #444444;
}
.card-option.option-info:hover {
    border-color: #0016a7;
}
.card-option.option-warning:hover {
    border-color: #ffb630;
}
.card-option.option-danger:hover {
    border-color: #d50c2d;
}
.card-option.option-success:hover {
    border-color: #8c44c1;
}
.card-option.option-dark:hover {
    border-color: #444444;
}


/*******************
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;
	border-radius: 5px;
}
.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.image-lg,
.card .card-image.image-lg img,
.card .group-image.image-lg img  {
	height: 200px;
}
.card .card-image.image-xl,
.card .card-image.image-xl img,
.card .group-image.image-xl img  {
	height: 250px;
}
.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: #e5e8ea;
}
.card .group-image img {
    height: 200px;
}
.image-header img {
	height: 200px;
	border-radius: 5px;
}
/* hover */
.card-image.hover-contain:hover img {
	object-fit: contain;
}
/* toggle active class */
.card-image-active {
    max-height: 70vh;
}
.card-image-active img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.card-image-select {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.card-image-select img {
    flex: 1;
    width: calc(100%/3 - 30px);
    margin: 0 10px;
    padding: 10px;
    height: 100px;
    object-fit: scale-down;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px #523f690d;
    cursor: pointer;
}
.card-image-select img.selected {
    box-shadow: 0px 0px 5px 0px #ffb630;
}
/* zoom */
.grid-zoom-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    overflow: hidden;
    position: relative;
    width: 400px;
    margin: 0 auto;
    cursor: zoom-in;
}
.grid-zoom-item {
    height: 20%;
    width: 20%;
    z-index: 1;
}
.grid-zoom-item:hover ~ img {
    height: 150%;
    width: 150%;
}
.grid-zoom-item:hover:nth-of-type(5n + 1) ~ img {
    left: 0px;
}
.grid-zoom-item:hover:nth-of-type(1n + 1) ~ .zoom-image {
    top: 0px;
}
.grid-zoom-item:hover:nth-of-type(5n + 2) ~ img {
    left: -10%;
}
.grid-zoom-item:hover:nth-of-type(1n + 6) ~ .zoom-image {
    top: -10%;
}
.grid-zoom-item:hover:nth-of-type(5n + 3) ~ img {
    left: -20%;
}
.grid-zoom-item:hover:nth-of-type(1n + 11) ~ .zoom-image {
    top: -20%;
}
.grid-zoom-item:hover:nth-of-type(5n + 4) ~ img {
    left: -40%;
}
.grid-zoom-item:hover:nth-of-type(1n + 16) ~ .zoom-image {
    top: -40%;
}
.grid-zoom-item:hover:nth-of-type(5n + 5) ~ img {
    left: -50%;
}
.grid-zoom-item:hover:nth-of-type(1n + 21) ~ .zoom-image {
    top: -50%;
}
.zoom-image {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.25s;
    width: 100%;
}

/*******************
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 0.5s cubic-bezier(0.165, 0.84, 0.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, 0.5);
}
.gallery-modal .close_gallery {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e5e8ea;
	font-size: 22px;
	cursor: pointer;
}
.gallery-modal .next-image,
.gallery-modal .prev-image {
	position: absolute;
	display: table;
	margin: auto;
	top: 0;
	bottom: 0;
    color: #e5e8ea;
	font-size: 26px;
	cursor: pointer;
	padding: 20px;
}
.gallery-modal .next-image {
    right: 0px;
	left: auto;
}
.gallery-modal .prev-image {
	left: 0px;
	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, 0.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: #e7eaee;
    border: none;
    border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	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: #abb0b1;
	border-bottom: 0.5px solid #e5e8ea;
}
.card .nav-tabs-dark {
	background: #5d6267;
	color: #abb0b1;
}
.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: 10px 10px 0 0;
}
.card .nav-tabs-light .tab-item:hover {
	color: #5d6267;
	background: unset;
	border-bottom: 1px solid #5d6267;
}
.card .nav-tabs-dark .tab-item:hover {
	color: #e5e8ea;
	background: #5d6267;
}
.card .nav-tabs-dark .tab-item-active:hover {
	color: #5d6267;
	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: 10px 10px 0 0;
    color: #5d6267;
    background: #ffffff;
}
.card .nav-tabs-light .tab-item-active {
	border-bottom: 1px solid #5d6267;
	color: #5d6267;
}
.card .nav-tabs-light.tabs-info .tab-item-active,
.card .nav-tabs-light.tabs-info .tab-item:hover {
	border-bottom: 1px solid #0016a7;
	color: #0016a7;
}
.card .nav-tabs-light.tabs-warning .tab-item-active,
.card .nav-tabs-light.tabs-warning .tab-item:hover {
	border-bottom: 1px solid #ffb630;
	color: #ffb630;
}
.card .nav-tabs-light.tabs-success .tab-item-active,
.card .nav-tabs-light.tabs-success .tab-item:hover {
	border-bottom: 1px solid #8c44c1;
	color: #8c44c1;
}
.card .nav-tabs-light.tabs-danger .tab-item-active,
.card .nav-tabs-light.tabs-danger .tab-item:hover {
	border-bottom: 1px solid #d50c2d;
	color: #d50c2d;
}
.card .nav-tabs-button {
	background: none;
	color: #abb0b1;
    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;
}
.tab-content {
	opacity: 0;
	display: none;
	transition: opacity .2s linear;
}
.tab-content.tab-no-margin {
	margin: -15px;
}
.tab-content-active {
	opacity: 1;
	display: block;
	transition: opacity .2s linear;
}


/*******************
Accordion
*******************/
.accordion {
	margin-bottom: 20px;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
	border-top: 1px solid #eff0f1;
	border-right: 1px solid #eff0f1;
	border-left: 1px solid #eff0f1;
}
.accordion .accordion-header {
    position: relative;
	background: white;
	border-bottom: 1px solid #eff0f1;
    padding: 15px;
	color: #1d1d1d;
}
.accordion .accordion-header i {
	color: #eff0f1;
}
.accordion .accordion-body {
	overflow: auto;
	border-bottom: none;
    height: 0;
    overflow: hidden;
}
.accordion .accordion-body .accordion-content {
    padding: 20px 15px;
}
.accordion-header:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.accordion-header:nth-last-child(2),
.accordion-body:last-child  {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
/* expand */
.accordion .accordion-body.expand {
    height: auto;
    border-bottom: 1px solid #eff0f1;
}
.accordion-header.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* light - no borders */
.accordion.accordion-light {
	border: none;
}
.accordion.accordion-light .accordion-header,
.accordion.accordion-light .accordion-content {
	padding-left: 0;
    padding-right: 0;
}
.accordion.accordion-light .accordion-header:nth-last-child(2),
.accordion.accordion-light .accordion-body:last-child  {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* list */
.accordion.accordion-list {
	border: none;
}
.accordion.accordion-list .accordion-header,
.accordion.accordion-list .accordion-content {
	padding-left: 0;
    padding-right: 0;
    border: none;
}
.accordion.accordion-list .accordion-body.expand {
    border: none;
}
/* pills */
.accordion-pills {
    border: none;
}
.accordion-pills .accordion-header {
    border-radius: 5px;
    border: none;
}
.accordion-pills.accordion-pills-bordered .accordion-header.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.accordion-pills .accordion-body,
.accordion-pills .accordion-body.expand {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
}
.accordion-pills.accordion-pills-bordered .accordion-body.expand {
	border-right: 1px solid #eff0f1;
	border-bottom: 1px solid #eff0f1;
	border-left: 1px solid #eff0f1;
}
.accordion-space {
    height: 15px;
    background: transparent;
}
/* colors */
.accordion-default .accordion-header i,
.accordion-info .accordion-header i,
.accordion-warning .accordion-header i,
.accordion-danger .accordion-header i,
.accordion-success .accordion-header i,
.accordion-dark .accordion-header i {
    color: #fff;
}
.accordion-default,
.accordion-info,
.accordion-warning,
.accordion-danger,
.accordion-success,
.accordion-dark {
	border-color: #dadada;
}
.accordion-default .accordion-header {
    background: #eff0f1;
	border-color: #dadada;
}
.accordion-info .accordion-header {
    background: #0016a7;
	border-color: #dadada;
    color: #fff;
}
.accordion-warning .accordion-header {
    background: #ffb630;
	border-color: #dadada;
    color: #fff;
}
.accordion-danger .accordion-header {
    background: #d50c2d;
	border-color: #dadada;
    color: #fff;
}
.accordion-success .accordion-header {
    background: #8c44c1;
	border-color: #dadada;
    color: #fff;
}
.accordion-dark .accordion-header {
    background: #444444;
	border-color: #dadada;
    color: #fff;
}
/* active text color */
.accordion-text-info-active .accordion-header.active,
.accordion-text-info-active .accordion-header.active i  {
    color: #0016a7;
}
.accordion-text-warning-active .accordion-header.active,
.accordion-text-warning-active .accordion-header.active i  {
    color: #ffb630;
}
.accordion-text-danger-active .accordion-header.active,
.accordion-text-danger-active .accordion-header.active i  {
    color: #d50c2d;
}
.accordion-text-success-active .accordion-header.active,
.accordion-text-success-active .accordion-header.active i  {
    color: #8c44c1;
}
.accordion-text-dark-active .accordion-header.active,
.accordion-text-dark-active .accordion-header.active i  {
    color: #444444;
}
/* active bg color header */
.accordion-bg-info-active .accordion-header.active,
.accordion-bg-info-active .accordion-header.active i,
.accordion-bg-full-info-active .accordion-header.active,
.accordion-bg-full-info-active .accordion-header.active i,
.accordion-bg-warning-active .accordion-header.active,
.accordion-bg-warning-active .accordion-header.active i,
.accordion-bg-full-warning-active .accordion-header.active,
.accordion-bg-full-warning-active .accordion-header.active i,
.accordion-bg-danger-active .accordion-header.active,
.accordion-bg-danger-active .accordion-header.active i,
.accordion-bg-full-danger-active .accordion-header.active,
.accordion-bg-full-danger-active .accordion-header.active i,
.accordion-bg-success-active .accordion-header.active,
.accordion-bg-success-active .accordion-header.active i,
.accordion-bg-full-success-active .accordion-header.active,
.accordion-bg-full-success-active .accordion-header.active i
.accordion-bg-dark-active .accordion-header.active,
.accordion-bg-dark-active .accordion-header.active i,
.accordion-bg-full-dark-active .accordion-header.active,
.accordion-bg-full-dark-active .accordion-header.active i {
    color: #fff;
}
.accordion-bg-info-active .accordion-header.active,
.accordion-bg-full-info-active .accordion-header.active  {
    background: #0016a7;
}
.accordion-bg-warning-active .accordion-header.active,
.accordion-bg-full-warning-active .accordion-header.active  {
    background: #ffb630;
}
.accordion-bg-danger-active .accordion-header.active,
.accordion-bg-full-danger-active .accordion-header.active  {
    background: #d50c2d;
}
.accordion-bg-success-active .accordion-header.active,
.accordion-bg-full-success-active .accordion-header.active  {
    background: #8c44c1;
}
.accordion-bg-dark-active .accordion-header.active,
.accordion-bg-full-dark-active .accordion-header.active  {
    background: #444444;
}
/* active bg color body */
.accordion-bg-full-info-active .accordion-body.expand  {
    background: #0016a733;
    border-color: #0016a733;
}
.accordion-bg-full-warning-active .accordion-body.expand  {
    background: #ffb63033;
    border-color: #ffb63033;
}
.accordion-bg-full-danger-active .accordion-body.expand  {
    background: #d50c2d33;
    border-color: #d50c2d33;
}
.accordion-bg-full-success-active .accordion-body.expand  {
    background: #8c44c133;
    border-color: #8c44c133;
}
.accordion-bg-full-dark-active .accordion-body.expand  {
    background: #44444433;
    border-color: #44444433;
}


/*******************
Avatar
*******************/
.avatar-list,
.avatar-group {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: baseline;
}
.avatar-list .avatar {
    margin-right: 10px;
}
.avatar {
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
.avatar img {
    width: inherit;
    height: inherit;
    border-radius: 5px;
    object-fit: cover;
}
/* group */
.avatar-group .avatar {
    background: #fff;
}
.avatar-group .avatar:not(:first-child) {
    margin-left: -4%;
}
.avatar-group .avatar img {
    padding: 5px;
}
.avatar-group .avatar:hover {
    z-index: 1;
}
/* round */
.avatar-round,
.avatar-round img {
    border-radius: 100%;
}
/* border */
.avatar-border {
    background: grey;
}
.avatar-border img {
    padding: 1px;
}
.avatar-border-2 img {
    padding: 2px;
}
.avatar-border-3 img {
    padding: 3px;
}
.avatar-border-4 img {
    padding: 4px;
}
/* shadow */
.avatar-shadow-light {
    box-shadow: 0 0 10px 0px #e5e8ea;
}
.avatar-shadow-info {
    box-shadow: 0 0 10px 0px #0016a7;
}
.avatar-shadow-warning {
    box-shadow: 0 0 10px 1px #ffb630;
}
.avatar-shadow-danger {
    box-shadow: 0 0 10px 1px #d50c2d;
}
.avatar-shadow-success {
    box-shadow: 0 0 10px 1px #8c44c1;
}
.avatar-shadow-dark {
    box-shadow: 0 0 10px 1px #444444;
}
/* sizes */
.avatar.avatar-xs {
    width: 30px;
    height: 30px;
}
.avatar.avatar-sm {
    width: 40px;
    height: 40px;
}
.avatar.avatar-md {
    width: 50px;
    height: 50px;
}
.avatar.avatar-lg {
    width: 60px;
    height: 60px;
}
.avatar.avatar-xl {
    width: 70px;
    height: 70px;
}
.avatar.avatar-2x {
    width: 80px;
    height: 80px;
}
.avatar.avatar-3x {
    width: 90px;
    height: 90px;
}
.avatar.avatar-4x {
    width: 100px;
    height: 100px;
}
.avatar.avatar-5x {
    width: 120px;
    height: 120px;
}
.avatar.avatar-6x {
    width: 140px;
    height: 140px;
}
.avatar.avatar-7x {
    width: 160px;
    height: 160px;
}
.avatar.avatar-8x {
    width: 180px;
    height: 180px;
}
/* format 4:3 */
.avatar.avatar-xs.avatar-4to3 {
    width: 37.5px;
}
.avatar.avatar-sm.avatar-4to3 {
    width: 50px;
}
.avatar.avatar-md.avatar-4to3 {
    width: 62.5px;
}
.avatar.avatar-lg.avatar-4to3 {
    width: 75px;
}
.avatar.avatar-xl.avatar-4to3 {
    width: 87.5px;
}
.avatar.avatar-2x.avatar-4to3 {
    width: 100px;
}
.avatar.avatar-3x.avatar-4to3 {
    width: 112.5px;
}
.avatar.avatar-4x.avatar-4to3 {
    width: 125px;
}
.avatar.avatar-5x.avatar-4to3 {
    width: 150px;
}
.avatar.avatar-6x.avatar-4to3 {
    width: 175%;
}
.avatar.avatar-7x.avatar-4to3 {
    width: 200px;
}
.avatar.avatar-8x.avatar-4to3 {
    width: 225px;
}
/* format 3:4 */
.avatar.avatar-xs.avatar-3to4 {
    height: 37.5px;
}
.avatar.avatar-sm.avatar-3to4 {
    height: 50px;
}
.avatar.avatar-md.avatar-3to4 {
    height: 62.5px;
}
.avatar.avatar-lg.avatar-3to4 {
    height: 75px;
}
.avatar.avatar-xl.avatar-3to4 {
    height: 87.5px;
}
.avatar.avatar-2x.avatar-3to4 {
    height: 100px;
}
.avatar.avatar-3x.avatar-3to4 {
    height: 112.5px;
}
.avatar.avatar-4x.avatar-3to4 {
    height: 125px;
}
.avatar.avatar-5x.avatar-3to4 {
    height: 150px;
}
.avatar.avatar-6x.avatar-3to4 {
    height: 175%;
}
.avatar.avatar-7x.avatar-3to4 {
    height: 200px;
}
.avatar.avatar-8x.avatar-3to4 {
    height: 225px;
}


/***********************************************************************************************
>>	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: 0.5px solid #f1f0f0;
	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: 0.5px solid #cedbe6;
}
.form-control[readonly],
.form-control[disabled] {
	background: #f3f6f9;
	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: #8c44c1;
	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: 5px;
	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: 5px;
    border-bottom-left-radius: 5px;
}
.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;
    border-color: #f1f0f0;
}
.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;
}
.input-toggle {
    padding: 0;
    border-color: #fff;
    min-height: unset;
    text-align: center;
    font-weight: 600;
    color: #444444;
}

/*******************
Dropdown Group
*******************/
.btn-group {
	display: flex;
}
.btn-group button:first-child {
    height: 40px;
    margin-right: 0;
    border-radius: 5px 0 0 5px;
    border-right: 1px solid white;
}
.btn-group button:last-child {
    height: 40px;
    margin-left: 0;
    border-radius: 0 5px 5px 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;
	cursor: pointer;
}
.btn-dropdown .icon-dropdown,
.btn-group-dropdown .icon-dropdown {
	text-align: center;
	margin-left: 10px;
	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: 0.5px solid #e5e8ea;
    border-radius: 5px;
    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;
    box-shadow: 0px 0px 30px 0px #79859a26;
}
.ul-dropdown.active li:hover {
	background: #f4f5f6;
}
.ul-dropdown.active li {
    padding: 8px 15px;
    margin: 2px 0;
	cursor: pointer;
}
.ul-dropdown.dropdown-wide.active li {
    padding: 8px 45px 8px 20px;
    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: #e5e8ea;
}
.ul-dropdown.active li i {
	margin-right: 5px;
}
.ul-dropdown.active li.dropdown-divider {
	height: 0;
	margin: 0.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 Image
*******************/
.dropdown-image,
.list-image {
	min-width: 125px;
}
.custom-dropdown .dropdown-image li span,
.custom-dropdown .btn-dropdown span,
.dropdown-image li,
.list-image li {
    display: flex;
    align-items: center;
}
.btn-dropdown img,
.dropdown-image li img,
.list-image li img {
    height: 20px;
    width: 20px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 8px;
}

/*******************
Dropdown Icon
*******************/
.dropdown-icon li {
    display: flex;
    align-items: center;
}
.dropdown-icon li i {
    margin-right: 10px;
    color: #abb0b1;
}
/*******************
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;
}
.dropdown-right-10 .ul-dropdown.active {
	right: 10px;
}

/*******************
Dropdown div
*******************/
.div-dropdown {
    margin-left: -9999px;
    position: absolute;
    max-height: 0;
    color: transparent;
}
.div-dropdown.active {
    border-radius: 5px;
    margin: 0;
    margin-top: 2px;
    padding: 10px 15px;
    position: absolute;
    background: #ffffff;
    z-index: 99;
    color: #444444;
    transition: max-height .2s ease-out 0s, color .2s ease .1s;
    max-height: 800px;
    box-shadow: 0px 0px 30px 0px #79859a26;
}
.div-dropdown ul {
    min-width: 200px;
}

/*******************
Checkbox
*******************/
.checkbox {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}
.checkbox.checkbox-disabled {
	opacity: 0.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 0.3s ease;
	background: none;
}
.checkbox>input:checked~span:after {
	display: block;
}
.checkbox:hover>input:not([disabled]):checked~span, .checkbox>input:checked~span {
	transition: all 0.3s ease;
}
.checkbox>input:disabled~span {
	opacity: 0.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 0.3s ease;
}
.checkbox.checkbox-square>span {
	border-radius: 0;
}
.checkbox.checkbox-bold>span {
	border-width: 2px !important;
	transition: all 0.3s ease;
}
.form-inline .checkbox {
	margin-left: 15px;
	margin-right: 15px;
}
.checkbox.checkbox-single {
	width: 18px;
	height: 18px;
}
.checkbox.checkbox-single>span {
	top: 0px;
}
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: 0.75rem;
}
.form-group.row .checkbox-list {
	margin-top: 2px;
}
.checkbox.checkbox-disabled {
	opacity: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.7;
}
.checkbox.checkbox-success>span {
	border: 1px solid #8c44c1;
}
.checkbox.checkbox-success>span:after {
	border: solid #8c44c1;
}
.checkbox.checkbox-success>input:checked~span {
	border: 1px solid #8c44c1;
}
.checkbox.checkbox-success.checkbox-bold>input:checked~span {
	border: 2px solid #8c44c1;
}
.checkbox.checkbox-success>input:disabled~span {
	opacity: 0.6;
}
.checkbox.checkbox-success.checkbox-solid>span {
	background: #8c44c1;
	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: #8c44c1;
}
.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 #8c44c1;
}
.checkbox.checkbox-info.checkbox-disabled {
	opacity: 0.7;
}
.checkbox.checkbox-info>span {
	border: 1px solid #0016a7;
}
.checkbox.checkbox-info>span:after {
	border: solid #0016a7;
}
.checkbox.checkbox-info>input:checked~span {
	border: 1px solid #0016a7;
}
.checkbox.checkbox-info.checkbox-bold>input:checked~span {
	border: 2px solid #0016a7;
}
.checkbox.checkbox-info>input:disabled~span {
	opacity: 0.6;
}
.checkbox.checkbox-info.checkbox-solid>span {
	background: #0016a7;
	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: #0016a7;
}
.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 #0016a7;
}
.checkbox.checkbox-warning.checkbox-disabled {
	opacity: 0.7;
}
.checkbox.checkbox-warning>span {
	border: 1px solid #ffb630;
}
.checkbox.checkbox-warning>span:after {
	border: solid #ffb630;
}
.checkbox.checkbox-warning>input:checked~span {
	border: 1px solid #ffb630;
}
.checkbox.checkbox-warning.checkbox-bold>input:checked~span {
	border: 2px solid #ffb630;
}
.checkbox.checkbox-warning>input:disabled~span {
	opacity: 0.6;
}
.checkbox.checkbox-warning.checkbox-solid>span {
	background: #ffb630;
	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: #ffb630;
}
.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 #ffb630;
}
.checkbox.checkbox-danger.checkbox-disabled {
	opacity: 0.7;
}
.checkbox.checkbox-danger>span {
	border: 1px solid #d50c2d;
}
.checkbox.checkbox-danger>span:after {
	border: solid #d50c2d;
}
.checkbox.checkbox-danger>input:checked~span {
	border: 1px solid #d50c2d;
}
.checkbox.checkbox-danger.checkbox-bold>input:checked~span {
	border: 2px solid #d50c2d;
}
.checkbox.checkbox-danger>input:disabled~span {
	opacity: 0.6;
}
.checkbox.checkbox-danger.checkbox-solid>span {
	background: #d50c2d;
	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: #d50c2d;
}
.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 #d50c2d;
}

/*******************
Radio
*******************/
.radio {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	text-align: left;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.radio.radio-disabled {
	opacity: 0.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 0.3s ease;
	background: none;
}
.radio>input:checked~span:after {
	display: block;
}
.radio:hover>input:not([disabled]):checked~span, .radio>input:checked~span {
	transition: all 0.3s ease;
}
.radio>input:disabled~span {
	opacity: 0.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 0.3s ease;
}
.radio.radio-square>span {
	border-radius: 0;
}
.radio.radio-bold>span {
	border-width: 2px !important;
	transition: all 0.3s ease;
}
.form-inline .radio {
	margin-left: 15px;
	margin-right: 15px;
}
.radio.radio-single {
	width: 18px;
	height: 18px;
}
.radio.radio-single>span {
	top: 0px;
}
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: 0.75rem;
}
.form-group.row .radio-list {
	margin-top: 2px;
}
.radio.radio-disabled {
	opacity: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.8;
}
.radio.radio-success>span {
	border: 1px solid #8c44c1;
}
.radio.radio-success>span:after {
	border: solid #8c44c1;
	background: #8c44c1;
}
.radio.radio-success>input:disabled~span:after {
	border-color: #8c44c1;
}
.radio.radio-success>input:checked~span {
	border: 1px solid #8c44c1;
}
.radio.radio-success.radio-bold>input:checked~span {
	border: 2px solid #8c44c1;
}
.radio.radio-success>input:disabled~span {
	opacity: 0.6;
}
.radio.radio-success.radio-solid>span {
	background: #8c44c1;
	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: #8c44c1;
}
.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 #8c44c1;
	background: #8c44c1;
}
.radio.radio-info.radio-disabled {
	opacity: 0.8;
}
.radio.radio-info>span {
	border: 1px solid #0016a7;
}
.radio.radio-info>span:after {
	border: solid #0016a7;
	background: #0016a7;
}
.radio.radio-info>input:disabled~span:after {
	border-color: #0016a7;
}
.radio.radio-info>input:checked~span {
	border: 1px solid #0016a7;
}
.radio.radio-info.radio-bold>input:checked~span {
	border: 2px solid #0016a7;
}
.radio.radio-info>input:disabled~span {
	opacity: 0.6;
}
.radio.radio-info.radio-solid>span {
	background: #0016a7;
	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: #0016a7;
}
.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 #0016a7;
	background: #0016a7;
}
.radio.radio-warning.radio-disabled {
	opacity: 0.8;
}
.radio.radio-warning>span {
	border: 1px solid #ffb630;
}
.radio.radio-warning>span:after {
	border: solid #ffb630;
	background: #ffb630;
}
.radio.radio-warning>input:disabled~span:after {
	border-color: #ffb630;
}
.radio.radio-warning>input:checked~span {
	border: 1px solid #ffb630;
}
.radio.radio-warning.radio-bold>input:checked~span {
	border: 2px solid #ffb630;
}
.radio.radio-warning>input:disabled~span {
	opacity: 0.6;
}
.radio.radio-warning.radio-solid>span {
	background: #ffb630;
	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: #ffb630;
}
.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 #ffb630;
	background: #ffb630;
}
.radio.radio-danger.radio-disabled {
	opacity: 0.8;
}
.radio.radio-danger>span {
	border: 1px solid #d50c2d;
}
.radio.radio-danger>span:after {
	border: solid #d50c2d;
	background: #d50c2d;
}
.radio.radio-danger>input:disabled~span:after {
	border-color: #d50c2d;
}
.radio.radio-danger>input:checked~span {
	border: 1px solid #d50c2d;
}
.radio.radio-danger.radio-bold>input:checked~span {
	border: 2px solid #d50c2d;
}
.radio.radio-danger>input:disabled~span {
	opacity: 0.6;
}
.radio.radio-danger.radio-solid>span {
	background: #d50c2d;
	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: #d50c2d;
}
.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 #d50c2d;
	background: #d50c2d;
}


/*******************
Switch
*******************/
.switch {
	cursor: pointer;
	position: relative;
	margin-bottom: 12px;
}
.switch:before {
	content: "";
	width: 60px;
	height: 30px;
	border-radius: 15px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0 1px 3px rgba(0, 9, 61, 0.08);
}
.switch input {
	display: none;
}
.switch input + div {
	position: relative;
}
.switch input + div:before, .switch input + div:after {
	--s: 1;
	content: "";
	position: absolute;
	height: 4px;
	top: 13px;
	width: 24px;
	background: #E8EBFB;
	transform: scaleX(var(--s));
	transition: transform .3s ease;
}
.switch input + div:before {
	--s: 0;
	left: 4px;
	transform-origin: 0 50%;
	border-radius: 2px 0 0 2px;
}
.switch input + div:after {
	left: 32px;
	transform-origin: 100% 50%;
	border-radius: 0 2px 2px 0;
}
.switch input + div span {
	padding-left: 60px;
	line-height: 28px;
	color: #9EA0BE;
}
.switch input + div span:before {
	--x: 0;
	--b: #D3D4EC;
	--s: 4px;
	content: "";
	position: absolute;
	left: 4px;
	top: 3px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 var(--s) var(--b);
	transform: translateX(var(--x));
	transition: box-shadow .3s ease, transform .3s ease;
}
.switch input + div span:not(:empty) {
	padding-left: 68px;
}
.switch input:checked + div:before {
	--s: 1;
}
.switch input:checked + div:after {
	--s: 0;
}
.switch input:checked + div span:before {
	--x: 28px;
	--s: 12px;
	--b: #0016a7;
}
.switch input:disabled + div span:before,
.switch input:disabled + div:before {
	opacity: .7;
}

/*******************
Wizard
*******************/
.wizard {
	margin-bottom: 20px;
    background: white;
    border: none;
    box-shadow: none;
    border-radius: 5px;
}
.wizard.box-shadow {
	box-shadow: 0px 0px 30px 0px #523f690d;
}
.wizard-body {
	padding: 40px 50px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #5d6267;
}
.wizard-footer {
	padding: 20px 25px;
	background: #fff;
	color: #ffffff;
    border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: auto;
}
.wizard .wizard-tabs {
	background: #f8fcff;
    border: none;
	color: #444444;
	font-size: 14px;
	cursor: pointer;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.wizard .wizard-tabs .tab-item {
	background: #eef2f4;
	border-radius: 5px 5px 0 0;
	margin: 0;
	padding: 20px 25px;
	flex: 0 0 calc(25% - 0.25rem);
    width: calc(25% - 0.25rem);
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.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: 15px;
	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: #5d6267;
}
.wizard .wizard-tabs .tab-item-active {
    color: #5d6267;
    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.tab-padding {
	padding: 40px 10vw;
}
.wizard .wizard-body .tab-content-active {
	display: block;
}
.wizard .wizard-tabs .tab-item.access .tab-number,
.wizard .wizard-tabs .tab-item.access i {
    color: #0016a7 !important;
}
.wizard .wizard-tabs .tab-item.complete .tab-number,
.wizard .wizard-tabs .tab-item.complete i {
    color: #8c44c1 !important;
}

/*******************
Password Strength
*******************/
.password-strength-lines {
    position: absolute;
    bottom: 2px;
    left: 7px;
    right: 0;
    width: calc(100% - 60px);
    height: 5px;
    z-index: 3;
}
.password-strength-lines .line {
  position: absolute;
  background-color: transparent;
  height: 6px;
  border-radius: 2px;
  transition: background-color 0.25s ease-in;
}
.password-strength-lines .line:not(:first-of-type):not(:last-of-type) {
  left: 33%;
  right: 33%;
}
.password-strength-lines .line:first-of-type {
  left: 4px;
  right: 68%;
}
.password-strength-lines .line:last-of-type {
  left: 68%;
  right: 4px;
}

/*******************
Select Elements
*******************/
.select-info.active {
    background: #0016a7;
}
.select-warning.active {
    background: #ffb630;
}
.select-danger.active {
    background: #d50c2d;
}
.select-success.active {
    background: #8c44c1;
}
.elem_item {
    display: none;
}
.elem_item.active {
    display: block;
}


/*******************
Validation
*******************/
.validation-info {
	display: none;
}
.input-validation.success {
	border-color: #8c44c1;
}
.input-validation.error {
	border-color: #d50c2d;
}
.input-validation i {
	visibility: hidden;
	position: absolute;
    top: 12px;
    right: 20px;
}
.input-validation.success i.fa-check-circle {
	color: #2ecc71;
	visibility: visible;
}
.input-validation.error i.fa-exclamation-circle {
	color: #e74c3c;
	visibility: visible;
}


/*******************
File Upload
*******************/
.file-upload {
    display: flex;
    align-content: center;
    align-items: center;
	position: relative;
}
.file-upload .file-input {
    height: 100%;
    width: 100%;
    z-index: 100;
    cursor: pointer;
    position: absolute;
	opacity: 0;
}
.file-upload .file-select {
	margin-right: 10px;
	overflow: hidden;
	display: block;
	position: relative;
}

.file-upload-form .file-select-button {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0 15px;
    align-items: center;
    white-space: nowrap;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	height: 40px;
    margin-right: 0;
}
.file-upload-form .file-select-name {
    border: 0.5px solid #f1f0f0;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.file-icon-success {
	display: none;
}

/* success state */
.file-upload.success .file-success {
	background: #8c44c1;
	border-color: #8c44c1;
}
.file-upload.success .file-icon-success {
	display: block;
}
.file-upload.success .file-icon {
	display: none;
}
/*
  .file-upload .file-select {
	display: block;
	border: 2px solid #dce4ec;
	color: #34495e;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	text-align: left;
	background: #ffffff;
	overflow: hidden;
	position: relative;
  }
  .file-upload .file-select .file-select-button {
	background: #dce4ec;
	padding: 0 10px;
	display: inline-block;
	height: 40px;
	line-height: 40px;
  }
  .file-upload .file-select .file-select-name {
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
  }
  .file-upload .file-select:hover {
	border-color: #34495e;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
  }
  .file-upload .file-select:hover .file-select-button {
	background: #34495e;
	color: #ffffff;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
  }
  .file-upload.active .file-select {
	border-color: #3fa46a;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
  }
  .file-upload.active .file-select .file-select-button {
	background: #3fa46a;
	color: #ffffff;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
  }
  .file-upload .file-select input[type="file"] {
	z-index: 100;
	cursor: pointer;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	filter: alpha(opacity=0);
  }
  .file-upload .file-select.file-select-disabled {
	opacity: 0.65;
  }
  .file-upload .file-select.file-select-disabled:hover {
	cursor: default;
	display: block;
	border: 2px solid #dce4ec;
	color: #34495e;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	margin-top: 5px;
	text-align: left;
	background: #ffffff;
	overflow: hidden;
	position: relative;
  }
  .file-upload .file-select.file-select-disabled:hover .file-select-button {
	background: #dce4ec;
	color: #666666;
	padding: 0 10px;
	display: inline-block;
	height: 40px;
	line-height: 40px;
  }
  .file-upload .file-select.file-select-disabled:hover .file-select-name {
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
  }*/

/***********************************************************************************************
>>	6.0 	Elements
************************************************************************************************/

/*******************
Buttons
******************/
.btn {
	padding: 9px 15px;
	margin: 2px 1px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	transition: opacity 0.1s ease-in;
	font-family: inherit;
}
.btn:hover {
	opacity: 0.6;
	transition: opacity 0.1s ease-out;
}
.btn:focus {
	outline: 0;
	opacity: 0.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;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.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-circle img {
	width: 40px;
	height: 40px;
    object-fit: cover;
    border-radius: 100%;
    position: absolute;
}
.btn-circle.btn-xs img {
	width: 40px;
	height: 40px;
}
.btn-circle.btn-sm img {
	width: 35px;
	height: 35px;
}
.btn-circle.btn-lg img {
	width: 50px;
	height: 50px;
}
.btn-circle.btn-xl img {
	width: 70px;
	height: 70px;
}
.btn-block {
	width: calc(100% - 2px);
}
button[disabled],
button[disabled]:hover {
	background: #e5e8ea !important;
	cursor: auto;
	color: #abb0b1;
	opacity: 0.8;
	border-color: #e5e8ea !important;
}
/* bg */
.btn-transparent {
	background: transparent;
	border: 0.5px solid transparent;
	color: #ffffff;
}
.btn-white {
	background: #ffffff;
	border: 0.5px solid rgb(231, 231, 231);
	color: #414446;
}
.btn-white:hover {
	background: #f1f1f1;
	/*transition: background-color 0.1s ease-out;*/
}
.btn-default {
	background: #e5e8ea;
	color: #5e6264;
	border: 1px solid #e5e8ea;
}
.btn-default-light {
	background: #ccced7;
	color: #ffffff;
	border: 1px solid #ccced7;
}
.btn-yellow {
	background: #ffed00;
	color: #414446;
	border: 1px solid #ffed00;
}
.btn-success {
	background: #8c44c1;
	color: #ffffff;
	border: 1px solid #8c44c1;
}
.btn-warning {
	background: #ffb630;
	color: #ffffff;
	border: 1px solid #ffb630;
}
.btn-danger {
	background: #d50c2d;
	color: #ffffff;
	border: 1px solid #d50c2d;
}
.btn-lightblue {
	background: #9bc5cf;
	color: #414446;
	border: 1px solid #9bc5cf;
}
.btn-info {
	background: #0016a7;
	color: #ffffff;
	border: 1px solid #0016a7;
}
.btn-lime {
	background: #8c44c1;
	color: #ffffff;
	border: 1px solid #8c44c1;
}
.btn-green {
	background: #57b399;
	color: #ffffff;
	border: 1px solid #57b399;
}
.btn-grey {
	background: #abb0b1;
	color: #ffffff;
	border: 1px solid #abb0b1;
}
.btn-dark {
	background: #5d6267;
	color: #ffffff;
	border: 1px solid #5d6267;
}
.btn-secondary {
	background: #b7216b;
	color: #ffffff;
	border: 1px solid #b7216b;
}
/* light */
.btn-light.btn-default {
	background: #f8f9fa;
	border: 1px solid #f8f9fa;
	color: #616161;
}
.btn-light.btn-yellow {
	background: #ffed0040;
	border: 1px solid #ffed0040;
	color: #ffed00;
}
.btn-light.btn-success {
	background: #ddf5ee;
	border: 1px solid #ddf5ee;
	color: #8c44c1;
}
.btn-light.btn-warning {
	background: #ffedcb;
	border: 1px solid #ffedcb;
	color: #ffb630;
}
.btn-light.btn-danger {
	background: #fed7d7;
	border: 1px solid #fed7d7;
	color: #d50c2d;
}
.btn-light.btn-lightblue {
	background: #9bc5cf40;
	border: 1px solid #9bc5cf40;
	color: #9bc5cf;
}
.btn-light.btn-info {
	background: #daeafb;
	border: 1px solid #daeafb;
	color: #0016a7;
}
.btn-light.btn-lime {
	background: #ddf5ee;
	border: 1px solid #ddf5ee;
	color: #8c44c1;
}
.btn-light.btn-green {
	background: #57b39940;
	border: 1px solid #57b39940;
	color: #57b399;
}
.btn-light.btn-grey {
	background: #eaebeb;
	border: 1px solid #eaebeb;
	color: #616161;
}
.btn-light.btn-dark {
	background: #d6d8d9;
	border: 1px solid #d6d8d9;
	color: #5d6267;
}
/* text */
.btn-text-default {
	border: 1px solid #fff;
	color: #abb0b1;
}
.btn-text-yellow  {
	border: 1px solid #fff;
	color: #ffed00;
}
.btn-text-success {
	border: 1px solid #fff;
	color: #8c44c1;
}
.btn-text-warning {
	border: 1px solid #fff;
	color: #ffb630;
}
.btn-text-danger {
	border: 1px solid #fff;
	color: #d50c2d;
}
.btn-text-lightblue {
	border: 1px solid #fff;
	color: #9bc5cf;
}
.btn-text-info {
	border: 1px solid #fff;
	color: #0016a7;
}
.btn-text-lime {
	border: 1px solid #fff;
	color: #8c44c1;
}
.btn-text-green {
	border: 1px solid #fff;
	color: #57b399;
}
.btn-text-grey{
	border: 1px solid #fff;
	color: #abb0b1;
}
.btn-text-dark {
	border: 1px solid #fff;
	color: #5d6267;
}
/* outline, outline hover */
.btn-outline.btn-white {
	border: 1px solid #ffffff;
	color: #abb0b1;
}
.btn-outline,
.btn-hover-outline:hover,
.btn-hover-outline:focus {
	background: #ffffff;
	color: #5d6267;
}
.btn-outline.btn-default,
.btn-default.btn-hover-outline:hover,
.btn-default.btn-hover-outline:focus,
.btn-text-default.btn-hover-outline:hover,
.btn-text-default.btn-hover-outline:focus {
	border: 1px solid #e5e8ea;
	color: #abb0b1;
}
.btn-outline.btn-yellow,
.btn-yellow.btn-hover-outline:hover,
.btn-yellow.btn-hover-outline:focus,
.btn-text-yellow.btn-hover-outline:hover
.btn-text-yellow.btn-hover-outline:focus  {
	border: 1px solid #ffed00;
	color: #ffed00;
}
.btn-outline.btn-success,
.btn-success.btn-hover-outline:hover,
.btn-success.btn-hover-outline:focus,
.btn-text-success.btn-hover-outline:hover,
.btn-text-success.btn-hover-outline:focus {
	border: 1px solid #8c44c1;
	color: #8c44c1;
}
.btn-outline.btn-warning,
.btn-warning.btn-hover-outline:hover,
.btn-warning.btn-hover-outline:focus,
.btn-text-warning.btn-hover-outline:hover,
.btn-text-warning.btn-hover-outline:focus {
	border: 1px solid #ffb630;
	color: #ffb630;
}
.btn-outline.btn-danger,
.btn-danger.btn-hover-outline:hover,
.btn-danger.btn-hover-outline:focus,
.btn-text-danger.btn-hover-outline:hover,
.btn-text-danger.btn-hover-outline:focus {
	border: 1px solid #d50c2d;
	color: #d50c2d;
}
.btn-outline.btn-lightblue,
.btn-lightblue.btn-hover-outline:hover,
.btn-lightblue.btn-hover-outline:focus,
.btn-text-lightblue.btn-hover-outline:hover,
.btn-text-lightblue.btn-hover-outline:focus {
	border: 1px solid #9bc5cf;
	color: #9bc5cf;
}
.btn-outline.btn-info,
.btn-info.btn-hover-outline:hover,
.btn-info.btn-hover-outline:focus,
.btn-text-info.btn-hover-outline:hover,
.btn-text-info.btn-hover-outline:focus {
	border: 1px solid #0016a7;
	color: #0016a7;
}
.btn-outline.btn-lime,
.btn-lime.btn-hover-outline:hover,
.btn-lime.btn-hover-outline:focus,
.btn-text-lime.btn-hover-outline:hover,
.btn-text-lime.btn-hover-outline:focus {
	border: 1px solid #8c44c1;
	color: #8c44c1;
}
.btn-outline.btn-green,
.btn-green.btn-hover-outline:hover,
.btn-green.btn-hover-outline:focus,
.btn-text-green.btn-hover-outline:hover,
.btn-text-green.btn-hover-outline:focus {
	border: 1px solid #57b399;
	color: #57b399;
}
.btn-outline.btn-grey,
.btn-grey.btn-hover-outline:hover,
.btn-grey.btn-hover-outline:focus,
.btn-text-grey.btn-hover-outline:hover,
.btn-text-grey.btn-hover-outline:focus {
	border: 1px solid #abb0b1;
	color: #abb0b1;
}
.btn-outline.btn-dark,
.btn-dark.btn-hover-outline:hover,
.btn-dark.btn-hover-outline:focus,
.btn-text-dark.btn-hover-outline:hover,
.btn-text-dark.btn-hover-outline:focus {
	border: 1px solid #5d6267;
	color: #5d6267;
}
/* hover */
.btn-transparent.btn-hover:hover,
.btn-transparent.btn-hover:focus,
.btn-transparent.btn-hover-solid:hover,
.btn-transparent.btn-hover-solid:focus {
    background: #ffffff;
    color: #23283a;
}
.btn-default.btn-hover:hover,
.btn-default.btn-hover:focus,
.btn-text-default.btn-hover-solid:hover,
.btn-text-default.btn-hover-solid:focus {
	background: #e5e8ea;
	color: #ffffff;
}
.btn-default-light.btn-hover:hover,
.btn-default-light.btn-hover:focus,
.btn-text-default-light.btn-hover-solid:hover,
.btn-text-default-light.btn-hover-solid:focus {
	background: #ccced7;
	color: #ffffff;
}
.btn-yellow.btn-hover:hover,
.btn-yellow.btn-hover:focus,
.btn-text-yellow.btn-hover-solid:hover,
.btn-text-yellow.btn-hover-solid:focus {
	background: #ffed00;
	color: #ffffff;
}
.btn-success.btn-hover:hover,
.btn-success.btn-hover:focus,
.btn-text-success.btn-hover-solid:hover,
.btn-text-success.btn-hover-solid:focus {
	background: #8c44c1;
	color: #ffffff;
}
.btn-warning.btn-hover:hover,
.btn-warning.btn-hover:focus,
.btn-text-warning.btn-hover-solid:hover,
.btn-text-warning.btn-hover-solid:focus {
	background: #ffb630;
	color: #ffffff;
}
.btn-danger.btn-hover:hover,
.btn-danger.btn-hover:focus,
.btn-text-danger.btn-hover-solid:hover,
.btn-text-danger.btn-hover-solid:focus {
	background: #d50c2d;
	color: #ffffff;
}
.btn-lightblue.btn-hover:hover,
.btn-lightblue.btn-hover:focus,
.btn-text-lightblue.btn-hover-solid:hover,
.btn-text-lightblue.btn-hover-solid:focus {
	background: #9bc5cf;
	color: #ffffff;
}
.btn-info.btn-hover:hover,
.btn-info.btn-hover:focus,
.btn-text-info.btn-hover-solid:hover,
.btn-text-info.btn-hover-solid:focus {
	background: #0016a7;
	color: #ffffff;
}
.btn-lime.btn-hover:hover,
.btn-lime.btn-hover:focus,
.btn-text-lime.btn-hover-solid:hover,
.btn-text-lime.btn-hover-solid:focus {
	background: #8c44c1;
	color: #ffffff;
}
.btn-green.btn-hover:hover,
.btn-green.btn-hover:focus,
.btn-text-green.btn-hover-solid:hover,
.btn-text-green.btn-hover-solid:focus {
	background: #57b399;
	color: #ffffff;
}
.btn-grey.btn-hover:hover,
.btn-grey.btn-hover:focus,
.btn-text-grey.btn-hover-solid:hover,
.btn-text-grey.btn-hover-solid:focus {
	background: #abb0b1;
	color: #ffffff;
}
.btn-dark.btn-hover:hover,
.btn-dark.btn-hover:focus,
.btn-text-dark.btn-hover-solid:hover,
.btn-text-dark.btn-hover-solid:focus {
	background: #5d6267;
	color: #ffffff;
}
/* hover */
.btn-hover-solid:hover,
.btn-hover-opacity:hover {
	opacity: 1 !important;
}
.btn-hover-outline:hover,
.btn-hover-outline:focus {
	background: #ffffff !important;
}

.btn-card {
	background: #ffffff;
	color: #5d6267;
}
.btn-card:hover {
	opacity: 1;
	box-shadow: 0px 0px 30px 0px #38363c0d;
}
.btn-card:focus,
.btn-card.active {
	opacity: 1;
	box-shadow: 0 0 12px 2px rgb(214, 214, 214);
}
.btn-transparent {
	background: transparent;
	border: 0.5px solid transparent;
}

/*******************
Switcher
*******************/
input[type="checkbox"].switcher-checkbox {
    background-color: #ffffff;
    border: 1px solid #e5e8ea;
    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 #abb0b1;
	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 #abb0b1;
}
input[type="checkbox"].switcher-checkbox:disabled {
	opacity: 0.5;
}
input[type="checkbox"].switcher-checkbox:checked {
    background-color: #e5e8ea;
    border-color: #e5e8ea;
    transition: background-color .2s ease 0s;
}
input[type="checkbox"].switcher-checkbox.switcher-info:checked {
    background-color: #0016a7;
    border-color: #0016a7;
}
input[type="checkbox"].switcher-checkbox.switcher-success:checked {
    background-color: #8c44c1;
    border-color: #8c44c1;
}
input[type="checkbox"].switcher-checkbox.switcher-warning:checked {
    background-color: #ffb630;
    border-color: #ffb630;
}
input[type="checkbox"].switcher-checkbox.switcher-danger:checked {
    background-color: #d50c2d;
    border-color: #d50c2d;
}
input[type="checkbox"].switcher-checkbox.switcher-dark:checked {
    background-color: #5d6267;
    border-color: #5d6267;
}

/*******************
Note
*******************/
.note {
    position: relative;
	margin-bottom: 20px;
	background-color: #e5e8ea;
	border: 1px solid #e5e8ea;
	color: #5d6267;
    box-shadow: none;
	border-radius: 3px;
	padding: 15px;
	padding-right: 30px;
	font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.note .close-note {
    color: inherit;
	cursor: pointer;
}
.note-content {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
.note-with-icon .note-content {
	margin-left: 85px;
	display: block;
}
.note-with-icon .note-content-right {
	margin-right: 85px;
	text-align: right;
}
.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: #e5e8ea;
	color: #5d6267;
	border: 1px solid #e5e8ea;
}
.note-dark {
	background: #444444;
	color: #e5e8ea;
	border: 1px solid #444444;
}
.note-dark .note-content * {
	color: #e5e8ea;
}
.note-warning {
	background: #ffb630;
	color: white;
	border: 1px solid #ffb630;
}
.note-warning .note-content * {
	color: white;
}
.note-info {
	background: #0016a7;
	color: white;
	border: 1px solid #0016a7;
}
.note-info .note-content * {
	color: white;
}
.note-success {
	background: #8c44c1;
	color: white;
	border: 1px solid #8c44c1;
}
.note-success .note-content * {
	color: white;
}
.note-danger {
	background: #d50c2d;
	color: white;
	border: 1px solid #d50c2d;
}
.note-danger .note-content * {
	color: white;
}
.note-white {
	background: white;
	border: 1px solid #fff;
	color: #5d6267;
}
.note-default .note-icon,
.note-default .note-icon-right {
	background: #abb0b1;
}
.note-white .note-icon,
.note-white .note-icon-right {
	background: #e5e8ea;
	color: #5d6267;
}
.note-warning .note-icon,
.note-warning .note-icon-right {
	background: rgb(231, 131, 0);
}
.note-info .note-icon,
.note-info .note-icon-right {
	background: rgb(53, 81, 104);
}
.note-success .note-icon,
.note-success .note-icon-right {
	background: rgb(35, 141, 35);
}
.note-danger .note-icon,
.note-danger .note-icon-right {
	background: rgb(128, 29, 29);
}
.note-dark .note-icon,
.note-dark .note-icon-right {
	background: #5d6267;
}
/* light */
.note-light.note-white {
	background: #fff;
	border: 1px solid #fff;
	color: #5d6267;
}
.note-light.note-white .note-content * {
	color: #5d6267;
}
.note-light.note-default {
	background: #e7eaee;
	border: 1px solid #e7eaee;
	color: #5d6267;
}
.note-light.note-default .note-content * {
	color: #5d6267;
}
.note-light.note-success {
	background: #ddf5ee;
	border: 1px solid #ddf5ee;
	color: #8c44c1;
}
.note-light.note-success .note-content * {
	color: #8c44c1;
}
.note-light.note-warning {
	background: #ffedcb;
	border: 1px solid #ffedcb;
	color: #ffb630;
}
.note-light.note-warning .note-content * {
	color: #ffb630;
}
.note-light.note-danger {
	background: #fdd2d9;
	border: 1px solid #fdd2d9;
	color: #d50c2d;
}
.note-light.note-danger .note-content * {
	color: #d50c2d;
}
.note-light.note-info {
	background: #c6cbe8;
	border: 1px solid #c6cbe8;
	color: #0016a7;
}
.note-light.note-info .note-content * {
	color: #0016a7;
}
.note-light.note-grey {
	background: #eaebeb;
	border: 1px solid #eaebeb;
	color: #616161;
}
.note-light.note-grey .note-content * {
	color: #616161;
}
.note-light.note-dark {
	background: #d6d8d9;
	border: 1px solid #d6d8d9;
	color: #5d6267;
}
.note-light.note-dark .note-content * {
	color: #5d6267;
}
.note-light.note-secondary {
	background: #d8c2f2;
	border: 1px solid #d8c2f2;
	color: #8624e2;
}
.note-light.note-secondary .note-content * {
	color: #8624e2;
}
/* outline  */
.note-outline {
	background: #ffffff;
	color: #5d6267;
}
.note-outline .note-content * {
	color: #5d6267;
}
.note-outline.note-white {
	border: 1px solid #f8f8f8;
	color: #abb0b1;
}
.note-outline.note-default {
	border: 1px solid #e5e8ea;
	color: #abb0b1;
}
.note-outline.note-default .note-content * {
	color: #abb0b1;
}
.note-outline.note-success {
	border: 1px solid #8c44c1;
	color: #8c44c1;
}
.note-outline.note-success .note-content * {
	color: #8c44c1;
}
.note-outline.note-warning {
	border: 1px solid #ffb630;
	color: #ffb630;
}
.note-outline.note-warning .note-content * {
	color: #ffb630;
}
.note-outline.note-danger {
	border: 1px solid #d50c2d;
	color: #d50c2d;
}
.note-outline.note-danger .note-content * {
	color: #d50c2d;
}
.note-outline.note-info {
	border: 1px solid #0016a7;
	color: #0016a7;
}
.note-outline.note-info .note-content * {
	color: #0016a7;
}
.note-outline.note-grey {
	border: 1px solid #abb0b1;
	color: #abb0b1;
}
.note-outline.note-grey .note-content * {
	color: #abb0b1;
}
.note-outline.note-dark {
	border: 1px solid #5d6267;
	color: #5d6267;
}
.note-outline.note-dark .note-content * {
	color: #5d6267;
}

/*******************
Notification
*******************/

.notification {
    padding: 15px;
    padding-right: 35px;
    background: white;
    position: fixed;
    top: 80px;
    right: 20px;
    border-radius: 5px;
	animation: zoomIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	box-shadow: 0 0 8px 1px rgb(199, 199, 199);
	z-index: 9991;
}
.notification .close-notification {
    color: #444444;
    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: #e5e8ea;
}
.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: 0.5px solid rgb(245, 245, 245);
	color: #414446;
}
.label-default {
	background: #e5e8ea;
	color: #414446;
}
.label-default-light {
	background: #ccced7;
	color: #ffffff;
}
.label-yellow {
	background: #ffed00;
	color: #414446;
}
.label-success {
	background: #8c44c1;
	color: #ffffff;
}
.label-warning {
	background: #ffb630;
	color: #ffffff;
}
.label-danger {
	background: #d50c2d;
	color: #ffffff;
}
.label-lightblue {
	background: #9bc5cf;
	color: #414446;
}
.label-info {
	background: #0016a7;
	color: #ffffff;
}
.label-lime {
	background: #8c44c1;
	color: #ffffff;
}
.label-green {
	background: #57b399;
	color: #ffffff;
}
.label-grey {
	background: #abb0b1;
	color: #ffffff;
}
.label-dark {
	background: #5d6267;
	color: #ffffff;
}
.label-default.label-outline {
	background: #fff;
	border: 1px solid #e5e8ea;
	color: #414446;
}
.label-grey.label-outline {
	background: #fff;
	border: 1px solid #abb0b1;
	color: #414446;
}
.label-dark.label-outline {
	background: #fff;
	border: 1px solid #5d6267;
	color: #414446;
}
.label-success.label-outline {
	background: #fff;
	border: 1px solid #8c44c1;
	color: #414446;
}
.label-warning.label-outline {
	background: #fff;
	border: 1px solid #ffb630;
	color: #414446;
}
.label-danger.label-outline {
	background: #fff;
	border: 1px solid #d50c2d;
	color: #414446;
}
.label-info.label-outline {
	background: #fff;
	border: 1px solid #0016a7;
	color: #414446;
}

.label-default.label-light {
	background: #f8f9fa;
	border: 1px solid #f8f9fa;
	color: #616161;
}
.label-grey.label-light {
	background: #eaebeb;
	border: 1px solid #eaebeb;
	color: #535353;
}
.label-dark.label-light {
	background: #d6d8d9;
	border: 1px solid #d6d8d9;
	color: #5d6267;
}
.label-success.label-light {
	background: #ddf5ee;
	border: 1px solid #ddf5ee;
	color: #8c44c1;
}
.label-warning.label-light {
	background: #ffedcb;
	border: 1px solid #ffedcb;
	color: #ffb630;
}
.label-danger.label-light {
	background: #fed7d7;
	border: 1px solid #fed7d7;
	color: #d50c2d;
}
.label-info.label-light {
	background: #daeafb;
	border: 1px solid #daeafb;
	color: #0016a7;
}

.label-secondary {
	background: #b7216b;
	color: #ffffff;
	border: 1px solid #b7216b;
}

/*******************
Ribbon
*******************/
.ribbon-box {
	overflow: visible;
	margin-bottom: 20px;
	padding: 15px;
    background-color: #ffffff;
    border: none;
    box-shadow: 0px 0px 30px 0px #523f690d;
    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: #0016a7;
}
.ribbon-warning {
	background: #ffb630;
}
.ribbon-danger {
	background: #d50c2d;
}
.ribbon-success {
	background: #8c44c1;
}
.ribbon-light {
	background: #e5e8ea;
	color: #5d6267;
}
.ribbon-dark {
	background: #5d6267;
}

/*******************
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: #0016a7;
}

@-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: #e5e8ea;
}
.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: #abb0b1;
}
.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: #abb0b1;
}
.list-item .list-item-badge {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    width: 20px;
    flex-shrink: 0;
}
.list-item .list-item-badge::before {
    position: absolute;
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    left: 0;
	border-radius: 100%;
	background: #abb0b1;
}
.list-item .list-item-badge-line {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
	width: 4px;
	height: 20px;
	margin-right: 10px;
}
.list-item.two-lines .list-item-badge-line {
	height: 40px;
}
.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: #0016a7;
}
.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;
}

/* hover */
.list-box-hover .list-item {
    padding: 5px;
    border-radius: 5px;
}
.list-box-hover .list-item:hover {
    background: #f7f8f9;
	cursor: pointer;
}

/* list timeline */
.list-item .list-item-label {
    width: 50px;
    position: relative;
    flex-shrink: 0;
    text-align: right;
}
.list-timeline.list-badge::before {
	left: 58px;
	width: 4px;
}
.list-timeline .list-item .list-item-badge {
    background: white;
    padding: 3px 0px;
    border-radius: 100%;
    justify-content: center;
}
.list-timeline .list-item .list-item-badge::before {
	display: none;
}

/* list icon badge */
.list-badge.list-badge-icon::before {
	width: 4px;
    left: 16px;
}
.list-badge-icon .list-item .list-item-badge {
    background: white;
    padding: 3px 0px;
    border-radius: 100%;
    justify-content: center;
    width: 35px;
    margin-right: 5px;
}
.list-badge-icon .list-item .list-item-badge::before {
	display: none;
}
.list-badge-icon .list-item .list-item-badge .badge-icon {
    background: #eff1f2;
    padding: 3px;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-badge-icon .list-item .list-item-badge .badge-icon i {
    font-size: 18px;
}

/* list nav */
.list-nav-tabs .list-item {
    padding: 10px 5px;
	margin: 4px 0;
    border-radius: 10px;
}
.list-nav-tabs .list-item:hover,
.list-nav-tabs .list-item.list-item-active {
	cursor: pointer;
    background: #7696b714;
}
.list-nav-tabs .list-item:hover .list-item-icon i,
.list-nav-tabs .list-item.list-item-active .list-item-icon i,
.list-nav-tabs .list-item:hover .list-item-text,
.list-nav-tabs .list-item.list-item-active .list-item-text {
	color: #0016a7;
}

/* list dropdown */
.list-dropdown {
	float: right;
}
.list-dropdown .ul-dropdown.active {
	right: 0;
}

/*******************
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;
}


/*******************
Portlets
*******************/
/* collapse */
.action-collapse {
    cursor: pointer;
}
.container-collapse {
    height: 0;
    overflow: hidden;
    padding: 0;
}
.container-collapse.expand {
    height: auto;
    padding: auto;
}
/* refresh */
.action-refresh {
    cursor: pointer;
}
.container-refresh {
	position: relative;
}
.container-refresh:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fbfcff82;
    transition: opacity .2s ease-in-out;
    z-index: -1;
    opacity: 0;
}
.container-refresh.sync:before {
    transition: opacity .2s ease-in-out;
    opacity: 1;
    z-index: 1;
}
.container-refresh.sync {
    opacity: .8;
    transition: opacity .2s ease-in-out;
}
.icon-refresh {
    position: absolute;
    color: transparent;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
.container-refresh.sync .icon-refresh {
    position: absolute;
    z-index: 2;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    font-size: 22px;
    color: #454c65;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}
/* close */
.action-close {
    cursor: pointer;
}


/*******************
Overlay
*******************/
.overlay {
    position: relative;
}
.overlay .overlay-wrapper {
    border: none;
    border-radius: 5px;
	position: relative;
    overflow: hidden;
}
.overlay .overlay-wrapper img {
	object-fit: cover;
	width: 100%;
	border-radius: 5px;
}
.overlay .overlay-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	padding: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.overlay .overlay-content.content-frame {
	padding: 20px;
    margin: 10px;
    border: 1px solid #fff;
}

/* simple overlay */
.overlay .overlay-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}
/* position */
.overlay .overlay-layer.layer-top {
    align-items: flex-start;
}
.overlay .overlay-layer.layer-bottom {
    align-items: flex-end;
}
.overlay .overlay-layer.layer-topleft {
    align-items: flex-start;
    justify-content: flex-start;
}
.overlay .overlay-layer.layer-topright {
    align-items: flex-start;
    justify-content: flex-end;
}
.overlay .overlay-layer.layer-bottomleft {
    align-items: flex-end;
    justify-content: flex-start;
}
.overlay .overlay-layer.layer-bottomright {
    align-items: flex-end;
    justify-content: flex-end;
}
/* size */
.overlay.overlay-h-md {
	max-height: 250px;
	max-width: 400px;
}
/* active */
.overlay.overlay-block .overlay-layer,
.overlay:hover .overlay-layer {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}
/* card full bg */
.overlay-full.overlay {
    height: 95%;
    width: 100%;
}
.overlay-full .overlay-wrapper,
.overlay-full .overlay-wrapper img {
    height: 100%;
    width: 100%;
}

/* frame overlay*/
.overlay .overlay-frame {
    position: absolute;
    border: 1px solid #fff;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.overlay .overlay-frame .frame-content {
    transition: opacity 0.2s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
	opacity: 0;
}
.overlay:hover .overlay-frame {
    width: 60%;
    height: 60%;
    opacity: 1;
}
.overlay:hover .overlay-frame.frame-wide {
    width: 85%;
    height: 85%;
    opacity: 1;
}
.overlay:hover .overlay-frame .frame-content {
    opacity: 1;
}

/* overlay opacity  */
.overlay:hover.overlay-opacity {
 	opacity: .8;
	transition: opacity 0.3s;
}
/* overlay contrast */
.overlay:hover.overlay-contrast img {
	filter: contrast(70%);
	transition: filter 0.3s;
}
/* overlay zoom */
.overlay.overlay-zoom img {
	transition: transform 0.3s;
}
.overlay:hover.overlay-zoom img {
    transform: scale(1.3);
	transition: transform 0.3s;
}


/*******************
File manager
*******************/
.card-filemanager-body {
    padding: 0 !important;
}
.card-filemanager-left {
    max-height: 70vh;
    overflow: auto;
    border-right: 1px solid #e5e8ea !important;
}
.card-filemanager-right {
    max-height: 70vh;
    overflow: auto;
}
.fullsize .card-filemanager-left,
.fullsize .card-filemanager-right {
    height: 85vh;
}
.fullsize .card-filemanager-body,
.fullsize .card-filemanager-left,
.fullsize .card-filemanager-right {
    height: 85vh;
    max-height: unset;
}

/*******************
File tile
*******************/
.file-tile {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    height: 95%;
    margin-bottom: 25px;
    overflow: hidden;
}
.file-tile-img {
    position: relative;
    margin-bottom: 8px;
}
.file-tile-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}
.file-tile-icon {
    position: relative;
    margin-bottom: 8px;
}
.file-tile-icon i {
	font-size: 50px;
}
.file-folder .file-tile-icon i {
	color: #f3d360;
}
.file-tile-title {
    color: #444444;
    font-weight: 600;
	text-align: center;
    word-break: break-all;
}
.file-tile-details,
.file-tile-details p {
    font-size: 12px;
    text-align: center;
}
.file-folder {
	cursor: pointer;
}

/* fullsize */
.file-tile.fullsize .file-tile-img,
.file-tile.fullsize .file-tile-img img {
    width: 100%;
    height: 100%;
}

/* icon */
.col-lg-1 .file-tile-icon i {
	font-size: 51px;
}
.col-lg-2 .file-tile-icon i {
	font-size: 90px;
}
.col-lg-3 .file-tile-icon i {
	font-size: 120px;
}
.col-lg-4 .file-tile-icon i {
	font-size: 165px;
}
.col-lg-6 .file-tile-icon i {
	font-size: 255px;
}

/*******************
filemanager contextmenu
*******************/
.custom_contextmenu {
    padding: 10px;
    border-radius: 5px;
}
.custom_contextmenu:hover {
    background: #f9f9f9;
}
.list-nav-filemanager .list-item .list-item-icon .icon-open {
    display: none;
}
.list-nav-filemanager .list-item-active .list-item-icon .icon-open {
    display: block;
}
.list-nav-filemanager .list-item-active .list-item-icon .icon-closed {
    display: none;
}
.files_sort_by {
    cursor: pointer;
}
.file-container {
    min-height: 100px;
}
.contextmenu {
    display: none;
    z-index: 9999;
    position: absolute;
    overflow: hidden;
    border: 1px solid #CCC;
    white-space: nowrap;
    background: white;
    color: #333333;
    border-radius: 5px;
    list-style: none;
}
.contextmenu li {
    padding: 6px 20px 6px 10px;
    cursor: pointer;
}
.contextmenu li:hover {
    background-color: #ddeeff;
}

/*******************
Todolist
*******************/
.checklist-container {
    max-height: 70vh;
}
.checklist {
    position: relative;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.checklist-todo {
    display: flex;
    padding: 5px 0;
    width: 100%;
    cursor: pointer;
}
.checklist label {
	display: flex;
    color: #353c4c;
    position: relative;
    cursor: pointer;
    align-items: center;
    width: fit-content;
    transition: color 0.3s ease;
}
.checklist label::before,
.checklist label::after {
    content: "";
    position: absolute;
}
.checklist label::before {
    height: 0;
    width: 8px;
    left: -27px;
    border: 1px solid #abb0b1;
    background: #abb0b1;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}
.checklist label:after {
    height: 4px;
    width: 4px;
    top: 8px;
    left: -25px;
    border-radius: 50%;
}
.checklist input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    height: 15px;
    width: 15px;
    outline: none;
    border: 0;
    margin: 0 15px 0 0;
    cursor: pointer;
    background: #fff;
    display: grid;
    align-items: center;
}
.checklist input[type=checkbox]::before,
.checklist input[type=checkbox]::after {
    content: "";
    position: absolute;
    height: 2px;
    top: auto;
    background: #abb0b1;
    border-radius: 2px;
}
.checklist input[type=checkbox]::before {
    width: 0px;
    right: 60%;
    transform-origin: right bottom;
}
.checklist input[type=checkbox]::after {
    width: 0px;
    left: 40%;
    transform-origin: left bottom;
}
.checklist input[type=checkbox]:checked::before {
    -webkit-animation: check-01 0.4s ease forwards;
            animation: check-01 0.4s ease forwards;
}
.checklist input[type=checkbox]:checked::after {
    -webkit-animation: check-02 0.4s ease forwards;
            animation: check-02 0.4s ease forwards;
}
.checklist input[type=checkbox]:checked + label {
    color: #b8bbc0;
    -webkit-animation: move 0.3s ease 0.1s forwards;
            animation: move 0.3s ease 0.1s forwards;
}
.checklist input[type=checkbox]:checked + label::before {
    background: #b8bbc0;
    color: #92969c;
    height: 2px;
    width: 8px;
    border: none;
    border-radius: 2px;
    -webkit-animation: slice 0.4s ease forwards;
            animation: slice 0.4s ease forwards;
}
.checklist input[type=checkbox]:checked + label::after {
    -webkit-animation: firework 0.5s ease forwards 0.1s;
            animation: firework 0.5s ease forwards 0.1s;
}

.checklist.checklist-info label::before,
.checklist.checklist-info input[type=checkbox]::before,
.checklist.checklist-info input[type=checkbox]::after {
    background: #0016a7;
    border-color: #0016a7;
}
.checklist.checklist-warning label::before,
.checklist.checklist-warning input[type=checkbox]::before,
.checklist.checklist-warning input[type=checkbox]::after {
    background: #ffb630;
    border-color: #ffb630;
}
.checklist.checklist-danger label::before,
.checklist.checklist-danger input[type=checkbox]::before,
.checklist.checklist-danger input[type=checkbox]::after {
    background: #d50c2d;
    border-color: #d50c2d;
}
.checklist.checklist-success label::before,
.checklist.checklist-success input[type=checkbox]::before,
.checklist.checklist-success input[type=checkbox]::after {
    background: #8c44c1;
    border-color: #8c44c1;
}
.checklist.checklist-dark label::before,
.checklist.checklist-dark input[type=checkbox]::before,
.checklist.checklist-dark input[type=checkbox]::after {
    background: #444444;
    border-color: #444444;
}
/* checkbox styling */
.checklist.checklist-circle label::before,
.checklist.checklist-square label::before {
    height: 10px;
    width: 10px;
    background: transparent;
    transition: border-color 0.3s ease;
}
.checklist.checklist-circle label::before {
    border-radius: 100%;
}
/* delete item */
.todo-delete {
    position: absolute;
    right: 10px;
    opacity: 0;
    color: #d50c2d;
    transition: opacity 0.3s ease;
}
.checklist-todo:hover .todo-delete {
    opacity: 1;
    transition: opacity 0.3s ease;
}

@-webkit-keyframes move {
    50% {
        padding-left: 8px;
        padding-right: 0px;
    }
    100% {
        padding-right: 4px;
    }
}

@keyframes move {
    50% {
        padding-left: 8px;
        padding-right: 0px;
    }
    100% {
        padding-right: 4px;
    }
}
@-webkit-keyframes slice {
    60% {
        width: 100%;
        left: 4px;
    }
    100% {
        width: 100%;
        left: -2px;
        padding-left: 0;
    }
}
@keyframes slice {
    60% {
        width: 100%;
        left: 4px;
    }
    100% {
        width: 100%;
        left: -2px;
        padding-left: 0;
    }
}
@-webkit-keyframes check-01 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }
    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }
    51% {
        width: 0px;
        top: 8px;
        transform: rotate(45deg);
    }
    100% {
        width: 5px;
        top: 8px;
        transform: rotate(45deg);
    }
}
@keyframes check-01 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }
    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }
    51% {
        width: 0px;
        top: 8px;
        transform: rotate(45deg);
    }
    100% {
        width: 5px;
        top: 8px;
        transform: rotate(45deg);
    }
}
@-webkit-keyframes check-02 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }
    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }
    51% {
        width: 0px;
        top: 8px;
        transform: rotate(-45deg);
    }
    100% {
        width: 10px;
        top: 8px;
        transform: rotate(-45deg);
    }
}
@keyframes check-02 {
    0% {
        width: 4px;
        top: auto;
        transform: rotate(0);
    }
    50% {
        width: 0px;
        top: auto;
        transform: rotate(0);
    }
    51% {
        width: 0px;
        top: 8px;
        transform: rotate(-45deg);
    }
    100% {
        width: 10px;
        top: 8px;
        transform: rotate(-45deg);
  }
}
@-webkit-keyframes firework {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        box-shadow: 0 -15px 0 0px #353c4c, 14px -8px 0 0px #353c4c, 14px 8px 0 0px #353c4c, 0 15px 0 0px #353c4c, -14px 8px 0 0px #353c4c, -14px -8px 0 0px #353c4c;
    }
    }
    @keyframes firework {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c, 0 0 0 -2px #353c4c;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        box-shadow: 0 -15px 0 0px #353c4c, 14px -8px 0 0px #353c4c, 14px 8px 0 0px #353c4c, 0 15px 0 0px #353c4c, -14px 8px 0 0px #353c4c, -14px -8px 0 0px #353c4c;
    }
}


/***********************************************************************************************
>>	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: 0.5px solid rgb(240, 240, 240);
	color: #5d6267;
}
.table-hover tbody tr:hover {
	background: #f9fafa;
}
.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: 0.5px solid #e5e8ea;
}
.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: #abb0b1;
}
.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%;
}
.th-action,
.td-action {
	width: 5px;
	white-space: nowrap;
}


/***********************************************************************************************
>>	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: #e5e8ea;
	text-align: center;
	padding: 10px 15px;
}
.popover-body,
.tooltip-body {
	font-size: 0.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 0px rgba(170, 170, 170, 0.75);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(170, 170, 170, 0.75);
	box-shadow: 1px 1px 2px 0px rgba(170, 170, 170, 0.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: #5d6267;
	color: white;
    border: 1px solid #5d6267;
}
.tooltip.tooltip-dark .tooltip-header,
.popover.popover-dark .popover-header {
    border-bottom: 1px solid #f1f0f0;
}
.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: #0016a7;
	color: white;
    border: 1px solid #0016a7;
}
.tooltip.tooltip-info .tooltip-header,
.popover.popover-info .popover-header {
    border-bottom: 1px solid #f1f0f0;
}
.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: #8c44c1;
	color: white;
    border: 1px solid #8c44c1;
}
.tooltip.tooltip-success .tooltip-header,
.popover.popover-success .popover-header {
    border-bottom: 1px solid #f1f0f0;
}
.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: #ffb630;
	color: white;
    border: 1px solid #ffb630;
}
.tooltip.tooltip-warning .tooltip-header,
.popover.popover-warning .popover-header {
    border-bottom: 1px solid #f1f0f0;
}
.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: #d50c2d;
	color: white;
    border: 1px solid #d50c2d;
}
.tooltip.tooltip-danger .tooltip-header,
.popover.popover-danger .popover-header {
    border-bottom: 1px solid #f1f0f0;
}
.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 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    box-shadow: 0 0.5rem 1rem #0000001a;
}
.modal-header {
	background: #fff;
	padding: 15px 15px;
	border-radius: 5px 5px 0 0;
	border-bottom: 1px solid #f1f0f0;
}
.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: 0.5px solid #e5e8ea;
    width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
}
.modal-notify {
	width: 400px;
	min-height: 280px;
	z-index: 9995;
}
.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: 5vh;
    max-height: 90vh;
    left: 10vw;
    right: 10vw;
}
.modal-left {
    left: 0;
    right: auto;
    top: 0;
	bottom: 0;
    border-radius: unset;
	min-width: 300px;
	max-height: none;
	box-shadow: 0 0 70px 25px #0000001f;
	transform: scale(1);
	animation: leftRight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-right {
    left: auto;
    right: 0;
    top: 0;
	bottom: 0;
    border-radius: unset;
	min-width: 300px;
	max-height: none;
	box-shadow: 0 0 70px 25px #0000001f;
	transform: scale(1);
	animation: rightLeft 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-left .modal-header,
.modal-right .modal-header {
	background: #fff;
	border-radius: none;
	padding: 15px;
	border-bottom: 1px solid #e5e8ea;
	color: #444444;
	height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.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 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-bottom {
	top: unset;
	bottom: 0;
    min-height: 80px;
    border-radius: unset;
	transform: scale(1);
	animation: bottomUp 0.5s cubic-bezier(0.165, 0.84, 0.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 #e5e8ea;
}
@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 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* MODAL SCROLLBAR */
.modal {
	scrollbar-width: thin;
	scrollbar-color: #5d6267;
}
.modal::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.modal::-webkit-scrollbar-track {
  background: none;
}
.modal::-webkit-scrollbar-thumb {
  background: #e5e8ea;
  border-radius: 0 0 3px 3px;
}
.modal::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*******************
Image Modal
*******************/
.open_image_modal {
    cursor: pointer;
}
.image-modal,
.pdf-modal {
	display: none;
    position: fixed;
    margin: auto;
	top: 0;
	bottom: 0;
    left: 0;
    right: 0;
    height: fit-content;
    width: fit-content;
	z-index: 9994;
	border-radius: 15px;
	transform: scale(0);
	animation: zoomIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.image-modal img {
	top: 0;
	bottom: 0;
	min-height: 30vh;
	max-height: 80vh;
	min-width: 30vw;
	max-width: 80vw;
	border-radius: 15px;
	box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}
.pdf-modal object {
	top: 0;
	bottom: 0;
	height: 90vh;
	width: 80vw;
	border-radius: 15px;
	box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.5);
}
.image-modal .close_image_modal,
.pdf-modal .close_image_modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e5e8ea;
	font-size: 22px;
	cursor: pointer;
}

.modal-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, 0.774);
}

/*******************
Gallery Modal (old)
*******************/
.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 0.5s cubic-bezier(0.165, 0.84, 0.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, 0.5);
}
.gallery-modal .close_gallery {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e5e8ea;
	font-size: 22px;
	cursor: pointer;
}
.gallery-modal .next-image,
.gallery-modal .prev-image {
	position: absolute;
	display: table;
	margin: auto;
	top: 0;
	bottom: 0;
    color: #e5e8ea;
	font-size: 26px;
	cursor: pointer;
	padding: 20px;
}
.gallery-modal .next-image {
    right: 0px;
	left: auto;
}
.gallery-modal .prev-image {
	left: 0px;
	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, 0.774);
}


/***********************************************************************************************
>>	9.0		Widgets
************************************************************************************************/

/*******************
Widgets Stats
*******************/
.widget-stats {
	position: relative;
	margin-bottom: 20px;
	background: #abb0b1;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
}
.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: 0.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: #5d6267;
	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;
	padding: 20px;
	background: #abb0b1;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
}
.widget-pie-light {
	background: #ffffff;
}
.widget-pie .pie-graphic,
.widget-pie-light .pie-graphic {
	position: absolute;
    top: 20px;
    right: 0;
    color: #ffffff;
    height: 40px;
    line-height: 40px;
    text-shadow: 3px 7px rgba(0,0,0,.25);
    font-size: 40px;
    transform: scale(0.7);
}
.widget-pie .pie-circle {
	background: #abb0b1;
}
.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: #abb0b1;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
}
.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: 0px 0px 30px 0px #38363c0d;
	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 Iconbox
*******************/
.widget-iconbox {
	position: relative;
	margin-bottom: 20px;
	background: #ffffff;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
    display: flex;
    align-content: center;
    align-items: center;
    padding: 30px 40px;
}
.widget-iconbox .iconbox-icon {
	margin-right: 30px;
}
.widget-iconbox .iconbox-icon i {
    font-size: 30px;
    color: #abb0b1;
}
.widget-iconbox .iconbox-content .iconbox-title {
    font-weight: 600;
    margin-bottom: 10px;
}

/*******************
Widget Callbox
*******************/
.widget-callbox {
	position: relative;
	margin-bottom: 20px;
	background: #ffffff;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
    display: flex;
    align-content: center;
    align-items: center;
    padding: 30px 40px;
}
.widget-callbox.callbox-column {
    flex-direction: column;
}
.widget-callbox .callbox-content .callbox-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.widget-callbox .callbox-action .btn {
    white-space: nowrap;
}

/*******************
BG Wave
*******************/
.widget-wave {
    background-color: #f2f2f3;
    overflow: hidden;
    position: relative;
}
.widget-wave:after {
    content: " ";
    width: 1000px;
    height: 1025px;
    position: absolute;
    bottom: 65%;
    left: -250px;
    border-radius: 35%;
    background: white;
    z-index: 0;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}
.widget-wave > div {
	z-index: 1;
}
.widget-wave.wave-info {
    background-color: #0016a73d !important;
}
.widget-wave.wave-warning {
    background-color: #ffb6303d !important;
}
.widget-wave.wave-danger {
    background-color: #d50c2d3d !important;
}
.widget-wave.wave-success {
    background-color: #8c44c13d !important;
}

/*******************
BG Slash
*******************/
.widget-slash {
    background-color: #f2f2f3;
    overflow: hidden;
    position: relative;
}
.widget-slash:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f2f2f3;
}
.widget-slash:after {
    content: " ";
    width: 200%;
    height: 1000px;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 45%;
    -webkit-transform: rotate(
20deg
);
    transform: rotate(
20deg
);
    background-color: #ffffff;
}
.widget-slash > div {
	z-index: 1;
}
.widget-slash.slash-info:before {
    background-color: #0016a73d !important;
}
.widget-slash.slash-warning:before {
    background-color: #ffb6303d !important;
}
.widget-slash.slash-danger:before {
    background-color: #d50c2d3d !important;
}
.widget-slash.slash-success:before {
    background-color: #8c44c13d !important;
}

/*******************
Widget Multi Chart
*******************/
.widget-chart {
	background: #ffffff;
	padding: 25px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
	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;
	margin-right: 5px;
}
.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: #5d6267;
	font-size: 22px;
}
.w-chart-chart-full .w-chart-full-content-dark .w-chart-full-text{
	color: #5d6267;
}

/*******************
Effects
*******************/
.widget-effect {
    background: #fff;
    padding: 60px 30px;
    box-shadow: 0px 0px 30px 0px #38363c0d;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
	cursor: pointer;
}
.widget-effect .widget-effect-icon {
    border: 2px solid #6e767d;
    color: #afb1b4;
    border-radius: 100%;
    padding: 20px;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin-bottom: 20px;
    z-index: 1;
}
.widget-effect .icon-box-border {
    border: 2px solid transparent;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in;
}
.widget-effect .widget-effect-icon .icon-box {
    border: 1px solid #6e767d;
    border-radius: 100%;
    position: absolute;
    height: 85px;
    width: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6e767d;
    transition: all .4s ease;
}
.widget-effect .widget-effect-icon .icon-box i {
    border-radius: 100%;
    height: 85px;
    width: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6e767d;
    transition: all .4s ease-out;
}
.widget-effect .widget-effect-text {
    font-size: 18px;
    color: #6e767d;
    z-index: 1;
    transition: all .4s ease-out;
}
/* hover */
.widget-effect:hover .icon-box-border {
    border: 2px solid #e5e8ea;
    transition: all .4s ease-in;
}
.widget-effect:hover .icon-box {
    height: 1000px;
    width: 1000px;
    transition: all .4s ease-in;
}
.widget-effect:hover .icon-box i {
    background: #e5e8ea;
    transition: all .4s ease-in;
}
.widget-effect:hover .widget-effect-text {
    color: #fff;
    transition: all .1s ease-in;
}

/* colors */
/* info */
.widget-effect.widget-info .widget-effect-icon {
    border-color: #0016a7;
}
.widget-effect.widget-info .widget-effect-icon .icon-box {
    border-color: #0016a7;
    background: #0016a7;
}
.widget-effect.widget-info .widget-effect-icon .icon-box i {
    background: #0016a7;
    color: #b5d6f7;
}
.widget-effect:hover.widget-info .icon-box-border {
    border-color: #b5d6f7;
}
.widget-effect:hover.widget-info .icon-box i {
    background: #b5d6f7;
    color: #0016a7;
}
/* success */
.widget-effect.widget-success .widget-effect-icon {
    border-color: #8c44c1;
}
.widget-effect.widget-success .widget-effect-icon .icon-box {
    border-color: #8c44c1;
    background: #8c44c1;
}
.widget-effect.widget-success .widget-effect-icon .icon-box i {
    background: #8c44c1;
    color: #baebde;
}
.widget-effect:hover.widget-success .icon-box-border {
    border-color: #baebde;
}
.widget-effect:hover.widget-success .icon-box i {
    background: #baebde;
    color: #8c44c1;
}
/* warning */
.widget-effect.widget-warning .widget-effect-icon {
    border-color: #ffb630;
}
.widget-effect.widget-warning .widget-effect-icon .icon-box {
    border-color: #ffb630;
    background: #ffb630;
}
.widget-effect.widget-warning .widget-effect-icon .icon-box i {
    background: #ffb630;
    color: #ffda97;
}
.widget-effect:hover.widget-warning .icon-box-border {
    border-color: #ffda97;
}
.widget-effect:hover.widget-warning .icon-box i {
    background: #ffda97;
    color: #ffb630;
}
/* danger */
.widget-effect.widget-danger .widget-effect-icon {
    border-color: #d50c2d;
}
.widget-effect.widget-danger .widget-effect-icon .icon-box {
    border-color: #d50c2d;
    background: #d50c2d;
}
.widget-effect.widget-danger .widget-effect-icon .icon-box i {
    background: #d50c2d;
    color: #feaeae;
}
.widget-effect:hover.widget-danger .icon-box-border {
    border-color: #feaeae;
}
.widget-effect:hover.widget-danger .icon-box i {
    background: #feaeae;
    color: #d50c2d;
}
/* light */
.widget-effect.widget-light .widget-effect-icon {
    border-color: #e5e8ea;
}
.widget-effect.widget-light .widget-effect-icon .icon-box {
    border-color: #e5e8ea;
    background: #e5e8ea;
}
.widget-effect.widget-light .widget-effect-icon .icon-box i {
    background: #e5e8ea;
    color: #fff;
}
.widget-effect:hover.widget-light .icon-box-border {
    border-color: #f2f3f4;
}
.widget-effect:hover.widget-light .icon-box i {
    background: #f2f3f4;
    color: #e5e8ea;
}

/***********************************************************************************************
>>	10.0 	Extras
************************************************************************************************/

/*******************
File Manager
*******************/
.card-file {
	padding: 15px;
	display: block;
	text-align: center;
    border: 1px solid #f1f1f1;
    background: #fafcfe;
}
.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: #abb0b1;
	cursor: pointer;
}
.card-file .file-action i {
    position: absolute;
    left: 20px;
	top: 10px;
	color: #abb0b1;
	cursor: pointer;
}
.card-file .file-name {
	color: #444444;
	margin: 0;
}
.card-file .file-icon-image {
	color: #ffb630;
}
.card-file .file-icon-excel {
	color: #57b399;
}
.card-file .file-icon-pdf {
	color: #d50c2d;
}
.card-file .file-icon-other {
	color: #57a2a5;
}
ul.list-filter li {
	color: #444444;
	cursor: pointer;
}
ul.list-filter li:hover {
	color: #0016a7;
}
ul.list-filter li.active {
	color: #0016a7;
	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: #5d6267;
}
.box-comment .comment-content {
	padding: 5px 0;
	color: #444444;
}
.box-comment .comment-time {
    font-size: 12px;
	color: #abb0b1;
	float: right;
}



/*******************
Chat
*******************/

.chat {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px #523f690d;
}
.chat-container {
    box-shadow: 0px 0px 20px 0px #d0d0d087;
}
.chat-header {
	border-bottom: 1px solid #f1f0f0;
    padding: 10px 15px;
    border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: #5d6267;
	height: 45px;
    display: none; /* weg ?! */
}
.chat-body {
    display: flex;
}

/* left */
.chat-left {
    width: 30%;
    border-right: 1px solid #e0e0e0;
}
.chat-left-header-info,
.chat-left-header-search {
    padding: 10px 15px;
    background: #f1f2f3;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
}
.chat-left-header-info  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}
.chat-left-header-info .chat-left-header-left {
    display: flex;
    align-items: center;
}
.chat-left-header-info .chat-left-header-left .chat-left-heading {
    margin-left: 10px;
    color: #444444;
    font-weight: 600;
}
.chat-left-header-info .chat-left-header-right i {
    color: #abb0b1;
    margin-right: 10px;
}
.chat-left-header-search  {
    background: #f7f8f8;
}
.chat-left-header-search .form-input-group-text {
    background: white;
    border-color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.chat-left-header-search .form-control {
    background: white;
    border-color: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.chat-left-body {
    height: calc(72vh - 60px);
    overflow: auto;
}
.chat-left-body .chat-select {
    padding: 10px 15px;
	border-bottom: 1px solid #f1f0f0;
    border-left: 2px solid #fff;
    display: flex;
    cursor: pointer;
    background: white;
}
.chat-left-body.animated .chat-select {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.chat-left-body .chat-select .chat-select-left {
    position: relative;
}
.chat-left-body .chat-select .chat-select-left .user-status {
    position: absolute;
    left: -6px;
    top: -4px;
    color: #abb0b1;
    border: 2px solid white;
    border-radius: 100%;
    background: #abb0b1;
    height: 16px;
    width: 16px;
}
.chat-left-body .chat-select .chat-select-left .user-status.active {
    color: #8c44c1;
    background: #8c44c1;
}
.chat-left-body .chat-select .chat-select-center {
    width: 70%;
}
.chat-left-body .chat-select .chat-select-left .chat-user-profile {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
    margin-top: 5px;
    margin-right: 10px;
    background: #f1f2f3;
}
.chat-left-body .chat-select .chat-select-left .chat-user-profile i {
    font-size: 32px;
    color: #abb0b1;
}
.chat-left-body .chat-select .chat-select-center .chat-name {
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 2px;
    max-width: 82%;
}
.chat-left-body .chat-select .chat-select-center .chat-msg-preview {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    /* one line */
    /* white-space: nowrap; */
    /* two lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.chat-left-body .chat-select .chat-select-right {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.chat-left-body .chat-select .chat-select-right .chat-select-time {
    float: right;
    font-size: 12px;
    margin-bottom: 8px;
}
/* hover, active */
.chat-left-body .chat-select:hover {
    background: #f8f9f9;
    border-left: 2px solid #b2d3f4;
    transition: background-color .2s ease;
}
.chat-left-body .chat-select.active {
    background: #f1f2f3;
    border-left: 2px solid #0016a7;
}
/* new msg */
.chat-left-body .chat-select.msg-new .chat-select-center .chat-msg-preview {
    font-weight: 600;
    color: #444444;
}
/* typing */
.chat-left-body .chat-select .chat-select-center .chat-msg-preview.typing {
    font-style: italic;
}
.msg-new-count {
    background: #0016a7;
    height: 18px;
    min-width: 18px;
    border-radius: 5px;
    padding: 4px;
    display: flex;
    float: right;
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
/* check read */
.chat-msg-check {
    font-size: 12px;
    color: #74788d;
}
.chat-msg-check.read {
    color: #0016a7;
}

/* right */
.chat-right {
    width: 70%;
    height: 72vh;
    display: none;
}
.chat-right.active {
    display: block;
}
.chat-right-header {
    padding: 10px 15px;
    background: #f1f2f3;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}
.chat-right-header .chat-right-header-left {
    display: flex;
    align-items: center;
}
.chat-right-header .chat-right-header-left .chat-right-heading {
    margin-left: 10px;
    color: #444444;
    font-weight: 600;
}
.chat-right-header .chat-right-header-left .avatar {
    background: #e2e4e6;
}
.chat-right-header .chat-right-header-right i {
    color: #abb0b1;
    margin-right: 10px;
}
.chat-right-body {
    height: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #0016a733;
    background: linear-gradient(45deg, #8c44c1, #0016a7);
}
.chat-right-body .chat-right-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: .5;
}
.chat-right-body .chat-right-msg-input {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f2f3;
    padding: 10px 15px;
    min-height: 60px;
    z-index: 1;
}
.chat-right-body .chat-right-msg-input i {
    color: #abb0b1;
    margin-right: 10px;
    font-size: 18px;
}
.chat-right-body .chat-right-msg-input .form-input-group-text {
    background: white;
    border-color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 5px 0;
}
.chat-right-body .chat-right-msg-input .form-control {
    background: white;
    border-color: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin: 5px 0;
    resize: none;
}
/* default chat bg */
.chat-right-default {
    background: linear-gradient(45deg, #8c44c1, #0016a7);
    height: calc(100% + 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.chat-right-default i {
    font-size: 20vh;
    color: #f1f2f3;
    margin-bottom: 5vh;
}
.chat-right-default h1 {
    color: #f1f2f3;
    font-size: 5vh;
}
/* conversation */
.chat-right-conversation {
    /*display: flex;
    flex-direction: column;
    justify-content: flex-end;*/
    padding: 15px 30px;
    overflow: auto;
}
.message {
    opacity: 0;
}
.message-item-date {
    position: relative;
    width: 100%;
    margin: 25px 0;
    text-align: center;
}
.message-item-date span {
    font-size: 12px;
    display: inline-block;
    color: white;
}
.message-item-date span:before,
.message-item-date span:after {
    position: absolute;
    top: 10px;
    display: inline-block;
    width: 36%;
    height: 1px;
    content: "";
    background-color: #f1f2f399;
}
.message-item-date span:before {
    left: 0;
}
.message-item-date span:after {
    right: 0;
}
/* pill
.message-item-date {
    background: #c2ece1d1;
    border-radius: 10px;
    width: fit-content;
    padding: 5px 15px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
}*/
/* sticky
.message-item-date {
    border-radius: 10px;
    width: fit-content;
    padding: 5px 15px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #c2ece1;
    z-index: 1;
}*/
.chat-right-conversation .message {
    display: flex;
    margin-top: 10px;
    position: relative;
}
.chat-right-conversation.animated .message {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.chat-right-conversation .message .message-tip-right {
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 0px;
    border-right-width: 20px;
    border-top: 30px solid #bff1ff;
    position: absolute;
    margin-right: -5px;
}
.chat-right-conversation .message .message-tip-left {
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 20px;
    border-right-width: 0px;
    border-top: 30px solid #fff;
    position: absolute;
    margin-left: -5px;
}
.chat-right-conversation .message .message-box {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
}
.chat-right-conversation .message-in .message-box {
    background: white;
    border-top-left-radius: 0;
}
.chat-right-conversation .message-out {
    justify-content: flex-end;
}
.chat-right-conversation .message-out .message-box {
    background: #bff1ff;
    justify-content: flex-end;
    border-top-right-radius: 0;
}
.chat-right-conversation .message .message-box .message-content .message-time {
    position: relative;
    font-size: 12px;
    color: #5d5d5d;
    white-space: nowrap;
    float: right;
    margin: 10px -5px -5px 0;
    padding-left: 15px;
}
/* media and content */
.chat-right-conversation .message .message-box .media-item {
    max-height: 300px;
    max-width: 300px;
    border-radius: 15px;
    margin-left: -12px;
    margin-top: -7px;
    margin-bottom: 5px;
}
.chat-right-conversation .message .message-box.has-media {
    border-radius: 15px;
    max-width: 306px;
}
/* media only */
.chat-right-conversation .message .message-box-media {
    position: relative;
    display: flex;
    padding: 3px;
    border-radius: 15px;
    max-width: 306px;
}
.chat-right-conversation .message-out .message-box-media {
    background: #bff1ff;
}
.chat-right-conversation .message-in .message-box-media {
    background: white;
}
.chat-right-conversation .message .message-box-media .media-item {
    max-height: 300px;
    max-width: 300px;
    border-radius: 15px;
}
.chat-right-conversation .message .message-box-media .time {
    position: absolute;
    bottom: 5px;
    right: 15px;
    z-index: 1;
    color: white;
    font-size: 12px;
    white-space: nowrap;
}

/* typing message */
.msg-typing .loading-dot {
	float: left;
    width: 6px;
    height: 6px;
    margin: 6px 4px;
    background: #abb0b1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	opacity: 0;
	-webkit-box-shadow: 0 0 2px black;
	-moz-box-shadow: 0 0 2px black;
	-ms-box-shadow: 0 0 2px black;
	-o-box-shadow: 0 0 2px black;
	box-shadow: 0 0 2px black;
	-webkit-animation: loadingFade 1s infinite;
	-moz-animation: loadingFade 1s infinite;
	animation: loadingFade 1s infinite;
}
.msg-typing .loading-dot:nth-child(1) {
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	animation-delay: 0s;
}
.msg-typing .loading-dot:nth-child(2) {
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.msg-typing .loading-dot:nth-child(3) {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.msg-typing .loading-dot:nth-child(4) {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
/* preview */
.msg-typing.preview {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.msg-typing.preview .text {
	margin-right: 5px;
    color: #abb0b1;
	font-style: italic;
	color: #0016a7;
}
.msg-typing.preview .loading-dot {
    width: 2px;
    height: 2px;
    margin: 4px 2px;
}

@-webkit-keyframes loadingFade {
	0% { opacity: 0; }
	50% { opacity: 0.8; }
	100% { opacity: 0; }
}
@-moz-keyframes loadingFade {
	0% { opacity: 0; }
	50% { opacity: 0.8; }
	100% { opacity: 0; }
}
@keyframes loadingFade {
	0% { opacity: 0; }
	50% { opacity: 0.8; }
	100% { opacity: 0; }
}

/* scrollbar */
.chat-left .chat-left-body::-webkit-scrollbar,
.chat-right .chat-right-body .chat-right-conversation::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.chat-left .chat-left-body::-webkit-scrollbar-track {
  background: white;
}
.chat-right .chat-right-body .chat-right-conversation::-webkit-scrollbar-track {
  background: transparent;
}
.chat-left .chat-left-body::-webkit-scrollbar-thumb,
.chat-right .chat-right-body .chat-right-conversation::-webkit-scrollbar-thumb {
  background: #e2e2e280;
  border-radius: 0 0 3px 3px;
}
.chat-left .chat-left-body::-webkit-scrollbar-thumb:hover,
.chat-right .chat-right-body .chat-right-conversation::-webkit-scrollbar-thumb:hover {
  background: #e2e2e2;
}

/* btn scroll */
.btn_scroll_bottom {
    display: none;
    float: right;
    position: sticky;
    bottom: 15px;
    opacity: .5;
}
.btn_scroll_bottom:hover {
    opacity: 1;
}
/* btn back - mobile only */
.chat_mobile_back {
    display: none;
	cursor: pointer;
}
/* fullsize */
.chat.fullsize {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    padding: 2vw 10vw;
}
.chat.fullsize .chat-container {
    border: 1px solid #f1f2f3;
    box-shadow: 0px 0px 30px 0px #8a919887;
}
.chat.fullsize .chat-right-conversation,
.chat.fullsize .chat-right-body {
    height: 86vh;
}
.chat.fullsize .chat-right {
    height: auto;
}
.chat.fullsize .chat-left-body {
    height: calc(86vh - 60px);
}
.chat.fullsize .chat-right-default {
    height: 100%;
}

/* round icons */
.chat.icon-round .chat-left-body .chat-select .chat-select-left .chat-user-profile,
.chat.icon-round .avatar img {
    border-radius: 100%;
}

/* small bottom chat*/
.chat.bottom-small {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    width: 400px;
    height: 600px;
}
.chat.bottom-small .chat-left {
	width: 100%;
	position: absolute;
	z-index: 10;
	border-right: none;
}
.chat.bottom-small .chat-left.collapsed {
	display: none;
}
.chat.bottom-small .chat-left-body {
    height: 480px;
}
.chat.bottom-small .chat-right {
	width: 100%;
    height: 540px;
}
.chat.bottom-small .chat-right.active {
	width: 100%;
}
.chat.bottom-small .chat_mobile_back {
	display: block;
	color: #b1b6b7;
	margin-left: -5px;
    margin-right: 15px;
	font-size: 18px;
}

/* tablet */
@media (max-width: 1200px) {
	.chat-left {
		width: 40%;
	}
    .chat-right-default h1 {
        font-size: 3vh;
    }
    /* fullsize */
    .chat.fullsize {
        padding: 0;
    }
    .chat.fullsize .chat-container {
        height: 100vh;
    }
    .chat.fullsize .chat-left-body {
        height: calc(100vh - 120px);
    }
    .chat.fullsize .chat-right-conversation,
    .chat.fullsize .chat-right-body {
        height: calc(100vh - 60px);
    }
}
/* phone */
@media (max-width: 767px) {
	.chat-left {
		width: 100%;
        position: absolute;
        left: 0;
        z-index: 10;
        transition: left .5s ease;
		border-right: none;
	}
    .chat-left.collapsed {
        left: -800px;
        transition: left .5s ease;
    }
    /*.chat-left-header-search {
        display: none;
    }*/
    .chat-left-body {
        background: white;
    }
	.chat-right {
        /*display: block;*/
        width: 100%;
	}
	.chat-right.active {
        width: 100%;
	}
    .chat_mobile_back {
        display: block;
        color: #b1b6b7;
        margin-left: -5px;
		margin-right: 15px;
        font-size: 18px;
    }
}

/*******************
Chat --- old
*******************
.chat {
	margin-bottom: 20px;
    background-color: #f1f1f5;
    border: 1px solid rgb(43, 44, 53);
    box-shadow: none;
    border-radius: 3px;
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 400px;
    min-height: 200px;
	box-shadow: 0 0 10px 1px rgba(88, 88, 88, 0.52)
}
.chat .chat-header {
	display: flow-root;
	background: rgb(52, 58, 68);
    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 small {
	color: #e2e2e2;

}
.chat .chat-header .chat-header-content .chat-heading {
	margin-left: 5px;
	margin-bottom: 0;
	color: #ffffff;
}
.chat .chat-body {
	padding: 5px;
    min-height: 400px;
    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: #e5e8ea;
  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;
	margin: 4px;
}
.chat .chat-body .chat-date span{
    text-align: center;
    color: rgb(150, 150, 150);
    font-size: 12px;
    font-weight: 600;
	padding: 5px;
	background-color: rgb(223 244 255);
	border-radius: 50px;
}

.chat .chat-body .message-in,
.chat .chat-body .message-out {
	margin: 10px 0;
}
.chat .chat-body .message-out {
    text-align: right;
}
.chat .chat-body .btn-group{
	box-shadow: -4px 3px 10px 2px rgb(181 181 181);
	margin-top: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #0c0c0c21;
	border-left: 1px solid #0c0c0c21;
	border-radius: 5px;
}

.chat .chat-body .btn_chat_window {
	border: none;
	margin: 0px;
	color: black;
	font-family: 'Montserrat', sans-serif;
	min-height: 60px;
	padding: 10px 7px 10px 15px;
}

.chat .chat-body .btn-group .btn-label {
	border: none;
	margin: 0px;
	height: inherit;
	min-width: 60px;
	border-radius: 0 3px 3px 0px;
	padding: 10px 7px 10px 7px;
	background: white;
}
.chat .chat-body .btn-group .btn-label:first-of-type {
	background: rgb(52, 58, 68);
	border-radius: 3px 0px 0px 3px;
}
.chat .chat-body .btn-group .btn-label:hover,
.chat .chat-body .btn-group .btn_chat_window:hover
{
	opacity: 1;
}

.chat .chat-body .message-in .message-text,
.chat .chat-body .message-out .message-text {
	background: rgb(255 255 255);
    max-width: 80%;
    border-radius: 5px;
	display: inline-block;
	border-bottom: 1px solid #0c0c0c21;
	border-left: 1px solid #0c0c0c21;
}
.chat .chat-body .message-in .message-text p,
.chat .chat-body .message-out .message-text p{
	padding: 5px 10px;
}
.chat .chat-body .message-in .message-text .message-username,
.chat .chat-body .message-out .message-text .message-username{
	border-left: 1px solid #0c0c0c21;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom: 1px solid #0c0c0c21;
}
.chat .chat-body .message-out .message-text .message-username{
		background-color: rgb(204 228 114);
}
.chat .chat-body .message-in .message-text .message-username{
	background-color: rgb(224 224 224);;
}

.chat .chat-body .message-out .message-text {
	background: rgb(231 249 165);
}
.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;
}
.chat .chat-body .message-in .message-text p,
.chat .chat-body .message-out .message-text p {
	text-align: left;
	color: #000;
}

.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;
	padding-bottom: 5px;
}
.chat .chat-body .message-in .message-data,
.chat .chat-body .message-out .message-data {
    padding-left: 5px;
    padding-top: 5px;
    font-size: 10px;
    color: #abb0b1;
}
.chat .chat-body .message-out .message-data  {
	padding-right: 5px;
}
.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: 0.5px solid #e5e8ea;
    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;
}
.chat-message .dropzone {
    height: 50px;
    min-height: 50px;
    background: white;
}
.chat-message .dropzone .dz-message {
    display: inherit;
    font-size: 16px;
}
.chat-body .message-out .tooltip {
	min-width: 300px;
}
.chat-body .message-out .tooltip p {
	font-size: 12px;
	text-align: left;
}

/*******************
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 #abb0b1;
    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: #e5e8ea;
  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: #abb0b1;
    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: #fff;
    border: none;
    box-shadow: none;
    border-radius: 3px;
	box-shadow: 0px 0px 30px 0px #38363c0d;
}
.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: #5d6267;
	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 #5d6267;
	color: #444444;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-card .user-card-body .user-content .user-info .user-position {
	color: #abb0b1;
}
.user-card .user-card-footer {
	background: #fafafa;
	color: #fff;
    border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	overflow: auto;
	font-size: 14px;
    border-top: 1px solid #e5e8ea;
	padding: 15px 15px 8px 15px;
}

/*******************
Pricing
*******************/
.pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid #e5e8ea;
    padding: 30px;
}
.pricing:last-child {
    border: none;
}


/*******************
Product
*******************/
.product-like {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
}
.product-like .far {
    color: #abb0b1;
}
.product-like .fas {
    color: #d50c2d;
}


/*******************
Notepad
*******************/
.notepad {
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 30px 0px #523f690d;
}
.notepad-header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: white;
    padding: 10px 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #5d6267;
    min-height: 45px;
}
.notepad-header .fa-thumbtack {
    transform: rotate(45deg);
}
.note-edit-container {
    position: relative;
    overflow: auto;
    background: transparent;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.note-edit-container textarea {
    position: relative;
    font-family: monospace;
    resize: none;
    padding: 25px;
    line-height: 25px;
    min-height: 470px;
    max-height: 600px;
    width: 100%;
    border: 0;
    font-size: 15px;
    background: transparent;
    vertical-align: top;
    color: black;
    box-shadow: none;
}
.note-edit-container.note-small textarea {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
}
.note-editor-lines {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    background: linear-gradient(
        to bottom,
        #fff,
        #fff 95%,
        #f1f1f1 95%,
        #f1f1f1
    );
    background-size: 100% 25px;
}
.note-editor-lines.lines-thick {
    background: linear-gradient(
        to bottom,
        #fff,
        #fff 50%,
        #f1f1f1 50%,
        #f1f1f1
    );
    background-size: 100% 50px;
}

textarea:hover,
textarea:active,
textarea:focus
{
    outline:0px !important;
    -webkit-appearance:none;
    appearance:none;
}

/* colors */
.notepad.notepad-info .notepad-header {
    background: #6cacee;
    color: #fff;
}
.notepad.notepad-info .note-editor-lines {
    background: linear-gradient(
        to bottom,
        #6cacee,
        #6cacee 95%,
        #6caceec7 95%,
        #6caceec7
    );
    background-size: 100% 25px;
}
.notepad.notepad-warning .notepad-header {
    background: #ffb630;
    color: #fff;
}
.notepad.notepad-warning .note-editor-lines {
    background: linear-gradient(
        to bottom,
        #ffb630,
        #ffb630 95%,
        #ffb630c7 95%,
        #ffb630c7
    );
    background-size: 100% 25px;
}
.notepad.notepad-danger .notepad-header {
    background: #d50c2d;
    color: #fff;
}
.notepad.notepad-danger .note-editor-lines {
    background: linear-gradient(
        to bottom,
        #d50c2d,
        #d50c2d 95%,
        #d50c2dc7 95%,
        #d50c2dc7
    );
    background-size: 100% 25px;
}
.notepad.notepad-success .notepad-header {
    background: #8c44c1;
    color: #fff;
}
.notepad.notepad-success .note-editor-lines {
    background: linear-gradient(
        to bottom,
        #8c44c1,
        #8c44c1 95%,
        #8c44c1c7 95%,
        #8c44c1c7
    );
    background-size: 100% 25px;
}
.notepad.notepad-dark .notepad-header {
    background: #444444;
    color: #fff;
}
.notepad.notepad-dark textarea {
    color: #fff;
}
.notepad.notepad-dark .note-editor-lines {
    background: linear-gradient(
        to bottom,
        #444444,
        #444444 95%,
        #444444c7 95%,
        #444444c7
    );
    background-size: 100% 25px;
}
.notepad.notepad-default .notepad-header {
    background: #e5e8ea;
}
.notepad.notepad-default .note-editor-lines {
    background: linear-gradient(
        to bottom,
        #e5e8ea,
        #e5e8ea 95%,
        #f1f5f8 95%,
        #f1f5f8
    );
    background-size: 100% 25px;
}


/*******************
Scrum board
*******************/
.scrum-list {
    list-style-type: none;
    min-height: 500px;
}
.scrum-item {
    padding: 10px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 3px;
    box-shadow: 0px 0px 5px 0px #edf2f5;
    cursor: move;
}
.scrum-item-delete {
    position: absolute;
    right: 25px;
    color: #abb0b1;
    cursor: pointer;
}
.scrum-label {
    margin-top: 10px;
}
.scrum-item-top {
    display: flex;
    align-items: flex-start;
}
.scrum-item-bottom {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.scrum-item-bottom p,
.scrum-item-bottom i {
    color: #abb0b1;
}
.scrum-item .avatar {
    margin-right: 10px;
}
.ui-state-highlight {
    height: 50px;
    border: 1px dashed grey;
}
.scrum-item-details {
    font-size: 12px;
    color: #abb0b1;
}
.scrum-item-new {
    display: none;
    cursor: unset;
}


/***********************************************************************************************
>>	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(0.5);
}
.ui-datepicker-prev span {
	border: solid #414446;
	border-width: 0 2px 2px 0;
	display: inline-block;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.ui-datepicker-next {
	transform: scale(0.5);
}
.ui-datepicker-next span {
	border: solid #414446;
	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 #e5e8ea !important;
	background: #ffffff !important;
}
.ui-slider-handle.ui-corner-all.ui-state-default:focus,
.ui-slider-handle.ui-corner-all.ui-state-default:active,
.ui-slider-handle.ui-corner-all.ui-state-default:focus-visible {
	outline: none !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 #e5e8ea !important;
}
.ui-slider-range,
.ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #abb0b1 !important;
}
.slider-info .ui-slider-range,
.slider-info .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #0016a7 !important;
}
.slider-success .ui-slider-range,
.slider-success .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #8c44c1 !important;
}
.slider-warning .ui-slider-range,
.slider-warning .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #ffb630 !important;
}
.slider-danger .ui-slider-range,
.slider-danger .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #d50c2d !important;
}
.slider-dark .ui-slider-range,
.slider-dark .ui-slider-handle.ui-corner-all.ui-state-default.ui-state-active.ui-state-focus  {
	background: #5d6267 !important;
}
.slider-full,
.slider-full .ui-slider-range  {
	background: #abb0b1 !important;
}
.slider-info-full,
.slider-info-full .ui-slider-range  {
	background: #0016a7 !important;
}
.slider-warning-full,
.slider-warning-full .ui-slider-range  {
	background: #ffb630 !important;
}
.slider-danger-full,
.slider-danger-full .ui-slider-range  {
	background: #d50c2d !important;
}
.slider-success-full,
.slider-success-full .ui-slider-range  {
	background: #8c44c1 !important;
}
.slider-dark-full,
.slider-dark-full .ui-slider-range  {
	background: #5d6267 !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: #e5e8ea;
}
.vis-time-axis .vis-grid.vis-major {
	border-width: 2px;
	border-color: #abb0b1;
}
.vis-current-time {
	display: none;
}
.vis-saturday,
.vis-sunday {
	background: #e5e8ea;
}
.vis-item {
	z-index: 0 !important;
}
.vis-group.orange .vis-item {
	background: #ffb630;
	border: 1px solid #ffb630;
}
.vis-group.blue .vis-item {
	background: #0016a7;
	border: 1px solid #0016a7;
}
.vis-group.lime .vis-item {
	background: #8c44c1;
	border: 1px solid #8c44c1;
}
.vis-item.vis-selected {
	border: 1px solid #abb0b1 !important;
}
.vis-group.orange .vis-item,
.vis-item.orange {
	background: #ffb630;
	border: 1px solid #abb0b1;
}
.vis-group.blue .vis-item,
.vis-item.blue {
	background: #0016a7;
	border: 1px solid #abb0b1;
}
.vis-group.lime .vis-item,
.vis-item.lime {
	background: #8c44c1;
	border: 1px solid #abb0b1;
}
.vis-group.grey .vis-item,
.vis-item.grey {
	background: #e5e8ea;
	border: 1px solid #abb0b1;
}
.vis-group.dark .vis-item,
.vis-item.dark {
	background: #444444;
	border: 1px solid #5d6267;
}
.vis-group.red .vis-item,
.vis-item.red {
	background: #d50c2d;
	border: 1px solid #5d6267;
}
.vis-item.vis-selected {
	border: 1px solid #abb0b1 !important;
}
.vis-item.timeline_1 {
	background: #4CAF50;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_2 {
	background: #2196F3;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_3 {
	background: #607D8B;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_4 {
	background: #9E9E9E;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_5 {
	background: #F44336;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_6 {
	background: #E19800;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_7 {
	background: #795548;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_8 {
	background: #673AB7;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_9 {
	background: #abb0b1;
	border: 1px solid #abb0b1;
}
.vis-item.timeline_10 {
	background: #ffed13;
	border: 1px solid #abb0b1;
}
.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: #d50c2d;
    /* border-radius: 0.28571429rem; */
    color: white;
}

table.dataTable span.column_highlight {
    background-color: #d50c2d;
    /* border-radius: 0.28571429rem; */
    color: white;
}

/*******************
Select2
*******************/
.select2-container {
	z-index: 98 !important;
	width: 100% !important;
}
/*.select2-container--open {
    z-index: 9999999 !important;
}*/
.select2-search__field:focus,
.select2-selection:focus,
.select2-selection:active {
	outline: none !important;
}
.select2-dropdown,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 0.5px solid #f1f0f0 !important;
}

/*******************
lightgallery
*******************/
.lg-backdrop {
    z-index: 9993 !important;
}
.lg-outer {
    z-index: 9994 !important;
}
.lg-sub-html {
    background-color: rgba(0, 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 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.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, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.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 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.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, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.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 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster i {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.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;
}


/*******************
dropzone
*******************/
.dropzone {
	min-height: unset !important;
	padding: 40px !important;
}
.dropzone-250 {
	min-height: 250px;
}
.dropzone-300 {
	min-height: 300px;
}
.dropzone-350 {
	min-height: 350px;
}
.dropzone-400 {
	min-height: 400px;
}
.dropzone-450 {
	min-height: 450px;
}
.dropzone-500 {
	min-height: 500px;
}
.dropzone-info {
	border-color: #0016a7 !important;
}
.dropzone-warning {
	border-color: #ffb630 !important;
}
.dropzone-danger {
	border-color: #d50c2d !important;
}
.dropzone-success {
	border-color: #8c44c1 !important;
}
.dropzone-dark {
	border-color: #444444 !important;
}


/*******************
Slick
*******************/
.slick-container {
    padding: 20px;
}


/*******************
Fullcalendar
*******************/
.fc-toolbar.fc-header-toolbar {
    flex-wrap: wrap;
}
.fc-unthemed .fc-toolbar .fc-button {
    color: #5d6267;
    background: #fff;
    border: 1px solid #e5e8ea;
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 10px;
}
.fc-unthemed .fc-toolbar h2 {
    font-size: 20px;
}
.fc-unthemed .fc-toolbar .fc-button:focus,
.fc-unthemed .fc-toolbar .fc-button:active,
.fc-unthemed .fc-toolbar .fc-button.fc-button-active {
    background: var(--primary);
	border: 1px solid var(--primary);
	color: #fff;
}
.fc-unthemed .fc-view-container {
    background: white;
}
.fc-unthemed .fc-day-header.fc-widget-header {
    padding: 10px;
}
.fc-unthemed .fc-day-grid td:not(.fc-axis) {
	padding: 8px;
}
.fc-unthemed .fc-day-grid td:not(.fc-axis).fc-event-container {
	padding: 2px 6px;
}
.fc-unthemed td.fc-today {
    background: #f8fbfe !important;
}
.fc-unthemed .fc-event .fc-content,
.fc-unthemed .fc-event-dot .fc-content {
    padding: 7px 7px 7px 30px;
}
.fc-unthemed .fc-event,
.fc-unthemed .fc-event:hover,
.fc-unthemed .fc-event-dot {
	border: 1px solid #e5e8ea;
	background: var(--light);
    color: var(--primary);
    box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 6%);
	border-radius: 10px;
}
.fc-unthemed .fc-event:hover,
.fc-unthemed .fc-event-dot:hover {
    color: #5d6267;
}
.fc-unthemed .fc-event .fc-content:before,
.fc-unthemed .fc-event-dot .fc-content:before {
    display: block;
    content: " ";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    background: white;
}
.fc-unthemed .fc-event.fc-event-solid-primary.fc-start,
.fc-unthemed .fc-event.fc-event-solid-primary.fc-not-start.fc-not-end,
.fc-unthemed .fc-event.fc-event-solid-primary.fc-not-start.fc-end,
.fc-unthemed .fc-event-dot.fc-event-solid-primary.fc-start,
.fc-unthemed .fc-event-dot.fc-event-solid-primary.fc-not-start.fc-not-end,
.fc-unthemed .fc-event-dot.fc-event-solid-primary.fc-not-start.fc-end {
	background: var(--primary);
	color: white;
}
.fc-unthemed .fc-event.fc-event-solid-info.fc-start,
.fc-unthemed .fc-event.fc-event-solid-info.fc-not-start.fc-not-end,
.fc-unthemed .fc-event.fc-event-solid-info.fc-not-start.fc-end,
.fc-unthemed .fc-event-dot.fc-event-solid-info.fc-start,
.fc-unthemed .fc-event-dot.fc-event-solid-info.fc-not-start.fc-not-end,
.fc-unthemed .fc-event-dot.fc-event-solid-info.fc-not-start.fc-end {
	background: var(--info);
	color: white;
}
.fc-unthemed .fc-event.fc-event-solid-warning.fc-start,
.fc-unthemed .fc-event.fc-event-solid-warning.fc-not-start.fc-not-end,
.fc-unthemed .fc-event.fc-event-solid-warning.fc-not-start.fc-end,
.fc-unthemed .fc-event-dot.fc-event-solid-warning.fc-start,
.fc-unthemed .fc-event-dot.fc-event-solid-warning.fc-not-start.fc-not-end,
.fc-unthemed .fc-event-dot.fc-event-solid-warning.fc-not-start.fc-end {
	background: var(--warning);
	color: white;
}
.fc-unthemed .fc-event.fc-event-solid-danger.fc-start,
.fc-unthemed .fc-event.fc-event-solid-danger.fc-not-start.fc-not-end,
.fc-unthemed .fc-event.fc-event-solid-danger.fc-not-start.fc-end,
.fc-unthemed .fc-event-dot.fc-event-solid-danger.fc-start,
.fc-unthemed .fc-event-dot.fc-event-solid-danger.fc-not-start.fc-not-end,
.fc-unthemed .fc-event-dot.fc-event-solid-danger.fc-not-start.fc-end {
	background: var(--danger);
	color: white;
}
.fc-unthemed .fc-event.fc-event-solid-success.fc-start,
.fc-unthemed .fc-event.fc-event-solid-success.fc-not-start.fc-not-end,
.fc-unthemed .fc-event.fc-event-solid-success.fc-not-start.fc-end,
.fc-unthemed .fc-event-dot.fc-event-solid-success.fc-start,
.fc-unthemed .fc-event-dot.fc-event-solid-success.fc-not-start.fc-not-end,
.fc-unthemed .fc-event-dot.fc-event-solid-success.fc-not-start.fc-end {
	background: var(--success);
	color: white;
}
.fc-unthemed .fc-event.fc-event-solid-dark.fc-start,
.fc-unthemed .fc-event.fc-event-solid-dark.fc-not-start.fc-not-end,
.fc-unthemed .fc-event.fc-event-solid-dark.fc-not-start.fc-end,
.fc-unthemed .fc-event-dot.fc-event-solid-dark.fc-start,
.fc-unthemed .fc-event-dot.fc-event-solid-dark.fc-not-start.fc-not-end,
.fc-unthemed .fc-event-dot.fc-event-solid-dark.fc-not-start.fc-end {
	background: var(--darkgrey);
	color: white;
}
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
	border-color: #f2f4f5 !important;
}
/* popover */
.fc-unthemed .fc-more {
    font-weight: 400;
    color: var(--primary);
}
.fc-unthemed .fc-more:hover {
    text-decoration: none;
}
.fc-unthemed .fc-popover .fc-header.fc-widget-header {
    padding: 10px 15px;
}
.fc-unthemed .fc-popover .fc-body .fc-event {
	box-shadow: none;
	margin-bottom: 4px;
}
/* list */
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
    background: #f2f4f5 !important;
}
.fc-ltr .fc-list-heading-main {
    font-weight: 500;
}
.fc-ltr .fc-list-heading-alt {
    float: right;
    color: #abb0b1;
    font-weight: 300;
}
.fc-unthemed .fc-list-item:hover td {
    background-color: unset !important;
}
.fc-unthemed .fc-list-item .fc-event-dot,
.fc-unthemed .fc-list-item .fc-event-dot {
    box-shadow: none;
    background: #e5e8ea;
    border-color: #e5e8ea;
}
.fc-unthemed .fc-list-item.fc-event-solid-primary .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-primary .fc-event-dot {
    background: var(--primary);
    border-color: var(--primary);
}
.fc-unthemed .fc-list-item.fc-event-solid-secondary .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-secondary .fc-event-dot {
    background: var(--secondary);
    border-color: var(--secondary);
}
.fc-unthemed .fc-list-item.fc-event-solid-info .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-info .fc-event-dot {
    background: var(--info);
    border-color: var(--info);
}
.fc-unthemed .fc-list-item.fc-event-solid-warning .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-warning .fc-event-dot {
    background: var(--warning);
    border-color: var(--warning);
}
.fc-unthemed .fc-list-item.fc-event-solid-success .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-success .fc-event-dot {
    background: var(--success);
    border-color: var(--success);
}
.fc-unthemed .fc-list-item.fc-event-solid-danger .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-danger .fc-event-dot {
    background: var(--danger);
    border-color: var(--danger);
}
.fc-unthemed .fc-list-item.fc-event-solid-dark .fc-event-dot,
.fc-unthemed .fc-list-item.fc-event-dark .fc-event-dot {
    background: var(--darkgrey);
    border-color: var(--darkgrey);
}
/* scrollbar */
.fc-scroller.fc-time-grid-container::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.fc-scroller.fc-time-grid-container::-webkit-scrollbar-track {
  background: none;
}
.fc-scroller.fc-time-grid-containery::-webkit-scrollbar-thumb {
  background: #e5e8ea;
  border-radius: 0 0 3px 3px;
}
.fc-scroller.fc-time-grid-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}


/*******************
Fullcalendar V5
*******************/
.fc-toolbar.fc-header-toolbar {
    flex-wrap: wrap;
}
.fc .fc-toolbar .fc-button {
    color: #5d6267;
    background: #fff;
    border: 1px solid #e5e8ea;
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 10px;
}
.fc .fc-toolbar h2 {
    font-size: 20px;
}
.fc-theme-standard .fc-scrollgrid {
	border: none !important;
}
.fc .fc-toolbar .fc-button:focus,
.fc .fc-toolbar .fc-button:active,
.fc .fc-toolbar .fc-button:hover,
.fc .fc-toolbar .fc-button.fc-button-active {
    background: #0016a7 !important;
	border: 1px solid #0016a7 !important;
	color: #fff;
}
.fc .fc-toolbar .fc-button:hover {
    opacity: 0.6;
    transition: opacity 0.1s ease-out;
}
.fc-col-header-cell {
	background: #fff !important;
}
.fc .fc-view-container {
    background: white;
}
.fc .fc-day-header.fc-widget-header {
    padding: 10px;
}
.fc .fc-day-grid td:not(.fc-axis) {
	padding: 8px;
}
.fc .fc-day-grid td:not(.fc-axis).fc-event-container {
	padding: 2px 6px;
}
.fc td.fc-today {
    background: #f8fbfe !important;
}
.fc .fc-event .fc-content,
.fc .fc-daygrid-event-dot .fc-content {
    padding: 7px 7px 7px 30px;
}
.fc .fc-daygrid-day-number {
	padding: 12px !important;
}
.fc .fc-event,
.fc .fc-event:hover {
	border: 1px solid #e5e8ea;
	background: var(--light);
    color: var(--primary);
    box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 6%);
	border-radius: 10px;
}
.fc .fc-event:hover,
.fc .fc-daygrid-event-dot:hover {
    color: #5d6267;
}
.fc .fc-event .fc-content:before,
.fc .fc-daygrid-event-dot .fc-content:before {
    display: block;
    content: " ";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    background: white;
}
.fc .fc-event.fc-event-solid-default,
.fc .fc-event.fc-event-solid-default.fc-start,
.fc .fc-event.fc-event-solid-default.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-default.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-default.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-default.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-primdefaultary.fc-not-start.fc-end {
	background: var(--lightgrey);
	color: black;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-primary,
.fc .fc-event.fc-event-solid-primary.fc-start,
.fc .fc-event.fc-event-solid-primary.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-primary.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-primary.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-primary.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-primary.fc-not-start.fc-end {
	background: var(--primary);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-secondary,
.fc .fc-event.fc-event-solid-secondary.fc-start,
.fc .fc-event.fc-event-solid-secondary.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-secondary.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-secondary.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-secondary.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-secondary.fc-not-start.fc-end {
	background: var(--secondary);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-info,
.fc .fc-event.fc-event-solid-info.fc-start,
.fc .fc-event.fc-event-solid-info.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-info.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-info.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-info.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-info.fc-not-start.fc-end {
	background: var(--info);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-warning,
.fc .fc-event.fc-event-solid-warning.fc-start,
.fc .fc-event.fc-event-solid-warning.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-warning.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-warning.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-warning.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-warning.fc-not-start.fc-end {
	background: var(--warning);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-danger,
.fc .fc-event.fc-event-solid-danger.fc-start,
.fc .fc-event.fc-event-solid-danger.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-danger.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-danger.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-danger.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-danger.fc-not-start.fc-end {
	background: var(--danger);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-success,
.fc .fc-event.fc-event-solid-success.fc-start,
.fc .fc-event.fc-event-solid-success.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-success.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-success.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-success.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-success.fc-not-start.fc-end {
	background: var(--success);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-grey,
.fc .fc-event.fc-event-solid-grey.fc-start,
.fc .fc-event.fc-event-solid-grey.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-grey.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-grey.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-grey.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-grey.fc-not-start.fc-end {
	background: var(--grey);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-solid-dark,
.fc .fc-event.fc-event-solid-dark.fc-start,
.fc .fc-event.fc-event-solid-dark.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-solid-dark.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-solid-dark.fc-start,
.fc .fc-daygrid-event-dot.fc-event-solid-dark.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-solid-dark.fc-not-start.fc-end {
	background: var(--grey);
	color: white;
    padding: 5px;
}
.fc .fc-event.fc-event-outline-grey,
.fc .fc-event.fc-event-outline-grey.fc-start,
.fc .fc-event.fc-event-outline-grey.fc-not-start.fc-not-end,
.fc .fc-event.fc-event-outline-grey.fc-not-start.fc-end,
.fc .fc-daygrid-event-dot.fc-event-outline-grey.fc-start,
.fc .fc-daygrid-event-dot.fc-event-outline-grey.fc-not-start.fc-not-end,
.fc .fc-daygrid-event-dot.fc-event-outline-grey.fc-not-start.fc-end {
    background: none;
    border: 1px solid var(--grey);
    color: var(--night) !important;
    padding: 5px;
}
.fc .fc-event.fc-event-outline-grey.fc-v-event .fc-event-main {
    color: var(--night);
}
.fc th,
.fc td,
.fc thead,
.fc tbody,
.fc .fc-divider,
.fc .fc-row,
.fc .fc-content,
.fc .fc-popover,
.fc .fc-list-view,
.fc .fc-list-heading td {
	border-color: #f2f4f5 !important;
}
/* popover */
.fc .fc-more {
    font-weight: 400;
    color: var(--primary);
}
.fc .fc-more:hover {
    text-decoration: none;
}
.fc .fc-popover .fc-header.fc-widget-header {
    padding: 10px 15px;
}
.fc .fc-popover .fc-body .fc-event {
	box-shadow: none;
	margin-bottom: 4px;
}
/* list */
.fc .fc-divider,
.fc .fc-popover .fc-header,
.fc .fc-list-heading td,
.fc .fc-list-day,
.fc .fc-list-day-cushion.fc-cell-shaded {
    background: #f2f4f5 !important;
    font-weight: 500;
}
.fc-ltr .fc-list-heading-main {
    font-weight: 500;
}
.fc-ltr .fc-list-heading-alt {
    float: right;
    color: #abb0b1;
    font-weight: 300;
}
.fc-theme-standard .fc-list {
	border: none !important;
}
.fc .fc-list-event {
    box-shadow: none;
}
.fc .fc-list-event td {
    background-color: #fff !important;
	color: var(--primary);
}
.fc .fc-list-event:hover td {
    background-color: #fff !important;
}
.fc .fc-list-event-dot {
	border-color: var(--primary) !important;
}
.fc-daygrid-event-dot {
    box-shadow: none;
    background: #fff;
    border-color: #fff !important;
}
/* scrollbar */
.fc-scroller.fc-time-grid-container::-webkit-scrollbar {
	width: 6px !important;
	height: 6px;
}
.fc-scroller.fc-time-grid-container::-webkit-scrollbar-track {
  background: none;
}
.fc-scroller.fc-time-grid-containery::-webkit-scrollbar-thumb {
  background: #e5e8ea;
  border-radius: 0 0 3px 3px;
}
.fc-scroller.fc-time-grid-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}


/***********************************************************************************************
>>	12.0 	Stats
************************************************************************************************/

/*******************
Progress Bar
*******************/
.bar-container {
  overflow: hidden;
  height: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 0.5px solid #e5e8ea;
  background: #e5e8ea;
}
.bar-container.bar-slim {
	height: 3px;
	border-radius: 0;
	border: none;
	background: #e5e8ea;
}
.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: #e5e8ea;
}
.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: #abb0b1;
    padding: 1px 10px;
}
.bar.slide-slow {
	transition: width 2s ease;
}
.bar.slide-fast {
	transition: width 1s ease;
}

.bar-default {
	border: 0.5px solid #e5e8ea;
}
.bar-default .bar {
	background: #abb0b1;
}
.bar-white {
	border: 0.5px solid #e5e8ea;
}
.bar-white .bar {
	background: #ffffff;
}
.bar-info {
	border: 0.5px solid #0016a7;
}
.bar-info .bar {
	background: #0016a7;
}
.bar-info-light {
	border: 0.5px solid #a8caed;
	background: #a8caed;
}
.bar-info-light .bar {
	background: #ffffff;
}
.bar-success {
	border: 0.5px solid #8c44c1;
}
.bar-success .bar {
	background: #8c44c1;
}
.bar-success-light {
	border: 0.5px solid #baebde;
	background: #baebde;
}
.bar-success-light .bar {
	background: #ffffff;
}
.bar-warning {
	border: 0.5px solid #ffb630;
}
.bar-warning .bar {
	background: #ffb630;
}
.bar-warning-light {
	border: 0.5px solid #ffda97;
	background: #ffda97;
}
.bar-warning-light .bar {
	background: #ffffff;
}
.bar-danger {
	border: 0.5px solid #d50c2d;
}
.bar-danger .bar {
	background: #d50c2d;
}
.bar-danger-light {
	border: 0.5px solid #feaeae;
	background: #feaeae;
}
.bar-danger-light .bar {
	background: #ffffff;
}
.bar-dark {
	border: 0.5px solid rgb(54, 54, 54);
}
.bar-dark .bar {
	background: rgb(54, 54, 54);
}

/*******************
Pie Chart (old)
*******************/
.simple-pie-chart {
	background: #8c44c1;
	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(0.1turn);
	transform-origin: left;
}
.animated-pie-chart {
	background: #8c44c1;
	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: #e5e8ea;
	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%, #0016a7 0);
}
.static-pie-chart-success {
	background-image: linear-gradient(to right, transparent 50%, #8c44c1 0);
}
.static-pie-chart-warning {
	background-image: linear-gradient(to right, transparent 50%, #ffb630 0);
}
.static-pie-chart-danger {
	background-image: linear-gradient(to right, transparent 50%, #d50c2d 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-circle.pie-full {
	height: 0;
	width: 0;
}
.pie-text {
	color: rgb(29, 29, 29);
	font-size: 18px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

@-webkit-keyframes spin {
	to {
	  transform: rotate(0.5turn);
	}
}
@-moz-keyframes spin {
	to {
		transform: rotate(0.5turn);
	}
}
@-ms-keyframes spin {
	to {
		transform: rotate(0.5turn);
	}
}
@keyframes spin {
	to {
		transform: rotate(0.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: #0016a7;
	}
}
@-moz-keyframes pie-info {
	50% {
		background: #0016a7;
	}
}
@-ms-keyframes pie-info {
	50% {
		background: #0016a7;
	}
}
@keyframes pie-info {
	50% {
		background: #0016a7;
	}
}
@-webkit-keyframes pie-success {
	50% {
		background: #8c44c1;
	}
}
@-moz-keyframes pie-success {
	50% {
		background: #8c44c1;
	}
}
@-ms-keyframes pie-success {
	50% {
		background: #8c44c1;
	}
}
@keyframes pie-success {
	50% {
		background: #8c44c1;
	}
}
@-webkit-keyframes pie-warning {
	50% {
		background: #ffb630;
	}
}
@-moz-keyframes pie-warning {
	50% {
		background: #ffb630;
	}
}
@-ms-keyframes pie-warning {
	50% {
		background: #ffb630;
	}
}
@keyframes pie-warning {
	50% {
		background: #ffb630;
	}
}
@-webkit-keyframes pie-danger {
	50% {
		background: #d50c2d;
	}
}
@-moz-keyframes pie-danger {
	50% {
		background: #d50c2d;
	}
}
@-ms-keyframes pie-danger {
	50% {
		background: #d50c2d;
	}
}
@keyframes pie-danger {
	50% {
		background: #d50c2d;
	}
}


/*******************
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: #abb0b1;
}
.donut-info .donut-segment {
	stroke: #0016a7;
}
.donut-success .donut-segment {
	stroke: #8c44c1;
}
.donut-warning .donut-segment {
	stroke: #ffb630;
}
.donut-danger .donut-segment {
	stroke: #d50c2d;
}

/*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: 0.6em;
	line-height: 1;
	text-anchor: middle;
}
.donut-text-only {
	font-size: 0.4em;
	line-height: 1;
	text-anchor: middle;
}
.donut-text {
	fill: #000;
	-moz-transform: translateY(0.25em);
	-ms-transform: translateY(0.25em);
	-webkit-transform: translateY(0.25em);
	transform: translateY(0.25em);
}
.donut-number {
	font-size: 0.6em;
	line-height: 1;
	text-anchor: middle;
	-moz-transform: translateY(-0.25em);
	-ms-transform: translateY(-0.25em);
	-webkit-transform: translateY(-0.25em);
	transform: translateY(-0.25em);
}
.donut-label {
	font-size: 0.2em;
	text-transform: uppercase;
	text-anchor: middle;
	-moz-transform: translateY(0.7em);
	-ms-transform: translateY(0.7em);
	-webkit-transform: translateY(0.7em);
	transform: translateY(0.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 #5d6267;
	padding: 15px;
	border-radius: 5px;
}
.chart-pie-tooltip.visible {
	display: block;
}

/*******************
Bar Chart
*******************/

.barchart-vertical {
	width: 100%;
	height: inherit;
	display: block;
	margin-bottom: 25px;
}
.barchart-vertical .bars-vertical {
	display: inline-block;
	width: 100%;
	height: 200px;
	padding: 0;
	margin: 0;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
	align-items: stretch;
	width: 90%;
}
.barchart-vertical .bars-vertical li {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    height: inherit;
    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: #0016a7;
	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: #5d6267;
	width: 100%;
	position: absolute;
	bottom: -35px;
	left: 0;
	text-align: center;
}
.bars-vertical li .bar-vertical:hover {
	opacity: 0.6;
	cursor: pointer;
}
.bars-vertical li .bar-vertical:hover:before {
    color: #444444;
    content: attr(data-value) '%';
    position: relative;
    bottom: 30px;
    right: 10px;
    font-size: 12px;
    background: #ffffff;
    padding: 4px;
    border-radius: 5px;
}
.barchart-vertical .bars-vertical.bars-center {
	margin: 0 auto;
}
.barchart-vertical .bars-vertical.bars-slim li {
	margin: 0 2%;
}
.barchart-vertical .bars-vertical.bars-round li .bar-vertical {
	border-radius: 5px;
}
.barchart-vertical .bars-vertical.bars-bg-light li {
    background: #ffffff30;
    border-radius: 5px;
}

/*******************
Bar Chart
*******************/
.barchart-horizontal {
	width: 100%;
	height: inherit;
	display: block;
    padding: 10px 0;
}
.barchart-horizontal .bars-horizontal {
	margin: 0;
}
.barchart-horizontal .bars-horizontal li {
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    height: inherit;
    margin: 0;
    text-align: center;
    position: relative;
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
    justify-content: center;
    height: 10px;
    margin: 6px;
}
.barchart-horizontal .bars-horizontal li .bar-horizontal {
	display: block;
	width: 0;
	background: #0016a7;
	position: absolute;
	left: 0;
	height: inherit;
	-webkit-transition: width 1s ease-in-out;
	-moz-transition: width 1s ease-in-out;
	-o-transition: width 1s ease-in-out;
	transition: width 1s ease-in-out;
}
.barchart-horizontal .bars-horizontal li span {
	color: #5d6267;
	height: 100%;
	position: absolute;
	bottom: -35px;
	left: 0;
	text-align: center;
}
.bars-horizontal li .bar-horizontal:hover {
	opacity: 0.6;
	cursor: pointer;
}
.bars-horizontal li .bar-horizontal:hover:before {
    float: right;
    color: #444444;
    content: attr(data-value) '%';
    position: relative;
    bottom: 10px;
    left: 40px;
    font-size: 12px;
    background: #ffffff;
    padding: 4px;
    border-radius: 5px;
}
.barchart-horizontal .bars-horizontal.bars-round li .bar-horizontal {
	border-radius: 5px;
}
.barchart-horizontal .bars-horizontal.bars-light li .bar-horizontal {
	background: #ffffff;
}
.barchart-horizontal .bars-horizontal.bars-bg-light li {
    background: #ffffff30;
    border-radius: 5px;
}


/*******************
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: 10;
	cursor: pointer;
}
.linechart.no-effect g circle:hover {
	stroke-width: 0;
	cursor: unset;
}
.linechart .linechart-background {
	stroke: #abb0b1;
	fill: #f7f7f7;
	stroke-width: 2;
}
.linechart .linechart-graph {
	stroke: #abb0b1;
	fill: none;
	stroke-width: 2;
}
.linechart .linechart-graph.graph-blue {
	stroke: #0016a7;
	fill: none;
}
.linechart .linechart-graph.graph-orange {
	stroke: #ffb630;
}
.linechart .linechart-data {
	fill: #abb0b1;
	stroke: #abb0b1;
	stroke-width: 2;
}
.linechart .linechart-data.data-blue {
	fill: #0016a7;
	stroke: #0016a7;
}
.linechart .linechart-data.data-orange {
	fill: #ffb630;
	stroke: #ffb630;
}
.linechart .linechart-graph.graph-full {
	fill: #444444;
	stroke-width: 0;
}
.linechart .linechart-graph.graph-full.graph-blue {
	fill: #0016a7;
}
.linechart .linechart-graph.graph-full.graph-blue-light {
	fill: #0016a7;
	opacity: 0.6;
}
.linechart .linechart-graph.graph-full.graph-blue-dark {
	fill: #3b668a;
}
.linechart .linechart-graph.graph-full.graph-orange {
	fill: #ffb630;
}
.linechart .linechart-graph.graph-full.graph-dark {
	fill: #5d6267;
}
/*
.linechart .linechart-graph.graph-full:hover {
	opacity: 1;
}
*/
.linechart .linechart-data.data-full {
	fill: none;
	stroke: none;
	stroke-width: 0;
}
circle.circle-active {
    stroke: #2792ff;
    stroke-width: 20px;
	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 0.6s ease-in infinite alternate;
}

.signals .first{
	margin-left: 0px;
}

.signals .second{
	margin-left: 30px;
	animation-delay: 0.2s;
}

.signals .third{
	margin-left: 60px;
	animation-delay: 0.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: 0.5s;
	transition: 0.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;
}


/*******************
Pulse
*******************/
.pulse-outer {
    width: 25px;
    height: 25px;
    display: block;
    margin: 5px;
}
.pulse {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 4px solid transparent;
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}
.pulse:after {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #abb0b1;
    position: absolute;
    top: -8px;
    left: -8px;
    animation: pulse-outline 4s ease 0s infinite;
}
.btn .pulse {
    display: table;
}
.btn.pulse-inner {
    overflow: hidden;
}
/* lg */
.pulse.pulse-lg {
    font-size: 18px;
}
.pulse.pulse-lg:after {
    width: 30px;
    height: 30px;
    top: -7px;
    left: -7px;
}
/* icon only */
.pulse-icon.pulse:after {
    top: -5px;
    left: -5px;
}
.pulse.pulse-shadow:after {
    border: 12px solid #abb0b1;
    top: -7px;
    left: -7px;
    width: 0px;
    height: 0px;
    animation: pulse-shadow 4s ease 0s infinite;
}
.pulse.pulse-lg.pulse-shadow:after {
    border: 20px solid;
    top: -10px;
    left: -10px;
}
/* colores */
.pulse.pulse-bg-default {
    background: #abb0b1;
    border-color: #abb0b1;
}
.pulse.pulse-bg-info {
    background: #0016a7;
    border-color: #0016a7;
}
.pulse.pulse-info:after {
    border-color: #0016a7;
}
.pulse.pulse-bg-warning {
    background: #ffb630;
    border-color: #ffb630;
}
.pulse.pulse-warning:after {
    border-color: #ffb630;
}
.pulse.pulse-bg-danger {
    background: #d50c2d;
    border-color: #d50c2d;
}
.pulse.pulse-danger:after {
    border-color: #d50c2d;
}
.pulse.pulse-bg-success {
    background: #8c44c1;
    border-color: #8c44c1;
}
.pulse.pulse-success:after {
    border-color: #8c44c1;
}
.pulse.pulse-bg-dark {
    background: #444444;
    border-color: #444444;
}
.pulse.pulse-dark:after {
    border-color: #444444;
}
.pulse.pulse-bg-white {
    background: #fff;
    border-color: #fff;
}
.pulse.pulse-white:after {
    border-color: #fff;
}

@keyframes pulse-outline {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    40% {
        opacity: 0;
        transform: scale(2);
    }
    50% {
        opacity: 0;
        transform: scale(3);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}
@keyframes pulse-shadow {
    0% {
        opacity: .5;
        transform: scale(1);
    }
    40% {
        opacity: 0;
        transform: scale(2);
    }
    50% {
        opacity: 0;
        transform: scale(3);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}


/***********************************************************************************************
>>	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, 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: #d50c2d;
	}
	50% {
		background: #ffb630;
	}
	100% {
		background: #8c44c1;
	}
}






/***********************************************************************************************
>>	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;
	}
	.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;
	}
}