body, .treeview-menu>li>a,.form-control{
  font-size: 12px;
}

.my-styled-list > span{
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
}

.my-styled-list .msl-1{
  width: 50px;
}

.my-styled-list .msl-2{
  width: 25px;
}

.my-styled-list .msl-3{
  width: 250px;
}

.my-styled-list .msl-4{
  width: 100px;
}

.my-styled-list .msl-5{
  width: 100px;
}

.my-styled-list.heading span{
  padding: 10px 0;
  font-weight:bold;
  box-sizing: border-box;
  margin-left: 5px;
}

.my-styled-list.heading{
  padding: 10px;
}

.text img {
  width: 60px;
  object-fit: contain;
  margin-right: 10px;
}

.btn-black, .btn-black:hover, .btn-black:active, .btn-black:focus {
  text-transform: uppercase;
  margin: 7px 0;
  min-width: 100px;
  border: none;
  color: #fff;
  background: #000;
  border-radius: 1px;
  cursor: default;
}

.btn-white, .btn-white:hover, .btn-white:focus, .btn-white:active {
  text-transform: uppercase;
  margin: 7px 0;
  min-width: 100px;
  border: none;
  color: #000;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  cursor: default;
}

.form-container {
  background: #E5E3E3;
  max-width: 200px;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

.bg-danger,
.bg-danger a {
  background-color: #DC3545;
}

.bg-warning,
.bg-warning a {
  color: #343A40;
  background-color: #FFC107;
}

.bg-caution,
.bg-caution a {
  color: #343A40;
  background-color: #ff9100;
}

.bg-info,
.bg-info a {
  background-color: #17A2B8;
}

.bg-success,
.bg-success a {
  background-color: #28A745;
}

.bg-danger,
.bg-info,
.bg-success,
.bg-caution
.bg-danger a,
.bg-info a,
.bg-caution a,
.bg-success a {
  color: #fff;
}

.bg-warning,
.bg-warning a {
  color: #343A40;
}

.nowrap {
  white-space: nowrap;
}

.select2-selection__choice.locked-tag {
  background-color: #999 !important;
  border-color: #999 !important;
}

.locked-tag .select2-selection__choice__remove{
  display: none!important;
}

/* I suggest to hide  all selected tags from drop down list */
.select2-results__option[aria-selected="true"]{
  display: none;
}

.select2{
  width: 100% !important;
}
.checkbox label, .radio label{
  font-size:14px;
}

/* prevent country selector from overflowing */
.logo_container {
  display: flex;
  justify-content: space-evenly;
}

.logo-lg {
  width: max-content;
}

.logo {
  padding: 0px !important;
}

/* extends skin-blue */
.skin-blue .main-header .logo .url_select {
  background: #367fa9;
}
/* end extends skin-blue */

/* extends skin-red */
.skin-red .main-header .logo .url_select {
  background: #d73925;
}
/* end extends skin-red */

/* extends skin-red */
.skin-purple .main-header .logo .url_select {
  background: #555299;
}
/* end extends skin-red */

/* extends skin-green */
.skin-green .main-header .logo .url_select {
  background: #008d4c;
}
/* end extends skin-green */

.btn.active, .btn:active {
  background-image: none;
  outline: #000 1px auto;
  outline-offset: 1px;
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.3125);
  box-shadow: inset 0 3px 10px rgba(0,0,0,.4125);
}

[data-toggle="buttons"] label {
  outline: none !important;
  outline-offset: 0 !important;
}

.d-none {display: none !important;}
.d-flex {display: flex !important;}

.overlay {
  background: rgba(255, 255, 255, .8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-spinning {
  font-size: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}