/* main.css */

body {
  background: #D6EADF;
  margin: 0;
}

#root {
  font-family: "Montserrat", sans-serif;
  width: 80%;
  margin: 40px auto;
  font-size: 12px;
}

.title {
  font-size: 2rem;
  text-align: center;
  margin: 5px 0 15px;
  font-weight: 600;
  color: black;
}

.confirm {
  padding: 5px 15px;
  border-radius: 4px;
  background: white;
  border: 0.5px solid #aaa;
  font-size: 1rem;
  cursor: pointer;
  margin: 15px;
}

.confirm:hover {
  background: #D0F4EA;
}

#root.toggled .result-list {
  visibility: visible;
  bottom: 0;
}

#root.toggled .chb-list {
  pointer-events: none;
}

footer {
  text-align: right;
}

/* checkbox */

.chb-list {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.chb-list div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}

.chb-button {
  font-size: 2rem;
  margin-right: 30px;
  cursor: pointer;
}

.chb-info {
  background: #95B8D1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  box-shadow: 4px 4px 14px 0px rgba(50, 50, 50, 0.56);
}

.chb-info span {
  width: 100%;
}

.chb-info span:last-child {
  background: #6D9DC5;
}

.chb-info h4 {
  margin: 5px 10px;
  font-weight: 200;
  font-size: 0.9rem;
}

/* result */
.result-list {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: black;
  visibility: hidden;

  transition: all 0.3s ease-in-out;
}

.list-title {
  color: white;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.list-title i {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 15px;

  transition: all 0.5s ease-in-out;
}

.list-title i:hover {
  transform: scale(1.3);
}

.list-wrapper {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto 30px;
}

.list-wrapper div {
  margin: 10px 0;
}
