.header{
  position: fixed;
  top: 0;
  right: 0;
  width: calc( 100% - 280px);
  background-color: #FFFFFF;
  border-bottom: 1px solid #4D4D4D4D;
}

.headerInner{
  width: 100%;
  height: 112px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.headerInnerContent{
  display: flex;
  flex-direction: column;
  /*row-gap: 8px;*/
}

.headerTitle {
    font-weight: 700;
    /*/*font-size: 22px;*/*/
    letter-spacing: 1px;
    margin-top: 10px;
}

.headerPar{
  /*font-size: 15px;*/
  color: #4D4D4D;
  letter-spacing: 1px;
}

.headerBtn{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: none;
  background-color: #EF4444;
  border-radius: 10px;
  padding: 18px 23px;
  /*font-size: 18px;*/
  font-weight: 600;
  letter-spacing: 1%;
  color: #FFFFFF;
  transform: scale(1);
  transition: all 0.3s ease;
}

.headerBtn:hover{
  transform: scale(1.04);
  transition: all 0.3s ease;
}

.headerBtn span{
 margin-left: 8px;
 margin-right: 4px;
  cursor: pointer;
}

.infoIcon{
  position: relative;
  top: -4px;
}

.sideNav{
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  padding: 43px 15px;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
}

.logoLink{
  width: 238px;
  margin-bottom: 34px;
}

.sideNavLine{
  width: 100%;
  height: 1px;
  background-color: #FFFFFF80;
  margin-bottom: 30px;
}

.sideNavList {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 0rem !important;
}

.sideNavItemLink{
  width: 100%;
  height: 62px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
  column-gap: 14px;
  color:white;
}

.sideNavItem p{
  font-weight: 600;
  /*font-size: 18px;*/
  letter-spacing: 1%;
  color: #FFFFFF;
}

.activeLink{
  border-radius: 10px;
  background-color: #FFFFFF;
}

.activeLink span{
  color: var(--primary-color);
}

.main{
  position: absolute;
  height: calc(100vh - 113px);
  width: calc( 100% - 280px);
  bottom: 0;
  right: 0;
  background-color: #f4f6fa;
  overflow-y: scroll;
  padding: 15px 0;
}

.mainTop {
    display: grid;
    grid-template-columns: 2fr 2fr 2.2fr;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 15px;
}

.mainTopItem{
  padding: 21px 30px;
  background-color: #FFFFFF;
  border: 1px solid #4D4D4D4D;
  border-radius: 15px;
  min-height: 186px;
}

.balanceTop{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 8px;
}

.balanceTop h4{
  /*font-size: 18px;*/
  font-weight: 500;
  letter-spacing: 1%;
}

.balanceTop span{
  display: inline-block;
  /*font-size: 18px;*/
  font-weight: 500;
  letter-spacing: 1%;
  color: #FFFFFF;
  background-color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 5px;
}

.balancePar{
  /*font-size: 14px;*/
  letter-spacing: 1%;
  color: #4D4D4D;
  margin-bottom: 20px;
}

.balanceLine{
  width: 100%;
  height: 1px;
  background-color: #DEDEDE;
  margin-bottom: 20px;
}

.balanceText{
  font-size: 18px;
  letter-spacing: 1%;
  color: #4D4D4D;
  font-weight: 400;
}

.balanceTime{
  font-size: 18px;
  font-weight: 500;
  color: #1C1C1C;
}

.balanceTextWrap{
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.balanceTextWrapInner{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stockTitle{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1%;
  margin-bottom: 16px;
}


.stockChartWrap {
  display: flex;
  align-items: center;
  flex-direction: row;
  column-gap: 19px;
}

.stockLegend {
  font-size: 16px;
  color: #4D4D4D;
}

.legendItem {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 5px;
  }

.legendColor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

.legendValue {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
}

.statusChart {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 25px;
}

.statusLegeng {
    font-size: 16px;
    color: #555;
}

.statusTitle{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 500;
  color: #1C1C1C;
  margin-bottom: 5px;
}

.statusPar{
  font-size: 18px;
  color: #4D4D4D;
  margin-bottom: 15px;
}

.statusLegendItem{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 7px;
  }

.statusLegendColor {
    width: 14px;
    height: 14px;
    border-radius: 50%;
  }

.satusLegenLabel {
  font-size: 16px;
  color: #1C1C1C;
  font-weight: 600;
}

.statusLegenText{
  font-size: 16px;
  font-weight: 400;
  color: #4D4D4D;
}

.mainInner {
    width: 100%;
    padding: 15px;
    border: 1px solid #4D4D4D4D;
    background-color: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    column-gap: 15px;
    /*justify-content: space-between;*/
}

.mainInnerBtn {
    cursor: pointer;
    display: flex;
    margin: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    width: 120px;
    height: 40px;
    border: 1px solid #0C155980;
    background-color: #F3F3F6;
    border-radius: 10px;
    transform: scale(1);
    transition: all 0.3s ease;
}

.mainInnerBtn:hover{
  transform: scale(1.04);
  transition: all 0.3s ease;
}

.mainInnerBtn span{
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

.applyBtn {
    cursor: pointer;
    margin: 10px;
    width: 120px;
    height: 40px;
    background-color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    transform: scale(1);
    transition: all 0.3s ease;
}
.selectWrap {
    margin: 10px;
    font-size:larger;
}

    .selectWrap .form-select {
        /*margin-top: 10px;
        height: 57px;
        font-size: larger;*/
    }

.applyBtn:hover {
    transform: scale(1.04);
    transition: all 0.3s ease;
    forceOutStockSelect
}

.customSelect {
  position: relative;
  width: 209px;
}

.selectSelected {
  border: 1px solid #4D4D4D;
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  font-size: 18px;
  color: #4D4D4D;
  }

  .select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    z-index: 99;
    display: none;
  }

.select-items div {
    padding: 8px 12px;
    cursor: pointer;
  }

  .select-items div:hover {
    background-color: #F3F3F6;;
  }

  .arrow {
    border: solid #666;
    border-width: 0 1.5px 1.5px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 5px;
  }

  .customSelect.open .select-items {
    display: block;
  }

.selectLabel{
  font-size: 16px;
  color: #1C1C1C;
  margin-bottom: 10px;
}

.filterWrap {
    position: relative;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #4D4D4D4D;
    background-color: #FFFFFF;
    margin-bottom: 30px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
}



.filterBtn{
  width: 152px;
  height: 50px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  column-gap: 10px;
  transform: scale(1);
  transition: all 0.3s ease;
}

.filterBtn:hover{
  transform: scale(1.04);
  transition: all 0.3s ease;
}

.filterBtn span{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1%;
}

.filterOptions{
  display: flex;
  flex-direction: row;
  align-items: center;
  /*gap: 15px;*/
  flex-wrap: wrap;
}

.filterOption{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
  padding: 12px 20px;
  border: 1px solid #0C155933;
  background-color: #F3F3F6;
  border-radius: 25px;
  color: var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 90px;
    left: 30px;
    background-color: white;
    border: 1px solid #4D4D4D26;
    border-radius: 15px;
    width: 250px;
    margin-top: 4px;
    display: none;
    z-index: 10;
    overflow: hidden;
}

.dropdown div {
    padding: 15px 25px;
    cursor: pointer;
    font-size: 16px;
    color: #4D4D4D;
    border-bottom: 1px solid #4D4D4D26;
}



.dropdown div:last-child{
  border-bottom: none;
}

.dropdown div:hover {
    background-color: #F3F3F6;
}



.tableContainer {
  width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  border: 1px solid #4D4D4D33;
  border-radius: 14px;
 }

.itemsTable {
 border-collapse: collapse;
 min-width: 1200px;
}

@media screen and (max-width: 2200px){
  .itemsTable {
   width: 100%;
}
}

.itemsTable  thead {
  background-color: #F4F4F4;
  position: sticky;
  top: 0;
  z-index: 1;
}

.itemsTable  tbody {
  background-color: #fff;
}
.tableTitle{
  font-size: 16px;
  font-weight: 500;
  color: #1C1C1C;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}

.itemsTable   th, td {
  padding: 22px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.itemsTable td{
  font-size: 16px;
  color: #4D4D4D;
  padding: 16px 15px;
}

.itemsTable th:nth-child(1), .itemsTable td:nth-child(1){
  width: 18px;
  text-align: center;
  padding: 22px 15px 22px 30px;
}

.itemsTable th:nth-child(2), .itemsTable td:nth-child(2){
  width: 158px ;
}

.itemsTable th:nth-child(3),.itemsTable td:nth-child(3) {
  width: 110px;
}

.itemsTable th:nth-child(4), .itemsTable td:nth-child(4){
  width: 160px;
}
 
.itemsTable th:nth-child(5),.itemsTable td:nth-child(5) {
  width: 140px;
 }

.itemsTable th:nth-child(6), .itemsTable td:nth-child(6) {
  width: 161px;
}

.itemsTable th:nth-child(7), .itemsTable td:nth-child(7) {
  width: 109px;
}

.itemsTable th:nth-child(8), .itemsTable td:nth-child(8) {
  width: 169px;
  border-right: 1px solid #4D4D4D33;
  border-left: 1px solid #4D4D4D33;
  text-align: center !important;
  align-items: center;
}

thead th:nth-child(8) .tableTitle {
  justify-content: center;
}
.productImg{
  width: 52px;
  height: 52px;
}


.vendorLink{
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 4px;
}

th input[type="checkbox"], td input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
}

.status-in-stock {
  background-color: #d4f5d4;
  color: #2B9660;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: m400;
}

.status-inactive {
    background-color: #f6d128d6;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: m400;
}
.status-out-stock {
  background-color: #f8d7da;
  color: #EF4444;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 400;
}

.actionsBtnWrap{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}

.actionsBtn{
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 17px;
  height: 17px;
}

.paginationWrap{
  position: relative;
  top: -2px;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  padding: 32px 35px 30px 35px;
  border:  1px solid #4D4D4D4D;
  border-top: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.pagination .pagesSelectLabel{
  font-size: 16px;
}

.paginationSelect .pagesSelected{
  background-color: #F3F3F6;
}

.pagesSelectedItems{
  font-size: 12px;
}

.pagesSelectedItems div{
  padding: 6px 12px;
}

.paginationSelect{
  width: 70px;
}

.paginationText{
  flex-grow: 1;
  font-size: 16px;
  color: #4D4D4D;
}

.pagination button {
  border: none;
  background-color: transparent;
  border-radius: 10px;
  padding: 4px 12px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  color: #4D4D4D;
}

#prev{
  margin: 0 13px;
}

#next{
  background-color: #0C155914;
  margin: 0 13px;
}

.pagination button.active {
  background: #0C1559;
  color: white;
  border-color: #0C1559;
}


.pagination button:disabled {
    background-color: transparent;
    cursor: not-allowed;
    color: #4D4D4D;
}

#last{
  background-color: transparent;
}

/* Settings */

.settingsInner{
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 30px;
}

.settingsItem{
  height: 545px;
  border: 1px solid #4D4D4D4D;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}

.settingsTitle{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1%;
  margin-bottom: 30px;
}

.settingsLine{
  width: 100%;
  height: 1px;
  background-color: #4D4D4D4D;
  margin-bottom: 30px;
}

.marketplaceText{
  font-size: 16px;
  margin-bottom: 20px;
}

.settingsSelect{
  width: 100%;
}

.settingsSelected{
  width: 100%;
  height: 57px;
  border: 1px solid #4D4D4D;
}

.settingsSelectLabel{
  margin-bottom: 12px;
  font-size: 16px;
}

.vacationMode {
  margin: 30px 0;
   width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggleLabel h4{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.toggleLabel p {
  font-size: 16px;
  color: #4D4D4D;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #0C155954;
    border-radius: 50px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.3s;
}

.knob {
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    width: 14px;
    height: 14px;
    stroke: #0C1559;
    stroke-width: 3;
    fill: none;
    opacity: 0;
    transition: opacity 0.2s;
}

input:checked + .slider {
    background-color: #0C1559;
}

input:checked + .slider .knob {
    transform: translateX(24px);
}

input:checked + .slider .check-icon {
    opacity: 1;
}

.marketplaceItem{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
  padding: 11px 15px;
  margin-bottom: 15px;
  border: 1px solid #4D4D4D4D;
  background-color: #F5F6F9;
  border-radius: 10px;
}

.marketplaceItem img{
  width: 35px;
  height: 35px;
}

.marketplaceItem p{
  flex-grow: 1;
}

.marketplaceItem button{
  border: none;
  cursor: pointer;
  background-color: #EF4444;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 10px;
}

.marketPlaceBtn{
  margin-top: 30px;
  cursor: pointer;
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  padding: 18px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
  transform: scale(1);
  transition: all 0.3s ease;
}

.marketPlaceBtn:hover{
  transform: scale(1.04);
  transition: all 0.3s ease;
}

.marketPlaceBtn p{
  font-size: 18px;
  font-weight: 600;
}

.stepperWrap {
  width: 100%;
  margin-top: 30px;
}

.stepperWrap label {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #4D4D4D4D;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px  10px 12px 25px;
}

#countValue {
    font-size: 18px;
    font-weight: 400;
}

.stepper-buttons {
    display: flex;
    align-items: center;
}

.stepper-buttons button {
    background: none;
    border: none;
    /*font-size: 22px;*/
    cursor: pointer;
    padding: 4px 10px;
    color: #4D4D4D;
    
}

.stepper-buttons button:focus {
    outline: none;
}

.divider {
    width: 1px;
    background-color: #4D4D4D4D;
    height: 20px;
}

.acountItem{
  height: 840px;
}

.profileImgBtn{
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 62px;
  height: 60px;
  border-radius: 50%;
}

.profileImgBtn img{
  width: 100%;
  height: 100%;
}

.profileBox{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 22px;
  margin-bottom: 30px;
}

.profileInfo h4{
  font-size: 18px;
  line-height: 19px;
  color: #222222;
  margin-bottom: 6px;
}

.profileInfo p{
  font-size: 16px;
  color: #4D4D4D;
}

.profileLabel{
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 30px;
}

.profileLabel p{
  color: #1C1C1C;
  font-size: 16px;
}

.profileLabel input{
  width: 100%;
  height: 57px;
  padding: 18px 25px;
  border: 1px solid #4D4D4D4D;
  outline: none;
  border-radius: 10px;
  font-size: 18px;
}

.profileLabel input::placeholder{
  color: #4D4D4D;
   font-size: 18px;
}

.passwordWrap {
    margin-bottom: 30px;
    width: 100%;
}

.passwordWrap label {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

.passwordBox {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #4D4D4D4D;
    border-radius: 10px;
    padding: 14px 14px;
    background-color: white;
}

.password-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
    padding-top: 6px;
}

.toggle-password {
    cursor: pointer;
    font-size: 20px;
    color: #555;
    padding-left: 10px;
}

.accountDataBtn{
  width: 100%;
  height: 57px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
  justify-content: center;
  border-radius: 15px;
  transform: scale(1);
  transition: all 0.3s ease;
}

.accountDataBtn:hover{
  transform: scale(1.04);
  transition: all 0.3s ease;
}

.accountDataBtn p{
  font-size: 18px;
  font-weight: 600;
}

 .custom-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
  }

  .custom-checkbox input {
    display: none;
  }

  .checkmark {
    width: 18px;
    height: 18px;
    background-color: white;
    border: 1px solid #4D4D4D80; 
    border-radius: 3.38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
    padding-bottom: 3px;
  }

  .custom-checkbox input:checked + .checkmark {
    background-color: var(--primary-color); 
  }

  .checkmark::after {
    content: "";
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
  }

  .custom-checkbox input:checked + .checkmark::after {
    display: block;
  }

.actionsBtn img {
  transition: filter 0.2s ease;
}

.actionsBtn:hover img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(19%) saturate(6129%) hue-rotate(223deg) brightness(70%) contrast(102%);
}

.stockChart{
  width: 108px;
  height: 108px;
}

.vendorChart{
  width: 137px;
  height: 137px;
}
.filterOption {
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.defaultOption{
  transform: scale(1);
}

.filterOption.show {
  opacity: 1;
  transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.filterOption.hide {
  opacity: 0;
  transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 900px){
  .mainTop{
    grid-template-columns: 1fr;
  }
  .mainInner{
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .filterWrap{
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .customSelect{
    width: 180px;
  }
  .searchWrap{
    width: 300px;
  }
  .headerBtn{
    padding: 14px 18px;
    font-size: 14px;
  }
  .headerTitle{
     /*font-size: 24px;*/
  }
  .headerPar{
   font-size: 16px;
  }
}

@media screen and (max-width: 1300px){
  .sideNav {
    display: none;
  }
  .header {
    width: 100%;
  }
  .main {
    width: 100%;
  }
  .mainInner{
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .mainTopItem {
    height: auto;
  }
}



@media screen and (max-width: 1450px){
  .mainTopItem {
    height: 200px;
  }
  .vendorChart{
    width: 107px !important;
    height: 107px !important;
  }
}

@media screen and (min-width: 1700px){
.productImg{
  width: 72px;
  height: 72px;
}

.actionsBtn{
  width: 22px !important;
  height: 22px !important;
}

.actionsBtnWrap{
  column-gap: 20px;
}

.actionsBtn img{
  width: 100%;
  height: 100%;
}

  .itemsTable td, .tableTitle, .vendorLink{
    /*font-size: 22px;*/
  }
 .itemsTable th:nth-child(1), .itemsTable td:nth-child(1){
  width: 38px;
 }
 .itemsTable th:nth-child(2), .itemsTable td:nth-child(2){
  width: 210px ;
}

.itemsTable th:nth-child(3),.itemsTable td:nth-child(3) {
  width: 160px;
}
.itemsTable th:nth-child(4), .itemsTable td:nth-child(4){
  width: 210px;
}
.itemsTable th:nth-child(5),.itemsTable td:nth-child(5) {
  width: 190px;
 }

.itemsTable th:nth-child(6), .itemsTable td:nth-child(6) {
  width: 210px;
}

.itemsTable th:nth-child(7), .itemsTable td:nth-child(7) {
  width: 159px;
}
.itemsTable th:nth-child(8), .itemsTable td:nth-child(8){
  width: 230px;
}
.paginationText{
  /*font-size: 22px;*/
}
.pagesSelectLabel{
  font-size: 22px ;
}
.pagesSelected{
  width: 80px;
  /*font-size: 22px;*/
  padding: 8px 18px;
}
.pagination button{
  /*/*font-size: 22px;*/*/
  padding: 6px 14px;
}
.seacrhInput {
  /*font-size: 22px;*/
}
.searchWrap {
  height: 57px;
}
.filterBtn span{
  /*/*font-size: 24px;*/*/
}
.filterOption p{
  /*font-size: 22px;*/
}
.mainInnerBtn{
  width: 220px;
}
.mainInnerBtn span{
  /*font-size: 24px;*/
}
.selectLabel{
  /*font-size: 22px;*/
}
.customSelect{
  width: 320px;
}
.selectSelected {
  /*font-size: 22px;*/
}
.applyBtn {
  /*font-size: 22px;*/
  width: 200px;
}

.mainTopItem{
  height: auto;
}
 .stockTitle, .statusTitle  {
  /*font-size: 24px;*/
  margin-bottom: 12px;
}
.balanceTop h4{
   /*font-size: 24px;*/
}
.balanceTop {
  margin-bottom: 12px;
}
.balancePar{
  font-size: 20px;
}
.balanceText{
  /*font-size: 24px;*/
}
.legendValue, .balanceTime {
  /*font-size: 24px;*/
}
.stockLegend, .statusLegenText, .headerBtn span  {
  /*font-size: 22px;*/
}
.stockChart{
  width: 138px;
  height: 138px;
}
.stockChartWrap{
  margin-top: 20px;
  column-gap: 40px;
}
.vendorChart{
  width: 167px;
  height: 167px;
  margin-top: 10px;
}
.statusPar, .headerPar, .sideNavItem p  {
  /*font-size: 24px;*/
}
.statusChart{
  column-gap: 40px;
}
.sideNavItemLink{
  height: 72px;
}
.headerTitle {
  font-size: 32px;
}
.sideNav {
  width: 380px;
}
.header {
  width: calc(100% - 380px);
}
.main {
  width: calc(100% - 380px);
}
.settingsTitle {
  font-size: 26px;
}
.toggleLabel h4, .marketPlaceBtn p, .profileLabel input , .password-input {
  /*font-size: 24px;*/
}
.toggleLabel p, .stepperWrap label, .count-value, .profileInfo p  {
  /*font-size: 22px;*/
}
.settingsItem {
  height: 610px;
}
.marketplaceText, .marketplaceItem p, .marketplaceItem button ,.profileLabel p, .passwordWrap label{
  /*font-size: 22px;*/
}
.marketplaceItem img {
  width: 45px;
  height: 45px;
}
.profileInfo h4 {
  margin-bottom: 12px;
  /*font-size: 24px;*/
}
.profileImgBtn {
  width: 82px;
  height: 82px;
}
.profileLabel input {
  padding: 20px 25px;
}
.acountItem {
  height: 940px;
}
.accountDataBtn p{
  /*font-size: 24px;*/
}
}
.bg-primary {
    color: white !important;
    background-color: #0C1559 !important;
}
