@font-face {
  font-family: 'jack-font-name';
  src: url('../assets//equip_ot/EquipLig.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'jack-font-name';
  src: url('../assets//equip_ot/EquipMed.otf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'jack-light-font-name';
  src: url('../assets//equip_ot/EquipXLig.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'jack-medium-font-name';
  src: url('../assets//equip_ot/EquipReg.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'jack-bold-font-name';
  src: url('../assets//equip_ot/EquipMed.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'jack-black-font-name';
  src: url('../assets//equip_ot/EquipBol.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'jack-secondary-font-name';
  src: url('../assets//mark_ot/MarkOT-Book.otf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'jack-secondary-light-font-name';
  src: url('../assets//mark_ot/MarkOT-Light.otf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'jack-secondary-medium-font-name';
  src: url('../assets//mark_ot/MarkOT-Medium.otf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'jack-secondary-bold-font-name';
  src: url('../assets//mark_ot/MarkOT-Bold.otf');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'jack-secondary-black-font-name';
  src: url('../assets//mark_ot/MarkOT-Heavy.otf.otf');
  font-weight: bold;
  font-style: normal;
}
.OzwebApp {
  font-family: jack-font-name;
  position: relative;
  overflow: hidden;
  flex-grow: 0;
  width: 100%;
  height: 100%;
}
.json-inspector,
.json-inspector__selection {
    font: 14px/1.4 Consolas, monospace;
}

.json-inspector__leaf {
    padding-left: 10px;
}

.json-inspector__line {
    display: block;
    position: relative;

    cursor: default;
}

.json-inspector__line:after {
    content: '';

    position: absolute;
    top: 0;
    left: -200px;
    right: -50px;
    bottom: 0;
    z-index: -1;

    pointer-events: none;
}

.json-inspector__line:hover:after {
    background: rgba(0, 0, 0, 0.06);
}

.json-inspector__leaf_composite > .json-inspector__line {
    cursor: pointer;
}

.json-inspector__radio,
.json-inspector__flatpath {
    display: none;
}

.json-inspector__value {
    margin-left: 5px;
}

.json-inspector__search {
    min-width: 300px;
    margin: 0 10px 10px 0;
    padding: 2px;
}

.json-inspector__key {
    color: #505050;
}

.json-inspector__value_helper,
.json-inspector__value_null,
.json-inspector__not-found {
    color: #b0b0b0;
}

.json-inspector__value_string {
    color: #798953;
}

.json-inspector__value_boolean {
    color: #75b5aa;
}

.json-inspector__value_number {
    color: #d28445;
}

.json-inspector__hl {
    background: #ff0;
    box-shadow: 0 -1px 0 2px #ff0;
    border-radius: 2px;
}

.json-inspector__show-original {
    display: inline-block;
    padding: 0 6px;

    color: #666;
    cursor: pointer;
}

.json-inspector__show-original:hover {
    color: #111;
}

.json-inspector__show-original:before {
    content: '⥂';
}

.json-inspector__show-original:hover:after {
    content: ' expand'
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.carousel.paging {
  -webkit-scroll-snap-type: mandatory;
  scroll-snap-type: mandatory;
}
.carousel > .card {
  -webkit-scroll-snap-coordinate: 0 0;
  scroll-snap-coordinate: 0 0;
}
.map {
  border-radius: 18px;
}
.list {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list > li {
  padding: 0;
  display: block;
}
.panels {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.panel {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #ECECEC;
}
.panel.slide-pop-enter {
  transform: translateX(-100%);
}
.panel.slide-pop-enter.slide-pop-enter-active {
  transition: transform 0.2s ease;
  transform: translateX(0);
}
.panel.slide-pop-leave {
  transform: translateX(0);
}
.panel.slide-pop-leave.slide-pop-leave-active {
  transition: transform 0.2s ease;
  transform: translateX(100%);
}
.panel.slide-push-enter {
  transform: translateX(100%);
}
.panel.slide-push-enter.slide-push-enter-active {
  transition: transform 0.2s ease;
  transform: translateX(0);
}
.panel.slide-push-leave {
  transform: translateX(0);
}
.panel.slide-push-leave.slide-push-leave-active {
  transition: transform 0.2s ease;
  transform: translateX(-100%);
}
.panel > .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
}
.panel > .header > .title {
  padding: 12px 0;
  display: flex;
  flex-grow: 1;
  font-family: "jack-black-font-name";
  font-size: 18px;
  color: #43A8ED;
  flex-direction: column;
  align-items: center;
}
.panel > .header > .back-button {
  flex-grow: 0;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  background: #43A8ED;
  -webkit-mask-image: url('../assets//ui/icon-back.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 18px 50%;
  -webkit-mask-size: auto 17px;
  mask-image: url('../assets//ui/icon-back.svg');
  mask-repeat: no-repeat;
  mask-position: 18px 50%;
  mask-size: auto 17px;
  color: rgba(0, 0, 0, 0);
}
.panel > .header > .right-button {
  flex-grow: 0;
  padding: 12px 20px;
  display: flex;
}
.panel > .backgroundJackson {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
}
.chatView {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  -webkit-overflow-scrolling: touch;
}
.scroller {
  min-height: 100%;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-overflow-scrolling: touch;
}
.messages {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  flex-shrink: 0;
}
.message {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-grow: 0;
  margin: 5px 15px;
  border-radius: 18px;
  padding: 6px 12px;
  max-width: 60%;
  overflow: hidden;
}
.request {
  color: #ffffff;
  background: #78bcf1;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.response {
  color: #444444;
  background: #ffffff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.response + .response {
  border-top-left-radius: 4px;
  margin-top: 0;
}
.content {
  overflow: hidden;
  min-height: 100%;
}
.section {
  padding-bottom: 10px;
  background: #ECECEC;
  display: flex;
  flex-direction: column;
}
.section > span {
  display: flex;
  flex-direction: column;
}
.header + .scroller .section:first-child {
  margin-top: 48px;
}
.section:last-child {
  padding-bottom: 42px;
}
.item.item-enter {
  opacity: 0;
}
.item.item-enter.moveLeft {
  transform: translateX(100%);
}
.item.item-enter.moveUp {
  transform: translateY(1000px);
}
.item.item-enter.moveDown {
  transform: translateY(-1000px);
}
.item.item-enter.moveRight {
  transform: translateX(-100%);
}
.item.item-enter.item-enter-active {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition: all 0.4s ease;
}
.item.item-leave {
  max-height: 400px;
  opacity: 1;
}
.item.item-leave.item-leave-active {
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
/* iPad */
/*@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
  .chat-form {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
  }
}*/
/* iPhone 6 */
/*@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {
  .chat-form {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
  }
}*/
.avatar {
  position: absolute !important;
  left: 10px;
  bottom: 6px;
  background: url('../assets//kit-avatar/Jack_App_Icon_256.png');
  border-radius: 25px;
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: 120%;
  border: 1px solid rgba(205, 205, 205, 0.8);
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.chat-form {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #cccccd;
  display: flex;
}
.chat-form > .query-input {
  font-size: 18px;
  margin: 8px 0 10px 72px;
  /*background: rgba(255, 255, 255, 0.4);*/
  -webkit-appearance: none;
  padding: 4px;
  background: none;
  border: none;
  display: flex;
  flex-grow: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.chat-form > button {
  font-family: jack-font-name;
  display: flex;
  border: none;
  font-size: 18px;
  color: #03a6d5;
  background: none;
  flex-grow: 0;
  font-weight: bold;
  margin: 6px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.chat-form > button:disabled {
  color: #AAA;
}
/** experimental history nav for ios **/
.hidden-back,
.hidden-forward {
  width: 0;
  height: 0;
  padding: 1;
  border: 0;
}
.locationBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid #cccccd;
  -webkit-backdrop-filter: blur(10px);
  color: #333;
  display: flex;
  align-items: center;
}
.locationBar > .map > .useCurrentButton {
  position: absolute;
  background-color: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 14px;
  font-family: jack-font-name;
  padding: 4px 10px;
}
.locationBar > .map > .useCurrentButton:active {
  background: #DDD;
  color: #333;
  text-shadow: 1px 1px 0 #ffffff;
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.5), inset -1px -1px 0 rgba(255, 255, 255, 0.7);
}
.locationBar .name {
  cursor: pointer;
  flex-grow: 1;
  display: flex;
}
.locationBar .name,
.locationBar .name * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.locationBar .name:after {
  margin-left: 10px;
  content: '▾';
  -webkit-transition: -webkit-transform 0.15s ease-out;
}
.locationBar.showMap > .name:after {
  -webkit-transform: rotateX(180deg);
}
.locationBar.showMap > .map {
  height: 300px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.locationBar > .map {
  z-index: 1001;
  border-radius: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: height 0.15s ease-out;
  overflow: hidden;
}
.locationBar > .map > .leaflet-container {
  min-height: 300px;
}
.jackolyte .scroller {
  position: static;
  padding: 0;
  background: none;
}
.jackolyte .messages {
  margin-top: 0;
}
.block {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  overflow: hidden;
}
.intent {
  cursor: pointer;
}
.v-box {
  flex-direction: column;
}
.h-box {
  flex-direction: row;
}
.image {
  flex-grow: 1;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.Modal {
  text-align: center;
  background-color: white;
  padding-top: 44px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.Modal-wrapper {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .Modal-wrapper {
    display: none;
  }
}
.Modal-hideButton {
  background-color: white;
  background-image: url('../assets//ui/Close-X.svg');
  height: 22px;
  width: 22px;
  border: none;
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 15px;
  cursor: pointer;
}
.ModalTransition-enter.Modal-wrapper,
.ModalTransition-leave.ModalTransition-leave-active.Modal-wrapper {
  opacity: 0;
}
.ModalTransition-enter .Modal,
.ModalTransition-leave.ModalTransition-leave-active .Modal {
  transform: translateY(300px);
}
.ModalTransition-enter.ModalTransition-enter-active.Modal-wrapper,
.ModalTransition-leave.Modal-wrapper {
  opacity: 1;
  transition: opacity 300ms ease;
}
.ModalTransition-enter.ModalTransition-enter-active .Modal,
.ModalTransition-leave .Modal {
  transform: translateY(0);
  transition: transform 300ms ease;
}
.AppStoreButton {
  text-align: left;
  text-decoration: none;
  color: #ffffff;
  background-color: #000000;
  border-radius: 12px;
  width: 187px;
  height: 56px;
  display: inline-flex;
}
.AppStoreButton-icon {
  width: 48px;
  height: 56px;
  background: url('https://images.njck.co/img?q=jack://assets/nano-cards/apple%20app%20store/logo-apple@3x.png') center no-repeat;
  background-size: 48px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
}
.AppStoreButton-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.AppStoreButton-line1 {
  font-family: 'jack-font-name';
  font-size: 13px;
}
.AppStoreButton-line2 {
  font-family: 'jack-black-font-name';
  font-size: 18px;
}
.BrowseModalContent {
  max-width: 290px;
  margin: 0 auto;
}
.BrowseModalContent-title {
  text-align: center;
  font-family: "jack-black-font-name";
  font-size: 19px;
  line-height: 22px;
  color: #43A8ED;
}
.BrowseModalContent-avatar {
  width: 100px;
  height: 100px;
  display: inline-block;
  position: relative;
  top: -4px;
}
.BrowseModalContent-avatar + .BrowseModalContent-bodyText {
  padding-top: 0;
}
.BrowseModalContent-bodyText {
  text-align: center;
  font-family: "jack-font-name";
  font-size: 16px;
  color: #7f7f7f;
  padding-top: 26px;
}
.BrowseModalContent-landing .BrowseModalContent-bodyText {
  font-size: 15px;
}
.BrowseModalContent-continueButton {
  font-family: "jack-black-font-name";
  font-size: 18px;
  color: #ffffff;
  background-color: #78BCF1;
  border: none;
  border-bottom: 2px #62A3DD solid;
  border-radius: 6px;
  width: 125px;
  height: 36px;
  margin: 28px 0 30px 0;
}
.BrowseModalContent-continueButton:active {
  background: #62A3DD;
  border-top: 2px #4285B2 solid;
  border-bottom: none;
}
.BrowseModalContent .AppStoreButton {
  margin: 31px 0 37px 0;
}
.OzloInfo {
  text-align: center;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.OzloInfo-logo {
  width: 138px;
  height: 54px;
  background: url('https://images.njck.co/img?q=jack://assets/website/Ozlo-Logotype-Mobile-Medium-White@2x.png') center / 138px 58px no-repeat;
  margin: 0;
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .OzloInfo-logo {
    width: 201px;
    height: 78px;
    background-image: url('https://images.njck.co/img?q=jack://assets/website/Ozlo-Logotype-Desktop-Large-White@2x.png');
    background-size: 201px 78px;
  }
}
.OzloInfo-tagline {
  color: white;
  font-family: "jack-bold-font-name";
  font-size: 16px;
  line-height: 19px;
  height: 19px;
  padding-top: 12px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .OzloInfo-tagline {
    font-size: 23px;
    line-height: 27px;
    height: 27px;
    padding-top: 15px;
  }
}
.OzloInfo-avatar {
  width: 160px;
  height: 160px;
  background: url('https://images.njck.co/img?q=jack://assets/website/Ozlo-Avatar-Web-Mobile@2x.png') center / 160px 160px no-repeat;
  display: inline-block;
  margin-top: -9px;
}
@media only screen and (min-width: 1024px) {
  .OzloInfo-avatar {
    width: 240px;
    height: 240px;
    background-image: url('https://images.njck.co/img?q=jack://assets/website/Ozlo-Avatar-Web-Mobile@2x.png');
    background-size: 240px 240px;
    margin-top: -5px;
  }
}
.OzloInfo-title {
  color: #43A8ED;
  text-align: center;
  font-family: "jack-black-font-name";
  font-size: 20px;
  line-height: 24px;
  height: 24px;
  padding-top: 30px;
}
.OzloInfo-bodyText {
  text-align: center;
  font-family: "jack-font-name";
  font-size: 16px;
  color: #7f7f7f;
  height: 40px;
  padding-top: 12px;
  margin: 0;
}
.OzloInfo .AppStoreButton {
  margin-top: 30px;
}
.a11y-hide,
.Modal-hideButton span,
.OzloInfo-logo span,
.OzloInfo-avatar span {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
html {
  height: 100%;
}
body {
  font-family: jack-font-name;
  height: 100%;
  box-sizing: border-box;
  margin: 0;
  display: flex;
}
body.websitePresentationMode {
  justify-content: center;
  background: linear-gradient(0deg, #EEE 0, #EEE 90%, #FFF 90%, #FFF);
}
@media only screen and (min-width: 768px) {
  body.websitePresentationMode {
    background: linear-gradient(#78BCF1 calc(50% - 50px), #F7F7F7 0%);
    padding: 30px 0;
    padding-right: 30px;
    justify-content: initial;
  }
}
@media only screen and (min-width: 1024px) {
  body.websitePresentationMode {
    background: linear-gradient(#78BCF1 calc(50% - 28px), #F7F7F7 0%);
    width: 800px;
    padding-right: 0;
    margin: 0 auto;
    justify-content: space-between;
  }
}
#OzloInfoContainer {
  display: none;
}
@media only screen and (min-width: 768px) {
  #OzloInfoContainer {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) {
  #OzloInfoContainer {
    width: 375px;
    flex-grow: 0;
  }
}
@media only screen and (min-width: 768px) {
  .websitePresentationMode #mount {
    max-width: 375px;
    border: 2px solid #cccccc;
    box-sizing: border-box;
  }
}
