* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/6cb3a910-a3af-4d5a-8a65-f5f2c0672573/d4f8ej9-04879e6a-bbc9-4cc6-8364-6edfe1a4143c.jpg/v1/fill/w_1280,h_960,q_75,strp/cork_board_texture_12_by_carlbert_d4f8ej9-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3siaGVpZ2h0IjoiPD05NjAiLCJwYXRoIjoiXC9mXC82Y2IzYTkxMC1hM2FmLTRkNWEtOGE2NS1mNWYyYzA2NzI1NzNcL2Q0ZjhlajktMDQ4NzllNmEtYmJjOS00Y2M2LTgzNjQtNmVkZmUxYTQxNDNjLmpwZyIsIndpZHRoIjoiPD0xMjgwIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmltYWdlLm9wZXJhdGlvbnMiXX0.N_BheyPikOSHH-5nferIoz2QVYJkbDvIxURkiu12LDU");
  height: 100vh;
  display: grid;
  grid-template-rows: 50px 1fr;
  background-color: #e8eceb;
  grid-template-areas:
    "nav"
    "main";
}

/* header */
body > nav {
  grid-area: nav;
  /* background-color: #b8c0c2; */
  background-color: #8fcfd1;
  opacity: 0.8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 30px;
}
nav > div > a {
  /* margin: 20px; */
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  color: white;
}

nav > div > a:hover {
  color: white;
  background-color: #424748;
}

nav > div > a.active {
  color: white;
}
.navHelp {
  float: right;
  margin-right: 0;
}
.right-right {
  color: white;
}
#kanban {
  font-family: "Kaushan Script", cursive;
  font-size: 20px;
}
/* main  */
body > main {
  grid-area: main;
  display: flex;
  flex-direction: row;
  align-items: left;
  background-color: #e8eceb;
  padding: 20px;
}

/* boards */
h5 {
  display: inline-block;
}
.boardsDiv {
  max-height: 500px;
  display: flex;
  flex-direction: row;
  float: left;
}
.boards {
  display: inline-block;
  /* border: 2px solid black; */
  background-color: #f6ab6c;
  /* margin: 5px; */
  min-width: 50px;
  min-height: 250px;
  max-width: 250px;
  overflow-y: auto;
  border-radius: 5px;
  margin: 0 5px;
}

.addBorad {
  background-color: gray;
  opacity: 0.5;
  max-height: 50px;
}

.boardDropzone {
  min-width: 15px;
  min-height: 300px;
  /* border: green dashed 2px; */
}
.boardsName {
  font-weight: bold;
}

#addBoardBtn {
  max-height: 30px;
  float: right;
}

/* Tasks */
.tasks,
.boardsName {
  display: block;
  /* border: 2px solid black; */
  margin: 0 5px;
  min-width: 50px;
  border-radius: 5px;
}
.addBorder {
  /* background-color: white; */
  border-radius: 2px;
  border-color: #f6efa6;
  border-style: solid;
}

.dropzone {
  min-width: 200px;
  min-height: 10px;
  /* border: blue dashed 2px; */
  /* background: blueviolet; */
  /* margin-bottom: 10px; */
  /* padding: 10px; */
}
.tasks:hover {
  /* background-color: ; */
  opacity: 0.5;
}

/* scrolling */

/* help on off switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* help bubble */
.tooltipHelp {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltipText {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
}
.tooltipText2 {
  bottom: 10px;
}
.tooltipText3 {
  right: 50px;
  top: 20px;
}
.tooltipText4 {
  top: 10px;
}
.tooltipHelp:hover .tooltipText {
  visibility: visible;
  /* display: block; */
}
.tooltipText {
  display: none;
}

.collapseTitle {
  display: flex;
  flex-wrap: wrap;
}

.titleBoard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.title {
  font-family: "Kaushan Script", cursive;
  font-size: x-large;
}

.taskText {
  min-width: 140px;
  border: 1px dashed grey;
  display: inline;
}

.md-15 {
  font-size: 15px;
}

.bg {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background: rgba(246, 239, 166, 0.3);
}

.bg::after {
  content: "";
  /* background: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/6cb3a910-a3af-4d5a-8a65-f5f2c0672573/d4f8ej9-04879e6a-bbc9-4cc6-8364-6edfe1a4143c.jpg/v1/fill/w_1280,h_960,q_75,strp/cork_board_texture_12_by_carlbert_d4f8ej9-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3siaGVpZ2h0IjoiPD05NjAiLCJwYXRoIjoiXC9mXC82Y2IzYTkxMC1hM2FmLTRkNWEtOGE2NS1mNWYyYzA2NzI1NzNcL2Q0ZjhlajktMDQ4NzllNmEtYmJjOS00Y2M2LTgzNjQtNmVkZmUxYTQxNDNjLmpwZyIsIndpZHRoIjoiPD0xMjgwIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmltYWdlLm9wZXJhdGlvbnMiXX0.N_BheyPikOSHH-5nferIoz2QVYJkbDvIxURkiu12LDU"); */
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.backgroundBtn {
  /* align-self: flex-end; */
  height: 25px;
  width: 150px;
}

.backgroundChange {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.newListBtn {
  width: 200px;
}

.bgCard {
  /* background-color: #f6efa6; */
  background-color: #ecedd6;
}

/* #df5e88 */
