/*
    http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* reset end */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

/* reset end */
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  padding: 0;
  margin: 0;
  font: 1.8rem 'Open Sans', sans-serif;
  line-height: calc(32 / 18);
  color: #000000;
}

h1 {
  font-size: 5.6rem;
  font-weight: 700;
  margin: 10px 0 24px;
  padding: 0;
  color: #052b52;
  line-height: calc(64 / 56);
}

p {
  font-size: 3.2rem;
}

/*
    Basic layout
    (this may not be included in the actual templates,
    but they were needed to get a view closer to the mockups)
*/
.cols {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  width: 90%;
  align-items: flex-start;
  height: auto;
  margin: 10px auto;
}

.col-9 {
  padding: 5% 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row {
  display: flex;
}

.row.centered {
  justify-content: center;
}

.row.centered .icon svg {
  margin-bottom: 10px;
  margin-right: 15px;
}

.row.centered .icon i {
  margin-right: 15px;
  margin-left: 4px;
}

.col {
  width: 70%;
}

.col h3 {
  color: #000000;
  font-weight: 800;
  font-size: 18px;
  margin: 0;
}

.col p {
  font-size: 18px;
  line-height: 30px;
}
@media all and (max-width: 765px) {
  .cols {
    flex-flow: column-reverse nowrap;
  }

  .col-6:first-child {
    border: none;
    padding: 0;
    height: auto;
    min-height: auto;
  }

  .col-6:last-child {
    padding: 0;
  }

  .col-9 {
    padding: 40px 25px 25px;
  }

  .col {
    width: 85%;
  }
}

/* Alert modal */
.alert-modal-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(125, 125, 125, .7);
  transition: opacity 500ms;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  z-index: 11;
  background-color: #f6f6f6;
  padding: 50px;
  height: auto;
  max-width: 720px;
  overflow-y: auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  border-radius: 5px;
}

.modal-alert-close {
  height: 0;
  text-align: right;
  bottom: 50px;
  left: 33px;
  font-size: 28px;
  position: relative;
  font-weight: 600;
  cursor: pointer;
}

.modal-alert-close button {
  background: none;
  border: none;
  color: #052cbc;
  font-size: 30px;
}

@media all and (max-width: 765px) {
  .modal-content {
    padding: 50px 25px;
    min-height: 25vh;
    height: auto;
  }

  .modal-alert-close {
    bottom: 55px;
    left: 18px;
    font-size: 35px;
  }
}

/* Breadcrumb */
.breadcrumb-container {
  display: flex;
  padding: 131px 35px 0;
  justify-content: center;
}

.breadcrumb {
  display: flex;
  flex-flow: row wrap;
  height: 3px;
  align-items: center;
  justify-content: space-between;
  margin: 139px 65px 0 !important;
  width: 479px;
}

.breadcrumb-container .breadcrumb {
  margin-top: 8px !important;
}

.breadcrumb .line {
  background-color: #d3d3d3;
  height: 3px;
  position: relative;
  top: 6px;
  width: 479px;
  z-index: -1;
}

.breadcrumb .line.active {
  background-color: #0345a7;
}

/* Breadcrumb steps */
.step {
  background-color: #d3d3d3;
  border-radius: 50%;
  border-right: none;
  box-shadow: 0 0 0 5px #d3d3d3;
  height: 8px;
  width: 8px;
}

.step.start {
  flex-grow: .1;
}

.step.passed {
  background-color: #4ee4b3;
  box-shadow: 0 0 0 5px #0345a7;
}

.step.half {
  flex-grow: .5;
}

.step-label {
  align-self: flex-start;
  font-weight: 600;
  font-size: 15px;
  position: absolute;
  text-transform: none;
}

.step-label.inactive {
  color: #a2a2a2;
}

.marker-step {
  width: 0;
  align-self: center;
  color: darkgrey;
  font-weight: bolder;
  transform: translate(-4px, -6px);
  pointer-events: none;
}
@media all and (max-width: 765px) {
  .breadcrumb-container .breadcrumb {
    width: 85%;
  }

  .step-label {
    font-size: 10px;
  }

  .step.start {
    flex-grow: .2;
  }

  .breadcrumb-container {
    flex-direction: column;
    padding: 90px 37px 0;
  }

  .breadcrumb {
    margin: 110px 25px 0 !important;
  }

  .breadcrumb-container .breadcrumb-buttons {
    flex-direction: row;
  }

  .breadcrumb-container .breadcrumb-buttons button {
    margin-top: 0;
  }
}

.welcome-title {
  color: #000000;
  font-weight: 800;
  font-size: 36px;
  line-height: 48px;
}

.welcome-subtitle {
  color: #000000;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
}

.welcome-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.form-title {
  color: #000000;
  font-weight: 800;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 35px;
}

.form-subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.description-text {
  font-size: 18px;
  line-height: 30px;
}

.regular-text {
  font-size: 18px;
  line-height: 32px;
}

.small-heading {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}

/* Input section */
input:focus,
input:active {
  outline: 2px dotted #0345a7;
}

.legend-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.legend-description label {
  font-weight: normal;
}

.input-text {
  font-size: 32px;
  padding: 8px 5px;
  border: lightgray solid 1.5px;
  border-radius: 8px;
  min-width: 500px;
  max-width: 700px;
  width: 100%;
}
@media all and (max-width: 765px) {
  .legend-description {
    line-height: 25px;
  }

  .input-text {
    min-width: auto;
    max-width: auto;
    width: 100%;
  }
}

/* Checkbox */
[type='checkbox']:focus + label::before,
[type='checkbox']:active + label::before {
  outline: 2px dotted #0345a7;
}

.checkbox-label {
  font-size: 18px;
  font-weight: normal;
}

[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: auto !important;
}

[type='checkbox'] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

[type='checkbox'] + label::before {
  content: '';
  margin-right: 22px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .12);
}

[type='checkbox']:hover + label::before {
  background: #0345a7;
}

[type='checkbox']:focus + label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .12);
}

[type='checkbox']:checked + label::before {
  background: #0345a7;
}

[type='checkbox']:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

[type='checkbox']:disabled + label::before {
  box-shadow: none;
  background: #dddddd;
}

[type='checkbox']:checked + label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow:
    2px 0 0 white,
    4px 0 0 white,
    4px -2px 0 white,
    4px -4px 0 white,
    4px -6px 0 white,
    4px -8px 0 white;
  transform: rotate(45deg);
}

/* Radio buttons: */
.radio-label {
  font-size: 18px;
  margin-right: 20px;
}

[type='radio']:checked + label:focus,
[type='radio']:not(:checked) + label:focus {
  outline: 2px dotted #0345a7;
}

[type='radio']:checked,
[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  font-weight: normal;
  font-size: 18px;
  margin-right: 20px;
}

[type='radio']:checked + label::before,
[type='radio']:not(:checked) + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgb(153, 153, 153);
  border-radius: 100%;
  background: #ffffff;
}

[type='radio']:checked + label::after,
[type='radio']:not(:checked) + label::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 5px solid #104cbc;
  border-radius: 100%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

[type='radio']:not(:checked) + label::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type='radio']:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Select */
.inputs-container {
  display: flex;
}

.input-group {
  width: 50%;
}

.input-group input {
  max-width: 260px;
  min-width: 200px;
}

select {
  cursor: pointer;
}

select:focus,
select:active {
  outline: 2px dotted #0345a7;
}

.select-dropdown {
  width: 135px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  padding: 0 10px;
  font-size: 20px;
  border: 1px solid #cccccc;
  height: 60px;
  line-height: 28px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('/static/assets/img/arrowhead-down-filled.png') 88% / 12% no-repeat transparent;
}

@media all and (max-width: 765px) {
  .inputs-container {
    flex-direction: column;
  }

  .input-group {
    margin-top: 15px;
    width: auto;
  }

  .input-group input {
    max-width: none;
  }
}

/* Button base style and sizing */
.button-wrapper {
  padding: 0 15% 100px;
}

.button-container {
  display: flex;
  align-items: center;
  max-width: 760px;
  margin: auto;
}

.first-button-set {
  display: flex;
}

.button-base {
  border-radius: 5px;
  font-weight: 800;
  height: 60px;
  font-size: 16px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
  border: none;
}

.button-base:hover {
  cursor: pointer;
}

a.button-base {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-decoration: none;
  text-align: center;
}

#school-list {
  display: flex;
  flex-flow: row wrap;
}

.school-name-container {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
  padding: 7px 10px 10px 18px;
  border-radius: 5px;
  display: inherit;
  background-color: #f6f6f6;
  margin-right: 10px;
  margin-bottom: 10px;
}

.school-name-container h5 {
  color: #024cbc;
  font-size: 15px;
  margin-right: 10px;
  margin-bottom: 0;
}

.remove-btn {
  color: #024cbc;
  font-weight: 800;
  display: inline;
  cursor: pointer;
  font-size: 19px;
  transform: translateY(-10px);
}

/* 'Go Back' button */
.button-white {
  background-color: #f6f6f6;
  color: #0047cb;
  display: flex;
  align-items: center;
}

.button-white:hover {
  background-color: #052b52;
  color: white;
}

/* Blue buttons */
.button-blue {
  color: white;
  background-color: #0345a7;
  display: flex;
  flex-flow: row nowrap;
}

.button-blue.login {
  padding: 0;
}

.button-blue .button-text {
  flex-grow: 1;
  color: white;
  align-self: center;
  width: 70%;
  text-align: left;
  padding: 0 50px 0 30px;
}

.next .button-text {
  padding: 0 30px;
}

.button-blue .icon {
  color: #4ee4b3;
  font-size: 21px;
  padding: 0 30px;
  border-left: 1px solid #052b52;
  align-items: center;
  display: flex;
}

.button-blue:hover {
  background-color: #052b52;
}

.button-blue:hover .icon {
  border-color: #4ee4b3;
}

.center-buttons {
  width: fit-content;
  margin-left: 15%;
  padding-left: 15%;
  padding-right: 15%;
}

.center-buttons button:first-child {
  margin-right: 30px;
}

.center-buttons button .icon:first-child {
  padding-left: 5px;
}

/* Buttons for mobile */
@media all and (max-width: 765px) {
  .button-container {
    padding: 0 10px;
    justify-content: space-between;
    flex-flow: row-reverse;
  }

  .button-wrapper {
    padding: 0 25px 50px;
  }

  .button-container a[role='button'] {
    margin-top: 15px;
  }

  .button-blue.next {
    width: auto;
  }

  .button-blue .button-text {
    text-align: center;
  }

  .first-button-set {
    display: flex;
    flex-direction: column;
  }

  .middle-button-set {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .button-base {
    margin-bottom: 5px;
    text-align: center;
  }

  .button-blue .icon {
    line-height: 28px;
  }


  .button-block {
    width: 100%;
  }

  .button-block .button-text {
    text-align: left;
    padding: 0 30px 0 30px;
  }

  .button-grey .icon {
    margin-right: 0;
    float: left;
    height: 14px;
    line-height: 28px;
  }
}

/* Links for go back, save progress, etc */
.acs-link {
  font-weight: 800;
  font-size: 16px;
}

.acs-link + .acs-link {
  margin-left: 25px;
}

.acs-link:hover {
  cursor: pointer;
}

/* Double-column section  */
.legend-description.italics {
  font-size: 16px;
  font-weight: 400;
}

.info-title {
  font-size: 35px;
  font-weight: 400;
  color: #000000;
}

/* Helper classes for step labels */
.t-10 {
  transform: translate(-10px);
}

.t-30 {
  transform: translate(-30px);
}

.t-intro {
  transform: translate(-40px, -35px);
}

.t-district {
  transform: translate(185px, -35px);
}

.t-income {
  transform: translate(415px, -35px);
}

.t-75-10 {
  transform: translate(-75px, -10px);
}

@media all and (max-width: 765px) {
  .t-intro {
    transform: translate(-20px, -26px);
  }

  .t-district {
    transform: translate(110px, -26px);
  }

  .t-income {
    transform: translate(242px, -26px);
  }

  .acs-link {
    margin-left: 0;
  }

  .acs-link#save_progress_button {
    margin-top: 30px;
  }
}

@media all and (max-width: 400px) {
  .t-district {
    transform: translate(90px, -26px);
  }

  .t-income {
    transform: translate(205px, -26px);
  }
}

/* Helper classes for text */
.italics {
  font-style: italic;
}

/* School Cards */
.program-container {
  background-color: #f6f6f6;
  display: flex;
  list-style: none;
  margin: 0 0 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25);
  padding-bottom: 20px;
}

.school {
  width: 100%;
}

.school-name {
  font-weight: 800;
  margin: 0;
  padding: 25px 0 7px 25px;
  font-size: 18px;
  color: #000000;
}

.program-name {
  color: #000000;
  font-size: 15px;
  font-weight: normal;
  padding-left: 25px;
  margin-bottom: 5px;
}

.current-status {
  padding: 0 28px;
  font-size: 16px;
}

.current-status .icon {
  margin-right: 5px;
}


.button {
  display: inherit;
  width: 60px;

  @media screen and (max-width: 765px) {
    width: 39px;
  }
}

.button button,
div[role='button'] {
  width: 100%;
  font-size: 12px;
}

.button button,
div[role='button'] span {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: center;
  justify-content: center;
}

ul.list-items {
  list-style: none;
}

.list-items li::before {
  content: '·';
  font-weight: bold;
  margin-right: 5px;
}

fieldset #awesomplete_list_1 {
  max-width: 700px !important;
  min-width: auto !important;
}

/* More helper classes */
.w-100 {
  width: 100% !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-60 {
  margin-top: 60px;
}

.maxw-760 {
  max-width: 760px;
}

.bold-text {
  font-weight: bold;
}

.pr-20 {
  padding-right: 20px;
}

@media all and (max-width: 765px) {
  .d-md-none {
    display: none;
  }
}

@media all and (min-width: 765px) {
  .mr-25 {
    margin-right: 25px;
  }
}
