body {
  background: #f9f9f9;
  font-family: "Source Sans Pro", sans-serif;
}

.page-wrapper {
  max-width: 1100px;
  margin: 20px auto;
}

/* SECTIONS */

#sections {
  display: flex;
  overflow-x: auto;
  height: calc(100vh - 110px);
}

.add-section {
  margin-bottom: 10px;
  background: #32479b;
  padding: 7px 14px;
  border: none;
  color: #e7e7e7;
  border-radius: 50px;
}
.section {
  flex: 0 0 300px;
  padding: 10px;
  margin-right: 15px;
  min-height: 800px;
}

.title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: baseline;
}
.title .text {
  font-weight: bold;
  color: #a2a2a2;
  text-transform: capitalize;
}

button {
  cursor: pointer;
}
.title .toolbar {
  display: flex;
  align-items: center;
}
.title .toolbar button {
  background: none;
  border: none;
  padding: 7px;
  width: 28px;
  border-radius: 50px;
  height: 28px;
  color: #fff;
}

.title .toolbar button.add {
  background-color: #1448e5;
}

.title .toolbar button.edit {
  background-color: #dfdfdf;
  color: #999;
  margin-left: 5px;
  /* font-size: 1.1rem; */
}

.title .toolbar button.delete {
  background-color: #dfdfdf;
  color: #d94848;
  margin-left: 5px;
  /* font-size: 1.1rem; */
}

/* TASKS */
.task {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 3px 0px 1px #e4e4e4;
  margin-bottom: 10px;
}

.task .title .text {
  color: #3a5194;
}

.task .handle {
  width: 100%;
  text-align: center;
  cursor: all-scroll;
  margin-top: 10px;
  color: #8f8f8f;
}

.dropzone {
  text-align: center;
  border: 2px dashed #ccc;
  padding: 40px 10px;
  margin-bottom: 15px;
  color: #707070;
  /* display: none; */
}

.no-tasks {
  text-align: center;
  background: #ffffff9c;
  padding: 15px 10px;
  border: 3px dashed #cccccc40;
}
.no-tasks i {
  font-size: 2rem;
  margin-bottom: 7px;
  color: silver;
}

.footer {
  position: fixed;
  bottom: 0;
  /* padding: 15px;
  background: #fff; */
  border-radius: 50px;
  margin-bottom: 15px;
  /* box-shadow: 1px 2px 5px 1px #ccc; */
}
