@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
  background-color: #000;
  color: #00fec7;
  min-height: 100vh;
}

h1 {
  font-size: 4rem;
  font-weight: 900;
}

input.form-control {
  background: transparent;
  border: 2px solid #ffffff81 !important;
  width: 100%;
  padding: 0.75rem 1rem;
}

::placeholder {
  color: #ffffff81 !important;
}

input.form-control:active,
input.form-control:focus,
input.form-control:hover {
  color: #fff;
  background: transparent;
  box-shadow: none !important;
}

button.btn {
  position: absolute;
  right: 0%;
  bottom: 50%;
  transform: translateY(50%);
  background: #00fec7;
  height: 97%;
  width: 6rem;
  font-weight: 800;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
}

button.btn:active,
button.btn:focus,
button.btn:hover {
  transform: translateY(50%) scale(1.05) !important;
  background: #00fec7;
  color: #fff !important;
}

li.list-group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #bdbdbd23 !important;
  margin: 0.25rem;
  border: none;
  padding: 0.75rem 1rem;
  /* gap: 1% !important; */
}
li span{
  cursor: pointer;
}
li span.check {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #00fec7;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 10%;
}

li span .fa-solid {
  font-size: 1.3rem;
  color: black;
  border-radius: 50%;
  display: none;
}

span.active {
  background: #00fec7;
}

span.active .fa-check {
  display: block;
}

ul li p {
  max-width: 83%;
  min-width: 83%;
  color: #fff;
  margin: 0;
}
ul li p.muted{
  color: #ffffff66;
  text-decoration: line-through;
  font-size: 0.9rem;
}
ul li span.trash {
  width: 5%;
}

ul li span.trash i.fa-trash {
  font-size: 1.25rem;
  color: gray;
  display: block !important;
  text-align: center;
}

@media (max-width: 1199px) {
  :root {
    font-size: 15px !important;
  }
}

@media (max-width: 991px) {
  :root {
    font-size: 14px !important;
  }

  /* Styles for desktops and tablets */
}

@media (max-width: 767px) {
  :root {
    font-size: 13px !important;
  }

  /* Styles for tablets and landscape phones */
}

@media (max-width: 575px) {
  :root {
    font-size: 12px !important;
  }

  /* Styles for small devices (portrait phones) */
}

@media (max-width: 374px) {
  :root {
    font-size: 11px !important;
  }

  /* Styles for very small devices */
}