:root {
  --primary: #4A88C7;
  --secondary: #E72F35;
  --active-color: rgba(27, 49, 71, 1);
  --Danger: #ED5151;
  --Warning: #F4A264;
  --Success: #29B473;
  --Black: #000000;
  --Dark: #203035;
  --Medium-Dark: #505761;
  --Medium: #757D8B;
  --Medium-Light: #C4C9D1;
  --Light: #ECEEF1;
  --Ultra-Light: #F7F8FB;
  --white: #ffffff;
  --input-color: #757D8B;
  --input-icon-color: #757D8B;
  --btn-color:#1C4975;
  --active-color-border:#4A88C7;
  --light-blue:#DAE6F3;
}

@font-face {
  font-family: 'Outfit-Bold';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Outfit-SemiBold';
  src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Outfit-Medium';
  src: url('../fonts/Outfit-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Outfit-ExtraBold';
  src: url('../fonts/Outfit-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Outfit-Regular';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost-Bold';
  src: url('../fonts/Jost-Bold.ttf') format('truetype');
}


body{
  font-family: 'Outfit-Regular';
  background:var(--Ultra-Light);
}

a {
    text-decoration: none;
}

p{
  font-family: 'Outfit-Regular';
  font-size: 13px;
  color: var(--Medium-Dark);
}

.main-section{
    display: flex;
    height: calc(100vh - 80px);
    align-items: center;
    justify-content: center;
}

header{
  position: sticky;
  top: 0;

  z-index: 999;  
}

nav{
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.nav-item {
  font-size: 13px !important;
  font-family: 'Jost-Bold' !important;
  padding: 0px 20px;
}

.nav-item .nav-link{
  color:var(--Black) !important;
}


.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color:var(--primary) !important;
}


.sidebar {
  height: calc(100vh - 60px);
  position: fixed;
  top: 67px;
  left: 0;
  background: rgba(255, 255, 255, 1);
  border-right: 0.8px solid rgba(196, 201, 209, 1);
  width: 230px;
  padding-top: 5px;
  transition: transform 0.3s ease-in-out;
  z-index: 999;
   overflow-y: scroll;
   padding-bottom: 50px;
}

.sidebar a {
  color: var(--Dark) ;
  text-decoration: none !important;
  padding: 15px 20px;
  display: block;
  font-size: 14px;
  font-family: 'Outfit-Regular';
}

.sidebar a.active {
  background: var(--active-color);
  color: #fff;
  border-left: 20px solid var(--active-color-border);
  font-family: Outfit-Bold;
}

.sidebar.open {
  transform: translateX(0);
}

.content {
  margin-left: 230px;
  background: var(--Ultra-Light);
  height: 100%;
}

.section-top{
  background: var(--white);
  border-bottom: 0.8px solid var(--Medium-Light);
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  align-items: center;
}

.section-title i{
  color: var(--Danger);
   padding-right: 10px;
}

.btn-link-style {
    background: var(--btn-color);
    color: var(--white);
    font-family: 'Outfit-Bold';
    text-transform: uppercase;
    height: 49px;
    font-size: 13px;
    padding: 0 40px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--btn-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


#sidebarToggle{
  display: none;
}

.primary-btn{
  background: var(--btn-color);
  color:var(--white);
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
  min-height: 49px;
  font-size: 13px;
  padding:0 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color:var(--btn-color);
}

.danger-btn{
  background: var(--Danger);
  color:var(--white);
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
  min-height: 49px;
  font-size: 13px;
  padding:0 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color:var(--Danger);
}


.primary-btn-outline{
  background: var(--light-blue);
  color: var(--btn-color);
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
  min-height: 49px;
  font-size: 13px;
  padding:0 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color:var(--btn-color);
}
.secondary-btn{
  background: var(--secondary);
  color:var(--white);
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
  min-height: 49px;
  font-size: 13px;
  padding:0 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color:var(--secondary);
}

.success-btn{
  background: var(--Success);
  color:var(--white);
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
  min-height: 49px;
  font-size: 13px;
  padding:0 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color:var(--Success);
}



.custom-button {
  color: var(--btn-color); 
  border: 1px solid var(--btn-color); 
  padding: 10px;
  width: 44px;
  height: 44px;
  text-align: center;
  border-radius: 5px; 
  background-color:var(--Ultra-Light); 
}

.section-title {
  /*font-weight: 600;*/
  font-size: 24px;
  line-height: 100%;
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
  color:var(--Black);
}

.section-sub-title{
  font-size: 20px;
  font-family: 'Outfit-Bold';
  text-transform: uppercase;
}

.input-container {
  position: relative;
}
.input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.input-icon-eye{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.input-container-icon .form-control {
  padding-left: 40px; 
}
.input-container .form-control{
  min-height: 46px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  color: var(--input-color);
  background: var(--white);
  font-family: 'Outfit-Regular';
  border:1px solid var(--Medium-Light);
}

.form-control:disabled, .form-control[readonly]
 {
    background-color: #e9ecef;
    opacity: 1;
}


.input-container i{
  color:var(--input-icon-color);
  padding-left: 5px;
}

.forgot-password-link{
    color: var(--secondary);
    font-size: 13px;
    font-family: 'Outfit-Bold';
}

.custom-select-container {
  position: relative;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--Medium-Light);
  background: var(--white);
  cursor: pointer;
  background-image: none;
  min-height: 48px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  font-size: 13px;
  color: var(--input-color);
  font-family: 'Outfit-Regular';
}

.customs-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--Medium-Light);
  background: var(--white);
  cursor: pointer;
  background-image: none;
  min-height: 48px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  font-size: 13px;
  color: var(--input-color);
  font-family: 'Outfit-Regular';
}

.custom-select-light .custom-select{
  background: var(--Ultra-Light);
 border: 1.25px solid var(--Medium-Light);
}

.custom-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 .25rem rgb(84 183 240 / 35%);
}

.custom-select-container::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--Medium);
}

.flex-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-label{
  font-family: 'Outfit-Bold';
  /*text-transform: uppercase;*/
  font-size: 13px;
  margin-bottom: 10px;
}

.input-label span{
    color:#505761;
}

.radio-btn .form-check-input:checked {
  background-color: var(--Success);
  border-color: var(--Success);
}

.radio-btn .form-check-input:focus{
  box-shadow: 0 0 0 .25rem rgb(76 175 80 / 29%);
}

.custom-checkbox.form-check-input:checked {
  background-color: var(--secondary); 
  border-color: var(--secondary); 
}

.custom-checkbox.form-check-input:focus {
  border-color: var(--secondary);
  box-shadow: none; 
}

.custom-checkbox.form-check-input {
  width: 15px;
  height: 15px;
  border-radius: 2px;
}

.custom-checkbox.form-check-input:focus:not(:checked) {
  border-color: var(--primary);
}


.theme-table {
  overflow-x: auto;
  padding: 0px;
  /*background: var(--Light);*/
}
.theme-table table {
  width: 100%;
  white-space: nowrap;
  margin:0;
}

.theme-table table thead tr th {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.84px;
  /*font-family: 'Outfit-SemiBold';*/
  background: var(--Medium-Light);
  color:var(--Black);
  padding: 15px 20px;
}

.theme-table table tbody tr td {
  background: transparent;
  padding: 10px 12px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.4px;
  font-family: 'Outfit-Regular';
  color: var(--Medium);
  padding: 15px 20px;
}

.theme-table table tbody tr td select{
    font-size: 13px;
    letter-spacing: 0.4px;
    font-family: 'Outfit-Regular';
    color: var(--Medium);
    width:100%;
}

.theme-table table thead tr th:first-child {
  border-radius: 4px 0px 0px 0;
}
.theme-table table thead tr th:last-child {
  border-radius: 0px 4px 0 0px;
}

.theme-table table tbody tr td:first-child {
  border-radius: 4px 0px 0px 4px;
}
.theme-table table tbody tr td:last-child {
  border-radius: 0px 4px 4px 0px;
}

.theme-table table tbody tr td .avatar {
  height: 30px;
  width: 30px;
  border-radius: 5px;
}
.theme-table table tbody tr td .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.theme-table table tbody tr:nth-child(odd) {
  background-color: var(--Ultra-Light); 
}

.theme-table table tbody tr:nth-child(even) {
  background-color: var(--white)
}

.radio-btn{
  font-size: 13px;
}









.file-upload-button {
  background-color: #ffffff;
  color: var(--Medium);
  padding: 10px 20px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--Medium-Light);
  width: 100%;
  min-height: 150px;
  justify-content: center;
  gap: 5px;
  font-family: 'Outfit-Regular';
}

 input[type="file"] {
  display: none;
}


.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.flex-item {
  flex: 1 1 20%;
  margin-bottom: 16px;
}

.or-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.or-text{
  font-size: 13px;
  padding-top: 20px;
}

.custom-select-container {
  width: 100%;
}

.dashboard .icon{
  background: var(--primary);
  border-radius: 5px;
  font-size: 20px;
  width: 50px;
  height: 50px;
  color: #fff;
}

.dashboard .card .fa-chevron-right {
  font-size: 20px;
  color: var(--Medium);
}


.dashboard .icon i{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.dashboard  .card-info{
  border-top: 1px solid var(--Medium-Light);
  margin-top: 10px;
  padding-top: 10px;
}

.dashboard  .card-info h3{
  font-family: 'Outfit-SemiBold';
  font-size: 16px;
}

.app-brand-link img{
    margin: auto;
    display: block;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--Medium-Light);
}
.divider:not(:empty)::before {
  margin-right: .5em;
}
.divider:not(:empty)::after {
  margin-left: .5em;
}


 .flex-layout h3{
    font-family: 'Outfit-Regular';
    font-weight: 700;
    font-size: 13px;
  }
  
  .flex-layout {
      display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--Ultra-Light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom:15px;
    }
    .custom-link{
    background: var(--primary);
    color: #fff;
    padding: 20px;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 4px;  
    }

   
    .rsiDataTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.rsiDataTable thead {
    background-color: var(--Light);
}

.rsiDataTable th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    color: var(--Black);
    font-size: 14px;
    border: 1px solid var(--Medium-Light);
    font-family: 'Outfit-Regular';
}

.rsiDataTable tbody {
    background-color: #fff;
}

.rsiDataTable td {
    padding: 10px;
    border: 1px solid var(--Medium-Light);
    font-size: 13px;
    color: var(--Medium);
    font-family: 'Outfit-Regular';
}

.rsiDataTable tfoot {
    background-color: var(--Light);
}

.barExpected, .barReceived {
    height: 10px;
    background-color: #4CAF50;
    margin-right: 5px;
    display: inline-block;
    border-radius: 5px;
}

.barExpected {
    background-color: #1C4975;
}

.barReceived {
    background-color: #4CAF50;
}

.text-end {
    text-align: right;
}

.text-success {
    color: green;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}


.nav-tabs .nav-link{
    color: var(--primary) ;
    background: transparent ;
    border-color: var(--primary); 
    border-radius: 0 !important;
}

.centerd-form{
    height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;  
}
@media screen and (min-width:991px) and (max-width:1220px){
  .nav-item{
     padding:0;
  }
}

@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .navbar-toggler {
    display: block;
  }

  .sidebar a {
    text-align: center;
    padding: 15px;
  }

  .content {
    margin-left: 0px;
     margin-bottom: 30px;
  }
  
  #sidebarToggle{
    display: block;
  }
  .section-sub-title{
    font-size: 13px;
  }
  .primary-btn{
    padding: 5px 10px;
    min-height: 40px;
  }
   .primary-btn-outline{
    padding: 5px 10px;
    min-height: 40px;
  }
   .secondary-btn{
    padding: 5px 10px;
    min-height: 35px;
  }
  .flex-item {
    flex: 1 1 100%;
    margin-bottom: 0;
}
.or-text {
    padding-top: 0;
    width: 100%;
}
.danger-btn{
   padding: 5px 10px;
    min-height: 35px;  
}
.nav-btn{
width:100% !important;
}
.return-history{
    width:100% !important;
}
}


 .status-badge {
      background-color: #d1fae5;
      color: #065f46;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.5rem;
      border-radius: 999px;
      margin-left: 0.5rem;
    }

table.dataTable{
  padding-top: 10px !important;
}


.total-amount-box {
    background: #4a88c7;
    height: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: 'Outfit-Regular';
    padding: 30px;
    text-align:center;
}

@media screen and (max-width: 350px) {
  .navbar-brand{
      display: contents;
  }
}




