/* set right margin 0 */
.md-content {
  margin-right: 0;
  margin-left: 0;
}

/* disable sidebar */
.md-sidebar{
  display: none;
}

/* disable menu icon */
.md-icon--menu {
  display: none;
}

#pc-mode {
  display: block;
}

.md-footer{
  display: none;
}

.home-footer{
  position: fixed;
  height: 48px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: #f2f2f2ff;
}

#mobile-mode {
  display: none;
}


@media (max-width: 1219px) {
  #pc-mode {
    display: none
  }
  #mobile-mode {
    display: block;
  }
  .md-footer{
    display: none;
  }
  .md-header{
    display: block;
  }

}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}



/* Style the button that is used to open and close the collapsible content */
.collapsible {
 background-color: #eee;
 color: #444;
 cursor: pointer;
 padding: 18px;
 width: 100%;
 border: none;
 text-align: left;
 outline: none;
 font-size: 22px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
 background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
 padding: 0 18px;
 display: none;
 overflow: hidden;
 background-color: #f1f1f1;
}
