body {
  font-family: Roboto, Helvetica, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  background: #f4f4f4;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Mono';
  margin: 0;
  padding: 0;
}
a,
a:hover,
a:focus {
  color: #2196f3;
}
.body-wrapper {
  width: 100%;
  margin-top: 64px !important;
}
@media only screen and (max-width : 991px) {
  .body-wrapper {
    margin-top: 100px !important;
  }
}
.row {
  margin: 0;
  padding: 0;
}
.row > [class^="col-"],
.row > [class*=" col-"] {
  padding: 0;
  padding-left: 0;
  padding-right: 0;
}
/******************************
 * BASE
 * ****************************/
.content-with-sidebar {
  width: calc(100% - 360px);
  max-width: 960px;
  margin-left: 360px;
}
@media only screen and (max-width : 991px) {
  .content-with-sidebar {
    width: 100%;
    margin-left: 0px;
  }
}
.sidebar {
  position: fixed;
  width: 360px;
  height: 100%;
  float: right;
  text-align: left;
  background-color: #fafafa;
  border-right: 1px solid #ddd;
}
.sidebar .sidebar-content {
  width: 200px;
  margin: 30px 20px 0 140px;
}
.sidebar .sidebar-title {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 24px;
  color: #333;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.sidebar .sidebar-subtitle {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 14px;
  color: #808080;
  margin-bottom: 4px;
  line-height: 1.5;
}
@media only screen and (max-width : 991px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: 140px;
    z-index: 1;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  .sidebar .sidebar-content {
    width: 95%;
    margin: 30px 20px 0 20px;
  }
}
.sidebar-options-list {
  position: relative;
  color: #808080;
  margin: 60px 0 0 0;
  padding: 0;
}
.sidebar-options-list > li {
  list-style-type: none;
  cursor: pointer;
  display: table;
}
.sidebar-options-list > li:hover:not(.options-category) {
  color: rgba(0, 0, 0, 0.67);
}
.sidebar-options-list > li.selected {
  color: #4a90e2;
  font-weight: 600;
}
.sidebar-options-list > li:before {
  position: relative;
  padding-right: 20px;
  display: table-cell;
}
@media only screen and (max-width : 991px) {
  .sidebar-options-list {
    display: none;
  }
}
/******************************
 * MIXINS
 * ****************************/
.responsive-resize-mixin {
  width: 1160px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .responsive-resize-mixin {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.color-theme-mixin.black {
  background-color: #212121;
  color: #fff;
}
.color-theme-mixin.black .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.color-theme-mixin.white {
  background-color: #ffffff;
  color: #333;
}
.color-theme-mixin.white .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.color-theme-mixin.blue {
  background-color: #4a90e2;
  color: #fff;
}
.color-theme-mixin.blue .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.color-theme-mixin.teal {
  background-color: #78dfba;
  color: #333;
}
.color-theme-mixin.teal .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.color-theme-mixin.purple {
  background-color: #63336e;
  color: #fff;
}
.color-theme-mixin.purple .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
/******************************
 * NAVBAR
 * ****************************/
.navbar-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 64px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 4px 8px 0 rgba(0, 0, 0, 0.28);
  z-index: 10;
  background-color: #000;
  color: #fff;
}
.navbar-wrapper.black {
  background-color: #212121;
  color: #fff;
}
.navbar-wrapper.black .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar-wrapper.white {
  background-color: #ffffff;
  color: #333;
}
.navbar-wrapper.white .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.navbar-wrapper.blue {
  background-color: #4a90e2;
  color: #fff;
}
.navbar-wrapper.blue .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar-wrapper.teal {
  background-color: #78dfba;
  color: #333;
}
.navbar-wrapper.teal .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.navbar-wrapper.purple {
  background-color: #63336e;
  color: #fff;
}
.navbar-wrapper.purple .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width : 991px) {
  .navbar-wrapper {
    height: 100px;
  }
}
.navbar {
  width: 1160px;
  margin: auto;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .navbar {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.navbar .login-btn {
  text-transform: uppercase;
  float: right;
  margin: 10px -10px 0px 0px;
  background-color: transparent;
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
}
.navbar .login-btn a,
.navbar .login-btn a:hover,
.navbar .login-btn a:focus {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 419px) {
  .navbar .login-btn {
    display: none;
  }
}
.navbar .navbar-nav {
  position: relative;
  top: 8px;
}
.navbar .navbar-nav a,
.navbar .navbar-nav a:focus,
.navbar .navbar-nav a:hover {
  background: none;
}
@media (max-width: 418px) {
  .navbar .navbar-nav > li:nth-last-child(1) {
    display: none;
  }
}
.navbar .navbar-nav > li > a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  color: #fff;
  padding: 0 0 15px 0;
  margin: 15px 15px 0 15px;
}
@media only screen and (max-width : 767px) {
  .navbar .navbar-nav > li > a {
    margin: 15px 5px 0 5px;
  }
  .navbar .navbar-nav > li > a:first-child {
    margin-left: 15px;
  }
}
.navbar .navbar-nav > li:hover > a {
  border-bottom: 4px solid rgba(255, 255, 255, 0.5);
}
.navbar .navbar-nav > li.active > a {
  border-bottom: 4px solid #fff;
}
.navbar .navbar-nav.white > li > a,
.navbar .navbar-nav.teal > li > a {
  color: #333;
}
.navbar .navbar-nav.white > li:hover > a,
.navbar .navbar-nav.teal > li:hover > a {
  border-bottom: 4px solid rgba(0, 0, 0, 0.5);
}
.navbar .navbar-nav.white > li.active > a,
.navbar .navbar-nav.teal > li.active > a {
  border-bottom: 4px solid #333;
}
@media only screen and (max-width : 991px) {
  .navbar .navbar-nav {
    position: absolute;
    left: -15px;
    top: 45px;
    margin: 0px;
  }
}
.navbar-brand {
  padding: 15px 0;
}
.navbar-brand .logo {
  position: relative;
  top: 4px;
  width: 115px;
  height: 22px;
  background-image: url("/static/images/zb-logo-white.svg?806669669f93");
}
.navbar-brand .logo.white,
.navbar-brand .logo.teal {
  background-image: url("/static/images/zb-logo-black.svg?806669669f93");
}
.navbar-dropdown {
  width: 320px;
  background-color: #fff;
  padding: 5px 20px 0 20px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 4px 8px 0 rgba(0, 0, 0, 0.28);
  z-index: 11;
}
.navbar-dropdown.hidden {
  display: none;
}
.navbar-dropdown .navbar-dropdown-arrow {
  position: relative;
  left: 129px;
  top: -12px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  background-color: #fff;
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
}
.navbar-product-dropdown {
  position: absolute;
  left: -100px;
}
.navbar-product-dropdown li {
  list-style: none;
  margin: 0 0 30px 0;
}
.navbar-product-dropdown h5 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 4px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #333;
  margin: 0 0 5px 0;
}
.navbar-product-dropdown span {
  font-size: 12px;
  color: #808080;
}
.navbar-product-dropdown .dropdown-image-block {
  display: inline-block;
  width: 50px;
  margin-right: 20px;
  vertical-align: top;
}
.navbar-product-dropdown .dropdown-text-block {
  display: inline-block;
  width: 210px;
}
.navbar-product-dropdown .dropdown-image-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.navbar-product-dropdown .dropdown-image-wrapper .dropdown-image {
  position: relative;
  top: 9px;
  left: 7px;
  height: 30px;
  width: 34px;
}
.navbar-product-dropdown .dropdown-image-wrapper.zanbato-trading {
  background-color: #4a90e2;
}
.navbar-product-dropdown .dropdown-image-wrapper.zanbato-trading .dropdown-image {
  content: url("/static/images/zt-product-dropdown.svg?806669669f93");
}
.navbar-product-dropdown .dropdown-image-wrapper.private-label {
  background-color: #78dfba;
}
.navbar-product-dropdown .dropdown-image-wrapper.private-label .dropdown-image {
  content: url("/static/images/pl-product-dropdown.svg?806669669f93");
}
.navbar-product-dropdown .dropdown-image-wrapper.discovery {
  background-color: #63336e;
}
.navbar-product-dropdown .dropdown-image-wrapper.discovery .dropdown-image {
  content: url("/static/images/d-product-dropdown.svg?806669669f93");
}
@media only screen and (max-width : 991px) {
  .navbar-product-dropdown {
    left: 0px;
  }
  .navbar-product-dropdown .navbar-dropdown-arrow {
    left: 28px;
  }
}
.navbar-clients-dropdown {
  position: absolute;
  left: -110px;
}
.navbar-clients-dropdown li {
  list-style: none;
  margin: 0 0 20px 0;
}
.navbar-clients-dropdown h3 {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  display: table;
}
.navbar-clients-dropdown h3:before {
  content: url("/static/images/client-people-dropdown.svg?806669669f93");
  display: table-cell;
  padding-right: 20px;
}
.navbar-clients-dropdown h5 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  display: table-cell;
  padding-left: 40px;
  text-transform: uppercase;
}
.navbar-clients-dropdown li > a {
  text-decoration: underline;
  display: table-cell;
  padding-left: 40px;
}
.navbar-collapse.collapse {
  display: block!important;
}
.navbar-nav > li,
.navbar-nav {
  float: left !important;
}
.navbar-nav.navbar-right:last-child {
  margin-right: -15px !important;
}
.navbar-right {
  float: right !important;
}
/******************************
 * FOOTER
 * ****************************/
.footer-wrapper {
  padding: 0 30px 0 30px;
  background: #fff;
}
.footer {
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  margin: auto;
  max-width: 1000px;
}
.footer .footer-header {
  width: 100%;
  display: inline-block;
  padding: 60px 0;
  font-size: 16px;
}
.footer .footer-header > a {
  color: rgba(0, 0, 0, 0.42);
  font-weight: 500;
  padding: 0 28px 0 0;
}
@media (max-width: 403px) {
  .footer .footer-header > a {
    margin-bottom: 12px;
    display: block;
  }
}
.footer .footer-body {
  padding: 0 0 60px 0;
}
.footer .footer-copyright {
  color: rgba(0, 0, 0, 0.2);
}
/******************************
 * HOME / PRODUCT TEMPLATE
 * ****************************/
.home-product-overlay {
  background-color: #fff;
  color: #000;
  width: 100%;
}
.home-product-overlay.black {
  background-color: #212121;
  color: #fff;
}
.home-product-overlay.black .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.home-product-overlay.white {
  background-color: #ffffff;
  color: #333;
}
.home-product-overlay.white .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.home-product-overlay.blue {
  background-color: #4a90e2;
  color: #fff;
}
.home-product-overlay.blue .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.home-product-overlay.teal {
  background-color: #78dfba;
  color: #333;
}
.home-product-overlay.teal .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.home-product-overlay.purple {
  background-color: #63336e;
  color: #fff;
}
.home-product-overlay.purple .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.home-product-overlay-content {
  width: 1160px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .home-product-overlay-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.home-product-content {
  width: 1160px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .home-product-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
/********** OVERLAY **********/
.overlay {
  background-repeat: no-repeat;
  background-position: right center;
  height: 778px;
  padding-top: 213px;
}
.overlay .overlay-content {
  max-width: 500px;
  width: 30%;
}
@media only screen and (max-width : 991px) {
  .overlay {
    height: 431px;
    padding-top: 60px;
  }
  .overlay .overlay-content {
    max-width: 400px;
    width: calc(100% - 368px);
  }
}
@media only screen and (max-width : 767px) {
  .overlay {
    height: 640px;
    padding-top: 322px;
    background-position: center 60px;
  }
  .overlay .overlay-content {
    max-width: 100%;
    width: 100%;
  }
}
.overlay-title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 40px;
  margin-bottom: 60px;
}
.overlay-description {
  font-family: 'Roboto Mono';
  font-size: 18px;
  line-height: 1.5;
}
.request-demo-button {
  width: 135px;
  height: 32px;
  color: rgba(0, 0, 0, 0.66);
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  margin-top: 30px;
  border: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.request-demo-button:active {
  color: #000;
  background-color: #ddd;
}
/******************************
 * HOME
 * ****************************/
/********** OVERLAY **********/
.overlay.home {
  background-image: url('/static/images/home-overlay-image-large.svg?806669669f93');
  padding-top: 150px;
}
.overlay.home .home-overlay-title {
  width: 410px;
}
@media only screen and (max-width : 991px) {
  .overlay.home {
    background-image: url('/static/images/home-overlay-image-medium.svg?806669669f93');
    background-position: center center;
    padding-top: 60px;
    padding-left: 60px;
    height: 640px;
  }
  .overlay.home .home-overlay-title {
    width: auto;
  }
  .overlay.home .overlay-content {
    width: 400px;
  }
}
@media only screen and (max-width : 767px) {
  .overlay.home {
    background-image: url('/static/images/home-overlay-image-small.svg?806669669f93');
    height: 478px;
    padding-left: 10px;
  }
}
.home-overlay-title {
  content: url('/static/images/home-overlay-title.svg?806669669f93');
  padding: 0 0 60px 0;
}
@media only screen and (max-width : 767px) {
  .home-overlay-title {
    content: url('/static/images/home-overlay-title-small.svg?806669669f93');
  }
}
.home-overlay-view-our-products {
  font-family: 'Roboto Mono';
  font-weight: 500;
  padding: 30px 0 150px 0;
}
.home-overlay-view-our-products a,
.home-overlay-view-our-products a:hover,
.home-overlay-view-our-products a:focus {
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline;
  word-spacing: 4px;
}
.home-overlay-view-our-products:after {
  content: url('/static/images/down-arrow.svg?806669669f93');
  padding: 0 10px;
  position: relative;
  top: 3px;
}
/********** PRODUCT CARDS **********/
.product-cards {
  margin: 60px auto;
}
.product-card {
  font-size: 16px;
  height: 520px;
  padding: 20px;
  margin: 0 10px 10px 0;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: inherit;
}
.product-card.black {
  background-color: #212121;
  color: #fff;
}
.product-card.black .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.product-card.white {
  background-color: #ffffff;
  color: #333;
}
.product-card.white .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.product-card.blue {
  background-color: #4a90e2;
  color: #fff;
}
.product-card.blue .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.product-card.teal {
  background-color: #78dfba;
  color: #333;
}
.product-card.teal .login-btn {
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.2);
}
.product-card.purple {
  background-color: #63336e;
  color: #fff;
}
.product-card.purple .login-btn {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.product-card.blue {
  background-image: url('/static/images/zt-product-card-background.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-card.blue .product-card-description {
    width: 50%;
  }
}
@media only screen and (max-width : 767px) {
  .product-card.blue {
    background-image: url('/static/images/zt-product-card-background-small.svg?806669669f93');
  }
  .product-card.blue .product-card-description {
    width: 100%;
  }
}
.product-card.teal {
  background-image: url('/static/images/pl-product-card-background.svg?806669669f93');
}
@media only screen and (max-width: 1199px) {
  .product-card.teal {
    background-image: url('/static/images/pl-product-card-background-small.svg?806669669f93');
  }
}
.product-card.purple {
  background-image: url('/static/images/d-product-card-background.svg?806669669f93');
}
@media only screen and (max-width: 1199px) {
  .product-card.purple {
    background-image: url('/static/images/d-product-card-background-small.svg?806669669f93');
    background-size: 187px 157px;
  }
}
.product-card .product-card-header a,
.product-card .product-card-header a:hover,
.product-card .product-card-header a:focus {
  color: #333;
}
.product-card.black .product-card-header a,
.product-card.blue .product-card-header a,
.product-card.purple .product-card-header a,
.product-card.black .product-card-header a:hover,
.product-card.blue .product-card-header a:hover,
.product-card.purple .product-card-header a:hover,
.product-card.black .product-card-header a:focus,
.product-card.blue .product-card-header a:focus,
.product-card.purple .product-card-header a:focus {
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .product-card {
    height: 360px;
  }
}
.product-card-header {
  padding: 0 0 30px 0;
  text-transform: uppercase;
}
.product-card-header h3 {
  display: inline-block;
  font-size: 21px;
  font-weight: 500;
}
.product-card-header h5 {
  display: inline-block;
  float: right;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  position: relative;
  top: 4px;
}
/********** CLIENT CARDS **********/
.client-cards-title {
  text-align: center;
}
.client-cards-title h3 {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.client-cards {
  margin: 60px auto 100px auto;
}
.client-card {
  height: 316px;
  position: relative;
  padding: 20px;
  margin: 0 10px 10px 0;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
}
@media only screen and (max-width : 991px) {
  .client-card {
    height: 280px;
  }
}
.client-card-header {
  padding: 0 0 30px 0;
  word-spacing: 4px;
  text-transform: uppercase;
}
.client-card-header h3 {
  font-size: 17px;
  line-height: 1.5;
}
.client-card-body {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.client-card-learn-more {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 14px;
  text-decoration: underline;
  vertical-align: bottom;
}
.client-card-learn-more a,
.client-card-learn-more a:hover,
.client-card-learn-more a:focus {
  font-family: 'Roboto Mono';
  color: #333;
}
/******************************
 * PRODUCT PAGES
 * ****************************/
.overlay.zanbato-trading {
  background-image: url('/static/images/product/zanbato-trading-overlay-image-large.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .overlay.zanbato-trading {
    background-image: url('/static/images/product/zanbato-trading-overlay-image-medium.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .overlay.zanbato-trading {
    background-image: url('/static/images/product/zanbato-trading-overlay-image-small.svg?806669669f93');
  }
}
.overlay.private-label {
  background-image: url('/static/images/product/private-label-overlay-image-large.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .overlay.private-label {
    background-image: url('/static/images/product/private-label-overlay-image-medium.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .overlay.private-label {
    background-image: url('/static/images/product/private-label-overlay-image-small.svg?806669669f93');
  }
}
.overlay.discovery {
  background-image: url('/static/images/product/discovery-overlay-image-large.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .overlay.discovery {
    background-image: url('/static/images/product/discovery-overlay-image-medium.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .overlay.discovery {
    background-image: url('/static/images/product/discovery-overlay-image-small.svg?806669669f93');
  }
}
.product-description-card-section {
  margin-top: 60px;
  margin-bottom: 56px;
}
.product-description-card {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  background-repeat: no-repeat;
  background-position: right bottom;
  margin-right: 10px;
  margin-bottom: 10px;
}
.product-description-card h3 {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-description-card p {
  font-family: 'Roboto Mono';
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}
.product-description-card.zanbato-trading {
  height: 420px;
}
.product-description-card.zanbato-trading.card-1 {
  background-image: url('/static/images/product/zanbato-trading-card-image-1.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.zanbato-trading.card-1 {
    background-image: url('/static/images/product/zanbato-trading-card-image-1-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.zanbato-trading.card-1 {
    background-image: url('/static/images/product/zanbato-trading-card-image-1.svg?806669669f93');
  }
}
.product-description-card.zanbato-trading.card-2 {
  background-image: url('/static/images/product/zanbato-trading-card-image-2.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.zanbato-trading.card-2 {
    background-image: url('/static/images/product/zanbato-trading-card-image-2-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.zanbato-trading.card-2 {
    background-image: url('/static/images/product/zanbato-trading-card-image-2.svg?806669669f93');
  }
}
.product-description-card.private-label {
  height: 720px;
}
.product-description-card.private-label.card-1 {
  background-image: url('/static/images/product/private-label-card-image-1.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.private-label.card-1 {
    background-image: url('/static/images/product/private-label-card-image-1-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.private-label.card-1 {
    background-image: url('/static/images/product/private-label-card-image-1.svg?806669669f93');
  }
}
.product-description-card.private-label.card-2 {
  background-image: url('/static/images/product/private-label-card-image-2.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.private-label.card-2 {
    background-image: url('/static/images/product/private-label-card-image-2-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.private-label.card-2 {
    background-image: url('/static/images/product/private-label-card-image-2.svg?806669669f93');
  }
}
.product-description-card.private-label.card-3 {
  background-image: url('/static/images/product/private-label-card-image-3.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.private-label.card-3 {
    background-image: url('/static/images/product/private-label-card-image-3-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.private-label.card-3 {
    background-image: url('/static/images/product/private-label-card-image-3.svg?806669669f93');
  }
}
.product-description-card.discovery {
  height: 650px;
}
.product-description-card.discovery.card-1 {
  background-image: url('/static/images/product/discovery-card-image-1.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.discovery.card-1 {
    background-image: url('/static/images/product/discovery-card-image-1-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.discovery.card-1 {
    background-image: url('/static/images/product/discovery-card-image-1.svg?806669669f93');
  }
}
.product-description-card.discovery.card-2 {
  background-image: url('/static/images/product/discovery-card-image-2.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.discovery.card-2 {
    background-image: url('/static/images/product/discovery-card-image-2-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.discovery.card-2 {
    background-image: url('/static/images/product/discovery-card-image-2.svg?806669669f93');
  }
}
.product-description-card.discovery.card-3 {
  background-image: url('/static/images/product/discovery-card-image-3.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-description-card.discovery.card-3 {
    background-image: url('/static/images/product/discovery-card-image-3-large.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card.discovery.card-3 {
    background-image: url('/static/images/product/discovery-card-image-3.svg?806669669f93');
  }
}
@media only screen and (max-width : 991px) {
  .product-description-card {
    height: auto !important;
    padding-bottom: 120px;
  }
  .product-description-card .product-description-card-text {
    width: 55%;
  }
}
@media only screen and (max-width : 767px) {
  .product-description-card {
    padding-bottom: 180px;
  }
  .product-description-card .product-description-card-text {
    width: 100%;
  }
}
.product-description-footer {
  width: 100%;
  max-width: 1160px;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.4);
  padding: 20px 20px 10px 20px;
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 100px;
}
.product-footer-image {
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 546px;
  margin-bottom: -325px;
}
@media only screen and (max-width : 991px) {
  .product-footer-image {
    height: 480px;
    margin-bottom: -276px;
  }
}
@media only screen and (max-width : 767px) {
  .product-footer-image {
    height: 246px;
    margin-bottom: -142px;
  }
}
.product-footer-image.zanbato-trading {
  background-image: url('/static/images/product/zanbato-trading-footer-image-large.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-footer-image.zanbato-trading {
    background-image: url('/static/images/product/zanbato-trading-footer-image-medium.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-footer-image.zanbato-trading {
    background-image: url('/static/images/product/zanbato-trading-footer-image-small.svg?806669669f93');
  }
}
.product-footer-image.private-label {
  background-image: url('/static/images/product/private-label-footer-image-large.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-footer-image.private-label {
    background-image: url('/static/images/product/private-label-footer-image-medium.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-footer-image.private-label {
    background-image: url('/static/images/product/private-label-footer-image-small.svg?806669669f93');
  }
}
.product-footer-image.discovery {
  background-image: url('/static/images/product/discovery-footer-image-large.svg?806669669f93');
}
@media only screen and (max-width : 991px) {
  .product-footer-image.discovery {
    background-image: url('/static/images/product/discovery-footer-image-medium.svg?806669669f93');
  }
}
@media only screen and (max-width : 767px) {
  .product-footer-image.discovery {
    background-image: url('/static/images/product/discovery-footer-image-small.svg?806669669f93');
  }
}
/*****************************
 * CLIENTS PAGE
 * ***************************/
#body-clients {
  background-color: #fff;
}
.sidebar-options-list.clients > li:not(:last-child) {
  padding: 0 0 20px 0;
}
.sidebar-options-list.clients > li#securities-firms-option:before {
  content: url("/static/images/clients/clients-securities-firms-logo.svg?806669669f93");
  top: 4px;
}
.sidebar-options-list.clients > li#securities-firms-option.selected:before {
  content: url("/static/images/clients/clients-securities-firms-selected-logo.svg?806669669f93");
}
.sidebar-options-list.clients > li#fund-managers-option:before {
  content: url("/static/images/clients/clients-fund-managers-logo.svg?806669669f93");
  top: 6px;
}
.sidebar-options-list.clients > li#fund-managers-option.selected:before {
  content: url("/static/images/clients/clients-fund-managers-selected-logo.svg?806669669f93");
}
.sidebar-options-list.clients > li#institutional-investors-option:before {
  content: url("/static/images/clients/clients-institutional-investors-logo.svg?806669669f93");
  top: 6px;
}
.sidebar-options-list.clients > li#institutional-investors-option.selected:before {
  content: url("/static/images/clients/clients-institutional-investors-selected-logo.svg?806669669f93");
}
.sidebar-options-list.clients > li#corporate-issuers-option:before {
  content: url("/static/images/clients/clients-corporate-issuers-logo.svg?806669669f93");
  top: 6px;
}
.sidebar-options-list.clients > li#corporate-issuers-option.selected:before {
  content: url("/static/images/clients/clients-corporate-issuers-selected-logo.svg?806669669f93");
}
.clients-body {
  padding: 30px 30px 0 30px;
  background-color: #fff;
}
.clients-body h3 {
  font-family: Roboto, Helvetica, sans-serif;
  padding: 0 0 60px 0;
  font-size: 32px;
  font-weight: 300;
  color: #333;
}
.clients-body > span {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.clients-body > span:not(.selected) {
  display: none;
}
.clients-body hr {
  margin: 60px 0 0 0;
  border-top: 2px solid #eeeeee;
}
@media only screen and (max-width : 991px) {
  .clients-body {
    width: 100%;
    border-left: 0px;
    padding: 30px 20px 0 20px;
  }
  .clients-body #securities-firms-text:before {
    content: url("/static/images/clients/clients-securities-firms-selected-logo.svg?806669669f93");
    line-height: 5;
  }
  .clients-body #fund-managers-text:before {
    content: url("/static/images/clients/clients-fund-managers-selected-logo.svg?806669669f93");
    line-height: 5;
  }
  .clients-body #institutional-investors-text:before {
    content: url("/static/images/clients/clients-institutional-investors-selected-logo.svg?806669669f93");
    line-height: 5;
  }
  .clients-body #corporate-issuers-text:before {
    content: url("/static/images/clients/clients-corporate-issuers-selected-logo.svg?806669669f93");
    line-height: 5;
  }
}
/******************************
 * TEAM PAGE
 * ****************************/
#body-team {
  background-color: #fff;
}
.team-body {
  padding: 15px 0 0 0;
}
.team-body hr {
  margin: 60px 30px 0 30px;
  border-top: 2px solid #eeeeee;
}
.sidebar-options-list.team > li:not(:last-child) {
  padding: 0 0 10px 0;
}
.sidebar-options-list.team > li.options-category {
  cursor: default;
  font-weight: 500;
  color: #333;
}
.sidebar-options-list.team > li.options-category#people-category:before {
  content: url("/static/images/team/people-options-category-logo.svg?806669669f93");
  top: 3px;
}
.sidebar-options-list.team > li.options-category#location-category:before {
  content: url("/static/images/team/locations-options-category-logo.svg?806669669f93");
  top: 3px;
}
.sidebar-options-list.team > li.options-category:not(:first-child) {
  margin-top: 10px;
}
.sidebar-options-list.team > li:not(.logo-option) {
  margin-left: 44px;
}
.team-cards {
  margin-left: 15px;
}
.team-card {
  position: relative;
  width: 200px;
  height: 220px;
  margin: 15px;
  display: inline-block;
  background-color: #fafafa;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  border-radius: 2px;
}
.team-card .pic-wrapper {
  width: 100px;
  height: 100px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: 20px auto 10px auto;
}
.team-card .pic-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.team-card .pic-caption {
  text-align: center;
}
.team-card .pic-caption h4 {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}
.team-card .pic-caption span {
  font-size: 14px;
  color: #808080;
  display: block;
  width: 165px;
  margin: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-card .card-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  border-top: 1px solid #ddd;
}
.team-card .card-footer .card-location {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  position: relative;
  top: 2px;
}
.team-card .card-footer .card-location:before {
  content: url("/static/images/location-logo.svg?806669669f93");
  padding: 0 10px;
  position: relative;
  top: 5px;
}
.team-card .card-footer .linkedin-logo {
  float: right;
  position: relative;
  top: 8px;
  right: 10px;
}
.team-card .card-footer .linkedin-logo:after {
  content: url("/static/images/team/linkedin-logo.png?806669669f93");
}
.team-card:hover {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.14), 0 4px 8px 0 rgba(0, 0, 0, 0.28);
}
.team-card:hover .pic-wrapper {
  border: 5px solid #4990e2;
}
.team-card:hover .linkedin-logo:after {
  content: url("/static/images/team/linkedin-logo-focused.png?806669669f93");
}
.team-card.rep .pic-wrapper:after {
  content: url("/static/images/team/registered-rep-logo.svg?806669669f93");
  position: relative;
  left: 72px;
  bottom: 23px;
}
.team-card.hidden {
  display: none;
}
/******************************
 * CAREERS PAGE
 * ****************************/
.careers-body {
  width: 1160px;
  margin: auto;
  margin-top: 140px;
  margin-bottom: 100px;
  background-image: url('/static/images/careers/careers-background-image.svg?806669669f93');
  background-repeat: no-repeat;
  background-position: center top;
}
@media only screen and (max-width: 1199px) {
  .careers-body {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media only screen and (min-width : 993px) {
  .careers-body {
    background-size: 620px 528px;
    background-position: right top;
  }
}
.careers-header {
  font-size: 32px;
  font-weight: 300;
  color: rgba(30, 30, 30, 0.87);
  margin-bottom: 46px;
}
.careers-description {
  font-family: 'Roboto Mono';
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 120px;
}
.careers-images {
  margin-bottom: 100px;
}
.careers-image {
  padding: 0 4px 4px 0 !important;
}
.careers-image img {
  position: relative;
  width: 100%;
  height: auto;
}
.careers-image .careers-image-1 {
  content: url("/static/images/careers/careers-image-1.svg");
}
.careers-image .careers-image-2 {
  content: url("/static/images/careers/careers-image-2.svg");
}
.careers-image .careers-image-3 {
  content: url("/static/images/careers/careers-image-3.svg");
}
@media only screen and (max-width : 991px) {
  .careers-image {
    padding: 0 !important;
  }
}
.life-in-zanbato-section {
  margin-bottom: 50px;
}
.life-in-zanbato-box {
  margin-bottom: 50px;
}
.life-in-zanbato-box h5 {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  margin-bottom: 25px;
}
.life-in-zanbato-box p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(30, 30, 30, 0.87);
}
.life-in-zanbato-box:not(:last-child) {
  padding-right: 50px;
}
.open-positions-box {
  border: 1px solid #ddd;
  border-radius: 2px;
  margin: 0 10px 10px 0;
}
.open-positions-box .open-positions-box-content {
  background-color: #fff;
  padding: 22px 20px 20px 20px;
}
.open-positions-box .open-positions-box-content h5 {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.open-positions-box .open-positions-box-content h3 {
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 21px;
  color: rgba(0, 0, 0, 0.7);
}
.open-positions-box .open-positions-box-footer {
  background-color: #fafafa;
  padding: 8px 14px 8px 8px;
  border-top: 1px solid #ddd;
}
.open-positions-box .open-positions-box-footer p {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
}
.open-positions-box .open-positions-box-footer p:before {
  content: url("/static/images/location-logo.svg?806669669f93");
  padding: 0 10px;
  position: relative;
  top: 5px;
}
.open-positions-box .open-positions-box-footer a {
  position: relative;
  bottom: 20px;
  float: right;
  margin-bottom: -20px;
  font-weight: 500;
  text-transform: uppercase;
}
/***************
 * CONTACT MODAL
 * ****************/
.modal-content {
  border-radius: 4px;
}
.modal-header {
  border-bottom: 0px;
}
.modal-header h3 {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
.modal-header h4 {
  color: rgba(0, 0, 0, 0.6);
  font-family: Roboto, Helvetica, sans-serif;
  font-size: 14px;
}
.modal-footer {
  border-top: 0px;
}
@media (min-width: 768px) {
  .modal-body,
  .modal-header {
    padding: 20px 32px 0;
  }
}
/********** FANCY INPUTS **********/
.input-group,
.checkbox-group,
.rbutton-group {
  position: relative;
  padding-top: 4px;
  margin: 40px 0 24px;
  width: 100%;
}
.input-group input,
.input-group textarea {
  font-size: 14px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
  box-sizing: border-box;
  background: none;
}
.input-group textarea {
  height: 100px;
  line-height: 1.5;
}
.input-group input:focus,
.alt-input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  outline: none;
}
.input-group label {
  color: rgba(0, 0, 0, 0.54);
  font-size: 18px;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
}
/* active state */
.input-group input:focus ~ label,
.input-group.form-input-filled input ~ label,
.input-group textarea:focus ~ label,
.input-group.form-input-filled textarea ~ label,
.input-group select:focus ~ label,
.input-group.form-input-filled select ~ label,
.input-group input[type=file] ~ label {
  top: -20px;
  font-size: 12px;
  color: #2196f3;
}
.bar {
  position: relative;
  display: block;
  /*max-width: 415px;*/
  width: 100%;
}
.bar:before,
.bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #2196f3;
  transition: 0.2s ease all;
}
.bar:before {
  left: 50%;
}
.bar:after {
  right: 50%;
}
/* active state */
.input-group input:focus ~ .bar:before,
.input-group input:focus ~ .bar:after,
.alt-input-group input:focus ~ .bar:before,
.alt-input-group input:focus ~ .bar:after,
.input-group textarea:focus ~ .bar:before,
.input-group textarea:focus ~ .bar:after,
.input-group select:focus ~ .bar:before,
.input-group select:focus ~ .bar:after {
  width: 50%;
}
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
/* active state */
.input-group input:focus ~ .highlight,
.input-group textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  -o-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}
.input-group.form-input-filled input:focus:invalid,
.input-group.form-input-filled textarea:focus:invalid,
.input-group.form-input-filled input:focus:valid,
.input-group.form-input-filled textarea:focus:valid {
  outline: none;
}
.input-group.form-input-filled input:invalid ~ .bar:before,
.input-group.form-input-filled textarea:invalid ~ .bar:before,
.input-group.form-input-filled input:invalid ~ .bar:after,
.input-group.form-input-filled textarea:invalid ~ .bar:after {
  width: 50%;
  background: #f44336;
}
.input-group.form-input-filled input:valid ~ .bar:before,
.input-group.form-input-filled textarea:valid ~ .bar:before,
.input-group.form-input-filled input:valid ~ .bar:after,
.input-group.form-input-filled textarea:valid ~ .bar:after {
  width: 50%;
  background: #4caf50;
}
.input-group .error-message {
  display: block;
  font-size: 12px;
  color: #F44336;
  margin-top: 8px;
}
.input-group .success-message {
  display: block;
  font-size: 12px;
  color: #4CAF50;
  margin-top: 8px;
}
.input-group input[type="text"]:disabled {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.24);
}
.input-group input[type="text"]:disabled ~ label {
  color: rgba(0, 0, 0, 0.24);
}
.input-group select {
  border: none;
  outline: none;
  background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHlJREFUeNpiYBgFo2AU0BwwEpAvAGIpAmqeAfEEXJJMBDSvAuLveOS/Q9XgBMwELPgMxF+AWBuH/HogvonPACYigvEMEF/FIn4VKsdAqQWwoHqPxH9PKGhItQAU1guR+AsJxA3RcYAeHyBwD4gvjmbAUTAKiAcAAQYAtq4VMgjrmdoAAAAASUVORK5CYII=") 100% 50% no-repeat;
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #757575;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/********** BUTTONS **********/
.btn {
  height: 32px;
  padding: 0 12px;
  line-height: 32px;
  border-radius: 2px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.btn-default {
  color: rgba(0, 0, 0, 0.54);
  background: #ffffff;
}
.btn-default:hover {
  background: #f5f5f5;
}
.btn-primary {
  border: none;
  background: #2196F3;
}
.btn-primary:hover {
  background: #1E88E5;
}
.btn-primary:active {
  background: #1976D2;
}
/********** PAGE NOT FOUND **********/
.page-not-found {
  margin: 48px 0;
}
