:root {
  --color-deg: 221;
  --color-white: #ffffff;
  --color-black: #5A646E;
  --color-dark: #555555;
  --color-primary: #ED0000 !important;
  /*--bs-warning-rgb: 230,0,18;*/
  --bs-primary-rgb: 230, 0, 18;
  --color-secondary: #A3A9AD;
  --color-info: #0dcaf0;
  --color-danger: #ED0000;
  --color-warning: #f59e0b;
  --color-success: #23c55d;
  --color-light: #f6f6f6;
  --color-gray: #c8c8c8;
  --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: 14px;
  --line-height: 25px;
  --mmcfont: 'MMC-Font-regular';
  --mmcfontmd: 'MMC-Font-Medium';
  --mmcfontbd: 'MMC-Font-Bold';
}

* {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a {
  color: #000;
  transition: color 0.25s ease-in-out;
}

a:hover,
a.active {
  color: var(--color-danger);
}

.badge {
  border-radius: 0;
}

.bg-danger {
  background-color: var(--color-danger) !important;
}

.toast-body {
  background-color: #000 !important;
}

.text-gray {
  color: #9b9b9b;
}

/* button */
.btn {
  padding: 8px 16px;
  letter-spacing: .2em;
  line-height: 18px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--mmcfontmd);
  justify-content: center;
  transition: 0.5s ease-in-out;
  min-width: 100px;
}

.btn:focus {
  box-shadow: none;
}

.btn-primary,
.btn-success,
.btn-warning {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-primary:active,
.btn-success:active,
.btn-warning:active,
.btn-primary:hover,
.btn-success:hover,
.btn-warning:hover,
.btn-primary:focus,
.btn-success:focus,
.btn-warning:focus {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-danger {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-danger:active,
.btn-danger:hover,
.btn-danger:focus {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn.btn-outline {
  color: #000;
  border: 1px solid #000;
}

.btn.btn-outline:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}

.btn.btn-outline.red {
  color: var(--color-danger);
  border: 1px solid var(--color-danger);
}

.btn.btn-outline.red:hover {
  color: #fff;
  background: var(--color-danger);
  border-color: var(--color-danger);
}

.btn.btn-outline.red:hover {
  color: #fff;
  background: var(--color-danger);
  border-color: var(--color-danger);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: var(--darkgray);
  background-color: var(--gray-light);
  border-color: var(--darkgray);
}
/* button */

.form-check-label {
  font-weight: 600;
}

/* table */
.table>:not(:last-child)>:last-child>* {
  border-bottom-color: inherit;
}

.table th {
  color: var(--color-black);
  border-bottom: 0 !important;
}

.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 th.sorting {
  padding: 0.469rem 1.5rem 0.469rem 16px;
  /* white-space: nowrap; */
}

.table th:not(.sorting) {
  padding: 0.469rem 16px;
  /* white-space: nowrap; */
}

.table td {
  padding: 0.75rem 16px;
  /* white-space: nowrap; */
}

.table-responsive {
  height: 100%;
}

.table thead .sorting,
.table thead .sorting_asc,
.table thead .sorting_desc {
  cursor: pointer;
  position: relative;
  padding-right: 60px;
}

.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.5em;
  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: 2.25em;
  content: "\2191";
}

.table thead .sorting:after,
.table thead .sorting_asc:after,
.table thead .sorting_desc:after {
  right: 1.25em;
  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;
  min-height: 25px;
}

.table-responsive:after {
  content: " ";
  position: absolute;
  top: 47px;
  left: 0;
  width: 100%;
  height: calc(100% - 47px);
  /*background-image: url(../images/illustrations/no-documents-found.svg?v=1.2);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 25%;
  opacity: 0;
  z-index: -1;
}

.table-responsive.no-record-found:after {
  opacity: 1;
  z-index: 0;
}

/* table */

/* image-viewer */
.image-viewer {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
/* image-viewer */

/* 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%;
  -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 */

/* form control */
.form-group {
  position: relative;
  margin-top: 16px;
  margin-bottom: 48px;
}

.row .form-group {
  margin-bottom: 32px; 
}

.form-group .form-control:focus~.form-label,
.form-group .form-control:not(:placeholder-shown)~.form-label,
.form-group.fixed-label .form-label {
  transform: scale(.85) translateY(-20px) translateX(0);
}

.form-group .form-label {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  transition: 0.18s ease-in-out;
  width: 100%;
  letter-spacing: 0.12em;
  pointer-events: none;
  color: #646d76;
}

.form-group .form-control {
  outline: none;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  padding: 6px 0;
  min-height: 40px;
  border-bottom: 1px solid #cdcdcd;
}

.form-group textarea.form-control {
  padding: 10px 8px;
  border: 1px solid #cdcdcd;
  transform-origin: 0 0;
}

.form-group.readonly .form-control,
.form-group.readonly .form-label {
  color: #828282;
  font-weight: 600;
}

.form-group.disabled .form-control,
.form-group.disabled .form-label {
  color: #cdcdcd;
  font-weight: 500;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: transparent;
}

.form-group textarea.form-control:focus~.form-label,
.form-group textarea.form-control:not(:placeholder-shown)~.form-label {
  transform: scale(.85) translateY(-36px) translateX(-12px);
}

.form-group textarea.form-control~.form-label {
  top: 5px;
  left: 10px;
}

.selectize-control {
  display: flex;
}

/* form control */

/* checkbox */
.form-check {
  margin: 0;
  line-height: 23px;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
  height: 16px;
  width: 16px;
  border: 1px solid var(--coldgray);
  cursor: pointer;
  position: relative;
}

.form-check-input[type=checkbox]::before {
  content: "\f26b";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--redbase);
  font-size: 16px;
  position: absolute;
  font-family: 'Material-Design-Iconic-Font';
  opacity: 0;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
  background-color: transparent;
  border-color: var(--coldgray);
}

.form-check-input:checked[type=checkbox]::before {
  opacity: 1;
}

/* checkbox */

/* radio */
.form-check {
  margin: 0;
  line-height: 23px;
}

.form-check-input[type=radio] {
  border-radius: 0;
  height: 16px;
  width: 16px;
  border: 1px solid var(--coldgray);
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}

.form-check-input[type=radio]::before {
  content: "\f26d";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--redbase);
  font-size: 8px;
  position: absolute;
  font-family: 'Material-Design-Iconic-Font';
  opacity: 0;
}

.form-check-input:checked[type=radio] {
  background-image: none;
  background-color: transparent;
  border-color: var(--coldgray);
}

.form-check-input:checked[type=radio]::before {
  opacity: 1;
}

/* checkbox */

.toast-container {
  z-index: 999;
}

.mark,
mark {
  padding: 0;
  background-color: rgba(255, 237, 40, .4);
}

.bg-dark-secondary {
  background-color: var(--secondary) !important;
}

.border {
  border: 1px solid #dee2e6!important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6!important;
}

.border-top {
  border-top: 1px solid #dee2e6!important;
}

.border-left {
  border-left: 1px solid #dee2e6!important;
}

.border-right {
  border-right: 1px solid #dee2e6!important;
}

.bg-light-gray {
  background: var(--gray-light);
}

.text-white {
  color: #fff !important;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.cursor-pointer {
  cursor: pointer;
}

[data-list].no-document-found:after,
.details-body:empty:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: url(../images/illustrations/no-documents-found.svg?v=1.4);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 25%;
  opacity: 1;
  z-index: 0;
}

.dropdown-menu {
  border-radius: 0;
}

[data-list]>[data-item]:last-child,
.folder-list> :last-child {
  border-bottom: none !important;
}

/* 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 */

/* modal */
.modal-body.form {
  padding: 0;
}

/*.modal-body > .p-3{
  padding: 0!important;
}*/

.modal-body p.ms-5 {
  margin: 0 !important;
}

.modal-header a.nav-link.icon {
  padding: 0;
}

.modal-body-icon {
  display: none !important;
}

.modal-header h5 {
  margin: 0 !important;
}

.modal-header [data-modal-action=cancel],
#rightbar [data-toggle="rightbar"].nav-link,
.close-btn {
  font-size: 20px;
  color: var(--redbase);
  min-width: 25px;
  min-height: 25px;
  border-radius: 100%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modal-header [data-modal-action=back] {
  font-size: 20px;
  color: rgba(var(--bs-dark-rgb));
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modal-header [data-modal-action=back]:hover {
  background: rgba(237, 0, 0, 0.07);
  color: var(--redbase);
}

/* modal */

/* form-control */
.form-control:focus {
  border-color: var(--color-gray);
}

/* form-control */

/* selectize */
.selectize-input {
  min-height: 40px;
}

.selectize-dropdown,
.selectize-dropdown.form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.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 5px 3px 0;
  padding: 2px 5px;
  background: var(--color-primary);
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
  border-radius: 0;
}

.selectize-input.focus {
  border-color: #b1bbc4;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.selectize-control.single .selectize-input:after {
  font-family: boxicons;
  color: #74788d;
  right: 24px;
  top: 12px;
  content: '\ea4a';
  border-style: none;
  font-size: 30px;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  font-family: boxicons;
  color: #74788d;
  right: 24px;
  top: 12px;
  content: '\ea57';
  border-style: none;
  font-size: 30px;
  margin-top: -3px;
  border-width: 0;
  border-color: transparent;
}

.selectize-dropdown .active {
  background-color: var(--color-primary);
  color: #fff !important;
  padding: 6px 18px 6px 12px;
}

.selectize-dropdown .create {
  color: rgba(51, 51, 51, .5);
  padding: 6px 18px 6px 12px;
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 6px 12px;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  font-size: 18px;
  margin: 0 4px;
  font-weight: 400;
  padding: 0;
  border: 0;
  width: auto;
  line-height: 23px;
}

.selectize-control.plugin-remove_button .remove-single {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-dark);
}

.selectize-control.plugin-remove_button [data-value] {
  padding-right: 18px !important;
  cursor: pointer;
  font-weight: 600;
  margin-top: 2px;
}

.selectize-dropdown-content {
  max-height: 154px;
}

.selectize-input.focus {
  border-color: none;
  border-bottom: 1px solid var(--coldgray);
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selectize-input.dropdown-active,
.selectize-input.dropdown-active {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 0;
}

.selectize-input>input {
  margin-top: 2px !important;
  font-weight: 600;
}

/* selectize */

/* tag inputs */
.bootstrap-tagsinput {
  border: none;
  border-bottom: 1px solid var(--color-gray);
  box-shadow: none;
  display: inline-block;
  padding: 6px 0;
  vertical-align: middle;
  width: -webkit-fill-available;
  cursor: text;
  margin-top: 0;
  border-radius: 0;
  min-height: 40px;
  line-height: unset;
}

.bootstrap-tagsinput input {
  padding: 0px;
}

.bootstrap-tagsinput .tag {
  color: white;
  background: var(--color-primary);
  padding: 3px 4px;
  border-radius: 0px;
  display: inline-flex;
  margin: 0 2px 2px 0;
  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 */

/* pagination */
.page-item.active .page-link {
  background-color: var(--darkgray);
  border-color: transparent;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: transparent;
  border: none;
}

.page-item.disabled .page-link {
  color: var(--coldgray);
  background-color: transparent;
  border-color: transparent;
}

.page-item .page-link {
  padding: 0;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-family: var(--mmcfontmd);
  color: var(--darkgray);
}

.pagination>li {
  margin: 0 3px;
}

span[data-record-info] .text-primary {
  color: #000 !important;
}

/* pagination */

/* rightbar */
#rightbar .header {
  padding: 16px !important;
  height: auto !important;
}

#rightbar .tab-content {
  padding: 0px !important;
}

#rightbar #rightbar-form-container {
  height: calc(100vh - 59px);
}

#rightbar #rightbar-form-container.toolbar-visible {
  height: calc(100vh - 128px);
}

/* rightbar */

/* parsley validation */
.parsley-error,
.parsley-error:focus {
  border-color: var(--color-danger) !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 */

/* progress bar */
.page.progress-bar,
.rightbar.progress-bar {
  background-color: #ed000040;
}

.progress {
  border-radius: 0;
}

/* progress bar */

/* 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;
}

/* upload zone */

/* nav tabs */
.nav-tabs-custom .nav-item {
  position: relative;
  padding: 0 8px;
}

.nav-tabs-custom {
  padding: 0 8px;
}

.nav-tabs-custom.light .nav-item .nav-link {
  color: rgb(0 0 0 / 50%);
}

.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;
  line-height: 1;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: transparent;
}

.nav-tabs-custom.light .nav-item .nav-link.active,
.nav-tabs-custom.light .nav-link:hover:not(.disabled) {
  color: #000;
  border-bottom: 2px solid var(--color-primary);
}

.nav-tabs-custom {
  border-bottom: none;
  z-index: 10;
  top: 0;
}

/* nav tabs */

/* 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: #0d6efd;
  border-color: #0d6efd;
}

.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-stop > i {
  color: var(--color-danger);
  border-color: var(--color-danger);
}

.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 */

/* tag carousel */
.tag-container {
  padding-left: 18px;
  padding-right: 18px;
}

.tag-container {
  position: relative;
}

.tag-container .owl-theme .custom-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 28px;
  display: flex;
  align-items: center;
}

.tag-container .owl-theme .custom-nav .owl-prev,
.tag-container .owl-theme .custom-nav .owl-next {
  position: absolute;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: none;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: #606060;
  height: 18px;
  width: 18px;
  border-radius: 50%;*/
}

.tag-container .owl-theme .custom-nav .owl-prev {
  left: 0px;
}

.tag-container .owl-theme .custom-nav .owl-next {
  right: 0px;
}

.tag-container .owl-theme .custom-nav img{
  height: 14px;
  width: 14px;
}
/* horizontal timeline */

/* document carousel */
.doc-list-container {
  padding-left: 50px;
  padding-right: 50px;
}

.doc-list {
  position: relative;
}

.doc-list .owl-theme .custom-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 180px;
  display: flex;
  align-items: center;
}

.doc-list .owl-theme .custom-nav .owl-prev,
.doc-list .owl-theme .custom-nav .owl-next {
  position: absolute;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: none;
  z-index: 1;
}

.doc-list .owl-theme .custom-nav .owl-prev {
  left: -32px;
}

.doc-list .owl-theme .custom-nav .owl-next {
  right: -32px;
}
/* document carousel */

/* vertical timeline */
.vert-timeline {
  position: relative;
}

.vert-timeline .tl-item {
  display: flex;
}

.vert-timeline .tl-dot {
  position: relative;
  border-color: var(--coldgray);
}

.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 .tl-dot::before {
  box-shadow: 0 0 0 4px var(--coldgray);
}

.vert-timeline .tl-content a {
  color: var(--color-primary);
}

.vert-timeline .tl-item:last-child .tl-dot::after {
  border-color: transparent;
}
/* vertical timeline */

/* uploader */
.upload-container {
  z-index: 100;
}

.upload-container,
.upload-container>.upload-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.upload-container .action-container .nav-item a {
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--gray-light);
  margin-right: 5px;
}

.upload-container .action-container .nav-item a {
  font-size: 20px;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

/* uploader */

/* Search box */
.header-search input {
  color: #fff !important;
}

/* Search box */

/* UI Grid */
ui-datagrid .page-footer {
  padding: 0 16px !important;
  border-top: 1px solid var(--midgray) !important;
}

/* UI Grid */

/* search info / toolbar */
.document-info>i {
  line-height: 16px;
}

/* search info / toolbar */

/* sidebar toggle */
[data-toggle=sidebar]>i {
  height: 17px;
}

/* sidebar toggle */

/* section list */
.section_list .row {
  margin: 0px -6px;
}

.section_list .row>.item {
  margin-bottom: 12px;
  padding: 0px 6px;
}

.section_list figcaption {
  color: #5A646E;
}

.section_list .row>.item:hover .border {
  background: rgba(237, 0, 0, 0.07);
  border: 1px solid #FFC7C7 !important;
}

.section_list .row>.item:hover svg path {
  fill: var(--redbase);
}

.section_list .row>.item:hover figcaption {
  color: var(--redbase);
}

/* section */

/* multi select tag checkbox */
.check-box-tag>label {
  font-size: 12px;
  background: var(--gray-light);
  padding: 0px 10px;
  border-radius: 30px;
  color: var(--darkgray);
  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(--coldgray);
  color: #fff;
}

.check-box-tag>input[type="checkbox"]:checked+label.dark {
  background: #000;
  color: #fff;
}
/* multi select tag checkbox */

.badge-status {
  min-width: 70px;
}

#action-toolbar {
  min-height: 45px;
  border: 2px solid transparent;
}

/* accordion */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-button:not(.collapsed) {
  color: #f44336;
  background-color: #ffe7e7;
  box-shadow: none;
}
/* accordion */

/* folder list */
.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 li a .ico {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.folder-list li.active a,
.folder-list.select-second-child li:nth-child(2) a {
  background: rgba(237, 0, 0, 0.07);
  color: var(--redbase);
}

.folder-list li:not(.active) a:hover {
  background: var(--gray-light);
}

.folder-list
/* folder list */

/* sort icon */
.sort-by[data-order="desc"] > i.bx-sort-a-z::before {
  content: "\ec1f"
}
/* sort icon */

/* file drop zone */
#file-drop-zone {
  border: 2px dashed var(--color-black);
}

#file-drop-zone.drag-over {
  border: 2px dashed var(--color-primary);
  background: rgba(237, 0, 0, 0.07) !important;
}

.file-drop-zone {
  border: 2px solid transparent;
}

.file-drop-zone.drag-over {
  /*box-shadow: 0px 0px 0px 3px var(--color-primary) inset;*/
  border: 2px dashed var(--color-primary);
  background: rgba(237, 0, 0, 0.07) !important;
}
/* file drop zone */

/* contenteditable */
[contenteditable] {
  border: none;
  outline: none;
}

[contenteditable][data-title] {
  min-width: 1px;
}
/* contenteditable */