/* education after high school */
#transferring ul,
#transferring ul li {
  margin: 0;
}
#transferring ul {
  list-style-position: inside;
}

/* KHEAA College Cost Calculator */
/* calc styles */
.tab .tab-info .calc > p {
  margin-bottom: 1rem;
}
.tab .tab-info .calc > p:last-of-type {
  margin-bottom: 2rem;
}
.calc .flex {
  justify-content: space-between;
  align-items: flex-start;
}
.calc .flex-col:first-of-type,
.calc .output {
  width: 95%;
}
[id*="pnlCalcInputs"] {
  width: 100%;
}
.calc .flex-col > div {
  margin: 0 0 1rem;
}
.calc .output [id*="pnlTotal"] {
  font-size: 4rem;
  font-weight: bold;
  margin: 1rem 0 2rem;
  color: var(--green);
}
.calc .output [id*="pnlTotal"].error {
  color: var(--red);
}
.calc .labels {
  display: block;
  width: 100%;
}
.calc div label {
  font-size: 1.8rem;
  font-weight: bold;
}
.calc .output p {
  margin-bottom: 2rem;
}
.calc .output label {
  font-size: 2.8rem;
}
.calc div input,
.calc div select {
  height: 3rem;
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  border: 1px solid var(--primary);
  border-radius: 3px;
  width: 90%;
}
.calc div input {
  max-width: 296px;
}
.calc div select {
  max-width: 308px;
}
.calc .has-tt a,
.calc .has-tt a:link,
.calc .has-tt a:visited,
.calc .has-tt a:hover,
.calc .has-tt a:active {
  color: var(--primary);
}
.calc .has-tt .tt-icon {
  font-size: 1.4rem;
  margin-right: .25rem;
  background: var(--yellow);
  color: var(--tertiary);
  border-radius: 50%;
  cursor: pointer;
}
.calc .tooltip {
  display: none;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: var(--lt_gray);
  border-radius: 5px;
}
.calc .tooltip p {
  margin: 0 0 1.5rem;
  color: var(--black);
}
.calc .tooltip p:last-of-type {
  margin-bottom: 0;
}

/* exploring careers */
#exploreCareers .tab-info .tab-subsection > a {
  display: block;
  margin: .5rem 0;
}
#exploreCareers .tab-info .tab-subsection > a:first-of-type {
  margin-top: 2rem;
}

/* precollege curriculum checklist */
#precollegeCurriculum .tab-info .flex-col {
  justify-items: flex-start;
  align-items: flex-start;
  margin: 2rem 0;
}
#precollegeCurriculum .tab-info .flex-col .flex {
  align-items: flex-start;
  width: 100%;
}
#precollegeCurriculum .tab-info .flex-col .flex:nth-of-type(even) {
  background: var(--off_white);
}
#precollegeCurriculum .tab-info .flex-col .flex:first-of-type {
  background: var(--secondary);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#precollegeCurriculum .tab-info .flex-col .flex:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#precollegeCurriculum .tab-info .flex-col .flex p:first-child {
  width: 25%;
  margin: 1rem 0;
}
#precollegeCurriculum .tab-info .flex-col .flex p:last-child {
  width: 70%;
}

/* newsletters */
#newsletterList.cms-data.flex-col a.flex.single-col {
  text-transform: none;
}

/************************************

    PLAN FOR FUTURE MOBILE STYLES

************************************/
@media screen and (max-width: 768px) {
	.calc div .input-container,
  .calc div input,
  .calc div select {
    width: 95%;
  }
}
@media screen and (max-width: 640px) {
  .calc .flex {
    flex-direction: column;
  }
  .calc div input {
    max-width: 299px;
  }
  .calc .flex-col:first-of-type,
  .calc .output {
    width: 100%;
  }
  .calc .flex-col.output {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .calc div input {
    width: 95%;
  }
  #precollegeCurriculum .tab-info .flex-col .flex p:first-child {
    width: 35%;
  }
  #precollegeCurriculum .tab-info .flex-col .flex p:last-child {
    width: 60%;
  }
}