@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	background: #f0f2f5;
    color: #030303;
	line-height: 22px;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}

a { color: #000; }
a:hover { color: #000; }

a:active, a:focus {
	outline: 0 !important;
	border: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

p, ul {
	margin: 0;
}

ul { list-style: none; }

/* AUTH */

.auth {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100vh;
	min-height: 650px;
	background: url(../img/login-background-desktop.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.auth .auth-box {
	width: 450px;
	background: #fff;
	box-shadow: 0px 24px 64px rgb(0 0 0 / 12%);
}

.auth .auth-box .auth-header {
	display: flex;
	align-items: center;
	justify-content: center;
}

.auth .auth-box .auth-header button span {
	text-transform: uppercase;
	font-weight: 500;
}

.auth .auth-box .box-body {
	padding: 30px;
}

.auth .auth-box .box-body img {
	width: 100px;
}

.auth .auth-box .box-body h1 {
	font-size: 22px;
	font-weight: 600;
}

.auth .auth-box .box-body a {
	color: #0970be;
}

.auth .auth-box .box-body p.success-msg {
	color: #349d73;
}

.icon-shortcuts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
}

.icon-shortcuts a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background-color: #fff;
	border-radius: 4px;
	padding: 10px;
	transition: .2s;
}

.icon-shortcuts a:hover {
	background: #e7f3ff;
	color: #3086f3;
}

.icon-shortcuts a i {
	font-size: 30px;
	line-height: 30px;
}

.icon-shortcuts a span {
	display: block;
	margin-top: 5px;
	line-height: 14px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	border: 0;
}

.nav-tabs .nav-link {
	font-size: 12px;
    text-transform: uppercase;
	font-weight: 600;
	border: 0;
	position: relative;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	background: transparent;
	border: 0;
}

.nav-tabs .nav-link.active {
	color: #3576ba;
}

.nav-tabs .nav-link.active:before {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 3px;
	content: '';
	background: #3576ba;
}

.tabs-filters {
	display: flex;
	align-items: center;
	border-bottom: 0;
}

.tabs-filters .dropdown {
	width: auto;
	margin-right: 5px;
}

.tabs-filters .dropdown i {
	position: relative;
	top: 1.7px;
	padding-right: 3px;
}

.tabs-filters .dropdown-menu {
	min-width: 320px;
	padding: 10px;
	box-shadow: 0 0 10px rgb(14 42 71 / 15%);
    border: 1px solid #e3e9ed;
}

.tabs-filters .form-space {
	margin-bottom: 0;
}

.tabs-filters .dropdown-toggle::after {
	top: 1.3px;
	left: 4px;
	border-top: 4px solid #555;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.tabs-filters .dropdown-toggle {
	height: auto;
	padding: 6px 18px;
	border: 0;
	color: #3086f3;
	background: #e7f3ff;
}

.btn-1 {
	border-radius: 5px;
    background-color: #F93822FF;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
	padding: 12px 30px;
}

.button-1 {
	border-radius: 2px;
	background-color: #3576ba;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 9px;
}

.button-1:hover {
	background-color: #6097d2;
	color: #fff;
}

.icon-button {
	padding: 6px 10px;
    border: 0;
    color: #3086f3;
    background: #e7f3ff
}

.icon-button i {
	font-size: 16px;
	line-height: 16px;
}

/* TOP BAR */

.top-bar {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
	padding: 8px 15px;
	z-index: 10001;
}

.top-bar .left-menu {
	display: flex;
	align-items: center;
}

.top-bar .search-results {
	display: none;
	position: absolute;
	left: 0;
	top: 0px;
	width: 330px;
	background: #fff;
	z-index: 10005;
	padding: 65px 15px 15px 15px;
	box-shadow: 0 0 60px rgb(14 42 71 / 25%);
    border: 1px solid #e3e9ed;
	border-bottom-right-radius: 20px;
	max-height: 90vh;
	word-wrap: break-all;
	overflow-y: auto;
	overflow-x: hidden;
	max-width: 100%;
}

.top-bar .search-results.show {
	display: block;
}

.top-bar .search-results h4 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.top-bar .search-results ul li a {
	display: flex;
	align-items: center;
	padding: 7px;
	border-radius: 6px;
}

.top-bar .search-results ul li a i {
	position: relative;
	top: 2.5px;
}

.top-bar .search-results ul li a p {
	flex: 1;
	margin-left: 10px;
	line-height: 15px;
	word-break: break-all;
}

.top-bar .search-results ul li a small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 12px;
	color: #777;
	margin-top: 3px;
}

.top-bar .search-results ul li a:hover {
	background-color: #e3e4e5;
}

.top-bar .logo {
	position: relative;
	z-index: 10006;
	width: 40px;
}

.top-bar .logo img {
	width: 100%;
}

.top-bar .search {
	margin-left: 7px;
	position: relative;
	z-index: 10006;
}

.top-bar .search .search-button {
	position: relative;
	width: 250px;
}

.top-bar .search .search-button input {
	display: block;
	width: 100%;
	background: #f0f2f5;
	border: 0;
	padding: 8px 15px 8px 35px;
	border-radius: 33px;
}

.top-bar .search .search-button i {
	position: absolute;
	left: 10px;
	top: 11px;
	font-size: 18px;
	color: #777;
}

.top-bar ul.main-menu {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
}

.top-bar ul.main-menu li {
	margin-left: 8px;
	position: relative;
}

.top-bar ul.main-menu li:first-child {
	margin-left: 0px;
}

.top-bar ul.main-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 30px;
	background: transparent;
	transition: .1s ease;
	position: relative;
	border-radius: 10px;
}

.top-bar ul.main-menu li > span {
	position: absolute;
	right: 18px;
	top: 3px;
	background: #F93822FF;
	font-size: 9px;
	line-height: 9px;
	font-weight: 700;
	color: #fff;
	width: 17px;
	height: 17px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
}

[data-tooltip-title] span {
	position: absolute;
	display: inline-block;
	animation-name: show-tooltip;
	animation-duration: .4s;
	left: 50%;
	bottom: -33px;
	transform: translateX(-50%);
	background: rgba(0,48,90,.8);
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	text-align: center;
	line-height: 14px;
	padding: 5px 10px;
	border-radius: 20px;
	white-space: pre;
	font-style: normal;
	transition: .1s ease;
	z-index: 999999;
}

.tooltip-inner {
	background: #00305a;
	color: #fff;
	font-size: 12px;
}

@keyframes show-tooltip {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.top-bar ul.main-menu li a:hover {
	background: #f2f2f2;
}

.top-bar ul.main-menu li a.active:after {
	position: absolute;
	letf: 0;
	bottom: -3.8px;
	right: 0;
	content: '';
	width: 100%;
	height: 3.4px;
	background: #3576ba;
	border-radius: 3px;
}

.top-bar ul.main-menu li a i {
	font-size: 25px;
	position: relative;
	color: #65676b;
}

.top-bar ul.main-menu li a.active i {
	color: #3576ba;
}

.top-bar ul.right-menu {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.top-bar ul.right-menu li.user-details {
	display: flex;
	align-items: center;
}

.top-bar ul.right-menu li > .user-avatar {
	width: 34px;
	height: 34px;
	margin-right: 10px;
}

.top-bar ul.right-menu li > .user-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	object-fit: cover;
}

.top-bar ul.right-menu li .submenu {
	display: none;
	position: absolute;
	right: 15px;
	top: 60px;
	width: 400px;
    background: #fff;
    border: 1px solid #e3e9ed;
    border-radius: 10px;
	max-height: 80vh;
	overflow-y: auto;
}

.top-bar ul.right-menu li .submenu h3 {
	color: #050505;
    font-size: 18px;
    font-weight: 600;
	padding: 10px 15px;
}

.top-bar ul.right-menu li .submenu.show {
	display: block;
}

.top-bar ul.right-menu li .submenu.submenu-notifications {
	padding: 5px;
}

.top-bar ul.right-menu li .submenu.submenu-notifications .no-notices {
	padding: 8px 15px;
}

.top-bar ul.right-menu li .submenu .open-communicator {
	text-align: center;
	border-top: 1px solid #e3e3e3;
	padding: 10px 5px;
}

.top-bar ul.right-menu li .submenu .open-communicator a {
	color: #3576ba;
	font-weight: 500;
}

.top-bar ul.right-menu li .submenu .open-communicator a:hover {
	text-decoration: underline;
}

.top-bar ul.right-menu li .submenu-communicator .nav-tabs {
	align-items: center;
	justify-content: center;
}

.top-bar ul.right-menu li .submenu-communicator .nav-tabs a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
}

.top-bar ul.right-menu li .submenu-communicator .new {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: 5px;
	color: #3086f3;
    background: #e7f3ff;
	width: 20px;
	height: 20px;
}

.top-bar ul.right-menu li .submenu .my-notices-list.communicator {
	max-height: 66vh;
	overflow-y: auto;
	padding: 8px 5px;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item {
	display: flex;
	align-items: center;
	position: relative;
	padding: 8px 15px;
	border-radius: 15px;
	transition: .1s;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item.unseen {
	font-weight: 700;
	color: #3576ba;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item .user-avatar {
	width: 48px;
	height: 48px;
	border-radius: 100%;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item.item-link a {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item.item-link:hover {
	background: #f7f7f9;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item .user-avatar {
	margin-right: 14px;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item p {
	flex: 1;
	font-size: 13px;
	line-height: 16px;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item p strong {
	font-weight: 500;
}

.top-bar ul.right-menu li .submenu .my-notices-list .item span.date {
	display: block;
	color: #050505;
	margin-top: 3px;
	font-size: 12px;
	line-height: 15px;
}

.top-bar ul.right-menu li .submenu .my-profile {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.top-bar ul.right-menu li .submenu .my-profile .user-avatar {
	width: 60px;
	height: 60px;
	text-align: center;
}

.top-bar ul.right-menu li .submenu .my-profile .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.top-bar ul.right-menu li .submenu .my-profile .details {
	flex: 1;
	padding-left: 15px;
}

.top-bar ul.right-menu li .submenu .my-profile .details h4 {
	font-size: 16px;
	font-weight: 500;
}

.top-bar ul.right-menu li .submenu li {
	padding: 2px 8px;
}

.top-bar ul.right-menu li .submenu li a {
	display: flex;
	align-items: center;
	color: #050505;
	font-weight: 500;
	padding: 6px 7px;
	transition: .1s;
	border-radius: 8px;
}

.top-bar ul.right-menu li .submenu li a:hover {
	background: #f7f7f9;
}

.top-bar ul.right-menu li .submenu li a .icon {
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #e4e6eb;
    border-radius: 100%;
    margin-right: 10px;
}

.top-bar ul.right-menu li .submenu li a .icon i {
    position: relative;
    top: 2px;
    font-size: 22px;
}

.top-bar a {
	color: #050505;
}

.top-bar ul.right-menu > li {
	margin-left: 6px;
}

.top-bar ul.right-menu li a.icon {
	position: relative;
    width: 38px;
    height: 38px;
	background: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
	color: #050505;
	transition: .1s;
}

.top-bar ul.right-menu li a.icon.active {
	background: #ffe7ec;
	color: #F93822FF;
}

.top-bar ul.right-menu li a.icon:hover {
	color: #222;
	background: #d8dadf;
}

.top-bar ul.right-menu li a.icon i {
	font-size: 19.5px;
	position: relative;
	top: 2.5px;
}

.top-bar ul.right-menu li:last-child a.icon i {
	font-size: 13px;
	top: 4px;
}

.top-bar ul.right-menu li a.icon .icon-new-items {
	position: absolute;
	right: -3px;
	top: -5px;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: #F93822FF;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* SIDEBAR */

.sidebar {
	position: fixed;
	left: 0;
	top: 57px;
	bottom: 0;
	width: 320px;
	padding: 20px 8px;
	background: #fff;
	max-height: 100vh;
    overflow-y: auto;
	z-index: 1000;
}

.sidebar.sidebar-2 {
	width: 380px;
	padding-bottom: 20px;
}

.sidebar.sidebar-bg-transparent {
	background: transparent;
}

.sidebar .sidebar-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 4px 0 17px 0;
}

.sidebar .sidebar-title span {
	display: block;
	line-height: 16px;
}

.sidebar .sidebar-title span a {
	font-size: 12px;
	color: #999;
	font-weight: 400;
}

.sidebar .sidebar-title .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 34px;
    height: 34px;
    background: #e4e6eb;
    border-radius: 100%;
	position: relative;
}

.sidebar .sidebar-title .icon i {
    position: relative;
	top: 3px;
	font-size: 18px;
}

.sidebar h1 {
	color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 0 10px
}

.sidebar .search {
	margin-bottom: 10px;
}

.sidebar .search input {
	display: block;
	width: 100%;
	border-radius: 30px;
    padding: 10px 20px 10px 36px;
    font-size: 14px;
    background: #f7f7f9 !important;
    box-shadow: none !important;
    border: 0 !important;
    font-weight: 300;
}

.sidebar .search i {
	font-size: 18px;
}

.sidebar ul li {
	margin-bottom: 3px;
	position: relative;
}

.sidebar ul li > span {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 100%;
	background: #272e38;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.sidebar ul li.menu-title {
	color: #272e38;
	font-size: 18px;
	font-weight: 700;
	padding: 7px 10px;
}

.sidebar ul li.separate {
	margin: 4px 0;
	border-top: 1px solid #e3e3e3;
}

.sidebar ul li:last-child {
	margin-bottom: 0px;
}

.sidebar ul li a:not(.btn-add) {
	padding: 8px 10px;
	border-radius: 8px;
	background: transparent;
	font-weight: 600;
	display: flex;
	align-items: center;
	font-size: 14.5px;
	color: #272e38;
}

.sidebar ul li a:hover:not(.btn-add) {
	background: #f7f7f9;
}

.sidebar.sidebar-bg-transparent ul li a:hover:not(.btn-add) {
	background: #e4e6e9;
}

.sidebar ul li a.active {
	background: #f0f2f5;
}

.sidebar ul li a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 30px;
    height: 30px;
    background: #f7f7f9;
    border-radius: 100%;
    margin-right: 10px;
}

.sidebar ul li a .icon i {
	position: relative;
	top: 2px;
	font-size: 22px;
	font-weight: bold;
}

.sidebar ul li .submenu {
	margin-left: 40px;
}

::-webkit-scrollbar {
	width: 7px;
}

::-webkit-scrollbar-track {
	background: #f7f7f9;
}

::-webkit-scrollbar-thumb {
	background: #f7f7f9;
}

::-webkit-scrollbar-thumb {
	background: #ddd;
}

::-webkit-scrollbar-thumb:hover {
	background: #f7f7f9;
}

::-webkit-scrollbar-thumb:active {
	background: #3576ba;
}

.sidebar .window-sidebar {
	display: none;
	position: absolute;
	left: 8px;
	right: 8px;
	top: 66px;
    background: #fff;
    box-shadow: 0 0 20px rgb(14 42 71 / 15%);
    border: 1px solid #e3e9ed;
    border-radius: 10px;
	max-height: 80vh;
	overflow-y: auto;
	z-index: 100005;
	padding: 7px;
}

.sidebar .window-sidebar.show {
	display: block;
}

.sidebar .window-sidebar h4 {
	font-size: 15px;
	font-weight: 500;
	padding: 3px 8px 10px 8px;
}

.sidebar ul.chats h5 {
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	margin-bottom: 8px;
	color: #444;
}

.sidebar ul.chats .chat-info p {
	font-size: 12px;
	line-height: 15px;
	font-weight: 400;
	color: #777;
}

.sidebar ul.chats .user-avatar {
	width: 50px;
	height: 50px;
}

.sidebar ul.chats .chat-info {
	flex: 1;
	margin-left: 12px;
}

.sidebar ul.chats .chat-info > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sidebar ul.chats .chat-info > div span {
	display: none;
	position: absolute;
	right: 10px;
	top: 15px;
	width: 10px;
	height: 10px;
	border: 2px solid #3576ba;
	border-radius: 100%;
}

.sidebar ul.chats li.unseen h5 {
	font-weight: 700;
	color: #3576ba;
}

.sidebar ul.chats li.unseen .chat-info p {
	font-weight: 700;
	color: #3576ba;
}

.sidebar ul.chats li.active a {
	background: #eaf3ff;
}

.chat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 10px 20px;
	border: 1px solid #e0e7ee;
	border-bottom: 0;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.chat-header .user-avatar {
	width: 40px;
	height: 40px;
	margin-right: 8px;
}

.chat-header h2 span {
	display: inline-block;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	padding: 3px 8px;
	margin-left: 5px;
	border-radius: 33px;
	text-transform: uppercase;
}

.chat-header h2 span.contact {
	background: #fdf8e5;
    color: #999689;
}

.chat-header h2 span.client {
	background: #e4f9e5;
    color: #59815b;
}

.chat-messages {
	position: relative;
	background: #fff;
	border: 1px solid #e0e7ee;
}

.chat-messages .messages {
	position: relative;
	height: calc(100vh - 230px);
	overflow-y: auto;
	padding: 20px;
	z-index: 1;
}

.chat-messages.height-2 .messages {
	height: 320px;
}

.chat-messages .messages .item {
	display: flex;
	margin-bottom: 10px;
}

.chat-messages .item:last-child {
	margin-bottom: 0px;
}

.chat-messages .item > p {
	position: relative;
	background: #e4e6eb;
	color: #212121;
	padding: 9px 14px;
	border-radius: 20px;
	max-width: 75%;
	word-break: break-word;
}

.chat-messages .item.reverse {
	justify-content: flex-end;
	align-items: flex-start;
}

.chat-messages .item.reverse .user-avatar {
	width: 36px;
	height: 36px;
	order: 2;
	margin-left: 10px;
}

.chat-messages .item.reverse .user-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	object-fit: cover;
}

.chat-messages .item.reverse > p {
	background: #0084ff;
	color: #fff;
}

.chat-messages [data-tooltip-title] span {
	left: auto;
	right: -140px;
	bottom: 50%;
	transform: translateY(50%);
}

.chat-messages .item.reverse [data-tooltip-title] span {
	left: -140px;
	right: auto;
}

.chat-reply {
	padding: 10px;
	background: #fff;
}

.chat-reply .form-space input,
.chat-reply .form-space textarea {
	border-radius: 30px;
    padding: 10px 50px 10px 20px;
    font-size: 14px;
    background: #f0f2f5 !important;
	overflow: hidden;
	max-height: 140px;
	word-wrap: break-all;
}

.chat-reply .form-space {
	position: relative;
}

.chat-reply .form-space button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	right: 20px;
	width: 26px;
	height: 26px;
	border-radius: 100%;
	background: #00305a;
	color: #fff;
}

.chat-reply .form-space button i {
	position: relative;
	left: 1px;
	top: 2px;
}

.sb-chat-messages {
	height: 520px;
	overflow-y: auto;
	background: #fff;
	border-radius: 10px;
	padding: 15px;
}

.sb-chat-messages .item {
	display: flex;
	margin-bottom: 10px;
}

.sb-chat-messages .item p a {
	color: #3576ba;
    font-weight: 500;
}

.sb-chat-messages .item > p {
	position: relative;
    background: #e4e6eb;
    color: #212121;
    padding: 9px 14px;
    border-radius: 20px;
    max-width: 75%;
}

.sb-chat-messages .item > p .msg-date {
	position: relative;
	top: 2px;
	font-size: 11px;
	line-height: 11px;
	padding-left: 8px;
	color: #818181;
}

.sb-chat-messages .item:last-child {
	margin-bottom: 0px;
}

.sb-chat-messages .item .user-avatar {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.sb-chat-messages .item .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.sb-chat-footer {
	background: #fff;
	border-top: 1px solid #eee;
	padding: 10px;
	position: relative;
}

.sb-chat-footer input,
.sb-chat-footer textarea {
    border-radius: 30px;
    padding: 10px 50px 10px 20px;
    font-size: 14px;
    background: #f0f2f5 !important;
    overflow: hidden;
    max-height: 140px;
    word-wrap: break-all;
}

.sb-chat-footer button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    right: 20px;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: #00305a;
    color: #fff;
}

.sb-chat-footer button i {
    position: relative;
    left: 1px;
    top: 2px;
}

.pagination {
	display: flex;
	align-items:center;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	margin-top: 30px;
	gap: 8px;
}

.pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 13px;
	line-height: 13px;
	font-weight: 600;
	border: 1px solid #eee;
	border-radius: 1px;
}

.pagination a.current {
	color: #3086f3;
    background: #e7f3ff;
}

/* MAIN */

main {
	margin-left: 320px;
	background-color: #f0f2f5;
	min-height: 100vh;
	padding: 76px 70px 50px;
}

main.main-2 {
	margin-left: 380px;
}

main h2.title {
	font-size: 16px;
    color: #000;
    font-weight: 700;
    transition: .2s;
	margin-bottom: 20px;
}

.page-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.page-title h2.title {
	margin: 0;
}

main.full-width {
	margin-left: 0;
}

main.full-height {
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.page-menu {
	display: flex;
	align-items: center;
}

ul.page-menu li {
	margin-left: 10px;
}

ul.page-menu li.hidden {
	display: none;
}

ul.page-menu li:first-child {
	margin-left: 0;
}

ul.page-menu li a {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

ul.page-menu li a:hover {
	background: #eee;
}

ul.page-menu li i {
	position: relative;
	top: 2px;
	font-size: 18px;
}

/* CALENDAR */

.calendar {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.calendar > .item {
	width: calc(20% - 20px);
}

.calendar > .item .item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 22px;
	border-bottom: 3px solid #414141;
	padding: 10px 0;
}

.calendar > .item .item-header.is-today {
	border-color: #3576ba;
	color: #3576ba;
}

.calendar > .item .item-header .day {
	font-weight: 600;
}

.calendar > .item .item-header .day-name {
	font-weight: 400;
	opacity: .4;
}

.calendar .todo {
	
}

.calendar .todo .item {
	position: relative;
}

.calendar .todo .item.complete {
	opacity: .4;
}

.calendar .todo .item .complete-work {
	display: none;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 20px;
	height: 20px;
	border: 2px solid #000;
	border-radius: 100%;
	text-align: center;
}

.calendar .todo .item .complete-work i {
	position: relative;
	top: -5px;
	font-size: 11px;
	font-weight: 600;
	font-style: normal;
}

.calendar .todo .item input,
.calendar .todo .item select,
.calendar .todo .item p {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #ddd;
	height: 46px;
	background: #fff;
	padding: 0 10px;
	cursor: grab;
}

.calendar .todo .item input {
	padding-left: 65px;
}

.calendar .todo .item select {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.calendar .todo .item p {
	display: flex;
	align-items: center;
}

.calendar .todo .item .added-hour {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	font-weight: 600;
	font-size: 16px;
}

.calendar .todo .item p span.hour {
	display: block;
	width: 56px;
	font-weight: 600;
	font-size: 16px;
}

.calendar .todo .item span.remove-hour {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 100%;
	border: 2px solid #414141;
	z-index: 3;
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	color: #414141;
}

.panel-box {
	border: 1px solid #e0e7ee;
    background-color: #fff;
    border-radius: 10px;
	padding: 20px;
	box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
}

.panel-box .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.panel-box h2 {
	font-size: 16px;
    color: #000;
    font-weight: 700;
    transition: .2s;
	margin-bottom: 20px;
}

.panel-box p.space-2 {
	background: #f7f7f9;
	padding: 15px 20px;
	border-radius: 10px;
	font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.panel-box p.space-2 span:first-child {
	font-weight: 500;
}

.panel-box p.space-2 span:last-child {
	font-size: 22px;
}

.panel-box p.space {
	position: relative;
	background: #f7f7f9;
	padding: 15px 20px;
	border-radius: 10px;
	font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 16px;
}

.panel-box p.space .copy {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	cursor: pointer;
}

.copy { cursor: pointer; }

.panel-box p.space .copy i {
	font-size: 16px;
	top: 2px;
}

.panel-box p:not(.space-2) i {
	position: relative;
	top: 4.5px;
	margin-right: 10px;
	font-size: 20px;
}

.panel-box .panel-buttons {
	display: flex;
}

.panel-box .panel-buttons div {
	margin-left: 10px;
}

.panel-box .panel-buttons div:first-child {
	margin-left: 0px;
}

.panel-box p.info {
	margin-bottom: 10px;
}

.panel-box p.info i {
	position: relative;
	top: 5px;
	font-size: 20px;
	color: #8c939d;
}

.panel-box p.info i span {
	color: #fff;
}

.panel-box p.info span {
	font-weight: 500;
	color: #000;
}

.panel-box p.info span.pesel,
.panel-box p.info span.nip {
	border-radius: 5px;
    color: #3086f3;
    background: #e7f3ff;
	padding: 4px 6px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
}

.tags span {
	margin: 3px;
}

.tags span:first-child {
	margin-left: 0px;
}

.page-header {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.page-header h1 {
	font-size: 24px;
	font-weight: 700;
	color: #000;
}

.page-header .filters {
	display: flex;
	align-items: center;
}

.page-header .filters .form-space {
	margin: 0;
	margin-left: 20px;
}

.page-header .filters .form-space:first-child {
	margin-left: 0px;
}

.panel-box .nav-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	border-bottom: 0;
}

.panel-box .nav-tabs a {
    background: #fff;
	padding: 5px 15px;
}

.panel-box .nav-tabs .nav-item.show .nav-link,
.panel-box .nav-tabs .nav-link.active {
	color: #3086f3;
    background: #e7f3ff;
}

.panel-box .nav-tabs .nav-link.active:before {
	display: none;
}

.emails-list .item a .status {
	display: inline-flex;
	padding: 3px 5px;
}

.emails-list .item {
	margin-bottom: 15px;
}

.emails-list .item:last-child {
	margin-bottom: 0px;
}

.emails-list .item span.date {
    color: #050505;
}

.panel-items {
	
}

.panel-list .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	border: 1px solid #e0e7ee;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
}

.panel-list .item.order-status-0 {
	opacity: .6;
}

.panel-list .item:last-child {
	margin-bottom: 0px;
}

.panel-list .item h3 {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

.panel-list .item h3 a {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

.panel-list-2 .item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.panel-list-2 .item:last-child {
	margin-bottom: 0px;
}

.panel-list-2 .item.order-status-0 {
	opacity: .6;
}

.panel-list-2 .item .user-avatar {
	width: 48px;
	height: 48px;
}

.panel-list-2 .item > div {
	position: relative;
}

.panel-list-2 .item .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.panel-list-2 .item .item-content {
	background: #fff;
	margin-left: 20px;
	flex: 1;
	padding: 15px;
	position: relative;
    border: 1px solid #e0e7ee;
    border-radius: 10px;
    word-wrap: break-word;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.panel-list-2 .item .item-content:before {
    position: absolute;
    left: -14px;
    top: 8px;
    content: '';
    width: 10px;
    height: 20px;
    border-right: solid 15px #fff;
    border-bottom: solid 15px transparent;
    border-top: solid 15px transparent;
    z-index: 2;
}

.panel-list-2 .item .item-content h3 {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

.panel-list-2 .item .item-content h3 a {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

.panel-list-2 .item.order-unseen .item-content h3 a {
	color: #F93822FF;
}

.panel-list-2 .item .item-content span.service {
    font-size: 12px;
    font-weight: 500;
    color: #888;
	line-height: 14px;
}

.panel-list-2 .item .item-content .details {
	display: flex;
	align-items: center;
	margin-top: 3px;
}

.panel-list-2 .item .item-content .details span {
	display: block;
	margin-right: 8px;
	font-size: 12px;
    font-weight: 500;
    color: #888;
	line-height: 14px;
	position: relative;
}

.panel-list-2 .item .item-content .details span:nth-child(even) {
	padding-left: 12px;
}

.panel-list-2 .item .item-content .details span:nth-child(even):before,
.panel-list-2 .item .item-content .details span.date:before {
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background: #9f9f9f;
	margin-top: 0.5px;
}

.panel-list-2 .item .item-content .details span.date {
    font-weight: 300;
	padding-left: 12px;
}

.panel-list-2 .item .item-content span.amount {
	display: block;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    background: #e4f9e5;
    color: #59815b;
    font-weight: 600;
}

/* PANEL STATS */

.stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.stats .item {
	background-color: #fff;
	border-radius: 4px;
	padding: 20px;
}

.stats .item h4 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	line-height: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.stats .item .value i {
	color: #3576ba;
	font-size: 26px;
	line-height: 26px;
	position: relative;
	top: 3.5px;
	padding-right: 5px;
}

.stats .item .value span {
	font-size: 26px;
	font-weight: 700;
}

.stats .lds-dual-ring {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.stats .lds-dual-ring:after {
	content: " ";
	display: block;
	width: 16px;
	height: 16px;
	margin: 2px;
	border-radius: 50%;
	border: 4px solid #000;
	border-color: #000 transparent #000 transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}

.metrics .item {
	display: flex;
}

.metrics .item div {
	width: 50%;
	background: #fff;
	padding: 10px;
}

blockquote {
	background: #f3f3f3;
}

/* POSTS */

.posts {
	
}

.posts .item {
	margin-bottom: 50px;
}

.posts .item:last-child {
	margin-bottom: 50px;
}

.posts .item .post-heading {
	display: flex;
}

.posts .item .post-heading.with-menu {
	justify-content: space-between;
	align-items: center;
}

.posts .item .post-heading.with-menu .nav-tabs {
	border-bottom: 0;
}

.posts .item .post-heading .author {
	font-weight: 600;
	color: #000;
}

.posts .item .post-heading .date {
	font-weight: 300;
	color: #777;
}

.posts .item .post-content {
	display: flex;
	margin-top: 15px;
}

.posts .item .post-content.email blockquote {
	background: #f6f6f6;
	padding: 15px;
	margin-top: 15px;
}

.posts .item .post-content .user-avatar {
	width: 52px;
	height: 52px;
}

.posts .item .post-content .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.posts .item .post-content .desc {
	display: block;
	margin-left: 20px;
	flex: 1;
    background-color: #fff;
    padding: 20px;
    position: relative;
    border: 1px solid #e0e7ee;
    border-radius: 10px;
    word-wrap: break-word;
	line-height: 25px;
	max-width: 100%;
}

.posts .item .post-content .desc table {
	max-width: 100%;
	word-break: break-all;
}

.posts .item .post-content .desc table td {
	border: 1px solid #999;
	padding: 8px 10px;
}

.posts .item .post-content .desc .post-works {
	color: #3086f3;
    background: #e7f3ff;
	padding: 5px 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px;
}

.posts .item .post-content .desc .post-works a {
	color: #3086f3;
	font-weight: 700;
}

.posts .item .post-content .desc .item-attachments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px dashed #bbb;
    padding: 3px 10px;
}

.posts .item .post-content .desc .item-attachments span {
    text-transform: uppercase;
    font-size: 11px;
    color: #999;
    padding-right: 0;
}

.posts .item .post-content .desc .item-attachments .attachment {
    margin-left: 15px;
}

.posts .item .post-content .desc a {
	color: #F93822FF;
}

.posts .item .post-content .desc ul,
.posts .item .post-content .desc ol {
	margin: 20px 0;
	padding: 0 20px;
}

.posts .item .post-content .desc ol li {
	padding-left: 5px;
}

.posts .item .post-content .desc:before {
    position: absolute;
    left: -14px;
    top: 8px;
    content: '';
    width: 10px;
    height: 20px;
    border-right: solid 15px #fff;
    border-bottom: solid 15px transparent;
    border-top: solid 15px transparent;
    z-index: 2;
}

.post-reply p {
	margin: 0 !important;
	padding: 0 !important;
}

/* PANEL STATS */

.panel-stats {
	background: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	border-bottom: 1px solid #dadce0;
	border: 1px solid #e0e7ee;
    border-radius: 10px;
    box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
}

.panel-stats.panel-stats-items-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.panel-stats .item {
	padding: 30px;
}

.panel-stats .item i {
	color: #F93822FF;
	font-size: 30px;
}

.panel-stats .item span.value {
	display: block;
	font-weight: 700;
	color: #000;
	font-size: 26px;
	margin-top: 15px;
}

.panel-stats .item span.title {
	display: block;
	font-weight: 600;
	color: #000;
	font-size: 15px;
	margin-top: 10px;
}

.panel-stats .item p {
	font-size: 12px;
	margin-top: 15px;
	line-height: 15px;
	color: #888;
}

/* DROPDOWN */

.dropdown-toggle {
    display: block;
    background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #ccc;
    font-weight: 600;
    padding: 1px 20px;
    height: 32px;
}

.dropdown, .dropend, .dropstart, .dropup {
	display: block;
	width: 100%;
}

.dropdown-toggle::after {
	position: relative;
	top: 7px;
	border-top: 8px solid #555;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.dropdown-menu {
	padding: 0;
}

.dropdown-item {
    font-size: 12px;
    text-transform: uppercase;
    padding: 5px 20px;
    font-weight: 500;
}

.dropdown-item i {
    position: relative;
	top: 1.5px;
	padding-right: 4px;
}

.tox-tinymce-aux{z-index:99999999999 !important;}

.file-extension-image {
	width: 24px;
	margin-right: 6px;
}

.icon-help {
	display: inline-block;
	position: relative;
}

.icon-help i {
	position: relative;
	top: 2.3px;
}

.form-space [data-tooltip-title] span,
.alert [data-tooltip-title] span {
	width: 300px !important;
	white-space: pre-wrap !important;
	bottom: -50px;
}

.alert p small {
	display: block;
	line-height: 18px;
	margin-top: 10px;
}

.alert p small strong {
	font-weight: 600;
}

.file-thumbnail {
	width: 24px;
	height: 24px;
	object-fit: cover;
	margin-right: 10px;
}

/* TABLES */

.table.disable-select {
	user-select: none;
	cursor: pointer;
}

.table th {
    background: #f9f9f9;
    padding: 12px 15px;
	color: #666;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
}

.table td {
    background: #fff;
    padding: 12px 15px;
    vertical-align: middle;
    border: 0;
    box-shadow: none;
    line-height: 22px;
}

.table td li a {
    color: #000;
	font-weight: 500;
}

.table td a {
    color: #00305a;
	font-weight: 500;
}

.table>:not(:last-child)>:last-child>* {
	border-bottom: 1px solid #eee;
}

.table .nav-tabs {
	border-bottom: 0;
}

.table>:not(caption)>*>* {
    border: 0;
}

.table tr {
    border-bottom: 1px solid #eee;
}

.table tr:nth-child(even) td {
    background: #f9f9f9;
}

.table tr:hover td {
	background: #f7f7f9;
}

.table tr:last-child {
    border-bottom: 0;
}

.table tr.selected td,
.table tr.selected:hover td {
	background: #e7f3ff;
}

.table-view { display: none; }
.table-view.visible { display: table-cell; }

tr.clickable-row{ cursor: pointer; }

tr.not-seen td.subject {
}

.mce-pagebreak {
	background: #000 !important;
	border-color: #000 !important;
	height: 20px !important;
}

.display-users-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.display-users-list .user-avatar {
	width: 36px;
	height: 36px;
	margin-left: -8px;
	border: 2px solid #fff;
}

.display-users-list .user-avatar p.letters {
	font-size: 11px;
}

.display-users-list .user-avatar:first-child {
	margin-left: 0px;
}

.display-users-list .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.contact-chance {
	position: relative;
	display: flex;
}

.contact-chance span {
	background: #ddd;
	width: 13px;
	height: 13px;
	display: block;
	margin-left: 3px;
	border-radius: 2px;
}

.panel-box .contact-chance span {
	width: 20%;
}

.contact-chance span.chance {
	background: #569f4c;
}

.contact-chance span.chance:first-child {
	margin-left: 0px;
}

.works-area {
	position: relative;
	overflow-x: hidden;
}

.works {
	height: 100%;
	min-height: 500px;
}

.works.works-2 {
	min-height: auto;
}

.works .item {
    border: 1px solid #E0E7EE;
    box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
    padding: 15px;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    margin-bottom: 20px;
	cursor: move;
}

.works.works-2 .item {
	border: 1px solid #E0E7EE;
    box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
    padding: 15px;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    margin-bottom: 20px;
	cursor: auto;
}

.works .item:last-child {
    margin-bottom: 0px;
}

.works .item.draggable {
	box-shadow: 0 0 60px rgb(14 42 55 / 25%);
}

.works .item h3 {
	color: #000;
    font-size: 16px;
    font-weight: 600;
}

.works .item h3 a {
	color: #F93822FF;
}

.works .item .work-users {
	display: flex;
	margin: 5px 0;
}

.works .item .work-users .user-avatar {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-color: #222;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	position: relative;
}

.works .item .work-users [data-tooltip-title] span {
	display: inline-block;
	white-space: pre;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -35px;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	line-height: 12px;
	padding: 6px 10px;
	background: rgba(11, 34, 57, .75);
	border-radius: 10px;
	animation-name: fadeIn;
	z-index: 10001;
	animation-duration: .5s;
}

.works .item .work-users .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.works .item .details {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.works .item .details p {
	font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
	color: #999;
}

/* LIST */

.list {
	
}

.list .item {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.list .item .item-content {
	background: #fff;
	border: 1px solid #e0e7ee;
    box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
	border-radius: 10px;
	padding: 20px;
	flex: 1;
}

.list .item .item-content span.complete {
	color: #434343;
	font-size: 12px;
    color: #59815b;
}

.list .item .item-right {
	padding-left: 20px;
	text-align: center;
}

.list .item .item-right .nav-tabs {
	border-bottom: 0;
}

.list .item .item-right a {
	
}

.list .item .item-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.list .item h3 {
	color: #000;
    font-size: 16px;
    font-weight: 600;
}

.list .item:last-child {
	margin-bottom: 0px;
}

.list .item .item-left {
	flex: 1;
}

.list .item p {
    font-size: 12px;
    color: #777;
    font-weight: 400;
	margin-top: 1px;
}

.list .item p span {
    color: #434343;
    font-weight: 600;
}

.list .item p span.span-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #3086f3;
    background: #e7f3ff;
    width: 20px;
    height: 20px;
}

.list .item p span.span-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #e4f9e5;
    color: #59815b;
    width: auto;
	padding: 0 5px;
    height: 20px;
}

.list .item p span.span-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: #ffe7ec;
    color: #F93822FF;
    width: auto;
	padding: 0 5px;
    height: 20px;
}

.list .item p span.span-4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	color: #3086f3;
    background: #e7f3ff;
    width: auto;
	padding: 0 5px;
    height: 20px;
}

.list .item .item-right {
	display: flex;
	align-items: center;
}

.list .item .item-right .status {
	margin-left: 5px;
}

.list .item .item-right .status:first-child {
	margin-left: 0px;
}

/* STATUS */

.status {
	text-transform: uppercase;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	display: flex;
	padding: 6px 8px;
	border-radius: 33px;
	display: flex;
	align-items: center;
	height: 26px;
	position: relative;
	justify-content: center;
	text-align: center;
	background: #f7f7f9;
}

.status.inline {
	display: inline-flex;
}

.status.status-inline {
	display: inline-block;
}

.status.status-1 {
	background: #e8e8e8;
	color: #555;
}

.status.status-2 {
	background: #e4f9e5;
    color: #59815b;
}

.status.status-3 {
	background: #ffe7ec;
    color: #F93822FF;
}

.status.status-4 {
	background: #e0f1fc;
    color: #4f595f;
}

.status.status-5 {
	background: #f8f7d6;
    color: #5a5944;
}

.status.status-6 {
	background: #fde5f8;
    color: #544651;
}

.status.status-7 {
	background: #fdf8e5;
    color: #999689;
}

.status.status-8 {
	background: #d1caf7;
    color: #6b62a0;
}

.status i {
	position: relative;
	top: 1px;
	font-size: 12px;
	padding-right: 4px;
}

.progress-bar {
	margin-top: 10px;
	border-radius: 15px;
	background-color: #e9e9e9;
	position: relative;
	overflow: visible;
}

.progress-bar span {
}

progress {
    width: 100%;
    height: 7px;
    -webkit-appearance: none;
    appearance: none;
	border-radius: 15px;
	background-color: #e9e9e9;
}

.progress-bar.big progress {
    height: 30px;
}

progress::-webkit-progress-bar {
	background-color: #e9e9e9;
	border-radius: 15px;
	position: relative;
}

progress::-webkit-progress-value {
	background: #83b061;
	border-radius: 15px;
}

.progress-bar.big progress::-webkit-progress-value {
	background: #83b061;
	border-radius: 0px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

progress.progress-2::-webkit-progress-value {
	background: #e4f9e5;
}

progress.progress-3::-webkit-progress-value {
	background: #ffe7ec;
}

.services-list-stats .item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.services-list-stats .item i {
	position: relative;
	top: 1px;
	font-size: 24px;
	color: #F93822FF;
}

.services-list-stats .item:last-child {
	margin-bottom: 0px;
}

.services-list-stats .item span {
	display: block;
	width: 80px;
	padding: 0 20px;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
}

/* DOCUMENTS TYPES */

.choose-document {
	
}

.choose-document .wrapper {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.choose-document .wrapper h1 {
	margin-bottom: 30px;
}

.documents-types {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.documents-types .item {
}

.documents-types .item a {
	display: block;
	text-align: center;
	background: #fff;
	border-radius: 8px;
	padding: 30px;
}

.documents-types .item i {
	display: block;
	font-size: 50px;
	margin-bottom: 20px;
}

.documents-types .item span {
	font-size: 16px;
    color: #000;
    font-weight: 700;
    transition: .2s;
}

/* SETTINGS LIST */

.settings-list .item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.settings-list .item:last-child {
	margin-bottom: 0px;
}

.settings-list .item .item-details {
	flex: 1;
}

.settings-list .item h4 {
	font-size: 16px;
    font-weight: 500;
}

.settings-list .item p {
	font-size: 13px;
	line-height: 18px;
	color: #888;
	margin-top: 5px;
}

.settings-list .item .item-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-left: 30px;
}

.settings-list .item .item-buttons a {
	background: #f7f7f9;
	font-weight: 600;
	padding: 5px 10px;
	display: block;
	margin: 0 5px;
}

/* USERS LIST */

.users-list .item {
	display: flex;
	align-items: center;
}

.users-list .item .user-avatar {
	width: 34px;
	height: 34px;
}

.users-list .item .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.users-list .item .details {
	flex: 1;
	padding-left: 10px;
}

.users-list .item .details h4 {
	font-weight: 500;
	font-size: 15px;
    color: #000;
}

.account-details .user-avatar {
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

.account-details .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.is-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 50vh;
	text-align: center;
	max-width: 550px;
	margin: 0 auto;
}

.is-empty i {
	font-size: 80px;
	display: block;
	color: #65676B;
	margin-bottom: 10px;
}

.is-empty h3 {
	color: #65676B;
    font-size: 18px;
    font-weight: 600;
}

/* FORMS */

.form-space {
	margin-bottom: 20px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space.form-end {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.form-space.sticky {
	position: fixed;
	left: 0px;
	bottom: 0px;
	right: 0px;
	margin: 0;
	background: #fff;
	padding: 10px 40px;
	border-top: 1px solid #eee;
	justify-content: flex-end;
	align-items: flex-end;
}

.form-space span.input-helper {
	display: block;
	font-size: 11px;
	line-height: 13px;
	color: #888;
	font-weight: 400;
}

.form-space input,
.form-space select,
.form-space textarea {
	display: block;
	width: 100%;
	border: 0;
	background-color: transparent;
	border: 1px solid #ced0d4;
	padding: 14px 14px;
	border-radius: 5px;
	transition: .1s;
}

.form-space input.input-error,
.form-space select.input-error,
.form-space textarea.input-error {
	border-color: #F93822FF;
}

.form-space input:focus,
.form-space textarea:focus {
	border: 1px solid #00305a !important;
}

.form-space input::placeholder,
.form-space textarea::placeholder {
	color: #999;
}

.form-space label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 500;
	color: #515151;
}

.form-space label.label-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-space label.label-flex a {
	color: #0970be;
}

.form-space label.label-flex a:hover {
	color: #0970be;
	text-decoration: underline;
}

.form-space input[type="checkbox"]:not(.style-2) { display: none; }

.form-space input[type="checkbox"]:not(.style-2) + label {
	text-align: left;
	display: block;
	position: relative;
	padding-left: 33px;
	font-size: 12px;
	padding-top: 1px;
	color: #787f8b;
	cursor: pointer;
	transition: .2s;
}

.form-space input[type="checkbox"]:not(.style-2):hover + label {
	color: #000;
}

.form-space input[type="checkbox"]:not(.style-2) + label:before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	border: 2px solid #575757;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 1px;
	opacity: .6;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}

.form-space input[type="checkbox"]:not(.style-2):checked + label:before {
	width: 12px;
	top: -5px;
	border-color: #1acbaa;
	left: 5px;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-space .style-2 {
	position: absolute;
	opacity: 0;
	width: 20px;
}

.form-space .style-2 + label {
	position: relative;
	cursor: pointer;
	padding: 0;
}

.form-space .style-2 + label:before {
	content: '';
	display: inline-block;
	vertical-align: text-top;
	width: 20px;
	height: 20px;
	border: 2px solid #d2dae2;
	border-radius: 2px;
}

.form-space .style-2:hover + label:before {
	border-color: #555;
}

.form-space .style-2:checked + label:before {
	border: 2px solid #00305a;
	border-radius: 2px;
	background: #00305a;
}

.form-space .style-2:checked + label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    background: white;
    width: 1.5px;
    height: 1.5px;
    box-shadow: 
      1.5px 0 0 white,
      3px 0 0 white,
      3px -1.5px 0 white,
      3px -3px 0 white,
      3px -4.5px 0 white,
      3px -6px 0 white;
    transform: rotate(45deg);
}

.select2-container .select2-search--inline .select2-search__field {
	width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background: #e7f3ff !important;
	color: #3086f3 !important;
    border: 0 !important;
    border-radius: 0px;
	font-weight: 600;
    font-size: 14px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: flex;
	flex-direction: column;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin: 0;
	padding: 10px 20px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	top: 51%;
	transform: translateY(-49%);
}

.select2-selection--multiple {
    display: block;
    width: 100%;
	background: #f9f9f9 !important;
	border: 0 !important;
	border-radius: 10px !important;
	padding: 15px 15px 20px 15px !important;
}

.form-search {
	position: relative;
}

.form-search i {
	position: absolute;
	left: 10px;
	top: 53%;
	transform: translateY(-47%);
}

.form-space .form-group {
	position: relative;
}

.form-space .form-group > span {
	position: absolute;
	left: 15px;
	top: 17px;
	color: #888;
}

.form-space .form-group > input {
	padding-left: 35px;
}

.form-choice {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.form-choice .item {
	width: 50%;
}

.form-choice .item:first-child {
	border-right: 1px solid #e0e7ee;
	padding-right: 30px;
}

.form-choice .item:last-child {
	padding-left: 30px;
}

.form-choice .item h3 {
	color: #000;
    font-size: 16px;
    font-weight: 600;
	margin-bottom: 20px;
}

.form-choice .item p {
	margin-bottom: 20px;
}

.dropzone {
	width: 100%;
	border: 2px dashed #e3e3e3;
	background: transparent;
	min-height: 0px !important;
}

.dropzone:hover {
	border-color: #bbb;
}

.dropzone .dz-message .dz-button {
	color: #999;
}

.dropzone .dz-message .dz-button strong {
	font-weight: 500;
	color: #000;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #000 transparent #000 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* DETAILS LIST */

.details-list .item {
	display: flex;
	align-items: center;
}

.details-list .item span {
	display: block;
	padding: 10px;
	border: 1px solid #f7f7f9;
	position: relative;
}

.actions-hidden {
	position: relative;
}

.details-list .item span a,
.actions-hidden a {
	display: none;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.details-list .item span:first-child {
	width: 40%;
	font-weight: 500;
}

.details-list .item span:last-child {
	width: 60%;
	word-break: break-all;
	background: #f7f7f9;
}

.user-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 100%;
    background-color: #00305a;
    position: relative;
}

.user-avatar > p.letters {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
}

/* BUTTONS */

.video-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.video-items .item {
	background: #fff;
	padding: 20px;
	border: 1px solid #e0e7ee;
    border-radius: 6px;
    box-shadow: 0 10px 20px 0 rgb(59 67 72 / 10%);
	text-align: center;
}

.video-items .item h3 {
	color: #000;
    font-size: 16px;
    font-weight: 600;
	margin-bottom: 15px;
}

.video-items video {
	width: 100%;
}

/* BUTTONS */

.btn-add {
	display: block;
	text-align: center;
	padding: 12px;
	font-weight: 600;
	font-size: 16px;
	border-radius: 5px;
	background: #ffe7ec;
	color: #F93822FF;
}

.btn-2 {
	display: block;
	text-align: center;
	padding: 12px;
	border-radius: 5px;
	background: #e7ecff;
	color: #626ea0;
	font-weight: 600;
}

.btn-3 {
	display: block;
	text-align: center;
	padding: 12px;
	border-radius: 5px;
	background: #e4f9e5;
	color: #59815b;
	font-weight: 600;
}

.btn-add i {
	position: relative;
	font-size: 16px;
	padding-right: 6px;
	top: 2.5px;
}

.btn-2 i,
.btn-3 i {
	position: relative;
	font-size: 16px;
	padding-right: 8px;
	top: 3px;
}

.btn-4 {
	width: 44px;
	height: 44px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	border: 2px solid #e0e7ee;
	justify-content: center;
	padding: 0;
	transition: .1s;
	margin: 0 auto;
}

.btn-4:hover {
	background: #e0e7ee;
}

.btn-5 {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: .1s;
	padding: 5px;
}

.btn-5 span.dot {
	display: block;
	width: 4.5px;
	height: 4.5px;
	border-radius: 100%;
	background: #00305a;
	margin: 0 1px;
	color: #777;
}

.btn-4 span.dot {
	display: block;
	width: 4.5px;
	height: 4.5px;
	border-radius: 100%;
	background: #00305a;
	margin: 0 1.5px;
	color: #777;
}

.btn.btn-small {
	padding: 7px;
	font-weight: 600;
	font-size: 13px;
	line-height: 13px;
}

.btn.btn-small i {
	font-size: 10px;
	padding-right: 5px;
	top: .8px;
}

.btn-inline { display: inline-block; }

.swal2-container {
	z-index: 10005 !important;
}

.swal2-styled.swal2-confirm {
	background: #F93822FF !important;
}

.swal2-title {
	color: #000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.swal2-html-container {
	font-size: 14px !important;
	line-height: 22px !important;
}

/* WINDOW */

.window {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.65);
	z-index: 10002;
	display: none;
}

.window.show {
	display: block;
	animation-name: fadeIn;
	animation-duration: .3s;
}

.window .window-body {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
	background: #fff;
	border-radius: 2px;
	padding: 30px 40px;
	display: none;
	max-height: 90%;
	max-width: 1680px;
	overflow-y: auto;
}

.window.window-50 .window-body {
	width: 50%;
}

.window.window-full .window-body {
	width: 98%;
	min-height: 98%;
	max-height: 98%;
	overflow: auto;
	height: 98%;
	padding: 20px 30px;
}

.window.show .window-body {
	display: block;
	animation-name: show-window-body;
	animation-duration: .3s;
	transform: translate(-50%, -50%);
}

@keyframes show-window-body {
	0% {
		top: 200%;
	}
	100% {
		top: 50%;
	}
}

.window .window-body .window-close {
	position: absolute;
	right: 30px;
	top: 20px;
	font-weight: 600;
	cursor: pointer;
}

.window .window-body .window-close i {
	font-size: 28px;
	color: #999;
	transition: .1s;
}

.window .window-body .window-close:hover i {
	color: #000;
}

.window .window-body h1 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #000;
	font-weight: 700;
}

.window .window-body h3 {
	font-size: 16px;
	color: #000;
	font-weight: 600;
}

.toast {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 10005;
	color: #fff;
	background: #00305a;
	width: auto;
}

.toast .toast-body {
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 500;
}

.mt0 { margin-top: 0px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.ml10 { margin-left: 10px !important; }
.mr10 { margin-right: 10px !important; }
.pt0 { padding-top: 0 !important; }
.pb0 { padding-bottom: 0 !important; }

@media (min-width: 0px) and (max-width: 768px) {
	
}

@media (min-width: 0px) and (max-width: 991px) {
	
	.auth .auth-box {
		width: 90%;
	}
	
	.auth .auth-box .box-body {
		padding: 24px;
	}
	
	.auth .auth-box .box-body h1 {
		line-height: 30px;
	}
	
	.top-bar .search {
		display: none;
	}
	
	.top-bar ul.main-menu li:first-child {
		display: none;
	}
	
	.top-bar ul.main-menu li a {
		padding: 10px 3px;
	}
	
	.top-bar ul.right-menu > li {
		margin-left: 3px;
	}
	
	.top-bar ul.right-menu > li:nth-child(2) {
		display: none;
	}
	
	.top-bar ul.right-menu > li:last-child {
		display: none;
	}
	
	.top-bar ul.right-menu li > .user-avatar {
		margin-right: 3px;
	}
	
	.top-bar ul.right-menu li.user-details a {
		display: none;
	}
	
	.top-bar ul.right-menu li .submenu {
		width: 90%;
	}
	
	main {
		margin-left: 0px;
		padding: 76px 15px;
	}

	.calendar > .item {
		width: 100%;
	}
	
	.panel-box {
		padding: 10px;
	}
	
	.sidebar {
		width: 0px;
		padding: 75px 8px;
	}
	
	.table td {
		padding: 3px 5px;
	}
	
	.panel-list-2 .item .item-content {
		padding: 5px;
	}
	
	.posts .item .post-content .user-avatar {
		width: 30px;
		height: 30px;
	}
	
	.posts .item .post-content .desc {
		padding: 10px;
	}
	
	.panel-list-2 .item .item-content .details {
		flex-wrap: wrap;
	}
	
	.panel-list-2 .item .user-avatar {
		width: 30px;
		height: 30px;
	}
	
	.panel-list-2 .item .item-content h3 a {
		font-size: 14px;
	}
	
	.user-avatar > p.letters {
		font-size: 11px;
		line-height: 11px;
	}
	
	.window.window-50 .window-body {
		width: 90%;
	}
	
	.window .window-body {
		padding: 15px;
		width: 90%;
	}
	
	.btn-1,
	.btn-2,
	.btn-3,
	.btn-4,
	.btn-add {
		padding: 5px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.m-mt50 { margin-top: 50px !important; }
	
}

@media (min-width: 991px) and (max-width: 1288px) {
	
	.top-bar ul.main-menu li a {
		padding: 0 15px;
	}
	
}