#calc-wrapper #results {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  border-left: 1px solid #e1e1e1;
}

#calc-wrapper #results div {
  padding: 0.5rem;
  border-radius: 8px;
}

#calc-wrapper #results h4 {
  background: #275a5b;
  color: white;
  padding: 10px 15px;
}

#calc-wrapper #results div ul {
  display: flex;
  flex-direction: column;
  height: 58%;
  justify-content: space-around;
  font-size: 18px;
}

#calc-wrapper div ul li span {
  color: #275a5b;
  font-weight: 600;
  font-size: 22px;
}

#calc-wrapper .box-minmax {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #000;
}
#calc-wrapper .box-minmax span:first-child {
  margin-left: 10px;
}
#calc-wrapper .range-slider {
  /* margin-top: 30vh; */
}
#calc-wrapper .rs-range {
  margin-top: 20px;
  width: 100%;
  -webkit-appearance: none;
}
#calc-wrapper .rs-range:focus {
  outline: none;
}
#calc-wrapper .rs-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  box-shadow: none;
  background: #378082;
  border-radius: 9px;
  border: 0px solid #010101;
}
#calc-wrapper .rs-range::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  box-shadow: none;
  background: #000;
  border-radius: 0px;
  border: 0px solid #010101;
}
#calc-wrapper .rs-range::-webkit-slider-thumb {
  box-shadow: none;
  border: 0px solid #000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 25px;
  width: 25px;
  border-radius: 22px;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
}
#calc-wrapper .rs-range::-moz-range-thumb {
  box-shadow: none;
  border: 0px solid #000;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  height: 42px;
  width: 22px;
  border-radius: 22px;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  /* margin-top: 20px; */
}
#calc-wrapper .rs-range::-moz-focus-outer {
  border: 0;
}
#calc-wrapper .rs-label {
  position: relative;
  transform-origin: center center;
  display: block;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  margin-left: -17px;
  color: #000;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-size: 36px;
}

#calc-wrapper .rs-label svg {
  width: 120%;
}

#calc-wrapper .rs-label p {
  font-size: 18px;
  color: #374151;
  font-weight: 500;
}

#calc-wrapper #rs-bullet-tag {
  left: 60%;
  top: 55%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#calc-wrapper input::-webkit-outer-spin-button,
#calc-wrapper input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

#calc-wrapper input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

/*  */

#calc-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #e1e1e1;
  border: 1px dotted #378082;
  box-shadow: 0 0 5px 1px #378082;
}

#calc-header {
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0;
}

#calc-wrapper .col,
#calc-wrapper .row {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 90vw;
}

#calc-wrapper .calc-input {
  display: flex;
  gap: 2rem;
}
.otherPerks {
  border: solid 2px #275a5b;
  border-radius: 10px;
}
.otherPerks .title {
  width: 100%;
  margin: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #275a5b;
  color: white;
}
.otherPerks .data{
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: calc(100% - 40px);
  gap: 5px;
}
.otherPerks .data>div{
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.otherPerks .data>div span {
  color: #378082 !important;
  font-size: 24px;
  font-weight: 700 !important;

}
#calc-wrapper .calc-input input {
  width: 4rem;
  height: 3rem;
  padding: 0.5rem;
  outline: none;
  border: 1px solid #b1b4b4;
  color: #595f5f;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

#calc-wrapper .calc-input input[type="email"],
.calc-input input#calcEhr {
  width: 20rem;
}
#calc-wrapper .calc-input input[type="radio"] {
  width: 20px;
}
#calc-wrapper .calc-input input:hover{
  border: 2px solid #b1b4b4;
}
#calc-wrapper .calc-input button {
  font-size: 30px;
  padding: 0 1rem;
  border: none;
  display: flex;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #378082;
}

#calc-wrapper .calc-input-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.showCase {
  background-color: #275a5b;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showCase .title{
  font-size: 60px;
  margin: 20px 0;
}
.showCase h3 {
  color: white;
  font-size: xx-large;
}
.showCaseBox {
  background-color: white;
  border-radius: 10px;
  padding: 30px 5px;
}
.showCaseBox label , .showCaseBox h1{
  color: #275a5b;
}
.details{
  justify-content: space-between;
}
.detailBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  border-radius: 10px;
  border: solid 2px #275a5b;
}
.detailBox p{
  margin: 0;
}
.detailBox .title{
  width: 100%;
  margin: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #275a5b;
  color: white;
}
.detailBox .data{
  padding: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: calc(100% - 40px);
  gap: 5px;
}
.detailBox .data p{
  width: 100%;
  text-align: start;
}
.detailBox .data .border-bottom{
  border-bottom: 1px solid gray;
  width: 100%;
}
.detailBox .data p span{
  color: #378082 !important;
  font-size: 20px;
  font-weight: 800 !important;
}
.detailBox .data p {
  color: black;
  font-weight: 600 !important;
  font-size: 18px;
}
#dashboard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#dashboard div div {
  background-color: white;
  padding: 5px 15px;
}

#dashboard div label {
  color: white;
  font-weight: 500;
  font-size: 18px;
}

#dashboard div div h1 {
  color: #275a5b;
  font-weight: 800;
}

#dashboard-container hr {
  border-color: white;
}

#dashboard-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

#dashboard-container button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: x-large;
}



.moreDetails button {
  color: #378082 !important;
  padding: 0 !important;
  text-decoration: none !important;
}
.moreDetails h5 {
  color: black;
  font-weight: 600 !important;
  font-size: 20px;
}
.moreDetails p{
  margin: 0;
  font-size: 18px;
  color: black;
  font-weight: 600 !important;
}
.moreDetails span {
  color: #378082 !important;
  font-size: 24px;
  font-weight: 700 !important;
}
#calc-wrapper hr{
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  width: auto;
}
@media (max-width: 768px) {
  .showCase .title {
    font-size: 40px;
  }
  .showCaseBox h1{
    font-size: 28px;
  }
  #calc-wrapper .calc-input input[type="email"], .calc-input input#calcEhr{
    width: 100%;
  }
  .detailBox .data{
    gap: 15px;
    padding: 20px 10px;
  }
}
.assumptions{
  background: #f9f9f9;
}
.assumptions #hourlyRate, .assumptions #noteTime{
  max-width: 4rem;
}
.assumptions #workDays{
  max-width: 3rem;
}
.no-focus-shadow:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #378082 !important;
}
#section-header .sub-heading{
	font-size: 20px;
	color: #494949;
}