body {
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0px;
}

p {
  margin-top: 5px;
  font-weight: 300;
  font-size: 14px;
}

.main img {
  width: 76px;
  float: left;
  margin-right: 15px;
}

.header {
  background-color: #eff1f7;
  padding: 48px;
  color: #202020;
  min-height: 217px;
}

input {
  margin: 0;
  border: 0;
  border-radius: 0;
  width: 75%;
  padding: 10px;
  font-size: 13px;
  font-weight: 300;
}

.add {
  padding: 10px;
  border: 0;
  width: 25%;
  background-color: #2564cf;
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  margin-left: -4px;
}
.add:hover {
  background-color: #202020;
}

footer {
  font-weight: 300;
  font-size: 11px;
  padding: 30px 40px;
  color: #b0adad;
}
footer a {
  color: #b0adad;
  text-decoration: none;
}

.post {
  cursor: pointer;
}

.loading {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: white;
  color: #185abd;
  z-index: 1;
}

svg {
  width: 100%;
}

.line-logo {
  width: 10%;
  left: 45%;
  top: 45%;
  position: absolute;
}

.modal {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.modal .save {
  padding: 11px;
  height: 37px;
  font-size: 14px;
  color: white;
  background: #2564cf;
  text-transform: uppercase;
  float: right;
  cursor: pointer;
  transition: 0.3s;
  border: 0;
  width: 25%;
  text-align: center;
}
.modal .save:hover {
  background-color: #202020;
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  width: 50%;
}
.modal input {
  border: 1px solid #efefef;
  font-weight: 300;
}
.modal .close-modal {
  float: right;
  font-weight: bold;
  cursor: pointer;
}

.change-name {
  cursor: pointer;
  text-decoration: underline;
}

ul {
  margin-right: 40px;
}
ul li {
  position: relative;
  cursor: pointer;
  padding: 12px 8px 12px 8px;
  list-style-type: none;
  background-color: #fff;
  color: #292827;
  font-weight: 300;
  font-size: 13px;
  transition: 0.2s;
  border-radius: 3px;
  border: 1px solid #efefef;
  margin-bottom: 10px;
}
ul li .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 16px 12px 16px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
ul li .close:hover {
  transition: 0.3s;
  background-color: #202020;
  color: white;
}
ul .checked {
  color: #605e5c;
  text-decoration: line-through;
  padding: 12px 8px 12px 35px;
}
ul .checked::before {
  content: "";
  position: absolute;
  border-color: #605e5c;
  border-style: solid;
  border-width: 0px 2px 2px 0;
  top: 10px;
  left: 17px;
  transform: rotate(45deg);
  height: 12px;
  width: 5px;
}

#error {
  color: #605e5c;
  text-align: left;
  font-weight: 300;
  margin-left: 10px;
  font-size: 10px;
  display: none;
}/*# sourceMappingURL=style.css.map */