/* Trees Image - Pexels: https://www.pexels.com/photo/photo-of-trees-in-forest-3801030/ */
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@500&family=Poppins:wght@200&family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');

html {
  box-sizing: border-box;
}

:root {
  --column-1: #007c15;
  --column-2: #04adc4;
  --column-3: #572cce;
  --column-4: #856d03;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  /* background-image: url("http://all4desktop.com/data_images/original/4245965-fire.jpg");
  background-size: auto 100vh; */
  background: url("../images/trees.jpg");
  background-size: cover;
  background-position: 50% 60%;
  background-attachment: fixed;
  color: white;
  font-family: Quicksand, sans-serif;
  overflow-y: hidden;
}

.refresh {
  position: absolute;
  top: 2%;
  right: 2%;
  cursor: pointer
}

#refresh:hover {
  -webkit-animation: bounce-out 2s ease 0s 1 normal;
  -moz-animation: bounce-out 2s ease 0s 1 normal;
  -ms-animation: bounce-out 2s ease 0s 1 normal;
  animation: bounce-out 2s ease 0s 1 normal;
}

#canvas {
  z-index: 400;
  width: 100%;
  bottom: 0%;
  /* height:500px; */
}

fire {
  z-index: 500;
  bottom: 0%;
  width: 100%;
  /* height:300px; */
}

#fire {
  position: absolute;
  z-index: 300;
  bottom: 0%;
  height: 600px;
  width: 100%;
}

/* Scrollbars */
/* width */
::-webkit-scrollbar {
  width: 20px;
  background: var(-blue);
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--blue);
  border-radius: 10px;
  background-color: var(--blue);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

/* End of: Scrollbars */
h1 {
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px black;
  font-family: 'Orbitron', sans-serif;
  /* font-family: 'Poppins', sans-serif; */
  font-size: 60px;

}

.main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #0aa3a8;
}

#dragdrop {
  font-size: 40px;
  font-family: 'Orbitron', sans-serif;
  /* color: #386801; */
  /* text-shadow: 0 -1px 4px rgb(34, 34, 34), 0 -2px 10px rgb(2, 87, 23), 0 -10px 20px #b35a02, 0 -18px 40px rgb(111, 0, 255);  */
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.drag-container {
  margin: 20px;
}

.drag-list {
  display: flex;
  align-items: flex-start;
}

/* Columns */
.drag-column {
  flex: 1;
  margin: 0 10px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow-x: hidden;
}

.backlog-column .header,
.backlog-column .solid,
.backlog-column .solid:hover,
.backlog-column .over {
  background-color: var(--column-1);
}

.progress-column .header,
.progress-column .solid,
.progress-column .solid:hover,
.progress-column .over {
  background-color: var(--column-2);
}

.complete-column .header,
.complete-column .solid,
.complete-column .solid:hover,
.complete-column .over {
  background-color: var(--column-3);
}

.on-hold-column .header,
.on-hold-column .solid,
.on-hold-column .solid:hover,
.on-hold-column .over {
  background-color: var(--column-4);
}

/* Custom Scrollbar */
.custom-scroll {
  overflow-y: auto;
  max-height: 52vh;
}

.custom-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 5px;
}

.custom-scroll::-webkit-scrollbar {
  width: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.8);
}

.header {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  margin: 10px;
}

.header h1 {
  font-size: 1.25rem;
}

/* Drag and Drop */
.over {
  padding: 50px 10px;
}

.drag-item-list {
  min-height: 50px;
}

.drag-item {
  margin: 10px;
  padding: 10px;
  height: fit-content;
  font-family: 'Orbitron', 'Poppin', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  line-height: 1.5rem;
  letter-spacing: 1px;
  cursor: pointer;
}

.drag-item:hover {
  /* color: rgb(97, 0, 187); */
  color: rgb(187, 100, 0);
}

.drag-item:focus {
  outline: none;
  background-color: white;
  color: black;
}

/* Add Button Group */
.add-btn-group {
  display: flex;
  justify-content: space-between;
}

.add-btn {
  margin: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  font-family: 'Poppin', 'Orbitron', sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  width: fit-content;
  border-radius: 5px;
  transition: all 0.3s ease-in;
  user-select: none;
}

.add-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: rgb(75, 8, 184);
  font-weight: 500;
}

.add-btn:active {
  transform: scale(0.97);
}

.solid {
  display: none;
}

.solid:hover {
  transition: unset;
  filter: brightness(95%);
  color: white;
}

.plus-sign {
  font-size: 1.5rem;
  margin-right: 5px;
  position: relative;
  top: -3px;
}

.add-container {
  margin: 10px;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  min-height: 100px;
  display: none;
}

.add-item {
  width: 100%;
  min-height: 100px;
  height: auto;
  background-color: white;
  border-radius: 10px;
  margin: 5px auto;
  resize: none;
  color: black;
  padding: 10px;
}

.add-item:focus {
  outline: none;
}

/* Start of Custom Toggle Slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(43, 43, 43);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: rgb(163, 92, 0);
  -webkit-transition: .4s;
  transition: .4s;
}

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

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

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

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* End of: Custom Toggle Slider */
/* Start of: Music Container */

#bgMusic {
  cursor: pointer;
  z-index: 600;
}

#music {
  z-index: 600;
}

#music:hover {
  -webkit-animation: elastic 2s ease 0s 1 normal;
  -moz-animation: elastic 2s ease 0s 1 normal;
  -ms-animation: elastic 2s ease 0s 1 normal;
  animation: elastic 2s ease 0s 1 normal;
}

/* Start of:Firefly Fire FX */
#fire-fly {
  z-index: 500;
  position: absolute;
  cursor: pointer;
  bottom: 1%;
  right: 2%;
}

#firefly:hover {
  /* filter: hue-rotate(80deg) blur(3); */
  -webkit-animation: flame 2s ease 0s 1 normal;
  -moz-animation: flame 2s ease 0s 1 normal;
  -ms-animation: flame 2s ease 0s 1 normal;
  animation: flame 2s ease 0s 1 normal;
  transition: flame ease;
}

.flame {
  z-index: 500;

  cursor: pointer;
  bottom: 1%;
  right: 2%;
}

.flame:hover {
  background: linear-gradient(-45deg, red, orange);
  /* top-left | top-right | bottom-right | bottom-left */
  border-radius: 150px 150px 250px 250px;
  transform: rotate(-135deg);
  animation: .2s flame infinite;
  filter: blur(10px);
  position: relative;
  box-shadow: 17px 20px 90px #700;
  border-left-width: 25px;
  border-top-width: 25px;
}


/* End of:Firefly Fire Hover FX */


.toggle-music-container {
  z-index: 600;
  position: absolute;
  bottom: 0%;
  left: 2%;
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 2px;
}

#music {
  cursor: pointer;
}



/* Start of: Clock Timer */
.clock-container {
  position: fixed;
  bottom: 1%;
  width: 100%;
  z-index: -1;
  display: grid;
  place-items: center;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  /* background: #131419; */
  background: rgba(0, 0, 0, 0.5);
  background-image: url("../images/testbg.png");

}

.clock {
  position: fixed;
  /* background: #131419; */
  /* background:rgba(0, 0, 0, 0.2); */
  height: 120px;
  line-height: 120px;
  text-align: center;
  padding: 0 30px;
  box-shadow: -3px -3px 7px rgba(255, 255, 255, 0.05),
    5px 5px 7px rgba(2, 157, 177, 0.5);
}

.clock .display {
  position: fixed;
  font-size: 60px;
  background: #131419;
  box-shadow: -3px -3px 7px rgba(0, 145, 31, 0.4);
  color: rgb(252, 252, 252);
  letter-spacing: 5px;
  font-family: 'Orbitron', sans-serif;
}

/* Media Query: Laptop */
@media screen and (max-width: 1800px) {
  .main-title {
    font-size: 2rem;
  }
}

/* Media Query: Large Smartphone (Vertical) */
@media screen and (max-width: 600px) {
  body {
    overflow-y: auto;
  }

  .drag-container {
    margin: 0;
  }

  .drag-list {
    display: block;
  }

  .drag-column {
    margin: 10px;
  }
.fire-fly, #music {
     display:none;
}