

.snhu-btn {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}

.snhu-btn--primary {
  color: #0A3370;
  background: #FDB913;
}

.snhu-btn--primary:hover {
  background: #FEE097;
}

.snhu-btn--small {
  line-height: 3px;
  padding: 15px 18px;
}

.snhu-btn--large {
  line-height: 13px;
  padding: 15px 35px;
}

.snhu-btn--secondary {
  color: #FFF;
  background: #2066A2;
}

.snhu-btn--secondary:hover {
  color: #0A3370;
  background: #70ABDB;
}

.snhu-btn--tertiary {
  line-height: 16px;
  padding: 8px 20px;
  color: #2066A2;
  background: #FFF;
  border-color: #70ABDB;
}

.snhu-btn--tertiary:hover {
  color: #0A3370;
  background: #70ABDB;
}

a.snhu-cta {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  color: #0A3370;
  padding-right: 12px;
  text-decoration: none;
  background: no-repeat right center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='6' height='9.89' viewBox='0 0 6 9.89'%3E%3Cdefs%3E%3Cpath id='5n9aa' d='M82.84 11.33l-4.4 4.4a.54.54 0 0 1-.77 0l-.51-.52a.54.54 0 0 1 0-.76l3.49-3.5-3.5-3.51a.54.54 0 0 1 0-.77l.52-.51a.54.54 0 0 1 .77 0l4.4 4.4c.21.21.21.56 0 .77z'/%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-77 -6)'%3E%3Cuse fill='%230a3370' xlink:href='%235n9aa'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

a.snhu-cta:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: #70ABDB;
  transition: width 0.2s ease-out;
}

a.snhu-cta:hover:after {
  width: 100%;
}


.snhu-checkbox {
  font-size: 1rem;
  line-height: 1.6;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  color: #0A3370;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.snhu-checkbox input {
  position: absolute;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  cursor: pointer;
}

.snhu-checkbox input:checked ~ .snhu-checkbox__checkmark {
  background-color: #2066A2;
  border-color: #2066A2;
}

.snhu-checkbox.snhu-checkbox--error input ~ .snhu-checkbox__checkmark {
    border-width: 2px;
    border-color: #cd2026;
}

.snhu-checkbox input:checked ~ .snhu-checkbox__checkmark:after {
  display: block;
}

.snhu-checkbox input:checked ~ .snhu-checkbox__label {
  font-weight: 700;
}

.snhu-checkbox.snhu-checkbox--yellow input:checked ~ .snhu-checkbox__checkmark {
  background-color: #FDB913;
  border-color: #FDB913;
}

.snhu-checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #D4D6D9;
  border-radius: 2px;
  background-color: #FFF;
}

.snhu-checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.snhu-checkbox--yellow .snhu-checkbox__checkmark:after {
  border-color: #2066A2;
}

.snhu-radiobutton {
  line-height: 1.6;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #0A3370;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.snhu-radiobutton input {
  position: absolute;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.snhu-radiobutton input:checked ~ .snhu-radiobutton__checkmark {
  background-color: #2066A2;
  border-color: #2066A2;
}

.snhu-radiobutton input:checked ~ .snhu-radiobutton__checkmark:after {
  display: block;
}

.snhu-radiobutton input:checked ~ .snhu-radiobutton__label {
  font-weight: 700;
}

.snhu-radiobutton.snhu-radiobutton--yellow input:checked ~ .snhu-radiobutton__checkmark {
  background-color: #FDB913;
  border-color: #FDB913;
}

.snhu-radiobutton.snhu-radiobutton--error input ~ .snhu-radiobutton__checkmark {
    border-width: 2px;
    border-color: #cd2026;
}

.snhu-radiobutton__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #FFF;
  border: 1px solid #D4D6D9;
  border-radius: 50%;
}

.snhu-radiobutton__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFF;
}


.snhu-input {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  padding: 8px 10px;
  box-shadow: 0px 0px 0px 1px #ffffff, 0px 0px 5px 1px rgba(0,0,0,0);
  border: 1px solid #cccccc;
  outline: none;
  border-radius: 3px;
  color: #0A3370;
  transition: all 0.3s ease-in-out;
}

.snhu-input--blue:focus {
  border-color: #2066A2;
  box-shadow: 0 0 0 1px #2066A2, 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.snhu-input--yellow:focus {
  border-color: #FDB913;
  box-shadow: 0 0 0 1px #FDB913, 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.snhu-input:focus ~ .snhu-input__label {
    font-size: 0.75rem;
    top: -6px;
    left: 15px;
    color: #727577;
}

.snhu-input.snhu-input--has-value ~ .snhu-input__label {
    font-size: 0.75rem;
    top: -6px;
    left: 15px;
    color: #727577;
}

.snhu-input__label {
    font-size: 0.9375rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    top: 9px;
    left: 8px;
    padding: 0 3px;
    color: #0A3370;
    pointer-events: none;
    background: #FFF;
    transition: all 0.3s ease-in-out;
}

.snhu-input::-webkit-input-placeholder {
  font-weight: 400;
  color: #0A3370;
}

.snhu-input::-moz-placeholder {
  font-weight: 400;
  color: #0A3370;
}

.snhu-input:-ms-input-placeholder {
  font-weight: 400;
  color: #0A3370;
}

.snhu-input:-moz-placeholder {
  font-weight: 400;
  color: #0A3370;
}

.snhu-input--error {
  border-width: 2px;
  border-color: #cd2026;
}

.snhu-form__field > .snhu-input__label {
    width: auto;
}

.snhu-textarea {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  padding: 8px 10px;
  border: 1px solid #CCCCCC;
  outline: none;
  box-shadow: 0px 0px 0px 1px #ffffff, 0px 0px 5px 1px rgba(0,0,0,0);
  border-radius: 3px;
  color: #0A3370;
  transition: all 0.3s ease-in-out;
}

.snhu-textarea--blue:focus {
  border-color: #2066A2;
  box-shadow: 0 0 0 1px #2066A2, 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.snhu-textarea--yellow:focus {
  border-color: #FDB913;
  box-shadow: 0 0 0 1px #FDB913, 0 0 5px 1px rgba(0, 0, 0, 0.15);
}

.snhu-textarea::-webkit-input-placeholder {
  color: #0A3370;
}

.snhu-textarea::-moz-placeholder {
  color: #0A3370;
}

.snhu-textarea:-ms-input-placeholder {
  color: #0A3370;
}

.snhu-textarea:-moz-placeholder {
  color: #0A3370;
}

.snhu-textarea--error {
  border-color: #ed6426;
}

.selectric-snhu-select .selectric {
  border-radius: 3px;
  /* border: 1px solid #D4D6D9; */
  background: #FFF;
}

.selectric-snhu-select .label {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  height: 35px;
  line-height: 35px;
  margin: 0 30px 0 10px;
  color: #0A3370;
}

.selectric-snhu-select .button {
  width: 30px;
  height: 35px;
  background: #D4D6D9;
}

.selectric-snhu-select .button:after {
  font-size: 24px;
  font-family: "FontAwesome";
  right: calc(50% - 1px);
  color: #0A3370;
  content: "\f107";
  border: 0;
}

.selectric-snhu-select .selectric-items {
  border: 1px solid rgba(212, 214, 217, 0.32);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  background-color: #f9f9f9;
}

.selectric-snhu-select .selectric-items li {
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #0A3370;
}

.selectric-snhu-select .selectric-items li:hover {
  background-color: rgba(112, 171, 219, 0.25);
  color: #071b39;
}

.selectric-snhu-select .selectric-items li:before {
  content: none;
}

.selectric-snhu-select.selectric-disabled {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.selectric-snhu-select.selectric-disabled .label {
  color: #727577;
  opacity: .55;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=55)";
}

.selectric-snhu-select.selectric-disabled .button:after {
  opacity: .55;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=55)";
}

.selectric-snhu-select.selectric-disabled .selectric {
  background: #f7f7f7;
}

.selectric-snhu-select--error .selectric {
  border-width: 2px;
  border-color: #cd2026;
}

.snhu-select__icon {
  font-size: 20px;
  float: right;
  margin-top: 8px;
  margin-right: 10px;
  color: #32cb00;
}


.snhu-table__container {
  width: 100%;
  overflow: auto;
}

.snhu-table {
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  color: #071B39;
  background: #FFF;
  box-shadow: 0 0 32px -3px rgba(30, 26, 27, 0.1);
}

.snhu-table thead {
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #FFF;
  background: #0A3370;
}

.snhu-table thead th {
  padding: 25px 35px;
  letter-spacing: 0.3px;
  text-align: left;
}

.snhu-table tr:first-child th:first-child {
  border-top-left-radius: 3px; 
}

.snhu-table tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.snhu-table tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}

.snhu-table tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}

.snhu-table tbody {
  border-top: 0;
}

.snhu-table tbody td {
  padding: 25px 40px;
  border-right: 2px solid #D4D6D9;
  border-bottom: 2px solid #D4D6D9;
}

.snhu-table tbody td:first-child {
  border-left: 2px solid #D4D6D9;
}

.snhu-table tbody ul {
  font-size: inherit;
  margin-bottom: 0;
  margin-left: 10px;
}

* {
  box-sizing: border-box;
}

body, html {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #727577;
}

a {
  font-weight: 700;
  color: #2066A2;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #70ABDB;
}

h1, h2, h3, h4, h5, h6 {
  color: #0A3370;
  margin: 10px 0;
}

@media (min-width: 48em) {
  h1, h2, h3, h4, h5, h6 {
    margin: 15px 0;
  }
}

h1 {
  font-size: 2.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03px;
}

@media (min-width: 48em) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03px;
}

h3 {
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02px;
}

h4 {
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02px;
}

h5 {
  font-size: 1rem;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04px;
}

@media (min-width: 48em) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 1rem;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01px;
}

@media (min-width: 48em) {
  h6 {
    font-size: 1.125rem;
    letter-spacing: 0.02px;
  }
}

p {
  line-height: 24px;
}

p.snhu-paragraph--small {
  font-size: 0.875rem;
  line-height: 22px;
}

ul, ol {
  font-size: 0.875rem;
  list-style: none;
  margin: 0 0 20px 40px;
  padding: 0;
  line-height: 22px;
}

ol {
  counter-reset: item;
}

li {
  font-weight: 400;
  position: relative;
  padding-left: 15px;
  color: #727577;
}

ul li:before {
  display: inline-block;
  position: absolute;
  bottom: calc(50% - 3px);
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #70ABDB;
}

ol li:before {
  font-weight: 600;
  display: inline-block;
  position: absolute;
  left: 0;
  content: counter(item) ". ";
  counter-increment: item;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 30px;
}

@media (min-width: 48em) {
  blockquote {
    font-size: 1.375rem;
  }
}

.snhu-header {
  font-size: 1.5rem;
  width: 100%;
  margin-bottom: 0;
  padding: 17px 40px;
  border-radius: 3px 3px 0 0;
  text-transform: uppercase;
}

@media (min-width: 48em) {
  .snhu-header {
    font-size: 2rem;
    padding: 22px 40px;
  }
}

.snhu-header--yellow {
  color: #0A3370;
  background: #FDB913;
}

.snhu-header--blue {
  color: #FFF;
  background: #0A3370;
}

.snhu-header--small {
  font-size: 1.5rem;
  text-transform: none;
  padding: 17px 40px;
}

.snhu-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #EFEFEF;
  border-radius: 3px;
  background: #FFF;
}

@media (min-width: 48em) {
  .snhu-card {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    box-shadow: 0 1px 43px 3px rgba(30, 26, 27, 0.1);
  }
}

.snhu-card .snhu-btn--primary {
  width: 100%;
}

@media (min-width: 48em) {
  .snhu-card .snhu-btn--primary {
    width: auto;
  }
}

@media (min-width: 48em) {
  .snhu-card--lg-header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.snhu-card__title {
  margin-top: 0;
  text-transform: uppercase;
}

.snhu-card--lg-header .snhu-card__title {
  font-size: 1.5rem;
  width: 100%;
  margin-bottom: 0;
  padding: 17px 40px;
  border-radius: 3px 3px 0 0;
  color: #FFF;
  background: #0A3370;
}

@media (min-width: 48em) {
  .snhu-card--lg-header .snhu-card__title {
    font-size: 2rem;
    padding: 22px 40px;
  }
}

.snhu-card__thumb {
  width: 100%;
  height: 290px;
}

@media (min-width: 48em) {
  .snhu-card__thumb {
    overflow: hidden;
    width: 40%;
    height: auto;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
}

.snhu-card__thumb img {
  max-width: 100%;
  height: 100%;
  padding-left: 100%;
  background-position: center;
  background-size: cover;
}

@media (min-width: 48em) {
  .snhu-card--lg-header .snhu-card__thumb {
    width: 50%;
    border-top-left-radius: 0;
  }
}

.snhu-card__content {
  padding: 20px 30px 40px;
}

@media (min-width: 48em) {
  .snhu-card__content {
    width: 60%;
    padding: 45px 60px;
  }
}

@media (min-width: 48em) {
  .snhu-card--lg-header .snhu-card__content {
    width: 50%;
  }
}

.snhu-card__content p {
  margin-bottom: 30px;
}

.snhu-card__content p:last-child {
  margin-bottom: 0;
}


.snhu-tabs .fab {
  font-weight: normal;
}

.snhu-tabs-nav {
  display: none;
  width: 100%;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  background: #0A3370;
}

@media (min-width: 48em) {
  .snhu-tabs-nav {
    display: block;
  }
}

.snhu-tabs-nav__list {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.snhu-tabs-nav__item {
  padding: 0;
}

.snhu-tabs-nav__item:before {
  content: none;
}

.snhu-tabs-nav__item a {
    font-size: 1.125rem;
    font-family: "Oswald", sans-serif;
    display: block;
    position: relative;
    min-width: 190px;
    height: 100%;
    padding: 14px 0;
    text-align: center;
    color: #FFF;
    text-decoration: none;
}

.snhu-tabs-nav__item a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: #FDB913;
  content: "";
  transition: all 0.2s ease-out;
}

.snhu-tabs-nav__item a:hover {
    color: #FDCB54;
}

.snhu-tabs-nav__item.active a {
  color: #FDCB54;
}

.snhu-tabs-nav__item.active a:after {
  height: 3px;
}

.snhu-tabs-nav__item .fa {
  font-size: 22px;
}

.snhu-tabs__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 79, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab {
  margin-bottom: 30px;
  padding: 0;
}

@media (min-width: 48em) {
  /* line 79, src/_css/modules/molecules/_tabs.scss */ .snhu-tabs-tab {
    margin-bottom: 0;
  }
}

/* line 87, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab.active {
  margin-bottom: 0;
}

/* line 91, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab:before {
  content: none;
}

/* line 96, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab__title {
  font-size: 1.125rem;
  font-family: "Oswald", sans-serif;
  color: #FFF;
  margin: 0;
  background: #0A3370;
}

@media (min-width: 48em) {
  /* line 96, src/_css/modules/molecules/_tabs.scss */ .snhu-tabs-tab__title {
    display: none;
  }
}

/* line 107, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab__title a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  width: 100%;
  padding: 14px 25px;
}

/* line 115, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab__title a:after {
  font-family: FontAwesome;
  font-size: 22px;
  font-weight: normal;
  position: absolute;
  top: 14px;
  right: 25px;
  width: 20px;
  height: 20px;
  color: #FDB913;
  content: "\f055";
}

/* line 127, src/_css/modules/molecules/_tabs.scss */
.active .snhu-tabs-tab__title a:after {
  content: "\f056";
}

/* line 133, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab__title .fab {
  font-size: 22px;
}

/* line 138, src/_css/modules/molecules/_tabs.scss */
.snhu-tabs-tab__content {
  display: none;
  padding: 25px;
}

@media (min-width: 48em) {
  /* line 138, src/_css/modules/molecules/_tabs.scss */ .snhu-tabs-tab__content {
    padding: 40px;
  }
}

/* line 146, src/_css/modules/molecules/_tabs.scss */
.active .snhu-tabs-tab__content {
  display: block;
}


.modal-hider {
  position: absolute;
  left: -99999em;
}

.modal {
  display: none;
}

.vanilla-modal .modal {
  display: block;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: -1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 0.2s, z-index 0s 0.2s;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.vanilla-modal .modal > * {
  display: inline-block;
  white-space: normal;
  vertical-align: middle;
  text-align: left;
}

.vanilla-modal .modal:before {
  display: inline-block;
  overflow: hidden;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: "";
}

.vanilla-modal.modal-visible .modal {
  z-index: 99;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transition: opacity 0.2s;
}

.modal-inner {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  max-height: 90%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: -1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -ms-transform: scale(0);
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s, z-index 0s 0.2s;
}

.modal-visible .modal-inner {
  z-index: 100;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -ms-transform: scale(1);
  transform: scale(1);
  transition: opacity 0.2s, transform 0.2s;
}

.modal-content {
  margin-top: 40px;
}

[data-modal-close] {
    font-size: 30px;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 35px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    color: #FFF;
}

[data-modal-close] svg {
    fill: #FFF;
}

[data-modal-close]:hover svg {
    fill: #70ABDB;
}

.snhu-video-modal__trigger {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.snhu-video-modal__trigger:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 80px;
  content: "";
  opacity: 0.89;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=89)";
  border-radius: 3px;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: opacity 0.3s ease-in;
  background: #FDB913;
}

.snhu-video-modal__trigger:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-style: solid;
  border-width: 20px 0 20px 25px;
  border-color: transparent transparent transparent #0A3370;
  content: "";
}

.snhu-video-modal__trigger:hover:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.snhu-video-modal__trigger img {
  width: 100%;
  height: auto;
}

.snhu-video-modal__content {
    width: 290px;
}

@media (min-width: 48em) {
    .snhu-video-modal__content {
        width: 680px;
    }
}

.snhu-video-modal__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.snhu-video-modal__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.snhu-icon {
  font-size: 40px;
  color: #FDB913;
}

.snhu-icon--utility {
  color: #0A3370;
}
  

.snhu-form__row {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.snhu-form__field {
  position: relative;
  width: 100%;
}

@media (min-width: 48em) {
  .snhu-form__field {
    -ms-flex: 1;
    flex: 1;
  }
}

.snhu-form__field > * {
  width: 100%;
}

.snhu-form__field--col-6 {
  margin-bottom: 20px;
}

@media (min-width: 48em) {
  .snhu-form__field--col-6 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-positive: 2;
    flex-grow: 2;
    margin-bottom: 0;
  }
}

@media (min-width: 48em) {
  .snhu-form__field--col-6:first-child {
    margin-right: 10px;
  }
}

.snhu-form__field--col-6:last-child {
  margin-bottom: 0;
}

@media (min-width: 48em) {
  .snhu-form__field--col-6:last-child {
    margin-left: 10px;
  }
}

.snhu-form__field--col-3 {
  margin-bottom: 20px;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 48em) {
  .snhu-form__field--col-3 {
    margin-bottom: 0;
  }
}

@media (min-width: 48em) {
  .snhu-form__field--col-3:first-child {
    margin-right: 7px;
  }
}

.snhu-form__field--col-3:last-child {
  margin-bottom: 0;
}

@media (min-width: 48em) {
  .snhu-form__field--col-3:last-child {
    margin-left: 7px;
  }
}

.snhu-form__label {
  font-size: 0.9375rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  color: #0A3370;
}

@media (min-width: 48em) {
  .snhu-form__group {
    display: -ms-flexbox;
    display: flex;
  }
}

.snhu-form__group > * {
  margin-right: 15px;
}

.snhu-form__global-error {
  margin-bottom: 30px;
}

.snhu-form__error-msg {
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
  color: #cd2026;
}

.snhu-datepicker .ui-datepicker {
  font-family: "Open Sans", sans-serif;
  padding: 0;
}

.snhu-datepicker .ui-widget-header {
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-top: -2px;
  margin-right: -2px;
  margin-left: -2px;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  color: #FDB913;
  background: #0A3370;
}

.snhu-datepicker .ui-widget-header:before {
  display: block;
  position: absolute;
  top: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 8px 11px;
  border-color: transparent transparent #0a3370 transparent;
  content: "";
}

.snhu-datepicker .ui-widget.ui-widget-content {
  border: 2px solid #d4d6d9;
  border-radius: 0;
  box-shadow: 0 0 32px -3px rgba(0, 0, 0, 0.1);
}

.snhu-datepicker .ui-datepicker table {
  margin-top: 15px;
  margin-bottom: 20px;
}

.snhu-datepicker .ui-datepicker th {
  font-size: 0.75rem;
  font-family: "Oswald", sans-serif;
  color: #2066a2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.snhu-datepicker .ui-state-default, .snhu-datepicker .ui-widget-content .ui-state-default, .snhu-datepicker .ui-widget-header .ui-state-default, .snhu-datepicker .ui-button, .snhu-datepicker html .ui-button.ui-state-disabled:hover, .snhu-datepicker html .ui-button.ui-state-disabled:active {
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  text-align: center;
  border: 0;
  color: #727577;
  background: none;
}

.snhu-datepicker .ui-state-active, .snhu-datepicker .ui-widget-content .ui-state-active, .snhu-datepicker .ui-widget-header .ui-state-active, .snhu-datepicker a.ui-button:active, .snhu-datepicker .ui-button:active, .snhu-datepicker .ui-button.ui-state-active:hover {
  font-weight: 600;
  color: #0A3370;
  background: #FDB913;
}

.snhu-datepicker .ui-datepicker .ui-datepicker-prev:hover {
  text-decoration: none;
}

.snhu-datepicker .ui-datepicker .ui-datepicker-prev:after {
  font-family: FontAwesome;
  font-size: 25px;
  position: relative;
  top: 2px;
  left: 15px;
  color: #FFF;
  content: "\f104";
}

.snhu-datepicker .ui-datepicker .ui-datepicker-prev span {
  background: none;
}

.snhu-datepicker .ui-datepicker .ui-datepicker-next:hover {
  text-decoration: none;
}

.snhu-datepicker .ui-datepicker .ui-datepicker-next:after {
  font-family: FontAwesome;
  font-size: 25px;
  position: relative;
  top: 2px;
  left: 5px;
  color: #FFF;
  content: "\f105";
}

.snhu-datepicker .ui-datepicker .ui-datepicker-next span {
  background: none;
}

.snhu-datepicker .ui-state-hover, .snhu-datepicker .ui-widget-content .ui-state-hover, .snhu-datepicker .ui-widget-header .ui-state-hover, .snhu-datepicker .ui-state-focus, .snhu-datepicker .ui-widget-content .ui-state-focus, .snhu-datepicker .ui-widget-header .ui-state-focus, .snhu-datepicker .ui-button:hover, .snhu-datepicker .ui-button:focus {
  border: 0;
  background: none;
}

.snhu-datepicker .ui-state-hover:after, .snhu-datepicker .ui-widget-content .ui-state-hover:after, .snhu-datepicker .ui-widget-header .ui-state-hover:after, .snhu-datepicker .ui-state-focus:after, .snhu-datepicker .ui-widget-content .ui-state-focus:after, .snhu-datepicker .ui-widget-header .ui-state-focus:after, .snhu-datepicker .ui-button:hover:after, .snhu-datepicker .ui-button:focus:after {
  color: #FDB913;
}

.snhu-datepicker .ui-datepicker .ui-datepicker-prev-hover, .snhu-datepicker .ui-datepicker .ui-datepicker-next-hover {
  font-weight: normal;
  right: 2px;
}

.snhu-alert {
  box-shadow: 0 0 4px rgba(30, 26, 27, 0.11);
  border-radius: 2px;
  border: 2px solid #f05c42;
  background-color: rgba(240, 92, 66, 0.07);
}

.snhu-alert__container {
  display: -ms-flexbox;
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
}

.snhu-alert__icon {
  font-size: 3.125rem;
  margin-right: 20px;
  color: #0A3370;
}

.snhu-alert__content {
  font-size: 0.875rem;
  color: #071B39;
  letter-spacing: 0.03px;
}

.snhu-alert__title {
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #071B39;
  letter-spacing: 0.03px;
}

.snhu-toolip {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03px;
  color: #0A3370;
}

.snhu-tooltip__icon {
  font-size: 2.1875rem;
  display: inline-block;
  color: #0A3370;
}

.snhu-toolip p {
  margin-top: 0;
}

.snhu-toolip__title {
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0;
  color: #0A3370;
  letter-spacing: 0.03px;
}

.snhu-tooltip__wrapper {
  display: none;
}

.tooltipster-sidetip .tooltipster-box {
  border: 1px solid rgba(212, 214, 217, 0.64);
  border-radius: 0;
  background-color: #FFF;
  box-shadow: 0 0 4px rgba(30, 26, 27, 0.11);
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: rgba(212, 214, 217, 0.64);
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  top: -5px;
  border-top-color: #FFF;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: rgba(212, 214, 217, 0.64);
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  top: -1px;
  border-bottom-color: #FFF;
}

.tooltipster-sidetip .tooltipster-content {
  padding: 0 20px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow, .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  width: 30px;
  height: 11px;
  margin-left: -15px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
  top: -3px;
  border: 15px solid transparent;
}

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 15px solid transparent;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 10px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 10px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 10px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow, .tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  width: 11px;
  height: 30px;
  margin-top: -15px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  top: 0;
  left: -3px;
  border-left-color: rgba(212, 214, 217, 0.64);
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  top: 0;
  left: -5px;
  border-left-color: #FFF;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  top: 0;
  left: -5px;
  border-right-color: rgba(212, 214, 217, 0.64);
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  top: 0;
  left: -3px;
  border-right-color: #FFF;
}


.snhu-calendar .fc-state-default {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
  line-height: 16px;
  padding: 8px 20px;
  color: #2066A2;
  background: #FFF;
  border-color: #70ABDB;
}

.snhu-btn--tertiary:hover, .snhu-calendar .fc-state-default:hover {
  color: #0A3370;
  background: #70ABDB;
}

.snhu-calendar .fc-state-default {
  text-shadow: none;
}

.snhu-calendar .fc-state-active, .snhu-calendar .fc-state-down {
  box-shadow: none;
  background-color: #70ABDB;
}

.snhu-calendar .fc-button {
  height: auto;
  text-transform: capitalize;
  margin-right: 7px;
}

.snhu-calendar .fc-month-button {
  margin-right: 0;
}

.snhu-calendar .fc-center {
  width: 100%;
  background: #0A3370;
}

.snhu-calendar .fc-center h2 {
  font-size: 1.25rem;
  float: none;
  color: #FDB913;
  letter-spacing: 0.49px;
  padding: 18px 0;
}

.snhu-calendar .fc-header-toolbar {
  margin-bottom: 0;
}

.snhu-calendar .fc-icon-left-single-arrow:after {
  font-family: FontAwesome;
  content: "\f104";
}

.snhu-calendar .fc-icon-right-single-arrow:after {
  font-family: FontAwesome;
  content: "\f105";
}

.snhu-calendar .fc-prev-button, .snhu-calendar .fc-next-button {
  padding: 8px 10px;
}

.snhu-calendar .fc-unthemed .fc-content, .snhu-calendar .fc-unthemed .fc-divider, .snhu-calendar .fc-unthemed .fc-list-heading td, .snhu-calendar .fc-unthemed .fc-list-view, .snhu-calendar .fc-unthemed .fc-popover, .snhu-calendar .fc-unthemed .fc-row, .snhu-calendar .fc-unthemed tbody, .snhu-calendar .fc-unthemed td, .snhu-calendar .fc-unthemed th, .snhu-calendar .fc-unthemed thead {
  border-color: #D4D6D9;
}

.snhu-calendar .fc-day-number {
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 8px;
  margin-top: 8px;
  color: #727577;
}

.snhu-calendar.fc-unthemed td.fc-today {
  background: none;
}

.snhu-calendar.fc-unthemed td.fc-today .fc-day-number {
  padding: 3px 5px;
  color: #0A3370;
  border-radius: 2px;
  background: #FDB913;
}

body {
    font-size: 16px;
    font-family: Open Sans,sans-serif;
    color: #444;
    background-color: #fff
}

a {
font-weight: inherit;
}

.degree-body li,.degree-tabs ul,.fa-ul {
    list-style-type: none
}

ul li {
  padding-left: 0;
}


ul li:before {
  display: none;
}

.back-to-top,.degree-finder .container,.in-page-calls,.main-content .container,.masthead .masthead-content,.page-header .header-content,.program .tiles,.tiles,FOOTER .content {
    max-width: 1140px;
    margin: auto;
    padding: 0 1em
}
.page-header .mobile-nav a.mobile-find-your-degree.open,.page-header .mobile-nav a.nav.open {
    background-color: #fff
}
.page-header .mobile-nav a.mobile-find-your-degree,.page-header .mobile-nav a.nav {
    position: absolute;
    top: 0;
    padding-top: 18px;
    width: 75px;
    height: 75px
}
.page-header .mobile-nav a.mobile-find-your-degree img,.page-header .mobile-nav a.nav img {
    width: 44px
}
.page-header .mobile-nav a.mobile-find-your-degree {
    right: 0
}
.page-header .find-your-degree {
    position: relative;
    float: right;
    border: 1px solid rgba(255,255,255,.29);
    border-radius: 6px;
    margin: 1em 0;
    color: #fff;
    background-color: #08224a;
    height: 2.6875em;
    line-height: 2.6875em;
    padding: 0 .8em;
    text-align: center;
    cursor: pointer;
    display: none
}
@media screen and (min-width: 768px) {
    .page-header .find-your-degree {
        font-size:.65em;
        margin: 2.3em 0;
        display: inline-block
    }

    .thankyou .page-header .find-your-degree {
        display: none
    }

    .lt-ie8 .page-header .find-your-degree {
        margin: 1.5em 0
    }

    .page-header .find-your-degree img {
        width: 10px;
        height: 10px
    }
}

@media screen and (min-width: 1024px) {
    .page-header .find-your-degree {
        font-size:1em;
        margin: 1em 0
    }

    .lt-ie9 .page-header .find-your-degree {
        margin: 1em 0
    }

    .page-header .find-your-degree img {
        width: 16px;
        height: 16px
    }
}

.page-header .find-your-degree img {
    position: relative;
    top: 2px;
    margin-right: .6em
}

.page-header .find-your-degree span.arrow {
    display: inline-block;
    position: relative;
    width: 0;
    height: 0;
    margin-left: .6em;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff
}

@media screen and (min-width: 768px) {
    .page-header .find-your-degree span.arrow {
        top:-2px
    }

    .lt-ie8 .page-header .find-your-degree span.arrow {
        top: -5px
    }
}

@media screen and (min-width: 1024px) {
    .page-header .find-your-degree span.arrow {
        top:-3px
    }

    .lt-ie9 .page-header .find-your-degree span.arrow {
        top: -4px
    }

    .lt-ie8 .page-header .find-your-degree span.arrow {
        top: -8px
    }
}

.page-header .find-your-degree.active {
    background-color: #fff;
    color: #08224a;
    border-radius: 6px 6px 0 0;
    z-index: 5
}

.page-header .find-your-degree.active span.arrow {
    border-top: 4px solid #08224a
}

.degree-body,.degree-tabs ul:after,.main-content:after,.mobile-degree-filter .filters:after,.program .tiles,.thankyou .background-cover:after,.tiles,FOOTER:after {
    clear: both
}
.degree-finder,FOOTER,div.overlay {
    background-color: #08224a
}
.degree-finder {
    height: 16.4em;
    padding: 0 1em
}
@media screen and (min-width: 768px) {
    .main-content .container ASIDE SECTION.call-cta {
        display:block
    }

    .degree-finder {
        height: 9.1em
    }
}

.degree-finder .container {
    margin: 0 auto
}

.degree-finder section.bachelors,.degree-finder section.masters {
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    float: none;
    width: 100%
}

@media screen and (min-width: 768px) {
    .degree-finder section.bachelors,.degree-finder section.masters {
        float:left;
        width: 50%
    }

    .degree-finder section.bachelors {
        padding: 0 45px 0 20px
    }

    .degree-finder section.masters {
        padding: 0 20px 20px 45px
    }
}

.degree-finder section.bachelors h3,.degree-finder section.masters h3 {
    font-weight: 400;
    font-size: 1.2em;
    font-family: Oswald,sans-serif;
    width: 72%
}

@media screen and (min-width: 320px) {
    .degree-finder section.bachelors h3,.degree-finder section.masters h3 {
        width:100%
    }

    .degree-finder section.bachelors {
        border-bottom: 1px solid #fff
    }
}

@media screen and (min-width: 1024px) {
    .degree-finder section.bachelors h3,.degree-finder section.masters h3 {
        width:72%
    }
}

.degree-finder section.bachelors h3 {
    float: right;
    text-align: center;
    margin: 0 auto .5em
}

.degree-finder section.masters h3 {
    float: left;
    text-align: center;
    margin: 0 auto .5em
}

@media screen and (min-width: 768px) {
    .degree-finder section.bachelors {
        border-right:1px solid #fff;
        border-bottom: 0;
        text-align: right
    }
}

.degree-finder select {
    margin: 0;
    border-radius: 4px;
    display: inline-block;
    color: #000;
    font-size: 14px;
    height: 35px
}

@media screen and (min-width: 320px) {
    .degree-finder select {
        width:100%;
        margin-bottom: 2em;
        padding: 6px
    }

    .tiles .tile-group:last-child .tile:last-child {
        border-bottom: 0
    }
}

@media screen and (min-width: 1024px) {
    .degree-finder select {
        width:72%
    }
}
.degree-tabs {
    width: 100%;
    margin: 0;
    display: none;
    border-bottom: 3px solid #08224a
}

@media screen and (min-width: 768px) {
    .degree-tabs {
        display:block
    }
}

.degree-tabs ul {
    padding-left: 0;
    margin: .83em 0 0
}

.degree-tabs ul:after,.degree-tabs ul:before {
    content: " ";
    display: table
}

.degree-tabs li {
    float: none;
    display: block;
    background-color: #3e5475;
    margin: 0;
    border-bottom: 1px solid #08224a
}

.degree-tabs li.active {
    background-color: #08224a;
    position: relative
}

@media screen and (min-width: 480px) {
    .degree-tabs li {
        float:left;
        display: inline-block;
        border-radius: 6px 6px 0 0;
        margin-right: 5px;
        border: 0
    }
}

.degree-tabs li a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: .5em 1em .2em
}

.degree-body {
    border: 1px solid #e1e1e1;
    margin: 0 0 1em;
    padding: 0;
    background-color: #fff
}

.degree-body li {
    padding: .5em 0 .5em 1em
}

.degree-body li a:hover {
    color: #1B5AB8
}

.degree-body .heading {
    color: #08224a;
    padding: .5em 0 .5em 1em;
    background-color: #e1e1e1;
    font-weight: 700;
    text-transform: uppercase
}

.degree-body .heading+.section-heading {
    border-top: 0
}

.degree-body .section-heading {
    text-transform: uppercase;
    font-weight: 700;
    padding: 1em 0;
    margin: 0 1em;
    border-top: 1px solid #e1e1e1
}

.degree-body .section-heading .first,.degree-body .section-heading:first-of-type {
    border-top: 0
}

.degree-body li.degree {
    text-indent: -.6em;
    padding-left: 1.7em
}
.mobile-degree-filter {
    display: block
}

@media screen and (min-width: 768px) {
    .mobile-degree-filter {
        display:none
    }
}

.mobile-degree-filter h1 {
    text-transform: uppercase;
    color: #08224a;
    font-family: Oswald,sans-serif;
    margin: 1em 0 0
}

.mobile-degree-filter p {
    margin: .2em 0 .5em
}

.mobile-degree-filter .filters {
    width: 100%;
    text-align: center
}

.mobile-degree-filter .filters a {
    float: left;
    width: 50%;
    display: inline-block;
    margin: 0 auto 1em;
    padding: 10px;
    text-decoration: none;
    text-shadow: rgba(0,0,0,.3) 0 2px 2px;
    background: linear-gradient(#e1e1e1,silver)
}

.mobile-degree-filter .filters a.bachelors {
    border-radius: 2px 0 0 2px;
    border-right: 1px solid #959595
}

.mobile-degree-filter .filters a.masters {
    border-radius: 0 2px 2px 0;
    color: #444
}

.mobile-degree-filter .filters a.active,.mobile-degree-filter .filters a:hover {
    background: linear-gradient(#fdb913,#d49e0d);
    color: #fff;
    box-shadow: inset 0 0 5px #adadad
}
































































