/* NEW TABLE */


.table123 {
  margin-bottom: 1rem;
  /* border: var(--bs-gray-800) 1px solid; */
  text-align: center;
  min-width:10rem;
}
.table123 thead {
  background-color: var(--bs-secondary);
}
.table123 tbody td {
  border: var(--bs-gray-500) 1px solid;
  padding: 0.25rem;
}
.table123 th {
  border: var(--bs-gray-500) 1px solid;
  padding: 0.25rem;
}
.table123 tbody tr:nth-child(even) {
  background-color: var(--bs-gray-300);
}
.table123 tbody tr:hover {
  background-color: var(--bs-gray-500);
}


.flex-center{
  display:flex;
  flex-direction: row;
  justify-content: center;
}

.flex-left-right{
  display:flex;
  flex-direction: row;
  justify-content:space-between;
}

.input{
  /* width:20%; */
  padding: 0.35rem ;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}



/* NEW Box view, mini tiles */
.box{
  border-radius: 18px;
  background: #fbfbfb;
  border: 1px solid #f9f8f8;
  border-top: 10px solid #d2d6de;
  margin-bottom: 20px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  border-top-color: #159acb;
  height: fit-content;
}
.top-orange{
  border-top-color: #cb6115;
}
.top-green{
  border-top-color: #15cb18;
}
.top-red{
  border-top-color: #cb1515;
}
.top-yellow{
  border-top-color: #cbbc15;
}
.top-purple{
  border-top-color: #b015cb;
}
.top-dark-green{
  border-top-color:#198754;
}

.box-title{
  font-size: 18px;
  margin: 0;
  line-height: 1;
  color:black;
  text-decoration:none;

}
.box-subtitle{
  font-size: 14px;
  margin: 0;
  line-height: 1;
  color:black;
  text-decoration:none;

}
.box-header {
  color: #444;
  display: block;
  padding: 10px;
  position: relative;
}
.box-body{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
}
.box-body .row{
  justify-content: center;
}
.box-line{
  display: inline-block;
  
}
.box-item{
  
}



.btn-app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;  
  height: 90px;
  width: 120px;
  max-width: 100%;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f4f4f4;
  font-size: 12px;
  /* border-bottom: 4px solid var(--bs-primary); */
  background: transparent;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out,;
}
.btn-app-medium{
  height: 100px;
  width: 120px;
}
.btn-app-mini{
  height: 60px;
  width: 90px;
}
.btn-app-detailled{
  height: 145px;
  width: 180px;
}
.btn-app-bottom{
  position:absolute;
  background:var(--bs-primary);
  color:white;
  left: 0px; /* Adjust this value to match the parent's padding */
  right: 0px;
  bottom:0px;
  min-height:4px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out,;
}
.btn-app-bottom-caption{
  display:none;
}
.btn-app:hover .btn-app-bottom{
  background:var(--bs-success);
  display:block;
  min-height:15px;
}
.btn-app:hover .btn-app-bottom-caption{
  display:block;
}

.btn[class*='bg-']:hover {
  -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,0.2);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.2);
}

.btn-app:hover {
  background: #f4f4f4;
  color: #444;
  border-color: #aaa;
  /* border-bottom: 15px solid var(--bs-success); */
  
}
.btn-app>.fa, .btn-app>.glyphicon, .btn-app>.ion {
  font-size: 20px;
  display: block;
}

.bg-green-gradient {
  background: #00a65a !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
  background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  background: -moz-linear-gradient(center bottom, #00a65a 0, #00ca6d 100%) !important;
  background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  color: #fff;
}


.badge {
  display: flex;
    justify-content: center;
    align-items: center;
  width: 15px;
  height: 15px;
  padding: 3px ;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 15px;
}
.badge-transparent {
  display: inline-block;
  width: 15px;
  height: 15px;
  padding: 3px ;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 15px;
}

.badge-red{
  background-color: red;
}
.badge-orange{
  background-color: orange;
}
.badge-orange-dark{
  background-color: #9a6400;
}
.badge-green {
  background-color: green;
}
.badge-black {
  background-color: black;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-app>.badge {
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 10px;
  font-weight: 400;
}
.badge-left{
  position: relative;
  top: -1px;
  left: 5px;
}

.badge-edit {
  position: absolute;
  top: 3px;
  right: 5px;
  display: inline-block;
  padding: 3px ;
  
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  /* color: #fff; */
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  /* background-color: #777; */
  /* border-radius: 15px; */
}
.bg-light-grey{
  background-color:#858585;
}











/* New General CSS */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Source Sans Pro',sans-serif;
}

.h4, h4 {
  font-size: 18px;
}
.h4, .h5, .h6, h4, h5, h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}


/* NEW alert color */
.alert-primary {
  --bs-alert-color: #084298;
  --bs-alert-bg: #e1e4ff;
  --bs-alert-border-color: #b6d4fe;
}
.alert-warning {
  --bs-alert-color: #664d03;
  --bs-alert-bg: #e1e4ff;
  --bs-alert-border-color: #ffecb5;
}



.main-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 50px;
  min-height: 100%;
  width: 230px;
  z-index: 810;
  -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out;
  -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out;
  -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out;
  transition: transform .3s ease-in-out,width .3s ease-in-out;
}
.sidebar {
  background-color: var(--bs-dark);
  padding-bottom: 10px;
}

.sidebar-form input:focus {
  border-color: transparent
}














.separator {
  height: 2px; /* Adjust the height of the separator line */
}

.dark-line {
  background-color: #000; /* Dark color for the line, you can adjust this color */
  height: 2px; /* Match the height with the separator height */
  border: none; /* Remove any default borders */
}



.text-mini{
  font-size:6px;
}

.pointer{
  cursor:pointer;
}


:roots{
  --bs-alert-bg: #e1e4ff;
}