:root {
  --color-deg: 221;
  --color-white: #ffffff;
  --color-black: #505050;
  --color-dark: #555555;
  --color-primary: #0d6efd;
  --color-primary-dark: #0a58ca;
  --color-primary-soft: rgb(13 110 253 / 25%);
  --color-secondary: #6c757d;
  --color-info: #0dcaf0;
  --color-danger: #dc2626;
  --color-warning: #f59e0b;
  --color-success: #23c55d;
  --color-light: #f7f7f7;
  --color-gray: #f2f2f2;
  --color-body: rgb(241 245 249);
  --primary: hsl(var(--color-deg), 39%, 10%);
  --secondary: hsl(var(--color-deg), 39%, 15%);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06) !important;
  --slide-annimation: cubic-bezier(.25, .8, .25, 1);
  --font-size: 0.875rem;
}

:focus-visible {
  outline: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  /*background: #f1f1f1;*/
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/** {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}*/

body {
  background-color: var(--color-body);
  color: var(--color-black);
  font-size: var(--font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-weight: 600;
  overflow: overlay;
}

.bg-body {
  background-color: var(--color-body)!important;
}

iframe {
  display: block;
}

.w-30 {
  width: 30%;
}

.w-70 {
  width: 70%;
}

.text-dark {
  color: var(--color-dark)!important;
}

.text-black {
  color: var(--color-black)!important;
}

.text-gray {
  color: rgb(148, 163, 184);
}

.message-wrapper {
  background-color: var(--color-white);
}

.margin-bottom-minus {
  margin-bottom: -2px;
}

.text-primary {
  color: var(--color-primary)!important;
}

.text-soft-primary {
  color: rgb(207 226 255)!important;
}

.bg-primary {
  background-color: var(--color-primary)!important;
}

.bg-soft-primary {
  background-color: rgb(207 226 255)!important;
}

.text-danger {
  color: var(--color-danger)!important;
}

.text-soft-danger {
  color: rgb(248 212 212)!important;
}

.bg-danger {
  background-color: var(--color-danger)!important;
}

.bg-soft-danger {
  background-color: rgb(248 212 212)!important;
}

.text-warning {
  color: var(--color-warning)!important;
}

.text-soft-warning {
  color: rgb(253 236 206)!important;
}

.bg-warning {
  background-color: var(--color-warning)!important;
}

.bg-soft-warning {
  background-color: rgb(253 236 206)!important;
}

.text-success {
  color: var(--color-success)!important;
}

.text-soft-success {
  color: rgb(211 243 223)!important;
}

.bg-success {
  background-color: var(--color-success)!important;
}

.bg-soft-success {
  background-color: rgb(211 243 223)!important;
}

.text-info {
  color: var(--color-info)!important;
}

.text-soft-info {
  color: rgba(207 244 252)!important;
}

.bg-info {
  background-color: var(--color-info)!important;
}

.bg-soft-info {
  background-color: rgba(207 244 252)!important;
}

.bg-gray {
  background-color: var(--color-gray)!important;
}

.bg-light-gray {
  background-color: var(--color-light)!important;
}

.bg-dark-primary {
  background-color: var(--primary)!important;
}

.bg-dark-secondary {
  background-color: var(--secondary)!important;
}

.bg-soft-secondary {
  background-color: #6c757d33!important;
}

.shadow-sm {
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow)!important;
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow)!important;
}

ins {
  text-decoration: none;
  background-color: rgb(211 243 223);
  color: var(--color-success);
}

del {
  text-decoration: line-through;
  background-color: rgb(248 212 212);
  color: var(--color-danger);
}

.badge {
  line-height: normal;
}

.tooltip-inner {
  font-size: small;
}

.back-nav > i {
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  color: #74788d;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 8%);
  box-shadow: 0 2px 3px rgb(0 0 0 / 8%);
}

.back-nav > i:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.text-truncate {
  max-width: -webkit-fill-available;
}

/* breadcrumb */
.breadcrumb-item+.breadcrumb-item::before {
  content: "\ea50";
  font-family: boxicons!important;
  height: 18px;
}

.breadcrumb-item+.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb {
  align-items: center;
}
/* breadcrumb */

/* form */
form {
  margin: 0;
  padding: 0;
}

.form-control {
  /*padding: 7px .75rem;
  min-height: 40px;*/
  border-radius: 6px;
  font-size: var(--font-size);
}

.form-control-sm {
  font-size: 12px;
  min-height: 32px;
  display: flex;
}

.form-group {
  margin-bottom: 16px;
}

.form-group > label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.input-group-text {
  min-height: 35px;
  border-radius: 6px;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -3px;
}

textarea.form-control {
  min-height: 100px;
}
/* form */

.tooltip {
  font-size: var(--font-size);
}

/* border */
.border-top {
  border-top: 1px solid rgb(226, 232, 240)!important;
}

.border-botom {
  border-bottom: 1px solid rgb(226, 232, 240)!important;
}

.border-left {
  border-left: 1px solid rgb(226, 232, 240)!important;
}

.border-right {
  border-right: 1px solid rgb(226, 232, 240)!important;
}

.border-botom-transparent {
  border-bottom: 1px solid transparent!important;
}
/* border */

.cursor-pointer {
  cursor: pointer;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.vr {
  box-sizing: content-box;
  height: 18px;
  width: 1px;
  border-right: solid 1px #dcdcdc;
  padding: 0 !important;
  display: block;
}

.hr {
  box-sizing: content-box;
  height: 1px;
  width: 18px;
  border-top: solid 1px #dcdcdc;
  padding: 0 !important;
  display: block;
}

.last-child-mb-0 > *:last-child {
  margin-bottom: 0 !important;  
}

.last-child-pb-0 > *:last-child {
  padding-bottom: 0 !important;
}

.selectize-control {
  display: flex;
}

.dropdown-item .mdi:before {
  display: flex;
  line-height: 20px;
}

.dropdown-item i {
  color: #6f6f6f;
}

.dropdown-item.active i {
  color: #fff;
}

.dropdown-divider {
  border-top: 1px solid var(--color-secondary);
}

.selectize-input {
  border-radius: 6px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05) !important;
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)!important;
}

.rounded {
  border-radius: 6px!important;
}

.border {
  border: 1px solid #ced4da!important;
}

/* button */
.btn:not(.btn-lg) {
  font-weight: 500;
  font-size: .875rem;
}

.btn.d-flex {
  min-height: 37px;
}

.btn-rounded {
  padding: 7px 20px;
  border-radius: 30px;
}

.btn-white {
  background: var(--color-gray);
  border: 1px solid var(--color-gray);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
}

.btn-white:hover {
  background: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline {
  border: 1px solid #ced4da;
}

.btn-outline:hover {
  background: var(--color-gray);
}

.btn-outline.dark {
  background: transparent;
  border: 2px solid var(--bs-gray);
  color: var(--bs-gray);
}

.btn-outline.dark:hover {
  background: transparent;
  border: 2px solid var(--bs-white);
  color: var(--bs-white);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
  border-width: 2px;
}

.btn-danger {
  background-color: var(--color-danger);
  border-color: var(--color-danger);
}

.btn-danger:hover,
.btn-check:focus+.btn-danger,
.btn-danger:focus {
  background-color: rgb(202 33 33);
  border-color: rgb(202 33 33);
}

.btn-warning {
  background-color: var(--color-warning);
  border-color: var(--color-warning);
  color: var(--color-white);
}

.btn-warning:hover,
.btn-check:focus+.btn-warning,
.btn-warning:focus {
  background-color: rgb(228 150 12);
  border-color: rgb(228 150 12);
  color: var(--color-white);
}

.btn-success {
  background-color: var(--color-success);
  border-color: var(--color-success);
}

.btn-success:hover,
.btn-check:focus+.btn-success,
.btn-success:focus {
  background-color: rgb(31 173 81);
  border-color: rgb(31 173 81);
}
/* button */

a {
  text-decoration: none;
}

a.hover:hover {
  text-decoration: underline;
}

/* table */
.table-responsive {
  position: relative;
  background: #f9f9f9;
  height: 100%;
}

.table th,
.table td {
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.table td {
  background-color: #fff;
  border-bottom: 1px solid rgb(226, 232, 240)!important;
}

.table th {
  border-bottom: 0!important;  
  vertical-align: middle;
}

.table thead {
  position: sticky;
  top: 0;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  z-index: 1;
}

.table thead .sorting,
.table thead .sorting_asc,
.table thead .sorting_desc {
  cursor: pointer;
  position: relative;
  padding-right: 35px;
}

.table thead .sorting:before,
.table thead .sorting:after,
.table thead .sorting_asc:before,
.table thead .sorting_asc:after,
.table thead .sorting_desc:before,
.table thead .sorting_desc:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}

.table thead .sorting.text-center,
.table thead .sorting_asc.text-center,
.table thead .sorting_desc.text-center {
  padding-left: 35px;
}

.table thead .sorting:before,
.table thead .sorting_asc:before,
.table .sorting_desc:before {
  right: 1em;
  content: "\2191";
}

.table thead .sorting:after,
.table thead .sorting_asc:after,
.table thead .sorting_desc:after {
  right: 0.5em;
  content: "\2193";
}

.table thead .sorting_asc:before,
.table thead .sorting_desc:after {
  opacity: 1;
}

.table .table-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-responsive:after {
  content: " ";
  position: absolute;
  top: 47px;
  left: 0;
  width: 100%;
  height: calc(100% - 47px);
  background-color: #fff;
  background-image: url(../images/illustrations/no-documents-found.svg?v=1.2);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: calc((100vh * 25 / 100));
  opacity: 0;
  z-index: -1;
}

.table-responsive.no-record-found:after {
  opacity: 1;
  z-index: 0;
}

.table-hover > tbody > tr:hover,
.table-hover > tbody > tr.active {
  color: inherit;
  --bs-table-accent-bg: var(--color-gray);
}
/* table */

.team .badge {
  font-size: .8em;
}

.list-inline {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* toast */
.toast-container {
  z-index: 9999;
}

.toast {
  background-color: transparent;
  border: none;
}
/* toast */

/* avatar */
img.avatar-sm, .avatar-sm > .avatar-title {
  height: 45px!important;
  width: 45px!important;
}

img.avatar-md, .avatar-md > .avatar-title {
  height: 60px!important;
  width: 60px!important;
}

img.avatar-lg, .avatar-lg > .avatar-title {
  height: 100px!important;
  width: 100px!important;
}

.avatar-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0d6efd;
  color: #fff;
  font-weight: 500;
  height: 100%;
  line-height: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.avatar-md .avatar-title {
  font-size: 24px;
}

.avatar-lg .avatar-title {
  font-size: 40px;
}

.avatar-inline {
  margin-left: -5px;
}

.avatar-inline .avatar-sm:not(:first-child) {
  margin-left: -20px;
}

.avatar-inline .avatar-sm {
  border: 5px solid var(--secondary);
  height: 55px;
  width: 55px;
}
/* avatar */

#main {
  background-color: var(--color-body);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
}

#mainmenu {
  z-index: 10;
  position: fixed;
  width: 70px;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: var(--primary);
}

#mainmenu > .container {
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100vh;
}

#mainmenu .nav-item {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
}

#mainmenu .nav-link {
  padding: 12px;
  display: inline-flex;
  color: rgb(255 255 255 / 70%);
  position: relative;
}

#mainmenu .nav-item.active {
  border-left: 3px solid var(--color-white);
}

#mainmenu .nav-item.active .nav-link {
  color: var(--color-white);
  border-radius: 6px;
  background: rgb(255 255 255 / 10%);
}

#mainmenu .nav-item:hover .nav-link {
  color: var(--color-white);
}

#mainmenu .nav-link > i {
  font-size: 20px;
}

.nav-link {
  padding: 0 8px;
  transition: .3s color;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-justified .nav-link {
  justify-content: center;
}

/*#mainmenu .nav-link .avatar {
  border: 2px solid var(--color-white);
}*/

#sidebar {
  width: 320px;
  background-color: var(--secondary);
  padding: 12px 12px 12px 82px;
  height: 100vh;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  z-index: 1;
  -webkit-transition: all .5s var(--slide-annimation);
  -moz-transition: all .5s var(--slide-annimation);
  -ms-transition: all .5s var(--slide-annimation);
  -o-transition: all .5s var(--slide-annimation);
  transition: all .5s var(--slide-annimation);
}

body.sidebar-active #sidebar {
  left: -320px;
}

#notificationbar {
  width: 250px;
  background-color: var(--secondary);
  position: fixed;
  top: 0;
  left: -250px;
  padding: 12px;
  height: 100vh;
  overflow-y: auto;
  z-index: 2;
  -webkit-transition: all .5s var(--slide-annimation);
  -moz-transition: all .5s var(--slide-annimation);
  -ms-transition: all .5s var(--slide-annimation);
  -o-transition: all .5s var(--slide-annimation);
  transition: all .5s var(--slide-annimation);
}

body.notificationbar-active #notificationbar{
  left: 70px;
}

#userbar {
  width: 250px;
  background-color: var(--secondary);
  position: fixed;
  top: 0;
  left: -250px;
  padding: 12px;
  height: 100vh;
  overflow-y: auto;
  z-index: 3;
  -webkit-transition: all .5s var(--slide-annimation);
  -moz-transition: all .5s var(--slide-annimation);
  -ms-transition: all .5s var(--slide-annimation);
  -o-transition: all .5s var(--slide-annimation);
  transition: all .5s var(--slide-annimation);
}

body.userbar-active #userbar{
  left: 70px;
}

/* page */
#page {
  left: 320px;
  width: calc(100% - 320px);
  position: relative;
  -webkit-transition: all .5s var(--slide-annimation);
  -moz-transition: all .5s var(--slide-annimation);
  -ms-transition: all .5s var(--slide-annimation);
  -o-transition: all .5s var(--slide-annimation);
  transition: all .5s var(--slide-annimation);
}

body.sidebar-active #page {
  left: 70px;
  width: calc(100% - 70px);
}

body.mainmenu-hide #page {
  left: 0;
  width: 100%;
}

body[chat] #page {
  width: calc(100% - 380px);
}

body[chat].sidebar-active #page {
  width: calc(100% - 130px);
}

.page-header {
  height: 68px;
  padding: 16px;
  border: 0;
}

.page-title {
  margin: 0;
  font-size: 20px;
}

/* nav-link */
.nav-link.icon {
  padding: 8px;
  border-radius: 50%;
  color: var(--color-black);
  font-size: 18px;
  -webkit-transition: all .5s var(--slide-annimation);
  -moz-transition: all .5s var(--slide-annimation);
  -ms-transition: all .5s var(--slide-annimation);
  -o-transition: all .5s var(--slide-annimation);
  transition: all .5s var(--slide-annimation);
}

.nav-link.icon:hover {
  background-color: rgba(148, 163, 184, 0.2);
}

.nav-link.dark.icon {
  color: var(--color-white);
  opacity: 0.6;
}

.nav-link.dark.icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
/* nav-link */

.page-contents {
  padding: 0;
  margin-top: 0;
  min-height: calc(100vh - 68px);
}

.page-footer {
  z-index: 1;
  border-top: 1px solid #d8dade;
}

.page-chat {
  width: 409px;
  height: 100vh;
  top: 0;
  right: -350px;
  display: flex;
  position: fixed;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-transition: all .5s var(--slide-annimation);
  -moz-transition: all .5s var(--slide-annimation);
  -ms-transition: all .5s var(--slide-annimation);
  -o-transition: all .5s var(--slide-annimation);
  transition: all .5s var(--slide-annimation);
  z-index: 90;
}

.page-chat .nav-link.chat-icon {
  width: 60px;
  font-size: 18px;
}

.page-chat .nav-link > .avatar {
  height: 35px;
  width: 35px;
  line-height: 35px;
}

.page-chat .nav-link.user:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 2px solid #fff;
  bottom: 10px;
  z-index: 2;
}

.page-chat .nav-link.user.idle:before {
  background: var(--color-warning);
}

.page-chat .nav-link.user.online:before {
  background: var(--color-success);
}

.page-chat .nav-link {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 18px;
}

.page-chat > .nav-link.chat-icon:hover,
.page-chat > .nav-link.chat-icon:hover {
  color: var(--color-black);
}

body.chatbar-active .page-chat {
  right: 0;
}
/* page */

.page-info {
  border-bottom: 1px solid rgb(226, 232, 240);
  /*box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);*/
}

.avatar {
  color: #4D5052;
  font-weight: 600;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: inline-block;
  background: #808488 no-repeat center/cover;
  position: relative;
  vertical-align: bottom;
  font-size: .875rem;
  user-select: none;
}

/* nav tabs */
.nav-tabs-custom {
  border-bottom: none;
  padding: 0 8px;
  z-index: 1;
}

.nav-tabs-custom .nav-item {
  position: relative;
  padding: 0 8px;
}

.nav-tabs-custom .nav-item .nav-link.active {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-white);
  background: none;
}

.nav-tabs-custom.light .nav-item .nav-link.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.nav-tabs-custom .nav-link:hover:not(.disabled) {
  border-color: var(--color-white);
  color: var(--color-white);
}

.nav-tabs-custom.light .nav-link:hover:not(.disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-tabs-custom .nav-item .nav-link {
  border: none;
  padding: 9px 0px;
  transition: .3s border-color;
  border-bottom: 2px solid transparent;
  color: rgb(255 255 255 / 50%);
  font-weight: 600;
}

.nav-tabs-custom .nav-item .nav-link.nav-icon {
  min-height: 41px;
}

.nav-tabs-custom.light .nav-item .nav-link {
  color: rgb(0 0 0 / 50%);
}

/*.nav-tabs-custom .nav-item:last-child {
  padding-right: 0;
}*/

/*.tab-content {
  margin-top: 12px;
}*/
/* nav tabs */

/* dropdown menu */
.dropdown-custom > li.nav-item {
  border-radius: 6px;
  background: rgb(0 0 0 / 30%);
}

.dropdown-custom > li.nav-item > a.nav-link {
  justify-content: space-between;
  color: white;
  padding: 10px 12px;
}

.dropdown-menu:not(.no-close-onclick) .dropdown-item:active {
  color: #1e2125;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-menu {
  font-size: var(--font-size);
}

.dropdown-menu,
.popover {
  border: 0;
  border-radius: 0.5rem;
  margin-top: 5px!important;
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
  font-size: var(--font-size);
}

.dropdown-menu.nav {
  display: none;
}
/* dropdown menu */

/* sidebar menu */
.sidebarmenu li {
  display: block;
  line-height: initial;
  width: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  overflow: hidden;
  /*border: 2px solid transparent;*/
}

.sidebarmenu li a {
  display: flex;
  line-height: initial;
  align-items: center;
  padding: 8px 12px;
  color: rgb(255 255 255 / 70%);
  position: relative;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
  text-decoration: none;
  font-weight: 400;
}

.sidebarmenu li a i {
  color: rgb(255 255 255 / 70%);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.sidebarmenu > li:not(.menu-title) {
  border-radius: 8px;
  margin-bottom: 6px;
  border: 2px solid transparent;
}

.sidebarmenu > li:last-child {
  margin-bottom: 0px;
}

.sidebarmenu > li a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebarmenu > li.active {
  border: 2px solid #444c5c;
}

.sidebarmenu > li.active,
.sidebarmenu > li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/*.sidebarmenu li.active > a,
.sidebarmenu li:hover > a {
  border-radius: 3px;
}*/

.sidebarmenu li.active a,
.sidebarmenu li.active a i,
.sidebarmenu li:hover a,
.sidebarmenu li:hover a i {
  color: var(--color-white);
}

.sidebarmenu li.menu-title {
  padding: 12px 0;
  margin-bottom: 6px;
  letter-spacing: .05em;
  pointer-events: none;
  cursor: default;
  font-size: var(--font-size);
  text-transform: uppercase;
  color: rgb(148, 163, 184);
  font-weight: 600;
}

/*.sidebarmenu .sidebarmenu-parent {
  border: 2px solid transparent;
}*/

.sidebarmenu .sidebarmenu-parent.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 2px solid #444c5c;
}

.sidebarmenu .sidebarmenu-parent > a.collapsed > i.bx-chevron-down {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.sidebarmenu .submenu li.active{
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
}

.submenu > li > a {
  margin: 0 12px;
  transition: all 0.35s ease !important;
  margin-right: 0px;
}

.submenu > li > a:hover {
  padding-left: 18px;
}

.submenu > li:last-child {
  margin-bottom: 0;
}

.submenu > li:first-child > a {
  border-top: 1px solid #444c5c;
}

.has-sub {
  padding: 0px 10px;
  padding-right: 0px;
}
/* sidebar menu */

/* pagemenu menu */
.pagemenu li {
  display: block;
  width: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin: 6px 0;
  overflow: hidden;
}

.pagemenu li a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: #6c757d;
  position: relative;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
  text-decoration: none;
  font-weight: 400;
}

.pagemenu li a i {
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
}

.pagemenu li a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 20px;
}

.pagemenu li.active > a,
.pagemenu li:hover > a {
  background-color: rgb(226, 232, 240);
  border-radius: 9999px;
  color: var(--color-black);
}

.pagemenu li:hover a,
.pagemenu li:hover a i {
  color: var(--color-black);
}

.pagemenu li.active a i {
  color: var(--color-primary);
}

.pagemenu li.menu-title {
  padding: 12px 0;
  letter-spacing: .05em;
  pointer-events: none;
  cursor: default;
  font-size: var(--font-size);
  text-transform: uppercase;
  color: rgb(148, 163, 184);
  font-weight: 600;
}
/* pagemenu menu */

/* table */
.table {
  color: var(--color-black);
}

.table .thead-light th {
  background-color: var(--color-gray);
  border: none;
  user-select: none;
}

.table.table-centered td,
.table.table-centered th {
  vertical-align: middle;
}
/* table */

/* card */
.card {
  border: 0;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
}
/* card */

/* border radius */
.border-radius-lg { border-radius: 1rem!important; }
.border-radius-lg-top-left { border-top-left-radius: 1rem!important; }
.border-radius-lg-top-right { border-top-right-radius: 1rem!important; }
.border-radius-lg-bottom-right { border-bottom-right-radius: 1rem!important; }
.border-radius-lg-bottom-left { border-bottom-left-radius: 1rem!important; }
.border-radius-md { border-radius: .5rem!important; }
.border-radius-md-top-left { border-top-left-radius: .5rem!important; }
.border-radius-md-top-right { border-top-right-radius: .5rem!important; }
.border-radius-md-bottom-right { border-bottom-right-radius: .5rem!important; }
.border-radius-md-bottom-left { border-bottom-left-radius: .5rem!important; }
.border-radius-sm { border-radius: .25rem!important; }
.border-radius-sm-top-left { border-top-left-radius: .25rem!important; }
.border-radius-sm-top-right { border-top-right-radius: .25rem!important; }
.border-radius-sm-bottom-right { border-bottom-right-radius: .25rem!important; }
.border-radius-sm-bottom-left { border-bottom-left-radius: .25rem!important; }
.border-radius-none { border-radius: 0!important; }
.border-radius-none-top-left { border-top-left-radius: 0!important; }
.border-radius-none-top-right { border-top-right-radius: 0!important; }
.border-radius-none-bottom-right { border-bottom-right-radius: 0!important; }
.border-radius-none-bottom-left { border-bottom-left-radius: 0!important; }
/* border radius */

/* box icon */
.box-icon {
  border-radius: 6px;
  padding: 12px;
  position: relative;
  user-select: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* box icon */

/* backdrop */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.backdrop.fade {
  opacity: 0;
}

.backdrop.show {
  opacity: .32;
}
/* backdrop */

body.chatbar-active,
body.voicesearch-active {
  overflow: hidden;
}

/* selectize */
.selectize-input {
  border: 1px solid #ced4da;
  padding: 6px 12px;
}

/*.selectize-control.multi .selectize-input.has-items {
  padding: 7px 12px 4px;
}*/

.selectize-input {
  min-height: 35px;
}

/*.form-control.selectize-control {
  height: calc(1.5em + .94rem + 2px);
}*/

.form-check {
  display: flex;
  margin: 0;
  align-items: center;
  padding: 0;
}

.form-check .form-check-input {
  margin: 0;
  float: none;
}

.form-check .form-check-label {
  margin: 0 0 0 6px;
  line-height: initial;
}

.form-check > *, .form-check-input {
  cursor: pointer;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 3px;
  background: #efefef;
  color: #333333;
  border: 0 solid rgba(0, 0, 0, 0);
}

.selectize-control.multi .selectize-input > div.active {
  background: var(--color-primary);
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
}

.selectize-control.multi .selectize-input > div {
  margin: 0 3px 3px 0;
  padding: 2px 5px;
  background: var(--color-primary);
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
  line-height: normal;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0px!important;
}

.selectize-input.focus {
  border-color: #b1bbc4;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.selectize-control.single .selectize-input:after {
  border-color: #74788d transparent transparent transparent;
  right: 12px;
}

.selectize-dropdown .create {
  padding: 0px 12px;
}

.selectize-dropdown .active {
  background-color: var(--color-primary);
  color: #fff;
}

.selectize-dropdown .create.active {
  background-color: initial;
  color: initial;
}

.selectize-dropdown .option, .selectize-dropdown .optgroup-header {
  padding: 6px 12px;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5px;
  font-weight: 400;
  border: 0;
  width: 20px;
}

.selectize-control.plugin-remove_button .remove-single {
  font-size: 14px;
  font-weight: bold;
}

/*.form-group-sm .selectize-control.plugin-remove_button .remove-single {
  line-height: 14px;
}*/

.selectize-control.plugin-remove_button [data-value] {
  padding-right: 14px!important;
  cursor: pointer;
}

.selectize-dropdown-content {
  max-height: 154px;
}

.form-group-sm .selectize-control.plugin-remove_button [data-value] {
  margin-top: 5px;
}

/*.selectize-control .selectize-input > input {
  margin: 0 -2px 0 4px!important;
}*/
/* selectize */

/* modal */
.modal-content {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 11px 15px -7px #0003, 0 24px 38px 3px #00000024, 0 9px 46px 8px #0000001f;
}

.modal-footer {
  border-top: 1px solid rgb(226,232,240);
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.dropdown-menu .modal-footer {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.modal-body.form {
  padding: 0;
}

.modal-body-icon {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50px;
}

.modal-backdrop.show {
  opacity: .32;
}

/*@media (min-width: 576px) {
  .modal-dialog {
    max-width: 600px;
  }
}*/
/* modal */

/* horizontal timeline */
.hori-timeline {
  position: relative;
  min-height: 56px;
}

.hori-timeline .item.event-list > i {
  height: 27px;
  width: 27px;
  font-size: 18px;
  border-radius: 50%;
  color: rgb(226, 232, 240);
  border-color: rgb(226, 232, 240);
  border-style: solid;
  border-width: 3px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hori-timeline .item.event-list .event-name {
  font-weight: 500;
  margin-top: 6px;
}

.hori-timeline .item.event-list.event-start > i {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hori-timeline .item.event-list.event-done > i {
  color: var(--color-success);
  border-color: var(--color-success);
}

.hori-timeline .item.event-list.event-reject > i {
  color: var(--color-danger);
  border-color: var(--color-danger);
}

.hori-timeline .item.event-list.event-stop > i {
  color: var(--color-danger);
  border-color: var(--color-danger);
}

.hori-timeline .item.event-list.event-secondary > i {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.hori-timeline .item.event-list.event-success > i {
  color: var(--color-success);
  border-color: var(--color-success);
}

.hori-timeline .item.event-list.event-danger > i {
  color: var(--color-danger);
  border-color: var(--color-danger);
}

/*.hori-timeline .item.event-list.event-warning > i {
  color: var(--color-warning);
  border-color: var(--color-warning);
}*/

.hori-timeline .item.event-list.event-reject > i::before {
  content: "\ec8d";
}

.hori-timeline .event-list::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 12px;
  border-bottom: 3px solid rgb(226, 232, 240);
  z-index: -1;
}

.hori-timeline .owl-theme .custom-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 27px;
  display: flex;
  align-items: center;
}

.hori-timeline .owl-theme .custom-nav .owl-prev,
.hori-timeline .owl-theme .custom-nav .owl-next {
  position: absolute;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: none;
  z-index: 1;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgb(226 232 240);
}

.hori-timeline .owl-theme .custom-nav .owl-prev {
  left: 0;
}

.hori-timeline .owl-theme .custom-nav .owl-next {
  right: 0;
}

.hori-timeline .owl-theme .custom-nav .owl-prev i,
.hori-timeline .owl-theme .custom-nav .owl-next i {
  font-size: 18px;
  color: var(--color-secondary);
}

.hori-timeline .owl-theme .owl-nav .disabled {
  opacity: 1;
  background: #eef1f5
}

.hori-timeline .owl-theme .owl-nav .disabled > i {
  color: #c1c5c9;
}
/* horizontal timeline */

/* vertical timeline */
.vert-timeline {
  position: relative;
}

.vert-timeline .tl-item {
  display: flex;
}

.vert-timeline .tl-dot {
  position: relative;
  border-color: rgba(160, 175, 185, .15);
}

.vert-timeline .tl-dot:after,
.vert-timeline .tl-dot:before {
  content: '';
  position: absolute;
  border-color: inherit;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.vert-timeline .tl-dot:after {
  width: 0;
  height: auto;
  top: 25px;
  bottom: -15px;
  border-right-width: 0;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0;
}

.vert-timeline .tl-item > * {
  padding: 8px 10px;
}

.vert-timeline .b-primary {
  border-color: var(--color-primary);
}

.vert-timeline .b-primary::before {
  box-shadow: 0 0 0 4px #0d6efd33;
}

.vert-timeline .b-success {
  border-color: var(--color-success);
}

.vert-timeline .b-success::before {
  box-shadow: 0 0 0 4px #23c55d33;
}

.vert-timeline .b-danger {
  border-color: var(--color-danger);
}

.vert-timeline .b-danger::before {
  box-shadow: 0 0 0 4px #dc262633;
}

.vert-timeline .b-warning {
  border-color: var(--color-warning);
}

.vert-timeline .b-warning::before {
  box-shadow: 0 0 0 4px #f59e0b33;
}

.vert-timeline .b-info {
  border-color: var(--color-info);
}

.vert-timeline .b-info::before {
  box-shadow: 0 0 0 4px #0dcaf033;
}

.vert-timeline .tl-item:last-child .tl-dot::after {
  border-color: transparent;
}
/* vertical timeline */

/* parsley validation */
.parsley-error,
.parsley-error:focus {
  border-color: var(--color-danger)!important;
  box-shadow: 0 0 0 0.25rem rgb(220 38 38 / 25%)!important;
}

.parsley-errors-list.filled {
  display: block;
}

.parsley-errors-list {
  display: none;
  margin: 0;
  padding: 0;
}

.parsley-errors-list>li {
  font-size: var(--font-size);
  list-style: none;
  color: var(--color-danger);
  margin-top: 6px;
}
/* parsley validation */

/* comments */
.comments {
  background: url(../images/backgrounds/bg-03.png);
}

.comments .c-time {
  font-size: .75em;
  margin: 6px 0 0 0px;
  height: 14px;
}

.comments .c-item:not(:last-child) {
  margin-bottom: 16px;
}

.comments .c-name,
.comments .c-date {
  font-size: .85em;
}

.comments .c-date {
  background-color: #fff!important;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  border-radius: 50px;
}

.comments .c-content {
  padding: 6px 7px 8px 9px;
  border-radius: 7.5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
}

.comments .c-content.me {
  background-color: #f0ffff!important;
}

.comments .c-item.justify-content-end .c-content {
  align-items: flex-end;
}

.comments .c-item.justify-content-start .c-content {
  align-items: flex-start;
}
/* comments */

/* search box */
.search-box {
  position: relative;
  background-color: var(--color-white);
  border-radius: 20px;
  /*box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);*/
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.search-box .search-text:focus {
  background-color: #fff;
  outline: 0;
  box-shadow: none;
}

/*.search-box:focus-within,
.search-box:hover {
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  -webkit-box-shadow:  0 1px 6px 0 rgb(32 33 36 / 28%);
}*/

.search-box .search-text {
  min-height: 37px;
  padding: 8px;
}

.search-box i.bx {
  font-size: 18px;
}

.search-box .search-list,
.search-box .suggession-list,
.search-box .search-keywords {
  padding: 0;
  margin: 0;  
  overflow: hidden;
  display: none;
}

.search-box .search-list li,
.search-box .suggession-list li {
  list-style: none;
  padding: 8px 16px;
}

.search-box .search-list li:hover,
.search-box .suggession-list li:hover {
  background-color: var(--color-gray);
}

.search-box .search-tools {
  position: absolute;
  top: 37px;
  background-color: #fff;
  border-top: 1px solid transparent;
  width: 100%;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  display: none;
}

body.searchbox-active .search-box {
  z-index: 100;
}

/*body.searchbox-active {
  overflow: hidden;
}*/

body.searchbox-active .search-box .search-tools {
  border-top: 1px solid rgb(226, 232, 240);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  opacity: 1;
  /*box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  box-shadow: 0px 7px 7px 0px #0003;*/
  box-shadow: 0px 4px 6px 0px rgb(32 33 36 / 28%);
  /*box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  -webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);*/
}

body.searchbox-active.search-history-visible .search-box,
body.searchbox-active.search-suggession-visible .search-box,
body.searchbox-active.tags-visible .search-box {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

body.searchbox-active.search-history-visible .search-tools,
body.searchbox-active.search-suggession-visible .search-tools,
body.searchbox-active.tags-visible .search-tools {
  display: flex;
}

body.searchbox-active.search-history-visible .search-list,
body.searchbox-active.search-suggession-visible .suggession-list,
body.searchbox-active.tags-visible .search-keywords {
  display: block;
}
/* search box */

/* empty list */
.empty-list:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100%);
  background-image: url(../images/illustrations/no-records-found.svg?v=1.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
/* empty list */

/* grid list */
.grid-list .item-name {
  margin-bottom: 2px;
}

.grid-list .item-size {
  font-size: var(--font-size);
}

.grid-list .item-icon {
  font-size: 80px;
}

.grid-list .item-info {
  font-size: 18px;
}

.grid-list .item-extn {
  font-size: 13px;
  top: 32px;
  left: 8px;
  padding: 0 6px;
}
/* grid list */

/* upload zone */
.file-browser {
  position: relative;
  cursor: pointer;
}

.file-browser input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.empty-upload-zone:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100%);
  background-image: url(../images/illustrations/upload.svg?v=1.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

ul.file-queue {
  padding: 0;
  margin: 0;
}

ul.file-queue:empty {
  margin: 0!important;
}

ul.file-queue {
  list-style: none;
}

ul.file-queue > li:last-child{
  margin-bottom: 0!important;
}
/* upload zone */

/* voice search microphone */
.mic-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none!important;
}

.mic-container .speak-text {
  margin: 0 100px 0 0;
  min-width: 300px;
}

.mic-container .mic-level-container {
  width: 225px;
  height: 225px;
}

.mic-container .mic-icon {
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
}

.mic-container .mic-level {
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #0d6efd33;
  z-index: -1;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

body.voicesearch-active .mic-container {
  display: flex!important;
}
/* voice search microphone */

/* tag list */
.tag-list {
  padding: 0;
  margin: 0;
}

.tag-list li {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-gray);
  cursor: pointer;
}

.tag-list li.tag-title {
  margin-top: 1.5rem;
  color: var(--color-secondary);
  padding: 0 1rem;
}

.tag-list li > i {
  font-size: 18px;
  color: #6c757d;
}

.tag-list.transparent li {
  background-color: transparent;
}

.tag-list.inline li {
  display: inline-flex;
  margin-right: 0.5rem;
  float: left;
}

.tag-list li:not(.tag-title).active,
.tag-list li:not(.tag-title):hover {
  background-color: rgb(226, 232, 240);
}

.tag-list li.active > i {
  color: var(--color-primary);
}
/* tag list */

/* tag inputs */
.bootstrap-tagsinput {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  display: inline-block;
  padding: 6px 0;
  vertical-align: middle;
  width: -webkit-fill-available;
  cursor: text;
  margin-top: 0;
  border-radius: 6px;
  min-height: 40px;
  line-height: unset;
}

.bootstrap-tagsinput input {
  padding: 0 6px;
}

.bootstrap-tagsinput .tag {
  color: white;
  background: var(--color-primary);
  padding: 3px 4px;
  border-radius: 3px;
  display: inline-flex;
  margin: 0 2px 2px 3px;
  height: 25px;
  align-items: center;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 6px;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
  padding: 0;
}

/* tag inputs */

/* modal list */
.modal-list {
  max-height: 495px;
  overflow: auto;
}

.modal-list .modal-item:last-child {
  border: 0!important;
}
/* modal list */

.header-menu .navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 400;
  padding: 0.375rem 0.75rem;
  width: 100%;
}

.table-overlay {
  display: none;
}

.help-form .form-control {
  background: transparent;
  border: 1px solid var(--bs-gray);
  color: var(--bs-white);
}

.help-form .search-icon {
  color: var(--bs-gray);
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;
}

.box-shadow-none {
  box-shadow: none !important;
}

/* pagination */
#nav-pagination a {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

.page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.page-link:hover, .page-link:focus {
  color: var(--color-primary-dark);
}

.page-link {
  color: var(--color-primary);
}

.page-item:first-child .page-link {
  margin-left: 3px;
}

.page-item.disabled .page-link {
  color: #ced4da;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #ced4da;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pagination-rounded .page-link {
  border-radius: 30px!important;
  margin: 0 3px!important;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  text-align: center;
  line-height: 32px;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
  -webkit-box-shadow: 0 0 #0000, 0 0 #0000, var(--shadow);
}
/* pagination */

/* logo */
.logo {
  height: 45px;
  width: auto;
}

.sidebar-logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sidebar-logo {
  height: 30px;
  margin: 7px 0;
}
/* logo */

.file-extn {
  left: 5px;
  bottom: 5px;
  padding: 0.05rem 0.25rem;
  line-height: 13px;
  letter-spacing: .05em;
  font-family: system-ui;
  font-size: 9px;
}

/* non mobile view */
@media screen and (max-width: 1200px) {
  #page {
    left: 70px;
    width: calc(100% - 70px);
  }

  #sidebar {
    left: -100%;
  }

  body.sidebar-active #sidebar {
    left: 0;
    position: fixed;
    z-index: 89;
  }

  #userbar {
    left: -320px;
  }

  body.userbar-active #userbar {
    left: 0;
    position: fixed;
    z-index: 89;
  }

  #notificationbar {
    left: -320px;
  }

  body.notificationbar-active #notificationbar {
    left: 0;
    position: fixed;
    z-index: 89;
  }

  body.sidebar-active #page {
    left: 70px;
    width: calc(100% - 70px);
  }
}
/* non mobile view */

/* mobile view */
@media screen and (max-width: 767px) {
  #mainmenu {
    flex-direction: row;
    height: auto;
    width: 100%;
    padding: 0;
    z-index: 90;
  }

  #mainmenu > .container {
    flex-direction: row;
    height: 68px;
    align-items: center;
    padding: 0;
  }

  #mainmenu #mainmenu-left,
  #mainmenu .dropdown {
    display: flex;
    align-items: center;
  }

  #mainmenu .nav-item.active {
    border-left: 0;
  }

  #mainmenu .nav-item {
    border-left: 0;
    border-right: 0;
  }

  #sidebar {
    padding-top: 80px;
    padding-left: 12px;
    width: 100%;
  }

  body.sidebar-active #sidebar {
    left: 0;
    position: fixed;
  }

  #userbar {
    padding-top: 92px;
    padding-left: 12px;
    /*width: 100%;*/
  }

  body.userbar-active #userbar {
    left: 0;
    position: fixed;
  }

  #notificationbar {
    padding-top: 78px;
    padding-left: 12px;
    /*width: 100%;*/
  }

  body.notificationbar-active #notificationbar {
    left: 0;
    position: fixed;
  }

  #page {
    padding: 68px 0 0;
    width: 100%;
    left: 0;
  }

  body.sidebar-active #page {
    left: 0;
    width: 100%;
  }

  .page-chat {
    right: -442px;
  }

  body.chatbar-active .page-chat {
    width: 100%;
  }

  .table-responsive {
    width: 100vw;
  }

  #page .progress-bar {
    z-index: 99;
  }

  .card-transparent {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: transparent;
  }

  .bg-xs-white {
    background-color: white;
  }

  .mic-container .mic-icon {
    width: 100px;
    height: 100px;
  }
}
/* mobile view */

/* uploader style */
#file-drop-zone {
  border: 2px dashed var(--color-black)!important;
  border-radius: 6px;
}

#file-drop-zone.drag-over {
  border: 2px dashed var(--color-primary)!important;
  background : rgba(49, 132, 253, 0.07)!important;
}

ul {
  list-style: none!important;
}
/* uploader style */

/* multi select tag checkbox */
.check-box-tag > label {
  font-size: 12px;
  background: var(--color-light);
  padding: 3px 3px 3px 8px;
  border-radius: 24px;
  color: var(--color-black);
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.check-box-tag > input[type="checkbox"] {
  display: none;
}

.check-box-tag > input[type="checkbox"]:checked+label {
  background: var(--color-black);
  color: #fff;
}

.check-box-tag > input[type="checkbox"]:checked+label.dark {
  background: #000;
  color: #fff;
}
/* multi select tag checkbox */

/* css style by Mou*/
ul.folder-list {
  margin: 0;
  padding: 0;
}

.folder-list .form-label {
  margin-bottom: 0;
}

.folder-list li a {
  /*color: var(--darkgray);*/
  font-size: 14px;
  line-height: 18px;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 15px;
 /* font-weight: 400;*/
  position: relative;
  transition: 0.5s ease-in-out;
  width: 100%;
  overflow: hidden;
}

.folder-list .form-check {
  line-height: 22px;
}
/* css style by Mou*/

/* bs form validation */
.form-control.is-valid, .was-validated .form-control:valid {
  border-color: var(--color-success);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2323c55d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: var(--color-danger);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc2626'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc2626' stroke='none'/%3e%3c/svg%3e");
}
/* bs form validation */
