/* vendor prefixes */
/* loading */
@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.body-loading {
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  height: 3px;
  background-color: white;
  display: none;
}
body.loading .body-loading {
  display: block;
  -webkit-animation: expandWidth 2s linear 1;
  -khtml-animation: expandWidth 2s linear 1;
  -moz-animation: expandWidth 2s linear 1;
  animation: expandWidth 2s linear 1;
}
/* layout */
.constrain {
  position: relative;
}
.center-xy {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.center-x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.center-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.height100 {
  position: relative;
  min-height: -moz-fill-available;
  min-height: fill-available;
  min-height: 100vh;
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  .height100 {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}
.fullwidth {
  width: 100%;
}
.fullscreen {
  position: relative;
  min-height: -moz-fill-available;
  min-height: fill-available;
  min-height: 100vh;
  width: 100%;
}
.horizList {
  display: flex;
  flex-flow: row nowrap;
}
html,
body,
html a {
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Century Gothic", sans-serif;
}
a:not(.btn),
a:not(.btn):active {
  border: 0;
  outline: 0;
}
img {
  border: 0;
  outline: 0;
  display: block;
  height: auto;
  max-width: 100%;
}
/* page layout */
#wrapper {
  margin: 0 auto;
}
/* menu */
.menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.menu,
.menu li {
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
}
.menu a {
  text-decoration: none;
  text-underline-offset: 4px;
}
.menu a:hover {
  text-decoration: underline;
}
#top-menu {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VjNzIyMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iI2IxNTcyMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: linear-gradient(to bottom, #ec7220 0%, #b15723 99%);
}
#top-menu a {
  color: white;
  display: block;
  font-size: clamp(14px, 2vw, 20px);
  padding: 12px 36px;
  font-weight: 600;
  border-width: 0 2px;
  white-space: nowrap;
}
#top-menu li {
  position: relative;
  border: 2px solid transparent;
  border-right-color: var(--wp--preset--color--navy);
}
#top-menu li.current-menu-item > a,
#top-menu li.current-menu-ancestor > a {
  text-decoration: underline;
}
#top-menu li:last-child {
  border-right-color: transparent;
}
#top-menu li ul {
  z-index: 10;
  position: absolute;
  left: -999em;
  top: 100%;
  display: flex;
  flex-flow: column nowrap;
  background-color: #B15623;
  margin: 0;
  padding: 0;
  margin-top: 2px;
  border-top: 2px solid var(--wp--preset--color--navy);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
#top-menu li ul a:hover {
  background-color: var(--wp--preset--color--orange);
  text-decoration: none;
}
#top-menu li ul li {
  border: none;
}
#top-menu li ul li.current-menu-item > a {
  text-decoration: underline;
}
#top-menu li:hover ul {
  left: 0;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
body.menu-docked #top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#menu-toggle {
  position: absolute;
  top: 16px;
  left: 14px;
  display: block;
  width: 30px;
  z-index: 998;
  /* toggle link */
  /* menu open */
}
#menu-toggle:hover {
  text-decoration: none !important;
}
#menu-toggle:focus {
  text-decoration: none;
}
#menu-toggle i {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  margin-bottom: 10px;
  display: block;
  /* bar 1 */
  /* bar 2 */
  /* bar 3 */
  /* odd bars */
}
#menu-toggle i span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  opacity: 1;
  z-index: 999;
  background-color: white;
  -webkit-transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
  -khtml-transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
  -moz-transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
  transition: background-color 0.5s ease-in-out 0, opacity 0.5s ease-in-out 0.3s;
}
#menu-toggle i span:nth-of-type(1) {
  top: 0;
}
#menu-toggle i span:nth-of-type(2) {
  top: 9px;
  -webkit-transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
  -khtml-transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
  -moz-transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
  transition: background-color 0.2s ease-in-out 0s, opacity 0s ease-in-out 0.5s;
}
#menu-toggle i span:nth-of-type(3) {
  top: 18px;
}
#menu-toggle i span:nth-of-type(odd) {
  -webkit-transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
  -khtml-transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
  -moz-transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
  transition: background-color 0.2s ease-in-out 0s, transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0.3s;
}
.menu-open #menu-toggle {
  /* dropdown bars */
}
.menu-open #menu-toggle i {
  /* bar 1 */
  /* bar 2 */
  /* bar 3 */
  /* odd bars */
}
.menu-open #menu-toggle i span {
  background-color: white;
}
.menu-open #menu-toggle i span:nth-of-type(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-open #menu-toggle i span:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  -khtml-transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  -moz-transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
}
.menu-open #menu-toggle i span:nth-of-type(3) {
  top: 9px;
  transform: rotate(-45deg);
}
.menu-open #menu-toggle i span:nth-of-type(odd) {
  -webkit-transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
  -khtml-transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
  -moz-transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
  transition: background-color 0.2s ease-in-out 0s, transform 0.1s ease-in-out 0.2s, top 0.1s ease-in-out 0s;
}
/* header */
#header {
  background: url("/iteos/wp-content/themes/iteos/img/header-bg.jpg") no-repeat left center;
  background-color: var(--wp--preset--color--dark-blue);
  background-size: contain;
  padding-top: 40px;
}
#header h1 {
  color: white;
  font-family: "Century Gothic", sans-serif !important;
  line-height: 120%;
  margin: 0;
}
#header h1 strong {
  font-weight: 600;
}
#header .headerLogo,
#header .logoImages {
  display: flex;
  flex-flow: row nowrap;
}
#header .headerLogo {
  padding: 15px 15px 55px 15px;
  justify-content: space-between;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
#header .logoImages {
  column-gap: 24px;
  align-items: center;
}
#header .logoImages .logoDots,
#header .logoImages .iteosLogo {
  width: auto;
}
#header .logoImages .logoDots {
  height: 95px;
}
#header .logoImages .iteosLogo {
  height: 65px;
}
/* footer */
#footer {
  background-color: var(--wp--preset--color--dark-blue);
  padding: 30px 15px;
}
#footer .row {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
#footer .row,
#footer .row p {
  font-size: 14px;
}
#footer .menu {
  justify-content: flex-start;
}
#footer .menu a {
  color: white;
  display: block;
  line-height: 100%;
  padding: 0px 16px;
}
#footer .menu li {
  border-right: 1px solid white;
}
#footer .menu li:last-child {
  border-right-color: transparent;
}
#footer .menu li:first-child a {
  padding-left: 0;
}
/* the content */
.the-content sup {
  top: -1.1em;
  font-size: .7rem;
}
.the-content ul > li {
  list-style-type: none;
}
body.menu-docked .the-content {
  padding-top: 60px;
}
.the-content .wpcf7 input:focus,
.the-content .wpcf7 textarea:focus {
  box-shadow: none;
  border-color: var(--wp--preset--color--orange);
}
.the-content .wpcf7 input[type="submit"] {
  padding: 8px 28px;
  text-transform: uppercase;
  border: none;
  background-color: var(--wp--preset--color--orange);
  transition: all 0.2s ease-in-out;
  color: white;
  font-family: var(--wp--preset--font-family--century-gothic);
  font-size: var(--wp--preset--font-size--regular);
}
.the-content .wpcf7 input[type="submit"]:hover {
  background-color: var(--wp--preset--color--yellow);
  transition: all 0.2s ease-in-out;
}
.the-content .wpcf7 form .wpcf7-response-output {
  margin: 0;
  border-color: var(--wp--preset--color--orange);
}
/* study schema progress display */
.studySchemaProgress {
  min-width: 640px !important;
  overflow-x: auto;
  position: relative;
}
.studySchemaProgress h3 {
  font-weight: bolder;
  font-family: var(--wp--preset--font-family--century-gothic);
  margin: 8px 0;
}
.studySchemaProgress h3 a {
  text-decoration: underline;
}
.studySchemaProgress h3 a span {
  text-decoration: none;
}
.studySchemaProgress span {
  margin-left: 4px;
  position: relative;
  margin-top: 2px;
}
.studySchemaProgress .headerBar {
  display: flex;
  flex-flow: row nowrap;
  background-color: #8B8B8B;
  color: white;
  padding: 5px 0;
}
.studySchemaProgress .headerBar div {
  text-align: center;
  font-size: clamp(10px, 1vw, 16px);
  white-space: nowrap;
}
.studySchemaProgress .headerBar div:nth-of-type(1) {
  flex-basis: 50%;
  text-align: right;
  padding-right: 16px;
}
.studySchemaProgress .headerBar div:nth-of-type(2) {
  flex-basis: 10%;
}
.studySchemaProgress .headerBar div:nth-of-type(3) {
  flex-basis: 10%;
}
.studySchemaProgress .headerBar div:nth-of-type(4) {
  flex-basis: 10%;
}
.studySchemaProgress .headerBar div:nth-of-type(5) {
  flex-basis: 20%;
}
.studySchemaProgress .headerBar.stageVisual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  z-index: -1;
}
.studySchemaProgress .headerBar.stageVisual div {
  border-right: 1px solid #E4E4E4;
}
.studySchemaProgress .headerBar.stageVisual div:last-child {
  border-right: none;
}
.studySchemaProgress .headerBar span {
  margin: 0;
  padding: 0;
}
.studySchemaProgress .rowWrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}
.studySchemaProgress .rowWrapper .progressBar {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  align-items: center;
}
.studySchemaProgress .rowWrapper .progressBar .barSections {
  display: flex;
  flex-flow: row nowrap;
  z-index: 1;
  flex-shrink: 0;
  margin: 0;
  padding: 16px 4px;
}
.studySchemaProgress .rowWrapper .progressBar .barBG {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  z-index: 0;
  animation: expandWidth 1s ease-out forwards;
}
.studySchemaProgress .rowWrapper .progressBar li {
  border-right: 1px solid white;
  color: white;
  display: block;
  margin: 0;
  padding: 0 10px;
  line-height: 100%;
  font-size: clamp(12px, 1.5vw, 16px);
}
.studySchemaProgress .rowWrapper .progressBar li:last-child {
  border-right: none;
}
.studySchemaProgress .rowWrapper .progressBar .barTitle {
  font-weight: bolder;
  text-align: right;
  margin: 0;
  width: 100%;
  padding-right: 16px;
  font-size: clamp(12px, 2vw, 18px);
  white-space: nowrap;
}
.studySchemaProgress .rowWrapper .progressBar .barTitle a {
  color: white;
  display: block;
  text-decoration: underline;
}
.studySchemaProgress .rowWrapper .progressBar .barTitle a span {
  text-decoration: none;
}
.studySchemaProgress .rowWrapper sup {
  font-size: 0.6rem;
}
.studySchemaProgress .rowWrapper .suffix {
  color: #8B8B8B;
  padding: 0 16px;
  flex-grow: 1;
  text-align: right;
  background-color: #E4E4E4;
  font-weight: bolder;
  align-content: center;
  font-size: clamp(10px, 2vw, 16px);
}
@media (max-width: 1140px) {
  :root {
    --wp--preset--font-size--huge: 2.4rem;
    --wp--preset--font-size--extra-large: 2.1rem;
    --wp--preset--font-size--header: 1.6rem;
    --wp--preset--font-size--large: 1.2rem;
  }
  #top-menu a {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 922px) {
  #header h1 {
    font-size: 32px !important;
  }
  /* study schema progress display */
  .studySchemaProgress h3 {
    text-align: left;
  }
  .studySchemaProgress .rowWrapper .progressBar {
    flex-flow: column;
    align-items: flex-start;
  }
  .studySchemaProgress .rowWrapper .progressBar .barSections {
    padding: 12px 2px 0 2px;
  }
  .studySchemaProgress .rowWrapper .progressBar .barSections li {
    padding-left: 4px;
    padding-right: 4px;
    border-right: none;
    margin-bottom: 8px;
    line-height: 120%;
  }
  .studySchemaProgress .rowWrapper .progressBar .barSections li:last-child {
    margin-bottom: 0;
  }
  .studySchemaProgress .rowWrapper .progressBar .barTitle a {
    text-align: left;
    padding: 8px 4px 8px 8px;
  }
  .studySchemaProgress .rowWrapper .progressBar .barTitle a i {
    margin-top: 0%;
  }
  .studySchemaProgress .rowWrapper sup {
    top: -0.6em;
  }
}
@media (max-width: 590px) {
  :root {
    --wp--preset--font-size--huge: 2rem;
    --wp--preset--font-size--extra-large: 1.4rem;
    --wp--preset--font-size--header: 1.3rem;
    --wp--preset--font-size--large: 1.2rem;
  }
  #header {
    padding-top: 15px;
    border-bottom: 2px solid var(--wp--preset--color--orange);
  }
  #header h1 {
    text-align: center;
    margin: 15px 0;
    font-size: 20px !important;
  }
  #header .headerLogo {
    flex-flow: column-reverse;
    justify-content: center;
    padding-bottom: 15px;
  }
  #header .logoImages {
    justify-content: center;
  }
  #header .logoImages .logoDots,
  #header .logoImages .iteosLogo {
    width: auto;
  }
  #header .logoImages .logoDots {
    height: 65px;
  }
  #header .logoImages .iteosLogo {
    height: 35px;
  }
  #top-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    z-index: 15;
    transform: translateX(-100%);
    transition: all 0.2s ease-in-out;
    background-color: #FB9600;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  body.menu-open #top-menu {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.2s ease-in-out;
  }
  #top-menu .menu {
    flex-flow: column nowrap;
  }
  #top-menu .menu li {
    border-right: none;
    border-left: none;
  }
  #top-menu .menu li a {
    text-align: center;
    font-size: 24px;
  }
  #top-menu .menu li ul {
    border-top: none;
    background-color: #FFC200;
  }
  #top-menu .menu li ul a:hover {
    background-color: #FB9600;
    text-decoration: underline;
  }
  #top-menu .menu li:hover ul {
    position: relative;
    top: auto;
    left: auto;
  }
  .the-content p:nth-of-type(last) {
    margin-bottom: 0 !important;
  }
  .studySchemaProgress h3 {
    text-align: left;
  }
  .studySchemaProgress .rowWrapper .progressBar .barSections {
    flex-flow: column nowrap;
  }
  .studySchemaProgress .headerBar span {
    display: none;
  }
}
@media (orientation: portrait) {
  .portraitFadeBG::before {
    opacity: 0.4 !important;
  }
}
