html {
  height: 100%;
  font-size: 15px;
}
html body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0079BF;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html body .wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 10px;
}
html h1, html h2, html h3, html h4, html h5, html h6 {
  margin: 0;
}

::-webkit-scrollbar {
  height: 12px;
  width: 8px;
}

::-webkit-scrollbar-track:horizontal {
  background: #0067A2;
  border-radius: 4px;
  margin: 0px 20px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #66A3C7;
  border-radius: 4px;
}

::-webkit-scrollbar-track:vertical {
  background: #D8DBE2;
  border-radius: 4px;
  margin: 0px 20px;
}

::-webkit-scrollbar-thumb:vertical {
  background: #BFC2CD;
  border-radius: 4px;
}

.header {
  background-color: rgba(0, 0, 0, 0.1490196078);
  padding: 10px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  color: white;
}

.board {
  display: flex;
  padding-top: 40px;
  color: #484848;
  align-items: start;
  overflow-x: auto;
  flex-grow: 1;
}
.board::after {
  content: "";
  padding: 10px;
}

.list {
  background-color: #f5f5f5;
  border-radius: 3px;
  margin-left: 20px;
  padding-bottom: 30px;
  max-width: 300px;
  min-width: 300px;
  padding-right: 5px;
}
.list .list-title {
  padding: 14px 16px;
  padding-right: 36px;
  font-weight: bold;
}
.list .list-content {
  padding: 0 14px;
  padding-right: 9px;
  max-height: 75vh;
  overflow-y: auto;
}

.card {
  background-color: white;
  margin-bottom: 8px;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(9, 30, 66, 0.25);
}
.card .card-cover {
  height: 150px;
  background-position: center center;
  background-size: cover;
  border-radius: 3px 3px 0 0;
}
.card .card-content {
  padding: 12px 16px;
  font-size: 14px;
}
.card .card-content .label-group {
  display: flex;
  margin-bottom: 10px;
}
.card .card-content .label-group .label {
  width: 40px;
  height: 7px;
  border-radius: 5px;
  margin-right: 10px;
}
.card .card-content .label-group .label.label-blue {
  background-color: #00C2E0;
}
.card .card-content .label-group .label.label-orange {
  background-color: #FF9F1A;
}
.card .card-content .label-group .label.label-green {
  background-color: #51E898;
}
.card .card-content .label-group .label.label-purple {
  background-color: #FF78CB;
}
.card .card-content .card-title {
  margin-bottom: 10px;
}
.card .card-content .card-details {
  display: flex;
  align-items: center;
  color: #8a8a8a;
  font-size: 13px;
}
.card .card-content .card-details .watching {
  margin-right: 12px;
}
.card .card-content .card-details .due-date {
  background-color: #f2d600;
  color: white;
  padding: 4px 6px;
  border-radius: 3px;
  margin-right: 12px;
}
.card .card-content .card-details .due-date.complete {
  background-color: #61BD4F;
}
.card .card-content .card-details .due-date.overdue {
  background-color: #EC9488;
}
.card .card-content .card-details .comments {
  margin-right: 12px;
}

.setting-menu {
  position: fixed;
  top: 0px;
  bottom: 0;
  right: -300px;
  width: 300px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.35);
  transition: all 0.5s;
  z-index: 3000;
}
.setting-menu.open {
  right: 0;
}
.setting-menu .menu-wrapper {
  height: 100%;
  position: relative;
  background: #39C367;
  padding: 20px 10px;
  padding-bottom: 0;
  box-sizing: border-box;
}
.setting-menu .menu-wrapper .open-btn {
  position: absolute;
  background: #39C367;
  height: 50px;
  width: 50px;
  left: -50px;
  top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  cursor: pointer;
}
.setting-menu .menu-wrapper .open-btn i {
  font-size: 20px;
}
.setting-menu .menu-wrapper .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.setting-menu .menu-wrapper .btns a {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  display: inline-block;
  margin-left: 10px;
  text-decoration: none;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: bold;
}
.setting-menu .menu-wrapper .btns a.demo-btn {
  background-color: white;
  color: black;
}
.setting-menu .menu-wrapper .btns a.purchase-btn {
  background-color: black;
}
.setting-menu .menu-wrapper .menu {
  height: 100%;
  color: white;
  padding-right: 8px;
  padding-bottom: 90px;
  box-sizing: border-box;
  overflow-y: scroll;
}
.setting-menu .menu-wrapper .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 0;
}
.setting-menu .menu-wrapper .menu ul li a {
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(92, 111, 139, 0.12);
  border-radius: 9px;
  display: inline-block;
  transition: all 0.5s;
  color: black;
  margin-bottom: 20px;
}
.setting-menu .menu-wrapper .menu ul li a img {
  max-width: 100%;
  border: 1px solid #EFF4FD;
  border-radius: 0.3rem;
}
.setting-menu .menu-wrapper .menu ul li a.active {
  border: 2px solid black;
}

/*# sourceMappingURL=style.css.map */
