


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

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




/* NEW Box view, mini tiles */
.box{
  border-radius: 8px;
  background: #fbfbfb;
  border: 1px solid #f9f8f8;
  border-top: 3px solid #d2d6de;
  /* margin-bottom: 20px; */
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  border-top-color: #159acb;
  /* margin-bottom:10px; */
  height: fit-content;
  /* -webkit-transition: border-bottom .3s ease-in-out,margint-bottom .3s ease-in-out;
  -moz-transition: border-bottom .3s ease-in-out,margint-bottom .3s ease-in-out;
  -o-transition: border-bottom .3s ease-in-out,margint-bottom .3s ease-in-out;
  transition: border-bottom .3s ease-in-out,margint-bottom .3s ease-in-out; */
}
.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;
}

.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{
  
}
.box[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);
}

.box:hover {
  background: #f4f4f4;
  color: #444;
  border-bottom:3px solid #159acb;
  border-left:3px solid #159acb;
  border-right:3px solid #159acb;
  margin-bottom:-3px;
  margin-left:-3px;
  margin-right:-3px;
  
}



.btn-app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;  
  height: 90px;
  width: 120px;
  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: border-bottom .3s ease-in-out;
  -moz-transition: border-bottom .3s ease-in-out;
  -o-transition: border-bottom .3s ease-in-out;
  transition: border-bottom .3s ease-in-out,;
}
.btn-app-medium{
  height: 100px;
  width: 120px;
}
.btn-app-detailled{
  height: 145px;
  width: 180px;
}
.btn-app-wide{
  height: 50px;
}
.btn-app-ultrawide{
  height: 50px;
  width: 200px;
}
.btn-app-mini{
  height: 50px;
  width: 100px;
}

.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: 8px 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: inline-block;
  width: 10px;
  height: 10px;
  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-red{
  background-color: red;
}
.badge-orange{
  background-color: orange;
}
.badge-green {
  background-color: green;
}
.badge-black {
  background-color: black;
}
.badge-transparent {
  background-color: transparent;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-app>.badge {
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 10px;
  font-weight: 400;
}











/* 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
}


















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

.pointer{
  cursor:pointer;
}


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