.vxc-cabinet-container {
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
  width: 100%;
}

.vxc-cabinet-menu {
  width: 270px;
  min-width: 270px;
  padding: 24px;
  background: linear-gradient(0deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.2) 100%), #01A87C;
}

.vxc-cabinet-body {
  flex-grow: 1;
  padding: 24px 72px;
  overflow: auto;
}

.vxc-scroll-disable-menu-open .vxc-cabinet-body {
  opacity: 0.5;
  filter: blur(1);
}

@media(max-width: 1220px) {
  .vxc-cabinet-body {
    padding: 24px 24px;
  }
}

@media(max-width: 880px) {
  .vxc-cabinet-menu {
    width: 270px;
    min-width: 270px;
  }
}

@media(max-width: 767px) {
  .vxc-cabinet-body {
    padding: 24px 8px;
  }
}

.nav-pills .nav-link.vxc-nav-link-active {
  background-color: var(--light-green);
  font-weight: bold;
  color: #000;
}

.nav-fill .vxc-nav-item, .nav-fill > .vxc-nav-link {
  text-align: left;
}

li.nav-item.vxc-nav-item {
  margin-bottom: 16px;
}

a.nav-link.vxc-nav-link {
  color: #000;
}

.vxc-hamburger-nav {
  line-height: 1;
}

.vxc-hamburger-nav i {
  font-size: 1.75em;
}

.vxc-hamburger-nav i:before {
  content: "\f0c9";
}

.vxc-hamburger-nav.vxc-hamburger-nav-open i:before {
  content: "\f00d";
}

@media(max-width: 767px) {
  .vxc-cabinet-body {
    min-width: 100%;
  }

  .vxc-cabinet-menu {
    position: absolute;
    width: 270px;
    min-width: 270px;
    transform: translateX(-270px);
    top: 70px;
    bottom: 0;
    transition: all 200ms ease-in-out;
    z-index: 2;
  }

  .vxc-cabinet-menu.vxc-cabinet-menu-open {
    transform: translateX(0);
    transition: all 200ms ease-in-out;
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
  }
}

.vxc-cabinet-title {
  margin-top: 24px;
  margin-bottom: 24px;
}

.vxc-loanstatus-box {
  margin-top: 10px;
  padding-top: 34px;
  position: relative;
}

.vxc-loanstatus-box > .badge:first-child {
  font-weight: 400;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translate(-50%);
  font-size: 14px;
}

.vxc-loan-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vxc-loan-data-col {
  background-color: var(--light-blue);
  border-radius: 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.vxc-loan-data-col > span {
  font-size: 14px;
}

.vxc-alert {
  border-radius: 16px;
  border: 0;
  padding: 8px 16px;
}

.vxc-table {
  width: 100%;
  vertical-align: top;
}

.vxc-table > thead {
  border-radius: 16px;
}

.vxc-table td, 
.vxc-table th {
  padding: 12px;
  text-align: center;
  border-top: 4px solid var(--dark-green);
  border-bottom: 4px solid var(--dark-green);
}

.vxc-table td:first-child, 
.vxc-table th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.vxc-table td:last-child, 
.vxc-table th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.vxc-table th {
  background-color: var(--ice-blue);
}

.vxc-table tbody td {
  background-color: #fff;
}

.vxc-table-responsive-scroll-icon {
  background: url('../images/vxc_scroll.svg') no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  margin-bottom: 18px;
}

.vxc-pagination .page-link {
  padding: 9px 18px;
  border-color: transparent;
  background-color: transparent;
  font-weight: 500;
  border-radius: 8px;
  color: #000;
}

.vxc-pagination .active > .page-link,
.vxc-pagination .page-link.active {
  background-color: var(--light-blue);
  border-color: var(--light-blue);
  color: #000;
}