html {
  height: 100%;
  font-size: 15px;
}
html body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f5f7fb;
  font-family: "Varela Round", 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;
  align-items: center;
  padding-bottom: 3px;
}
html body .wrapper .tile {
  position: fixed;
  left: 0;
  right: 0;
  padding: 150px;
  background-color: #4d70f6;
}
html h1, html h2, html h3, html h4, html h5, html h6 {
  margin: 0;
}

::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #d4d4d4;
  border-radius: 10px;
  margin: 0px 20px;
}

::-webkit-scrollbar-thumb {
  background: #585858;
  border-radius: 10px;
}

.board-container {
  position: fixed;
  top: 40px;
  left: 150px;
  right: 150px;
  background-color: white;
  border-radius: 30px;
  padding: 20px 30px;
  padding-bottom: 5px;
  box-shadow: 1px 1px 20px 1px rgba(142, 142, 142, 0.2);
}
@media (max-width: 820px) {
  .board-container {
    left: 25px;
    right: 25px;
  }
}
.board-container .board-header {
  color: #2f3953;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}
.board-container .board {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 17px;
  padding-top: 20px;
}

.list {
  margin-right: 20px;
  max-width: 300px;
  min-width: 300px;
  padding: 20px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-top: 0;
  border-radius: 12px;
  background-color: #f4f7f9;
}
.list .list-title {
  color: #7786ab;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
}
.list .list-title a {
  display: inline-block;
  color: #7786ab;
  margin-right: 15px;
}
.list .list-content {
  max-height: 74vh;
  overflow-y: auto;
  padding-right: 10px;
}

.card {
  background-color: white;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 2px 5px rgba(228, 228, 228, 0.831372549);
  margin-bottom: 12px;
}
.card .card-labels {
  display: flex;
  margin-bottom: 15px;
}
.card .card-labels .label {
  border-radius: 24px;
  padding: 5px 14px;
  margin-right: 5px;
}
.card .card-labels .label.blue {
  color: #4d70f6;
  background-color: #dfe6ff;
}
.card .card-labels .label.green {
  color: #6be56a;
  background-color: #e5ffe5;
}
.card .card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #343e57;
}
.card .card-progress {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.card .card-progress .progress-line {
  position: relative;
  background-color: #e0e5eb;
  padding: 3px 0px;
  flex-grow: 1;
  margin-right: 10px;
  border-radius: 24px;
}
.card .card-progress .progress-line::before {
  content: "";
  background-color: #2a4fd7;
  padding: 3px 0px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 24px;
}
.card .card-progress .progress-line.w-95::before {
  width: 95%;
}
.card .card-progress .progress-line.w-38::before {
  width: 38%;
}
.card .card-progress .progress-line.w-100::before {
  width: 100%;
}
.card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .card-footer .card-date {
  display: flex;
  align-items: center;
}
.card .card-footer .card-date i {
  color: #c0cee1;
  font-size: 20px;
  margin-right: 10px;
}
.card .card-footer .card-date span {
  color: #83909b;
  font-size: 13px;
}
.card .card-footer .card-members .avatar {
  background: #94c7f3;
  border-radius: 100%;
  width: 22px;
}

.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 */
