.infoclass .card .card-header {
  background-color: transparent !important;
}
.infoclass .card .card-header .card-toolbar {
  max-height: 46px;
  min-height: 46px;
  min-width: 46px;
  max-width: 46px;
  border: 1px solid #FFFFFF;
  justify-content: center;
  border-radius: 100%;
  background: var(--kt-dark);
}
.infoclass .card-body,
.infoclass .card-body p {
  color: var(--kt-dark);
}

.info-menu a {
  opacity: 0.4;
  transition: 0.3s all ease-in-out;
  background-color: #ffffff !important;
  color: var(--kt-dark) !important;
}
.info-menu a:hover {
  opacity: 1;
}
.info-menu a.current {
  opacity: 1 !important;
  color: #FFFFFF !important;
  background-color: var(--kt-primary) !important;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
}
table tr {
  background: transparent !important;
}
table tr:first-child td {
  border: none;
  background: transparent;
}
table tr:first-child td:nth-child(2n) {
  color: var(--kt-text-success);
}
table tr:first-child td:nth-child(3n) {
  color: var(--kt-text-danger);
}
table tr:nth-child(2n) {
  background: #f9f9f9;
  background: rgba(0, 0, 0, 0.03);
}
table td {
  color: var(--kt-dark);
  border: 1px solid;
}
table td:nth-child(2) {
  background: #ceebd6;
}
table td:nth-child(3) {
  background: #ffdde0;
}
table th, table td {
  padding: 10px;
}
table.nvt thead, table.nvt th {
  border: none;
  background-color: transparent;
}
table.nvt td {
  border: 1px solid var(--kt-dark) !important;
  background-color: transparent;
  color: var(--kt-dark);
}
table.nvt tr td:nth-child(2) {
  background-color: #ceebd6;
  color: var(--black);
}
table.nvt tr td:nth-child(3) {
  background-color: #ffe7a9;
  color: var(--black);
}
table.nvt tr td:nth-child(4) {
  background-color: #ffdde0;
  color: var(--black);
}
table.zui-table tr:nth-child(-n+3) td {
  color: var(--kt-dark) !important;
  background-color: #fff !important;
}
table.zui-table tr td {
  background: transparent;
}
table.zui-table tr td:first-child {
  background-color: transparent !important;
}
table.zui-table tr td:nth-child(2n) {
  background-color: #ceebd6;
  color: var(--kt-dark);
}
table.zui-table tr td:nth-child(2n+1) {
  background-color: #ffe7a9;
  color: var(--kt-dark);
}

.inchart-wrap {
  width: 230px;
}
.inchart-wrap .bizchart {
  width: 230px;
  height: 198px;
  display: flex;
  overflow: hidden;
  z-index: 2;
  position: relative;
  background: url(../media/img/bizgrid.svg) no-repeat center center/contain;
}
.inchart-wrap .bizchart #biz01 {
  background: #7D83FF;
  position: absolute;
  bottom: 19%;
  left: 26.4%;
  width: 10.5%;
  border-radius: 2px;
  max-height: 0;
}
.inchart-wrap .bizchart #biz01.risen {
  max-height: 35%;
}
.inchart-wrap .bizchart #biz01.risen.colored {
  background: #FFC145;
}
.inchart-wrap .bizchart #biz02 {
  background: #7D83FF;
  position: absolute;
  bottom: 19%;
  left: 43%;
  width: 10.5%;
  border-radius: 2px;
  max-height: 0;
}
.inchart-wrap .bizchart #biz02.risen {
  max-height: 26%;
}
.inchart-wrap .bizchart #biz02.risen.colored {
  background: #FF8364;
}
.inchart-wrap .bizchart #biz03 {
  background: #7D83FF;
  position: absolute;
  bottom: 19%;
  left: 59.5%;
  width: 10.5%;
  border-radius: 2px;
  max-height: 0;
}
.inchart-wrap .bizchart #biz03.risen {
  max-height: 44%;
}
.inchart-wrap .bizchart #biz04 {
  background: #7D83FF;
  position: absolute;
  bottom: 19%;
  left: 76.3%;
  width: 10.5%;
  border-radius: 2px;
  max-height: 0;
}
.inchart-wrap .bizchart #biz04.risen {
  max-height: 66%;
}
.inchart-wrap .bizchart #biz04.risen.colored {
  background: #47CF96;
}
.inchart-wrap .bizchart #biz05 {
  background: url(../media/img/bizline.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 39%;
  left: 13.5%;
  width: 100%;
  max-height: 0;
  max-width: 78.6%;
}
.inchart-wrap .bizchart #biz05.risen {
  max-height: 60%;
}
.inchart-wrap .bizchart .risen {
  transition: max-height 2s ease-out;
  height: 100%;
}
.inchart-wrap .bizchart #biz05.risen {
  transition: max-height 1s ease-out, max-width 1s ease-out;
  height: 100%;
  width: 100%;
}
.inchart-wrap .bizchart .colored {
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 1199px) {
  .titleclass h1 {
    opacity: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    height: 0 !important;
  }
  .info-mobile-menu .menu-sub a {
    padding: 5px !important;
    margin-bottom: 0 !important;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .zui-wrapper {
    position: relative;
  }
  .zui-scroller {
    margin-left: 120px;
    overflow-x: scroll;
    overflow-y: visible;
    padding-bottom: 5px;
  }
  .zui-table {
    border: none;
    border-right: solid 1px var(--kt-dark);
    border-collapse: collapse;
    border-spacing: 0;
  }
  .zui-table thead th {
    border: none;
    padding: 10px;
    text-align: left;
    white-space: nowrap;
  }
  .zui-table tbody td {
    border-bottom: solid 1px var(--kt-dark);
    padding: 10px;
    white-space: nowrap;
  }
  .zui-table .st-col {
    border-left: solid 1px var(--kt-dark);
    border-right: solid 1px var(--kt-dark);
    left: 0;
    position: absolute;
    top: auto;
    width: 120px;
    margin-top: -1px;
  }
  .zui-table .stce {
    height: auto;
    border: none !important;
  }
}
@media (max-width: 767px) {
  .infoclass .card .card-header .card-toolbar {
    max-height: 36px;
    min-height: 36px;
    min-width: 36px;
    max-width: 36px;
    margin-right: 0 !important;
    margin-left: 1rem;
  }
  .infoclass .card .card-header .card-toolbar img {
    max-width: 20px;
  }
}

/*# sourceMappingURL=info-page.css.map */
