html {
  height: 100%;
}
html body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #18203c;
  color: #dee7f8;
  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;
}
html h1, html h2, html h3, html h4, html h5, html h6 {
  margin: 0;
}
html a {
  color: #dee7f8;
  text-decoration: none;
}
html ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

::-webkit-scrollbar-track:horizontal {
  background: #1e2955;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #3c4e94;
  border-radius: 4px;
}

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

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

.header {
  background-color: #293250;
  padding: 17px 10px;
  display: flex;
  justify-content: center;
  font-size: 28px;
}

.board {
  padding-top: 15px;
  overflow-y: auto;
  margin-right: 10px;
}

.list {
  padding: 0 30px;
  border-bottom: 1px solid #1f2848;
  padding-top: 20px;
  padding-right: 20px;
}
.list .list-title {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  padding: 10px 0;
}
.list .list-title .add-more {
  font-size: large;
}
.list .list-content {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  padding-bottom: 20px;
  overflow-x: auto;
}

.card {
  max-width: 330px;
  min-width: 330px;
  background-color: #323d5f;
  margin-right: 15px;
  border-radius: 7px;
}
.card.card-green {
  border-left: 9px solid #5cc976;
}
.card.card-green .score-green {
  background-color: #3c5f65;
  color: #51a470;
}
.card.card-orange {
  border-left: 9px solid #f5ab42;
}
.card.card-orange .score-orange {
  background-color: #625858;
  color: #dc9d46;
}
.card.card-red {
  border-left: 9px solid #e1465b;
}
.card.card-red .score-red {
  background-color: #5d3f5e;
  color: #c7455c;
}
.card .card-body {
  padding: 15px 20px;
}
.card .card-body .card-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card .card-body .card-title .subtitle {
  margin-top: 3px;
  color: #919dad;
  font-size: 14px;
}
.card .card-body .card-title .score {
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 13px;
  font-weight: bold;
}
.card .card-body .card-description {
  color: #caccd5;
  margin-bottom: 7px;
  font-size: 14px;
}
.card .card-footer {
  padding: 10px 20px;
  background-color: #212b4c;
  border-radius: 0 0 7px 0;
}
.card .card-footer .card-details {
  display: flex;
  justify-content: space-between;
}
.card .card-footer .card-details span {
  margin-left: 4px;
  font-size: 12px;
}

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