html {
  width: 100%;
  height: 100%;
  color: #c4c4c4;
}

body {
  margin: 0px;
  padding: 50px 0 75px 0;
  font: 100% Tahoma, sans-serif;
  min-height: 100%;
  min-width: 100%;
  background-color: #1C1C1C;
  position: absolute;
}

/* ------------------------ Logo ------------------------ */
.logo_link {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo_img {
  max-width: 100%;
  min-width: 100%;
}

#notifs {
  z-index: 99;
  position: fixed;
  width: 300px;
  min-width: 300px;
  right: 50px;
  margin-top: 40px;
  padding-top: 0px;
  top: 0px;
  font-size: 15px;
}
#notifs .notif {
  margin-top: 10px;
  background-color: rgb(106, 184, 134);
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: white;
  border-radius: 2px;
  transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  overflow: hidden;
  height: 0px;
  opacity: 0;
  padding: 0 10px;
}
#notifs .notif.notif_show {
  height: auto;
  padding: 10px;
  opacity: 1;
}
@media (max-width: 496px) {
  #notifs {
    width: calc(80% - 50px);
    margin: auto;
    min-width: 200px;
    bottom: 20px;
    top: unset;
  }
}

.addToList {
  padding: 20px;
  justify-content: center;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  background-color: #1C1C1C;
  width: 90%;
  background-color: #222222;
  margin: 40px auto auto auto;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5), inset 0px 1px 2px rgba(66, 66, 66, 0.5);
  border-radius: 20px;
  box-sizing: border-box;
}
.addToList_form {
  display: block;
  position: relative;
  border-radius: 10px;
  background-color: #222222;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), inset 0px 1px 2px rgba(66, 66, 66, 0.5);
  padding: 10px;
}
@media (max-width: 496px) {
  .addToList_form {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: space-around;
  }
}
.addToList_form * {
  border-style: none;
  outline: none;
  background-color: transparent;
  padding: 4px;
  border-bottom: 2px solid transparent;
  color: white;
}
.addToList_form *::placeholder {
  color: #c4c4c4;
}
.addToList_form *:focus {
  border-bottom: 2px solid #c4c4c4;
  transition: 0.3s;
}
.addToList_form input[type=number] {
  width: 35px;
}
.addToList_form select {
  text-transform: capitalize;
}
.addToList_form select option {
  text-transform: capitalize;
  background-color: #191919;
}
.addToList_form input[type=submit] {
  border: 2px solid #c4c4c4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  padding: 6px;
}
.addToList_form input[type=submit]:hover, .addToList_form input[type=submit]:focus {
  background-color: #c4c4c4;
  color: #222222;
}
.addToList_form input[type=submit]:hover {
  cursor: pointer;
}

.lists {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  background-color: #1C1C1C;
  width: 90%;
  background-color: #222222;
  margin: 40px auto auto auto;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5), inset 0px 1px 2px rgba(66, 66, 66, 0.5);
  border-radius: 20px;
  box-sizing: border-box;
  display: block;
  padding-bottom: 25px;
}
.lists + .empty {
  display: none;
}
.lists h2 {
  display: inline-block;
  margin-left: 20px;
}
.lists .caddie {
  background-color: #1C1C1C;
  border: none;
  border-radius: 3px;
  transition: 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), inset 0px 1px 2px rgba(66, 66, 66, 0.5);
  width: 40px;
  height: 40px;
  margin: 14px 0 14px 20px;
}
.lists .caddie:hover {
  cursor: pointer;
  transition: 0.2s;
  background-color: #222222;
}
.lists .caddie img {
  width: 22px;
  height: 22px;
}
.lists table, .lists tr, .lists th {
  border-collapse: collapse;
}
.lists table {
  width: 80%;
  margin-left: 10%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), inset 0px 1px 2px rgba(66, 66, 66, 0.5);
  border-radius: 11px;
}
@media (max-width: 496px) {
  .lists table {
    width: 90%;
    margin-left: 5%;
  }
}
.lists table tr {
  transition: 0.1s;
}
.lists table tr:nth-child(even) {
  background-color: rgba(25, 25, 25, 0.5);
}
.lists table tr:nth-child(odd) {
  background-color: rgba(34, 34, 34, 0.5);
}
.lists table tr:hover {
  box-shadow: inset 0 0 0 3px #c4c4c4;
  transition: 0.1s;
}
.lists table tr td {
  text-align: center;
  padding: 10px 0px;
}
.lists table tr:first-child {
  width: 70%;
}
.lists table tr .trash {
  background-color: #1C1C1C;
  border: none;
  border-radius: 3px;
  transition: 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), inset 0px 1px 2px rgba(66, 66, 66, 0.5);
  height: 40px;
  width: 40px;
}
.lists table tr .trash:hover {
  cursor: pointer;
  transition: 0.2s;
  background-color: #990000;
}
.lists table tr .trash img {
  height: 30px;
}

