@import url('https://fonts.googleapis.com/css?family=Montserrat|Roboto|Ubuntu');

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

html, body, #main-wrapper {
  height: 100%;
  width: 100%;
}

#main-wrapper {
  display: flex;
}

nav {
  height: 100%;
  background-color: #292f36;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .2s;
}

nav .global-ellipse-separator {
  width: 100%;
  text-align: center;
  font-size: 17px;
  color: rgba(151, 167, 189, 0.88);
}

/*Collapsed Navigation*/

nav .button-container {
  transition: .2s;
}

nav .button-container button {
  position: relative;
  min-height: 64px;
  min-width: 64px;
  padding: 10px;
  display: block;
  border: solid 2px transparent;
  background-color: transparent;
  transition: .2s;
  cursor: pointer;
  outline: none;
  text-align: center;
}

nav .button-container button:hover {
  border-left-color: #ff503f;
}

nav .button-container button .pPicture {
  position: relative;
  height: 40px;
  width: 40px;
  background-color: #edeef1;
  border-radius: 50%;
  background-image: url("../img/default-user.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: .2s;
}

nav.coll-menu .button-container button .title {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 5px 10px;
  border-radius: 50px;
  background-color: #ff503f;
  max-height: 15px;
  color: #edeef1;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  visibility: hidden;
  opacity: 0;
  cursor: default;
  z-index: 1;
}

nav.coll-menu .button-container button .title p {
  white-space:nowrap;
}

nav.coll-menu .button-container button:hover > .title {
  left: 130%;
  visibility: visible!important;
  opacity: 1!important;
  transition: .2s;
}

nav.coll-menu .button-container button .title:hover {
  left: 100%;
  visibility: hidden!important;
  opacity: 0!important;
}

button[disabled] {
  pointer-events: none;
}

nav .button-container button i {
  color: #edeef1;
  font-size: 20px;
  transition: .2s;
}

nav .button-container button:hover > i {
  color: #ff503f;
}

nav .button-container button.active i {
  color: #ff503f;
}

/*Expanded Navigation*/

nav.expn-menu .button-container button.active > .title {
  color: #ff503f;
}

nav.expn-menu .button-container button{
  text-align: left;
  display: flex;
  align-items: center;
}

nav.expn-menu .button-container button .pPicture {
  display: inline-block;
}

nav.expn-menu .button-container button i {
  display: inline-block;
  margin-left: 15px;
}

nav.expn-menu .button-container button .title {
  position: relative;
  display: inline-block;
  margin: 0 28px;
  max-height: 15px;
  color: #edeef1;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: .2s;
}

nav.expn-menu .button-container button #appname {
  margin-left: 20px;
}

nav.expn-menu .button-container button:hover > .title {
  color: #ff503f;
}

#main-sandbox {
  flex: 1;
  background-color: #edeef1;
  position: relative;
  display: flex;
}

#main-sandbox .sectionCanvas {
  height: 100%;
  width: calc(100% - 140px);
  padding: 0 70px;
  position: absolute;
  left: -100px;
  display: none;
}

#main-sandbox .sectionCanvas h1 {
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 1px;
  margin-top: 60px;
  color: rgb(41, 47, 54);
  font-size: 20px;
}

#main-sandbox .sectionCanvas.active {
  display: block;
  left: 0px;
}

#main-sandbox #terminal {
  background-color: rgb(50, 52, 52);
}
