
/*
Template Name: Dashtrans Admin
Author: codervent
Email: codervent@gmail.com
File: app.css
*/

/*  
  - Google Font
  - General
  - Sidebar
  - Header
  - Metismenu
  - Extra CSS
  - Invoice Page
  - Chat box
  - Email box
  - Compose Mail
  - Navs and Tabs
  - Background Colors
  - Authentication
  - Buttons 
  - Pricing Table
  - Forms
  - Responsive
*/

@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap);

body {

	font-size: 14px;

	letter-spacing: .5px;

	font-family: Roboto, sans-serif;
	
	overflow-x:hidden

}

a {

	text-decoration: none

}

.wrapper {

	width: 100%;

	position: relative;
	
	background: linear-gradient(106.9deg, #0B1024 0.47%, #162D40 99.53%);
	background-size: 100% 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	
	min-height: 100vh;

}

/* Light theme wrapper */
body.bg-theme3 .wrapper {
	background: #FAFAFA;
}

/* Header title colors for dark theme */
.header-title {
	color: #ffffff !important;
	transition: color 0.3s ease !important;
}

/* Header title colors for light theme */
body.bg-theme3 .header-title {
	color: #353536 !important;
}

/* Theme transition animation for header title */
.header-title.theme-transition {
	transition: color 0.3s ease !important;
}

.sidebar-wrapper {

	width: 325px;

	height: 100vh;

	position: fixed;

	top: 0;

	bottom: 0;

	left: 0;

	background: #FFFFFF0D; /* темная тема */

	border-right: 1px solid rgba(255, 255, 255, 0.08);

	z-index: 11;

	box-shadow: 0 .3rem .8rem rgba(0, 0, 0, .12)!important;

	transition: all .2s ease-out

}

/* Light theme sidebar */
body.bg-theme3 .sidebar-wrapper {
	background: #1467CC1F; /* светлая тема */
	border-right: 1px solid rgba(20, 103, 204, 0.1);
}

.sidebar-header {

	width: 325px;

	height: auto;

	display: flex;

	align-items: center;

	position: relative;

	top: auto;

	bottom: auto;

	padding: 40px 40px 30px;

	z-index: 1;

	background: transparent;

	border-bottom: 0;

}

.logo-icon {

	width: 30px

}

.logo-text {

	font-size: 22px;

	margin-left: 10px;

	margin-bottom: 0;

	letter-spacing: 1px;

	color: #ffffff

}

.toggle-icon {

	font-size: 22px;

	cursor: pointer;

	color: #ffffff

}

.topbar {
    position: fixed;
    top: 0;
    left: 325px;
    height: 70px;
    z-index: 1000;
    /* прозрачный, чтобы принимать фон body */
    background: transparent;
    border-bottom: none;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    /* строго выравниваем по ширине зоны контента */
    width: calc(100% - 325px);
    pointer-events: auto;
}

/* Hard-fixed modifier to override any third-party styles */
.topbar--fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}

/* Fixed main header (used on pages with `templates/main/main_header.tpl`) */
.main-header {
    position: fixed;
    top: 0;
    left: 325px;
    right: 0;
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

/* Collapsed sidebar offset */
.wrapper.toggled .main-header {
    left: 97px;
}

/* Mobile: sidebar overlays, header should span full width */
@media screen and (max-width: 1024px) {
    .main-header {
        left: 0;
    }
}

/* Ensure page content is not hidden under fixed headers */
.page-wrapper {
    margin-top: 70px;
}

/* Also push down content in templates that use main panel/content layout */
.main-panel .content {
    margin-top: 70px;
}

/* Light theme topbar */
body.bg-theme3 .topbar {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.topbar .navbar {

	width: 100%;

	height: 70px;

	padding-left: 30px;

	padding-right: 30px;
	
	background: transparent;

}

/* Light theme navbar */
body.bg-theme3 .topbar .navbar {
    background: transparent;
    pointer-events: auto; /* вернуть события для интерактива внутри */
}

/* Специфичные стили для topbar с d-flex */
.topbar.d-flex {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Светлая тема для topbar.d-flex */
body.bg-theme3 .topbar.d-flex {
    background: transparent !important;
    border-bottom: none !important;
}

/* Мобильная адаптация для topbar.d-flex */
@media screen and (max-width: 1024px) {
	.topbar.d-flex {
		left: 0 !important;
	}
}

/* Стили для внутренних элементов topbar.d-flex */
.topbar.d-flex .navbar {
	width: 100% !important;
	height: 70px !important;
	padding-left: 30px !important;
	padding-right: 30px !important;
	background: transparent !important;
	display: flex !important;
	align-items: center !important;
}

.topbar.d-flex .navbar-expand {
	width: 100% !important;
	height: 70px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}

.topbar.d-flex .navbar-brand {
	margin: 0 !important;
	padding: 0 !important;
}

.topbar.d-flex .top-menu {
	margin-left: auto !important;
	display: flex !important;
	align-items: center !important;
}

/* Светлая тема для внутренних элементов topbar.d-flex */
body.bg-theme3 .topbar.d-flex .navbar {
	background: transparent !important;
}

body.bg-theme3 .topbar.d-flex .navbar-expand {
	background: transparent !important;
}

/* Переопределение Bootstrap классов для topbar */
.topbar.d-flex.bg-dark {
	background: rgba(255, 255, 255, 0.1) !important;
	border-bottom: 1px solid rgb(255 255 255 / 20%) !important;
}

body.bg-theme3 .topbar.d-flex.bg-dark {
	background: rgba(20, 103, 204, 0.1) !important;
	border-bottom: 1px solid rgba(20, 103, 204, 0.2) !important;
}

/* Принудительное переопределение всех возможных Bootstrap классов */
.topbar.d-flex[class*="bg-"] {
    background: transparent !important;
    border-bottom: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 325px !important;
    height: 70px !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    width: calc(100% - 325px) !important;
}

body.bg-theme3 .topbar.d-flex[class*="bg-"] {
    background: transparent !important;
    border-bottom: none !important;
}

/* Переопределение для collapsed состояния */
.wrapper.toggled .topbar.d-flex[class*="bg-"] { left: 0 !important; }

/* Мобильная адаптация */
@media screen and (max-width: 1024px) {
	.topbar.d-flex[class*="bg-"] {
		left: 0 !important;
	}
}

/* Принудительное переопределение inline стилей */
.topbar.d-flex {
	background: transparent !important;
	border-bottom: none !important;
	position: fixed !important;
	top: 0 !important;
    left: 325px !important;
	height: 70px !important;
	z-index: 1000 !important;
	display: flex !important;
	align-items: center !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
    width: calc(100% - 325px) !important;
}

/* Максимальный приоритет для всех возможных селекторов */
header .topbar.d-flex,
body .topbar.d-flex,
.wrapper .topbar.d-flex,
.topbar.d-flex[style*="position"],
.topbar.d-flex[style*="fixed"] {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	height: 70px !important;
	z-index: 1000 !important;
	display: flex !important;
	align-items: center !important;
	background: transparent !important;
	border-bottom: none !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

body.bg-theme3 .topbar.d-flex {
	background: transparent !important;
	border-bottom: none !important;
}

/* Принудительное переопределение для всех возможных комбинаций классов */
.topbar.d-flex.align-items-center {
	background: transparent !important;
	border-bottom: none !important;
	position: fixed !important;
	top: 0 !important;
    left: 325px !important;
	height: 70px !important;
	z-index: 1000 !important;
	display: flex !important;
	align-items: center !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
    width: calc(100% - 325px) !important;
}

body.bg-theme3 .topbar.d-flex.align-items-center {
	background: transparent !important;
	border-bottom: none !important;
}

/* Максимальный приоритет для светлой темы */
body.bg-theme3 header .topbar.d-flex,
body.bg-theme3 .topbar.d-flex,
body.bg-theme3 .wrapper .topbar.d-flex,
body.bg-theme3 .topbar.d-flex[style*="position"],
body.bg-theme3 .topbar.d-flex[style*="fixed"] {
	background: transparent !important;
	border-bottom: none !important;
}

.page-wrapper {

	height: calc(100vh - 70px);

	margin-top: 70px;

	margin-bottom: 0px;

	margin-left: 355px; /* 325px + 30px отступ */

	padding-bottom: 40px

}

/* Восстанавливаем отступы для правильного позиционирования */
.wrapper > .page-content {
    /* push content below fixed header */
    margin-top: 70px;
    /* align content to the right of fixed sidebar + 30px gap */
    margin-left: 355px;
}

/* When sidebar is collapsed */
.wrapper.toggled > .page-content {
    margin-left: 127px; /* 97px + 30px отступ */
}

/* Mobile: sidebar overlays content, so no left margin */
@media screen and (max-width: 1024px) {
    .wrapper > .page-content {
        margin-left: 0;
    }
}

.page-content {

	padding: 1.5rem 1.5rem 0 1.5rem

}

.page-footer {

	background: rgba(255, 255, 255, 0.05);

	position: fixed;

	bottom: 0;

	left: 325px;

	right: 0;

	text-align: center;

	padding: 7px;

	color: #fff;

	font-size: 14px;

	border-top: 1px solid rgb(255 255 255 / 15%);

	z-index: 3

}

/* Light theme footer */
body.bg-theme3 .page-footer {
	background: rgba(20, 103, 204, 0.05);
	color: #353536;
	border-top: 1px solid rgba(20, 103, 204, 0.1);
}

.wrapper.toggled .topbar {
    left: 97px !important;
    width: calc(100% - 97px) !important;
}

.wrapper.toggled .topbar.d-flex { 
    left: 97px !important; 
    width: calc(100% - 97px) !important;
}

/* Максимальная специфичность для topbar--inside-page */
.wrapper.toggled .topbar.d-flex.topbar--inside-page,
.wrapper.toggled header .topbar.d-flex.topbar--inside-page {
    left: 97px !important; 
    width: calc(100% - 97px) !important;
    padding-left: 30px !important;
}

.wrapper.toggled .page-wrapper {

	margin-left: 127px /* 97px + 30px отступ */

}

.wrapper.toggled .page-footer {

	left: 97px

}

.sidebar-wrapper ul {

	padding: 0;

	margin: 0;

	list-style: none;

	background: 0 0

}

.sidebar-wrapper .metismenu {

	background: 0 0;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	padding: 10px;

	margin-top: 0px;

	-webkit-box-orient: vertical;

	-webkit-box-direction: normal;

	-ms-flex-direction: column;

	flex-direction: column

}

.sidebar-wrapper .metismenu li+li {

	margin-top: 5px

}

.sidebar-wrapper .metismenu li:first-child {

	margin-top: 5px

}

.sidebar-wrapper .metismenu li:last-child {

	margin-bottom: 5px

}

.sidebar-wrapper .metismenu>li {

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	-webkit-box-orient: vertical;

	-webkit-box-direction: normal;

	-ms-flex-direction: column;

	flex-direction: column;

	position: relative

}

.sidebar-wrapper .metismenu a {

	position: relative;

	display: flex;

	align-items: center;

	justify-content: left;

	padding: 8px 15px;

	font-size: 15px;

	color: rgb(255 255 255 / 75%);

	outline-width: 0;

	text-overflow: ellipsis;

	overflow: hidden;

	letter-spacing: .5px;

	border: 1px solid #ffffff00;

	transition: all .3s ease-out

}

.sidebar-wrapper .metismenu a .parent-icon {

	font-size: 24px;

	line-height: 1

}

.sidebar-wrapper .metismenu a .menu-title {

	margin-left: 10px

}

.sidebar-wrapper .metismenu ul a {

	padding: 6px 15px 6px 15px;

	font-size: 15px;

	border: 0

}

.sidebar-wrapper .metismenu ul a i {

	margin-right: 10px

}

.sidebar-wrapper .metismenu ul {

	border: 1px solid rgb(255 255 255 / 12%);

	background: rgb(255 255 255 / 10%);

}

.sidebar-wrapper .metismenu ul ul a {

	padding: 8px 15px 8px 30px

}

.sidebar-wrapper .metismenu ul ul ul a {

	padding: 8px 15px 8px 45px

}

.sidebar-wrapper .metismenu .mm-active>a,

.sidebar-wrapper .metismenu a:active,

.sidebar-wrapper .metismenu a:focus,

.sidebar-wrapper .metismenu a:hover {

	color: #ffffff;

	text-decoration: none;

	background: rgb(255 255 255 / 15%);

}

/* Стили для активных элементов в светлой теме */
body.bg-theme3 .sidebar-wrapper .metismenu .mm-active>a {
	background: #1467CC !important;
	color: #F0F1F4 !important;
}

/* Иконки в активных элементах меню - светлая тема */
body.bg-theme3 .sidebar-wrapper .metismenu .mm-active>a .parent-icon {
	color: #F0F1F4 !important;
}

body.bg-theme3 .sidebar-wrapper .metismenu .mm-active>a .parent-icon i {
	color: #F0F1F4 !important;
}

/* Заголовки в активных элементах меню - светлая тема */
body.bg-theme3 .sidebar-wrapper .metismenu .mm-active>a .menu-title {
	color: #F0F1F4 !important;
}

/* Подменю в светлой теме - активные элементы */
body.bg-theme3 .sidebar-wrapper .metismenu ul .mm-active>a {
	background: #1467CC !important;
	color: #F0F1F4 !important;
}

body.bg-theme3 .sidebar-wrapper .metismenu ul .mm-active>a i {
	color: #F0F1F4 !important;
}

/* Стрелки в активных элементах - светлая тема */
body.bg-theme3 .sidebar-wrapper .metismenu .mm-active>a.has-arrow:after {
	border-color: #F0F1F4 !important;
}

/* Активные элементы в свернутом состоянии - темная тема */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .mm-active>a {
	background: #1467CC !important;
	color: #F0F1F4 !important;
	border: 1px solid #1467CC !important;
}

.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .mm-active>a .parent-icon {
	color: #F0F1F4 !important;
}

.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .mm-active>a .parent-icon i {
	color: #F0F1F4 !important;
}

/* Активные элементы в свернутом состоянии - светлая тема */
body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .mm-active>a {
	background: #1467CC !important;
	color: #F0F1F4 !important;
	border: 1px solid #1467CC !important;
}

body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .mm-active>a .parent-icon {
	color: #F0F1F4 !important;
}

body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .mm-active>a .parent-icon i {
	color: #F0F1F4 !important;
}

.menu-label {

	padding: 20px 15px 5px 5px;

	color: #b0afaf;

	text-transform: uppercase;

	font-size: 12px;

	letter-spacing: .5px

}

.metismenu .has-arrow:after {

	position: absolute;

	content: "";

	width: .5em;

	height: .5em;

	border-style: solid;

	border-width: 1.2px 0 0 1.2px;

	border-color: initial;

	right: 15px;

	transform: rotate(-45deg) translateY(-50%);

	transform-origin: top;

	top: 50%;

	transition: all .3s ease-out

}

@media screen and (min-width: 1025px) {

	.wrapper.toggled.sidebar-hovered .sidebar-wrapper {

		background-color: #171717;

	}

	.wrapper.toggled.sidebar-hovered .sidebar-header {

		background-color: #171717;

		border-bottom: 1px solid rgba(255, 255, 255, 0.12);

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .logo-text {

		display: none

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper {

		width: 97px;
		left: 0;
		top: 0;
		height: 100vh;

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {

		width: 97px

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .toggle-icon {

		display: none

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {

		justify-content: center

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {

		width: 97px

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {

		justify-content: center

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .menu-title {

		display: none

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li ul {

		display: none

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu li.menu-label {

		display: none

	}

	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .has-arrow:after {

		display: none

	}

	.email-toggle-btn {

		display: none!important

	}

	.chat-toggle-btn {

		display: none!important

	}

}

.product-show {

	font-size: 18px;

	left: 15px

}

.product-discount {

	width: 2.5rem;

	height: 2.5rem;

	font-size: 14px;

	background-color: rgb(255 255 255 / 15%);

	color: #fff;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 50%

}

.color-indigator-item {

	width: 1.2rem;

	height: 1.2rem;

	background-color: #e6e0e0;

	border-radius: 50%;

	cursor: pointer

}

.product-grid .card {

	-webkit-transition: all .2s;

	-o-transition: all .2s;

	transition: all .2s

}

@media (min-width: 992px) {

	.product-grid .card:hover {

		margin-top: -.25rem;

		margin-bottom: .25rem;

		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3);

		box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3)

	}

}

.back-to-top {

	display: none;

	width: 40px;

	height: 40px;

	line-height: 40px;

	text-align: center;

	font-size: 26px;

	color: #fff;

	position: fixed;

	border-radius: 10px;

	bottom: 20px;

	right: 12px;

	background-color: rgb(255 255 255 / 25%);

	z-index: 5

}

.back-to-top:hover {

	color: #fff;

	background-color: #000;

	transition: all .5s

}

.breadcrumb-title {

	font-size: 20px;

	border-right: 1.5px solid rgb(255 255 255 / 34%);

}

.page-breadcrumb .breadcrumb li.breadcrumb-item {

	font-size: 16px

}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {

	display: inline-block;

	padding-right: .5rem;

	color: #ffffff;

	font-family: LineIcons;

	content: "\ea5c"

}

.icon-badge {

	width: 45px;

	height: 45px;

	background: #f2f2f2;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 50%

}

.widgets-icons {

	width: 50px;

	height: 50px;

	display: flex;

	align-items: center;

	justify-content: center;

	color: #fff;

	background-color: rgb(255 255 255 / 15%);

	font-size: 26px;

	border-radius: 10px

}

#geographic-map {

	width: 100%;

	height: 440px

}

.product-img {

	width: 60px;

	height: 60px;

	background-color: rgb(255 255 255 / 0%);

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 10px;

	border: 1px solid rgb(255 255 255 / 15%);

}

.product-img img {

	width: 60px;

	height: 60px;

	padding: 6px

}

.product-list {

	position: relative;

	height: 380px

}

.dashboard-top-countries {

	position: relative;

	height: 360px

}

.customers-list {

	position: relative;

	height: 450px

}

.product-list .row {

	background-color: rgb(255 255 255 / 14%);

	-webkit-transition: all .2s;

	-o-transition: all .2s;

	transition: all .2s

}

@media (min-width: 992px) {

	.product-list .row:hover {

		background-color: rgb(255 255 255 / 25%);

		margin-top: -.25rem;

		margin-bottom: .25rem;

		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .2);

		box-shadow: 0 .25rem .5rem 0 rgba(0, 0, 0, .2)

	}

}

.recent-product-img {

	width: 40px;

	height: 40px;

	background-color: rgb(255 255 255 / 15%);

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 10px;

	border: 1px solid rgb(255 255 255 / 15%);

}

.recent-product-img img {

	width: 40px;

	height: 40px;

	padding: 6px

}

.theme-icons {

	background-color: rgba(255, 255, 255, 0.05);

}

.lead-table .table {

	border-collapse: separate;

	border-spacing: 0 10px

}

.fm-menu .list-group a {

	font-size: 16px;

	color: #fff;

	display: flex;

	align-items: center

}

.fm-menu .list-group a i {

	font-size: 23px

}

.fm-menu .list-group a:hover {

	background: #0d6efd;

	color: #fff;

	transition: all .2s ease-out

}

.fm-file-box {

	font-size: 25px;

	background: #e9ecef;

	width: 44px;

	height: 44px;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: .25rem

}

.fm-icon-box {

	font-size: 32px;

	background: rgb(255 255 255 / 15%);

	color: #fff;

	width: 52px;

	height: 52px;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: .25rem

}

.user-plus {

	width: 33px;

	height: 33px;

	margin-left: -14px;

	line-height: 33px;

	background: #fff;

	border-radius: 50%;

	text-align: center;

	font-size: 22px;

	cursor: pointer;

	border: 1px dotted #a9b2bb;

	color: #404142

}

.user-groups img {

	margin-left: -14px;

	border: 1px solid #e4e4e4;

	padding: 2px;

	cursor: pointer

}

.contacts-social a {

	font-size: 16px;

	width: 36px;

	height: 36px;

	line-height: 36px;

	background: #fff;

	border: 1px solid #eeecec;

	text-align: center;

	border-radius: 50%;

	color: #2b2a2a

}

.customers-contacts a {

	font-size: 16px;

	width: 34px;

	height: 34px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgb(255 255 255 / 15%);

	border: 1px solid rgb(255 255 255 / 15%);

	text-align: center;

	border-radius: 50%;

	color: #ffffff;

}

.order-actions a {

	font-size: 18px;

	width: 34px;

	height: 34px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgb(255 255 255 / 15%);

	border: 1px solid rgb(255 255 255 / 15%);

	text-align: center;

	border-radius: 20%;

	color: #ffffff

}

.customers-list .customers-list-item {

	-webkit-transition: all .2s;

	-o-transition: all .2s;

	transition: all .2s

}

@media (min-width: 992px) {

	.customers-list .customers-list-item:hover {

		background-color: rgb(255 255 255 / 15%);

		border-radius: 10px;

		margin-top: -.25rem;

		margin-bottom: .25rem;

		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .2);

		box-shadow: 0 .25rem .5rem 0 rgba(0, 0, 0, .2)

	}

}

.right-15 {

	right: 15px!important

}

.font-13 {

	font-size: 13px

}

.font-14 {

	font-size: 14px

}

.font-18 {

	font-size: 18px

}

.font-20 {

	font-size: 20px

}

.font-22 {

	font-size: 22px

}

.font-24 {

	font-size: 24px

}

.font-30 {

	font-size: 30px

}

.font-35 {

	font-size: 35px

}

.font-50 {

	font-size: 50px

}

.font-60 {

	font-size: 60px

}

.radius-30 {

	border-radius: 30px

}

.radius-10 {

	border-radius: 10px

}

.radius-15 {

	border-radius: 15px

}

.cursor-pointer {

	cursor: pointer

}

.chip {

	display: inline-block;

	height: 32px;

	padding: 0 12px;

	margin-right: 1rem;

	margin-bottom: 1rem;

	font-size: 14px;

	font-weight: 500;

	line-height: 32px;

	color: rgba(0, 0, 0, .7);

	cursor: pointer;

	background-color: #f1f1f1;

	border: 1px solid rgba(0, 0, 0, .15);

	border-radius: 16px;

	-webkit-transition: all .3s linear;

	transition: all .3s linear;

	box-shadow: none

}

.chip img {

	float: left;

	width: 32px;

	height: 32px;

	margin: 0 8px 0 -12px;

	border-radius: 50%

}

.chip .closebtn {

	padding-left: 10px;

	font-weight: 700;

	float: right;

	font-size: 16px;

	cursor: pointer

}

.chip.chip-md {

	height: 42px;

	line-height: 42px;

	border-radius: 21px

}

.chip.chip-md img {

	height: 42px;

	width: 42px

}

#invoice {

	padding: 0

}

.invoice {

	position: relative;

	background-color: rgb(255 255 255 / 12%);

	min-height: 680px;

	padding: 15px

}

.invoice header {

	padding: 10px 0;

	margin-bottom: 20px;

	border-bottom: 1px solid rgb(255 255 255 / 12%);

}

.invoice .company-details {

	text-align: right

}

.invoice .company-details .name {

	margin-top: 0;

	margin-bottom: 0

}

.invoice .contacts {

	margin-bottom: 20px

}

.invoice .invoice-to {

	text-align: left

}

.invoice .invoice-to .to {

	margin-top: 0;

	margin-bottom: 0

}

.invoice .invoice-details {

	text-align: right

}

.invoice .invoice-details .invoice-id {

	margin-top: 0;

	color: #ffffff

}

.invoice main {

	padding-bottom: 50px

}

.invoice main .thanks {

	margin-top: -100px;

	font-size: 2em;

	margin-bottom: 50px

}

.invoice main .notices {

	padding-left: 6px;

	border-left: 6px solid #ffffff;

	background: rgb(255 255 255 / 15%);

	padding: 10px;

	color: #fff;

}

.invoice main .notices .notice {

	font-size: 1.2em

}

.invoice table {

	width: 100%;

	border-collapse: collapse;

	border-spacing: 0;

	margin-bottom: 20px

}

.invoice table td,

.invoice table th {

	padding: 15px;

	background: rgba(255, 255, 255, 0.05);

	border-bottom: 1px solid rgb(255 255 255 / 15%);

}

.invoice table th {

	white-space: nowrap;

	font-weight: 400;

	font-size: 16px

}

.invoice table td h3 {

	margin: 0;

	font-weight: 400;

	color: #ffffff;

	font-size: 1.2em

}

.invoice table .qty,

.invoice table .total,

.invoice table .unit {

	text-align: right;

	font-size: 1.2em

}

.invoice table .no {

	color: #fff;

	font-size: 1.6em;

	background: rgb(255 255 255 / 15%);

}

.invoice table .unit {

	background: rgb(255 255 255 / 15%);

}

.invoice table .total {

	background: rgb(255 255 255 / 15%);

	color: #fff

}

.invoice table tbody tr:last-child td {

	border: none

}

.invoice table tfoot td {

	background: 0 0;

	border-bottom: none;

	white-space: nowrap;

	text-align: right;

	padding: 10px 20px;

	font-size: 1.2em;

	border-top: 1px solid #aaa

}

.invoice table tfoot tr:first-child td {

	border-top: none

}

.invoice table tfoot tr:last-child td {

	color: #ffffff;

	font-size: 1.4em;

	border-top: 1px solid rgb(255 255 255 / 15%);

}

.invoice table tfoot tr td:first-child {

	border: none

}

.invoice footer {

	width: 100%;

	text-align: center;

	color: #fff;

	border-top: 1px solid rgb(255 255 255 / 15%);

	padding: 8px 0

}

@media print {

	.invoice {

		font-size: 11px!important;

		overflow: hidden!important

	}

	.invoice footer {

		position: absolute;

		bottom: 10px;

		page-break-after: always

	}

	.invoice>div:last-child {

		page-break-before: always

	}

}

.main-row {

	height: 100vh

}

.main-col {

	max-width: 500px;

	min-height: 300px

}

.todo-done {

	text-decoration: line-through

}

/*Chat box*/

.chat-wrapper {

	width: auto;

	height: 600px;

	border-radius: 0.25rem;

	position: relative;

	background: rgba(255, 255, 255, 0.05);

	box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, .10);

}

.chat-sidebar {

	width: 340px;

	height: 100%;

	position: absolute;

	background: rgba(255, 255, 255, 0.05);

	left: 0;

	top: 0;

	bottom: 0;

	z-index: 2;

	overflow: hidden;

	border-right: 1px solid rgb(255 255 255 / 15%);

	border-top-left-radius: 0.25rem;

	border-bottom-left-radius: 0.25rem;

}

.chat-sidebar-header {

	width: auto;

	height: auto;

	position: relative;

	background: rgb(255 255 255 / 0%);

	border-bottom: 1px solid rgb(255 255 255 / 13%);

	border-right: 0px solid rgba(0, 0, 0, .125);

	border-top-left-radius: 0.25rem;

	padding: 15px;

}

.chat-sidebar-content {

	padding: 0px;

}

.chat-user-online {

	position: relative;

}

.chat-sidebar-header .chat-user-online:before {

	content: '';

	position: absolute;

	bottom: 7px;

	left: 40px;

	width: 8px;

	height: 8px;

	border-radius: 50%;

	box-shadow: 0 0 0 2px #fff;

	background: #16e15e;

}

.chat-list .chat-user-online:before {

	content: '';

	position: absolute;

	bottom: 7px;

	left: 36px;

	width: 8px;

	height: 8px;

	border-radius: 50%;

	box-shadow: 0 0 0 2px #fff;

	background: #16e15e;

}

.chat-content {

	margin-left: 340px;

	padding: 15px 15px 15px 15px;

}

.chat-header {

	position: absolute;

	height: 70px;

	left: 340px;

	right: 0;

	top: 0;

	padding: 15px;

	background: rgba(255, 255, 255, 0.05);

	border-bottom: 1px solid rgb(255 255 255 / 0.14);

	border-top-right-radius: 0.25rem;

	z-index: 1;

}

.chat-footer {

	position: absolute;

	height: 70px;

	left: 340px;

	right: 0;

	bottom: 0;

	padding: 15px;

	background: rgba(255, 255, 255, 0.05);

	border-top: 1px solid rgb(255 255 255 / 0.14);

	border-bottom-right-radius: 0.25rem;

}

.chat-footer-menu a {

	display: inline-block;

	width: 40px;

	height: 40px;

	line-height: 40px;

	font-size: 18px;

	color: #ffffff;

	text-align: center;

	border-radius: 50%;

	margin: 3px;

	background-color: rgb(255 255 255 / 14%);

	border: 1px solid rgb(255 255 255 / 20%);

}

.chat-tab-menu li a.nav-link {

	padding: .3rem 0.2rem;

	line-height: 1.2;

	color: rgb(255 255 255 / 63%);

}

.chat-tab-menu .nav-pills .nav-link.active,

.chat-tab-menu .nav-pills .show>.nav-link {

	color: #ffffff;

	background-color: rgb(255 255 255 / 0%);

}

.chat-title {

	font-size: 16px;

	color: rgb(255 255 255);

}

.chat-msg {

	font-size: 14px;

	color: rgb(255 255 255 / 63%);

}

.chat-time {

	font-size: 13px;

	color: #fff;

}

.chat-list {

	position: relative;

	height: 300px;

}

.chat-list .list-group-item {

	border: 1px solid rgb(0 0 0 / 0%);

	background-color: transparent;

}

.chat-list .list-group-item:hover {

	border: 1px solid rgb(0 0 0 / 0%);

	background-color: rgb(255 255 255 / 15%);

}

.chat-list .list-group-item.active {

	background-color: rgb(255 255 255 / 15%);

}

.chart-online {

	color: #16e15e;

}

.chat-top-header-menu a {

	display: inline-block;

	width: 40px;

	height: 40px;

	line-height: 40px;

	font-size: 18px;

	color: #ffffff;

	text-align: center;

	border-radius: 50%;

	margin: 3px;

	background-color: rgb(255 255 255 / 14%);

	border: 1px solid rgb(255 255 255 / 20%);

}

.chat-content {

	position: relative;

	width: auto;

	height: 450px;

	top: 70px;

}

.chat-content-leftside .chat-left-msg {

	width: fit-content;

	background-color: rgba(255, 255, 255, 0.05);

	color: white;

	padding: 0.80rem;

	border-radius: 12px;

	max-width: 480px;

	text-align: left;

	border-top-left-radius: 0;

}

.chat-content-rightside .chat-right-msg {

	width: fit-content;

	background-color: rgb(255 255 255 / 22%);

	color: white;

	padding: 0.80rem;

	border-radius: 12px;

	float: right;

	max-width: 480px;

	text-align: left;

	border-bottom-right-radius: 0;

}

.chat-toggle-btn {

	width: 40px;

	height: 40px;

	line-height: 40px;

	margin-right: 15px;

	text-align: center;

	font-size: 24px;

	color: #ffffff;

	border-radius: 50%;

	cursor: pointer;

	background-color: rgb(255 255 255 / 21%);

	border: 1px solid rgb(255 255 255 / 23%);

}

/*Email box*/

.email-wrapper {

	width: auto;

	height: 600px;

	overflow: hidden;

	border-radius: 0.25rem;

	position: relative;

	background: rgba(255, 255, 255, 0.05);

	box-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, .10);

}

.email-sidebar {

	width: 250px;

	height: 100%;

	position: absolute;

	background: #fff0;

	left: 0;

	top: 0;

	bottom: 0;

	z-index: 2;

	overflow: hidden;

	border-right: 1px solid rgb(255 255 255 / 14%);

	border-top-left-radius: 0.25rem;

	border-bottom-left-radius: 0.25rem;

}

.email-sidebar-header {

	width: auto;

	height: auto;

	position: relative;

	background: #ffffff00;

	border-bottom: 1px solid rgb(255 255 255 / 13%);

	border-right: 0px solid rgb(0 0 0 / 18%);

	border-top-left-radius: 0.25rem;

	padding: 15px;

}

.email-navigation {

	position: relative;

	padding: 0px;

	height: 330px;

	border-bottom: 1px solid rgb(255 255 255 / 13%);

}

.email-header {

	position: absolute;

	height: 70px;

	left: 250px;

	right: 0;

	top: 0;

	padding: 15px;

	background: rgba(255, 255, 255, 0.05);

	border-bottom: 1px solid rgb(255 255 255 / 14%);

	border-top-right-radius: 0.25rem;

	z-index: 1;

}

.email-content {

	position: absolute;

	left: 0;

	right: 0;

	width: auto;

	top: 70px;

	height: auto;

	margin-left: 250px;

	padding: 0;

	background: rgb(0 0 0 / 0%);

	border-top-left-radius: 0.25rem;

	border-top-right-radius: 0.25rem;

}

/* Light theme email content */
body.bg-theme3 .email-content {
	background: rgba(255, 255, 255, 0.05);
}

.email-navigation a.list-group-item {

	color: #e4e8ec;

	padding: .35rem 1.25rem;

	background-color: #ffffff00;

	border-bottom: 1px solid rgb(0 0 0 / 0%);

	transition: all .3s ease-out;

}

.email-navigation a.list-group-item:hover {

	color: #ffffff;

	background-color: rgb(255 255 255 / 22%);

}

.email-navigation a.list-group-item.active {

	color: #ffffff;

	font-weight: 600;

	background-color: rgb(255 255 255 / 22%);

}

.email-meeting {

	position: absolute;

	left: 0;

	right: 0;

	bottom: 0;

}

.email-meeting a.list-group-item {

	color: #e4e8ec;

	padding: .35rem 1.25rem;

	background-color: transparent;

	border-bottom: 1px solid rgb(0 0 0 / 0%);

}

.email-meeting a.list-group-item:hover {

	color: #ffffff;

	background-color: rgb(255 255 255 / 22%);

	transition: all .3s ease-out;

}

.email-hangout .chat-user-online:before {

	content: '';

	position: absolute;

	bottom: 7px;

	left: 37px;

	width: 8px;

	height: 8px;

	border-radius: 50%;

	box-shadow: 0 0 0 2px #fff;

	background: #16e15e;

}

.email-toggle-btn {

	width: auto;

	height: auto;

	margin-right: 10px;

	text-align: center;

	font-size: 24px;

	color: #fff;

	border-radius: 0;

	cursor: pointer;

	background-color: transparent;

	border: 0px solid rgb(0 0 0 / 15%);

}

.email-actions {

	width: 230px;

}

.email-time {

	font-size: 13px;

	color: #ffffff;

}

.email-list div.email-message {

	background: transparent;

	border-bottom: 1px solid rgb(255 255 255 / 12%);

	color: #e4e8ec;

}

.email-list div.email-message:hover {

	transition: all .2s ease-out;

	background-color: rgb(255 255 255 / 14%);

}

.email-list {

	position: relative;

	height: 530px;

}

.email-star {

	color: #ffffff;

}

.email-read-box {

	position: relative;

	height: 530px;

}

/*Compose Mail*/

.compose-mail-popup {

	width: 42%;

	position: fixed;

	bottom: -30px;

	right: 30px;

	z-index: 15;

	display: none;

	background: #2e3338;

}

.compose-mail-toggled {

	display: block;

}

.compose-mail-title {

	font-size: 16px;

}

.compose-mail-close {

	width: 25px;

	height: 25px;

	line-height: 25px;

	text-align: center;

	font-size: 14px;

	border-radius: 2px;

	background-color: rgb(255 255 255 / 0%);

}

.compose-mail-close:hover {

	background-color: rgb(255 255 255 / 20%);

}

.nav-primary.nav-tabs .nav-link.active {

	color: #0d6efd;

	border-color: #0d6efd #0d6efd #fff

}

.nav-danger.nav-tabs .nav-link.active {

	color: #f41127;

	border-color: #f41127 #f41127 #fff

}

.nav-success.nav-tabs .nav-link.active {

	color: #17a00e;

	border-color: #17a00e #17a00e #fff

}

.nav-warning.nav-tabs .nav-link.active {

	color: #ffc107;

	border-color: #ffc107 #ffc107 #fff

}

.nav-pills-danger.nav-pills .nav-link.active {

	color: #fff;

	background-color: #f41127

}

.nav-pills-success.nav-pills .nav-link.active {

	color: #fff;

	background-color: #17a00e

}

.nav-pills-warning.nav-pills .nav-link.active {

	color: #000;

	background-color: #ffc107

}

.nav-search input.form-control {

	background-color: rgb(255 255 255 / 20%);

	border: 1px solid rgb(255 255 255 / 45%);

	color: #fff

}

.nav-search button[type=submit] {

	background-color: rgb(255 255 255 / 20%);

	border: 1px solid rgb(255 255 255 / 32%);

	color: #fff

}

.nav-search input.form-control::placeholder {

	opacity: .5!important;

	color: #fff!important

}

.nav-search input.form-control::-ms-input-placeholder {

	color: #fff!important

}

.round-pagination.pagination .page-item:first-child .page-link {

	border-top-left-radius: 30px;

	border-bottom-left-radius: 30px

}

.round-pagination.pagination .page-item:last-child .page-link {

	border-top-right-radius: 30px;

	border-bottom-right-radius: 30px

}

.bg-light-primary {

	background-color: rgb(13 110 253 / .11)!important

}

.bg-light-success {

	background-color: rgb(23 160 14 / .11)!important

}

.bg-light-danger {

	background-color: rgb(244 17 39 / .11)!important

}

.bg-light-warning {

	background-color: rgb(255 193 7 / .11)!important

}

.bg-light-info {

	background-color: rgb(13 202 240 / 18%)!important

}

.bg-light-white-2 {

	background-color: rgba(255, 255, 255, 0.70)!important

}

.bg-light-white-3 {

	background-color: rgba(255, 255, 255, 0.55)!important

}

.bg-light-white-4 {

	background-color: rgba(255, 255, 255, 0.25)!important

}

.bg-gradient-cosmic {

	background: linear-gradient(to right, #8e2de2, #4a00e0)!important

}

.bg-gradient-burning {

	background: linear-gradient(to right, #ff416c, #ff4b2b)!important

}

.bg-gradient-lush {

	background: linear-gradient(to right, #56ab2f, #a8e063)!important

}

.bg-gradient-kyoto {

	background: linear-gradient(to right, #f7971e, #ffd200)!important

}

.bg-gradient-blues {

	background: linear-gradient(to right, #56ccf2, #2f80ed)!important

}

.bg-gradient-moonlit {

	background: linear-gradient(to right, #0f2027, #203a43, #2c5364)!important

}

.split-bg-primary {

	background-color: #0c62e0;

	border-color: #0c62e0

}

.split-bg-secondary {

	background-color: #515a62;

	border-color: #515a62

}

.split-bg-success {

	background-color: #128e0a;

	border-color: #128e0a

}

.split-bg-info {

	background-color: #0bb2d3;

	border-color: #0bb2d3

}

.split-bg-warning {

	background-color: #e4ad07;

	border-color: #e4ad07

}

.split-bg-danger {

	background-color: #e20e22;

	border-color: #e20e22

}

.bg-facebook {

	background-color: #3b5998!important

}

.bg-twitter {

	background-color: #55acee!important

}

.bg-google {

	background-color: #e52d27!important

}

.bg-linkedin {

	background-color: #0976b4!important

}

body.bg-theme2 {

	background-image: url(../images/bg-themes/2.png);

}

.bg-theme {

	background-size: 100% 100%;

	background-attachment: fixed;

	background-position: center;

	background-repeat: no-repeat;

	transition: background .3s;

}

.section-authentication-signin {

	height: 100vh

}

.authentication-forgot {

	height: 100vh;

	padding: 0 1rem

}

.authentication-reset-password {

	height: 100vh;

	padding: 0 1rem

}

.authentication-lock-screen {

	height: 100vh;

	padding: 0 1rem

}

.error-404 {

	height: 100vh;

	padding: 0 1rem

}

.error-social a {

	display: inline-block;

	width: 40px;

	height: 40px;

	line-height: 40px;

	font-size: 18px;

	color: #fff;

	text-align: center;

	border-radius: 50%;

	margin: 5px;

	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important

}

.bg-login {

	background-image: url(../images/login-images/bg-login-img.jpg);

	background-size: cover;

	background-position: center;

	background-repeat: no-repeat;

	background-attachment: fixed

}

.bg-forgot {

	background-image: url(../images/login-images/bg-forgot-password.jpg);

	background-size: cover;

	background-position: center;

	background-repeat: no-repeat;

	background-attachment: fixed

}

.bg-lock-screen {

	background-image: url(../images/login-images/bg-lock-screen.jpg);

	background-size: cover;

	background-position: center;

	background-repeat: no-repeat;

	background-attachment: fixed

}

.login-separater span {

	position: relative;

	top: 26px;

	margin-top: -10px;

	background: rgba(255, 255, 255, 0.05);

	padding: 5px;

	font-size: 12px;

	color: #ffffff;

	z-index: 1;

	border-radius: 4px;

}

.btn i {

	vertical-align: middle;

	font-size: 1.3rem;

	margin-top: -1em;

	margin-bottom: -1em;

	margin-right: 5px

}

.btn-facebook {

	box-shadow: 0 2px 2px 0 rgba(59, 89, 152, .14), 0 3px 1px -2px rgba(59, 89, 152, .2), 0 1px 5px 0 rgba(59, 89, 152, .12);

	background-color: #3b5998;

	border-color: #3b5998;

	color: #fff

}

.btn-facebook:hover {

	color: #fff

}

.btn-white {

	background-color: #fff;

	border-color: #e7eaf3

}

.chart-container1 {

	position: relative;

	height: 340px

}

.gmaps,

.gmaps-panaroma {

	height: 400px;

	background: #eee;

	border-radius: 3px

}

.pricing-table .card {

	-webkit-transition: all .2s;

	-o-transition: all .2s;

	transition: all .2s;

	-webkit-border-radius: 15px;

	border-radius: 15px

}

.pricing-table .card .card-header {

	border-top-left-radius: 15px;

	border-top-right-radius: 15px

}

@media (min-width: 992px) {

	.pricing-table .card:hover {

		margin-top: -.25rem;

		margin-bottom: .25rem;

		-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3);

		box-shadow: 0 .5rem 1rem 0 rgba(0, 0, 0, .3)

	}

}

.pricing-table .card .card-title {

	font-size: 1rem;

	letter-spacing: .2rem;

	font-weight: 500

}

.pricing-table .card .card-price {

	font-size: 2.7rem

}

.pricing-table .card .card-price .term {

	font-size: .875rem

}

.pricing-table .card ul li.list-group-item {

	border-bottom: 1px solid rgb(255 255 255 / 15%);

	color: rgb(255 255 255 / 85%);

	font-size: 16px

}

input::placeholder {

	color: #fff!important;

	opacity: .3!important

}

.card-group {

	margin-bottom: 1.5rem

}

.search-bar-box {

	width: 75%

}

.search-control {

	background-color: rgba(255, 255, 255, 0.05);

	border: 1px solid rgb(255 255 255 / 15%);

	padding-right: 2.5rem

}

.search-control:focus {

	background-color: rgba(255, 255, 255, 0.05);

	border: 1px solid rgb(255 255 255 / 15%);

	padding-right: 2.5rem

}

.search-show {

	font-size: 18px;

	right: 15px;

	color: #ffffff;

}

.search-close {

	font-size: 18px;

	right: 15px;

	cursor: pointer;

	display: none

}

.topbar .navbar .navbar-nav .nav-link {

	padding-right: .8rem;

	padding-left: .8rem;

	color: #ffffff;

	font-size: 22px

}

/* Dark theme nav-link dropdown-toggle styles */
.nav-link.dropdown-toggle.dropdown-toggle-nocaret {
	background: rgba(255, 255, 255, 0.05) !important;
	border-radius: 15px !important;
	padding: 8px 12px !important;
	transition: all 0.3s ease !important;
}

.nav-link.dropdown-toggle.dropdown-toggle-nocaret:hover {
	background: rgba(255, 255, 255, 0.1) !important;
}

/* Light theme nav links */
body.bg-theme3 .topbar .navbar .navbar-nav .nav-link {
	color: #353536;
}

/* Light theme nav-link dropdown-toggle styles */
body.bg-theme3 .nav-link.dropdown-toggle.dropdown-toggle-nocaret {
	background: rgba(20, 103, 204, 0.08) !important;
	border-radius: 15px !important;
	padding: 8px 12px !important;
	transition: all 0.3s ease !important;
}

body.bg-theme3 .nav-link.dropdown-toggle.dropdown-toggle-nocaret:hover {
	background: rgba(20, 103, 204, 0.15) !important;
}

/* Более специфичный селектор для элемента с d-flex */
.d-flex.align-items-center.nav-link.dropdown-toggle.dropdown-toggle-nocaret {
	background: rgba(255, 255, 255, 0.05) !important;
	border-radius: 15px !important;
	padding: 8px 12px !important;
	transition: all 0.3s ease !important;
}

.d-flex.align-items-center.nav-link.dropdown-toggle.dropdown-toggle-nocaret:hover {
	background: rgba(255, 255, 255, 0.1) !important;
}

/* Светлая тема для элемента с d-flex */
body.bg-theme3 .d-flex.align-items-center.nav-link.dropdown-toggle.dropdown-toggle-nocaret {
	background: rgba(20, 103, 204, 0.08) !important;
	border-radius: 15px !important;
	padding: 8px 12px !important;
	transition: all 0.3s ease !important;
}

body.bg-theme3 .d-flex.align-items-center.nav-link.dropdown-toggle.dropdown-toggle-nocaret:hover {
	background: rgba(20, 103, 204, 0.15) !important;
}

.dropdown-toggle-nocaret:after {

	display: none

}

.alert-count {

	position: absolute;

	top: 5px;

	left: 22px;

	width: 18px;

	height: 18px;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 50%;

	font-size: 12px;

	font-weight: 500;

	color: #fff;

	background: #f62718

}

.user-img {

	width: 42px;

	height: 42px;

	border-radius: 50%;

	border: 0 solid #e5e5e5;

	padding: 0

}

.user-info .user-name {

	font-size: 15px;

	font-weight: 500;

	color: #fff

}

/* Light theme text colors */
body.bg-theme3 .user-info .user-name {
	color: #353536;
}

body.bg-theme3 .user-info .designattion {
	color: rgba(53, 53, 54, 0.6);
}

/* Dark theme dropdown menu */
.dropdown-menu {
	background: #101F32 !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
}

.dropdown-item {
	color: #ffffff !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
}

.dropdown-item i {
	color: #ffffff !important;
}

/* Light theme dropdown menu */
body.bg-theme3 .dropdown-menu {
	background: #FAFAFA !important;
	border: 1px solid rgba(20, 103, 204, 0.1) !important;
	color: #353536 !important;
}

body.bg-theme3 .dropdown-item {
	color: #353536 !important;
}

body.bg-theme3 .dropdown-item:hover,
body.bg-theme3 .dropdown-item:focus {
	background: rgba(20, 103, 204, 0.1) !important;
	color: #353536 !important;
}

body.bg-theme3 .dropdown-item i {
	color: #353536 !important;
}

/* Light theme button */
body.bg-theme3 #theme-toggle {
	background: rgba(20, 103, 204, 0.1);
	border: 1px solid rgba(20, 103, 204, 0.2);
	color: #353536;
}

body.bg-theme3 #theme-toggle:hover {
	background: rgba(20, 103, 204, 0.2);
	border: 1px solid rgba(20, 103, 204, 0.3);
}

body.bg-theme3 .theme-label {
	color: #353536;
}

/* Dark theme dropdown arrow */
.topbar .navbar .dropdown-menu::after {
	background: #101F32 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.topbar .navbar .dropdown-large .dropdown-menu::after {
	background: #101F32 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Light theme dropdown arrow */
body.bg-theme3 .topbar .navbar .dropdown-menu::after {
	background: #FAFAFA !important;
	border-top: 1px solid rgba(20, 103, 204, 0.1) !important;
	border-left: 1px solid rgba(20, 103, 204, 0.1) !important;
}

body.bg-theme3 .topbar .navbar .dropdown-large .dropdown-menu::after {
	background: #FAFAFA !important;
	border-top: 1px solid rgba(20, 103, 204, 0.1) !important;
	border-left: 1px solid rgba(20, 103, 204, 0.1) !important;
}

/* Dark theme dropdown-large styles */
.dropdown-large .dropdown-menu {
	background: #101F32 !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dropdown-large .msg-header {
	background: #101F32 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dropdown-large .msg-footer {
	background: #101F32 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dropdown-large .msg-name {
	color: #ffffff !important;
}

.dropdown-large .msg-info {
	color: rgba(255, 255, 255, 0.7) !important;
}

.dropdown-large .msg-time {
	color: rgba(255, 255, 255, 0.7) !important;
}

.dropdown-large .msg-header .msg-header-title {
	color: #ffffff !important;
}

.dropdown-large .msg-header .msg-header-clear {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* Light theme dropdown-large styles */
body.bg-theme3 .dropdown-large .dropdown-menu {
	background: #FAFAFA !important;
	border: 1px solid rgba(20, 103, 204, 0.1) !important;
}

body.bg-theme3 .dropdown-large .msg-header {
	background: #FAFAFA !important;
	border-bottom: 1px solid rgba(20, 103, 204, 0.1) !important;
}

body.bg-theme3 .dropdown-large .msg-footer {
	background: #FAFAFA !important;
	border-top: 1px solid rgba(20, 103, 204, 0.1) !important;
}

body.bg-theme3 .dropdown-large .msg-name {
	color: #353536 !important;
}

body.bg-theme3 .dropdown-large .msg-info {
	color: rgba(53, 53, 54, 0.6) !important;
}

body.bg-theme3 .dropdown-large .msg-time {
	color: rgba(53, 53, 54, 0.6) !important;
}

body.bg-theme3 .dropdown-large .msg-header .msg-header-title {
	color: #353536 !important;
}

body.bg-theme3 .dropdown-large .msg-header .msg-header-clear {
	color: rgba(53, 53, 54, 0.8) !important;
}

/* Header that hides on scroll */
.topbar--inside-page {
    position: fixed !important;
    top: 0 !important;
    left: 325px !important;
    right: 0 !important;
    height: 70px !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    pointer-events: auto !important;
    width: calc(100% - 325px) !important;
    transition: transform 0.3s ease-in-out !important;
}

/* Класс для скрытия хедера */
.topbar--inside-page.header-hidden {
    transform: translateY(-100%) !important;
}

.topbar--inside-page .navbar { pointer-events: auto !important; }

/* Когда sidebar свернут - хедер учитывает свернутый sidebar (97px) */
.wrapper.toggled .topbar--inside-page,
.wrapper.toggled header .topbar--inside-page {
    left: 97px !important;
    width: calc(100% - 97px) !important;
    padding-left: 30px !important;
}

/* Мобильная версия */
@media screen and (max-width: 1024px) {
    .topbar--inside-page {
        left: 0 !important;
        width: 100% !important;
    }
}

/* Восстанавливаем отступы для page-content */
.page-content {
    margin-top: 70px !important;
    position: relative;
    z-index: 1;
}

/* Восстанавливаем верхний отступ для page-wrapper */
.page-wrapper {
    height: calc(100vh - 70px);
    margin-top: 70px;
    margin-bottom: 0px;
    margin-left: 355px; /* 325px + 30px отступ */
    padding-bottom: 40px;
}

body.bg-theme3 .dropdown-large .dropdown-menu .dropdown-item {
	border-bottom: 1px solid rgba(20, 103, 204, 0.1);
}

body.bg-theme3 .dropdown-large .dropdown-menu .dropdown-item:hover {
	background: rgba(20, 103, 204, 0.1);
}

.user-info .designattion {

	font-size: 13px;

	color: rgb(255 255 255 / 64%);

}

.user-box {

	display: flex;

	align-items: center;

	height: 60px;

	border-left: 1px solid rgb(255 255 255 / 15%);

	margin-left: 1rem
	

}

/* Light theme user box */
body.bg-theme3 .user-box {
	border-left: 1px solid rgba(20, 103, 204, 0.1);
}

.dropdown-large {

	position: relative

}

.dropdown-large .dropdown-menu {

	width: 360px;

	border: 0;

	padding: 0 0;

	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15)

}

.topbar .navbar .dropdown-large .dropdown-menu::after {

	content: '';

	width: 13px;

	height: 13px;

	background: #101F32;

	position: absolute;

	top: -6px;

	right: 16px;

	transform: rotate(45deg);

	border-top: 1px solid rgba(255, 255, 255, 0.1);

	border-left: 1px solid rgba(255, 255, 255, 0.1)

}

.topbar .navbar .dropdown-menu::after {

	content: '';

	width: 13px;

	height: 13px;

	background: #101F32;

	position: absolute;

	top: -6px;

	right: 16px;

	transform: rotate(45deg);

	border-top: 1px solid rgba(255, 255, 255, 0.1);

	border-left: 1px solid rgba(255, 255, 255, 0.1)

}

.dropdown-large .msg-header {

	padding: .8rem 1rem;

	border-bottom: 1px solid rgba(255, 255, 255, 0.1);

	background-clip: border-box;

	background: #101F32;

	text-align: left;

	display: flex;

	align-items: center;

	border-top-left-radius: .25rem;

	border-top-right-radius: .25rem

}

.dropdown-large .msg-header .msg-header-title {

	font-size: 15px;

	color: rgb(255 255 255 / 85%);

	margin-bottom: 0;

	font-weight: 500

}

.dropdown-large .msg-header .msg-header-clear {

	font-size: 12px;

	color: rgb(255 255 255 / 85%);

	margin-bottom: 0

}

.dropdown-large .msg-footer {

	padding: .8rem 1rem;

	color: rgb(255 255 255 / 85%);

	border-top: 1px solid rgb(255 255 255 / 15%);

	background-clip: border-box;

	background: 0 0;

	font-size: 14px;

	font-weight: 500;

	border-bottom-left-radius: .25rem;

	border-bottom-right-radius: .25rem

}

.dropdown-large .user-online {

	position: relative

}

.dropdown-large .msg-name {

	font-size: 14px;

	margin-bottom: 0;

	color: rgb(255 255 255);

}

.dropdown-large .msg-info {

	font-size: 13px;

	margin-bottom: 0;

	color: rgb(255 255 255 / 50%);

}

.dropdown-large .msg-avatar {

	width: 45px;

	height: 45px;

	border-radius: 50%;

	margin-right: 15px

}

.dropdown-large .msg-time {

	font-size: 12px;

	margin-bottom: 0;

	color: rgb(255 255 255 / 50%);

}

.dropdown-large .user-online:after {

	content: '';

	position: absolute;

	bottom: 1px;

	right: 17px;

	width: 8px;

	height: 8px;

	border-radius: 50%;

	box-shadow: 0 0 0 2px #fff;

	background: #16e15e

}

.dropdown-large .dropdown-menu .dropdown-item {

	padding: .5rem 1.3rem;

	border-bottom: 1px solid rgb(255 255 255 / 15%);

}

.header-message-list {

	position: relative;

	height: 360px

}

.header-notifications-list {

	position: relative;

	height: 360px

}

.dropdown-large .notify {

	width: 45px;

	height: 45px;

	line-height: 45px;

	font-size: 22px;

	text-align: center;

	border-radius: 50%;

	color: #fff;

	background-color: rgb(255 255 255 / 15%);

	margin-right: 15px

}

.app-box {

	width: 45px;

	height: 45px;

	display: flex;

	align-items: center;

	font-size: 26px;

	justify-content: center;

	cursor: pointer;

	border-radius: 10px;

	color: #fff;

	background-color: rgb(255 255 255 / 15%)

}

.app-title {

	font-size: 14px

}

.user-box .dropdown-menu i {

	vertical-align: middle;

	margin-right: 10px

}

.dropdown-menu {

	-webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);

	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);

	border: 0 solid #e9ecef;

	font-size: 14px;
	background-color: #101F32;

}

/* Light theme dropdown shadow */
body.bg-theme3 .dropdown-menu {
	box-shadow: 0 .5rem 1rem rgba(20, 103, 204, 0.1);
	background-color: #ECF1F7;
}

.topbar .navbar .dropdown-menu {

	-webkit-animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown;

	animation: .6s cubic-bezier(.25, .8, .25, 1) 0s normal forwards 1 animdropdown

}

@-webkit-keyframes animdropdown {

	from {

		-webkit-transform: translate3d(0, 6px, 0);

		transform: translate3d(0, 6px, 0);

		opacity: 0

	}

	to {

		-webkit-transform: translate3d(0, 0, 0);

		transform: translate3d(0, 0, 0);

		opacity: 1

	}

}

@keyframes animdropdown {

	from {

		-webkit-transform: translate3d(0, 6px, 0);

		transform: translate3d(0, 6px, 0);

		opacity: 0

	}

	to {

		-webkit-transform: translate3d(0, 0, 0);

		transform: translate3d(0, 0, 0);

		opacity: 1

	}

}

.mobile-search-icon {

	display: none

}

.mobile-toggle-menu {

	display: none;

	font-size: 26px;

	color: #fff;

	cursor: pointer

}

.switcher-wrapper {

	width: 280px;

	height: 100%;

	position: fixed;

	right: -280px;

	top: 0;

	bottom: 0;

	z-index: 16;

	background: #111314;

	border-left: 0 solid #d2d2d2;

	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .13);

	transition: all .2s ease-out

}

.switcher-btn {

	width: 40px;

	height: 40px;

	line-height: 40px;

	font-size: 24px;

	background: rgb(255 255 255 / 15%);

	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .13);

	color: #fff;

	text-align: center;

	border-top-left-radius: 10px;

	border-bottom-left-radius: 10px;

	position: absolute;

	top: 40%;

	right: 100%;

	cursor: pointer

}

.switcher-wrapper.switcher-toggled {

	right: 0

}

.switcher-body {

	padding: 1.25rem

}

.switcher {

	list-style: none;

	margin: 0;

	padding: 0;

	overflow: hidden;

	margin-left: 20px;

}

.switcher li {

	float: left;

	width: 55px;

	height: 55px;

	margin: 0 15px 15px 0px;

	border-radius: 10px;

	border: 0px solid black;

}

#theme1 {

	background-image: url(../images/bg-themes/1.png);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme2 {

	background-image: url(../images/bg-themes/2.png);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme3 {

	background-image: url(../images/bg-themes/3.png);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme4 {

	background-image: url(../images/bg-themes/4.png);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme5 {

	background-image: url(../images/bg-themes/5.png);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme6 {

	background-image: url(../images/bg-themes/6.png);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme7 {

	background-image: linear-gradient(45deg, #0c675e, #069e90);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme8 {

	background-image: linear-gradient(45deg, rgb(0, 242, 96), rgb(5, 117, 230));

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme9 {

	background-image: linear-gradient(45deg, #29323c, #485563);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme10 {

	background-image: linear-gradient(45deg, #795548, #945c48);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme11 {

	background-image: linear-gradient(45deg, #1565C0, #1E88E5);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

#theme12 {

	background-image: linear-gradient(45deg, #65379b, #886aea);

	background-size: 100% 100%;

	background-position: center;

	transition: background .3s;

}

body.bg-theme1 {

	background-image: url(../images/bg-themes/1.png);

}

body.bg-theme2 {

	background: linear-gradient(106.9deg, #0B1024 0.47%, #162D40 99.53%);
	background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    transition: background .2s;

}

body.bg-theme3 {

	background: #FAFAFA;
	background-size: 100% 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	transition: background .2s;

}

body.bg-theme4 {

	background-image: url(../images/bg-themes/4.png);

}

body.bg-theme5 {

	background-image: url(../images/bg-themes/5.png);

}

body.bg-theme6 {

	background-image: url(../images/bg-themes/6.png);

}

body.bg-theme7 {

	background-image: linear-gradient(45deg, #0c675e, #069e90);

}

body.bg-theme8 {

	background-image: linear-gradient(45deg, rgb(0, 242, 96), rgb(5, 117, 230));

}

body.bg-theme9 {

	background-image: linear-gradient(45deg, #29323c, #485563);

}

body.bg-theme10 {

	background-image: linear-gradient(45deg, #795548, #945c48);

}

body.bg-theme11 {

	background-image: linear-gradient(45deg, #1565C0, #1E88E5);

}

body.bg-theme12 {

	background-image: linear-gradient(45deg, #65379b, #886aea);

}



.bg-theme {

	background-size: 100% 100%;

	background-attachment: fixed;

	background-position: center;

	background-repeat: no-repeat;

	transition: background .2s;

}

@media screen and (max-width: 1280px) {

	.email-header {

		height: auto

	}

	.email-content {

		padding: 100px 0 0 0

	}

}

@media screen and (max-width: 1024px) {

	.topbar {

        left: 0!important;
        width: 100% !important;

		height: 70px;

	}

	.mobile-search-icon {

		display: block

	}

	.mobile-toggle-menu {

		display: block

	}

	.sidebar-wrapper {

		background: #171717;

		left: -300px;

		box-shadow: none

	}

	.sidebar-header {

		background: #171717;

	}

	.page-wrapper {

		margin-left: 0

	}

	.page-footer {

		left: 0

	}

	.search-bar {

		display: none

	}

	.full-search-bar {

		display: flex;

		align-items: center;

		width: 100%;

		position: absolute;

		left: 0;

		z-index: 100;

		background: rgb(11 12 15);

		height: 60px;

		padding: 0 1.4rem

	}

	.search-bar-box {

		width: 100%

	}

	.search-close {

		display: block

	}

	.search-show {

		left: 15px;

		right: auto

	}

	.search-control {

		background-color: rgba(255, 255, 255, 0.05);

		border: 1px solid rgb(242 239 239 / 15%);

		padding-left: 2.5rem

	}

	.wrapper.toggled .sidebar-wrapper {

		left: 0

	}

	.wrapper.toggled .page-wrapper {

		margin-left: 0

	}

	.wrapper.toggled .overlay {

		position: fixed;

		top: 0;

		right: 0;

		bottom: 0;

		left: 0;

		background: #000;

		opacity: .6;

		z-index: 10;

		display: block;

		cursor: move;

		transition: all .2s ease-out

	}

	.error-404 {

		height: auto;

		padding: 6rem 1rem

	}

	.chat-header {

		border-top-left-radius: 0.25rem;

	}

	.chat-footer {

		border-bottom-left-radius: 0.25rem;

	}

	.chat-sidebar {

		left: -370px;

	}

	.chat-content {

		margin-left: 0px;

	}

	.chat-header {

		left: 0px;

	}

	.chat-footer {

		left: 0px;

	}

	/* chat toggled css */

	.chat-toggled .chat-sidebar {

		left: 0px;

		background: #343a40;

	}

	.chat-toggled .overlay {

		position: absolute;

		top: 0;

		right: 0;

		bottom: 0;

		left: 340px;

		background: #fff;

		opacity: 0.5;

		z-index: 11;

		display: block;

		cursor: move;

		transition: all .3s ease-out;

	}

	.email-header {

		border-top-left-radius: 0.25rem;

	}

	.email-sidebar {

		left: -280px;

		background: #343a40;

	}

	.email-content {

		margin-left: 0px;

	}

	.email-header {

		left: 0px;

	}

	/* email toggled */

	.email-toggled .email-sidebar {

		left: 0px;

	}

	.email-toggled .overlay {

		position: absolute;

		top: 0;

		right: 0;

		bottom: 0;

		left: 250px;

		background: #000;

		opacity: 0.5;

		z-index: 9;

		display: block;

		cursor: move;

		transition: all .3s ease-out;

	}

}

@media screen and (max-width: 991px) {

	.section-authentication-signin {

		height: 100%;

		margin-top: 6rem;

		margin-bottom: 2rem

	}

	.authentication-reset-password {

		height: auto;

		padding: 2rem 1rem

	}

	.authentication-lock-screen {

		height: auto;

		padding: 2rem 1rem

	}

	.compose-mail-popup {

		width: auto;

		position: fixed;

		bottom: -30px;

		right: 0;

		left: 0

	}

}

@media screen and (max-width: 767px) {

	.user-box .user-info {

		display: block !important;
		
		padding: 0 !important;
		
		min-width: auto !important;

	}
	
	.user-box .user-info .user-name {
		
		font-size: 12px !important;
		
		line-height: 14px !important;
		
		margin-bottom: 2px !important;
		
		white-space: nowrap !important;
		
		overflow: hidden !important;
		
		text-overflow: ellipsis !important;
		
		max-width: 120px !important;

	}
	
	.user-box .user-info .designattion {
		
		font-size: 10px !important;
		
		line-height: 12px !important;
		
		opacity: 0.7 !important;
		
		white-space: nowrap !important;
		
		overflow: hidden !important;
		
		text-overflow: ellipsis !important;
		
		max-width: 120px !important;

	}
	
	.user-box {
		
		margin-left: auto !important;
		
		margin-right: 10px !important;

	}

	.authentication-forgot {

		height: auto;

		padding: 2.5rem 1rem

	}

}

@media screen and (max-width: 620px) {

	.topbar .navbar .dropdown-menu::after {

		display: none

	}

	.topbar .navbar .dropdown {

		position: static!important

	}

	.topbar .navbar .dropdown-menu {

		width: 100%!important

	}

}

@media screen and (max-width: 520px) {

	.chat-footer-menu,

	.chat-top-header-menu {

		display: none

	}

}

/* Стили для динамического заголовка */
.header-title {
	color: #ffffff;
	transition: color 0.3s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Светлая тема */
body.bg-theme3 .header-title {
	color: #1467CC;
	text-shadow: 0 1px 2px rgba(20, 103, 204, 0.1);
}

/* Темная тема (по умолчанию) */
body.bg-theme2 .header-title {
	color: #ffffff;
}

/* Анимация при смене темы */
.header-title.theme-transition {
	transition: color 0.3s ease;
}

/* Стили для navbar-expand в header */
.topbar .navbar-expand {
	background: transparent;
	height: 70px;
	align-items: center;
}

/* Стили для navbar-nav в header */
.topbar .navbar-expand .navbar-nav {
	align-items: center;
}

/* Стили для nav-link в header */
.topbar .navbar-expand .navbar-nav .nav-link {
	padding: 0.5rem 1rem;
	color: #ffffff;
	transition: color 0.3s ease;
}

/* Светлая тема для nav-link */
body.bg-theme3 .topbar .navbar-expand .navbar-nav .nav-link {
	color: #353536;
}

/* Стили для dropdown-menu в header */
.topbar .navbar-expand .dropdown-menu {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Светлая тема для dropdown-menu */
body.bg-theme3 .topbar .navbar-expand .dropdown-menu {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(20, 103, 204, 0.2);
}

/* Улучшенные стили для кнопки переключения темы */
#theme-toggle {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-radius: 30px;
	padding: 6px 12px;
}

#theme-toggle:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Светлая тема для кнопки переключения темы */
body.bg-theme3 #theme-toggle {
	background: rgba(20, 103, 204, 0.1);
	border: 1px solid rgba(20, 103, 204, 0.2);
	color: #1467CC;
}

body.bg-theme3 #theme-toggle:hover {
	background: rgba(20, 103, 204, 0.2);
	border-color: rgba(20, 103, 204, 0.3);
	box-shadow: 0 2px 8px rgba(20, 103, 204, 0.2);
}

/* Новые стили для карточек дашборда по Figma макету */
.dashboard-card {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(240, 241, 244, 0.08) !important;
	border-radius: 30px !important;
	padding: 25px 30px 30px !important;
	transition: all 0.3s ease !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	gap: 0px !important;
	box-sizing: border-box !important;
}

/* Светлая тема для карточек */
body.bg-theme3 .dashboard-card {
	background: #F3F6FA !important;
	border: 1px solid rgba(26, 37, 56, 0.08) !important;
}

/* Заголовки карточек */
.dashboard-card .card-header {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin-bottom: 0px !important;
}

.dashboard-card .card-header .d-flex {
	justify-content: space-between !important;
	align-items: center !important;
	padding-bottom: 0px !important;
	border-bottom: 1px solid rgba(240, 241, 244, 0.08) !important;
}

body.bg-theme3 .dashboard-card .card-header .d-flex {
	border-bottom: 1px solid rgba(26, 37, 56, 0.08) !important;
}

.dashboard-card .card-title,
.dashboard-card .card-body h5 {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	font-size: 24px !important;
	line-height: 33px !important;
	margin: 0 !important;
}

body.bg-theme3 .dashboard-card .card-title,
body.bg-theme3 .dashboard-card .card-body h5 {
	color: #1A2538 !important;
}

/* Иконка меню (три точки) */
.dashboard-card .menu-dots {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 46px !important;
	height: 46px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border-radius: 36px !important;
	padding: 0 13px !important;
}

body.bg-theme3 .dashboard-card .menu-dots {
	background: rgba(26, 37, 56, 0.05) !important;
}

.dashboard-card .menu-dots i {
	color: #F0F1F4 !important;
	font-size: 16px !important;
	transform: rotate(90deg) !important;
}

body.bg-theme3 .dashboard-card .menu-dots i {
	color: #1A2538 !important;
}

/* Секция статусов доставок */
.dashboard-card .status-indicators {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	margin: 20px 0 !important;
}

/* Статусные индикаторы */
.dashboard-card .status-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 6px 16px !important;
	border-radius: 30px !important;
	min-height: 34px !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	border: none !important;
	background: transparent !important;
}

/* Статус "В работе" */
.dashboard-card .status-item.status-working {
	background: rgba(20, 103, 204, 0.1) !important;
}

.dashboard-card .status-item.status-working:hover {
	background: rgba(20, 103, 204, 0.15) !important;
}

/* Статус "У доставщика" */
.dashboard-card .status-item.status-delivery {
	background: rgba(255, 67, 158, 0.1) !important;
}

.dashboard-card .status-item.status-delivery:hover {
	background: rgba(255, 67, 158, 0.15) !important;
}

/* Статус "Доставлено" */
.dashboard-card .status-item.status-completed {
	background: rgba(76, 192, 173, 0.1) !important;
}

.dashboard-card .status-item.status-completed:hover {
	background: rgba(76, 192, 173, 0.15) !important;
}

/* Левая часть статусного элемента */
.dashboard-card .status-item .status-info {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}

/* Цветные индикаторы */
.dashboard-card .status-indicator {
	width: 15px !important;
	height: 15px !important;
	border-radius: 4px !important;
	flex-shrink: 0 !important;
}

.dashboard-card .status-indicator.indicator-working {
	background: #1467CC !important;
}

.dashboard-card .status-indicator.indicator-delivery {
	background: #FF439E !important;
}

.dashboard-card .status-indicator.indicator-completed {
	background: #4CC0AD !important;
}

/* Текст статуса */
.dashboard-card .status-text {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 22px !important;
}

body.bg-theme3 .dashboard-card .status-text {
	color: #1A2538 !important;
}

/* Числовое значение */
.dashboard-card .status-count {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 22px !important;
}

body.bg-theme3 .dashboard-card .status-count {
	color: #1A2538 !important;
}

/* Секция с общим количеством (центр карточки) */
.dashboard-card .chart-section {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 20px 0 !important;
	position: relative !important;
	min-height: 370px !important;
}

/* Стили для диаграммы */
.dashboard-card #chart_15 {
	width: 330px !important;
	height: 330px !important;
}

.dashboard-card #chart_15 .apexcharts-canvas {
	margin: 0 auto !important;
}

.dashboard-card .total-info {
	position: absolute !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	z-index: 10 !important;
}

.dashboard-card .total-label {
	color: rgba(240, 241, 244, 0.6) !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 22px !important;
	margin-bottom: 4px !important;
}

body.bg-theme3 .dashboard-card .total-label {
	color: rgba(26, 37, 56, 0.6) !important;
}

.dashboard-card .total-count {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	font-size: 32px !important;
	line-height: 44px !important;
}

body.bg-theme3 .dashboard-card .total-count {
	color: #1A2538 !important;
}

/* Главная кнопка по дизайну Figma */
.dashboard-card .main-button {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 12px 24px !important;
	width: 100% !important;
	min-height: 46px !important;
	background: linear-gradient(90deg, #1467CC 0%, #1467CC 50.96%, #1467CC 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 30px !important;
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 22px !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	box-sizing: border-box !important;
}

.dashboard-card .main-button:hover {
	background: linear-gradient(90deg, #0c5aa6 0%, #0c5aa6 50.96%, #0c5aa6 100%) !important;
	color: #ffffff !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(20, 103, 204, 0.3) !important;
}

body.bg-theme3 .dashboard-card .main-button {
	background: linear-gradient(90deg, #1467CC 0%, #1467CC 50.96%, #1467CC 100%) !important;
	border: 1px solid rgba(26, 37, 56, 0.1) !important;
}

body.bg-theme3 .dashboard-card .main-button:hover {
	background: linear-gradient(90deg, #0c5aa6 0%, #0c5aa6 50.96%, #0c5aa6 100%) !important;
}

/* Стили для карточки с графиком (Количество доставок) */
.dashboard-card-chart {
	min-height: 500px !important;
}

/* Фиксированная высота для левой карточки "Доставки сегодня" */
.col-lg-4 .dashboard-card {
	height: 868px !important; /* Высота как в Figma дизайне */
	display: flex !important;
	flex-direction: column !important;
}

.dashboard-card .total-deliveries {
	color: rgba(240, 241, 244, 0.6) !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 14px !important;
}

body.bg-theme3 .dashboard-card .total-deliveries {
	color: rgba(26, 37, 56, 0.6) !important;
}

/* Фильтры периодов */
.dashboard-card .period-filters {
	display: flex !important;
	gap: 10px !important;
	margin: 20px 0 !important;
	flex-wrap: wrap !important;
}

.dashboard-card .period-btn {
	padding: 8px 16px !important;
	border: 1px solid rgba(240, 241, 244, 0.2) !important;
	border-radius: 20px !important;
	background: transparent !important;
	color: rgba(240, 241, 244, 0.8) !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 14px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
}

.dashboard-card .period-btn:hover {
	background: rgba(240, 241, 244, 0.1) !important;
	color: #F0F1F4 !important;
}

.dashboard-card .period-btn.active {
	background: #1467CC !important;
	border-color: #1467CC !important;
	color: #F0F1F4 !important;
}

body.bg-theme3 .dashboard-card .period-btn {
	border-color: rgba(26, 37, 56, 0.2) !important;
	color: rgba(26, 37, 56, 0.8) !important;
}

body.bg-theme3 .dashboard-card .period-btn:hover {
	background: rgba(26, 37, 56, 0.1) !important;
	color: #1A2538 !important;
}

/* Секция графика */
.dashboard-card .chart-area {
	margin: 0px 0 !important;
}

.dashboard-card .chart-info {
	margin-bottom: 0px !important;
}

.dashboard-card .chart-label {
	color: rgba(240, 241, 244, 0.6) !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 14px !important;
}

body.bg-theme3 .dashboard-card .chart-label {
	color: rgba(26, 37, 56, 0.6) !important;
}

/* Список доставщиков */
.dashboard-card .drivers-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 12px !important;
	margin: 20px 0 !important;
}

.dashboard-card .driver-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 12px 0 !important;
	border-bottom: 1px solid rgba(240, 241, 244, 0.08) !important;
}

.dashboard-card .driver-item:last-child {
	border-bottom: none !important;
}

body.bg-theme3 .dashboard-card .driver-item {
	border-bottom: 1px solid rgba(26, 37, 56, 0.08) !important;
}

.dashboard-card .driver-name {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 16px !important;
}

body.bg-theme3 .dashboard-card .driver-name {
	color: #1A2538 !important;
}

.dashboard-card .driver-status {
	padding: 4px 12px !important;
	border-radius: 12px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
}

.dashboard-card .status-free {
	background: rgba(76, 192, 173, 0.2) !important;
	color: #4CC0AD !important;
}

.dashboard-card .status-busy {
	background: rgba(255, 67, 158, 0.2) !important;
	color: #FF439E !important;
}

/* Бейдж с количеством */
.dashboard-card .badge-count {
	background: rgba(240, 241, 244, 0.1) !important;
	color: rgba(240, 241, 244, 0.6) !important;
	padding: 4px 8px !important;
	border-radius: 8px !important;
	font-size: 12px !important;
}

body.bg-theme3 .dashboard-card .badge-count {
	background: rgba(26, 37, 56, 0.1) !important;
	color: rgba(26, 37, 56, 0.6) !important;
}

/* Кнопка добавления */
.dashboard-card .btn-add {
	width: 32px !important;
	height: 32px !important;
	border-radius: 16px !important;
	background: #1467CC !important;
	border: none !important;
	color: #F0F1F4 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 16px !important;
}

.dashboard-card .btn-add:hover {
	background: #0c5aa6 !important;
	color: #ffffff !important;
}

/* Список системы */
.dashboard-card .system-list {
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	margin: 20px 0 !important;
}

.dashboard-card .system-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 12px 0 !important;
	border-bottom: 1px solid rgba(240, 241, 244, 0.08) !important;
}

.dashboard-card .system-item:last-child {
	border-bottom: none !important;
}

body.bg-theme3 .dashboard-card .system-item {
	border-bottom: 1px solid rgba(26, 37, 56, 0.08) !important;
}

.dashboard-card .system-label {
	color: rgba(240, 241, 244, 0.8) !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 16px !important;
}

body.bg-theme3 .dashboard-card .system-label {
	color: rgba(26, 37, 56, 0.8) !important;
}

.dashboard-card .system-value {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 16px !important;
	font-weight: 500 !important;
}

body.bg-theme3 .dashboard-card .system-value {
	color: #1A2538 !important;
}

/* Секция статуса бота */
.dashboard-card .bot-status-section {
	margin-top: 30px !important;
	padding-top: 20px !important;
	border-top: 1px solid rgba(240, 241, 244, 0.08) !important;
}

body.bg-theme3 .dashboard-card .bot-status-section {
	border-top: 1px solid rgba(26, 37, 56, 0.08) !important;
}

.dashboard-card .bot-status-label {
	color: rgba(240, 241, 244, 0.8) !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 16px !important;
}

body.bg-theme3 .dashboard-card .bot-status-label {
	color: rgba(26, 37, 56, 0.8) !important;
}

.dashboard-card .switch-label {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 14px !important;
	margin-left: 8px !important;
}

body.bg-theme3 .dashboard-card .switch-label {
	color: #1A2538 !important;
}

.dashboard-card .bot-status-readonly {
	color: #F0F1F4 !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

body.bg-theme3 .dashboard-card .bot-status-readonly {
	color: #1A2538 !important;
}

/* Ограничение высоты для нижнего ряда карточек */
.row .col-lg-6 .dashboard-card {
	max-height: 380px !important;
	overflow-y: auto !important;
	display: flex !important;
	flex-direction: column !important;
}

/* Убеждаемся, что нижний ряд помещается под правую карточку */
.row:last-child {
	max-height: 320px !important; /* Ограничиваем высоту нижнего ряда */
}

/* Дополнительные ограничения для нижних карточек */
.row:last-child .col-lg-6 .dashboard-card {
	max-height: 300px !important;
	height: 300px !important;
}

/* Компактный дизайн для карточки доставщиков */
.row:last-child .dashboard-card .drivers-list {
	max-height: 140px !important;
	overflow-y: auto !important;
	margin: 10px 0 !important;
	flex: 1 !important;
}

.row:last-child .dashboard-card .driver-item {
	padding: 6px 0 !important;
	gap: 6px !important;
	min-height: 32px !important;
}

/* Компактный дизайн для карточки системы */
.row:last-child .dashboard-card .system-list {
	margin: 10px 0 !important;
	gap: 8px !important;
	flex: 1 !important;
}

.row:last-child .dashboard-card .system-item {
	padding: 6px 0 !important;
	min-height: 28px !important;
}

.row:last-child .dashboard-card .bot-status-section {
	margin-top: 15px !important;
	padding-top: 10px !important;
	flex-shrink: 0 !important;
}

/* Более компактные заголовки для нижних карточек */
.row:last-child .dashboard-card .card-header {
	padding-bottom: 0px !important;
	margin-bottom: 10px !important;
}

/* Компактная главная кнопка для нижних карточек */
.row:last-child .dashboard-card .main-button {
	padding: 8px 16px !important;
	min-height: 36px !important;
	margin-top: auto !important;
	flex-shrink: 0 !important;
}

/* Скроллбар для списков */
.dashboard-card .drivers-list::-webkit-scrollbar,
.dashboard-card .system-list::-webkit-scrollbar {
	width: 4px;
}

.dashboard-card .drivers-list::-webkit-scrollbar-track,
.dashboard-card .system-list::-webkit-scrollbar-track {
	background: rgba(240, 241, 244, 0.1);
	border-radius: 2px;
}

.dashboard-card .drivers-list::-webkit-scrollbar-thumb,
.dashboard-card .system-list::-webkit-scrollbar-thumb {
	background: rgba(240, 241, 244, 0.3);
	border-radius: 2px;
}

body.bg-theme3 .dashboard-card .drivers-list::-webkit-scrollbar-track,
body.bg-theme3 .dashboard-card .system-list::-webkit-scrollbar-track {
	background: rgba(26, 37, 56, 0.1);
}

body.bg-theme3 .dashboard-card .drivers-list::-webkit-scrollbar-thumb,
body.bg-theme3 .dashboard-card .system-list::-webkit-scrollbar-thumb {
	background: rgba(26, 37, 56, 0.3);
}

/* Новая структура правой колонки */
.right-column-container {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important; /* Отступ между карточками 10px */
	height: 868px !important; /* Соответствует высоте левой карточки */
}

/* Карточка с графиком в правой колонке */
.right-column-container .dashboard-card-chart {
	flex: 0 0 auto !important;
	min-height: 400px !important;
	max-height: 450px !important;
}

/* Контейнер для нижних карточек */
.bottom-cards-row {
	display: flex !important;
	gap: 10px !important; /* Отступ между нижними карточками 10px */
	flex: 1 !important;
	min-height: 0 !important; /* Позволяет flexbox сжиматься */
}

/* Колонки нижних карточек */
.bottom-card-col {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
}

/* Карточки в нижнем ряду */
.bottom-card-col .dashboard-card {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	max-height: 380px !important;
	overflow: hidden !important;
}

/* Компактные списки в нижних карточках */
.bottom-card-col .drivers-list,
.bottom-card-col .system-list {
	flex: 1 !important;
	overflow-y: auto !important;
	max-height: 200px !important;
}

/* Компактные элементы */
.bottom-card-col .driver-item,
.bottom-card-col .system-item {
	padding: 6px 0 !important;
	min-height: 28px !important;
}

.bottom-card-col .card-header {
	flex-shrink: 0 !important;
	padding-bottom: 0px !important;
	margin-bottom: 10px !important;
}

.bottom-card-col .main-button {
	flex-shrink: 0 !important;
	margin-top: auto !important;
	padding: 8px 16px !important;
	min-height: 36px !important;
}

.bottom-card-col .bot-status-section {
	flex-shrink: 0 !important;
	margin-top: 15px !important;
	padding-top: 10px !important;
}

/* Отступы между колонками и от навигационного меню - только для десктопа */
@media screen and (min-width: 769px) {
	.row[style*="margin-top: 25px"] .col-lg-4 {
		padding-left: 45px !important; /* 30px от меню + 15px стандартный padding */
		padding-right: 20px !important; /* Отступ между левой и правой колонками */
	}

	.row[style*="margin-top: 25px"] .col-lg-8 {
		padding-left: 0px !important; /* Убираем левый padding у правой колонки */
		padding-right: 15px !important; /* Стандартный правый padding */
	}
	
	/* Специальные стили для кнопок темы на десктопе */
	.sidebar-theme-toggle {
		padding: 20px 15px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important; /* Центрируем кнопки */
		gap: 10px !important; /* Увеличиваем отступ между кнопками */
	}
	
	.theme-option {
		margin: 0 !important;
		width: auto !important; /* Автоматическая ширина */
		max-width: 120px !important; /* Максимальная ширина */
		min-width: 100px !important; /* Минимальная ширина */
		box-sizing: border-box !important;
		justify-content: center !important; /* Центрирование содержимого */
		text-align: center !important;
		padding: 8px 16px !important;
		margin: 0 auto !important; /* Центрирование самих кнопок */
		border-radius: 25px !important; /* Более округлые углы */
	}
	
	.theme-option.active {
		background: #1467CC !important;
		color: #F0F1F4 !important;
		box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
		border: 1px solid #1467CC !important;
	}
	
	.theme-option i {
		font-size: 14px !important; /* Немного меньше иконки */
		width: 16px !important;
	}
	
	.theme-option span {
		font-size: 13px !important; /* Немного меньше текст */
		font-weight: 500 !important;
	}
	
	.theme-option:hover {
		background: rgba(255, 255, 255, 0.08) !important;
		color: rgba(240, 241, 244, 0.9) !important;
		transform: translateY(-1px) !important; /* Легкий эффект поднятия */
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
	}
	
	.theme-option.active:hover {
		background: #1467CC !important; /* Активная кнопка не меняется при наведении */
		transform: none !important;
	}
}

/* Унификация стилей всех карточек дашборда */
.dashboard-card,
.dashboard-card-chart {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(240, 241, 244, 0.08) !important;
	border-radius: 30px !important;
}

/* Унификация стилей для светлой темы */
body.bg-theme3 .dashboard-card,
body.bg-theme3 .dashboard-card-chart {
	background: #F3F6FA !important;
	border: 1px solid rgba(26, 37, 56, 0.08) !important;
}

/* Кнопка мобильного меню скрыта на десктопе */
.mobile-menu-toggle {
	display: none !important;
}

/* Переключатель тем для десктопного сайдбара - убрано абсолютное позиционирование */

/* =====================================================
   АДАПТИВНАЯ ВЕРСТКА ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ===================================================== */

@media screen and (max-width: 768px) {
	/* =====================================================
	   ПРОФИЛЬ ПОЛЬЗОВАТЕЛЯ НА МОБИЛЬНЫХ УСТРОЙСТВАХ
	   ===================================================== */
	
	/* Топбар адаптация для мобильных */
	.topbar {
		padding: 0 15px !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	/* Заголовок страницы более компактный */
	.navbar-brand .header-title {
		font-size: 24px !important;
		line-height: 28px !important;
	}
	
	/* Профиль пользователя - компактный */
	.user-box {
		display: flex !important;
		align-items: center !important;
		padding: 5px 8px !important;
		background: rgba(255, 255, 255, 0.05) !important;
		border: 1px solid rgba(255, 255, 255, 0.1) !important;
		border-radius: 8px !important;
		margin-left: auto !important;
		margin-right: 0 !important;
		min-width: auto !important;
		backdrop-filter: blur(10px) !important;
	}
	
	/* Светлая тема для профиля */
	body.bg-theme3 .user-box {
		background: rgba(26, 37, 56, 0.05) !important;
		border: 1px solid rgba(26, 37, 56, 0.1) !important;
	}
	
	/* Информация пользователя */
	.user-box .user-info {
		display: block !important;
		padding: 0 !important;
		min-width: auto !important;
		text-align: right !important;
	}
	
	.user-box .user-info .user-name {
		font-size: 12px !important;
		line-height: 14px !important;
		margin-bottom: 2px !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		max-width: 100px !important;
		color: rgba(240, 241, 244, 0.9) !important;
	}
	
	body.bg-theme3 .user-box .user-info .user-name {
		color: rgba(26, 37, 56, 0.9) !important;
	}
	
	.user-box .user-info .designattion {
		font-size: 10px !important;
		line-height: 12px !important;
		opacity: 0.7 !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		max-width: 100px !important;
		color: rgba(240, 241, 244, 0.6) !important;
	}
	
	body.bg-theme3 .user-box .user-info .designattion {
		color: rgba(26, 37, 56, 0.6) !important;
	}
	
	/* Dropdown меню профиля */
	.user-box .dropdown-menu {
		min-width: 150px !important;
		right: 0 !important;
		left: auto !important;
		transform: none !important;
		margin-top: 5px !important;
	}
	
	/* Основные контейнеры */
	.row[style*="margin-top: 25px"] {
		margin-top: 15px !important;
		margin-bottom: 15px !important;
	}
	
	/* Левая колонка на мобильных */
	.col-lg-4 {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 15px !important; /* Стандартные отступы на мобильных */
		padding-right: 15px !important;
		margin-bottom: 20px !important;
	}
	
	.col-lg-4 .dashboard-card {
		height: auto !important; /* Автоматическая высота */
		min-height: 400px !important;
	}
	
	/* Правая колонка на мобильных */
	.col-lg-8 {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
		margin-bottom: 20px !important;
	}
	
	/* Контейнер правой колонки */
	.right-column-container {
		height: auto !important; /* Автоматическая высота */
		gap: 20px !important;
	}
	
	/* Карточка "Количество доставок" */
	.right-column-container .dashboard-card-chart {
		min-height: 350px !important;
		max-height: none !important;
	}
	
	/* Нижние карточки в столбец */
	.bottom-cards-row {
		flex-direction: column !important;
		gap: 20px !important;
	}
	
	.bottom-card-col {
		width: 100% !important;
		max-width: 100% !important;
	}
	
	.bottom-card-col .dashboard-card {
		max-height: none !important;
		height: auto !important;
		min-height: 250px !important;
	}
	
	/* Списки в мобильной версии */
	.bottom-card-col .drivers-list,
	.bottom-card-col .system-list {
		max-height: 150px !important;
		overflow-y: auto !important;
	}
	
	/* Компактные элементы для мобильных */
	.bottom-card-col .driver-item,
	.bottom-card-col .system-item {
		padding: 8px 0 !important;
		min-height: 32px !important;
	}
	
	/* Адаптация графиков */
	#chart_15 {
		height: 250px !important;
		width: 250px !important;
	}
	
	/* Фильтры периодов на мобильных */
	.period-filters {
		flex-wrap: wrap !important;
		gap: 8px !important;
	}
	
	.period-btn {
		padding: 6px 12px !important;
		font-size: 14px !important;
	}
	
	/* Заголовки карточек */
	.card-header {
		padding-bottom: 0px !important;
		margin-bottom: 15px !important;
	}
	
	.card-title {
		font-size: 20px !important;
	}
	
	/* Статусные индикаторы */
	.status-indicators {
		gap: 10px !important;
	}
	
	.status-item {
		padding: 8px 12px !important;
	}
	
	/* Главные кнопки */
	.main-button {
		padding: 10px 20px !important;
		font-size: 14px !important;
	}
	
	/* =====================================================
	   АДАПТАЦИЯ НАВИГАЦИОННОГО МЕНЮ ДЛЯ МОБИЛЬНЫХ
	   ===================================================== */
	
	/* Скрываем боковое меню на мобильных */
	.sidebar-wrapper {
		transform: translateX(-100%) !important;
		transition: transform 0.3s ease !important;
	}
	
	/* Основной контент на полную ширину */
	.wrapper > .page-content,
	.page-wrapper {
		margin-left: 0 !important;
		width: 100% !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	/* Хедер на полную ширину */
	.topbar--inside-page {
		left: 0 !important;
		width: 100% !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	/* Показ меню при активации */
	.wrapper.sidebar-open .sidebar-wrapper {
		transform: translateX(0) !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		height: 100vh !important;
		z-index: 9999 !important;
		background: rgba(26, 37, 56, 0.98) !important;
		backdrop-filter: blur(10px) !important;
	}
	
	/* Светлая тема для мобильного меню */
	body.bg-theme3 .wrapper.sidebar-open .sidebar-wrapper {
		background: rgba(243, 246, 250, 0.98) !important;
	}
	
	/* Оверлей для закрытия меню */
	.mobile-menu-overlay {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		background: rgba(0, 0, 0, 0.5) !important;
		z-index: 9998 !important;
		display: none !important;
	}
	
	.wrapper.sidebar-open .mobile-menu-overlay {
		display: block !important;
	}
	
	/* Кнопка мобильного меню */
	.mobile-menu-toggle {
		display: block !important;
		position: fixed !important;
		top: 20px !important;
		left: 20px !important;
		z-index: 10000 !important;
		background: rgba(255, 255, 255, 0.1) !important;
		border: 1px solid rgba(255, 255, 255, 0.2) !important;
		border-radius: 8px !important;
		padding: 8px !important;
		color: #F0F1F4 !important;
		cursor: pointer !important;
		backdrop-filter: blur(10px) !important;
	}
	
	/* Светлая тема для кнопки мобильного меню */
	body.bg-theme3 .mobile-menu-toggle {
		background: rgba(26, 37, 56, 0.1) !important;
		border: 1px solid rgba(26, 37, 56, 0.2) !important;
		color: #1A2538 !important;
	}
	
	/* Стили для открытого мобильного меню */
	.wrapper.sidebar-open .sidebar-wrapper .simplebar-content {
		padding: 20px !important;
	}
	
	/* Кнопка закрытия меню */
	.mobile-menu-close {
		position: absolute !important;
		top: 20px !important;
		right: 20px !important;
		background: transparent !important;
		border: none !important;
		color: #F0F1F4 !important;
		font-size: 24px !important;
		cursor: pointer !important;
		z-index: 10001 !important;
	}
	
	/* Светлая тема для кнопки закрытия */
	body.bg-theme3 .mobile-menu-close {
		color: #1A2538 !important;
	}
	
	/* =====================================================
	   ПЕРЕКЛЮЧАТЕЛЬ ТЕМ В САЙДБАРЕ (ВЕРТИКАЛЬНОЕ РАСПОЛОЖЕНИЕ)
	   ===================================================== */
	
	.sidebar-theme-toggle {
		padding: 20px 0 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
		margin-top: auto !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 8px !important;
		position: relative !important; /* Убираем абсолютное позиционирование */
	}
	
	.theme-option {
		display: flex !important;
		align-items: center !important;
		gap: 12px !important;
		padding: 8px 16px !important;
		border-radius: 30px !important;
		transition: all 0.3s ease !important;
		cursor: pointer !important;
		font-family: 'ALS Savage 2.0', sans-serif !important;
		font-size: 14px !important;
		font-weight: 400 !important;
		/* Круглый фон как у элементов меню - темная тема */
		background: rgba(255, 255, 255, 0.05) !important;
		border: 1px solid rgba(255, 255, 255, 0.08) !important;
		/* Базовые цвета для темной темы - белый текст */
		color: rgba(240, 241, 244, 0.8) !important;
	}
	
	.theme-option i {
		font-size: 16px !important;
		width: 20px !important;
		height: 20px !important;
		text-align: center !important;
		line-height: 20px !important;
		/* Убираем квадратный фон - иконка без собственного фона */
		color: rgba(240, 241, 244, 0.9) !important;
		background: transparent !important;
	}
	
	.theme-option:hover {
		background: rgba(255, 255, 255, 0.05) !important;
		color: rgba(240, 241, 244, 0.8) !important;
	}
	
	/* Активная тема - синий фон, белый текст и белые иконки */
	.theme-option.active {
		background: #1467CC !important;
		color: #F0F1F4 !important;
		box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
		border: 1px solid #1467CC !important;
	}
	
	.theme-option.active i {
		color: #F0F1F4 !important; /* Белые иконки для активной кнопки */
	}
	
	.theme-option.active:hover {
		background: #1467CC !important;
		color: #F0F1F4 !important;
		box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
	}
	
	/* Стили для светлой темы */
	body.bg-theme3 .sidebar-theme-toggle {
		border-top: 1px solid rgba(26, 37, 56, 0.1) !important;
	}
	
	body.bg-theme3 .theme-option {
		/* Круглый фон как у элементов меню - светлая тема */
		background: rgba(20, 103, 204, 0.05) !important;
		border: 1px solid rgba(20, 103, 204, 0.1) !important;
		color: rgba(26, 37, 56, 0.8) !important; /* Темный текст */
	}
	
	body.bg-theme3 .theme-option i {
		color: rgba(26, 37, 56, 0.9) !important; /* Темные иконки */
		background: transparent !important; /* Убираем фон с иконки */
	}
	
	body.bg-theme3 .theme-option:hover {
		background: rgba(20, 103, 204, 0.1) !important;
		border: 1px solid rgba(20, 103, 204, 0.2) !important;
		color: rgba(26, 37, 56, 0.9) !important;
	}
	
	body.bg-theme3 .theme-option.active {
		background: #1467CC !important;
		color: #F0F1F4 !important;
	}
	
	body.bg-theme3 .theme-option.active i {
		color: #F0F1F4 !important; /* Белые иконки для активной кнопки в светлой теме */
	}
	
	body.bg-theme3 .theme-option.active:hover {
		background: #1467CC !important;
		color: #F0F1F4 !important;
	}
}

/* =====================================================
   АДАПТАЦИЯ КНОПОК ТЕМ ДЛЯ СКРЫТОГО САЙДБАРА
   ===================================================== */

/* Когда сайдбар свернут - скрываем текст кнопок темы, оставляем только иконки */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option span {
	display: none !important;
}

/* Когда сайдбар свернут - центрируем иконки */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option {
	justify-content: center !important;
	padding: 8px !important;
	min-width: auto !important;
	width: 40px !important;
	height: 40px !important;
}

/* Стили для контейнера кнопок при свернутом сайдбаре */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-theme-toggle {
	align-items: center !important;
	padding: 20px 10px !important;
}

/* Иконки кнопок тем при свернутом сайдбаре */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option i {
	font-size: 18px !important;
	width: 18px !important;
	height: 18px !important;
	line-height: 18px !important;
	/* Убираем фон с иконки */
	color: rgba(240, 241, 244, 0.9) !important;
	background: transparent !important;
}

/* Активная кнопка темы при свернутом сайдбаре */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option.active {
	background: #1467CC !important;
	color: #F0F1F4 !important;
	box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
	border: 1px solid #1467CC !important;
}

.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option.active i {
	color: #F0F1F4 !important; /* Белые иконки для активной кнопки */
}

/* Hover эффекты для свернутого состояния */
.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	color: rgba(240, 241, 244, 0.9) !important;
}

.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option.active:hover {
	background: #1467CC !important;
	color: #F0F1F4 !important;
}

/* Стили для светлой темы при свернутом сайдбаре */
body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option i {
	color: rgba(26, 37, 56, 0.9) !important; /* Темные иконки */
	background: transparent !important; /* Убираем фон с иконки */
}

body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option:hover {
	background: rgba(20, 103, 204, 0.1) !important;
	border: 1px solid rgba(20, 103, 204, 0.2) !important;
	color: rgba(26, 37, 56, 0.9) !important;
}

body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option.active {
	background: #1467CC !important;
	color: #F0F1F4 !important;
	box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
	border: 1px solid #1467CC !important;
}

body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option.active i {
	color: #F0F1F4 !important; /* Белые иконки для активной кнопки в светлой теме */
}

body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .theme-option.active:hover {
	background: #1467CC !important;
	color: #F0F1F4 !important;
}

/* Дополнительные правила для десктопа - для приоритета */
@media screen and (min-width: 769px) {
	body.bg-theme3 .theme-option.active {
		background: #1467CC !important;
		color: #F0F1F4 !important;
		box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
		border: 1px solid #1467CC !important;
		width: auto !important;
		max-width: 120px !important;
		min-width: 100px !important;
	}
	
	body .theme-option.active {
		background: #1467CC !important;
		color: #F0F1F4 !important;
		box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
		border: 1px solid #1467CC !important;
		width: auto !important;
		max-width: 120px !important;
		min-width: 100px !important;
	}
	
	/* Стили для светлой темы на десктопе */
	body.bg-theme3 .theme-option:hover {
		background: rgba(26, 37, 56, 0.08) !important;
		color: rgba(26, 37, 56, 0.9) !important;
	}
	
	/* Принудительное переопределение иконок в светлой теме */
	body.bg-theme3 .theme-option i {
		color: rgba(26, 37, 56, 0.9) !important;
		background: #E6EEF7 !important;
	}
}

/* =====================================================
   ФИНАЛЬНЫЕ ПЕРЕОПРЕДЕЛЕНИЯ ДЛЯ СВЕТЛОЙ ТЕМЫ
   ===================================================== */

/* Принудительное переопределение цветов кнопок тем в светлой теме */
body.bg-theme3 .sidebar-theme-toggle .theme-option {
	background: rgba(20, 103, 204, 0.05) !important;
	border: 1px solid rgba(20, 103, 204, 0.1) !important;
	color: rgba(26, 37, 56, 0.8) !important;
}

body.bg-theme3 .sidebar-theme-toggle .theme-option i {
	color: rgba(26, 37, 56, 0.9) !important;
	background: transparent !important;
}

/* Также для свернутого сайдбара */
body.bg-theme3 .wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-theme-toggle .theme-option i {
	color: rgba(26, 37, 56, 0.9) !important;
	background: transparent !important;
}

/* =====================================================
   СТИЛИ ДЛЯ ИНТЕРАКТИВНОГО ГРАФИКА ДОСТАВОК
   ===================================================== */

/* Кнопки периодов в заголовке */
.period-filters-header {
	display: flex !important;
	gap: 6px !important;
	margin-top: 15px !important;
	flex-wrap: wrap !important;
	padding: 0 !important;
}

/* Кнопки периодов (общие стили) */
.period-filters,
.period-filters-header {
	display: flex !important;
	gap: 30px !important;
	margin-bottom: 15px !important;
	flex-wrap: wrap !important;
	padding: 0 !important;
}

.period-btn {
	padding: 8px 16px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 20px !important;
	color: rgba(240, 241, 244, 0.8) !important;
	font-size: 14px !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	outline: none !important;
}

.period-btn:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: rgba(240, 241, 244, 0.9) !important;
}

.period-btn.active {
	background: #1467CC !important;
	border-color: #1467CC !important;
	color: #F0F1F4 !important;
	box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
}

/* Стили для светлой темы */
body.bg-theme3 .period-btn {
	background: rgba(20, 103, 204, 0.05) !important;
	border: 1px solid rgba(20, 103, 204, 0.1) !important;
	color: rgba(26, 37, 56, 0.8) !important;
}

body.bg-theme3 .period-btn:hover {
	background: rgba(20, 103, 204, 0.1) !important;
	border-color: rgba(20, 103, 204, 0.2) !important;
	color: rgba(26, 37, 56, 0.9) !important;
}

body.bg-theme3 .period-btn.active {
	background: #1467CC !important;
	border-color: #1467CC !important;
	color: #F0F1F4 !important;
	box-shadow: 0 2px 8px rgba(20, 103, 204, 0.3) !important;
}

/* Стиль для кнопки "Принять доставку" */
.delivery-btn {
	padding: 8px 16px !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 20px !important;
	color: rgba(240, 241, 244, 0.8) !important;
	text-decoration: none !important;
	font-size: 14px !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
	font-weight: 400 !important;
	transition: all 0.3s ease !important;
	cursor: pointer !important;
	display: inline-block !important;
}

.delivery-btn:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: rgba(240, 241, 244, 0.9) !important;
	text-decoration: none !important;
}

/* Светлая тема для кнопки доставки */
body.bg-theme3 .delivery-btn {
	background: rgba(20, 103, 204, 0.05) !important;
	border: 1px solid rgba(20, 103, 204, 0.1) !important;
	color: rgba(26, 37, 56, 0.8) !important;
}

body.bg-theme3 .delivery-btn:hover {
	background: rgba(20, 103, 204, 0.1) !important;
	border-color: rgba(20, 103, 204, 0.2) !important;
	color: rgba(26, 37, 56, 0.9) !important;
	text-decoration: none !important;
}

/* Область графика */
.chart-area {
	position: relative !important;
	height: 330px !important;
	overflow: visible !important;
	padding: 10px 15px 10px 15px !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

.chart-info {
	margin-bottom: 10px !important;
	padding: 0 !important;
}

/* Контейнер для графика */
#chart_00 {
	width: 100% !important;
	height: 290px !important;
	overflow: visible !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* SVG график - адаптивность */
#chart_00 svg {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
}

.chart-label {
	color: rgba(240, 241, 244, 0.6) !important;
	font-size: 14px !important;
	font-family: 'ALS Savage 2.0', sans-serif !important;
}

.chart-label strong {
	color: rgba(240, 241, 244, 0.9) !important;
	font-weight: 600 !important;
}

/* Светлая тема для информации графика */
body.bg-theme3 .chart-label {
	color: rgba(26, 37, 56, 0.6) !important;
}

body.bg-theme3 .chart-label strong {
	color: rgba(26, 37, 56, 0.9) !important;
}

/* Ограничение высоты карточки с графиком */
.dashboard-card-chart {
	max-height: 450px !important;
	overflow: visible !important;
	display: flex !important;
	flex-direction: column !important;
}

.dashboard-card-chart .card-header {
	padding: 0px 0px 10px 0px !important;
	flex-shrink: 0 !important;
}

.dashboard-card-chart .card-body {
	flex: 1 !important;
	overflow: visible !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
}

/* Ограничения для правой колонки */
.right-column-container {
	max-height: 868px !important; /* Высота левой карточки */
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
}

/* Нижние карточки */
.bottom-cards-row {
	flex: 1 !important;
	display: flex !important;
	gap: 10px !important;
	max-height: 380px !important;
}

.bottom-card-col {
	flex: 1 !important;
	max-height: 380px !important;
}

.bottom-card-col .card {
	height: 100% !important;
	max-height: 380px !important;
	display: flex !important;
	flex-direction: column !important;
}

/* Адаптация под мобильные устройства */
@media screen and (max-width: 768px) {
	.period-filters {
		gap: 6px !important;
	}
	
	.chart-area {
		height: 220px !important;
		overflow: visible !important;
		padding: 5px 10px 5px 10px !important;
		display: flex !important;
		flex-direction: column !important;
	}
	
	#chart_00 {
		height: 180px !important;
		overflow: visible !important;
	}
	
	#chart_00 svg {
		width: 100% !important;
		height: 100% !important;
		max-width: 100% !important;
		max-height: 100% !important;
	}
	
	.dashboard-card-chart {
		max-height: 300px !important;
		overflow: visible !important;
		display: flex !important;
		flex-direction: column !important;
	}
	
	.period-filters,
	.period-filters-header {
		gap: 4px !important;
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	
	.period-btn {
		padding: 6px 12px !important;
		font-size: 12px !important;
	}
	
	.delivery-btn {
		padding: 6px 12px !important;
		font-size: 12px !important;
	}
}

/* =====================================================
   АДАПТАЦИЯ ПРОФИЛЯ ДЛЯ ОЧЕНЬ МАЛЕНЬКИХ ЭКРАНОВ
   ===================================================== */
@media screen and (max-width: 480px) {
	/* Топбар для очень маленьких экранов */
	.topbar {
		padding: 0 10px !important;
	}
	
	/* Заголовок еще более компактный */
	.navbar-brand .header-title {
		font-size: 18px !important;
		line-height: 22px !important;
	}
	
	/* Профиль еще более компактный */
	.user-box {
		padding: 3px 6px !important;
		margin-right: 5px !important;
	}
	
	.user-box .user-info .user-name {
		font-size: 11px !important;
		line-height: 13px !important;
		max-width: 80px !important;
	}
	
	.user-box .user-info .designattion {
		font-size: 9px !important;
		line-height: 11px !important;
		max-width: 80px !important;
	}
	
	/* Кнопка мобильного меню более компактная */
	.mobile-menu-toggle {
		padding: 6px !important;
		top: 15px !important;
		left: 15px !important;
	}
	
	.mobile-menu-toggle i {
		font-size: 18px !important;
	}
}