/* quicksand-300 - latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/quicksand-v8-latin-300.eot');
  /* IE9 Compat Modes */
  src: local('Quicksand Light'), local('Quicksand-Light'),
    url('../fonts/quicksand-v8-latin-300.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/quicksand-v8-latin-300.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/quicksand-v8-latin-300.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/quicksand-v8-latin-300.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/quicksand-v8-latin-300.svg#Quicksand') format('svg');
  /* Legacy iOS */
}

/* quicksand-regular - latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/quicksand-v8-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local('Quicksand Regular'), local('Quicksand-Regular'),
    url('../fonts/quicksand-v8-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/quicksand-v8-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/quicksand-v8-latin-regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/quicksand-v8-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/quicksand-v8-latin-regular.svg#Quicksand') format('svg');
  /* Legacy iOS */
}


html {
  font-family: "Quicksand";
  font-weight: 300;
}

#mainCanvas {
  width: 100%;
  height: 100%;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

nav ul li {
  float: left;
  border-right: 1px solid #bbb;
}

.nav_li_right {
  float: right;
  border-right: none;
  border-left: 1px solid #bbb;
}

nav ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  cursor: pointer;
}

nav ul li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #4CAF50;
}

.dropdown {
  display: none;
  background-color: #333;
  position: fixed;
  left: 0;
  bottom: 48;
  z-index: 1;
}

.task_menu {
  display: inline-block;
}

.task_dropdown {
  float: none;
  border-right: none;
  border-bottom: 1px solid #bbb;
}

.task_dropdown:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1290px) {
  .task {
    display: none;
  }

  .task_menu:hover+.dropdown {
    display: block;
  }

  .dropdown:hover {
    display: block;
  }
}