/* animations */
@keyframes panRight {
  0% {
    transform: translate(0%);
    opacity: 0;
  }
  1% {
    transform: translate(0%);
    opacity: 1;
  }
  99% {
    transform: translate(-10%);
    opacity: 1;
  }
  100% {
    transform: translate(-10%);
    opacity: 0;
  }
}
@keyframes panVertically {
  0% {
    transform: translate(0%, 0%);
  }
  25% {
    transform: translate(0%, -10%);
  }
  75% {
    transform: translate(0%, 10%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes panScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* standards */
ul {
  padding-inline-start: 18px;
}

a {
  color: inherit;
}

[data-text] {
  max-width: 100%;
}

/* icons */
.icon {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.icon svg {
  position: relative;
  width: 33%;
  height: 33%;
}

/* grid */
.grid,
.pageGrid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  background-color: white;
  /* Modern repeat syntax */
  /* grid-template-columns: repeat(16, 1fr); */
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  /* Modern repeat syntax */
  /* grid-template-rows: repeat(8, 1fr); */
  /* grid-template-rows: unquote("repeat(8, 1fr)"); */
  -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  /* More IE-specific rules in ie_grid.css */
}

.grid {
  grid-template-areas: ". veggieBurger shareCart . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . ." ". . . . . . . . . . . . . . . .";
}
.grid.view-show .veggieBurger,
.grid.view-show .shareCart {
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.grid .veggieBurger {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  display: none;
  position: relative;
  grid-area: veggieBurger;
  z-index: 99999;
  -webkit-transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
  -webkit-transition-delay: 1.7s;
  -moz-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.grid .veggieBurger .icon svg rect {
  fill: #231f20 !important;
}
.grid .shareCart {
  -ms-grid-row: 1;
  -ms-grid-column: 3 !important;
  position: relative;
  grid-area: shareCart;
  z-index: 9999;
  -webkit-transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
  -webkit-transition-delay: 1.7s;
  -moz-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.grid .shareCart .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.bodyPortrait .grid .shareCart {
  position: absolute !important;
  left: 12.5%;
  top: 0;
  width: 6.25%;
  height: 6.25%;
  grid-area: none !important;
}
body.bodyPortrait .grid .shareCart .icon svg {
  width: 43%;
  height: 43%;
}
body.kaon .grid .shareCart {
  display: none;
}
.grid .shareCart x-share-cart-badge {
  top: 50%;
  left: 27%;
  width: 0.24em;
  height: 0.24em;
  background-color: #408bfc;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.grid .shareCart x-share-cart-badge .share_cart_badge_num {
  color: white;
  font-family: AppFontMedium;
}

/* share cart background*/
.shareCartBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999;
  -webkit-transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
  opacity: 0;
  pointer-events: none;
}
.shareCartBackground.show {
  opacity: 1;
  pointer-events: auto;
}

/* share cart */
x-share-cart {
  position: fixed;
  left: 0em;
  bottom: 0em;
  width: 4.8em;
  z-index: 99999;
}
body.kaon x-share-cart {
  display: none;
}
x-share-cart .share_cart_container {
  left: 0em;
  bottom: -100vh;
  height: 50vh;
  width: 25vw;
}
x-share-cart .share_cart_container .share_cart {
  background-color: #054ada;
}
x-share-cart .share_cart_container .share_cart .top_bar {
  height: 6vh;
  padding-left: 0.15em;
}
x-share-cart .share_cart_container .share_cart .top_bar .share_cart_title > .i18n {
  font-size: 0.2em;
}
x-share-cart .share_cart_container .share_cart .inner_content {
  padding: 0em !important;
  height: 44vh;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container {
  max-height: 35vh;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry {
  height: 6.4vh;
  padding: 0em !important;
  margin: 0em !important;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry[data-entry-id=whole_app] .share_entry_text {
  font-family: AppFontBlack;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .separator {
  display: none !important;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_left_side {
  padding: 0 0.1em;
  background-color: transparent;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_left_side .share_entry_text {
  font-size: 0.18em;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area {
  background-color: transparent;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area.remove .share_entry_inner_icon_area .share_entry_inner_icon {
  width: 0.4em;
  height: 0.4em;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area .share_entry_inner_icon_area {
  width: 0.36em;
  height: 0.36em;
  background-color: #054ada;
  margin-bottom: 0em;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area .share_entry_inner_icon_area svg polygon {
  fill: white !important;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area .share_entry_inner_icon_area svg rect {
  fill: none !important;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area .share_entry_icon_area_text {
  text-transform: none;
}
x-share-cart .share_cart_container .share_cart .inner_content .inner_scrollable .x-scrollable__scroll-container .entry_list .share_list_entry .share_entry_icon_area .share_entry_icon_area_text > .i18n {
  font-size: 0.14em;
}
x-share-cart .share_cart_container .share_cart .inner_content .share_all_button {
  height: 6vh;
}
x-share-cart .share_cart_container .share_cart .inner_content .share_all_button .share_text {
  color: #054ada;
}
x-share-cart .share_cart_container .share_cart .inner_content .share_all_button .share_text > .i18n {
  font-size: 0.2em;
}
x-share-cart .share_cart_container .share_cart .inner_content .share_all_button .share_button_icon svg path,
x-share-cart .share_cart_container .share_cart .inner_content .share_all_button .share_button_icon svg polygon {
  fill: #054ada !important;
}

/* share badge */
x-share-item-badge {
  background-color: #408bfc;
}
x-share-item-badge svg {
  position: absolute;
  top: 1px;
  left: -1px;
  width: 100%;
  height: 100%;
  padding: 0.05em;
}
x-share-item-badge svg path {
  fill: white !important;
  stroke: white !important;
  stroke-width: 4px;
}

/* views */
/* page */
.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  /* types of pages */
}
.page .logo {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #044ada;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin: 0.2em;
}
.page .logo .logoFont {
  position: relative;
  width: 75%;
  height: 75%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page.homePage {
  /* animations */
}
.page.homePage.show .pageGrid .logo {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
}
.page.homePage.show .pageGrid .pathways .pathway {
  border-top: 4px solid #f3f3f3;
  -webkit-transform: translate(0%) !important;
  -moz-transform: translate(0%) !important;
  transform: translate(0%) !important;
}
.page.homePage.show .pageGrid .pathways .pathway.pathway5 {
  border-top: none;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.page.homePage.show .pageGrid .pathways .pathway.pathway2 {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.page.homePage.show .pageGrid .pathways .pathway.pathway3 {
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.page.homePage.show .pageGrid .pathways .pathway.pathway4 {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.page.homePage.show .pageGrid .pathways .pathway.pathway1 {
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  transition-delay: 1s;
}
.page.homePage.show .pageGrid .pathways .pathway.pathway6 {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.page.homePage .pageGrid {
  grid-template-areas: "logo logo logo logo . . . . . . . . pathways pathways pathways pathways" "logo logo logo logo . . . . . . . . pathways pathways pathways pathways" "logo logo logo logo . . . . . . . . pathways pathways pathways pathways" "logo logo logo logo . . . . . . . . pathways pathways pathways pathways" ".    .    .    .    . . . . . . . . pathways pathways pathways pathways" ".    .    .    .    . . . . . . . . pathways pathways pathways pathways" ".    .    .    .    . . . . . . . . pathways pathways pathways pathways" ".    .    .    .    . . . . . . . . pathways pathways pathways pathways";
}
body.bodyPortrait .page.homePage .pageGrid {
  grid-template-areas: none;
  grid-template-rows: none;
  grid-template-columns: none;
  display: block;
}
.page.homePage .pageGrid .background {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/home_bg.jpg);
  grid-area: 1/1/17/17;
  -ms-grid-row: 1;
  -ms-grid-row-span: 16;
  -ms-grid-column: 1;
  -ms-grid-column-span: 16;
}
.page.homePage .pageGrid .logo {
  position: relative;
  grid-area: logo;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(-110%);
  -moz-transform: translate(-110%);
  transform: translate(-110%);
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
}
.page.homePage .pageGrid .pathways {
  position: relative;
  grid-area: pathways;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "pathway5" "pathway2" "pathway3" "pathway4" "pathway1" "pathway6";
  -ms-grid-row: 1;
  -ms-grid-row-span: 8;
  -ms-grid-column: 13;
  -ms-grid-column-span: 4;
}
body.bodyPortrait .page.homePage .pageGrid .pathways {
  position: absolute !important;
  left: 0;
  top: 75%;
  width: 100%;
  height: 25%;
  grid-area: none !important;
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  grid-template-areas: none !important;
}
.page.homePage .pageGrid .pathways .pathway {
  position: relative;
  background-color: white;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 0.4em;
  box-sizing: border-box;
  -webkit-transition: transform 0.5s ease 1s;
  -moz-transition: transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s;
  -webkit-transform: translate(110%);
  -moz-transform: translate(110%);
  transform: translate(110%);
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway {
  position: absolute;
  width: 50%;
  height: 25%;
  grid-area: none;
  -webkit-transform: translate(210%);
  -moz-transform: translate(210%);
  transform: translate(210%);
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway.pathway5 {
  left: 0;
  top: 0;
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway.pathway2 {
  left: 0;
  top: 25%;
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway.pathway3 {
  left: 0;
  top: 50%;
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway.pathway4 {
  left: 50%;
  top: 0;
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway.pathway1 {
  left: 50%;
  top: 25%;
}
body.bodyPortrait .page.homePage .pageGrid .pathways .pathway.pathway6 {
  left: 50%;
  top: 50%;
}
.page.homePage .pageGrid .pathways .pathway.pathway5 {
  grid-area: pathway5;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.homePage .pageGrid .pathways .pathway.pathway2 {
  grid-area: pathway2;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.page.homePage .pageGrid .pathways .pathway.pathway3 {
  grid-area: pathway3;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.page.homePage .pageGrid .pathways .pathway.pathway4 {
  grid-area: pathway4;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.page.homePage .pageGrid .pathways .pathway.pathway1 {
  grid-area: pathway1;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.page.homePage .pageGrid .pathways .pathway.pathway6 {
  grid-area: pathway6;
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.page.homePage .pageGrid .pathways .pathway .pathwayTitle > .i18n {
  font-size: 0.2em;
  font-family: AppFontMedium;
}
.page.homePage .pageGrid .pathways .pathway .pathwaySubtitle > .i18n {
  font-size: 0.2em;
}
.page.homePage .pageGrid .pathways .pathway .pathwayButton {
  position: absolute;
  width: 1em;
  height: 1em;
  bottom: 0;
  right: 0;
}
.page.homePage .pageGrid .pathways .pathway .pathwayButton .icon svg {
  fill: #408bfc !important;
}
.page.pathwayPage {
  z-index: 30;
  /* animation */
}
.page.pathwayPage.show .pageGrid .stockImage {
  -webkit-transform: translate(0%) !important;
  -moz-transform: translate(0%) !important;
  transform: translate(0%) !important;
}
.page.pathwayPage.show .pageGrid .stockImage.simg1 {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.page.pathwayPage.show .pageGrid .stockImage.simg2 {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.page.pathwayPage.show .pageGrid .stockImage.simg3 {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.page.pathwayPage.show .pageGrid .pathwayHeader {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.page.pathwayPage.show .pageGrid .pathwayInfoContainer .pathwayInfo {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  transition-delay: 1s;
}
.page.pathwayPage.show .pageGrid .pathwayMenuContainer .pathwayMenu {
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.page.pathwayPage.show .pageGrid .subpageContainer .subpage {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
  -webkit-transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  transition-delay: 1.2s;
  background-color: white;
  /*note: hacky, somewhat; leave?*/
}
.page.pathwayPage.show .pageGrid .quote {
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.page.pathwayPage.show .pageGrid .close {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 1.5s;
  -moz-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.page.pathwayPage.show .pageGrid .logo {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}
.page.pathwayPage .pageGrid {
  grid-template-areas: "logo   . . . simg2 simg2 simg2 simg2 quote quote quote quote quote quote quote close" ". . . . simg2 simg2 simg2 simg2 quote quote quote quote quote quote quote ." "pathwayHeader pathwayHeader pathwayHeader pathwayHeader pathwayInfoContainer pathwayInfoContainer pathwayInfoContainer pathwayInfoContainer simg3 simg3 simg3 simg3 simg3 simg3 simg3 simg3" ". . . . pathwayInfoContainer pathwayInfoContainer pathwayInfoContainer pathwayInfoContainer simg3 simg3 simg3 simg3 simg3 simg3 simg3 simg3" "simg1  simg1  simg1  simg1  pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage" "simg1  simg1  simg1  simg1  pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage" "simg1  simg1  simg1  simg1  pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage" "simg1  simg1  simg1  simg1  pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage";
}
.page.pathwayPage .pageGrid .logo {
  display: none;
  position: relative;
  grid-area: logo;
  margin: 0.1em;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(0%, -110%);
  -moz-transform: translate(0%, -110%);
  transform: translate(0%, -110%);
}
.page.pathwayPage .pageGrid .close {
  display: none !important;
  position: relative;
  grid-area: close;
  -webkit-transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
  -ms-grid-row: 1;
  -ms-grid-column: 16;
}
.page.pathwayPage .pageGrid .close .icon svg polygon {
  fill: #231f20 !important;
}
.page.pathwayPage .pageGrid .quote {
  position: relative;
  grid-area: quote;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(0%, -100%);
  -moz-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 9;
  -ms-grid-column-span: 7;
}
body.bodyPortrait .page.pathwayPage .pageGrid .quote {
  position: absolute;
  left: 56.25%;
  top: 0;
  width: 37.5%;
  height: 25%;
  grid-area: none;
}
body.bodyPortrait .page.pathwayPage .pageGrid .quote .quoteBody {
  width: 100%;
}
body.bodyPortrait .page.pathwayPage .pageGrid .quote .quoteBody .i18n {
  font-size: 0.23em;
}
body.bodyPortrait .page.pathwayPage .pageGrid .quote .quoteAuthor {
  margin-left: auto;
}
body.bodyPortrait .page.pathwayPage .pageGrid .quote .quoteAuthor .i18n {
  font-size: 0.19em;
}
.page.pathwayPage .pageGrid .quote .quoteBody {
  position: relative;
  width: 66%;
}
.page.pathwayPage .pageGrid .quote .quoteBody > .i18n {
  font-size: 0.2em;
  font-family: AppFontMedium;
}
.page.pathwayPage .pageGrid .quote .quoteAuthor {
  position: relative;
  margin-left: 2em;
  margin-top: 0.1em;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.page.pathwayPage .pageGrid .quote .quoteAuthor > .i18n {
  font-size: 0.16em;
}
.page.pathwayPage .pageGrid .stockImage {
  position: relative;
  overflow: hidden;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
  -moz-transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.page.pathwayPage .pageGrid .stockImage.simg1 {
  grid-area: simg1;
  -webkit-transform: translate(-100%);
  -moz-transform: translate(-100%);
  transform: translate(-100%);
  -ms-grid-row: 5;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
}
body.vrack .page.pathwayPage .pageGrid .stockImage.simg1 {
  grid-area: none !important;
  position: absolute !important;
  top: 50%;
  left: 0%;
  width: 25%;
  height: 25%;
}
.page.pathwayPage .pageGrid .stockImage.simg2 {
  grid-area: simg2;
  -webkit-transform: translate(0%, -100%);
  -moz-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
}
.page.pathwayPage .pageGrid .stockImage.simg3 {
  grid-area: simg3;
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  transform: translate(100%, 0%);
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 9;
  -ms-grid-column-span: 8;
}
.page.pathwayPage .pageGrid .stockImage .simg {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page.pathwayPage .pageGrid .pathwayHeader {
  position: relative;
  background-color: #f3f3f3;
  grid-area: pathwayHeader;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 0.26em;
  color: #054ada;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(-100%);
  -moz-transform: translate(-100%);
  transform: translate(-100%);
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
}
body.vrack .page.pathwayPage .pageGrid .pathwayHeader {
  position: absolute !important;
  grid-area: none !important;
  left: 0;
  top: 12.5%;
  width: 25%;
  height: 12.5%;
  box-sizing: border-box;
}
.page.pathwayPage .pageGrid .pathwayHeader .pathwayHeaderTitle {
  position: relative;
}
.page.pathwayPage .pageGrid .pathwayHeader .pathwayHeaderTitle > .i18n {
  font-size: 0.2em;
  font-family: AppFontBlack;
}
.page.pathwayPage .pageGrid .pathwayHeader .pathwayHeaderSubtitle {
  position: relative;
  margin-right: 0.6em;
}
.page.pathwayPage .pageGrid .pathwayHeader .pathwayHeaderSubtitle > .i18n {
  font-size: 0.2em;
}
.page.pathwayPage .pageGrid .pathwayInfoContainer {
  position: relative;
  grid-area: pathwayInfoContainer;
  overflow: hidden;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
}
.page.pathwayPage .pageGrid .pathwayInfoContainer body.vrack .pathwayInfoContainer {
  position: absolute !important;
  grid-area: none !important;
  left: 0;
  top: 25%;
  width: 50%;
  height: 25%;
}
.page.pathwayPage .pageGrid .pathwayInfoContainer .pathwayInfo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  background-color: #f3f3f3;
  padding: 0.26em;
  box-sizing: border-box;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(-105%);
  -moz-transform: translate(-105%);
  transform: translate(-105%);
}
.page.pathwayPage .pageGrid .pathwayInfoContainer .pathwayInfo .pathwayInfoTitle {
  margin-bottom: 0.2em;
}
.page.pathwayPage .pageGrid .pathwayInfoContainer .pathwayInfo .pathwayInfoTitle > .i18n {
  font-size: 0.2em;
  font-family: AppFontBold;
}
.page.pathwayPage .pageGrid .pathwayInfoContainer .pathwayInfo .pathwayInfoBody > .i18n {
  font-size: 0.18em;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer {
  position: relative;
  grid-area: pathwayMenu;
  overflow: hidden;
  -ms-grid-row: 5;
  -ms-grid-row-span: 4;
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: calc(100% - 4px);
  border-right: 4px solid #f3f3f3;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(0%, -105%);
  -moz-transform: translate(0%, -105%);
  transform: translate(0%, -105%);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr;
  grid-template-columns: 4fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "pathwayMenuItem1" "pathwayMenuItem2" "pathwayMenuItem3" "pathwayMenuItem4" "pathwayMenuItem5" "pathwayMenuItem6" "pathwayMenuItem7" "pathwayMenuItem8";
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem {
  position: relative;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 0em 0.26em;
  border-top: 2px solid #f3f3f3;
  border-bottom: 2px solid #f3f3f3;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.view-show {
  background-color: #408bfc;
  color: white;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem:first-child {
  border-top: 1px solid transparent;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem:last-child {
  border-bottom: 1px solid transparent;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem1 {
  grid-area: pathwayMenuItem1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem2 {
  grid-area: pathwayMenuItem2;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem3 {
  grid-area: pathwayMenuItem3;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem4 {
  grid-area: pathwayMenuItem4;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem5 {
  grid-area: pathwayMenuItem5;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem6 {
  grid-area: pathwayMenuItem6;
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem7 {
  grid-area: pathwayMenuItem7;
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem8 {
  grid-area: pathwayMenuItem8;
  -ms-grid-row: 8;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .pathwayMenuContainer .pathwayMenu .pathwayMenuItem > .i18n {
  font-size: 0.2em;
  width: 100%;
}
.page.pathwayPage .pageGrid .subpageContainer {
  position: relative;
  grid-area: subpage;
  overflow: hidden;
  pointer-events: none;
  -ms-grid-row: 5;
  -ms-grid-row-span: 4;
  -ms-grid-column: 9;
  -ms-grid-column-span: 8;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate(-105%);
  -moz-transform: translate(-105%);
  transform: translate(-105%);
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid {
  display: -ms-grid;
  display: grid;
  height: 100%;
  -ms-grid-columns: 7fr 1fr;
  grid-template-columns: 7fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-areas: "subpageInfo tabs" "subpageInfo tabs" "subpageInfo tabs" "subpageInfo tabs";
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo {
  position: relative;
  grid-area: subpageInfo;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0em;
  left: 0em;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.seq-before {
  -webkit-transform: translate(0%, -100%);
  -moz-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.seq-after {
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentOverview {
  padding: 0.1em 0.3em;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7fr;
  grid-template-columns: 7fr;
  -ms-grid-rows: 1fr 7fr;
  grid-template-rows: 1fr 7fr;
  grid-template-areas: "overviewTitle" "overviewBody" "overviewBody" "overviewBody" "overviewBody" "overviewBody" "overviewBody" "overviewBody";
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentOverview .overviewTitle {
  position: relative;
  grid-area: overviewTitle;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentOverview .overviewTitle > .i18n {
  font-size: 0.2em;
  font-family: AppFontBlack;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentOverview .overviewBody {
  position: relative;
  grid-area: overviewBody;
  -ms-grid-row: 2;
  -ms-grid-row-span: 7;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentOverview .overviewBody x-scrollable .overviewBodyContent > .i18n {
  font-size: 0.185em;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7fr;
  grid-template-columns: 7fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "collateralTitle" "collateralItems" "collateralItems" "collateralItems" "collateralItems" "collateralItems" "collateralItems" "collateralItems";
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralTitle {
  position: relative;
  grid-area: collateralTitle;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 0em 0.38em;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralTitle > .i18n {
  font-size: 0.2em;
  font-family: AppFontBold;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems {
  position: relative;
  grid-area: collateralItems;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "collateralItem1" "collateralItem2" "collateralItem3" "collateralItem4" "collateralItem5" "collateralItem6" "collateralItem7";
  -ms-grid-row: 2;
  -ms-grid-row-span: 7;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "collateralIcon collateralLabel collateralLabel collateralLabel collateralLabel collateralLabel collateralShare";
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem1 {
  grid-area: collateralItem1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem2 {
  grid-area: collateralItem2;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem3 {
  grid-area: collateralItem3;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem4 {
  grid-area: collateralItem4;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem5 {
  grid-area: collateralItem5;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem6 {
  grid-area: collateralItem6;
  -ms-grid-row: 6;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem.collateralItem7 {
  grid-area: collateralItem7;
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralIcon {
  position: relative;
  grid-area: collateralIcon;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralIcon .icon svg {
  width: 0.4em;
  height: 0.4em;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralLabel {
  position: relative;
  grid-area: collateralLabel;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 5;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralLabel > .text {
  font-size: 0.18em;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralShare {
  position: relative;
  grid-area: collateralShare;
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralShare svg {
  width: 0.28em;
  height: 0.28em;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralShare svg circle,
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralShare svg line {
  stroke: #231f20 !important;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralShare x-share-item-badge {
  top: 50%;
  left: 30%;
  width: 0.24em;
  height: 0.24em;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .subpageInfo .subpageInfoContent.subpageInfoContentCollateral .collateralItems .collateralItem .collateralShare x-share-item-badge svg {
  top: -1px;
  padding: 0.07em;
  left: -2px;
  padding: 0.07em;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs {
  position: relative;
  grid-area: tabs;
  border-left: 4px solid #f3f3f3;
  box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-areas: "overviewTab" "shareTab" "." ".";
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .collateralTab {
  display: none;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs.has_collateral {
  grid-template-areas: "overviewTab" "collateralTab" "shareTab" ".";
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs.has_collateral .collateralTab {
  display: block;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs.has_collateral .shareTab {
  -ms-grid-row: 3 !important;
  -ms-grid-column: 1 !important;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab {
  position: relative;
  box-sizing: border-box;
  border-top: 2px solid #f3f3f3;
  border-bottom: 2px solid #f3f3f3;
  border-left: 0px;
  border-right: 0px;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab.view-show {
  background-color: #dcdcdc;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab:first-child {
  border-top: 2px solid transparent;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab:last-child {
  border-bottom: 4px solid #f3f3f3;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab.overviewTab {
  grid-area: overviewTab;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab.collateralTab {
  grid-area: collateralTab;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab.shareTab {
  grid-area: shareTab;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
body.kaon .page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab.shareTab {
  display: none;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab .icon svg {
  width: 37%;
  height: 37%;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab .icon svg path:not(.cls-1),
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab .icon svg rect:not(.cls-1) {
  fill: #231f20 !important;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab .icon svg circle,
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab .icon svg line {
  stroke: #231f20 !important;
}
.page.pathwayPage .pageGrid .subpageContainer .subpage .subpageGrid .tabs .tab x-share-item-badge {
  top: 50%;
  left: 30%;
  width: 0.24em;
  height: 0.24em;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.page.pathwayPage[data-view=pathway5] .stockImage[data-view=menuItem2].simg2 .simg {
  background-image: url(../img/section_images/whyz_sec2_img1.jpg);
}
.page.pathwayPage[data-view=pathway5] .stockImage[data-view=menuItem3].simg2 .simg {
  background-image: url(../img/section_images/whyz_sec3_img1.jpg);
}
.page.pathwayPage[data-view=pathway5] .stockImage[data-view=menuItem4].simg2 .simg {
  background-image: url(../img/section_images/whyz_sec4_img1.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem1].simg1 .simg {
  background-image: url(../img/section_images/industries_sec1_img1.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem1].simg2 .simg {
  background-image: url(../img/section_images/industries_sec1_img2.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem1].simg3 .simg {
  background-image: url(../img/section_images/industries_sec1_img3.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem2].simg1 .simg {
  background-image: url(../img/section_images/industries_sec2_img1.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem2].simg2 .simg {
  background-image: url(../img/section_images/industries_sec2_img2.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem2].simg3 .simg {
  background-image: url(../img/section_images/industries_sec2_img3.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem3].simg1 .simg {
  background-image: url(../img/section_images/industries_sec3_img1.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem3].simg2 .simg {
  background-image: url(../img/section_images/industries_sec3_img2.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem3].simg3 .simg {
  background-image: url(../img/section_images/industries_sec3_img3.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem4].simg1 .simg {
  background-image: url(../img/section_images/industries_sec4_img1.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem4].simg2 .simg {
  background-image: url(../img/section_images/industries_sec4_img2.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem4].simg3 .simg {
  background-image: url(../img/section_images/industries_sec4_img3.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem5].simg1 .simg {
  background-image: url(../img/section_images/industries_sec5_img1.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem5].simg2 .simg {
  background-image: url(../img/section_images/industries_sec5_img2.jpg);
}
.page.pathwayPage[data-view=pathway2] .stockImage[data-view=menuItem5].simg3 .simg {
  background-image: url(../img/section_images/industries_sec5_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem1].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec1_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem1].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec1_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem1].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec1_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem2].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec2_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem2].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec2_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem2].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec2_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem3].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec3_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem3].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec3_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem3].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec3_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem4].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec4_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem4].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec4_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem4].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec4_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem5].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec5_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem5].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec5_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem5].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec5_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem6].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec6_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem6].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec6_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem6].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec6_img3.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem7].simg1 .simg {
  background-image: url(../img/section_images/ibmz_sec7_img1.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem7].simg2 .simg {
  background-image: url(../img/section_images/ibmz_sec7_img2.jpg);
}
.page.pathwayPage[data-view=pathway3] .stockImage[data-view=menuItem7].simg3 .simg {
  background-image: url(../img/section_images/ibmz_sec7_img3.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem1].simg1 .simg {
  background-image: url(../img/section_images/data_sec1_img1.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem1].simg2 .simg {
  background-image: url(../img/section_images/data_sec1_img2.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem1].simg3 .simg {
  background-image: url(../img/section_images/data_sec1_img3.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem2].simg1 .simg {
  background-image: url(../img/section_images/data_sec2_img1.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem2].simg2 .simg {
  background-image: url(../img/section_images/data_sec2_img2.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem2].simg3 .simg {
  background-image: url(../img/section_images/data_sec2_img3.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem3].simg1 .simg {
  background-image: url(../img/section_images/data_sec3_img1.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem3].simg2 .simg {
  background-image: url(../img/section_images/data_sec3_img2.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem3].simg3 .simg {
  background-image: url(../img/section_images/data_sec3_img3.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem4].simg1 .simg {
  background-image: url(../img/section_images/data_sec4_img1.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem4].simg2 .simg {
  background-image: url(../img/section_images/data_sec4_img2.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem4].simg3 .simg {
  background-image: url(../img/section_images/data_sec4_img3.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem5].simg1 .simg {
  background-image: url(../img/section_images/data_sec5_img1.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem5].simg2 .simg {
  background-image: url(../img/section_images/data_sec5_img2.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem5].simg3 .simg {
  background-image: url(../img/section_images/data_sec5_img3.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem6].simg1 .simg {
  background-image: url(../img/section_images/data_sec6_img1.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem6].simg2 .simg {
  background-image: url(../img/section_images/data_sec6_img2.jpg);
}
.page.pathwayPage[data-view=pathway4] .stockImage[data-view=menuItem6].simg3 .simg {
  background-image: url(../img/section_images/data_sec6_img3.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem1].simg1 .simg {
  background-image: url(../img/section_images/deliver_sec1_img1.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem1].simg2 .simg {
  background-image: url(../img/section_images/deliver_sec1_img2.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem1].simg3 .simg {
  background-image: url(../img/section_images/deliver_sec1_img3.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem2].simg1 .simg {
  background-image: url(../img/section_images/deliver_sec2_img1.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem2].simg2 .simg {
  background-image: url(../img/section_images/deliver_sec2_img2.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem2].simg3 .simg {
  background-image: url(../img/section_images/deliver_sec2_img3.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem3].simg1 .simg {
  background-image: url(../img/section_images/deliver_sec3_img1.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem3].simg2 .simg {
  background-image: url(../img/section_images/deliver_sec3_img2.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem3].simg3 .simg {
  background-image: url(../img/section_images/deliver_sec3_img3.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem4].simg1 .simg {
  background-image: url(../img/section_images/deliver_sec4_img1.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem4].simg2 .simg {
  background-image: url(../img/section_images/deliver_sec4_img2.jpg);
}
.page.pathwayPage[data-view=pathway1] .stockImage[data-view=menuItem4].simg3 .simg {
  background-image: url(../img/section_images/deliver_sec4_img3.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem1].simg1 .simg {
  background-image: url(../img/section_images/develop_sec1_img1.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem1].simg2 .simg {
  background-image: url(../img/section_images/develop_sec1_img2.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem1].simg3 .simg {
  background-image: url(../img/section_images/develop_sec1_img3.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem2].simg1 .simg {
  background-image: url(../img/section_images/develop_sec2_img1.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem2].simg2 .simg {
  background-image: url(../img/section_images/develop_sec2_img2.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem2].simg3 .simg {
  background-image: url(../img/section_images/develop_sec2_img3.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem3].simg1 .simg {
  background-image: url(../img/section_images/develop_sec3_img1.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem3].simg2 .simg {
  background-image: url(../img/section_images/develop_sec3_img2.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem3].simg3 .simg {
  background-image: url(../img/section_images/develop_sec3_img3.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem4].simg1 .simg {
  background-image: url(../img/section_images/develop_sec4_img1.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem4].simg2 .simg {
  background-image: url(../img/section_images/develop_sec4_img2.jpg);
}
.page.pathwayPage[data-view=pathway6] .stockImage[data-view=menuItem4].simg3 .simg {
  background-image: url(../img/section_images/develop_sec4_img3.jpg);
}
.page.pathwayPage[data-view=pathway5].show .stockImage.simg1 {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.page.pathwayPage[data-view=pathway5].show .stockImage.simg2 {
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.page.pathwayPage[data-view=pathway5].show .pathwayHeader {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.page.pathwayPage[data-view=pathway5].show .close {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 1.4s;
  -moz-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.page.pathwayPage[data-view=pathway5].show .logo {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
  -webkit-transition-delay: 1.8s;
  -moz-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.page.pathwayPage[data-view=pathway5].show .beauty {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
}
.page.pathwayPage[data-view=pathway5] .pageGrid {
  grid-template-areas: "logo . . . simg2 simg2 simg2 simg2 . . . . . . . close" ". . . . simg2 simg2 simg2 simg2 . . . . . . . ." "pathwayHeader pathwayHeader pathwayHeader pathwayHeader . . . . simg3 simg3 simg3 simg3 . . . ." ". . . . . . . . simg3 simg3 simg3 simg3 . . . ." "pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage . . . ." "pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage . . . ." "pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage . . . ." "pathwayMenu pathwayMenu pathwayMenu pathwayMenu subpage subpage subpage subpage subpage subpage subpage subpage . . . .";
}
.page.pathwayPage[data-view=pathway5] .close {
  margin: 0.1em;
}
.page.pathwayPage[data-view=pathway5] .close .icon {
  width: 1em;
  height: 100%;
  background-color: white;
}
.page.pathwayPage[data-view=pathway5] .beauty {
  position: absolute;
  top: 0em;
  right: 0em;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center -1em;
  background-image: url(../img/z_product.jpg);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
body.bodyPortrait .page.pathwayPage[data-view=pathway5] .beauty {
  background-position: top left;
  background-size: auto 120%;
}
.page.pathwayPage[data-view=pathway5] .beauty:not(.view-show) {
  -webkit-transform: scale(2) translate(25%, 0%);
  -moz-transform: scale(2) translate(25%, 0%);
  transform: scale(2) translate(25%, 0%);
}
.page.pathwayPage[data-view=pathway5] .stockImage {
  position: relative;
  overflow: hidden;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
  -moz-transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.page.pathwayPage[data-view=pathway5] .stockImage.view-show.simg2 {
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.page.pathwayPage[data-view=pathway5] .stockImage.view-show.simg3 {
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.page.pathwayPage[data-view=pathway5] .stockImage.simg2 {
  position: absolute;
  left: 25%;
  top: 0;
  width: 50%;
  height: 50%;
  grid-area: none;
}
.page.pathwayPage[data-view=pathway5] .stockImage.simg2:not(.show)[data-to=menuItem1] {
  transition-delay: 0s;
}
.page.pathwayPage[data-view=pathway5] .stockImage.simg2 .simg {
  width: 100%;
  height: 100%;
}
.page.pathwayPage[data-view=pathway5] .stockImage.simg3 {
  display: none;
  grid-area: simg3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  -ms-grid-column: 9;
  -ms-grid-column-span: 8;
}
.page.pathwayPage[data-view=pathway5] .stockImage.simg3 .simg {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}
.page.pathwayPage[data-view=pathway5] .pathwayMenuContainer {
  -ms-grid-column: 1 !important;
}
.page.pathwayPage[data-view=pathway5] .pathwayMenuContainer .pathwayMenu .pathwayMenuItem.pathwayMenuItem1 {
  border-top: 4px solid #f3f3f3;
}
.page.pathwayPage[data-view=pathway5] .subpageStatsContainer {
  position: relative;
  grid-area: 1/5/9/9;
  top: 0;
  left: 0;
  padding: 1em;
  box-sizing: border-box;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate(0%, -100%);
  -moz-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  -ms-grid-row: 1;
  -ms-grid-row-span: 8;
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
}
.page.pathwayPage[data-view=pathway5] .subpageStatsContainer.view-show {
  -webkit-transform: translate(0%);
  -moz-transform: translate(0%);
  transform: translate(0%);
}
.page.pathwayPage[data-view=pathway5] .subpageStatsContainer .subpageStat > .i18n {
  font-size: 0.2em;
}
.page.pathwayPage[data-view=pathway5] .subpageStatsContainer .subpageStat > .i18n b {
  font-size: 1.9em;
  font-family: AppFontFunky;
}
.page.pathwayPage[data-view=pathway5] .subpageStatsContainer .subpageStat u {
  font-size: 1.2em;
  text-decoration: none;
}
.page.pathwayPage[data-view=pathway5] .subpageContainer {
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  -webkit-transition: transform 0.5s ease 0.5s;
  -moz-transition: transform 0.5s ease 0.5s;
  transition: transform 0.5s ease 0.5s;
  -ms-grid-column: 5 !important;
}
.page.pathwayPage[data-view=pathway5] .subpageContainer.view-show {
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  transform: translate(0%, 100%);
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}
.page.pathwayPage[data-view=pathway5] .subpageContainer .subpage .subpageGrid {
  border-top: 4px solid #f3f3f3;
}
.page.pathwayPage[data-view=pathway5] .subpageContainer .subpage .subpageGrid .tabs {
  border-right: 4px solid #f3f3f3;
}

.entry_page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200000;
  background-color: white;
}
.entry_page .entry_box {
  position: absolute;
  left: calc(50% - 3em);
  top: calc(50% - 2rem);
  width: 6rem;
  height: 4rem;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-animation-name: entry_fade_in_out;
  -moz-animation-name: entry_fade_in_out;
  animation-name: entry_fade_in_out;
  -webkit-animation-duration: 3.5s;
  -moz-animation-duration: 3.5s;
  animation-duration: 3.5s;
  animation-fill-mode: both;
}
.entry_page .entry_box .wait_for_init {
  display: none;
}
@keyframes entry_fade_in_out {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.entry_page .entry_box .entry_text {
  position: absolute;
  left: calc(50% - 2rem);
  top: calc(30% - 1.2rem);
  width: 4rem;
  height: 1rem;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.entry_page .entry_box .entry_text .i18n {
  font-size: 0.6rem;
  color: #13171a;
  text-align: center;
}
.entry_page .entry_box .big_logo {
  position: absolute;
  left: calc(50% - 2.6rem);
  top: calc(70% - 2.1rem);
  width: 5.2rem;
  height: 2.4rem;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.custom_page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.custom_page .custom_video_box {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 50%;
}
body.bodyPortrait .custom_page .custom_video_box {
  right: 50%;
  top: 50%;
}
.custom_page .custom_video_box .custom_video_inner {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
}
.custom_page .custom_video_box .custom_video_inner video.custom_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0.4em;
}
.custom_page .custom_video_box .custom_video_inner .custom_video_bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.75);
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.custom_page .custom_video_box .custom_video_inner .custom_video_bar .custom_video_bar_text .i18n {
  font-size: 0.25rem;
}
.custom_page .custom_video_box .custom_video_inner .custom_video_bar .custom_name {
  margin-left: 0.06rem;
  font-size: 0.25rem;
  font-family: AppFontBold;
}
.custom_page .custom_video_box .custom_video_inner .custom_video_email {
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 100%;
  height: 0.4rem;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 0.25rem;
  font-family: AppFontBold;
  text-align: center;
  z-index: 100;
}
.custom_page .custom_video_box .custom_video_inner .custom_video_play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem;
  top: 0.4em;
  background-image: url(../img/play_outline.png);
}
.custom_page .custom_info_box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
}
.custom_page .custom_info_box .custom_info_inner {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
  box-sizing: border-box;
  padding: 0.17rem;
  background-color: #f3f3f3;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.custom_page .custom_info_box .custom_info_inner .custom_desc {
  position: relative;
  width: 100%;
}
.custom_page .custom_info_box .custom_info_inner .custom_desc .i18n {
  font-size: 0.32rem;
  line-height: 1.2;
  margin-left: 0.8em;
}
.custom_page .custom_info_box .custom_info_inner .custom_path_name {
  position: relative;
  width: 100%;
  margin-top: 0.07rem;
  margin-bottom: 0.07rem;
  font-size: 0.25rem;
  font-family: AppFontBold;
}
.custom_page .custom_info_box .custom_info_inner .custom_path_name.inactive {
  display: none;
}
.custom_page .custom_info_box .custom_info_inner .enter_app_button {
  position: relative;
  width: 100%;
  height: 0.6rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #408bfc;
  flex-shrink: 0;
}
.custom_page .custom_info_box .custom_info_inner .enter_app_button .i18n {
  text-align: center;
  color: white;
  font-size: 0.25rem;
}
.custom_page .custom_info_box .custom_info_inner .contact_your_ibm {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.25rem;
  color: #408bfc;
}
.custom_page .custom_info_box .custom_info_inner .contact_your_ibm .custom_email {
  margin-left: 0.05rem;
}

.image_piece {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 10;
  -webkit-transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
}
body.bodyPortrait .image_piece {
  width: 100%;
  height: 50%;
}
.image_piece.hidden {
  opacity: 0;
  pointer-events: none !important;
}
.image_piece .image_container {
  position: absolute;
  left: 0;
  top: 2%;
  width: 100%;
  height: 85%;
}
.image_piece .image_container.ie_mode {
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image_piece .image_container img {
  height: 79%;
  width: auto;
  left: 15vmax;
  top: 17vh;
  position: absolute;
}
.image_piece .image_container .video_container_2 {
  display: flex;
  align-items: center;
}
.image_piece .image_container .video_container_2:not(.ie_mode) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image_piece .image_container .video_container_2.ie_mode {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image_piece .image_container .video_container_2.ie_mode .part {
  top: -1%;
}
.image_piece .image_container .video_container_2 .part {
  -webkit-transition: left 2s ease;
  -moz-transition: left 2s ease;
  transition: left 2s ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.image_piece .image_container .video_container_2 .part.view-show {
  -webkit-transition-delay: 17s;
  -moz-transition-delay: 17s;
  transition-delay: 17s;
}
.image_piece .image_container .video_container_2 .part.view-show label {
  opacity: 1;
  -webkit-transition-delay: 18s;
  -moz-transition-delay: 18s;
  transition-delay: 18s;
}
.image_piece .image_container .video_container_2 .part.video.view-show {
  left: 2em;
}
.image_piece .image_container .video_container_2 .part.image.view-show {
  left: -2.25em;
}
.image_piece .image_container .video_container_2 .part.video {
  left: 0;
}
.image_piece .image_container .video_container_2 .part.image {
  left: -10em;
}
.image_piece .image_container .video_container_2 .part video.video_element {
  background-color: white;
}
.image_piece .image_container .video_container_2 .part video.video_element:not(.ie_mode) {
  height: 75%;
  margin: -45px 0 -45px 0;
}
.image_piece .image_container .video_container_2 .part video.video_element.ie_mode {
  margin: -45px 0 -45px 0;
  height: 75%;
}
.image_piece .image_container .video_container_2 .part img.image_element {
  height: 75%;
  margin: -45px 0 -45px 0;
}
.image_piece .image_container .video_container_2 .part label {
  z-index: 3;
  font-size: 0.25em;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.image_piece .video_over {
  position: absolute;
  left: 12%;
  top: 1%;
  width: 76%;
  height: 10%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-transition: 1s transform ease, 1s opacity ease;
  -moz-transition: 1s transform ease, 1s opacity ease;
  transition: 1s transform ease, 1s opacity ease;
}
.image_piece .video_over .i18n {
  font-size: 0.53rem;
  font-family: AppFontMedium;
}
.image_piece .video_over.view-show {
  -webkit-transform: translateX(-30%);
  -moz-transform: translateX(-30%);
  transform: translateX(-30%);
  opacity: 0;
}
.image_piece .video_under {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35.5%;
}
.image_piece .video_under .vid_under_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-animation-name: vid_under_box_anim;
  -moz-animation-name: vid_under_box_anim;
  animation-name: vid_under_box_anim;
  -webkit-animation-duration: 24s;
  -moz-animation-duration: 24s;
  animation-duration: 24s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
@keyframes vid_under_box_anim {
  0% {
    transform: translateX(-0.5rem);
    opacity: 0;
  }
  9% {
    transform: none;
    opacity: 1;
  }
  14% {
    transform: none;
    opacity: 1;
  }
  19% {
    transform: translateX(0.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0.5rem);
    opacity: 0;
  }
}
.image_piece .video_under .vid_under_box[data-carousel="1"] {
  -webkit-animation-delay: -0.1s;
  -moz-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.image_piece .video_under .vid_under_box[data-carousel="2"] {
  -webkit-animation-delay: -4.1s;
  -moz-animation-delay: -4.1s;
  animation-delay: -4.1s;
}
.image_piece .video_under .vid_under_box[data-carousel="3"] {
  -webkit-animation-delay: -8.1s;
  -moz-animation-delay: -8.1s;
  animation-delay: -8.1s;
}
.image_piece .video_under .vid_under_box[data-carousel="4"] {
  -webkit-animation-delay: -12.1s;
  -moz-animation-delay: -12.1s;
  animation-delay: -12.1s;
}
.image_piece .video_under .vid_under_box[data-carousel="5"] {
  -webkit-animation-delay: -16.1s;
  -moz-animation-delay: -16.1s;
  animation-delay: -16.1s;
}
.image_piece .video_under .vid_under_box[data-carousel="6"] {
  -webkit-animation-delay: -20.1s;
  -moz-animation-delay: -20.1s;
  animation-delay: -20.1s;
}
.image_piece .video_under .vid_under_box .vid_under_icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  margin: 0.1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.image_piece .video_under .vid_under_box .vid_under_icon.icon1 {
  background-image: url(../img/carousel/cloud.png);
}
.image_piece .video_under .vid_under_box .vid_under_icon.icon2 {
  background-image: url(../img/carousel/secure.png);
}
.image_piece .video_under .vid_under_box .vid_under_icon.icon3 {
  background-image: url(../img/carousel/application.png);
}
.image_piece .video_under .vid_under_box .vid_under_icon.icon4 {
  background-image: url(../img/carousel/restore.png);
}
.image_piece .video_under .vid_under_box .vid_under_icon.icon5 {
  background-image: url(../img/carousel/compressed-file.png);
}
.image_piece .video_under .vid_under_box .vid_under_icon.icon6 {
  background-image: url(../img/carousel/gauge.png);
}
.image_piece .video_under .vid_under_box .vid_under_text {
  position: relative;
  width: auto;
  width: 5.2rem;
  height: 1rem;
  margin: 0.1rem;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.image_piece .video_under .vid_under_box .vid_under_text .i18n {
  font-size: 0.33rem;
  font-family: AppFontBold;
}
.image_piece .video_under .vid_under_box .vid_under_text.smaller_text .i18n {
  font-size: 0.28rem;
}

.home_page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  pointer-events: none !important;
}
.home_page .home_bg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 25%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: bottom;
  background-image: url(../img/home_bg2.jpg);
  -webkit-transition: 0.5s transform ease;
  -moz-transition: 0.5s transform ease;
  transition: 0.5s transform ease;
}
body.bodyPortrait .home_page .home_bg {
  left: 0%;
  top: 50%;
  width: 100%;
  height: 25%;
  background-image: url(../img/home_bg2_rotate.jpg);
}
.home_page .home_bg.half_bg {
  height: 50%;
}
body.bodyPortrait .home_page .home_bg.half_bg {
  left: 50%;
  top: 50%;
  width: 50%;
  height: 25%;
}
.home_page:not(.show) .home_bg {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
.home_page .custom_box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  height: 50%;
  pointer-events: auto;
  background-color: #044ada;
  color: white;
  -webkit-transition: 0.5s transform ease;
  -moz-transition: 0.5s transform ease;
  transition: 0.5s transform ease;
}
body.bodyPortrait .home_page .custom_box {
  left: 0;
  top: 50%;
  width: 50%;
  height: 25%;
}
.home_page .custom_box.not_displayed {
  display: none;
}
.home_page .custom_box .custom_overview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 25%;
  box-sizing: border-box;
  padding: 0.3rem;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_page .custom_box .custom_overview .custom_title {
  position: relative;
  width: 100%;
}
.home_page .custom_box .custom_overview .custom_title .i18n {
  font-size: 0.37rem;
  font-family: AppFontMedium;
}
.home_page .custom_box .custom_overview .custom_desc {
  position: relative;
  width: 100%;
}
.home_page .custom_box .custom_overview .custom_desc .i18n {
  font-size: 0.25rem;
}
.home_page .custom_box .custom_list {
  position: absolute;
  left: 0;
  top: 25%;
  width: 100%;
  height: 50%;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_page .custom_box .custom_list .custom_link {
  position: relative;
  width: 100%;
  height: 25%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.3rem;
  background-position: calc(100% - 0.3rem) 50%;
  background-image: url(../img/arrow_right.png);
}
.home_page .custom_box .custom_list .custom_link .text {
  position: relative;
  width: 100%;
  height: auto;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  font-size: 0.25rem;
  line-height: 1.1;
}
.home_page .custom_box .custom_list .custom_link.inactive {
  opacity: 0;
  pointer-events: none !important;
}
.home_page .custom_box .custom_end {
  position: absolute;
  left: 0;
  top: 75%;
  width: 100%;
  height: 25%;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.3rem;
}
.home_page .custom_box .custom_end .contact_ibm_rep {
  position: relative;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  width: calc(100% - 0.6rem);
}
.home_page .custom_box .custom_end .custom_email {
  position: relative;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  width: calc(100% - 0.6rem);
}
.home_page:not(.show) .custom_box {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
}

.special_next,
.special_finish {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(6.25% - 4px);
  height: 12.5%;
  color: white;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.5s transform ease, 0.5s opacity ease;
  -moz-transition: 0.5s transform ease, 0.5s opacity ease;
  transition: 0.5s transform ease, 0.5s opacity ease;
  z-index: 1000;
}
.special_next.hidden,
.special_finish.hidden {
  opacity: 0;
  pointer-events: none !important;
}
.special_next.hidden *,
.special_finish.hidden * {
  pointer-events: none !important;
}
.special_next.slide_left,
.special_finish.slide_left {
  -webkit-transform: translateX(-25vw) translateX(-2px) translateY(4px);
  -moz-transform: translateX(-25vw) translateX(-2px) translateY(4px);
  transform: translateX(-25vw) translateX(-2px) translateY(4px);
}
.special_next.slide_left.slide_left_more,
.special_finish.slide_left.slide_left_more {
  -webkit-transform: translateX(-48vw);
  -moz-transform: translateX(-48vw);
  transform: translateX(-48vw);
}

.special_next {
  background-color: #408bfc;
  overflow: hidden;
}
.special_next .next_animating_arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.35rem;
  background-image: url(../img/arrow_right.png);
  -webkit-animation-name: next_animate;
  -moz-animation-name: next_animate;
  animation-name: next_animate;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes next_animate {
  0% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
  47% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
}

.special_finish .special_finish_inner {
  position: absolute;
  right: 100%;
  top: 0;
  width: 44vw;
  height: 100%;
  overflow: hidden;
}
.special_finish .special_finish_inner .special_finish_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.5s transform ease, 0.5s opacity ease;
  -moz-transition: 0.5s transform ease, 0.5s opacity ease;
  transition: 0.5s transform ease, 0.5s opacity ease;
}
.special_finish .special_finish_inner .special_finish_box .sp_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #408bfc;
  -webkit-transition: 0.5s transform ease;
  -moz-transition: 0.5s transform ease;
  transition: 0.5s transform ease;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  transform-origin: right;
}
.special_finish .special_finish_inner .special_finish_box .sp_finish_text,
.special_finish .special_finish_inner .special_finish_box .sp_finish_email {
  position: relative;
  width: calc(100% - 0.6rem);
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  font-size: 0.22rem;
  line-height: 1.15;
  -webkit-transition: 0.5s opacity ease;
  -moz-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
}
.special_finish .special_finish_inner .special_finish_box .sp_finish_text .i18n br {
  line-height: 0.5rem;
}
.special_finish .sp_finish_minimize {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #408bfc;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.42rem;
  background-image: url(../img/minimize.png);
  z-index: 10;
}
.special_finish.minimized .special_finish_inner {
  pointer-events: none !important;
}
.special_finish.minimized .special_finish_inner * {
  pointer-events: none !important;
}
.special_finish.minimized .special_finish_inner .special_finish_box {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
}
.special_finish.minimized .sp_finish_text,
.special_finish.minimized .sp_finish_email {
  opacity: 0;
}

.always_visible {
  position: absolute;
  left: 0;
  top: 0;
  width: 12.5%;
  height: 12.5%;
  z-index: 40;
}
.always_visible .logo {
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  width: calc(50% - 0.2rem);
  height: calc(100% - 0.2rem);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #044ada;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.bodyPortrait .always_visible .logo {
  height: calc(50% - 0.2rem);
}
.always_visible .logo .logoFont {
  position: relative;
  width: 75%;
  height: 75%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.always_visible .logo .logoFont .i18n {
  color: white;
  font-size: 0.24em;
}
.always_visible .back_to_catalog_container {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-transition: 0.5s transform ease, 0.5s opacity ease;
  -moz-transition: 0.5s transform ease, 0.5s opacity ease;
  transition: 0.5s transform ease, 0.5s opacity ease;
}
body.bodyPortrait .always_visible .back_to_catalog_container {
  height: 50%;
}
body.vrack .always_visible .back_to_catalog_container {
  right: 50%;
  top: calc(1920px - 50%);
}
.always_visible .back_to_catalog_container.view-show {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}
.always_visible .back_to_catalog_container .back_to_catalog_icon {
  position: absolute;
  left: calc(50% - 0.5rem);
  top: calc(50% - 0.5rem);
  width: 1rem;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center;
  background-size: 0.45rem;
  background-image: url(../img/arrow_left.png);
}
.always_visible .back_to_catalog_container .back_to_catalog_icon .back_to_catalog_text {
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
}
.always_visible .back_to_catalog_container .back_to_catalog_icon .back_to_catalog_text .i18n {
  font-size: 0.15rem;
  text-align: center;
  line-height: 1.2;
}

.back_button {
  position: absolute;
  left: 0;
  bottom: 1.35vh;
  width: 12.5vw;
  height: 6.25vh;
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 1.2vw 50%;
  background-size: 2.35vmin;
  background-image: url(../img/arrow_left.png);
  z-index: 20;
}
body.bodyPortrait .back_button {
  bottom: 0;
}
body.singlecomputer .back_button {
  bottom: 3.125vh;
  height: 3.125vh;
}
.back_button .back_text {
  position: absolute;
  left: calc(50% - 3.125vw);
  top: 0;
  width: 6.25vw;
  height: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.back_button .back_text .i18n {
  font-size: 0.2rem;
  text-align: center;
}

.language_box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12.5vw;
  height: 6.25vh;
  z-index: 20;
  cursor: pointer;
  overflow: visible !important;
}
body.bodyPortrait .language_box {
  bottom: 0;
  left: 12.5vw;
}
body.singlecomputer .language_box {
  height: 3.125vh;
}
.language_box .clickable_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.2rem;
  color: white;
  background-color: #1f46d3;
}
.language_box .language_flyout_container {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: auto;
  pointer-events: none;
  overflow: hidden;
}
.language_box .language_flyout_container .language_flyout {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: column;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: column;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.5s transform ease, 0.5s opacity ease;
  -moz-transition: 0.5s transform ease, 0.5s opacity ease;
  transition: 0.5s transform ease, 0.5s opacity ease;
}
.language_box .language_flyout_container .language_flyout:not(.language_flyout_opened) {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
  pointer-events: none !important;
}
.language_box .language_flyout_container .language_flyout:not(.language_flyout_opened) .language_option {
  pointer-events: none !important;
}
.language_box .language_flyout_container .language_flyout.language_flyout_opened .language_option {
  pointer-events: auto;
}
.language_box .language_flyout_container .language_flyout .language_option {
  position: relative;
  width: 100%;
  height: 6.25vh;
  background-color: #5c7fdd;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 0.2rem;
  color: white;
  box-sizing: border-box;
  border-bottom: 2px solid lightblue;
}
body.singlecomputer .language_box .language_flyout_container .language_flyout .language_option {
  height: 3.125vh;
}

body.singlecomputer #body {
  height: 1920px;
}

.bottom_screen_logo_box {
  position: absolute;
  left: 0;
  top: 1920px;
  width: 100%;
  height: 1920px;
  background-color: black;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -moz-flex;
  -moz-flex-direction: row;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: -ms-flex;
  -ms-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body:not(.singlecomputer) .bottom_screen_logo_box {
  display: none;
}
.bottom_screen_logo_box .bottom_screen_logo {
  position: relative;
  width: 83%;
  height: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/logoSlave.png);
  background-position: 50% 38%;
}

.custom_page .custom_info_box .custom_info_inner .custom_desc .i18n {
  font-size: 0.4rem;
  line-height: 1.3;
}

.custom_page .custom_info_box .custom_info_inner {
  padding: 0.8rem;
}

/*# sourceMappingURL=custom.css.map */
