.mh-submit-form {

}

.mh-action-form {

}
.mh-pad-cont {
    padding: .3em .3em .3em .3em !important;
}

.mh-pad-label {
    padding: .5em .5em 0em .5em !important;
}

.mh-pad-ctrl {
    padding: 0em 0em 0em .5em !important;
}

.mh-ctrl-table {

}

.mh-ctrl-not-panel {

}

.mh-alert-badge {

}

#mh-top {
   width: 100%;
   margin: 0;
   padding: 0;
   top: 0;
   left: 0;
}

#mh-select {
   width: 100%;
   margin-top: 50px;
}

body
{
  overflow-x: hidden; /* needed because hiding the menu on the right side is not perfect,  */
}

.mh-shadow {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.mh-rounded{
    border-radius:.5rem!important
}

.mh-outline-changed {
    box-shadow: 0 0 0 .2rem orangered !important;
}

.mh-outline-updating {
    box-shadow: 0 0 0 .2rem orange !important;
}

.mh-ctrl-status-line {
	height: 20px;
}

.mh-ctrl-status-label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: bold;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	color: #9da0a4;
	border-radius: 6px 0px 4px 0px;
}

.mh-font-x-large {
    font-size: 2rem;
}

.mh-font-large {
    font-size: 1.5rem;
}

.mh-font-small {
    font-size: .75rem;
}

.mh-font-x-small {
    font-size: .5rem;
}

.mh-font-bold {
    font-weight: bold;
}

.mh-font-underline {
    text-decoration: underline;
}

.mh-flex-row {
display: flex;
}

.mh-label-wrap {
flex: 1;
max-width: 100px;
}

.mh-ok-btn {
  margin-right: .5em
}

.mh-input-wrap {
}

.mh-unit {
  margin: 0 10px
}

.mh-unit-label {
  margin-left: 5px
}

.mh-tabs__ {
    position:absolute;
    margin:0 auto;
    overflow:hidden;
	padding:5px;
  	height:50px;
}

.mh-tab-list {
    position:relative;
    left:30px;
    top:0px;
  	min-width:3000px;
  	margin-left:12px;
    margin-top:0px;
}

.nav-tabs .mh-alert-badge{
  position: absolute;
  top: 0px;
  right: -5px;
  background: red;
}

.mh-list__ li{
	display:table-cell;
    position:relative;
    text-align:center;
    cursor:grab;
    cursor:-webkit-grab;
    color:#efefef;
    vertical-align:middle;
}

.scroller {
  text-align:center;
  cursor:pointer;
  display:none;
  padding:7px;
  padding-top:11px;
  white-space:nowrap;
  vertical-align:middle;
  background-color:#fff;
}

.scroller-right{
  float:right;
  padding-right: 60px; /* leave place for hamburger menu */
}

.scroller-left {
  float:left;
}

.mh-hmenu-icon {
  max-width: 40px;
  max-height: 40px;
  margin-right: 10px;
}

#mh_menuToggle
{
  display: block;
  position: absolute;
  top: 10px;
  left: 20px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#mh_menuToggle span
{
  text-decoration: none;
  color: #232323;
}

#mh_menuToggle a
{
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

#mh_menuToggle a:hover
{
  color: blue;
}

#mh_menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#mh_menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #808080;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#mh_menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#mh_menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#mh_menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #808080;
}

/*
 * But let's hide the middle one.
 */
#mh_menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#mh_menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#mh_menu
{
  position: absolute;
  min-width: 200px;
  margin: -100px 0 0 -50px;
  padding-top: 100px;
  padding-bottom: 10px;

  border_:2px solid blue;
  border-radius:10px;

  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#mh_menu li
{
  padding: 5px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#mh_menuToggle input:checked ~ ul
{
  transform: none;
}