/* Main Stylsheet for honor Calculators */
.honor-calc {
  padding: 1.5em;
  border-radius: 20px;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  background: white;
}
.honor-calc .wrap-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.honor-calc .calc-title {
  font-weight: 600;
  font-size: 1.5em;
}
.honor-calc h3 {
  font-size: 1.25em;
}
.honor-calc .userinput {
  border-radius: 20px;
  padding: 10px 10px 10px 40px;
  font-size: 1em;
  font-weight: 600;
  border: 1px solid #383838;
  max-width: 225px;
  background-image: url("money.jpg");
  background-position: 10px center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.honor-calc .userinput:focus {
  outline: 0;
  border: 1px solid #891f02;
}
.honor-calc .monthly-output, .honor-calc .year-output {
  font-size: 1.1em;
}
.honor-calc .monthly-output span, .honor-calc .year-output span {
  color: #891f02;
  font-weight: 800;
  font-size: 1.2em;
}
.honor-calc .calc-btn {
  font-weight: 600;
  color: white;
  background: #891f02;
  border-radius: 20px;
  padding: 0.75em 1em;
  font-size: 1em;
  border: none;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 250px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, 50%);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.honor-calc .calc-btn:focus {
  outline: 0;
}
.honor-calc .calc-btn:active {
  outline: 0;
  background: white;
  color: #891f02;
  border: #891f02 solid 1px;
  transition: 0.2s ease-in-out;
}

@media only screen and (max-width: 555px) {
  .honor-calc .wrap-controls {
    flex-wrap: wrap;
  }
  .honor-calc .userinput {
    margin-top: 10px;
  }
}

/*# sourceMappingURL=index.css.map */
