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

body {
  background: var(--color-bg-page);
  font-family: 'Roboto', sans-serif;
  color: var(--color-text);
}

a:hover {
  text-decoration: none;
}

.font-2 {
  font-family: 'Oswald', sans-serif;
}

.logo-side {
  height: 50px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.overview-cards {
  display: flex;
  flex-wrap: wrap;
}

.card {
  background: var(--color-bg-surface);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

.time-card{
    color: #ffffff;
    text-align: left;
    font-size: 12px;
}

.card p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.progress-bar-container {
    width: 100%;
    max-width: 600px;
    margin: 5px auto;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    text-align: center;
    line-height: 30px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.progress-bar-label {
    text-align: left;
    font-size: 12px;
    color: var(--color-text);
}

.operator-progress-bar-container {
    width: 100%;
    max-width: 600px;
    margin: 5px auto;
    background-color: var(--color-success-progress-bg);
    overflow: hidden;
}

.operator-progress-bar {
    height: 10px;
    text-align: center;
    line-height: 30px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    background: var(--color-success);
}

.operator-progress-bar-label {
    text-align: left;
    font-size: 12px;
    color: var(--color-text);
}


.breakdown-section,
.maintenance-status,
.operator-availability,
.issues-reported {
  background: var(--color-bg-surface);
  border-radius: 8px;
}

.breakdown-section ul,
.maintenance-status ul {
  list-style: none;
  padding: 0;
}

.breakdown-section li,
.maintenance-status li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--color-text);
}

br-1-solid-lg : {
  border-right: 1px solid lightgrey;
}
.maintenance-container{
    padding: 20px 5px;
    font-size: 10px;
    border-right: 1px solid lightgrey;
}
.maintenance-container .maintenance-container-text {
    font-size: 30px;
    color: var(--color-text);
}

.progress-circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin:auto;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background: var(--color-bg-surface);
    border-radius: 50%;
}

.progress-circle .progress-value {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-success-value);
}


.component-circle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin:auto;
}

.component-circle::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--color-bg-surface);
    border-radius: 50%;
}

.component-circle .component-value {
    position: relative;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-success-value);
}


.operator-availability table,
.issues-reported table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px lightgrey;
}

.operator-availability th,
.issues-reported th {
  text-align: center;
  padding: 10px 5px;
  background: var(--color-bg-subtle);
  color: #333;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  font-size: 12px;
}

.operator-availability td,
.issues-reported td {
  padding: 10px 5px;
  border-bottom: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  color: var(--color-text);
  font-size: 12px;
}

.issues-reported td {
  text-align: center;
}

canvas {
  max-width: 100%;
  margin: 0 auto;
}

.mr-10{
    margin-right: 10px;
}
.mr-20{
    margin-right: 20px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}


.login-form-div {
  padding: 20px;
}

.login-left-div,
.login-right-div {
  height: auto;
}

.login-left-div {
  padding: 0px;
}

.login-left-div {
  display: flex;
  align-content: space-around;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.login-right-div {
  display: flex;
  padding: 50px;
  align-content: space-around;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.login-img {
  width: 50%;
  display: block;
  margin: auto;
}

.login-form-div {
  background: var(--color-bg-surface);
  padding: 50px;
}

@media (min-width: 768px) {

  .login-left-div,
  .login-right-div {
    height: 100vh;
  }

  .login-left-div {
    padding: 40px;
  }

  .login-right-div {
    padding: 20px;
  }

  .login-img {
    width: 70%;
  }
}


/* nav */
.nav-tabs-custom.nav-tabs .nav-item.show .nav-link,
.nav-tabs-custom.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: var(--color-primary);
  border-color: var(--color-primary) var(--color-primary) var(--color-primary);
}

.custm-nav {
  background: var(--color-primary) !important;
  position: fixed;
  z-index: 15;
  padding-top: 0px;
  padding-bottom: 0px;
  top: 0;
  left: 0;
  width: 100%;
}

.custm-nav .nav-link {
  color: #ffffff !important;
}

.custm-nav .nav-item .nav-link {
  /* background-color: #212529; */
  font-size: 15px;
}

.custm-nav .nav-item.show .nav-link {
  background-color: var(--color-primary-hover);
}

.custm-nav .nav-item .nav-link:hover {
  background-color: var(--color-primary-hover);
}

.custm-nav .navbar-light .navbar-toggler {
  border: rgb(255 255 255 / 50%);
}

@media (max-width: 992px) {
  .custm-nav .nav-item .nav-link:hover {
    background-color: transparent;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.custm-nav .nav-link {
  padding: 21px 15px;
}

.dropdown-menu-right {
  right: 0;
  left: auto !important;
}


.custm-nav .dropdown-menu {
  color: #9295a4 !important;
  top: 100% !important;
}

.custm-nav .dropdown-menu a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.dropdown-item {
  font-size: .825rem;
}

.custm-nav .dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem;
}

.notification-menu-list .dropdown-menu {
  color: #9295a4;
  max-height: 250px;
  overflow: auto;
  /* background-color: #2b2e3b;
    border: 1px solid #343747; */
}



.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.component-dropdown-toggle::after {
    display: inline-block;
    margin-left: unset;
    vertical-align: unset;
    content: "";
    border-top: .3em solid;
    border-right: unset;
    border-bottom: 0;
    border-left: unset;
}

.notification-menu-list {
  position: relative;
}

.notification-menu-list .badge {
  position: absolute;
  font-size: .5rem;
  position: absolute;
  font-size: .55rem;
  right: 7px;
  top: 9px;
  padding: 2px 5px;
}

.dropdown-menu {
  border-radius: 0px;
}
.inner-dropdown-menu {
  border-radius: 0px;
}

.notification-item {
  color: inherit !important;
}

.notification-item .media {
  padding: .75rem 1rem;
  display: flex;
  align-items: flex-start;
}

.notification-item .media:hover {
  background-color: ghostwhite;
}

.avatar-xs {
  margin-right: 1rem !important;
  height: 2rem;
  width: 2rem;
}

.notification-avatar {
  align-items: center;
  background-color: var(--color-avatar-bg);
  color: #fff;
  display: flex;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  width: 100%;
  border-radius: 50% !important;
}

@media (min-width: 992px) {
  .notification-menu-list .dropdown-menu {
    width: 350px;
    padding: 0px;
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand>a,
.sidebar-wrapper .sidebar-dropdown>a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*----------------page-wrapper----------------*/

.page-wrapper {
  height: 100vh;
}

.page-wrapper .theme {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 4px;
  margin: 2px;
}

.page-wrapper .theme.chiller-theme {
  background: #1e2229;
}

/*----------------toggeled sidebar----------------*/

.page-wrapper.toggled .sidebar-wrapper {
  left: 0px;
}

/*----------------show sidebar button----------------*/
#show-sidebar {
  position: fixed;
  left: 0;
  top: 10px;
  border-radius: 0 4px 4px 0px;
  width: 35px;
  transition-delay: 0.3s;
  z-index: 100;
}

.page-wrapper.toggled #show-sidebar {
  left: -40px;
}

/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/

.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.sidebar-wrapper .sidebar-brand>a {
  text-transform: uppercase;
  font-weight: bold;
  flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
}

/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
  padding: 20px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
  float: left;
  width: 60px;
  padding: 2px;
  border-radius: 12px;
  margin-right: 15px;
  overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
  float: left;
}

.sidebar-wrapper .sidebar-header .user-info>span {
  display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search>div {
  padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 5px 35px 5px 20px;
}

.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  color: #212529 !important;
}

.sidebar-wrapper .sidebar-menu ul li a:hover {
  color: var(--color-primary);
}

.sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
  font-family: 'boxicons' !important;
  content: "\e9b2";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 18px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  font-family: 'boxicons' !important;
  content: "\e9be";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 8px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 10px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
  transform: rotate(90deg);
  right: 17px;
}

.pl-span {
  height: 15px;
  display: block;
  background: var(--color-progress-default);
  border-left: 1px solid var(--color-progress-default);
}
.pl-span-sucess, .pl-span-completed {
  background: var(--color-success-dark);
}
.pl-span-danger {
  background: var(--color-danger);
}
.pl-span-pending {
  background: #e5e7eb;
}
.pl-span-warning, .pl-span-processing {
  background: var(--color-warning);
}
.pl-span-primary {
  background: var(--color-primary);
}
.pl-span-delayed {
  background: #ef4444;
}
.pl-span-break {
  background: #9ca3af;
}

/*--------------------------side-footer------------------------------*/

.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
}


.sidebar-footer>a {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}

.sidebar-footer>a .notification {
  position: absolute;
  top: 0;
}

.badge-sonar {
  display: inline-block;
  background: var(--color-badge-alert);
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid var(--color-badge-alert);
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}

/*--------------------------page-content-----------------------------*/

.page-wrapper .page-content {
  display: inline-block;
  width: 100%;
  padding-left: 0px;
  /* padding-top: 20px; */
}

.page-wrapper .page-content>div {
  padding: 20px 40px;
}

.page-wrapper .page-content {
  overflow-x: hidden;
}

/*------scroll bar---------------------*/

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

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-scrollbar);
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-scrollbar);
}

::-webkit-scrollbar-thumb:active {
  background: var(--color-scrollbar);
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}







/*-----------------------------chiller-theme-------------------------------------------------*/

.chiller-theme .sidebar-wrapper {
  background-color: var(--color-bg-surface);
  box-shadow: 4px 4px 10px rgb(69 65 78 / 6%);
  -webkit-box-shadow: 4px 4px 10px rgb(69 65 78 / 6%);
  -o-box-shadow: 4px 4px 10px rgb(69 65 78 / 6%);
  -moz-box-shadow: 4px 4px 10px rgb(69 65 78 / 6%);
}

.chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
  border-top: 1px solid var(--color-border-light);
}

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  border-color: transparent;
  box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand>a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer>a {
  color: var(--color-text-dark);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
.chiller-theme .sidebar-footer>a:hover i {
  color: var(--color-primary);
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
  color: #bdbdbd;
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
  color: var(--color-primary) !important;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
  /* background: #212529; */
  color: #ffffff;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
  color: var(--color-text-header-menu);
}

.chiller-theme .sidebar-footer {
  background: var(--color-sidebar-footer-bg);
  box-shadow: 0px -1px 5px var(--color-sidebar-footer-shadow);
  border-top: 1px solid var(--color-sidebar-footer-border);
}

.chiller-theme .sidebar-footer>a:first-child {
  border-left: none;
}

.chiller-theme .sidebar-footer>a:last-child {
  border-right: none;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li.current a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li.current a i {
  background: var(--color-primary-light);
  color: var(--color-primary) !important;
}



.bradcr {
  padding: .8rem 1rem;
  background: var(--color-primary);
  border-top: 1px solid rgb(255 255 255 / 40%);
  position: relative;
  z-index: 10;
  margin-top: 66px;
}

.breadcrumb-head {
  color: #ffffff;
  margin-bottom: 0px;
  line-height: 16px;
  /* font-weight: 500; */
}

.breadcrumb-cstm {
  line-height: 16px;
}

.breadcrumb-cstm a {
  padding-right: 7px;
}

.breadcrumb-cstm>a {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  line-height: 16px;
  font-size: .8rem;
  color: #ffffff;
}

.breadcrumb-cstm>.breadcrumb-item {
  color: #ffffff;
  opacity: .9;
}

.breadcrumb-cstm a+a {
  padding-left: 7px;
}

.breadcrumb-item::before {
  content: "/" !important;
  position: absolute;
  /* font-family: "boxicons" !important; */
  font-weight: normal;
  font-style: normal;
  font-size: .8rem;
  line-height: 16px;
  left: -8px;
  color: #ffffff !important;
}

@media (min-width: 768px) {
  #close-sidebar {
    display: none;
  }
}

.body-main {
  padding: 35px 20px;
}

.box {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: 7px;
  overflow: hidden;
}

.box-head {
  padding: 15px 20px;
  border-bottom: 1px solid var(--color-border);
  border-radius: 7px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.box-head> .row {
  align-items: center;
}

.box-head-no-border {
  border-bottom: none;
}

.box-title {
  font-size: .95rem;
  margin-bottom: 0px;
  line-height: 26px;
}

.box-footer {
  padding: 15px 20px;
  border-top: 1px solid rgba(230, 231, 239, 0.85);
  border-radius: 7px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.btn-sm {
  padding: 2px 7px;
  font-size: .75rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.box-body {
  padding: 20px;
  position: relative;
}

.box-body-dark-portion {
  margin-left: -20px;
  margin-right: -20px;
  background: var(--color-bg-page);
  padding: 20px;
}

.box-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 17px;
  display: inline-block;
  background: var(--color-primary-extra-light);
  color: var(--color-progress-icon-alt);
  width: 40px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
}

.label-light-primary {
  font-size: .75rem;
  padding: 2px 12px;
  color: var(--color-info);
  background-color: var(--color-info-bg);
  display: inline-block;
  border-radius: 10px;
}

.label-light-warning {
  font-size: .75rem;
  padding: 2px 12px;
  color: var(--color-warning-alt);
  background-color: var(--color-warning-bg);
  display: inline-block;
  border-radius: 10px;
}

.label-light-success {
  font-size: .75rem;
  padding: 2px 12px;
  color: var(--color-success-alt);
  background-color: var(--color-success-bg);
  display: inline-block;
  border-radius: 10px;
}

.label-light-danger {
  font-size: .75rem;
  padding: 2px 12px;
  color: var(--color-danger-alt);
  background-color: var(--color-danger-bg);
  display: inline-block;
  border-radius: 10px;
}

.btn-icon {
  background-color: var(--color-bg-subtle);
  border-color: var(--color-bg-subtle);
  color: var(--color-info);
  font-size: .75rem;
  border-radius: 4px;
  padding: 2px 12px;
}

.btn-icon:hover,
.btn-icon:focus {
  background-color: var(--color-info);
  border-color: var(--color-info);
  color: var(--color-bg-subtle);
}

.line-through {
  text-decoration: line-through;
}

/* table */
.table-custom {
  font-size: 14px;
}

.table-custom th,
.table-custom td {
  padding: 0.50rem 0.5rem !important;
}

.table-custom thead tr {
  background-color: var(--color-bg-subtle);
}

.table-img {
  height: 40px;
  border-radius: 5px;
}

.table-custom tbody tr {
  border-bottom: 1px dashed rgba(230, 231, 239, 0.85);
}

.table-v-m,
.table-v-m td {
  vertical-align: middle;
}

.table-border-black.table-bordered td,
.table-border-black.table-bordered th {
  border: 1px solid #212529 !important;
}

.table-small-font {
  font-size: .8rem;
}


/* form */
.form-control,
.custom-file-input {
  border: 1px solid var(--color-border);
  border-radius: 0px;
}

.form-control:hover,
.form-control:focus {
  box-shadow: none
}

.custom-file-label {
  border: 1px solid var(--color-border);
  border-radius: 0px;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  /* border-radius: 0.2rem; */
  border-radius: 0px;
}

.selectgroup {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.selectgroup-item {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  font-weight: 400 !important;
}

.selectgroup-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.selectgroup-item:not(:last-child) .selectgroup-button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.selectgroup-button {
  display: block;
  text-align: center;
  padding: 0.375rem 1rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 2.375rem;
  border: 1px solid #f1f1f9;
}

.selectgroup-input:checked+.selectgroup-button {
  border-color: #1572E8;
  z-index: 1;
  color: #1572E8;
  background: rgba(21, 114, 232, 0.15);
}

/* ------------- accordion ----------------- */
.accordion-custom .card-header {
  background: #fff;
  padding-left: 0px;
  padding-right: 0px;
}
.accordion-custom .card-header h2, .accordion-custom .card-header h2 button {
  font-size: 14px !important;
  padding: 0px;
}
.accordion-custom .card-header h2, .accordion-custom .card-header h2 button:focus, .accordion-custom .card-header h2, .accordion-custom .card-header h2 button:hover {
  text-decoration: none;
  box-shadow: none;
} 
.accordion-custom .card {
  border-left: none;
  border-right: none;
}

.machine-link > a {
  position: relative;
  color: #575d78;
  display: block;
  background: ghostwhite;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.machine-link > a.active {
  color: #fff;
  background: var(--color-primary);
}
.machine-link > a.active::after {
  position: absolute;
  content: "";
  display: inline-block;
  /* height: 10px;
  width: 10px; */
  border: 10px solid transparent;
  border-left: 10px solid var(--color-primary);
  right: -19px;
  top: 8px;
  /* border-left: 10px solid;
  border-left: 10px solid;
  border-left: 10px solid; */
}

/* footer */
.footer {
  background: #ffffff;
  /* position: fixed; */
  /* bottom: 0; */
  /* left: 60px; */
  /* right: 0; */
  padding: 10px 0px;
  z-index: 10;
}