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-info,
.bg-info a {
  background-color: #17A2B8;
}

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

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

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

/* Cms help modal styles */
.cms_help_text {
  cursor: text;
  padding: 10px 10px;
  border-radius: 5px;
  background-color: transparent;
  overflow: hidden;
  transform: scaleY(1);
  transform-origin: top;
  height: auto;
  max-height: unset;
  transition: background-color 0.1s ease-in-out, transform 0.1s ease-out, max-height 0.1s ease-out;
}

.cms_help_text:hover {
  background-color: #d7d7d7;
}

.cms_help_text.hidden-animated {
  transform: scaleY(0);
  height: 0;
  max-height: 0;
  overflow: hidden;
}

.cms_help_form {
  overflow: hidden;
  transform: scaleY(1);
  transform-origin: top;
  height: auto;
  max-height: unset;
  transition: transform 0.1s ease-out, max-height 0.1s ease-out;
  transition-delay: 0.1s;
}

.cms_help_form.hidden-animated {
  transform: scaleY(0);
  height: 0;
  max-height: 0;
  overflow: hidden;
}
