.toggleIcon {
  position: absolute;
  left: 15px;
  margin-top: 5px; }
  .toggleIcon svg {
    font-size: 30px;
    color: #fff; }

.activeMenu {
  color: #f58220 !important; }
  .activeMenu:after {
    color: #f58220;
    transform: scaleX(1); }
  .activeMenu span {
    color: #f58220; }

.menu ul {
  list-style-type: none;
  padding-top: 30px;
  margin-bottom: 0; }
  .menu ul li {
    display: inline-block;
    text-align: left;
    margin-left: 20px;
    position: relative; }
    .menu ul li:hover {
      cursor: pointer; }
      .menu ul li:hover span {
        color: #f58220; }
      .menu ul li:hover ul {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        z-index: 2; }
    .menu ul li span {
      color: #fff;
      text-transform: uppercase;
      font-family: "tpb_neo_sansregular";
      font-size: 16px;
      position: relative;
      z-index: 2; }
    .menu ul li a {
      font-family: "tpb_neo_sansregular";
      font-size: 16px;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: all 0.2s;
      text-transform: uppercase; }
      .menu ul li a:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -3px;
        height: 2px;
        background-color: #f58220;
        transform: scaleX(0);
        transition: all 0.2s; }
      .menu ul li a:hover {
        color: #f58220; }
        .menu ul li a:hover:after {
          color: #f58220;
          transform: scaleX(1); }

.sidebarContainer {
  position: fixed;
  z-index: 2; }

.sidebarItem {
  position: relative;
  display: block;
  padding: 5px 15px 3px;
  color: #5e2e86;
  font-size: 14px;
  font-family: "tpb_neo_sansbold";
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 0;
  opacity: 0.7;
  margin-bottom: 5px; }
  .sidebarItem:hover {
    color: #f58220; }
  .sidebarItem:before {
    top: 0;
    left: 0;
    right: 6px;
    bottom: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    transform-origin: left center;
    z-index: -1; }

.activeSidebarItem {
  position: relative;
  display: block;
  padding: 5px 15px 3px;
  color: #5e2e86;
  font-size: 14px;
  font-family: "tpb_neo_sansbold";
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 0;
  opacity: 0.7;
  margin-bottom: 5px;
  color: #f58220;
  opacity: 1; }
  .activeSidebarItem:hover {
    color: #f58220; }
  .activeSidebarItem:before {
    top: 0;
    left: 0;
    right: 6px;
    bottom: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    transform-origin: left center;
    z-index: -1; }

@media screen and (max-width: 959px) {
  .sidebarItem {
    text-align: center; }
  .activeSidebarItem {
    text-align: center; }
  .menu {
    margin-top: 20px; }
    .menu > ul > li {
      margin-bottom: 20px; }
    .menu ul {
      padding: 0;
      margin: 0; }
      .menu ul li {
        display: block; }
        .menu ul li a,
        .menu ul li span {
          color: #fff;
          font-family: "tpb_neo_sansbold"; }
        .menu ul li:after {
          display: none; }
  .hasChild:focus > ul {
    max-height: 100px; }
  .subMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s; }
    .subMenu li {
      margin-bottom: 5px; }
  .subToggler {
    display: block; }
    .subToggler:after {
      content: "";
      width: 0;
      height: 0;
      border-width: 5px;
      border-color: transparent transparent transparent #fff;
      border-style: solid;
      display: inline-block;
      margin-left: 10px;
      position: relative;
      top: -2px;
      opacity: 0.8; }
  .expanded + ul {
    margin-top: 7px;
    max-height: 200px; }
  .expanded:after {
    border-color: #fff transparent transparent transparent;
    top: 0; }
  .sidebarContainer {
    left: 0;
    right: 0;
    top: 120px;
    background-color: #f2edf8;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    max-height: 40px;
    overflow: hidden;
    transition: max-height 0.3s; }
  .sidebarToggler {
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 34px;
    text-align: right;
    width: 100%;
    border: 0;
    background: none;
    z-index: 1;
    color: #9255c5;
    padding-top: 3px; }
    .sidebarToggler:focus {
      outline: 0; }
  .sidebarExpanded {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s linear; }
    .sidebarExpanded a {
      display: block; }
    .sidebarExpanded button {
      z-index: 0; }
  .sidebarItem {
    text-align: center;
    display: none; }
  .activeSidebarItem {
    display: block; } }

@media screen and (min-width: 960px) {
  .menu > ul {
    padding-top: 28px; }
    .menu > ul > li {
      margin-bottom: 0; }
      .menu > ul > li > div {
        padding-top: 60px; }
      .menu > ul > li:before {
        content: "|";
        color: #f2edf8;
        font-family: "Helvetica Neue, Helvetica, Arial, Sans Serif;";
        margin-right: 20px;
        font-size: 12px;
        position: relative;
        top: -3px; }
      .menu > ul > li:first-child:before {
        display: none; }
  ul.subMenu {
    border-radius: 0 0 5px 5px;
    position: absolute;
    margin: 0;
    background: #fff;
    will-change: transform;
    border: 1px solid #f2edf8;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    top: 64px;
    width: 260px;
    padding: 10px 0 5px;
    z-index: -2;
    box-shadow: 1px 4px 3px rgba(0, 0, 0, 0.3); }
    ul.subMenu:before {
      content: "";
      top: -46px;
      left: 0;
      right: 0;
      height: 60px;
      position: absolute; }
    ul.subMenu li {
      display: block;
      margin-bottom: 5px; }
      ul.subMenu li > a {
        font-size: 14px;
        color: #5e2e86;
        text-transform: uppercase;
        font-family: "tpb_neo_sansregular"; }
  .sidebarContainer {
    top: 90px;
    color: inherit;
    right: auto;
    width: 300px;
    z-index: 0;
    box-shadow: none;
    background-color: transparent; }
  .sidebar {
    height: 100vh;
    display: block;
    padding: 35px 0 0 0;
    position: relative;
    margin-left: -30px;
    margin-right: 40px; }
    .sidebar:before {
      top: 0;
      left: 15px;
      right: 0;
      bottom: 0;
      content: "";
      z-index: -2;
      position: absolute;
      background: linear-gradient(to bottom, #f58220 0%, #ffffff 100%); }
    .sidebar:after {
      top: 0;
      left: 0;
      right: 10px;
      bottom: 10px;
      content: "";
      z-index: -1;
      position: absolute;
      background: linear-gradient(to bottom, #f2edf8 0%, #ffffff 100%); }
  .activeSidebarItem:before {
    transform: scaleX(1); } }

.switcher {
  position: relative;
  top: 12px;
  z-index: 9; }

.button {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
  transform: scale(0.8);
  position: relative;
  transition: all 0.3s; }
  .button img {
    margin: 0; }
  .button:focus {
    outline: none; }

.selected {
  opacity: 1;
  transform: none;
  z-index: 1; }

@media screen and (min-width: 960px) {
  .switcher {
    text-align: right;
    top: 20px;
    z-index: 2;
    position: relative;
    height: 36px;
    width: 68px;
    float: right; }
    .switcher:hover button {
      transform: scale(0.8) translateX(0); }
      .switcher:hover button:first-child {
        transform: scale(0.8) translateX(-40px); }
  .button {
    width: 36px;
    height: 36px;
    position: absolute;
    right: 0;
    transform: scale(0.7) translateX(-30px); }
  .selected {
    transform: scale(1) translateX(0);
    box-shadow: 1px 2px 3px #333;
    border-radius: 10px; } }

@media screen and (max-width: 959px) {
  .switcher {
    width: 64px;
    float: right; } }

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 90px;
  background-color: #5e2e86;
  z-index: 9; }
  .header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-image: url("/static/assets/images/tps-menu-p.png");
    bottom: -8px;
    left: 0;
    right: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 18px;
    z-index: -1; }

.logo {
  width: 125px;
  margin-top: 17px; }

@media screen and (max-width: 959px) {
  .header {
    height: 70px; }
    .header:after {
      background-position: left center; }
  .logo {
    width: 75px; } }

.socialLink {
  display: inline-block;
  cursor: pointer;
  width: 48px;
  opacity: 0.7;
  transition: all 0.3s; }
  .socialLink:hover {
    opacity: 1; }
  .socialLink a {
    display: block; }
  .socialLink img {
    margin: 0; }

.footer {
  background-color: #f2edf8;
  padding: 20px 0;
  position: relative; }
  .footer:before {
    content: "";
    height: 2px;
    background-color: #f58220;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; }
  .footer p {
    color: #5e2e86;
    text-align: center;
    margin-bottom: 0;
    font-size: 14px; }

@media screen and (max-width: 959px) {
  .footer {
    padding-bottom: 10px; }
  .socialLinks {
    margin-top: 10px; } }

@media screen and (min-width: 960px) {
  .footer p {
    text-align: left; }
  .socialLinks {
    padding-right: 70px; } }

.menu-column {
  max-width: max-content !important; }

@media screen and (max-width: 600px) {
  .menu-column {
    max-width: inherit !important; } }

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

progress {
  vertical-align: baseline; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active,
a:hover {
  outline-width: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: inherit;
  font-weight: bolder; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0; }

optgroup {
  font-weight: 700; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button; }

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0; }

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

html {
  font: 112.5%/1.45em georgia, serif;
  box-sizing: border-box;
  overflow-y: scroll; }

* {
  box-sizing: inherit; }

*:before {
  box-sizing: inherit; }

*:after {
  box-sizing: inherit; }

body {
  color: rgba(0, 0, 0, 0.8);
  font-family: georgia, serif;
  font-weight: normal;
  word-wrap: break-word;
  font-kerning: normal;
  -moz-font-feature-settings: "kern", "liga", "clig", "calt";
  -ms-font-feature-settings: "kern", "liga", "clig", "calt";
  -webkit-font-feature-settings: "kern", "liga", "clig", "calt";
  font-feature-settings: "kern", "liga", "clig", "calt"; }

img {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; }

h1 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-size: 2.25rem;
  line-height: 1.1; }

h2 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-size: 1.62671rem;
  line-height: 1.1; }

h3 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-size: 1.38316rem;
  line-height: 1.1; }

h4 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
  line-height: 1.1; }

h5 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-size: 0.85028rem;
  line-height: 1.1; }

h6 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  font-size: 0.78405rem;
  line-height: 1.1; }

hgroup {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

ul {
  margin-left: 1.45rem;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  list-style-position: outside;
  list-style-image: none; }

ol {
  margin-left: 1.45rem;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  list-style-position: outside;
  list-style-image: none; }

dl {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

dd {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

p {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

figure {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

pre {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 1.45rem;
  font-size: 0.85rem;
  line-height: 1.42;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  overflow: auto;
  word-wrap: normal;
  padding: 1.45rem; }

table {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem;
  font-size: 1rem;
  line-height: 1.45rem;
  border-collapse: collapse;
  width: 100%; }

fieldset {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

blockquote {
  margin-left: 1.45rem;
  margin-right: 1.45rem;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

form {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

noscript {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

iframe {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

hr {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: calc(1.45rem - 1px);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  height: 1px; }

address {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 1.45rem; }

b {
  font-weight: bold; }

strong {
  font-weight: bold; }

dt {
  font-weight: bold; }

th {
  font-weight: bold; }

li {
  margin-bottom: calc(1.45rem / 2); }

ol li {
  padding-left: 0; }

ul li {
  padding-left: 0; }

li > ol {
  margin-left: 1.45rem;
  margin-bottom: calc(1.45rem / 2);
  margin-top: calc(1.45rem / 2); }

li > ul {
  margin-left: 1.45rem;
  margin-bottom: calc(1.45rem / 2);
  margin-top: calc(1.45rem / 2); }

blockquote *:last-child {
  margin-bottom: 0; }

li *:last-child {
  margin-bottom: 0; }

p *:last-child {
  margin-bottom: 0; }

li > p {
  margin-bottom: calc(1.45rem / 2); }

code {
  font-size: 0.85rem;
  line-height: 1.45rem; }

kbd {
  font-size: 0.85rem;
  line-height: 1.45rem; }

samp {
  font-size: 0.85rem;
  line-height: 1.45rem; }

abbr {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help; }

acronym {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help; }

abbr[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help;
  text-decoration: none; }

thead {
  text-align: left; }

td,
th {
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-feature-settings: "tnum";
  -moz-font-feature-settings: "tnum";
  -ms-font-feature-settings: "tnum";
  -webkit-font-feature-settings: "tnum";
  padding-left: 0.96667rem;
  padding-right: 0.96667rem;
  padding-top: 0.725rem;
  padding-bottom: calc(0.725rem - 1px); }

th:first-child,
td:first-child {
  padding-left: 0; }

th:last-child,
td:last-child {
  padding-right: 0; }

tt,
code {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  font-family: "SFMono-Regular", Consolas, "Roboto Mono", "Droid Sans Mono", "Liberation Mono", Menlo, Courier, monospace;
  padding: 0;
  padding-top: 0.2em;
  padding-bottom: 0.2em; }

pre code {
  background: none;
  line-height: 1.42; }

code:before,
code:after,
tt:before,
tt:after {
  letter-spacing: -0.2em;
  content: " "; }

pre code:before,
pre code:after,
pre tt:before,
pre tt:after {
  content: ""; }

@media only screen and (max-width: 480px) {
  html {
    font-size: 100%; } }

@font-face {
  font-family: "tpb_neo_sansregular";
  src: url("/static/assets/fonts/TPBNeoSans-webfont.eot?#iefix") format("embedded-opentype"), url("/static/assets/fonts/TPBNeoSans-webfont.woff") format("woff"), url("/static/assets/fonts/TPBNeoSans-webfont.ttf") format("truetype"), url("/static/assets/fonts/TPBNeoSans-webfont.svg") format("svg"), url("/static/assets/fonts/TPBNeoSans-webfont.svg#tpb_neo_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "tpb_neo_sansbold";
  src: url("/static/assets/fonts/TPBNeoSans_Bold-webfont.eot?#iefix") format("embedded-opentype"), url("/static/assets/fonts/TPBNeoSans_Bold-webfont.woff") format("woff"), url("/static/assets/fonts/TPBNeoSans_Bold-webfont.ttf") format("truetype"), url("/static/assets/fonts/TPBNeoSans_Bold-webfont.svg#tpb_neo_sansbold") format("svg");
  font-weight: normal;
  font-style: normal; }

body {
  /* font-family: Helvetica Neue, Helvetica, Arial, Sans Serif; */
  font-family: "tpb_neo_sansregular";
  font-size: 16px; }

.main {
  padding-top: 70px; }

@media screen and (min-width: 960px) {
  .main {
    padding-top: 90px; } }

table {
  table-layout: fixed;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px; }

.tg {
  border-collapse: collapse;
  border-spacing: 0; }

.tg td {
  font-size: 14px;
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  /* overflow: hidden; */
  max-width: 100vw;
  word-break: normal;
  border-color: #f2edf8; }

.tg th {
  font-size: 14px;
  font-family: "tpb_neo_sansbold";
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
  border-color: #f2edf8;
  background-color: #652d89;
  color: #fff; }

.tg .tg-c3ow {
  border-color: inherit;
  text-align: center; }

.tg .tg-0pky {
  border-color: inherit;
  text-align: left;
  vertical-align: top; }

/* slider overrides */
.slick-slider {
  width: 100%; }

.slick-initialized .slick-slide > div > div {
  outline: none; }

.slick-next:before,
.slick-prev:before {
  font-size: 30px; }

.slick-next {
  right: 30px; }

.slick-prev {
  left: 20px;
  z-index: 1; }

.slick-slide img {
  margin: 0; }

.slick-dots {
  bottom: 20px; }

.slick-dots li button:before {
  font-size: 10px;
  color: #fff; }

.slick-dots li.slick-active button:before {
  color: #fff; }

.MuiPaper-elevation1 {
  box-shadow: none; }

.topNewsContainer {
  width: 800px; }

.quickLinks {
  margin-top: 50px;
  margin-bottom: 50px; }
  .quickLinks a {
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 20px;
    transition: all 0.3s;
    background-color: #f2edf8;
    color: #f58220; }
    .quickLinks a:hover {
      background-color: rgba(94, 46, 134, 0.5); }
      .quickLinks a:hover svg {
        color: #fff; }
      .quickLinks a:hover span {
        color: #fff; }
    .quickLinks a img {
      height: 80px;
      margin-bottom: 0; }
  .quickLinks span {
    display: block;
    font-size: 20px;
    font-family: "tpb_neo_sansregular";
    margin-top: 15px; }

@media screen and (max-width: 720px) {
  .quickLinks {
    margin-top: 24px;
    margin-bottom: 24px; } }

@media screen and (max-width: 480px) {
  .quickLinks {
    margin-top: 16px;
    margin-bottom: 16x; } }

.tableContainer {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.standalonePage h2 {
  font-family: "tpb_neo_sansbold";
  font-size: 22px;
  text-transform: uppercase;
  color: #f58220; }

.widget {
  margin-bottom: 80px;
  padding-right: 40px; }
  .widget p {
    position: relative;
    margin-bottom: 10px; }
    .widget p a {
      color: rgba(0, 0, 0, 0.8); }
    .widget p span {
      display: inline-block;
      padding-left: 35px; }
    .widget p svg {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 24px; }

.leftContent {
  padding-top: 30px; }

.rightContent input[type="file"] {
  color: rgba(0, 0, 0, 0.54);
  font-size: 16px; }

.pageContent {
  padding-top: 115px;
  padding-bottom: 50px;
  min-height: calc(100vh - 180px);
  overflow: auto; }
  .pageContent img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    height: auto; }
  .pageContent h2 {
    font-family: "tpb_neo_sansbold";
    font-size: 24px;
    text-transform: uppercase;
    color: #f58220;
    margin-top: 5px;
    margin-bottom: 40px;
    line-height: 28px;
    text-align: center;
    position: relative; }
    .pageContent h2 span {
      font-size: 12px;
      color: #4a4a4a;
      display: block;
      font-family: "tpb_neo_sansregular";
      font-weight: normal; }
    .pageContent h2:before {
      content: "";
      height: 0;
      border-width: 10px;
      position: absolute;
      left: 0;
      height: 2px;
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f58220+50,ffffff+100 */
      background: #ffffff;
      /* Old browsers */
      background: -moz-linear-gradient(left, #ffffff 0%, #f58220 50%, #ffffff 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(left, #ffffff 0%, #f58220 50%, #ffffff 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, #ffffff 0%, #f58220 50%, #ffffff 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
      /* IE6-9 */
      right: 0;
      bottom: -9px; }
  .pageContent h3 {
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 10px; }
    .pageContent h3 strong {
      font-family: "tpb_neo_sansbold"; }
  .pageContent p,
  .pageContent .reportContent {
    margin-bottom: 10px;
    line-height: 22px;
    font-size: 16px;
    text-align: justify; }
    .pageContent p + h3,
    .pageContent .reportContent + h3 {
      margin-top: 30px; }
    .pageContent p + h2,
    .pageContent .reportContent + h2 {
      margin-top: 70px; }
    .pageContent p em,
    .pageContent .reportContent em {
      margin-top: 20px; }
    .pageContent p a,
    .pageContent .reportContent a {
      color: #f58220;
      text-decoration: none; }
      .pageContent p a:hover,
      .pageContent .reportContent a:hover {
        text-decoration: underline; }
    .pageContent p ul,
    .pageContent .reportContent ul {
      margin-top: 7px;
      margin-bottom: 23px; }
  .pageContent ul li a {
    text-decoration: none;
    color: #f58220; }

.branchSelector button {
  appearance: none;
  background-color: #aa7bd2;
  border: none;
  color: #fff;
  padding: 5px 10px 7px;
  margin-right: 20px; }
  .branchSelector button:hover {
    background-color: #5e2e86;
    cursor: pointer; }
  .branchSelector button:focus {
    outline: none; }

button.selectedBranch {
  background-color: #5e2e86; }

@media screen and (min-width: 960px) {
  .leftContent {
    position: relative;
    height: 100%;
    z-index: 0;
    padding-top: 50px; }
    .leftContent:before {
      z-index: -1;
      content: "";
      position: absolute;
      background-color: #652d89;
      top: 0;
      bottom: 0;
      right: 0;
      left: -1000px; }
  .rightContent {
    padding: 50px 30px;
    position: relative; }
    .rightContent:before {
      content: "";
      position: absolute;
      left: -40px;
      top: 40vh;
      bottom: 0;
      width: 0;
      height: 0;
      border-width: 20px;
      border-style: solid;
      border-color: transparent #fff transparent transparent; }
  .pageContent {
    padding-top: 75px; }
  .widget p {
    color: #fff; }
    .widget p a {
      color: #fff;
      text-decoration: underline; }
  .widget h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: normal;
    font-family: "tpb_neo_sansregular"; }
  .branchSelector {
    margin-bottom: 20px; } }

@media screen and (max-width: 959px) {
  .branchSelector {
    margin-top: 30px; } }

.homeSearchButton {
  border-radius: 100%;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #f58220;
  cursor: pointer; }
  .homeSearchButton .MuiInput-underline::after {
    border-color: #f58220; }
  .homeSearchButton.expanded {
    cursor: initial;
    background-color: white;
    border-radius: 4px;
    border: none;
    padding: 4px; }

