/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*** basscss extensions ***/

@media (min-width: 40em) {
  .sm-px2 { padding-left: 1rem; padding-right: 1rem; }
  .sm-px3 { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 52em) {
  .md-px2 { padding-left: 1rem; padding-right: 1rem; }
  .md-px3 { padding-left: 2rem; padding-right: 2rem; }
}

/************************************************/


* {
  box-sizing: border-box;
}
em { font-style: italic; }
strong { font-weight: bold; }
sup, sub {
  font-size: 75%;         /* roughly matches UA default */
  line-height: 0;         /* prevent affecting line height */
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;            /* shift up */
}
sub {
  bottom: -0.25em;        /* shift down */
}


body {
  font-family: Tahoma;
}

.font2 {
  font-family: Rockwell;
}

.xlg-section {
  max-width: 1600px;
  margin: auto;
}

.lg-section {
  max-width: 1200px;
  margin: auto;
}

.md-section {
  max-width: 800px;
  margin: auto;
}

.sm-section {
  max-width: 620px;
  margin: auto;
}

.img-not-full-width img{
  width: unset !important;
  height: unset !important;
}


/* control for different HTML version on mobile */
.hidden {
  display: none;
}

.dflex {
  display: flex;
}

@media (min-width: 640px) {
  .md-hidden {
    display: none;
  }
  .md-dflex {
    display: flex;
  }
}


.ti-page a.standard-link {
  color: #07c;
  text-decoration: underline;
}



/* -------- mobile menu ----------   https://codepen.io/alvarotrigo/pen/RwLGjKq */
nav .m-menu__checkbox {
  display: none;
}
nav label.m-menu__toggle {
  cursor: pointer;
}
nav .m-menu {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 450px;
  width: calc(100vw - 30px);
  height: 100%;
  -moz-transform: translate3d(-450px, 0, 0);
  -o-transform: translate3d(-450px, 0, 0);
  -ms-transform: translate3d(-450px, 0, 0);
  -webkit-transform: translate3d(-450px, 0, 0);
  transform: translate3d(-450px, 0, 0);
  -moz-transition: transform 0.35s;
  -o-transition: transform 0.35s;
  -webkit-transition: transform 0.35s;
  transition: transform 0.35s;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
}
nav .m-menu__overlay {
  background-color: rgba(103, 103, 103, 0.5);
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
  display: none;
}
nav .m-menu__header {
  padding: 0 16px;
  height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
}
nav .m-menu__header span {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
nav .m-menu .m-menu {
  -moz-transform: translate3d(480px, 0, 0);
  -o-transform: translate3d(480px, 0, 0);
  -ms-transform: translate3d(480px, 0, 0);
  -webkit-transform: translate3d(480px, 0, 0);
  transform: translate3d(480px, 0, 0);
}
nav .m-menu ul {
  height: 100%;
  overflow-y: auto;
}
nav .m-menu ul li a, nav .m-menu ul li label {
  display: block;
  text-align: left;
  padding: 0 15px;
  line-height: 47px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  font-size: 1rem;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}
nav .m-menu ul li label.a-label__chevron::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  border-color: #333;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -5px;
  right: 16px;
}
nav .m-menu ul li .-invisible {
  border-bottom: 0;
}
nav .m-menu .m-menu label.m-menu__toggle {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  border-bottom: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
nav .m-menu__checkbox:checked ~ .m-menu__overlay {
  display: block;
}
nav .m-menu__checkbox:checked ~ .m-menu {
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* ----- end mobile menu ---- */





.ti-page-start {
  margin-top: 40px;
}

/* -- header -- */
.ti-header {
  box-shadow: inset 0px -1px 0px #DFE1E5;
}

.nav-item {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;

  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  min-height: 32px;

  /* identical to box height, or 150% */
  letter-spacing: 0.04em;

  color: rgba(0, 0, 0, 0.8);
}

.ti-selected {
  background: rgba(9, 30, 66, 0.08);
  border-radius: 3px;
}
.nav-item:hover {
  background: rgba(9, 30, 66, 0.08);
  border-radius: 3px;
}

.no-hover:hover {
  background: none;
}

.nav-item a, .nav-item span {
  align-items: center;
  padding: 0.2rem 0.8rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
}

a.logxx { /* login / logout */
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;

  /* identical to box height, or 160% */
  letter-spacing: 0.04em;

  text-decoration: none;
  color: #000000;
}

.btn {
  display: inline-block; /* avoid line breaks */
  padding: 7px 15px;
  border-radius: 3px;

  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.04em;

  text-decoration: none;
  cursor: pointer;
  border: initial; /* remove border from button */
}

.btn:disabled {
  cursor: default;
}

.btn-primary {
  background: #F07F3C;
  color: #FFFFFF;
}

.btn-primary:disabled {
  background: rgba(155, 153, 203, 0.24);
  cursor: initial;
}

.btn-small {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}

.btn-neutral {
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(0, 0, 0, 0.64);
  background: none;
}

.btn-tab {
  font-size: 12px;
  line-height: 16px;
  color: white;
  background: #94C23D;
}

.btn-danger {
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 0, 0, 0.64);
  border: 1px solid rgba(255, 0, 0, 0.64);
  background: none;
}

.btn-close {
  background-color:#eee;
  border: 1px solid gray;
  border-radius: 50%;
  font-size: large;
  line-height: 1em;
  width: 2rem;
  height: 2rem;
  text-align: center;
  cursor: pointer;
}

.pill {
  padding: 4px 8px 2px;
  background: white;
  font-family: Tahoma;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 0.04em;

  text-decoration: none;
  cursor: pointer;
  border: 1px solid #F07F3C;
}
.pill-selected {
  background: #F07F3C;
  color: #FFFFFF;
  font-weight: bold;
}


/** a tag with a close button **/
.text-tag {
  display: inline;
  background: rgba(155, 153, 203, 0.24);
  border-radius: 3px;
  padding: 3px 8px;
  margin-right: 12px;

  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #000000;
}
.text-tag .text-tag-close {
  cursor: pointer;
}


.clamp-2 { /* limit to lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
}

/* menu dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-btn {
  white-space: nowrap;
}
.dropdown-content-out {
  display: none;
  position: absolute;
  z-index: 100;
  padding-top: 1rem;
}
nav .dropdown-content-out { /* only for header menu */
  min-width: 260px;
}

.dropdown-content {
  background: #FAFBFC;
  /* grey / border */
  border: 1px solid #DFE1E5;
  border-radius: 4px;
  padding: 1rem 0;
}
nav .dropdown-content {
  margin-left: -2rem;
}
.dropdown-content a, .dropdown-content span { /* span for disabled content */
  text-align: left;
  text-decoration: none;
  display: block;
  line-height: 20px;
  padding: 0.5rem 2rem;
}
.dropdown-content a:hover {
  color: #F07F3C; /* orange */
  background-color: #E0E0E2;
}

.dropdown:hover .dropdown-content-out {
  display: block;
}

/* for touch-screen - class dropdown-open is added on tab */
.dropdown-open .dropdown-content-out {
  display: block;
}

.ti-warning {
  margin-right: -5px;
  font-weight: normal;
  font-size: 12px;
  color: #ED0505 !important;
  border: 1px solid #ED0505;
  border-radius: 50%;
/*   padding: 0px 5px !important; - why this? */
}

/* -- end header -- */

.ti-message {
  padding: 5px 10px;
  border-radius: 8px;
  background: #FAFBFC;   /* grey / fill */
  border: 1px solid #DFE1E5; /* grey / border */
  line-height: 40px;
}
.ti-message-alert {
  border: 1px solid #ffb08f;
  background-color: #ffefe6;
}

.ti-lightbox {
  cursor: zoom-in;
}

.ti-lightbox-plus {
  text-align: right;
  font-size: 10px;
  line-height: 10px;
  position: relative;
  margin-top: 0px;
  margin-right: 8px;
  z-index: 1;
}

/* -- jumbotron -- */

.jumbotron {
  height: 600px;
  background: linear-gradient(308.63deg, #9B99CB 31.36%, #D299B3 80.65%);
}

.jumbotron-title {
  padding-top: 100px;
  padding-left: 120px;
  color: white;
  font-family: Rockwell;
  font-style: normal;
  font-weight: normal;
  font-size: 60px;
  line-height: 70px;
}

.jumbotron-text {
  padding-top: 40px;
  padding-left: 120px;
  max-width: 600px;

  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;

  /* or 133% */
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

/* -- end jumbotron -- */


/* DEV site indicator ribbon */
.ribbon {
  position: fixed;
  right: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.ribbon span {
  font-size: 15px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#F70505 0%, #8F0808 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; right: -21px;
}
.ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #8F0808;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #8F0808;
}
.ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #8F0808;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #8F0808;
}
/* end ribbon */

/* general */

.ti-color {
  color: #F07F3C;
}

.ti-h2 {
  margin: 0;
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.2rem;
  /* purple light */
  color: #9B99CB;
}

.ti-h3 {
  font-size: 1.25rem;
  line-height: 1.4rem;
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  padding-top: 1rem;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}

.ti-h3t {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  padding-top: 1rem;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}

.ti-h4 {
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  padding-top: 1rem;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}

.ti-h5 {
  font-size: 0.9rem;
  line-height: 1.1rem;
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  padding-top: 1rem;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}


.ti-under {
  margin-top: 12px;
  position: relative;
  height: 0px;
  width: 200px;
  border-bottom: 2px solid #000000;
}

/* mobile */
@media (max-width: 639px) {
  .ti-under {
    right: 10px;  /* space for little square */
    margin-left: auto;
  }
}

@media (min-width: 640px) {
  .ti-under {
    left: 40px;
  }
}

.ti-under:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 200px;
  top: -3px;

  /* orange */
  border: 2px solid #F07F3C;
  box-sizing: border-box;
}


.ti-p {
  max-width: 640px;
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;

  /* or 150% */
  letter-spacing: 0.02em;

  /* black / 100 */
  color: #000000;
}

.ti-p-wide {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;

  /* or 150% */
  letter-spacing: 0.02em;

  /* black / 100 */
  color: #000000;
}

.ti-link {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: 0.04em;

  /* orange */
  color: #F07F3C;
  text-decoration: none;
  cursor: pointer;
}

/* just color for link to be used on titles */
.ti-link-color {
  color: #f07f3c;
  text-decoration: none;
  cursor: pointer;
}

.ti-link-underline:hover {
  text-decoration: underline;
}

.ti-link-thin { /* not bold */
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: 0.04em;

  /* orange */
  color: #F07F3C;
  text-decoration: none;
  cursor: pointer;
}

.ti-link-plain {
  font-family: Tahoma;
  font-style: normal;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #17345a;
  cursor: pointer;
}

.ti-soon {
  font-family: Tahoma;
  font-style: normal;
  font-size: 1rem;
  line-height:20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  color: rgba(240, 127, 60, 0.7); /* faded orange */
  cursor: default;
}

.ti-features-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.02em;

  /* black / 100 */
  color: #000000;
}

.ti-line1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* limit block to 3-lines */
.ti-line3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ti-line5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.ti-note {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.6);
}

.subscribe_banner {
  width: 100%;
  background: #EFEFF7;
  text-align: center;
}
.subscribe_banner h2 {
  font-family: Rockwell;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 0.5em;

  color: rgba(0, 0, 0, 0.8);
}

.subscribe_banner p {
  margin: auto;
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.02em;

  /* black / 80 */
  color: rgba(0, 0, 0, 0.8);
}

.subscribe-btn2 {
  background: #F088B6; /* pink */
  color: black;
}


.home-section h2 {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.2rem;

  /* purple light */
  color: #9B99CB;
}

.latest-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;

  /* identical to box height, or 133% */
  letter-spacing: 0.02em;

  /* black / 80 */
  color: rgba(0, 0, 0, 0.8);
}

.latest-date {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #9B99CB;
}

.btn-more {
  margin: 0 11px;
  color: #F07F3C;
  border: 3px solid #F07F3C;
}

.footer {
  background: #F4F5F7;
}


.footer-main a {
  margin: 24px 0;
  padding-right: 40px;

  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;

  /* identical to box height */
  letter-spacing: 0.02em;

  /* purple light */
  color: #9B99CB;
  display: block;
  text-decoration: none;
}

.footer-sub a, .footer-sub span { /* span used for disabled links */
  margin: 16px 0;
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.02em;

  /* black / 80 */
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  display: block;
}

.footer-copyright {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  padding: 0.5rem 2rem;
}

/* site search */
.site-search { /* should be placed inside relative element */
  position:absolute;
  z-index: 10;
}
.site-search input[type=search] {
  background: #fff url(/static/icons/magnifier-4-16.png) no-repeat 8px center;
  outline: none;
  border: solid 1px #ccc;
  padding: 9px 10px 9px 32px;
  border-radius: 10em;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;

  width: 34px;
  padding-left: 10px;
  color: transparent;
  cursor: pointer;
}
.site-search input[type=search]:hover {
  background-color: #ededed;
}
.site-search input[type=search]:focus {
  width: 240px;
  padding-left: 32px;
  color: #000;
  background-color: #ededed;
  cursor: auto;
}
.site-search input:-moz-placeholder {
  color: transparent;
}
.site-search input::-webkit-input-placeholder {
  color: transparent;
}


/*---------------------- */

.ti-page {
  color: #000000;
}

.ti-page p {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5em;
  padding-bottom: 1em;

  /* or 150% */
  letter-spacing: 0.04em;

  /* black / 100 */
  color: #000000;
}

.ti-page ul, .ti-page ul {
  padding-bottom: 1em;
}

.ti-page p:empty {
  /* WYSIWYG editor people usually add a blank line as paragraph */
  padding: 0;
}


.ti-page h1, .ti-page h2, .ti-page h3, .ti-page h4, .ti-page h5 {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  padding-top: 1em;
  /* identical to box height, or 150% */
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}

.ti-page h1 {
  font-size: 2em;
  line-height: 1.1em;
  padding-bottom: 0.5em;
}
.ti-page h2 {
  font-size: 1.5em;
  line-height: 1.1em;
  padding-bottom: 0.4em;
}
.ti-page h3 {
  font-size: 1.25em;
  line-height: 1.1em;
  padding-bottom: 0.3em;
}
.ti-page h4 {
  font-size: 1em;
  line-height: 1.1em;
  padding-bottom: 0.2em;
}
.ti-page h5 {
  font-size: 0.875em;
  line-height: 1.1em;
  padding-bottom: 0.2em;
}
.ti-page a {
  color: #F07F3C; /* orange */
  text-decoration: none;
}
.ti-page em {
  font-style: italic;
}
.ti-page strong {
  font-weight: 700;
}
.ti-page code {
  font-family: monospace;
}
.ti-page li {
  list-style: initial;
  list-style-type: square;
  list-style-position: inside;
  margin-left: 20px;

  font-weight: normal;
  font-size: 1em;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  text-indent: -1.5em; /* offset in WEBKIT list marker so all lines are aligned. */
}
@-moz-document url-prefix() {
  .ti-page li {
    text-indent: -1.0em; /* offset on Firefox */
  }
}


/* avoid line-break after bullet (because list-style-position=inside) */
.ti-page li p, .ti-page li div {
   display: inline;
}


.ti-page img {
  width: 100%;
  height: auto;
}

/* from quill editor (used on BO for: snippets, regulations, etc) */
.ql-size-small {
  font-size: 0.8em;
}
.ql-size-large {
  font-size: 1.2em;
}
.ql-size-huge {
  font-size: 1.6em;
}

.ql-align-center {
  text-align: center;
}
.ql-align-right {
  text-align: right;
}
.ql-align-justify {
  text-align: justify;
}

.ql-indent-1 {
  padding-left: 3em;
}
.ql-indent-2 {
  padding-left: 6em;
}
.ql-indent-3 {
  padding-left: 9em;
}
.ql-indent-4 {
  padding-left: 12em;
}
.ql-indent-5 {
  padding-left: 15em;
}
.ql-indent-6 {
  padding-left: 18em;
}
.ql-indent-7 {
  padding-left: 21em;
}
.ql-indent-8 {
  padding-left: 24em;
}
.ql-indent-9 {
  padding-left: 27em;
}



/*************************/

.ti-page-intro {
  /* regular / 24 */
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 1.5em;
  line-height: 1.75em;

  /* or 150% */
  letter-spacing: 0.02em;

  /* black / 100 */
  color: #000000;
}

/** Pagination ***********************************/
.pg-select li {
  display: inline-block;
}
.pg-index {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;

  text-align: center;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 2px;

  cursor: pointer;
}
.pg-index a, .pg-index span {
  padding: 2px 4px;
  color: inherit;
  text-decoration: none;
}
.pg-selected {
  color: white;
  background: #F07F3C;
  border-radius: 3px;
}
.pg-disabled {
  color: #A5ADBA;
  cursor: initial;
}


/**** Enquire box - fixed on bottom left. based on https://codeconvey.com/sticky-contact-form/ **/

.ti-enquiry {
  position: fixed;
  right: 0px;
  bottom: 0px;
  transition: all 0.5s ease;
}

.ti-enquiry-btn-box { /* the heading always displayed */
  padding: 15px;
  cursor: pointer;
  border-radius: 6px;
  background-color: #F07F3C;
  color: white;
  margin: 0px 60px 60px 0;;
}

.ti-enquiry-content {
  display: flex;
  padding:30px;
  box-shadow: 0 0 10px #774c2c;
  border-radius: 30px 0 0;
  transition: opacity 1s ease;
  background: white;
}

a.ti-enquiry-box {
  display: block;
  background-color: #F07F3C;
  color: black;
  padding: 10px 16px;
  border-radius: 20px;
  margin-right: 16px;
  text-decoration-line: none;
  width: 240px;
  font-size:24px;
}

.ti-enquiry-box-title {
  color: white;
  padding-bottom: 16px;
  font-family: rockwell;
  font-size:32px;
}

/***********************************************/


.link-wrapper {
  text-decoration: none;
  color: black;
  display: block;
  cursor: pointer;
}


.ti-tags {
  line-height: 40px;
}

.ti-tag {
  display: inline-block;
  padding: 6px;
  margin-right: 12px;
  border-radius: 3px;
  white-space: nowrap;

  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.8);
}

.ti-tag-type {
  background-color: #CCCCCC;
}
.ti-tag-type-low {
  background-color: rgba(204, 204, 204, 0.6);
}

.ti-tag-region {
  background-color: #41C0F0;
}
.ti-tag-region-low {
  background-color: rgba(65, 192, 240, 0.6);
}

.ti-tag-sector, .ti-tag-vertical {
  background-color: #FDC833;
}
.ti-tag-sector-low, .ti-tag-vertical-low {
  background-color: rgba(253, 200, 51, 0.6);
}

.ti-tag-technology {
  background-color: #94C23D;
}

.ti-tag-technology-low {
  background-color: rgba(148, 194, 61, 0.6);
}

.ti-tag-usecase {
  background-color: #F088B6;
}
.ti-tag-usecase-low {
  background-color: rgba(240, 136, 182, 0.6);
}

.ti-tag-low {
  opacity: 0.6;
  font-size: 11px;
  line-height: 11px;
}

.ti-tag-small {
  font-size: 11px;
  line-height: 11px;
}




/* a one-column card (full-width on large screens) */
.ti-card1 {
  display: flex;
  background: #fff;
  line-height: 1.4;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 20px 30px -15px rgba(0,0,0,.13);
  min-height: 250px;
  flex-direction: column;
  width: 100%;

  /* WTF - if removed card will be in front of menu */
  transform: translateY(-1px);
}

.ti-card1:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.18);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.ti-card1-meta { /* photo wrapper */
  position: relative;
  z-index: 0;
  height: 200px;
}

@media only screen and (min-width: 640px) {
  .ti-card1 {
    flex-direction: row;
  }
  .ti-card1-meta {
    flex-basis: 40%;
    height: auto;
  }
}

.ti-card1-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}


.ti-card1-description {
  padding: 2rem;
  background: #fff;
  position: relative;
  z-index: 1;
  flex-basis: 60%;
}

.ti-card1-title {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.65rem;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.8);
  padding-bottom: 1rem;
}

.ti-card1-date {
  color: #b3b3b3;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ti-card1-author {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.8);
}

/***** Internal Content Ad ********/
.ti-content-ad {
  border: 3px solid #F07F3C; /* orange */
  padding: 1em;
}

.ti-content-ad h1, .ti-content-ad h2, .ti-content-ad h3, .ti-content-ad h4 {
  padding-top: 0;
}


/***********************************/
/* used on profile page,  VendorConnect Admin */
.ti-prop-label {
  font-family: Rockwell;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.4rem;
  letter-spacing: 0.02em;
  color: rgba(0,0,0, 0.6);
}

.ti-prop-value {
  font-family: Rockwell;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.4rem;
  letter-spacing: 0.02em;
}

.ti-li {
  font-family: Rockwell;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.4rem;
  letter-spacing: 0.02em;
  color: rgba(0,0,0, 0.8);
}


/************** search side-bar ***/

.ti-search-title, .search-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.04em;
  color: #000000;
}

.ti-link-action, .link-action {
  cursor: pointer;
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #9B99CB; /* purple */
  padding: 0 6px;
  border: 1px solid #9B99CB;
  border-radius: 3px;
}

/******************** recommend for blog/news item page ****/
.ti-rec-seq {
  padding: 20px;
}
.ti-rec-seq-label {
  text-transform: uppercase;
  color: #b3b3b3;
  font-size: 14px;
  padding-bottom: 6px;
}


/**********************************/

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  line-height: 1.4;
  border-radius: 5px;
  z-index: 0;
  height: 100%;
  min-height: 200px;
  border: 1px solid #DFE1E5;
}
.blog-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.18);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.blog-card-meta {
  position: relative;
  z-index: 0;
  height: 240px;
}

.blog-card-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}


.blog-card-description {
  flex-basis: 60%;
  padding: 0 1.5rem;
  background: #fff;
}

@media only screen and (min-width: 640px) {
  .blog-card {
    flex-direction: row;
  }
  .blog-card-meta {
    flex-basis: 40%;
    height: auto;
  }
}


.blog-card-date {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}

.blog-card-date-sm {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}

.blog-card-author {
  font-weight: normal;
}

.blog-card-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  /* black / 80 */
  color: rgba(0, 0, 0, 0.8);
}


.blog-card-intro {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #000000;
}

.blog-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.8);
}


/***** report ****/
.report-card {
  line-height: 1.4;
  border-radius: 5px;
  border: 1px solid #DFE1E5;
}
.report-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.18);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.report-card-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  /* black / 80 */
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
}

.report-card-author {
  font-weight: normal;
  text-decoration: none;
  color: inherit;
}

.report-featured {
  border: 3px solid #F07F3C; /* orange */
}


/***** news ****/
.news-card {
  background: #fff;
  line-height: 1.4;
  border-radius: 5px;
  z-index: 0;
  height: 100%;
  min-height: 200px;
  border: 1px solid #DFE1E5;
}
.news-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.18);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
/* reuse blog style */

.sidebar-card-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.02em;
  /* black / 80 */
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
}


/***** search ***/
.search-card {
  line-height: 1.4;
  border-radius: 5px;
  border: 1px solid #DFE1E5;
}
.search-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.18);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}
.search-card-date {
  font-family: Rockwell;
  font-style: normal;
  font-weight: thin;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.02em;
  /* purple light */
  color: #9B99CB;
}
.search-card-intro {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #000000;

   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
   -webkit-box-orient: vertical;
}


/***** carousel ***/

.ti-carousel-meta {
  position: relative;
  z-index: 0;
  height: 300px;
}

.ti-carousel-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.ti-carousel-overlay {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0, .6);
}

.ti-carousel-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: auto;
  padding: 0 90px; /* size of arrows */
  max-width: 800px;
  color: white;
}

.ti-carousel-title {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  color: white;
}

.ti-carousel-detail {
  flex: 1;
  max-width: 540px;
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: white;
}

.ti-carousel-link {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 24px;

  padding-right: 40%;
  letter-spacing: 0.04em;
  color: white;
  text-decoration: none;
}

@media (min-width: 832px) { /* md */
  .ti-carousel-title {
    font-size: 40px;
    line-height: 48px;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .ti-carousel-detail {
    font-size: 20px;
    line-height: 28px;
  }
  .ti-carousel-link {
    padding-right: 20%;
  }
}


/***** tabs (copied from tam) used on sector pages */
.ti-tabs {
  border-radius: 4px 4px 0px 0px;
  padding: 0 1.2em;
  background: rgb(250, 251, 252);
}

.ti-tabs li{
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  padding: 0.8em 1em;

  cursor: pointer;
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.64);
}

.ti-tabs li a {
  text-decoration: none;
  color: inherit;
}

.ti-tabs li.tab-selected {
  color: #F07F3C; /* orange */
  border-bottom: 3px solid #F07F3C;
  border-radius: 1px;
}

.ti-tabs-content {
  border-top: 1px solid rgb(223, 225, 229);
}

/************* plans & pricing ****/

.ti-plan-connect, .ti-plan-essential {
  background: white;
  color: #FB791E; /* #83CE3E */
}

.ti-plan-prime {
  background: #FFE3D5;
  color: #FB791E;
}

.ti-plan-corporate {
  background: #FB781E;
  color: white;
}

.ti-plan-main {
  padding: 1rem 1rem 0.5rem;
  border-radius: 10px;
  border: 1px solid #CCCCCC;
}

.ti-plan-title {
  font-family: Rockwell;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 2.2rem;
}

.ti-plan-price {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.2rem;
  letter-spacing: 0.06em;
}

.ti-plan-price .ti-plan-period{
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 0.06em;
}

ul.ti-plan-items li {
  padding: 0.5rem 0;
}
.ti-plan-check {
  line-height: 1rem;
  font-size: 1.5rem;
  padding-right: 0.6rem;
}
.ti-plan-note {
  font-size: 0.8rem;
  line-height: 0.85rem;
}

.ti-plan-description {
  font-size: 0.8rem;
  line-height: 0.85rem;
  margin-top: 0.75rem;
  min-height: 100px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #CCCCCC;
}


/********** profile page ******/

.ti-card-profile {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
  min-height: 200px;
  flex-direction: row;
}

.ti-profile-avatar {
  width: 150px;
  height: 150px;
  background-color: grey;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.ti-card-profile-name {
  padding: 1rem 0;

  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: 0.02em;
  color: #000000;
}

.ti-card-profile-role {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.04em;
  color: #9B99CB;
}


.ti-access-matrix th {
  font-family: Tahoma;
  font-size: 12px;
}

.ti-access-matrix tbody tr:hover {
  background-color: #ffa;
}

.table-header-rotated {
  border-collapse: collapse;
}
.table-header-rotated td {
  width: 30px;
}
.table-header-rotated td {
  text-align: center;
  padding: 5px 5px;
  border: 1px solid #ccc;
}
.table-header-rotated th.rotate {
  height: 140px;
  white-space: nowrap;
}
.table-header-rotated th.rotate > div {
  transform: translate(17px, 115px) rotate(315deg);
  width: 30px;
}
.table-header-rotated th.rotate > div > span {
  border-bottom: 1px solid #ccc;
  padding: 5px 0px;
}
.table-header-rotated th.row-header {
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.col-odd {
  background: RGBA(207, 207, 207, 0.3);
}

/**************** signup / login ***********/

.ti-login {
  /* purple light */
  background: #9B99CB;;
}

.ti-login-p {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  letter-spacing: 0.04em;
  color: #000000;
}

.ti-login-forgot {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.04em;
}

.ti-login-forgot a {
  color: rgba(0, 0, 0, 0.64);
  text-decoration-line: underline;
}

.ti-form-main { /* whole page forms, i.e. signup & login */
  background: white;
  border-radius: 3px;
  padding: 40px;
  max-width: 400px;
}

.ti-form label {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.9);
}

.ti-form input {
  border-radius: 4px;
  height: 2.5rem;
  border: 2px solid #DFE1E5;
  padding: 0.5rem 0.75rem;
  vertical-align: top;
  font-family: Tahoma;
  font-size: 1rem;
}

.ti-form textarea {
  border-radius: 4px;
  border: 2px solid #DFE1E5;
  padding: 0.25rem 0.75rem;
  vertical-align: top;
  font-family: Tahoma;
  font-size: 1rem;
}

.ti-form-main input {
    width: 100%;
    align-items: center;
}

.ti-form-exp {
  width: 90%;
}

.ti-form label input[type=checkbox] {
  height: 13px; /* align checkbox to label */
}

.ti-form input[type=radio], .ti-form input[type=checkbox]{
  height: 1.5rem;
}

.ti-form input[type=text], .ti-form input[type=password], .ti-form select {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
}

.ti-form input[type=submit] {
  height: initial;
  border: none;
}

.ti-form input:hover {
  border-color: #b5b5b5;
}

.ti-form input:focus {
  border-color: #2188ff; /* blue */
  outline: none;
}

.ti-form .error input, .ti-form .error select {
  border-color: #DE350B; /* red */
}

.ti-form .error-msg {
  font-size: 0.75rem;
  color: #DE350B; /* red */
}

.ti-form-legal, .ti-form-note {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.4);
}


.ti-form-newsletter {
  padding: 12px;
  border: 1px solid #DFE1E5;
  border-radius: 5px;
}
.ti-form-newsletter input {
  width: 100%;
}

/* newsletter pop-up*/
.ti-news-pop {
  background: #9B99CB;
  padding: 50px;
  position: fixed;
  display: none;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}

.ti-news-pop label {
  color: white;
  padding: 0 10px 0 0;
  font-weight: bold;
}

.ti-news-pop input[type="email"] {
  padding:8px;
  border-radius: 4px;
  border: none;
  outline: none;
}

.ti-news-pop input[type="submit"] {
  background: white;
  border: none;
  font-size: 1em;
  padding: 8px;
  border-radius: 4px;
  margin-left: 10px;
}
.ti-pop-show {
  display: block;
  opacity: 1;
  transition: opacity 400ms;
}
.ti-pop-hide {
  display: none;
  opacity: 0;
  transition: opacity 400ms;
}


/****************** events *******/

.ti-event-box {
  width: 100%;
  background: #FAFBFC;   /* grey / fill */
  border: 1px solid #DFE1E5; /* grey / border */
  box-sizing: border-box;
  border-radius: 4px;
}

.ti-event-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.8);
}

.ti-event-description {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #000000;
}

.ti-card-prop-label {
  font-family: Rockwell;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #9B99CB;
}


.ti-card-prop-value {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  margin-left: 8px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.8);
}

.ti-card-prop-value-list {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.8);
}


/****** fix libs *****/
.popper {
  text-align: initial !important;
}


/****** search for term input (Blog, CS, Report, etc )*****/
.input-search{
  margin-top: 8px;
}
.input-search input[type=text] {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.7);
  padding: 4px 6px;

  border: 2px solid #DFE1E5;
  box-sizing: border-box;
  border-radius: 3px;
  max-width: 210px;
}
.input-search button {
  height: 32px;
  font-size: 20px;
  vertical-align: top;
  margin-left: 4px;
}

.btn-search {
  background: #ccc url(/static/icons/magnifier-4-16.png) no-repeat 8px center;
  width: 34px;
}


/***********/

/******** page-detail: CsItem, VendorDetail ******/

.list-item-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.8);
  padding-bottom: 0.2rem;
}

.detail-header-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.8);
}

.detail-prop-title {
  font-family: Tahoma;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: #9B99CB;
  padding: 24px 0 8px;
}

/*** TABLES ****/

.sticky-header th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: inherit;
}

/* background colors */
.ti-tbl-light {
  background: #FAFBFC;
}
.ti-tbl-dark {
  background: #DFE1E5;
}
.ti-tbl-vertical {
  /* background: #FDC833; */
  background: #F7CB4F; /* knock-off color without opacity */
}
.ti-tbl-tech-bg {
  background: #94C23D;
  opacity: 0.7;
}
.ti-tbl-tech {
  color: #6a8e27;
}
.ti-tbl-tech th, .ti-tbl-tech td {
  border-top: 2px solid #94C23D;
}

/* table with 2 or more value columns */
.ti-tbl2 {
  border-collapse: separate;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
}


.ti-tbl2-double {
  border-left: none;
  border-right: none;
  border-radius: 0px;
}

.ti-tbl2-border-left {
  border-left: 1px solid #D0D0D0;
}
.ti-tbl2-border-right {
  border-right: 1px solid #D0D0D0;
}

.ti-tbl2-header {
  font-family: Tahoma;
  padding: 14px 30px;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.ti-tbl2-row th, .ti-tbl2-row td {
  border-top: 1px solid #D0D0D0;
  padding: 8px 30px;
  text-align: initial;
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #000000;
}
td.ti-tbl2-val {
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.9);
}
.ti-tbl2 td { vertical-align: middle }

/* feature table usually single column */
.ti-tblf {
  border-collapse: separate;
  border: 1px solid #D0D0D0;
  border-radius: 6px;
}
.ti-tblf-header {
  padding: 14px 0;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #000000;
  border-radius: 5px 5px 0 0;
}
.ti-tblf-row-highlight {
  background: #F4F5F7;
}
.ti-tblf-row th,
.ti-tblf-row td {
  border-top: 1px solid #D0D0D0;
  padding: 10px 14px;
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #000000;
}
.ti-tblf-val {
  font-family: Tahoma;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.64);

  padding: 3px 10px;
  background: rgba(253, 200, 51, 0.8);
  border: 2px solid #FFFFFF;
  border-radius: 100px;
}
.ti-tblf-relevant {
  background: rgba(253, 200, 51, 0.4);
}
.ti-tblf-tech {
  background:rgba(180, 212, 119, 0.8);
}
.ti-tblf td { vertical-align: middle }
