/*
 * Main content
 


/* Styles go here */


.md-sidenav-fixed {
    height: 100%;
}

/* Vertical scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e1e1e1;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #666666;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #706f6f;
}

::-webkit-scrollbar-thumb:active {
  background: #666666;
}

::-webkit-scrollbar-track:active {
  background: #bfbfbf;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Horizontal scrollbar */
::-webkit-scrollbar {
  height: 8px; /* Set the height for horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #e1e1e1;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #666666;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #706f6f;
}

::-webkit-scrollbar-thumb:active {
  background: #666666;
}

::-webkit-scrollbar-track:active {
  background: #bfbfbf;
}

::-webkit-scrollbar-corner {
  background: transparent;
}


html {
	height: 100%;
    width: 100%;
    position: relative;
    overflow: auto;
}

body {
    overflow: auto;
}


.scroll-section {
    overflow: visible !important; /* Override overflow setting */
}
.non-scroll-section {
    overflow: hidden  !important; /* Override overflow setting */
}
.auto-scroll-section {
    overflow: auto !important; /* Override overflow setting */
}
.fill-height{

  min-height: 100%;
}
.fill-height > div{
  min-height: 100%;

}

.md-sidenav-left {

    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
}


.md-sidenav-unlocked {
    position: fixed !important;
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
}
.sidenav-coordinates {

    min-width: 400px !important;
    width: 400px !important;
    max-width: 400px !important;
}

.sidenav-edit-narrow {
    position: fixed !important;
    min-width: 270px !important;
    width: 270px !important;
    max-width: 270px !important;
    z-index:770;
}
.sidenav-edit {
    position: fixed !important;
    min-width: 450px !important;
    width: 450px !important;
    max-width: 450px !important;
    z-index:70;
}
.sidenav-edit-extended {
    position: fixed !important;
    min-width: 1200px !important;
    width: 1200px !important;
    max-width: 1200px !important;
    z-index:70;
}
.sidenav-edit-medium {
    position: fixed !important;
    min-width: 25% !important; /* Adjust as needed */
    width: 25% !important; /* Adjust as needed */
    max-width: 25% !important; /* Prevent it from exceeding full width */
    z-index:70;
}
.sidenav-edit-extended-xxl {
    position: fixed !important;
    min-width: 85% !important; /* Adjust as needed */
    width: 85% !important; /* Adjust as needed */
    max-width: 85% !important; /* Prevent it from exceeding full width */
    z-index: 80;
}
.sidenav-edit-extended-xl {
    position: fixed !important;
    min-width: 75% !important; /* Adjust as needed */
    width: 75% !important; /* Adjust as needed */
    max-width: 75% !important; /* Prevent it from exceeding full width */
    z-index:80;
}
.sidenav-parameters {
    position: fixed !important;
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    z-index:770;
}


.sidenav-preview {
    position: fixed !important;
    min-width: 600px !important;
    width: 600px !important;
    max-width: 600px !important;
}

md-backdrop ~ md-content {
    position: fixed;
    overflow: hidden;
}

.side-menu, .side-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.side-menu .md-button.active {
  color: #FF5722; /* deep-orange 500 */
}

.side-menu .menu-toggle-list a.md-button {

  padding: 0 16px 0 32px;
  text-transform: none;
  text-rendering: optimizeLegibility;
  font-weight: 500;
}

.side-menu > li {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.md-button-toggle .md-toggle-icon.toggled {
  transform: rotateZ(180deg);
  -webkit-transform: rotateZ(180deg);
}

.md-button-toggle.toggled {
  background-color: rgb(206, 229, 252, 0.5);
}

.side-menu .md-button-toggle .md-toggle-icon {
  margin: auto 0 auto auto;
  padding-top: 12px;
  width: 15px;
  float: right;
  transition: transform .3s ease-in-out;
  -webkit-transition: -webkit-transform .3s ease-in-out;
}

.menu-toggle-list.ng-hide {
  max-height: 0;
}

.side-menu .md-button {
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
  max-height: 40px;
  overflow: hidden;
  padding-left: 16px;
	padding-right: 26px;
  text-align: left;
  text-decoration: none;
  white-space: normal;
 
}
 /*width: 100%; */
.menu-toggle-list {

  max-height: 1300px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.75s cubic-bezier(0.35, 0, 0.25, 1);
  -webkit-transition-property: max-height;
  -moz-transition: 0.75s cubic-bezier(0.35, 0, 0.25, 1);
  -moz-transition-property: max-height;
  transition: 0.75s cubic-bezier(0.35, 0, 0.25, 1);
  transition-property: max-height;
}

.side-menu menu-toggle span{
  padding-top: 12px;
  padding-bottom: 12px;
}


.asset-menu, .side-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.asset-menu .md-button.active {
  color: #FF5722;
}

.asset-menu .menu-toggle-list a.md-button {

  padding: 0 16px 0 32px;
  text-transform: none;
  text-rendering: optimizeLegibility;
  font-weight: 500;
}

.asset-menu > li {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}



.asset-menu .md-button-toggle .md-toggle-icon {
  margin: auto 0 auto auto;
  padding-top: 12px;
  width: 15px;
  float: right;
  transition: transform .3s ease-in-out;
  -webkit-transition: -webkit-transform .3s ease-in-out;
}


.asset-menu .md-button {
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
  max-height: 40px;
  overflow: hidden;
  padding-left: 16px;
	padding-right: 26px;
  text-align: left;
  text-decoration: none;
  white-space: normal;
 
}



.asset-menu menu-toggle span{
  padding-top: 12px;
  padding-bottom: 12px;
}





md-input-container .md-input[disabled],
  [disabled] md-input-container .md-input {
    background-position: bottom -1px left 0;
    background-size: 4px 1px;
    background-repeat: repeat-x; 
	border-bottom-color: rgba(0,0,0,0.12);
	border-bottom-width: 1px;
    border-bottom-style: solid;
    background-color: transparent;	
	
	}
	

.md-tab{
    padding: 12px 12px;
}
md-content md-tabs {
    background: #f6f6f6;
    border: 1px solid #e1e1e1; }
	
md-content md-tabs md-tabs-wrapper {
      background: white; }

md-tabs.md-default-theme md-ink-bar, md-tabs md-ink-bar {
    color: rgb(121,85,72);
    background: rgb(255, 0, 0);
}

.md-main-tab{
    .md.tab;
    padding: 20px 20px;
}
md-content md-tabs {
    background: #f6f6f6;
    border: 1px solid #e1e1e1; }

md-content md-tabs md-tabs-wrapper {
      background: white; }

md-tabs.md-default-theme md-ink-bar, md-tabs md-ink-bar {
    color: rgb(121,85,72);
    background: rgb(255, 0, 0);
}



md-nav-bar.md-default-theme md-ink-bar md-nav-ink-bar {
    color: rgb(165,105,159);
    background: rgb(255, 0, 0);
}


md-nav-bar .md-nav-bar {
  background: white;
  border: 1px solid #e1e1e1;
}


@media (max-width: 2000px)
md-dialog.md-dialog-fullscreen {
    min-height: 100%;
    min-width: 100%;
    border-radius: 0;
}
/*
.md-dialog-container {
    z-index: 20000;
}
*/
.page-container {
  padding: 0;
  
  }
  
.page {
  margin: 0 auto;
  padding:10px;
 }
 
ul.breadcrumb {
	
	padding-left: 0px;
	margin-left: 0px;

}
li.breadcrumb {
    display:inline;
	list-style-type: none;
	padding-right: 5px;
}


li.breadcrumb a:hover {
  color: #666;
  background-position: 100% -48px;
  cursor: pointer;
}

.whiteframedemoDirectiveAttributeUsage {
  /* For breakpoint `-xs` */
  /* For breakpoint `-sm` */
  /* For breakpoint `-md` */
  /* For breakpoint `-gt-md` */ }
.whiteframedemoDirectiveAttributeUsage md-whiteframe, .whiteframedemoDirectiveAttributeUsage 

div.padded {
background: #fff;
margin: 30px;
height: 100px; }

ul.pagination {
    display: inline-block;
    padding: 0;
    margin: 0;
}

ul.pagination li {display: inline;}

ul.pagination li a {
    color: black;
    float: left;
    padding: 2px 4px;
    text-decoration: none;
}

ul.pagination li a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.toolbar-small-text md-input-container .md-errors-spacer{
  min-height: 0px !important;
}

.sidenav-subheader md-subheader {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  margin: 0 0 0 0;
  position: relative; }
  
.sidenav-subheader .md-subheader-inner {
    display: block;
	margin-left: 15px;
	max-height:40px;
	height:40px;
    padding: 0px; }
	
.sidenav-subheader .md-subheader-content {
    display: block;
    z-index: 1;
    position: relative; }
	
table.md-table:not(.md-row-select) td.md-cell:nth-child(n+2):nth-last-child(n+2),
table.md-table:not(.md-row-select) th.md-column:nth-child(n+2):nth-last-child(n+2) {
  padding: 0 16px 0 0;
}
table.md-table.md-row-select td.md-cell:nth-child(n+3):nth-last-child(n+2),table.md-table.md-row-select th.md-column:nth-child(n+3):nth-last-child(n+2) {
    padding: 0 16px 0 0
}
	
.selectdemoSelectHeader {
  /* Please note: All these selectors are only applied to children of elements with the 'selectdemoSelectHeader' class */ }
  .selectdemoSelectHeader .demo-header-searchbox {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
    padding: 0; }
  .selectdemoSelectHeader .demo-select-header {
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
    padding-left: 10.667px;
    height: 48px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    width: auto; }
  .selectdemoSelectHeader md-content._md {
    max-height: 240px; }


.widget-header {

    padding: 7px;
    max-height: 50px;
    min-height: 50px;
    font-size: 0.8em;
}
.widget-footer {

    padding: 7px;
    max-height: 50px;
    min-height: 50px;
    font-size: 0.8em;

}
.my-fade-container {
  position: relative;
}
.widget-card-settings {

    position: relative;
    display: inline-block;
    width: 100%;
	max-height: 30px;
	min-height: 50px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
/*
    padding: 7px;
    max-height: 75px;
    */
}
.widget-settings {

    position: absolute;
    display: block;
	padding: 7px;
    width: 100%;
    height: 20%;
	max-height: 30px;
	min-height: 50px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
/*
    padding: 7px;
    max-height: 75px;
    */
}


settings-hidden {

    float: right;
    position: absolute;
	padding: 7px;
    width: 100px;
    margin-left:auto;
    margin-right:0;
	max-height: 75px;
	min-height: 50px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    clear: right;
/*
    padding: 7px;
    max-height: 75px;
    */
}
.my-fade-animation.ng-enter {

  -webkit-transition: 0.7s linear all;
  -moz-transition: 0.7s linear all;
  -o-transition: 0.7s linear all;
  transition: 0.7s linear all;

}
.my-fade-animation.ng-enter {
  z-index: 100;
  opacity: 0;
}
.my-fade-animation.ng-enter.ng-enter-active {
  opacity: 1;
}
.my-fade-animation.ng-leave {
  -webkit-transition: 0.7s linear all;
  -moz-transition: 0.7s linear all;
  -o-transition: 0.7s linear all;
  transition: 0.7s linear all;
}
.my-fade-animation.ng-leave {
  z-index: 101;
  opacity: 1;
}
.my-fade-animation.ng-leave.ng-leave-active {
  opacity: 0;
}
/*
.my-fade-animation.ng-enter,
.my-fade-animation.ng-leave {
  -webkit-transition: 0.7s linear all;
  -moz-transition: 0.7s linear all;
  -o-transition: 0.7s linear all;
  transition: 0.7s linear all;
}
.my-fade-animation.ng-enter {
  z-index: 100;
  opacity: 0;
}
.my-fade-animation.ng-enter.ng-enter-active {
  opacity: 1;
}
.my-fade-animation.ng-leave {
  z-index: 101;
  opacity: 1;
}
.my-fade-animation.ng-leave.ng-leave-active {
  opacity: 0;
}
*/
.gridSection {
	
	height:100%;

}

md-list-item.md-no-proxy.md-parameter-item {
   
    position: relative;
    padding: 0px 2px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    
}

.overlay {


    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    display:block;
    z-index:1500;
    cursor: auto;

}


.shade-input {
  position:relative;
  margin-bottom:45px;
}

.gridster-dragger {

}

.gridster-layout-box {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    color: #004756;
    background: #ffffff;
    position: relative;
}

.gridster-layout-item {

    top: 50%;
    margin: auto;
    position:absolute;
    height: 100%;
}


.gridster-widget-item {
    left: 50%;
    top: 50%;
    margin: auto;
    position:absolute;
    transform: translate(-50%, -50%);
    width: 100%;

}
    /*height: 100%;*/

.scroller {
    position: relative; /* relative or absolute positioning required by Perfect Scrollbar */
    max-height: 10000px;  /* height must be limited to induce scrolling behavior */
}

.full-screen-z-index {
    z-index: 2147483647;

}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

treecontrol li {
    position: relative;
    padding: 0 0 0 20px;
    line-height: 42px;
}

treecontrol.tree-classic li.tree-expanded i.tree-branch-head {
    padding: 5px 15px;
    background: url("../images/ic_folder_open_black_24px.svg") no-repeat;
}

treecontrol.tree-classic li.tree-collapsed i.tree-branch-head {
    padding: 5px 15px;
    background: url("../images/ic_folder_black_24px.svg") no-repeat;
}

treecontrol.tree-classic li.tree-leaf i.tree-leaf-head {
    padding: 5px 15px;
    background: url("../images/ic_description_black_24px.svg") no-repeat;
}

treecontrol.tree-classic li .tree-selected {

}

.horizontal-headers {
    flex:100;

}

md-expansion-panel-header .md-title-large {


    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    min-width: 100px;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    white-space: nowrap;
  }

md-expansion-panel-collapsed .md-title-large {


  -webkit-box-flex: 5px !important;
  -ms-flex: 5px !important;
  flex: 5px !important;
  font-size: 16px !important;
    min-width: 100px;
  max-width: 500px !important;
  overflow: hidden !important;
  text-align: left !important;
  white-space: nowrap !important;
    text-overflow: ellipsis  !important;
  }
md-expansion-panel-collapsed .md-title {


  -webkit-box-flex: 5px !important;
  -ms-flex: 5px !important;
  flex: 5px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  min-width: 80px !important;
  max-width: 184px !important;
  overflow: hidden !important;
  text-align: left !important;
  white-space: nowrap !important; 
  text-overflow: clip !important; 
  }

#card {
    width: 50vw;
    height: 50vh;
    background-color: gray;
    display: flex;
    align-items: center; /* horizontal */
    justify-content: center; /* vertical */
}

.gridster-widget-input {

    -webkit-order: 2;
     -ms-flex-order: 2;
     order: 2;
     display: block;
     margin-top: 0;
     background: none;
     padding-top: 2px;
     padding-bottom: 2px;
     padding-left: 2px;
     padding-right: 2px;
     border-width: 1px 1px 1px 1px ;
     line-height: 26px;
     height: 30px;
     -ms-flex-preferred-size: 26px;
     border-radius: 5px;
     border-style: solid;
     width: 150%;
     box-sizing: border-box;
     float: left;

}