




/*HAMMER============================================================================*/


:root {
  --hammer_orange: rgb(246, 165, 36);
  --hammer_blue: rgb(38, 72, 101);
  --hammer_grey: rgb(235, 234, 232);
  
  
  --hammer_0: #000000;
  --hammer_1: #000000;
  --hammer_2: #000000;
  --hammer_3: #000000;
  --hammer_4: #000000;
  --hammer_5: #000000;
  --hammer_6: #000000;
  --hammer_7: #000000;
  --hammer_8: #000000;
  --hammer_9: #000000;
  --hammer_10: #000000;
}

.accordion.completed .accordion_button {
  background: aquamarine;
}

.hammer {
  margin: 20px 0 80px;
  width: 100%;
}

.hammer_button {
  background: whitesmoke;
  color: black;
  cursor: pointer;
  margin: 0 0 0;
  max-width: 500px;
  padding: 10px;
  padding-left: 60px;
  width: 100%;
  position: relative;
  user-select: none;
}

.hammer_button::before {
  content: "";
  background-color: transparent;
  border: 2px solid black;
  border-radius: 50%;
  box-sizing: border-box;
  color: red;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 20px;
  height: 20px;
  width: 20px;
  transform: translate(0, -50%);
}

.hammer_button.selected {
  background: aquamarine;
  font-weight: bold;
}

.hammer_button.selected::before {
  border: 6px solid black;
}

.hammer_button:hover {
  background: lightgrey;
}


.hammer_button p {
  margin: 0;
}

.hammer_button span {
  display: inline-block;
  font-size: 10px;
}

.hidden {
  display: none;
}

.hammer_next {
  color: white;
  background-color: var(--hammer_blue);
  font-size: 24px;
  margin: 20px 0 0;
  padding: 10px 20px;
}

h5 {
  transition: all 250ms cubic-bezier(0.4, 0, 0.4, 1);
}

/*.accordion.open h5 {
  font-size: 34px;
}*/

.hammer_score {
  background-color: #FD721C;
  color: black;
  padding: 120px 30px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hammer_heading {
  color: rgba(255, 255, 255, 0.7);
  font-size: 32px;
  font-weight: bold;
  line-height: 32px;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  text-align: right;
  text-transform: uppercase;
}

.hammer_value {
  font-size: 100px;
  font-weight: bold;
  padding-left: 20px;
}

.hammer_value span {
  font-size: 36px;
  font-weight: bold;
  padding-left: 10px;
}

@media screen and (max-width: 600px) {
  .hammer_value {
    font-size: 50px;
  }

  .hammer_value span {
    font-size: 22px;
  }
}

.hammer_pill {
  background-color: white;
  font-size: 14px;
  margin: 0 10px 10px 0;
  padding: 10px;
  text-align: center;
  width: 120px;
}

.hammer_pill span {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2em;
}

.hammer_summary {
  font-weight: bold;
  margin-top: 50px;
  max-width:400px
}

.hammer_steps li::before {
  color: black;
}

.hammer_preview {
  background-color: rgb(242, 242, 242);
  border: 1px solid rgb(228, 228, 228);
  cursor: pointer;
  font-size: 10px;
  height: 80px;
  width: 80px;
  text-align: center;
  position: fixed;
  left: 40px;
  top: 0px;
  user-select: none;
}

.hammer_preview span {
  font-size: 36px;
  font-weight: bold;
  line-height: 50px;
}

.hammer_preview.spending {top: 100px}
.hammer_preview.debt {top: 200px}
.hammer_preview.retirement {top: 300px}
.hammer_preview.emergency {top: 400px}
.hammer_preview.realestate {top: 500px}
.hammer_preview.score {top: 600px}

@media screen and (max-width: 1118px) {
  .hammer_preview {
    display: none;
  }
}


@media print {
  main {
    display: none;
  }
  
  .hammer_score {
    background-color: transparent;
  }
  
  .hammer_pill {
    border: 1px solid grey;
  }
  
}

