/*============================FONTS===============================*/
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'), url(https://example.com/MaterialIcons-Regular.woff) format('woff'), url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'MMC-Font-regular';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/MMC-Regular.woff') format('woff'), url('../fonts/MMC-Regular.woff2') format('woff2');
  /* src:  url('../fonts/MMC-Regular.otf') format('otf'); */
}

@font-face {
  font-family: 'MMC-Font-Medium';
  src: url('../fonts/MMC-Medium.woff') format('woff'), url('../fonts/MMC-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'MMC-Font-Bold';
  src: url('../fonts/MMC-Bold.woff') format('woff'), url('../fonts/MMC-Bold.woff2') format('woff2');
}

:root {
  --font-size: 14px;
  --line-height: 24px;
  --redbase: #ED0000;
  /*--gray-light: #F6F6F6;*/
  --gray-light: #f6f6f6;
  --darkgray: #5A646E;
  --mmcfont: 'MMC-Font-regular';
  --mmcfontmd: 'MMC-Font-Medium';
  --mmcfontbd: 'MMC-Font-Bold';
  --coldgray: #A3A9AD;
  --midgray: #c8c8c8;
  --shadowCommon: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  --danger-fade: #FEEDED;
  --border1: 1px solid;
  --darkred: #bd0000;
}

/*==========================Common===============================*/

*,
html {
  padding: 0;
  margin: 0;
  font-size: 100%;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.clear {
  clear: both;
}

.clear:after {
  content: '';
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  font-family: 'MMC-Font-regular';
  font-size: 14px;
  line-height: 24px;
  background: #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 70px 0;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

form textarea:focus,
form input:focus,
form select:focus {
  outline: none;
  /*border: none;*/
  box-shadow: none !important;
}

form input:focus-visible,
button:focus-visible,
button:focus {
  outline-style: inherit;
  outline-width: 0px;
  box-shadow: none !important;
}

/* *************************
dashboard*
****************************************** */
.side-fixed-nav {
  position: relative;
  background: #ED0000;
  width: 65px;
  height: 100vh;
  text-align: center;
  z-index: 99;
}

.side-fixed-nav ul {
  padding: 10px 0;
}

.side-fixed-nav ul li {
  text-align: center;
  margin: 0 0 5px;
}

.side-fixed-nav ul a {
  display: flex;
  width: 100%;
  height: 40px;
  line-height: 40px;
  justify-content: center;
  align-items: center;
}

.side-fixed-nav ul a img {
  max-width: 16px;
}

/*
.side-fixed-nav ul li.active{
     border-left: 3px solid #fff;
}
*/

.side-fixed-nav ul li.active a,
.side-fixed-nav ul li a:hover {
  background: rgba(255, 255, 255, .28);
}

.side-menu {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  margin-bottom: 20px;
  width: 100%;
}

.side-collapsi-nav {
  width: 290px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  white-space: nowrap;
  height: calc(100vh - 100px);
  border-right: 1px solid var(--midgray);
}

.admin-short-logo {
  background: #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  line-height: 30px;
}

.admin-real-logo {
  /* min-height: 65px; */
  display: block;
  padding: 0 15px;
  border-right: 1px solid var(--coldgray);
  /* height: 100px; */
}

.admin-short-logo img {
  width: 18px;
}

.admin-real-logo img {
  width: 78px;
  height: 76px;
}

.admin-panel-holdr {
  display: flex;
  padding-top: 100px;
  height: 100vh;
}

.admin-main-panel {
  height: calc(100vh - 100px);
  width: calc(100% - 400px);
  position: relative;
  transition: 00.5s ease-in-out;
  overflow: hidden;
}

.main-menu {
  font-family: var(--mmcfont);
  /*padding: 12px;*/
  padding: 0px;
  height: calc(100vh - 100px);
  /*overflow: hidden;
  overflow-y: auto;*/
}

/* width */
/*.main-menu::-webkit-scrollbar {
  width: 5px;
}*/

/* Track */
/*.main-menu::-webkit-scrollbar-track {
  background: var(--gray-light);
}*/

/* Handle */
/*.main-menu::-webkit-scrollbar-thumb {
  background: var(--midgray); 
}*/
.main-menu li {
  position: relative;
}

.main-menu li a {
  color: #fff;
  font-size: var(--font-size);
  line-height: 18px;
  display: flex;
  align-items: center;
  padding: 9px 15px;
  font-weight: 400;
  position: relative;
  border: 1px solid transparent;
  transition: 0.5s ease-in-out;
  width: 100%;
  /*overflow: hidden;/
}

.main-menu li a .ico {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.main-menu li a .txt {
  transition: 0.5s ease-in-out;
}

.main-menu li a .ico img {
  max-width: 18px;
}

.main-menu li a:hover {
  background: #ffffff21;
}

.main-menu li.active>a {
  border: 1px solid #fff;
  color: #fff;
}


.menu-button>a {
  padding: 8px;
  letter-spacing: .12em;
  line-height: 18px;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  font-family: var(--mmcfontmd);
  justify-content: center;
  transition: 0.5s ease-in-out;
  width: 100px;
  background: var(--redbase);
}

.menu-button>a:focus {
  background: var(--darkred);
}

.menu-button>a .ico {
  text-align: center;
  letter-spacing: 0.17em;
  margin-right: 8px;
  transition: 0.5s ease-in-out;
  font-size: 18px;
}

.menu-button>a .ico i {
  color: #fff;

}

.menu-button {
  position: relative;
  /*margin-right: 15px;*/
}

.menu-button>a:hover {
  background: #000;
  color: #fff;
}

.main-menu li.menu-title a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #A3A9AD;
  line-height: 18px;
  padding: 0;
}

.main-menu li.menu-title a:hover {
  color: var(--redbase) !important;
  border-bottom: 1px solid var(--redbase);
  background: none;
}

.main-menu li.menu-title span.txt {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 18px;
  display: inline-block;
  color: var(--darkgray) !important;
  font-family: var(--bs-gray-500);
}

.main-menu li.menu-title span.ico {
  font-size: 20px;
  display: none;
}

.main-menu li.menu-title {
  padding: 0px;
  font-family: var(--mmcfontmd);
  min-height: 38px;
}

/* .main-menu li.haschild{
    background: #efefef;
} */

.main-menu li.haschild>a::after {
  content: "\f2fb";
  right: 10px;
  position: absolute;
  height: 18px;
  width: 18px;
  line-height: 19px;
  font-family: "Material-Design-Iconic-Font";
  top: 10px;
  text-align: center;
  transition: 0.4s ease-in-out;
  font-size: 18px;
}

.main-menu li.haschild>a.move::after {
  content: "\f2f9";
}

.main-menu li.haschild>ul li {
  margin: 0;
  padding-right: 0;
}

.main-menu li.haschild>ul li.active {
  border: none;
}

.main-menu li.haschild>ul li .ico {
  margin-right: 12px;
}

.main-menu li.haschild>ul {
  display: none;
  padding-left: 10px;
}

.main-menu li.haschild>ul li .ico {
  color: var(--darkgray);
}

.main-menu li.haschild>ul li>ul {
  padding-left: 8px;
}

.main-menu li.haschild>ul li>ul li .ico {
  color: var(--darkgray);
}

.main-menu li.haschild>ul li.active.haschild>ul {
  background: #eee;
}

.color-gry-onblc {
  color: #A3A9AD !important;
}

/* dash close button */
.dash-close-btn {
  display: none;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--gray-light);
  transition: 0.5s ease-in-out;
}

.dash-close-btn i {
  font-size: 20px;
  color: var(--coldgray);
}

.dash-close-btn i.red {
  color: var(--redbase);
}

.targets-hding-hldr.showcrs .dash-close-btn {
  display: flex;
}

.dash-close-btn.showcrs {
  display: flex;
}

/* dash close button */

/*.red{
  color: var(--redbase) !important;
}*/
.admin-main-panel.expand,
.admin-main-panel.expand .admin-top-panel {
  width: calc(100% - 110px);
}

.side-collapsi-nav.collapsed {
  /* width: 82px; */
  margin-left: -290px;
}

/*.side-collapsi-nav.collapsed .main-menu li a .txt,.side-collapsi-nav.collapsed .main-menu li.menu-title .txt{
  display: none;
}
.side-collapsi-nav.collapsed .main-menu li a{
  width: 50px;
}*/
.side-collapsi-nav.collapsed .main-menu li.menu-title span.ico {
  display: block;
}

.side-collapsi-nav.collapsed .main-menu li.menu-title {
  padding-left: 11px;
}

/* .side-collapsi-nav.row > divlapsed ul li a{
    text-indent: -9999px;
} */

.top-hd-hldr p {
  margin: 0;
  color: #fff;
  font-family: var(--mmcfontmd);
  font-size: 13px;
  line-height: 16px;
}

.main-hd {
  font-size: 30px;
  line-height: 1.5;
  color: #fff;
  font-family: var(--mmcfontbd);
}

.admin-top-panel {
  height: 100px;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 99;
  transition: 0.5s ease-in-out;
  align-items: center;
}

.admin-options-holdr {
  display: flex;  
  align-items: center;
}

.admin-options-holdr a {
  display: flex;
  margin: 0 9px;
}

.admin-options-holdr i {
  font-size: 24px!important;
}

.admin-options-holdr a > span {
  display: flex;
}

.expandiwindow img {
  max-width: 20px;
}

.lang-ico img {
  width: 20px;
  margin-right: 5px;
}

.secrh-hldr form>div {
  padding-right: 12px;
  width: 350px;
}

.secrh-hldr {
  /*margin-right: 25px;*/
  /* background: var(--gray-light); */
}

.secrh-hldr input {
  height: 40px;
  padding-left: 42px;
  font-size: var(--font-size);
  line-height: 18px;
  color: #000;
  background: transparent;
  border-bottom: none !important;
  color: #fff;
  /* background-size: 15px; */
}

.secrh-hldr input::-webkit-input-placeholder {
  /* Edge */
  color: #A3A9AD;
}

.secrh-hldr input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #A3A9AD;
}

.secrh-hldr input::placeholder {
  color: #A3A9AD;
}

.lang-ico {
  position: relative;
  color: var(--darkgray);
  font-size: var(--font-size);
  line-height: var(--line-height);
}

.user-holdr {
  position: relative;
  align-items: center;
  display: flex;
}

.user-dropdown {
  position: absolute;
}


.user-dropdown {
  position: absolute;
  width: 200px;
  background: #fff;
  top: 58px;
  right: 0;
  transition: 0.3s ease-in-out;
  height: auto;
  display: none;
  border: 1px solid var(--midgray);
}

.user-dropdown.closedrpdwn {
  display: block;
}

.user-ico-arrow {
  position: absolute;
  font-size: 45px;
  top: -28px;
  right: 80px;
  color: var(--darkgray);
}

.title-h4 {
  color: var(--darkgray);
  background: #307cc336;
  border-bottom: 3px solid;
  text-align: center;
  font-size: 20px;
  padding: 10px;
}

.profile-name h5 {
  font-size: 18px;
  font-weight: 600;
}

.profile-user-code {
  font-size: 12px;
  color: #666;
  line-height: 20px;
}

.edit-profile {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  background: #307dc3;
  color: #fff;
  border-radius: 100%;
  font-size: 16px;
  margin-left: 10px;
}

.employee-details ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #ededed;
}

.employee-details ul li .hd {
  color: #aaa;
  font-size: 14px;
}

.employee-details ul li .vlu {
  color: #000;
  font-weight: 600;
  font-size: 15px;
}

.profile-editors ul li a {
  color: #000;
  padding: 8px 15px;
  display: inline-block;
  font-size: 15px;
  width: 100%;
  font-weight: 500;
}

.profile-editors ul li a:hover {
  background: var(--gray-light);
}


.dashboard-main {
  position: relative;
}

/* breadcrumb */
.breadcrumb {
  margin: 0;
  font-size: 13px;
  line-height: 1;
  padding: 18px 0px;
}

.breadcrumb .breadcrumb-item {
  font-size: 13px;
  /*line-height: 25px;*/
  display: flex;
  align-items: center;
}

.breadcrumb .breadcrumb-item a {
  color: var(--darkgray);
}

.breadcrumb .breadcrumb-item a:hover {
  color: #000;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--darkgray);
  font-family: var(--mmcfontmd);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "\f2fb";
  font-family: "Material-Design-Iconic-Font";
  height: 11px;
}

/* breadcrumb */

.target-hd-right {
  display: flex;
  align-items: center;
}

.targets-hding-hldr {
  border-bottom: 1px solid var(--midgray);
  position: relative;
  padding-left: 0px;
  transition: 0.5s ease-in-out;
}

/*.targets-hding-hldr.showcrs {
  padding-left: 40px!important;
}*/
/* *********************************
folder design
*************************************** */

/* .folders-holdr{
    padding: 0 12px;
} */
.reg-book-box {
  background: none;
  height: 180px;
  padding: 0;
  text-align: center;
  display: block;
  position: relative;
  border: 1px solid var(--coldgray);
}

.reg-book-box>figure {
  margin: 10px 25px 0;
  height: 120px;
}

.reg-book-box>figure img {
  max-width: 200px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto;
}

.type-doc figure {
  margin: 0 10px 0 0;
  position: relative;
}

.type-doc {
  border-top: 1px solid var(--coldgray);
  padding: 12px 15px;
  align-items: center;
}

.type-doc figure figcaption {
  position: absolute;
  font-size: 6px;
  color: var(--darkgray);
  bottom: 1.5px;
  left: 5.5px;
  font-family: var(--mmcfontmd);
}

.type-doc figure.documents svg path {
  fill: #6AB8FF;
}

.type-doc figure.documents figcaption {
  color: #6AB8FF;
}

.type-doc span.txt {
  color: var(--darkgray);
  font-size: 12px;
  line-height: 15px;
}

.folders-holdr .book-reg {
  padding: 0 55px 20px 40px;
  position: relative;
}

.book-reg .owl-nav {
  display: flex;
  width: 106%;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.type-doc figure.xls svg path {
  fill: #7CB482;
}

.type-doc figure.xls figcaption {
  color: #7CB482;
}

.type-doc figure.pdf svg path {
  fill: #DC7179;
}

.type-doc figure.pdf figcaption {
  color: #DC7179;
}

.more-ops img {
  max-width: 18px;
}

.more-ops {
  position: absolute;
  display: inline-block;
  top: 12px;
  width: 25px;
  right: 5px;
  height: 25px;
  text-align: center;
  border-radius: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.check-box-file label,
.action-icons-hldr label {
  width: 16px;
  height: 16px;
  border: 1px solid var(--coldgray);
  cursor: pointer;
  position: relative;
}

.check-box-file label::before,
.action-icons-hldr label::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;
}

.check-box-file input:checked+label::before,
.action-icons-hldr input:checked+label::before {
  opacity: 1;
}

.check-box-file input,
.action-icons-hldr input {
  display: none;
}

.reg-files-img {
  display: inline-block;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  line-height: 65px;
}

.reg-files-img img {
  width: 60px;
}

.reg-book-title {
  display: block;
  text-align: center;
  color: var(--darkgray);
  font-size: var(--font-size);
  line-height: var(--line-height);
}

.reg-book-title:hover {
  color: #e60013;
}

.reg-book-box .no-files {
  font-size: var(--font-size);
  color: var(--darkgray);
}

/* tag holder */
.tags-hldr ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tags-hldr ul li:not(:last-child) {
  margin-right: 20px;
}

.tags-hldr li a {
  font-size: 12px;
  background: var(--gray-light);
  padding: 1px 20px 2px;
  border-radius: 30px;
  color: var(--coldgray);
  display: flex;
}

.tags-hldr li a:hover {
  background: var(--coldgray);
  color: #fff;
}

.tags-hldr {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  height: 28px;
  -webkit-box-orient: vertical;
}

.tags-hldr li {
  margin: 0px 10px 10px 0 !important;
  line-height: inherit;
}

.tags-hldr li:last-child {
  margin-right: 0;
}

.tags-hldr li span {
  cursor: pointer;
  color: var(--darkred);
  font-size: 12px;
}

/* tag holder */

/* action icons holder */
.action-icons-hldr {
  padding: 15px 0;
}

/* action icons holder */

.add_ble_link {
  display: flex;
  align-items: center;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--redbase);
  font-size: 13px;
  font-weight: var(--mmcfontmd);
}

.add_ble_link .ico {
  margin-right: 6px;
}

.add_ble_link:hover {
  color: #000;
  background: none;
}

.more-links {
  position: absolute;
  /*width: 150px;*/
  box-shadow: var(--shadowCommon);
  background: #fff;
  z-index: 2;
  font-size: 12px;
  display: none;
  padding: 0;
}

.more-links ul {
  display: block;
}

.more-links li {
  margin: 0 !important;
}

.more-links li a,
.side-collapsi-nav .main-menu li .more-links a {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 15px;
  color: var(--darkgray);
  padding: 10px 12px;
  font-family: var(--mmcfont);
  justify-content: start;
  background: transparent;
  width: 100%;
  letter-spacing: inherit;
}

.more-links li a span {
  display: inline-block;
}

.more-links li a span.ico,
.menu-button .more-links a .ico {
  margin-right: 10px;
  font-family: var(--mmcfontmd);
  font-size: 12px;
  line-height: 15px;
}

.more-links li a:hover,
.side-collapsi-nav .main-menu li .more-links a:hover {
  background: var(--gray-light) !important;
}

.more-links li a span.txt,
.menu-button .more-links a span {
  color: var(--darkgray) !important;
  font-family: var(--mmcfont);
  font-size: 12px;
  line-height: 15px;
  text-transform: capitalize;
  letter-spacing: inherit;

}

.menu-button .more-links {
  right: -10px;
  top: 40px;
}

.tooltip {
  font-size: 12px;
  line-height: 14px;
}

a[data-bs-toggle="tooltip"]:focus .tooltip {
  display: none;
}

/* list-view */


.file-details .check-box-file {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 30px;
}

.starred-files input {
  display: none;
}

.starred-files label {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: relative;
}

/* .starred-files{line-height: 0;} */
.starred-files label::before {
  content: "\f27c";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--darkgray);
  font-size: 25px;
  position: absolute;
  font-family: 'Material-Design-Iconic-Font';
}

.starred-files input:checked+label::before {
  content: "\f27d";
  font-family: 'Material-Design-Iconic-Font';
  color: #000;
}

.actions-lists ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 250px;
}

.actions-lists ul li {
  margin-right: 18px;
}

.actions-lists ul li:last-child {
  margin-right: 0;
  margin-left: 20px;
}

.actions-lists ul li a {
  color: var(--redbase);
  font-size: 20px;
  font-weight: 400;
}

.actions span {
  color: var(--darkgray);
  font-size: var(--font-size);
  line-height: 18px;
  display: inline-block;
}

.typeof-fileico figure {
  margin: 0 20px 0 30px;
  position: relative;
  text-align: center;
  width: 42px;
}

.typeof-fileico figcaption {
  position: absolute;
  font-size: 8px;
  color: var(--darkgray);
  bottom: 1.5px;
  left: 8.5px;
  font-family: var(--mmcfontmd);
}

.typeof-fileico img {
  max-width: 42px;
}

.actions-lists ul li a:hover {
  filter: invert(1) grayscale(1) brightness(0);
}

/* pagination */
/*.pagination-hldr ul {
  display: flex;
}

.pagination-hldr ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 3px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-family: var(--mmcfontmd);
  color: var(--darkgray);
}

.pagination-hldr {
  border-top: 1px solid var(--coldgray);
}

.pagination-hldr ul li.active a {
  background: var(--darkgray);
  color: #fff;
}
.pagination-hldr ul li:first-child a,
.pagination-hldr ul li:last-child a{
  background: transparent;
  color: var(--coldgray);
  font-size: 20px;
}

.pagination-hldr,
.list-wiew-hldr > div.pagination-hldr{
  background: var(--gray-light);
  width: 100%;
  bottom: 0;
  position: absolute;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  left: 0;
}*/
/* pagination */

.side-collapsi-nav.hide-menu-bar {
  display: none;
}

.w-full {
  width: calc(100% - 65px) !important;
}

.hidden {
  display: none !important;
}

.home-logo img {
  width: 78px;
  height: 76px;
}

.home-logo {
  height: 100px;
  width: 158px;
  margin-right: 25px
}

.admin-top-panel.w-full {
  padding: 0;
}

.m-h8 {
  min-height: calc(100vh - 200px);
}

/* common form */
.dash-inn {
  padding: 0 30px;
}

.common-form {
  background: #fff;
  box-shadow: var(--shadowCommon);
  margin: 30px 0 0;
  padding: 22px 30px 10px;
}

.table-hd {
  font-size: 20px;
  color: #5c5d60;
  font-weight: 600;
  padding: 0 0 8px;
  position: relative;
  margin: 0 0 20px;
}

.table-hd::after {
  content: "";
  position: absolute;
  width: 40px;
  background: var(--redbase);
  height: 2px;
  bottom: 0;
  left: 0;
}

.common-form .row>div label.lvl {
  width: 100%;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #aaa;
  margin: 0 0 10px;
}

.common-form .row>div input,
.common-form .row>div textarea,
.common-form .row>div select {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 0.25rem;
  min-height: 45px;
  color: #aaa;
  background: #f1f1f1;
  border: none;
}

.common-form .row>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
  position: relative;
  flex-wrap: wrap;
}

.User-srch.common-form .row>div {
  align-items: flex-end;
}

.common-form .row>div input[type=submit] {
  color: var(--redbase);
  background: transparent;
  display: table;
  padding: 8px 15px;
  margin-left: auto;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  width: 100%;
  max-width: 150px;
  transition: 0.5s ease-in-out;
  border: 1px solid var(--redbase);
}

.common-form .row>div input[type=submit]:hover {
  border: 1px solid var(--redbase);
  background: var(--redbase);
  color: #fff;
}

.common-form .row>div input.search-box {
  background: #f1f1f1 url(../images/loupe.png) no-repeat 15px center;
  padding-left: 50px;
  background-size: 20px;
}


/* common table */

.common-table {
  background: #fff;
  /* overflow: hidden; */
}

.entri-holdr {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 1px;
}

.entri-holdr .entries {
  color: var(--darkgray);
  font-size: var(--font-size);
  font-weight: 500;
}

.entri-holdr .entries select {
  color: var(--darkgray);
  background: #f1f1f1;
  border: 1px solid var(--darkgray);
  margin: 0 5px;
  width: 50px;
  padding: 0.2em 0;
  border-radius: 2px;
}

.common-table tr {
  border-bottom: 1px solid var(--midgray);
  transition: 0.5s ease-in-out;
}

.common-table th {
  padding: 6px 12px;
  font-size: 12px;
  border: 0;
  background: var(--gray-light);
  color: var(--darkgray);
  text-align: center;
  white-space: nowrap;
}

.common-table td {
  border: none;
  padding: 10px;
  color: var(--darkgray);
  font-size: 12px;
  position: relative;
  vertical-align: middle;
  text-align: center;
}

.common-table td.text-start {
  min-width: 175px;
}

.common-table tr:hover,
.common-table tr:focus,
.common-table tr:focus-visible,
.common-table tr:focus-within,
.common-table tr.active {
  background: #FEEDED;
  border-bottom: 1px solid #FFC7C7;
  outline: none;
}

.common-table td .foldr-ico {
  display: inline-block;
  margin-right: 10px;
}

.common-table td .foldr-ico img {
  width: 30px;
}

.common-table .file-name {
  color: var(--darkgray);
  line-height: var(--line-height);
}

.common-table .file-name:hover {
  color: var(--redbase);
}

.common-table span.date {
  /* border-right: 1px solid var(--darkgray); */
  /* padding-right: 10px; */
  line-height: 12px;
}

.common-table span {
  display: inline-block;
}

.common-table span.time {
  padding-left: 8px;
  border: 0;
  line-height: 12px;
}

.common-table .pub,
.common-table .unpub,
.common-table .offpub {
  text-align: center;
  padding: 2px 10px;
  width: 100px;
}

.common-table .unpub {
  background: var(--redbase) !important;
}

.common-table .offpub {
  background: var(--coldgray) !important;
}

.common-table a {
  display: inline-block;
  margin-right: 11px;
  min-width: 16px;
}

.common-table a:last-child {
  margin-right: 0;
}

.user-list-table td:first-child span.icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--redbase);
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 5px;
}

.user-list-table td:first-child span.desg {
  display: block;
  font-size: 0.75rem;
  color: var(--bs-gray-500);
  line-height: 1.5;
}

.user-list-table td:first-child p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

.common-table td:last-child {
  min-width: 100px;
}

.common-table a.sort {
  color: var(--midgray);
  margin: 0;
  display: inline;
  width: 10px;
}

.common-table .cmn-ico {
  width: 30px;
  height: 30px;
  font-size: 20px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  margin: 0 2px;
  background: #e5efe4;
}

.common-table .cmn-ico.delete-ico {
  color: var(--redbase);
  background: rgb(255 238 238);
  border: 1px solid #ff9595;
}

.under-tbl-info {
  display: flex;
  padding: 18px;
  justify-content: space-between;
  align-items: center;
}

.under-tbl-info p {
  font-size: 0.80rem;
  margin: 0;
  color: var(--darkgray);
}

.pagination-holdr ul {
  display: flex;
}

.pagination-holdr ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 3px;
  border-radius: 50% !important;
  width: 36px;
  height: 36px;
  font-size: .875rem;
  color: var(--bs-gray-600);
  border: 1px solid var(--bs-gray-300);
}

.pagination-holdr ul li a.active {
  pointer-events: none;
}

.pagination-holdr ul li a.active {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.common-table .table {
  margin: 0;
}

.pagination-holdr ul li a:hover {
  background: #efefef;
}

.user-role-list-table td p {
  margin: 0 0 .5rem;
}

.user-role-list-table td p:last-child {
  margin: 0;
}

.user-role-list-table td:nth-child(2) p,
.user-role-list-table td:nth-child(3) p {
  color: var(--bs-success);
  font-weight: 600;
  background: #57c5462e;
  text-align: center;
  padding: 4px;
  border-radius: 0.375rem;
}

.user-role-list-table td:nth-child(4) p {
  color: var(--bs-danger);
  font-weight: 600;
  background: var(--danger-fade);
  text-align: center;
  padding: 4px;
  border-radius: 0.375rem;
}

.check-holdr {
  display: inline-block;
  vertical-align: middle;
}

.check-holdr input[type=checkbox] {
  display: none;
}

.check-holdr label {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #46a536;
  position: relative;
  cursor: pointer;
  margin-right: 5px;
}

.check-holdr input[type=checkbox]:checked+label::before {
  opacity: 1;
}

.check-holdr label::before {
  content: '\f26b';
  font-family: 'Material-Design-Iconic-Font';
  position: absolute;
  font-size: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #46a536;
  line-height: 16px;
  opacity: 0;
}

/* 08.08.22 */


.bg-black {
  background: #000;
}

.menu-button .txt {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  font-family: var(--mmcfontbd);
}

.side-collapsi-nav .main-menu li.active>a {
  background: rgba(237, 0, 0, 0.07);
  color: var(--redbase);
}

.side-collapsi-nav .main-menu li a {
  color: var(--darkgray);
  font-size: 14px;
  line-height: 18px;

}

.main-menu li a:hover {
  background: var(--gray-light);
}

.side-collapsi-nav .main-menu li .img_active {
  display: none;
}

.side-collapsi-nav .main-menu li.active .img_active {
  display: block;
}

.side-collapsi-nav .main-menu li.active .img {
  display: none;
}

.heading_bx {
  /* background: var(--gray-light); */
  /* padding: 8px; */
  margin: 12px 0;
}

.folders-holdr {
  padding-left: 10px;
}

.side-collapsi-nav .main-menu li.active>a svg {
  color: red;
}

.rht_dashbord_panel {
  width: 48px;
  background: var(--gray-light);
  border-left: 1px solid var(--coldgray);
  /* padding-bottom: 60px; */
  z-index: 1;
}

.lft_dashbord {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  overflow-y: auto;
  padding-left: 15px;
  padding-bottom: 50px;
}

.admin-logo-holdr {
  /* width: 235px; */
  margin-right: 15px;
  padding: 12px 0;
  height: 100px;
}

/* width */
.lft_dashbord::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.lft_dashbord::-webkit-scrollbar-track {
  background: var(--gray-light);
}

/* Handle */
.lft_dashbord::-webkit-scrollbar-thumb {
  background: var(--midgray);
}


.heading_bx span {
  color: var(--darkgray);
  font-family: var(--mmcfontmd);
  font-size: 12px;
  line-height: 14px;
}

.admin-options-holdr a i {
  color: #A3A9AD;
  font-size: 19px;
  transition: all 0.5s ease-in-out;
}

.admin-options-holdr a.noti i,
.admin-options-holdr a.settings-ico i {
  font-size: 22px;
}

.admin-options-holdr a i:hover {
  color: var(--redbase);
}

.secrh-hldr .form-control:focus {
  background-color: inherit;
}

.user_icon_red a {
  margin-right: 0px;
}

.user_icon_red .more-links {
  top: 38px;
  right: 0;
}

.sec_listbox figcaption {
  margin-left: 11px;
  color: #5A646E;
  transition: 0.3s;
  display: block;
  width: 120px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sec_listbox figure {
  margin-bottom: 0px;
  font-size: 12px;
  line-height: 14px;
  transition: 0.3s;
}

.sec_listbox.active figcaption {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--redbase);
}

.section_list .col {
  margin-bottom: 12px;
  padding: 0px 6px;
}

.section_list .row {
  margin: 0px -6px;
}

.sec_listbox {
  height: 51px;
  position: relative;
}

.sec_listbox>a {
  display: flex;
  border: 1px solid #C0C0C0;
  padding: 14px 8px;
  transition: 0.3s;
}

.sec_listbox>a .more-ops {
  color: var(--coldgray);
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.5s ease-in-out;
  padding: 0;
  border-radius: 100%;
}

.sec_listbox>a .more-ops:focus {
  box-shadow: none !important;
}

.more-ops:hover {
  background: var(--gray-light);
}

.sec_listbox>a:hover {
  background: var(--gray-light);
}

.sec_listbox.active>a,
.sec_listbox>a:focus {
  background: rgba(237, 0, 0, 0.07);
  border: 1px solid #FFC7C7;
}

.sec_listbox>a:focus svg path,
.sec_listbox.active svg path {
  fill: var(--redbase);
}

.sec_listbox>a:focus figcaption,
.sec_listbox.active>a figcaption {
  color: var(--redbase);
}

.sec_listbox>a:focus .more-ops {
  color: var(--redbase);
}

.rht_dashbord_panel ul a {
  display: flex;
  width: 100%;
  height: 40px;
  line-height: 40px;
  justify-content: center;
  align-items: center;
}

.rht_dashbord_panel li img {
  max-width: 16px;
}


.side-collapsi-nav.collapsed .main-menu li.haschild>ul,
.side-collapsi-nav.collapsed .main-menu li.haschild a::after {
  display: none !important;
}

/* my task */

.thborder-less tr:first-child,
.thborder-less tr:hover:first-child {
  border: none;
}

.mytask-tblhding {
  padding: 15px 0;
}

.mytask-tblhding p {
  margin: 0;
  color: var(--darkgray);
  font-family: var(--mmcfont);
}

.thbtnbdr-less tr:first-child,
.thbtnbdr-less tr:hover:first-child {
  border-bottom: none;
}

.firstrowleft tr :is(th, td):first-child {
  text-align: left;
}

.breadcrumb {
  align-items: center;
}

.lft_dashbord.width-60 {
  width: 60%;
}

.adhocwrkflow-wrp {
  border-right: var(--border1) var(--midgray);
  padding-right: 10px;
}

.commonworkflow-form p {
  padding: 8px 13px;
  background: var(--gray-light);
  color: var(--darkgray);
  font-family: var(--mmcfontmd);
  margin-bottom: 24px;
}

.commonworkflow-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.commonworkflow-form label {
  display: block;
  width: 100%;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  color: var(--darkgray);
  font-family: var(--mmcfont);
  letter-spacing: 0.12em;
}

.commonworkflow-form label.animatelbl {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  display: inline-block;
  width: auto;
  margin: 0;
  font-size: 12px;
}

.commonworkflow-form select:focus+label.animatelbl,
.commonworkflow-form select:valid+label.animatelbl,
.commonworkflow-form input:focus+label.animatelbl,
.commonworkflow-form input:valid+label.animatelbl {
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}

.commonworkflow-form :is(input, select):not(input[type='checkbox']) {
  border: none;
  border-bottom: var(--border1) var(--midgray);
  padding: 5px 0;
  width: 100%;
  height: 30px;
  font-size: 15px;
  font-weight: 400;
}

.commonworkflow-form .form-group .check-box-file {
  margin: 0;
  margin-right: 11px;
}

.commonworkflow-form .form-group .check-box-file label {
  margin: 5px 0 0 0;
  width: 16px;
}

.commonworkflow-form input[type='checkbox'] {
  margin-right: 11px;
}

.commonworkflow-form form input.submitinput,
.commonworkflow-form form a.submitinput,
a.submitinput {
  max-width: 162px;
  border: none;
  padding: 5px;
  background: var(--redbase);
  height: 36px;
  font-size: 12px;
  color: var(--white);
  font-family: var(--mmcfontbd);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: 0.5s;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.commonworkflow-form form input.submitinput:hover,
.commonworkflow-form form a.submitinput:hover,
a.submitinput:hover {
  background: #000;
}

.commonworkflow-form textarea {
  border: var(--border1) var(--midgray) !important;
  padding: 5px;
  width: 100%;
  height: 60px;
  resize: none;
}

.commonworkflow-form form input.datepickerinput {
  background: #fff url(../images/calendar-icon.svg) no-repeat;
  background-position: right 5px center;
}

.commonworkflow-form .form-inline .form-group {
  width: 47.5%;
  margin-right: 44px;
}

.commonworkflow-form .form-group span {
  font-size: 12px;
  font-family: var(--mmcfont);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--darkgray);
}

.commonworkflow-form .form-inline .form-group:last-child {
  margin-right: 0;
}

.itembox {
  border: var(--border1) var(--midgray);
  height: 74px;
  padding: 10px;
}

.ui-datepicker {
  background: #ffd7d7;
  padding: 5px;
  border-bottom: 2px solid var(--redbase);
  width: 200px;
  box-shadow: 0 21px 27px -20px rgb(74 74 74 / 50%);
  display: none;
}

.ui-datepicker table {
  width: 100%;
}

.ui-datepicker tr td {
  text-align: center;
}

.ui-datepicker tr td a {
  color: #000;
}

.ui-datepicker tr td:hover {
  background: #ff7c7c !important;
}

.ui-datepicker tr td:hover a {
  color: var(--white);
  transition: 0s ease-in-out;
  -webkit-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
}

.ui-datepicker tr td.ui-datepicker-today {
  background: var(--redbase) !important;
}

.ui-datepicker tr td.ui-datepicker-today a {
  color: var(--white);
}

.ui-datepicker-header {
  text-align: center;
}

.ui-datepicker-header span {
  color: #000;
  margin: 0 4px;
  cursor: pointer;
}


/* catalouge */

.action_btn {
  background: #000000;
  padding: 9.5px 13px;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--mmcfontmd);
  margin-right: 20px;
  display: inline-block;
}

.dashboard-main .catelogepg .lft_dashbord {
  width: 100%;
}

.dashboard-main .catelogepg .rht_dashbord_panel {
  height: calc(100vh - 100px);
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0;
  border-left: 1px solid var(--midgray);
  width: 370px;
  right: -370px;
  background: #fff;
  z-index: 124;
}

.dashboard-main .catelogepg .rht_dashbord_panel.showmetadata {
  right: 0;
}

.dashboard-main .catelogepg .rht_dashbord_panel .tooltip {
  z-index: 1234;
}

.action_btn i {
  margin-left: 8px;
}

.action_btn:hover {
  background: var(--redbase) !important;
  color: #fff;
}

.title_txt {
  padding: 20px 0;
}

.metadata {
  color: var(--midgray);
  padding-right: 15px;
  font-size: 20px;
}

.title_txt h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #5A646E;
  font-family: var(--mmcfontmd);
}

.dashboard-main .catelogepg .list-wiew-hldr figure img {
  width: 100%;
}

.dashboard-main .catelogepg .metadata_bx {
  border-bottom: 1px solid var(--midgray);
  padding: 20px;
  height: 62px;
  color: #5A646E;
}

.metadata_bx .btn {
  padding: 0;
  font-size: 20px;
}

.dashboard-main .catelogepg .metadata_bx h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;

}

.dashboard-main .catelogepg .metadata_bx h5 i {
  margin-right: 6px;
}

.dashboard-main .catelogepg .metadata_list ul {
  margin: 0 12px;
  display: flex;
  justify-content: space-between;
}

.dashboard-main .catelogepg .metadata_list ul li:not(:first-child) {
  margin-left: 34px;
}

.dashboard-main .catelogepg .metadata_list {
  background: #F6F6F6;
  /* height: 32px; */
}

.dashboard-main .catelogepg .metadata_list ul li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.dashboard-main .catelogepg .metadata_list ul li a.active {
  background: #fff;
}

.metadata_list ul li a.active img {
  filter: invert(1);
}

.catelogepg {
  width: 100%;
}

.catelog_form {
  padding: 24px 25px 24px 25px;

}

.pagination-hldr,
.list-wiew-hldr>div.pagination-hldr {
  z-index: 3;
}

.catelog_form {
  overflow-y: auto;
}

.catelog_form .catelog_overkw {
  height: calc(100vh - 280px);
  display: none;
  /* overflow: hidden; */
  /* overflow-y: auto; */
}

.dashboard-main .catelogepg .rht_dashbord_panel .catelog_form::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.dashboard-main .catelogepg .rht_dashbord_panel .catelog_form::-webkit-scrollbar-track {
  background: var(--gray-light);
}

/* Handle */
.dashboard-main .catelogepg .rht_dashbord_panel .catelog_form::-webkit-scrollbar-thumb {
  background: var(--midgray);
}


.comments-all::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.comments-all::-webkit-scrollbar-track {
  background: var(--gray-light);
}

/* Handle */
.comments-all::-webkit-scrollbar-thumb {
  background: var(--midgray);
}

.commonworkflow-form input:focus+label.animatelbl {
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}

.commonworkflow-form label.animatelbl {
  pointer-events: none;
  font-size: 12px;
}

.commonworkflow-form:is(input, select):not(input[type='checkbox']) {
  height: 38px;
  display: table;
  margin: 0 auto;
}

.msg-btn-input {
  border-bottom: var(--border1) var(--midgray);
  border-radius: 0;
  padding: 0;
  color: var(--redbase);
}

.catelog_form .catelog_overkw.comments-sec {
  height: calc(100vh - 250px);
  position: relative;
}

.comments-all {
  font-size: 12px;
  background: var(--gray-light);
  height: calc(100% - 45px);
  padding: 15px;
  overflow: hidden;
  overflow-y: auto;
}

.comment-type {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.msg-cmnt {
  background: #fff;
  display: inherit;
  padding: 5px 20px;
  display: inline-block;
}

.msg-cmnt i {
  display: block;
  color: var(--midgray);
  font-size: 8px;
  line-height: 1.2;
}

.comments-all ul li {
  margin: 0 0 10px;
  width: 100%;
  max-width: 250px;
  text-align: right;
}

.comments-all ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* 11.08.22 */

/*
.list-wiew-hldr .row > div{
    flex: 1;
}
*/

.right-details-and-action-panel {
  height: calc(100vh - 100px);
  transition: 0.5s ease-in-out;
  position: absolute;
  top: 0;
  border-left: 1px solid var(--midgray);
  width: 280px;
  right: -300px;
  background: #fff;
}

.dlt-hldr-hd {
  background: var(--coldgray);
  color: #fff;
  width: 100%;
  padding: 10px 15px 12px;
  font-family: var(--mmcfontmd);
}

.dlt-hldr-hd h3 {
  font-size: 16px;
}

.closebar {
  color: #fff;
  font-size: 25px;
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 30px;
  border-radius: 100%;
}

.closebar:hover {
  background: #ffffff38;
  color: #fff;
}

/* tab design */

.foldr-detls-tb {
  padding: 15px;
  overflow: auto;
  height: calc(100vh - 210px);
}

.foldr-detls-tb .tab-menu ul {
  display: flex;
}

.foldr-detls-tb .tab-menu ul li {
  flex: 0 0 30%;
  margin-bottom: 18px;
  font-family: var(--mmcfontmd);
}

.foldr-detls-tb .tab-menu ul li a {
  color: var(--darkgray);
  padding-bottom: 1px;
  border-bottom: 2px solid transparent;
}

.foldr-detls-tb .tab-menu ul li a.active {
  border-bottom: 2px solid var(--redbase);
}

.details-list p {
  margin: 0 0 10px;
}

.details-list figure img {
  width: 100%;
}

.details-list li {
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: 0 0 5px;
}

.details-list li span {
  flex: 0 0 50%;
}

.foldr-detls-tb .tab-box {
  display: none;
}

.foldr-detls-tb::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.foldr-detls-tb::-webkit-scrollbar-track {
  background: var(--gray-light);
}

/* Handle */
.foldr-detls-tb::-webkit-scrollbar-thumb {
  background: var(--midgray);
}

.activies_list {
  position: relative;
}

.activies_list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}

.activies_list ul li .admin_txt {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  display: inline-block;
  color: var(--darkgray);
  font-family: var(--mmcfont);
}

.activies_list ul li .time_txt {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--darkgray);
  display: flex;
  align-items: center;
  font-family: var(--mmcfont);
}

.activies_list ul li i {
  margin-right: 12px;
}

.list-wiew-hldr {
  transition: 0.5s ease-in-out;
  width: 100%;
}

.list-wiew-hldr.wrapped {
  width: calc(100% - 280px);
}

.right-details-and-action-panel.unwrapped {
  right: 0px;
}

/* modal */

.form-modal .modal-header {
  background: var(--gray-light);
  color: var(--darkgray);
  letter-spacing: 0.12rem;
  padding: 9px;
  border-bottom: 0;
}

.form-modal .modal-title {
  font-size: var(--font-size);
  display: block;
  color: #000;
  font-family: var(--mmcfontmd);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.form-modal .modal-header .btn-close {
  margin: 0;
  position: absolute;
  right: 10px;
}

.form-modal .modal-content {
  border-radius: 0;
}

.form-modal .modal-body {
  padding: 30px 20px;
}

.secrh-hldr .btn {
  display: none;
}

.secrh-hldr .btn.search-btn-input {
  display: block;
}

.secrh-hldr .form-group {
  border-bottom: 1px solid var(--gray-light);
  margin: 0;
  padding-right: 0;
}

.secrh-hldr.commonworkflow-form label.animatelbl {
  color: var(--coldgray);
  top: 5px;
}

/* left side panel */
.side-left-panel {
  background: #000;
  height: calc(100vh - 100px);
  width: 110px;
  z-index: 99;
}

.side-left-panel ul a {
  display: block;
  text-align: center;
  padding: 12px 10px;
  width: 100%;
}

.side-left-panel ul li:not(:last-child) {
  margin: 0 0 1px;
}

.side-left-panel ul li a span {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.side-left-panel ul li a span.ico {
  font-size: 20px;
  margin: 0 0 5px;
  color: var(--darkgray);
  transition: 0.5s ease-in-out;
}

.side-left-panel>div {
  width: 110px;
}

.side-left-panel .down-right-side-panel {
  position: absolute;
  bottom: 0;
}

.side-left-panel ul li.active a,
.side-left-panel ul li a:hover {
  background: #5b5e66;
}

.side-left-panel ul li.active a span.ico,
.side-left-panel ul li a:hover span.ico {
  color: #fff;
}

/*AFTER SALES PAGE START*/
.table-filters {
  margin: 20px 0 35px 0;
  padding-right: 15px;
}

.left-filter .secrh-hldr .form-group {
  border-bottom-color: var(--midgray);
}

.filter-modal-trigger {
  display: inline-block;
  border: 1px solid #000;
  padding: 5px 30px;
  text-transform: uppercase;
  color: #000;
  font-family: var(--mmcfontbd);
  transition: all 0.5s ease-in-out;
  letter-spacing: 2px;
}

.filter-modal-trigger:hover {
  background: #000;
  color: #fff;
}

.right-filter select {
  border: none;
  border-bottom: 1px solid var(--midgray);
  height: 37px;
  color: var(--coldgray);
  text-transform: uppercase;
  outline: none;
  margin-right: 15px;
}

.right-filter .create-art {
  padding: 7px 20px;
  text-transform: uppercase;
  color: #fff;
  background: var(--redbase);
  letter-spacing: 2px;
  font-family: var(--mmcfontbd);
  transition: all 0.5s ease-in-out;
}

.right-filter .create-art:hover {
  background: #000;
}

.after-sales-table .image-description {
  width: 65%;
}

.after-sales-table .after-table-actions {
  width: 35%;
}

.image-description figure {
  width: 42px;
  height: auto;
  margin: 0;
}

.image-description figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-description .text {
  width: calc(100% - 71px);
  padding-left: 15px;
}

.image-description .text .top-story {
  text-transform: uppercase;
  display: block;
  color: var(--darkgray);
  letter-spacing: 1.5px;
  font-family: var(--mmcfontmd);
  line-height: 1;
}

.image-description .text h4 {
  margin-bottom: 6px;
}

.image-description .text h4,
.image-description .text h4 a {
  font-size: 15px;
  color: #000;
  font-family: var(--mmcfontmd);
  transition: all 0.5s ease-in-out;
}

.image-description .text h4 a:hover {
  color: var(--redbase);
}

.image-description .text ul li {
  border-right: 2px solid var(--midgray);
  line-height: 1.5;
  padding-right: 10px;
  margin-right: 10px;
}

.image-description .text ul li:last-child {
  border-right: 0;
  /* margin-right: 0;
    padding-right: 0; */
}

.image-description .text ul li {
  color: var(--darkgray);
  font-size: 13px;
}

.image-description .text ul li a,
.image-description .text ul li i {
  color: var(--midgray);
  transition: all 0.5s ease-in-out;
}

.image-description .text ul li i {
  display: inline-block;
  margin-right: 7px;
}

.image-description .text ul li a:hover {
  color: #000;
}

.image-description .text .tags {
  margin-top: 10px;
}

.image-description .text .tags a {
  display: inline-block;
  padding: 5px 15px;
  background: var(--gray-light);
  margin-right: 10px;
  color: var(--darkgray);
}

.after-table-actions .comments {
  display: inline-block;
  font-size: 20px;
  color: var(--midgray);
}

.after-table-actions .pub,
.after-table-actions .unpub,
.after-table-actions .offpub {
  text-align: center;
  padding: 5px 10px;
  width: 100px;
  display: inline-block;
  font-size: 13px;
  font-family: var(--mmcfontmd);
  background: #e8f6ff;
  border: 2px solid #8cd2ff;
  color: #1aa6ff;
}

.after-table-actions .offpub {
  background: #eaebec;
  border: 2px solid #9a9ea3;
  color: #353e48;
}

.after-table-actions .unpub {
  background: var(--danger-fade) !important;
  color: var(--redbase);
  border: var(--border1) #DC7179;
}

/*.after-table-actions a:not(:last-child){
  margin-right:15px;
}*/
.after-table-actions a {
  display: inline-block;
}

.after-table-actions a.copy,
.after-table-actions a.edit,
.after-table-actions a.delete {
  font-size: 20px;
  color: var(--redbase);
}

.after-sales-table-holder {
  padding-right: 15px;
}

.after-sales-table-holder .after-sales-table:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--midgray);
}

.after-sales-table .check-box-file {
  margin-right: 15px;
}

/*AFTER SALES PAGE END*/

.overflow-hide {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #0000005d;
  z-index: 123;
  top: 0;
  display: none;
}

.overflow-hide.not-hide {
  display: block;
}

.upload-ico {
  display: inline-block;
}

.upload-ico img {
  width: 100%;
  max-width: 200px;
}

.form-upload-hldr input {
  display: none;
}

.form-upload-hldr {
  text-align: center;
}

.form-upload-hldr p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--mmcfont);
  margin-top: 1rem;
}

/* timeline */
.tileline-update {
  background: var(--gray-light);
  font-size: 12px;
  line-height: 1.5;
  padding: 12px;
  color: var(--darkgray);
  max-width: 200px;
  display: inline-block;
  text-align: left;
}

.tileline-update p {
  margin: 0;
  color: var(--coldgray);
  font-size: 10px;
}

.tileline-update span {
  display: inline-block;
  margin: 0 0 5px;
  color: #000;
}

.timeline-row li .time {
  font-style: italic;
  color: var(--redbase);
  font-size: 10px;
  display: block;
  line-height: 1;
}

/* .timeline-row ul{
    display: flex;
    flex-wrap: wrap;
} */

.timeline-row li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.timeline-row li::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: var(--coldgray);
  /* box-shadow: 0 0 10px 2px var(); */
  left: 30%;
  top: 0;
  transform: translate(-50%, 0);
}

.timeline-row li:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--midgray);
  left: 30%;
  top: 0;
  transform: translate(-50%, 0);
}



/* *****************************
end of pages
**************************** */

/* responsive */

@media (max-width:1199px) {
  .admin-panel-holdr {
    position: relative;
  }

  .admin-main-panel {
    width: 100%;
    padding-left: 81px;
  }

  .side-collapsi-nav {
    position: absolute;
    z-index: 123;
    border-right: 1px solid var(--midgray);
  }

  .side-collapsi-nav.collapsed {
    width: 81px;
  }

  .admin-logo-holdr {
    width: auto;
  }

  .secrh-hldr form>div {
    width: 380px;
  }

  .main-hd {
    font-size: 23px;
  }

  .side-left-panel ul li .txt {
    display: none;
  }

  .side-left-panel,
  .side-left-panel>div {
    width: 62px;
  }

  .dash-close-btn {
    top: 110px;
    left: 302px;
    position: fixed;
    z-index: 3;
  }

  .image-description .text ul li {
    font-size: 12px;
    margin-right: 8px;
    padding-right: 8px;
  }

  .admin-main-panel.expand,
  .admin-main-panel.expand .admin-top-panel {
    width: 100%;
  }

  .admin-main-panel {
    padding-left: 0;
  }

}

@media (max-width:1023px) {
  .list-wiew-hldr.wrapped {
    width: 100%;
  }

  .secrh-hldr {
    position: relative;
    margin-right: 15px;
  }

  .secrh-hldr .btn {
    display: block;
  }

  .secrh-hldr .btn:focus,
  .secrh-hldr .btn:focus-visible {
    box-shadow: none !important;
  }

  .secrh-hldr form {
    position: absolute;
    background: var(--gray-light);
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
  }

  .secrh-hldr.showform form {
    display: block;
  }

  .book-reg .owl-nav {
    width: 110%;
  }

  .catelogepg {
    overflow-y: auto;
    height: calc(100vh - 100px);
  }

  .dashboard-main .catelogepg .lft_dashbord {
    padding: 0 15px;
    height: auto;
    overflow: hidden;
  }

  .dashboard-main .catelogepg .rht_dashbord_panel {

    border: 0;
  }

  /* .catelog_form .catelog_overkw{
        height: auto;
    } */
  .catelog_form {
    padding: 24px 12px 0px 25px;
  }

  .list-wiew-hldr.pb-5 {
    padding: 0 !important;
  }

  .list-wiew-hldr figure {
    margin: 0;
  }

  .lft_dashbord.width-60 {
    width: 100%;
  }

  .commonworkflow-form form input.submitinput,
  .commonworkflow-form form a.submitinput {
    margin: 0 auto;
    display: table;
  }

  .section_list {
    padding: 0;
  }

  .admin-main-panel {
    padding-left: 0px;
  }

  .side-left-panel ul li .txt {
    display: none;
  }

  .side-left-panel,
  .side-left-panel>div {
    width: 62px;
  }

  .tags-hldr li a {
    padding: 1px 11px 2px;
  }

  .after-table-actions .pub,
  .after-table-actions .unpub,
  .after-table-actions .offpub {
    width: auto;
  }

  .after-sales-table.d-flex.align-items-center {
    width: 1000px;
  }

  .after-sales-table-holder {
    overflow-x: auto;
  }

  #action-toolbar+div>div {
    flex-wrap: wrap;
  }

  .image-description {
    margin: 0 0 10px;
  }

  /*.after-table-actions {
    width: 100%;
    justify-content: flex-end;
  }*/

}

@media (max-width:767px) {

  /* header & mobilemenu */
  .admin-top-panel {
    flex-wrap: wrap;

    height: auto;
    padding-left: 0;
  }

  .dash-close-btn {
    top: 75%;
  }

  .admin-logo-holdr {
    margin: 0 15px;
  }

  .admin-real-logo {
    padding: 0;
    border: none;
    height: auto;
    min-height: inherit;
  }

  /*.after-table-actions {
    justify-content: flex-start;
  }*/

  .admin-real-logo img {
    width: 35px;
    height: 37px;
  }

  .main-hd {
    font-size: 18px;
    line-height: 24px;
  }

  .top-hd-hldr p {
    font-size: 9px;
    line-height: 12px;
  }

  .admin-main-panel {
    padding-left: 0;
  }

  .side-collapsi-nav.collapsed {
    width: 290px;
    margin-left: -290px;
  }

  .side-collapsi-nav.collapsed .main-menu li a .txt,
  .side-collapsi-nav.collapsed .main-menu li.menu-title .txt {
    display: block;
  }

  .side-collapsi-nav.collapsed .main-menu li a {
    width: auto;
  }

  .side-collapsi-nav.collapsed .main-menu li.menu-title span.ico {
    display: none;
  }

  /* end header & mobilemenu */

  .folders-holdr .book-reg {
    padding: 0 25px 20px 20px;
  }

  .book-reg .owl-nav {
    width: 115%;
  }

  /*.section_list .row{
        padding-right: 15px;
    }*/
  .folders-holdr.pb-5 {
    padding-bottom: 0 !important;
  }

  .more-links {
    right: -15px;
  }

  .side-left-panel ul li .txt {
    display: none;
  }

  .side-left-panel,
  .side-left-panel>div {
    width: 62px;
  }

  .dash-close-btn {
    top: 123px;
    left: 244px;
    position: fixed;
    z-index: 3;
  }

  .admin-main-panel.expand,
  .admin-main-panel.expand .admin-top-panel {
    width: 100%;
  }

  .book-reg .owl-nav {
    width: 105%;
  }

  .lft_dashbord {
    padding-bottom: 17px;
  }

  .folders-holdr {
    padding-left: 0;
  }

  .side-collapsi-nav {
    width: 236px;

  }

  .admin-options-holdr {
    margin-left: auto;
    justify-content: flex-end;
    padding-left: 50px;
    padding-top: 0;
  }

  .admin-logo-holdr {
    height: 63px;
  }

  .admin-panel-holdr {
    padding: 111px 0px 1px;
  }

  .side-left-panel {
    transform: translateX(-63px);
    transition: all 0.5s ease-in-out;
    position: absolute;
    left: 0;
  }

  .new-actve .side-left-panel {
    transform: translateX(0px);

  }

  a.menu_bar_icon {
    position: absolute;
    left: 27px;
  }

  .menu_bar_icon {
    display: inline-block !important;
  }

  .admin-top-panel {
    display: block;
  }

  .action-icons-hldr ul {
    width: 100%;
    margin-top: 15px;
  }

  .action-icons-hldr ul+.tags-hldr {
    width: 100%;
    display: block;
  }

  .action-icons-hldr ul+.tags-hldr li {
    margin-bottom: 2px !important;
  }

  .action-icons-hldr ul li a {
    display: inline-block;
  }

  .breadcrumb {
    margin-right: 89px;
  }

  .lft_dashbord {
    padding-bottom: 85px;
  }

  .dashboard-main .catelogepg .rht_dashbord_panel {
    width: 100%;
  }

  .target-hding-info {
    padding-bottom: 5px;
  }

  .target-hding-info nav {
    width: 100%;
    justify-content: center;
  }

  .tags-hldr,
  .tags-hldr ul {
    margin-top: 5px !important;
  }

  .dashboard-main .catelogepg .rht_dashbord_panel {
    right: -100%;
  }

  .actions {
    display: flex;
    width: 215px;
  }

  .action_btn {
    margin-right: 11px;
  }

  .image-description {
    flex-wrap: wrap;
  }

  .image-description .check-box-file {
    width: 50%;
  }

  .image-description>a {
    width: 47%;
    justify-content: flex-end;
  }

  .image-description>a i {
    margin-right: 0 !important;
  }

  .image-description .text>ul {
    flex-wrap: wrap;
  }

  .image-description .text ul li {
    margin: 0;
    padding: 0 0 3px;
    border: 0;
  }

  .image-description .text {
    padding-left: 0;
    width: calc(100% - 60px);
  }

  .after-table-actions .pub,
  .after-table-actions .unpub,
  .after-table-actions .offpub {
    padding: 2px 10px;
  }
}

@media (max-width:575px) {
  .admin-panel-holdr {
    padding: 107px 0px 1px;
  }

  .breadcrumb {
    margin-right: 9px;
  }

  .target-hding-info {
    flex-wrap: wrap;

  }

  .menu-button .more-links {
    right: -40px;
    top: 40px;
  }

  .secrh-hldr form>div {
    width: 224px;
  }

  .secrh-hldr form>div label {
    padding-left: 10px;
  }
}