@charset "UTF-8";
/*
 * Fonts
 */
html {
  font-size: 62.5%;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: rgb(250, 250, 250);
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  color: rgb(153, 153, 153);
}

.body-loading #header,
.body-loading #main-wrapper,
.body-loading .footer,
.body-loading .search-outer,
.body-loading .header-userinfo {
  opacity: 0.2;
}
.body-loading .loading-message {
  position: fixed;
  width: 100px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -50px;
  background-color: transparent;
  z-index: 99999;
  text-align: center;
  line-height: 50px;
  overflow: auto;
}

.body-loading2 #header,
.body-loading2 #main-wrapper,
.body-loading2 .footer,
.body-loading2 .search-outer,
.body-loading2 .header-userinfo {
  opacity: 0.1;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: rgb(26, 153, 212);
  text-decoration: none;
}

.link-black {
  color: rgb(68, 68, 68);
  text-decoration: none;
}

.next-arrow,
.prev-arrow {
  cursor: pointer;
}

.next-arrow:hover svg g,
.prev-arrow:hover svg g {
  fill: rgb(26, 153, 212);
}

.see-all {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  color: rgb(153, 153, 153);
  text-align: center;
  display: block;
  margin-top: 32px;
  text-decoration: underline;
}

.body-wrapper {
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.main-margin {
  padding: 0px 20px;
}

@media (min-width: 768px) {
  .main-margin {
    padding: 0px 40px;
  }
}
h1 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 3rem;
  color: rgb(153, 153, 153);
  text-align: center;
  margin-bottom: 30px;
}

h1 .bold {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: rgb(68, 68, 68);
}

h1 .smaller {
  font-size: 1.8rem;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: rgb(68, 68, 68);
  text-align: center;
  margin-bottom: 20px;
}

h2 .bold {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2rem;
  color: rgb(153, 153, 153);
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}

h3.bold {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: rgb(68, 68, 68);
}

.wraptext {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
  hyphens: auto;
}

.smallText {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
}
.smallText a.active {
  text-decoration: underline;
}

.maybe {
  opacity: 0.7;
}

.wrap-long {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}

@media (min-width: 768px) {
  h3 {
    text-align: left;
  }
}
#header {
  position: relative;
  overflow: auto;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 40px;
  min-height: 108px;
}

#header-wrapper {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  text-align: center;
}

.logo-wrapper {
  display: block;
  text-align: center;
}

#logo {
  width: 206px;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1279px) {
  #header {
    min-height: 100px;
  }
  #header-wrapper {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    text-align: left;
  }
}
#logo {
  display: none;
}

#logo-mobile {
  display: block;
  width: 181px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media (min-width: 768px) {
  #logo-mobile {
    height: auto;
    margin-left: -5px;
    margin-top: -4px;
    display: block;
  }
}
@media (min-width: 1280px) {
  #header {
    background-color: transparent;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .body-wrapper {
    margin-top: 0;
  }
  .logo-wrapper {
    margin: 0;
    text-align: left;
  }
  #header-wrapper {
    padding-top: 40px;
    height: 80px;
    position: relative;
    top: 0;
    text-align: left;
  }
  .logo-wrapper {
    display: block;
  }
  #logo {
    width: 234px;
    height: auto;
    width: 374px;
    margin-left: -9px;
    margin-top: -4px;
    display: block;
  }
  #logo-mobile {
    display: none;
  }
}
.footer {
  padding-top: 40px;
  padding-bottom: 100px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  color: rgb(153, 153, 153);
  text-align: center;
}

.footer a {
  color: rgb(153, 153, 153);
  text-decoration: underline;
}

.footer .footer-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
}

.beta-wrapper {
  position: fixed;
  right: 0;
  bottom: 0px;
  z-index: 99999;
  display: none !important;
}
@media (min-width: 768px) {
  .beta-wrapper {
    display: block;
    position: fixed;
    right: 0;
    bottom: 50px;
    margin-right: -600px;
    transition: all 500ms ease-in-out;
    width: 600px;
    padding-left: 43px;
  }
}
.beta-wrapper.open {
  margin-right: 0;
}
.beta-wrapper.open .beta-panel {
  display: block;
}
.beta-wrapper.open .beta-badge {
  display: none;
}
@media (min-width: 768px) {
  .beta-wrapper.open .beta-badge {
    display: block;
  }
}
.beta-wrapper .beta-badge {
  background-color: #f46e30;
  color: white;
  word-wrap: break-word;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 17px;
}
@media (min-width: 768px) {
  .beta-wrapper .beta-badge {
    font-size: 17px;
    line-height: 19px;
    bottom: 20px;
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 11px;
    padding: 19px 16px;
  }
}
.beta-wrapper .beta-badge img {
  width: 25px;
  float: right;
  margin-left: 10px;
}
@media (min-width: 768px) {
  .beta-wrapper .beta-badge img {
    float: none;
    margin-left: -6px;
    margin-top: 10px;
    margin-bottom: -10px;
  }
}
.beta-wrapper .beta-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  margin-bottom: 0;
  padding: 40px 30px;
  color: #666666;
}
@media (min-width: 768px) {
  .beta-wrapper .beta-panel {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }
}
.beta-wrapper .beta-panel .panel-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 20px;
  color: white;
  font-weight: bold;
  text-align: center;
  background-color: #f46e30;
  cursor: pointer;
}
.beta-wrapper .beta-panel .panel-intro {
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .beta-wrapper .beta-panel .panel-intro {
    font-size: 18px;
    line-height: 32px;
  }
}
.beta-wrapper .beta-panel .form-wrapper {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #DDDDDD;
  overflow: auto;
}
.beta-wrapper .beta-panel .form-wrapper textarea {
  padding: 20px 10px;
  width: 93%;
  text-indent: 0;
  height: 150px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .beta-wrapper .beta-panel .form-wrapper textarea {
    width: 516px;
  }
}
.beta-wrapper .beta-panel .form-wrapper .form-info {
  font-size: 13px;
  color: #999999;
  margin-bottom: 5px;
}
.beta-wrapper .beta-panel .beta-panel-response {
  padding-left: 150px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #f46e30;
  margin-top: 40px;
}
.beta-wrapper .beta-panel .beta-panel-submit {
  float: left;
}

@media (min-width: 768px) {
  .grid:not(.grid--profile) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .grid-top {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .grid .grid-item {
    min-width: 0px;
    display: block;
  }
  .grid .grid-item-fluid {
    flex: 1;
  }
  .grid-item-right {
    text-align: right;
  }
  .grid .grid-item-padding {
    padding: 0 10px;
  }
}
.grid-smalltoo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.grid-smalltoo .grid-item {
  min-width: 0px;
  display: block;
}

.grid-smalltoo .grid-item-fluid {
  flex: 1;
}

@media (min-width: 1024px) {
  .grid--profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .grid--profile-left {
    margin-right: 40px;
    flex: 1;
  }
  .grid--profile-right {
    flex: 1;
    min-width: 740px;
  }
}
.login-wrapper #header-wrapper {
  text-align: center;
}

.login-box {
  max-width: 455px;
  margin: 0 auto;
}

.login-box-inner {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.login-box-inner .button {
  padding: 0px 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a.forgot-link {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-top: 20px;
}

#login {
  position: relative;
  overflow: auto;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 40px;
  min-height: 108px;
}

.dashboard-more-bottom {
  display: block;
  font-size: 15px;
  text-decoration: underline;
  color: #BBBBBB;
  line-height: 39px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding-bottom: 14px;
  padding-top: 10px;
  font-weight: 500;
}
.dashboard-more-bottom:hover {
  color: #1a99d4;
}
@media (min-width: 1024px) {
  .dashboard-more-bottom {
    display: none;
  }
}

.dashboard-title {
  overflow: auto;
}
.dashboard-title .more {
  display: block;
  font-size: 13px;
  text-decoration: underline;
  color: #BBBBBB;
  line-height: 39px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: right;
  padding-top: 14px;
  display: none;
}
.dashboard-title .more:hover {
  color: #1a99d4;
}
@media (min-width: 1024px) {
  .dashboard-title .more {
    display: block;
  }
}
.dashboard-title h2 {
  text-align: left;
  margin-bottom: 10px;
  float: left;
}
.dashboard-title h2 .dashboard-title-callout-light {
  display: inline-block;
  background-color: #d7f8ee;
  color: #444444;
  padding: 4px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 8px;
}
.dashboard-title h2 .dashboard-title-callout-dark {
  display: inline-block;
  background-color: #07CD8F;
  color: #FFFFFF;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 8px;
}
.dashboard-title h2 .more {
  display: block;
  font-size: 15px;
  text-decoration: none;
  color: #1a99d4;
  line-height: 45px;
  padding-left: 10px;
  text-align: center;
}
@media (max-width: 500px) {
  .dashboard-title h2 {
    float: none;
    margin-bottom: 20px !important;
  }
}
.dashboard-title.indent {
  padding-top: 0px;
}
.dashboard-title.indent h2 {
  padding-left: 30px;
}
.dashboard-title.indent .more {
  padding-right: 30px;
  padding-top: 14px;
}
@media (max-width: 500px) {
  .dashboard-title.indent .more {
    padding-top: 0px;
  }
}
@media (max-width: 1279px) {
  .dashboard-title.indent2 {
    padding-top: 5px;
  }
  .dashboard-title.indent2 h2 {
    padding-left: 30px;
  }
  .dashboard-title.indent2 .more {
    padding-right: 30px;
    padding-top: 14px;
  }
}
@media (max-width: 500px) {
  .dashboard-title.indent2 .more {
    padding-top: 0px;
  }
}
@media (max-width: 500px) {
  .dashboard-title {
    margin-top: 60px;
  }
}

.grid--dashboard .dashboard-box {
  padding: 38px 0;
}
@media (min-width: 501px) {
  .grid--dashboard .dashboard-box {
    margin-top: 20px;
    margin-bottom: 0 !important;
  }
}

.slider-fullwidth {
  clear: both;
}
@media (min-width: 1280px) {
  .slider-fullwidth {
    margin-left: -12px !important;
    margin-right: -12px !important;
  }
  .slider-fullwidth .slick-track {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .js__slider_2 .slick-track {
    margin-left: 0;
    margin-right: 0;
  }
}

.dashboard-title-content {
  margin-top: 43px;
}

@media (min-width: 768px) {
  .grid--dashboard .grid-item {
    width: 47%;
  }
  .grid--dashboard .grid-item:first-child {
    padding-right: 60px;
  }
}
@media (min-width: 501px) and (max-width: 1023px) {
  .grid-item .dashboard-title h2 {
    float: none;
  }
  .grid-item .dashboard-title .more {
    margin-top: -20px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .grid--dashboard {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 767px) {
  .grid-item:first-child {
    margin-left: 27px;
    margin-right: 27px;
  }
}
@media (max-width: 500px) {
  .slick-track {
    padding-top: 5px !important;
  }
}

.sidebarNav {
  display: none;
}

.slicknav_menu {
  background-color: transparent;
  z-index: 999999;
  position: relative;
}

.slicknav_btn {
  background-color: transparent;
  background-size: contain;
  width: 24px;
  height: auto;
  border-radius: 0;
  overflow: visible;
  background-repeat: no-repeat;
  margin-right: 25px;
  margin-top: 42px;
}

.slicknav_collapsed.slicknav_firstbutton {
  width: 50px;
  height: 34px;
  background-color: white;
  border: 1px solid #EAEAEA;
  margin-right: 16px;
  margin-top: 33px;
  padding: 0;
  text-align: center;
}

.slicknav_collapsed.slicknav_firstbutton:before {
  content: "Menu";
  font-size: 1.4rem;
  color: rgb(153, 153, 153);
  line-height: 31px;
}

.slicknav_open.slicknav_firstbutton {
  background-image: url(/images/arrow-blue-up.png);
  margin-right: 32px;
  margin-top: 39px;
}

.slicknav_collapsed.slicknav_secondbutton {
  background-image: url(/images/arrow-blue-down.png);
}

.slicknav_open.slicknav_secondbutton {
  background-image: url(/images/arrow-blue-up.png);
}

.slicknav_menu .slicknav_menutxt {
  display: none;
}

.slicknav_menu .slicknav_icon {
  float: none;
  height: auto;
  margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
  background-color: transparent;
  box-shadow: none;
}

.slicknav_nav {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: rgb(153, 153, 153);
  margin: 20px 20px;
}

.slicknav_nav a {
  color: rgb(153, 153, 153);
}

.slicknav_nav a:hover,
.slicknav_nav a:active {
  background-color: transparent !important;
  color: rgb(153, 153, 153) !important;
}

.sidebarNav-navItem {
  padding: 8px 20px;
  border-bottom: 1px solid #f5f5f5;
}

.sidebarNav-navItem-last {
  border-bottom: none;
}

.sidebarNav-active a {
  color: rgb(26, 153, 212);
}

.sidebarNav-navItem a:hover {
  color: rgb(26, 153, 212);
}

.slicknav_btn.slicknav_secondbutton {
  margin-top: 30px;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .slicknav_btn {
    width: 26px;
    margin-right: 40px;
    margin-top: 33px;
  }
  .slicknav_collapsed.slicknav_firstbutton {
    width: 70px;
    height: 42px;
    margin-right: 21px;
    margin-top: 20px;
  }
  .slicknav_collapsed.slicknav_firstbutton:before {
    font-size: 1.6rem;
    line-height: 41px;
  }
  .slicknav_open.slicknav_firstbutton {
    background-image: url(/images/arrow-blue-up.png);
    margin-right: 44px;
    margin-top: 33px;
  }
  .slicknav_nav {
    margin: 20px 40px;
    margin-top: 100px;
  }
}
@media (min-width: 1280px) {
  #details {
    padding-left: 195px;
  }
  .slicknav_menu {
    display: none;
  }
  .sidebarNav {
    display: block;
    width: 169px;
    float: left;
  }
  .sidebarNav-header {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    color: rgb(153, 153, 153);
    border-bottom: 1px solid rgb(234, 234, 234);
    padding: 0;
    background-color: transparent;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .sidebarNav-header a {
    color: rgb(153, 153, 153);
  }
  .sidebarNav-nav {
    padding: 0;
  }
  .sidebarNav-navItem {
    padding: 0;
    list-style-type: none;
    border-bottom: none;
  }
  .sidebarNav-navItem a {
    color: rgb(153, 153, 153);
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    display: inline-block;
  }
  .sidebarNav-active a {
    color: rgb(26, 153, 212);
  }
  .sidebarNav-navItem a:hover {
    color: rgb(26, 153, 212);
  }
  .sidebarNav-navItem-mobileonly {
    display: none !important;
  }
  .sidebarNav-navItem-workspace {
    margin-top: 20px;
    padding-top: 20px !important;
    border-top: 1px solid #eaeaea;
  }
}
.filters-row {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 999999;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .filters-row {
    padding-left: 20px;
    padding-right: 28px;
  }
}

.subnav {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 50px;
}

.subnav li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #999;
  height: 20px;
  line-height: 20px;
}

.subnav li:last-child {
  border-right: none;
}

.subnav li a {
  color: rgb(153, 153, 153);
}

.subnav li.active a {
  color: rgb(26, 153, 212);
}

.subnav--pills {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 50px;
}
.subnav--pills li {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #EEE;
  height: 24px;
}
.subnav--pills li:last-child {
  border-right: none;
}
.subnav--pills li a {
  color: rgb(153, 153, 153);
  display: inline-block;
  padding: 0px 0px;
  height: 24px;
  font-size: 1.2rem;
  line-height: 24px;
}
.subnav--pills li.active a {
  padding: 0px 15px;
  background: #EAEAEA;
  border-radius: 20px;
  color: #767676;
}

.subnav--left {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .subnav--left {
    margin-bottom: 20px;
    width: 100%;
  }
}
.subnav--left li {
  padding: 0 !important;
  margin-right: 0 !important;
}

.card {
  background: rgb(255, 255, 255);
  overflow: visible;
  padding: 20px 10px;
  margin-bottom: 40px;
  position: relative;
  border: 2px solid #EEEEEE;
}

@media (min-width: 768px) {
  .card {
    padding: 40px 80px;
    margin-bottom: 60px;
  }
}
.card--largeAvatars {
  text-align: center;
}

@media (min-width: 768px) {
  .card--bio {
    padding: 40px 38px;
  }
}
.card--marketingActivity {
  display: none;
}

@media (min-width: 768px) {
  .card--marketingActivity {
    display: block;
    padding: 40px;
  }
}
.card--empty {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 20px 10px 40px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.5);
}

.card--table {
  background: rgb(255, 255, 255);
  overflow: visible;
  margin-bottom: 40px;
  position: relative;
  border: 2px solid #EEEEEE;
}
.card--table .load-more {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.card--indent {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 10px;
}

.avatar {
  position: relative;
  float: left;
  margin-right: 15px;
}

.avatar-inner {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
  background-color: rgb(234, 234, 234);
  border: 2px solid white;
}

.session-card.is-active .avatar-inner {
  border: 2px solid #07CD8F;
}

.avatar-inner img {
  display: none;
  width: 100%;
  height: auto;
}

.avatar-active {
  width: 15px;
  height: 15px;
  float: right;
  border-radius: 15px;
  float: left;
  background-color: #07CD8F;
  position: absolute;
  right: -2px;
  top: 0px;
}

@media (min-width: 768px) {
  .avatar {
    margin-right: 15px;
  }
  .avatar-inner {
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }
}
.avatar--large {
  margin: 10px;
  margin-top: 0;
  float: none;
  display: inline-block;
}

.avatar--large .avatar-inner {
  width: 75px;
  height: 75px;
  border-radius: 75px;
}

.avatar--large .avatar-active {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  right: -5px;
}

.avatar--tooltip {
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: -60px;
}

.avatar--tooltip .avatar-inner {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.avatar--tooltip .avatar-active {
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.avatar--tooltip .avatar-inner img {
  display: block;
}

.avatar--profile {
  margin-right: 32px;
  float: none;
  margin: 0 auto;
  width: 90px;
}

.avatar--profile .avatar-inner {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  border: 1px solid rgba(234, 234, 234, 0.2);
  margin-bottom: 30px;
}

.avatar--profile .avatar-active {
  width: 25px;
  height: 25px;
  border-radius: 25px;
  right: -5px;
}

.avatar--profile .avatar-fill {
  background-size: cover;
  background-position: center center;
}

@media (min-width: 768px) {
  .avatar--profile {
    margin-right: 20px;
    width: auto;
  }
}
.avatar--company-profile .avatar-inner {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .avatar--company-profile {
    margin-top: 0;
  }
}
.pagination {
  overflow: auto;
  margin: 0;
  padding: 0;
  margin-top: 0px;
  margin-bottom: 40px;
  text-align: center;
}

.pagination > li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  padding: 0 3px;
}

.pagination > li > a,
.pagination > li > span {
  border-radius: 25px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #1a99d4;
  color: white;
  text-align: center;
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  opacity: 0.7;
}

.pagination > li.active span,
.pagination > li:hover a {
  background-color: #1a99d4;
  cursor: pointer;
  color: white;
  opacity: 1;
}

.pagination > li.active span {
  background-color: #1a99d4;
  opacity: 1;
}

.pagination li.disabled {
  display: none;
}

.pagination li [rel=next] {
  background-color: transparent;
  background-image: url(/images/triangle_right.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 15px 20px;
  border-radius: 0;
  opacity: 0.7;
}

.pagination li:hover [rel=next] {
  background-color: transparent;
  opacity: 1;
}

.pagination li [rel=prev] {
  background-color: transparent;
  background-image: url(/images/triangle_left.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 15px 20px;
  border-radius: 0;
  opacity: 0.7;
}

.pagination li:hover [rel=prev] {
  background-color: transparent;
  opacity: 1;
}

.listView {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  margin-bottom: 5px;
}

.listView-header,
.listView-item {
  vertical-align: middle;
  color: rgb(68, 68, 68);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid rgb(234, 234, 234);
  border-right: 1px solid rgb(234, 234, 234);
  border-bottom: 1px solid rgb(234, 234, 234);
}

.listView-header {
  color: rgb(153, 153, 153);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  padding: 5px;
}

.listView-item a {
  text-decoration: underline;
}

.listView-itemLarger {
  font-size: 1.8rem;
  line-height: 1.8rem;
}

.listView-itemBold {
  font-weight: 700 !important;
}

.listView-itemLarger .link-black {
  text-decoration: none;
}

.listView-itemLeft {
  text-align: left;
}

.listView-itemRight {
  text-align: right;
}

.listView-itemFixedSmall {
  width: 100px;
}

.listView-rowHighlight {
  background-color: rgba(223, 240, 216, 0.5);
}

.listView-flexRow {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.listView-flexRowItemFluid {
  flex: 1;
}

.listView-avatarIndent {
  padding-left: 60px;
}

.listView-itemAvatar {
  margin-left: -55px;
}

.listView-item-opportunity {
  text-align: left;
  padding-left: 40px;
}

.listView-item-opportunity .badge--salesForceSmall {
  float: left;
  margin-left: 0;
}

.listView .break {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
  hyphens: auto;
}

.listView .small-only {
  display: table-cell;
}

.listView .med-only {
  display: none;
}

.listView .big-only {
  display: none;
}

.listView .nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .listView {
    border: 1px solid rgb(234, 234, 234);
    border-right: none;
    border-bottom: none;
  }
  .listView-header,
.listView-item {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 15px 20px;
  }
  .listView-header.listView-smallPadding,
.listView-item.listView-smallPadding {
    padding: 10px 15px;
  }
  .listView-condensed .listView-header,
.listView-condensed .listView-item {
    padding: 5px 0px;
  }
  .listView-itemLarger {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
  .listView-itemLarger .link-black {
    text-decoration: none;
  }
  .listView-header {
    color: rgb(153, 153, 153);
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 600;
    padding: 10px;
    display: table-cell;
  }
  .listView-headerLight {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
  }
  .listView-avatarIndent {
    padding-left: 80px;
  }
  .listView-featured {
    background-color: rgba(234, 234, 234, 0.2);
  }
  .listView-header.listView-featured {
    background-color: rgba(215, 215, 215, 0.2);
    color: rgb(68, 68, 68);
  }
  .listView-header.listView-featured {
    background-color: rgba(215, 215, 215, 0.2);
    color: rgb(68, 68, 68);
  }
  .listView-itemAvatar {
    margin-left: -55px;
  }
  .listView .small-only {
    display: none;
  }
  .listView .med-only {
    display: table-cell;
  }
  .listView tfoot .load-more {
    background-color: white;
    cursor: pointer;
  }
}
@media (min-width: 1280px) {
  .listView .small-only {
    display: none;
  }
  .listView .med-only {
    display: table-cell;
  }
  .listView .big-only {
    display: table-cell;
  }
}
.listView--condensed .listView-header,
.listView--condensed .listView-item {
  vertical-align: middle;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 0;
}

.listView--noborder {
  border: none;
}
.listView--noborder .listView-header,
.listView--noborder .listView-item {
  border-bottom: none;
  border-right: none;
  border-bottom: none;
  padding: 11px 20px 11px 0 !important;
}

@media (min-width: 768px) {
  .listView--companyBio {
    border: none;
  }
  .listView--companyBio .listView-header,
.listView--companyBio .listView-item {
    border: none;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .listView-header,
.listView-item {
    padding: 15px 20px !important;
  }
}
.listView--grades {
  border: 1px solid rgb(255, 255, 255);
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}

.listView--grades td {
  display: block;
  padding: 5px 20px;
}

.listView--grades td:nth-child(1) {
  padding-top: 20px;
}

.listView--grades td:nth-child(4) {
  padding-bottom: 20px;
  border-bottom: 5px solid rgb(255, 255, 255);
}

.grade-high td {
  background-color: #c1f2e3;
}

.grade-medium td {
  background-color: #fff2d6;
}

.grade-low td {
  background-color: #ffd5d5;
}

@media (min-width: 768px) {
  .listView--grades td {
    display: table-cell;
    vertical-align: middle;
    color: rgb(68, 68, 68);
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 30px 20px;
    border-right: 1px solid rgb(255, 255, 255);
    border-bottom: 20px solid rgb(255, 255, 255) !important;
  }
  .listView--grades td:nth-child(1) {
    white-space: nowrap;
  }
  .listView--grades td:nth-child(1),
.listView--grades td:nth-child(2) {
    text-align: center;
  }
  .listView--grades td:nth-child(4) {
    text-align: center;
  }
}
.content-report-bad {
  background-color: rgba(255, 151, 151, 0.1);
}

.content-report-good {
  background-color: rgba(7, 205, 153, 0.2);
}

.contentChartListview .listView-header,
.contentChartListview .listView-item {
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 10px;
}

.add-item-wrapper {
  padding-bottom: 20px;
  color: #07cd8f;
  font-weight: 600;
  display: inline-block;
  line-height: 30px;
  height: 30px;
}

.add-item-icon {
  background-color: #07cd8f;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  font-weight: 300;
  position: relative;
  float: left;
}
.add-item-icon:after {
  content: "+";
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.add-item-count {
  display: inline-block;
  margin-left: 10px;
}

.add-item-wrapper-disabled {
  margin-bottom: 20px;
  color: #999999;
  font-weight: 600;
  display: block;
  opacity: 0.5;
  line-height: 30px;
  height: 30px;
}
.add-item-wrapper-disabled .add-item-icon {
  background-color: #BBBBBB;
  cursor: default;
}

.badge--score {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  line-height: 90px;
  text-align: center;
  margin: 0 auto;
  color: white;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.6rem;
  margin-bottom: 25px;
}

.badge--score-high {
  background-color: rgb(7, 205, 143);
}

.badge--score-medium {
  background-color: rgb(255, 223, 152);
}

.badge--score-low {
  background-color: rgb(255, 151, 151);
}

.badge--score-column {
  width: 50px;
}

@media (min-width: 768px) {
  .badge--score {
    margin: 0;
    float: left;
    margin-right: 20px;
    font-size: 3.6rem;
    margin-bottom: 0px;
  }
  .badge--score-columns {
    display: flex;
  }
  .badge--score-column1 {
    width: 110px;
  }
  .badge--score-column2 {
    width: 90%;
  }
}
.badge--score-small {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 auto;
  color: white;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.badge--salesForceSmall {
  width: 30px;
  height: auto;
  margin-left: 20px;
}

.tooltip {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 10px;
  text-align: left;
  color: rgb(68, 68, 68);
  border-radius: 0 !important;
}

.tippy-popper {
  z-index: 9999999 !important;
}
@media (max-width: 767px) {
  .tippy-popper {
    display: none !important;
  }
}

.tooltip--profile {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 20px;
  padding-left: 70px;
  text-align: left;
  color: rgb(153, 153, 153);
  border-radius: 0 !important;
}

.tooltip--profile b {
  font-size: 1.4rem;
  color: rgb(68, 68, 68);
}

/* Right placement tooltip arrow (arrow will be on left side of tooltip) */
.tippy-roundarrow {
  fill: #CCCCCC !important;
}

.profile {
  color: rgb(68, 68, 68);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.7rem;
}

@media (min-width: 768px) {
  .profile-morePadding {
    padding: 60px 40px;
  }
}
.profile-explanation {
  cursor: pointer;
  display: inline-block;
  background-color: #1a99d4;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  color: white;
  text-align: center;
  font-size: 11px;
  line-height: 15px;
  font-weight: 600;
  margin-left: 5px;
  opacity: 0.35;
}
@media (max-width: 767px) {
  .profile-explanation {
    display: none !important;
  }
}

.profile-explanation-text {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #777777 !important;
}

.profile-explanation-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 20px;
  color: white;
  font-weight: bold;
  text-align: center;
  background-color: #f46e30;
  cursor: pointer;
}

.popup-loading {
  background-image: url(/images/gear.svg);
  background-position: center center;
  background-size: 40px auto;
  background-repeat: no-repeat;
  min-width: 350px;
  min-height: 300px;
}

.profile-bio-stage {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 10px;
  margin-top: 15px;
  padding-left: 27px;
  text-align: left;
}

.card--bio {
  background-color: white !important;
  opacity: 1 !important;
  filter: none !important;
}

.card--bio-other-visitors {
  padding-left: 20px;
  padding-right: 20px;
}
.card--bio-other-visitors .profile-other-visitors-list {
  margin-top: 40px;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card {
  width: 100%;
  margin-bottom: 20px;
  margin: 0;
  padding-bottom: 0 !important;
  text-align: left;
  margin-bottom: -1px;
  opacity: 1;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-stats,
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-other-visitors {
  display: none;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-inner {
  padding: 0;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-pills {
  margin-top: 10px;
  margin-left: 10px;
  position: absolute;
  right: 10px;
  top: 0;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .avatar:not(img),
.card--bio-other-visitors .profile-other-visitors-list .session-card .avatar-inner {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50px !important;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .avatar-inner {
  margin-bottom: 0 !important;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-inner-top {
  padding: 10px 10px;
  display: flex;
  align-items: center;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-inner-top br {
  display: none;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-name,
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-title {
  padding-left: 20px;
}
.card--bio-other-visitors .profile-other-visitors-list .session-card .session-card-pills-client {
  background-color: #222222 !important;
}

.card--bio.profile .session-card-pills {
  text-align: center;
}
.card--bio.profile .session-card-pills .session-card-pill,
.card--bio.profile .session-card-pills .session-card-pill.session-card-pills-tag {
  text-align: center;
  height: 36px;
  line-height: 35.5px;
  font-size: 18px;
  padding-left: 25px;
  padding-right: 25px;
  width: auto;
}
.card--bio.profile .session-card-pills-desc {
  display: none;
  text-align: center;
  font-size: 16px;
  color: #222222;
  margin-bottom: 10px;
}
.card--bio.profile.has-unqualified .session-card-pills-desc-lead-stage, .card--bio.profile.has-client .session-card-pills-desc-lead-stage, .card--bio.profile.has-mql .session-card-pills-desc-lead-stage, .card--bio.profile.has-sql .session-card-pills-desc-lead-stage {
  display: block;
  margin-top: 25px;
}
.card--bio.profile.has-tag .session-card-pills-desc-tag {
  display: block;
  margin-top: 25px;
}
.card--bio.profile.has-unqualified .session-card-pills-unqualified {
  display: inline-block;
}
.card--bio.profile.has-client .session-card-pills-client {
  display: inline-block;
}
.card--bio.profile.has-mql .session-card-pills-mql {
  display: inline-block;
}
.card--bio.profile.has-mql .session-card-menu {
  background-color: rgb(238, 251, 246);
}
.card--bio.profile.has-sql .session-card-pills-sql {
  display: inline-block;
}
.card--bio.profile.has-sql .session-card-menu {
  background-color: rgb(200, 242, 227);
}
.card--bio.profile.has-tag .session-card-pills-tag {
  display: inline-block;
}
.card--bio.profile.has-paid .session-card-pills-paid {
  display: inline-block;
}
.card--bio.profile .session-card-pills-paid {
  display: none !important;
}
.card--bio.profile .session-card-pills-crm {
  display: none !important;
}
.card--bio.profile.has-mql .maybe,
.card--bio.profile.has-mql .profile-bio-name,
.card--bio.profile.has-mql .profile-bio-company,
.card--bio.profile.has-mql .profile-bio-location,
.card--bio.profile.has-mql a, .card--bio.profile.has-sql .maybe,
.card--bio.profile.has-sql .profile-bio-name,
.card--bio.profile.has-sql .profile-bio-company,
.card--bio.profile.has-sql .profile-bio-location,
.card--bio.profile.has-sql a, .card--bio.profile.not-verified .maybe,
.card--bio.profile.not-verified .profile-bio-name,
.card--bio.profile.not-verified .profile-bio-company,
.card--bio.profile.not-verified .profile-bio-location,
.card--bio.profile.not-verified a {
  color: #222222;
  opacity: 1;
}
.card--bio.profile.not-verified .session-card-pills-notverfified {
  display: inline-block !important;
  background-color: #999999;
  width: 24px;
  height: 24px;
  padding: 0;
  text-align: center;
  line-height: 25px;
}

.card--bio.profile.session_stage_client .profile-bio-stage {
  color: #999999;
}
.card--bio.profile.session_stage_client .profile-bio-stage:before {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  content: "C";
  position: absolute;
  background-color: #999999;
  color: white;
  display: inline-block;
  margin-left: -28px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-weight: 700;
}

.card--bio.profile.session_stage_custom .profile-bio-stage {
  color: #f46e30;
}
.card--bio.profile.session_stage_custom .profile-bio-stage:before {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  content: "★";
  position: absolute;
  background-color: #f46e30;
  color: white;
  display: inline-block;
  margin-left: -28px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.profile-bio-name {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 6px;
  text-align: center;
}

.profile-bio-title {
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
}
.profile-bio-title .maybe {
  display: inline-block;
}

.profile-bio-company {
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
  margin-bottom: 6px;
}
.profile-bio-company .maybe {
  display: inline-block;
}

.profile-bio-location {
  padding: 7px 0;
  font-size: 1.4rem;
  line-height: 2rem;
  padding-left: 20px;
  background-image: url(/images/location.png);
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: left center;
  text-align: left;
}
.profile-bio-location .maybe {
  opacity: 1 !important;
}

.profile-bio-location a {
  color: rgb(153, 153, 153);
  text-decoration: underline;
}

.profile-bio-bio {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(234, 234, 234);
  margin-bottom: 50px;
  font-size: 14px;
  line-height: 20px;
}

.profile-bio-leftlabel {
  width: 100px;
  margin-right: 20px;
  color: rgb(153, 153, 153);
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: right;
  padding-top: 4px;
}

.profile-bio-social_service {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.profile-bio-social_service img {
  width: 100%;
  height: auto;
}

.profile-bio-website-url {
  color: rgb(153, 153, 153);
  font-size: 1.4rem;
  line-height: 2rem;
  text-decoration: underline;
  display: block;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
  hyphens: auto;
}

.profile-bio-organizations {
  padding-top: 5px;
}

.profile-bio-organizations-entry {
  margin-bottom: 10px;
}

.profile-bio-organizations-entry-name {
  color: #222222;
  padding-right: 10px;
}

.profile-bio-organizations-entry-title {
  color: rgb(153, 153, 153);
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.profile-bio-organizations-entry-dates {
  color: rgb(153, 153, 153);
  font-size: 1.4rem;
  line-height: 2rem;
  font-style: italic;
}

.profile-known-value {
  word-break: break-all;
}

@media (min-width: 768px) {
  .profile-bio-name,
.profile-bio-title,
.profile-bio-company {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .profile-known-value {
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
  }
  .profile-bio-leftlabel,
.profile-bio-organizations-entry-name {
    width: auto;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .profile-bio-social {
    overflow: auto;
    text-align: center;
  }
  .profile-bio-social_service {
    float: none;
    display: inline-block;
    margin: 0px 5px 5px 5px;
  }
  .profile-bio-organizations-entry {
    text-align: center;
  }
  .profile-bio-website-url {
    text-align: center;
  }
  .profile-bio-location {
    text-align: center;
    padding: 0;
    background-image: none;
    margin-top: 20px;
  }
}
.profile-company-name {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 6px;
  text-align: center;
}

.profile-company-url {
  color: rgb(153, 153, 153);
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 6px;
  text-decoration: underline;
  text-align: center;
  display: block;
}

.profile-company-bio {
  margin-top: 0px;
  padding-top: 30px;
  border-top: 1px solid rgb(234, 234, 234);
  margin-bottom: 20px;
}

.profile-company-content {
  margin-top: 30px;
  margin-bottom: 50px;
}

.profile-company-content-title {
  text-align: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .profile-company-name,
.profile-company-url {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .profile-company-content .profile-bio-leftlabel {
    display: none;
  }
  .profile-company-content .profile-bio-website-url {
    text-align: left;
  }
}
.profile-actions {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.profile-actions h3 {
  display: inline-block;
}

.button.profile-actions-button {
  display: inline-block;
  margin-right: 5px;
  padding: 0px 15px;
  font-size: 1.4rem;
  height: 35px;
  line-height: 35px;
  margin-top: 1px;
}

.profile-activity-intro {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 3rem;
  color: rgb(68, 68, 68);
}

.profile-activity-name {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
}

.profile-activity-conversions {
  margin: 65px 0;
}

.profile-activity-conversions-title {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.profile-activity-conversions-title-name {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
}

.profile-activity-opportunity-title-outer {
  text-align: center;
}

.listView-item .conversion-url {
  color: #999999;
  display: block;
}

.profile-activity-opportunity-title {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  padding-left: 40px;
  background-image: url(/images/salesforce.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px auto;
}

.profile-activity-notes {
  margin-top: 40px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 2.4rem;
  color: rgb(68, 68, 68);
  padding: 45px 20px;
  background-color: rgb(234, 234, 234);
}

.profile-activity-opportunity-link {
  text-align: center;
  margin-top: 20px;
}

.profile-conversions-wrapper {
  position: relative;
}
.profile-conversions-wrapper:not(.expanded) {
  padding-bottom: 200px;
  margin-bottom: 60px;
}
.profile-conversions-wrapper .load-more {
  z-index: 9999;
  height: 191px !important;
  line-height: 381px !important;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 70%) !important;
}

.profile-conversions-table {
  width: 100%;
  position: relative;
}
.profile-conversions-table .profile-conversions-table-date {
  vertical-align: top;
  color: #999999;
  font-size: 1.4rem;
  line-height: 2.5rem;
  position: relative;
  top: -2px;
}
.profile-conversions-table .profile-conversions-table-details {
  line-height: 21px;
  position: relative;
}
@media (min-width: 768px) {
  .profile-conversions-table .profile-conversions-table-details {
    padding-right: 80px;
  }
}
.profile-conversions-table .profile-conversions-table-details a {
  text-decoration: none !important;
  color: #1a99d4 !important;
}
.profile-conversions-table .profile-conversions-table-details a:after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(/images/external-link-blue.svg);
  display: inline-block;
  background-position: bottom -1px right;
  background-size: 14px auto;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 2px;
}
.profile-conversions-table .profile-conversions-table-more {
  display: none !important;
}
.profile-conversions-table .profile-conversions-details {
  display: block !important;
  padding: 20px;
  background-color: rgba(7, 205, 153, 0.1);
  position: relative;
  color: #444444;
  font-size: 11px;
  padding-bottom: 0;
  padding-top: 15px;
}
.profile-conversions-table .profile-conversions-details:before {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 30px 0;
  border-color: transparent rgba(7, 205, 153, 0.1) transparent transparent;
  position: absolute;
  top: 10px;
  left: -50px;
}
.profile-conversions-table .profile-conversions-details tr td {
  line-height: 14px !important;
  padding-bottom: 15px !important;
  vertical-align: top !important;
}
.profile-conversions-table .profile-conversions-details tr td:first-child {
  text-align: right;
  opacity: 0.5;
  padding-right: 14px !important;
}

.session-card.card--bio {
  margin-left: 0;
  margin-right: 0;
  width: auto;
  margin-bottom: 40px;
  min-height: 140px;
}
@media (min-width: 768px) {
  .session-card.card--bio {
    margin-bottom: 60px;
  }
}
.session-card.card--bio .session-card-menu {
  background-color: white;
  padding-top: 41px;
  border-bottom: 1px solid #EEEEEE;
}
.session-card.card--bio .session-card-menu .session-card-menu-inner {
  margin-left: auto;
  margin-right: auto;
}
.session-card.card--bio .session-card-menu .session-card-menu-inner .session-card-stages {
  display: flex;
  flex-flow: row;
  gap: 10px;
  margin-top: 20px;
}
.session-card.card--bio .session-card-menu .session-card-menu-inner .session-card-stages > div {
  width: 100%;
  margin-top: 0 !important;
}
.session-card.card--bio .session-card-menu .session-card-menu-inner .session-card-menu-ignore {
  width: 120px;
}
.session-card.card--bio .session-card-menu .session-card-menu-inner i {
  text-align: left;
  display: block;
  font-style: normal;
  color: #222222;
}
.session-card.card--bio .session-card-menu-ignore {
  display: block;
}
.session-card.card--bio .session-card-stats-topright {
  cursor: pointer !important;
}

.session-card-stats-topright {
  cursor: pointer !important;
}

.card--bio-company .session-card-pills {
  margin-top: 50px !important;
  margin-bottom: 60px !important;
}
.card--bio-company .session-card-pills .session-card-pills-desc {
  display: block !important;
  margin-top: 40px !important;
  margin-bottom: 20px !important;
}
.card--bio-company .session-card-pills .session-card-pill {
  display: inline-block !important;
  margin-bottom: 20px !important;
}
.card--bio-company .session-card-pills .session-card-pill .pill-count {
  font-weight: 400;
}

.js__nf-toggle-list.company-leads.toggle-state-list {
  padding-right: 0;
}
.js__nf-toggle-list.company-leads.toggle-state-list .inner {
  margin-left: 28px;
  margin-right: 28px;
  margin-bottom: 60px;
}

.company-profile-fromtheweb {
  background-color: #FAFAFA;
  border-radius: 40px;
  padding-top: 26px;
}
.company-profile-fromtheweb .company-profile-fromtheweb-title {
  font-size: 16px;
  color: #222222;
  text-align: center;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

.company-profile-bio {
  font-size: 16px;
  line-height: 21px;
  color: #222222;
  text-align: center;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}

.button {
  display: inline-block;
  background-color: rgb(26, 153, 212);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(255, 255, 255);
  padding: 0px 30px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  overflow: hidden;
  margin-top: 14px;
  border: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
}

a.button {
  text-decoration: none;
}

.button:hover,
.button-active {
  background-color: rgb(26, 153, 212);
}

.button svg {
  width: 20px;
  height: 20px;
  float: left;
  margin-top: 10px;
}

.button svg g {
  fill: rgb(255, 255, 255);
}

.search-outer {
  display: none;
  position: absolute;
  top: 44px;
  right: 38px;
}

.search {
  width: 220px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgb(234, 234, 234);
}

.search-submit {
  border: none;
  background: transparent;
  position: absolute;
  right: 10px;
  top: 9px;
  -webkit-appearance: none;
}

.search-arrow {
  width: 20px;
  height: 20px;
}

.search-arrow {
  width: 13px;
  height: auto;
}

.search-arrow g {
  fill: rgb(255, 255, 255);
}

.search:hover .search-input,
.search.active .search-input {
  color: rgb(68, 68, 68);
}

.search:hover .search-arrow g,
.search:hover .search-arrow g {
  fill: rgb(153, 153, 153);
}

.search-input {
  background-color: transparent;
  border: none;
  height: 40px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 40px;
  color: rgb(153, 153, 153);
}

.search-input:focus,
.search-input:active {
  outline: none;
}

.search-results-loading {
  background-image: url(/images/gear.svg);
  background-position: center right;
  background-size: 40px auto;
  background-repeat: no-repeat;
}

.search-results-loading .search-arrow {
  display: none;
}

.search-results-active {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.4);
}

.search-results-active .search-input {
  color: rgb(68, 68, 68);
}

.search-results {
  display: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
  background-color: white;
  position: absolute;
  top: 42px;
  right: 0px;
  width: 378px;
  border-top: 1px solid rgb(234, 234, 234);
  background-color: rgb(255, 255, 255);
  box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.4);
  padding: 10px 10px;
}

.search-results > li {
  border-bottom: 1px solid rgb(234, 234, 234);
  color: rgb(68, 68, 68);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: left;
  overflow: auto;
  cursor: pointer;
}

.search-results > li:hover {
  background-color: rgba(24, 153, 255, 0.2);
  cursor: pointer;
}

.search-results > li a {
  text-decoration: underline;
}

.search-results > li > .grid {
  width: 100%;
}

.search-results > li {
  padding: 11px 6px;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
  hyphens: auto;
  padding-left: 64px;
  position: relative;
  min-height: 45px;
}
.search-results > li .maybe {
  display: inline-block;
  opacity: 1 !important;
}

.search-results-name {
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 500;
  color: #666666;
}

.search-results-email {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: rgb(153, 153, 153);
}

.search-results-meta {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: rgb(68, 68, 68);
  color: #999999;
}

.search-results-avatar-outer {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #EEEEEE;
  overflow: hidden;
  position: absolute;
  top: 15px;
  left: 5px;
}
.search-results-avatar-outer .search-results-avatar {
  width: 100%;
  height: auto;
}

.search-results-more {
  border-bottom: 1px solid rgb(234, 234, 234);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  text-align: center;
  overflow: auto;
  padding: 10px;
}

.search-results-none {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  text-align: center;
  overflow: auto;
  padding: 10px;
}

@media (min-width: 768px) {
  .search-outer {
    display: block;
    z-index: 999999;
  }
  .search:hover,
.search.active {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .search-outer {
    top: 25px;
    right: 120px;
  }
}
@media (min-width: 1280px) {
  .search-outer {
    position: absolute;
    top: 44px;
    right: 38px;
  }
}
.search--mobile {
  display: block;
  position: initial;
  margin-top: 41px;
  margin-bottom: 20px;
}

.search--mobile .search {
  width: 100%;
  padding-left: 34px;
  padding-right: 34px;
}

.search--mobile .search-input {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .search--mobile {
    display: none;
  }
}
.form {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.6rem;
}

.form label {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(68, 68, 68);
  display: block;
}

.form input[type=text],
.form input[type=url],
.form input[type=password],
.form input[type=email] {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(153, 153, 153);
  display: block;
  border: none;
  padding: 12px 0px;
  margin: 5px 0 20px 0;
  color: rgb(68, 68, 68);
  width: 100%;
  text-indent: 10px;
  background-color: #F1F1F1;
  line-height: 2.4rem;
}

.form select {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(153, 153, 153);
  display: block;
  border: none;
  padding: 12px 0px;
  margin: 5px 0 20px 0;
  color: rgb(68, 68, 68);
  width: 100%;
  text-indent: 10px;
  background-color: #F1F1F1;
  line-height: 2.4rem;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  height: 48px;
}

.form textarea {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(153, 153, 153);
  display: block;
  border: none;
  padding: 12px 0px;
  margin: 5px 0 20px 0;
  color: rgb(68, 68, 68);
  width: 100%;
  text-indent: 10px;
  background-color: #F1F1F1;
  line-height: 2.4rem;
}

.form .help-block {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(255, 151, 151);
  display: block;
  margin-bottom: 20px;
  margin-top: -10px;
}

.alert {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.form .has-error input[type=text],
.form .has-error input[type=password],
.form .has-error input[type=email] {
  border: 1px solid rgb(255, 151, 151);
}

.form--filter {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.form--filter label {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.6rem;
  color: rgb(153, 153, 153);
  display: block;
}

.form--filter input[type=text],
.form--filter input[type=password],
.form--filter input[type=email] {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  color: rgb(153, 153, 153);
  display: block;
  border: none;
  padding: 5px 0px;
  margin: 0;
  color: rgb(68, 68, 68);
  width: 100%;
  text-indent: 10px;
  background-color: rgb(234, 234, 234);
}

.charts--marketingActivity {
  height: 400px;
}

.charts--marketingActivity .highcharts-legend-item .highcharts-point {
  display: none;
}

.charts--marketingActivity .label-item .label-text {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  color: #999999;
  padding-top: 2px;
  padding-left: 25px;
}

.highcharts-legend-item-hidden .label-item {
  opacity: 0.4 !important;
}

.charts--marketingActivity .label-item .label-icon {
  float: left;
  width: 15px;
  height: 15px;
  margin-right: 0px;
}

.charts--marketingActivity .chart-face {
  width: 30px;
  height: auto;
  margin-left: 0px;
  margin-top: 0px;
  z-index: 1;
  position: relative;
}

.charts--marketingActivity .chart-email {
  width: 25px;
  height: auto;
  margin-left: 0px;
  margin-bottom: -90px;
  z-index: 1;
  position: relative;
}

.charts--marketingActivity .label {
  z-index: 1 !important;
}

.charts--marketingActivity .highcharts-tooltip span {
  background-color: white;
  opacity: 1;
  z-index: 9999 !important;
}

.charts--marketingActivity .chart-tooltip {
  padding: 5px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  color: #999;
}

.label-item--conversions .label-text {
  padding-left: 20px;
}
.label-item--conversions .label-text::before {
  float: left;
  content: "";
  border: 1px solid #CCCCCC;
  background-color: #CCCCCC;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 6px;
}

.highcharts-legend-item-hidden .label-item--conversions .label-text::before {
  background-color: transparent;
}

@media (min-width: 768px) {
  .charts--marketingActivity {
    height: 500px;
  }
  .charts--marketingActivity .chart-face {
    width: 50px;
  }
  .charts--marketingActivity .chart-email {
    margin-bottom: -65px;
  }
}
.charts--contentActivity .chart-face {
  width: 23px;
}

@media (max-width: 1023px) {
  .charts--marketingActivity {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .charts--marketingActivity#activity-history {
    height: 400px;
  }
}
.header-userinfo {
  display: none;
}

@media (min-width: 768px) {
  .header-userinfo {
    display: block;
    position: absolute;
    top: 17px;
    right: 390px;
    line-height: 40px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    color: rgb(153, 153, 153);
    cursor: pointer;
    z-index: 999999;
    padding: 10px 10px;
  }
  .header-userinfo:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.4);
    z-index: 999999;
  }
  .header-userinfo-nav {
    display: none;
    padding: 0;
    margin: 0;
    list-style-type: none;
    background-color: white;
    width: 119px;
    border-top: 1px solid rgb(234, 234, 234);
    background-color: rgb(255, 255, 255);
    padding: 10px 0px;
    margin-top: 10px;
    padding-bottom: 0;
  }
  .header-userinfo:hover .header-userinfo-nav {
    display: block;
  }
  .header-userinfo-nav ul {
    padding: 0;
    margin: 0;
  }
  .header-userinfo-nav ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 28px;
  }
  .header-userinfo-nav ul li a {
    color: rgb(153, 153, 153);
  }
  .header-userinfo-avatar-outer {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
  }
  .header-userinfo-avatar-outer img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1280px) {
  .header-userinfo {
    top: 34px;
    right: 331px;
  }
}
.table--sortable.dataTable {
  border-bottom: 1px solid #eaeaea !important;
}
.table--sortable.dataTable thead tr th {
  line-height: 15px;
  border-bottom: 1px solid #eaeaea !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.table--sortable.dataTable thead tr th.sorting {
  background-image: none !important;
}
.table--sortable.dataTable thead tr th.sorting_desc {
  background-image: url(/images/sort-table-down.png) !important;
}
.table--sortable.dataTable thead tr th.sorting_asc {
  background-image: url(/images/sort-table-up.png) !important;
}

.dataTables_info {
  display: none !important;
}

.tagcloud {
  text-align: center;
}
.tagcloud a {
  color: #222222;
  display: inline-block;
  position: relative;
}
.tagcloud .tagcloud-count {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 20px;
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-left: 5px;
  position: absolute;
  right: 5px;
  top: 50%;
  /* bottom: 50%; */
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}

.session-card-slider,
.session-card-grid {
  margin-bottom: 0;
  padding-bottom: 30px;
  display: none;
  margin-left: 20px;
  margin-right: 20px;
}

.slick-track {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
}

.slick-list {
  overflow: hidden;
}

.slick-next {
  right: -38px;
  z-index: 999999;
}
.slick-next:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 23px;
  border-color: transparent transparent transparent #CCCCCC;
  font-family: none;
  font-size: unset;
  margin-left: -24px;
}

.slick-prev {
  left: -50px;
  z-index: 999999;
}
.slick-prev:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 23px 15px 0;
  border-color: transparent #CCCCCC transparent transparent;
  font-family: none;
  font-size: unset;
  margin-right: -44px;
}

.slick-initialized {
  display: block;
}
@media (max-width: 1023px) {
  .slick-initialized {
    margin-bottom: 0 !important;
  }
}

.slick-dots {
  bottom: 0;
}
.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.slick-dots li button:before {
  background-color: #DDDDDD;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  content: "";
}
.slick-dots li.slick-active button:before {
  background-color: #1a99d4;
}

.session-card {
  margin: 0 10px;
  text-align: center;
  width: 200px;
  line-height: 19px;
  font-size: 13px;
  color: #666666;
  position: relative;
  background: rgb(255, 255, 255);
  border: 1px solid #EEEEEE;
}
.session-card a {
  color: #AAAAAA;
  text-decoration: none;
}
.session-card .session-card-menu {
  display: none;
}
.session-card .session-card-list {
  display: none !important;
}
.session-card .session-card-inner {
  padding: 20px;
  padding-top: 25px;
  padding-bottom: 30px;
}
.session-card .session-card-inner-content {
  padding-top: 40px;
  padding-bottom: 60px;
}
.session-card .session-stats {
  font-size: 12px;
  line-height: 16px;
}
.session-card .lead-score-wrapper {
  position: absolute;
  top: 10px;
  left: 5px;
}
.session-card.slick-active::after {
  display: none !important;
}
.session-card .session-card-name {
  overflow-wrap: anywhere;
}
.session-card .session-card-pills {
  text-align: left;
  margin-top: -10px;
  margin-left: -8px;
  margin-bottom: 10px;
}
.session-card .session-card-pills .session-card-pill {
  background-color: #07CD8F;
  color: white;
  display: inline-block;
  margin: 0 3px 10px 0;
  padding: 0px 10px;
  border-radius: 25px;
  height: 24px;
  line-height: 25px;
  font-weight: 900;
  display: none;
  font-size: 14px;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-unqualified {
  background-color: #999999;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-client {
  background-color: #222222;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-tag {
  background-color: #FF7332;
  width: 24px;
  height: 24px;
  padding: 0;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-tag img {
  position: relative;
  top: 3px;
  left: 5px;
  display: inline !important;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-paid {
  background-color: #999999;
  width: 24px;
  height: 24px;
  padding: 0;
  text-align: center;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-crm {
  float: left;
  display: inline-block;
  padding: 0;
  background-color: transparent;
}
.session-card .session-card-pills .session-card-pill.session-card-pills-crm img {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.session-card.has-unqualified, .session-card .has-unqualified {
  filter: grayscale(100%);
}
.session-card.has-unqualified .session-card-pills-unqualified, .session-card .has-unqualified .session-card-pills-unqualified {
  display: inline-block;
}
.session-card.not-verified {
  filter: grayscale(100%);
  opacity: 0.5;
}
.session-card.not-verified .session-card-pills-notverfified {
  display: inline-block !important;
  background-color: #999999;
  width: 24px;
  height: 24px;
  padding: 0;
  text-align: center;
}
.session-card.has-client, .session-card .has-client {
  opacity: 0.3;
  filter: grayscale(100%);
}
.session-card.has-client .session-card-pills-client, .session-card .has-client .session-card-pills-client {
  display: inline-block;
  background-color: #999999 !important;
}
.session-card.has-mql, .session-card .has-mql {
  background-color: #EEFBF6;
  border: 1px solid #C1F2E3;
  opacity: 1;
  filter: none;
}
.session-card.has-mql .session-card-title,
.session-card.has-mql .session-card-name,
.session-card.has-mql .session-card-stats,
.session-card.has-mql i,
.session-card.has-mql .session-card-selectstage, .session-card .has-mql .session-card-title,
.session-card .has-mql .session-card-name,
.session-card .has-mql .session-card-stats,
.session-card .has-mql i,
.session-card .has-mql .session-card-selectstage {
  color: #555555 !important;
}
.session-card.has-mql .session-card-name,
.session-card.has-mql .session-card-selectstage-label,
.session-card.has-mql .selectboxit-container,
.session-card.has-mql .session-card-selectstage, .session-card .has-mql .session-card-name,
.session-card .has-mql .session-card-selectstage-label,
.session-card .has-mql .selectboxit-container,
.session-card .has-mql .session-card-selectstage {
  color: #222222 !important;
}
.session-card.has-mql .session-card-selectstage, .session-card .has-mql .session-card-selectstage {
  border: none;
}
.session-card.has-mql hr, .session-card .has-mql hr {
  background-color: #666666 !important;
}
.session-card.has-mql .session-card-pills-mql, .session-card .has-mql .session-card-pills-mql {
  display: inline-block;
}
.session-card.has-mql .session-card-stats-topright svg path, .session-card .has-mql .session-card-stats-topright svg path {
  fill: #07CD8F;
}
.session-card.has-mql .session-card-menuclosebutton svg polygon, .session-card .has-mql .session-card-menuclosebutton svg polygon {
  fill: #07CD8F;
}
.session-card.has-mql .session-card-pills-client, .session-card .has-mql .session-card-pills-client {
  background-color: #222222 !important;
}
.session-card.has-sql, .session-card .has-sql {
  background-color: #C8F2E3;
  border: 1px solid #72EDC6;
  opacity: 1;
  filter: none;
}
.session-card.has-sql .session-card-title,
.session-card.has-sql .session-card-name,
.session-card.has-sql .session-card-stats,
.session-card.has-sql i, .session-card .has-sql .session-card-title,
.session-card .has-sql .session-card-name,
.session-card .has-sql .session-card-stats,
.session-card .has-sql i {
  color: #555555 !important;
}
.session-card.has-sql .session-card-name,
.session-card.has-sql .session-card-selectstage-label,
.session-card.has-sql .selectboxit-container,
.session-card.has-sql .session-card-selectstage, .session-card .has-sql .session-card-name,
.session-card .has-sql .session-card-selectstage-label,
.session-card .has-sql .selectboxit-container,
.session-card .has-sql .session-card-selectstage {
  color: #222222 !important;
}
.session-card.has-sql .session-card-selectstage, .session-card .has-sql .session-card-selectstage {
  border: none;
}
.session-card.has-sql hr, .session-card .has-sql hr {
  background-color: #666666 !important;
}
.session-card.has-sql .session-card-pills-sql, .session-card .has-sql .session-card-pills-sql {
  display: inline-block;
}
.session-card.has-sql .session-card-menuclosebutton svg polygon, .session-card .has-sql .session-card-menuclosebutton svg polygon {
  fill: #07CD8F;
}
.session-card.has-sql .session-card-pills-client, .session-card .has-sql .session-card-pills-client {
  background-color: #222222 !important;
}
.session-card.has-tag .session-card-pills-tag, .session-card .has-tag .session-card-pills-tag {
  display: inline-block;
}
.session-card.has-paid .session-card-pills-paid, .session-card .has-paid .session-card-pills-paid {
  display: inline-block;
}
.session-card.is-hidden {
  opacity: 0.3;
}
.session-card.has-other-visitors, .session-card .has-other-visitors {
  padding-bottom: 50px;
}
.session-card .session-card-other-visitors {
  text-align: center;
  font-weight: 700;
  color: #378FF9 !important;
  text-decoration: underline;
  bottom: 15px;
  font-size: 11px;
  line-height: 15px;
  position: absolute;
  left: 10px;
  right: 10px;
}
.session-card .session-card-other-visitors img {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  margin-right: 12px;
}
.session-card .session-card-stats {
  font-size: 11px;
  color: #AAAAAA;
  line-height: 15px;
}
.session-card .session-card-stats.session-card-stats-bottomleft {
  position: absolute;
  left: 10px;
  bottom: 10px;
  text-align: left;
}
.session-card .session-card-stats.session-card-stats-bottomright {
  position: absolute;
  right: 10px;
  bottom: 10px;
  text-align: right;
}
.session-card .session-card-stats.session-card-stats-topright {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
}
.session-card .session-card-stats.session-card-stats-topleft {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: left;
}

.session-card-pendinghidden {
  opacity: 0.3;
}

.session-card-menuopen .session-card-stats-topright {
  display: none;
}
.session-card-menuopen .session-card-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
}
.session-card-menuopen .session-card-menu .session-card-menuclosebutton {
  position: absolute;
  top: 5px;
  right: 3px;
  padding: 12px 8px;
  cursor: pointer;
}
.session-card-menuopen .session-card-menu .session-card-menuclosebutton svg {
  width: 13px;
  height: 13px;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .session-card-menuopen .session-card-menu .session-card-selectstage-wrapper {
    margin-bottom: 30px;
    width: 100%;
  }
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper select {
  display: none;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit-container * {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit-container {
  width: 100%;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit {
  border-radius: 0 !important;
  background: white !important;
  border-color: #cccccc !important;
  width: 100% !important;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit .selectboxit-default-arrow {
  border-top: 4px solid #1a99d4;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit-list {
  border-radius: 0 !important;
  width: 100% !important;
  width: 100% !important;
  margin-top: -1px !important;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit-list .selectboxit-focus > .selectboxit-option-anchor {
  background-color: #1a99d4 !important;
  color: white !important;
  border-color: #1a99d4 !important;
  background-image: none !important;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit-list .selectboxit-option[data-val=new] {
  border-top: 1px solid #1a99d4 !important;
}
.session-card-menuopen .session-card-menu .session-card-selectstage-wrapper .selectboxit-list .selectboxit-option[data-val=new] a:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(/images/external-link-blue.svg);
  display: inline-block;
  background-position: bottom -1px right;
  background-size: 14px auto;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 2px;
}
.session-card-menuopen .session-card-menu .session-card-menu-ignore,
.session-card-menuopen .session-card-menu .session-card-menu-flag {
  background-color: #07CD8F;
  color: white;
  text-align: center;
  font-size: 14px;
  padding: 4px;
  margin-bottom: 10px;
  cursor: pointer;
}
.session-card-menuopen .session-card-menu .session-card-menu-ignore:hover,
.session-card-menuopen .session-card-menu .session-card-menu-flag:hover {
  background-image: url(/images/checkbox.svg);
  background-size: 15px auto;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.session-card-menuopen .session-card-menu .session-card-menu-ignore.active,
.session-card-menuopen .session-card-menu .session-card-menu-flag.active {
  background-image: url(/images/checkbox.svg);
  background-size: 15px auto;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.session-card-menuopen .session-card-menu .session-card-menu-ignore.active:hover,
.session-card-menuopen .session-card-menu .session-card-menu-flag.active:hover {
  background-image: url(/images/x.svg);
  background-size: 13px auto;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.session-card-menuopen .session-card-menu .session-card-menu-flag-client,
.session-card-menuopen .session-card-menu .session-card-menu-unflag-client {
  background-color: #999999;
}
.session-card-menuopen .session-card-menu .session-card-menu-flag-client {
  display: block;
}
.session-card-menuopen .session-card-menu .session-card-menu-unflag-client {
  display: none;
}
.session-card-menuopen .session-card-menu .session-card-menu-unflag-prospect {
  display: none;
}
.session-card-menuopen .session-card-menu .session-card-menu-flag-prospect {
  display: block;
}
.session-card-menuopen .session-card-menu .session-card-menu-unflag-client,
.session-card-menuopen .session-card-menu .session-card-menu-unflag-prospect,
.session-card-menuopen .session-card-menu .session-card-menu-flag:hover,
.session-card-menuopen .session-card-menu .session-card-menu-ignore:hover {
  opacity: 1;
}
.session-card-menuopen .session-card-menu .session-card-menu-ignore {
  background-color: rgb(255, 151, 151);
}
.session-card-menuopen .session-card-menu hr {
  height: 1px;
  color: #DDDDDD;
  background-color: #DDDDDD;
  border: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.session-card-menuopen .session-card-inner {
  visibility: hidden;
}

.tooltip-card-table th,
.tooltip-card-table td {
  vertical-align: top;
  padding: 12px 6px;
  font-size: 12px;
  line-height: 16px;
}
.tooltip-card-table th {
  color: #999999;
  font-weight: normal;
  white-space: nowrap;
  background-color: #EEEEEE;
  text-align: right;
  vertical-align: top;
}
.tooltip-card-table td {
  color: #222222;
  padding-left: 10px;
  padding-right: 10px;
}
.tooltip-card-table b {
  font-size: 12px;
  line-height: 16px;
}
.tooltip-card-table .tooltip-pill {
  background-color: #07CD8F;
  color: white;
  display: inline-block;
  margin: 0 3px 3px 0;
  padding: 0px 10px;
  border-radius: 25px;
  height: 24px;
  line-height: 25px;
  font-weight: 900;
  font-size: 14px;
}
.tooltip-card-table .tooltip-pill.unqualified {
  background-color: #999999;
}
.tooltip-card-table .tooltip-pill.client {
  background-color: #222222;
}
.tooltip-card-table .tooltip-pill.tag {
  background-color: #FF7332;
}
.tooltip-card-table .tooltip-pill.paid {
  background-color: green;
  width: 24px;
  height: 24px;
  padding: 0;
  text-align: center;
}

.tooltip-chart-container {
  background-image: url(/images/gear.svg);
  background-position: center center;
  background-size: 60px auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 232px;
}
.tooltip-chart-container img {
  width: 95%;
  margin: 0 auto;
  height: auto;
  background-color: white;
}

.session-card-grid {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 300px) {
  .session-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .session-card-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.session-card-grid .session-card {
  min-height: 250px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  max-width: 320px;
  color: #777777;
}
@media (min-width: 556px) {
  .session-card-grid .session-card {
    width: 46%;
  }
}
@media (min-width: 768px) {
  .session-card-grid .session-card {
    width: 30%;
  }
}
@media (min-width: 1024px) {
  .session-card-grid .session-card {
    width: 22.3%;
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .session-card-grid .session-card {
    width: 18.1%;
  }
}
.session-card-grid .session-card .session-card-inner {
  width: 100%;
}
.session-card-grid .session-card .session-card-stats .session-card-stats-number {
  margin-top: 0;
}

.session-card-grid-wrapper {
  position: relative;
  clear: right;
}
.session-card-grid-wrapper .pagination li [rel=prev] {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 19px 13px 0;
  border-color: transparent #1a99d4 transparent transparent;
  font-family: none;
  font-size: unset;
  position: absolute;
  margin-left: -23px;
  margin-top: -17px;
}
.session-card-grid-wrapper .pagination li [rel=next] {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 19px;
  border-color: transparent transparent transparent #1a99d4;
  font-family: none;
  font-size: unset;
  position: absolute;
  margin-right: -23px;
  margin-top: -17px;
}

.section-loading {
  visibility: hidden;
}

@media (min-width: 768px) {
  .session-card-grid-small {
    margin-left: -30px;
    margin-right: -30px;
  }
  .session-card-grid-small .session-card {
    width: 27%;
  }
  .session-card-grid-small .session-card .session-card-inner-content {
    padding: 10px;
    padding-bottom: 60px;
  }
}

.session-card-slider--left-align .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.nf-toggle-list-initialized {
  position: relative;
}
.nf-toggle-list-initialized .toggle-controls {
  right: 28px;
  position: absolute;
  top: -38px;
  width: 200px;
  height: 18px;
  text-align: right;
}
.nf-toggle-list-initialized .toggle-controls .toggle-controls-cards {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #1a99d4;
  cursor: pointer;
  opacity: 0.3;
  margin-left: 10px;
  position: relative;
}
.nf-toggle-list-initialized .toggle-controls .toggle-controls-cards:before {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  bottom: 4px;
  left: 6px;
  bottom: 2px;
  left: 2px;
  background-color: #1a99d4;
}
.nf-toggle-list-initialized .toggle-controls .toggle-controls-cards:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  top: 3px;
  left: 5px;
  background-color: #1a99d4;
}
.nf-toggle-list-initialized .toggle-controls .toggle-controls-list {
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.3;
  margin-left: 10px;
  position: relative;
  background-image: url(/images/list.svg);
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: 0 -5px;
}
.nf-toggle-list-initialized.toggle-state-cards .toggle-controls-cards {
  opacity: 1;
}
.nf-toggle-list-initialized.toggle-state-list .toggle-controls-list {
  opacity: 1;
}
.nf-toggle-list-initialized.toggle-state-list {
  padding-right: 28px;
}
.nf-toggle-list-initialized.toggle-state-list .inner {
  border: 1px solid #eaeaea;
}
.nf-toggle-list-initialized.toggle-state-list .inner .card--loading {
  animation: none !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card {
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
  font-size: 14px;
  overflow: hidden;
  color: #222222 !important;
  position: relative;
  box-shadow: none !important;
  padding: 10px 10px 10px 40px;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card a {
  color: #222222 !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-inner,
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-stats,
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-menu {
  display: none !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-list {
  display: block !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-pills {
  display: inline-block;
  margin: 0 !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-pills .session-card-pill {
  margin-bottom: 0 !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-stage {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  overflow: hidden;
  font-size: 15px;
  padding: 0;
  font-size: 12px !important;
  line-height: 20px;
  color: white;
  text-align: center;
  line-height: 20px;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-stage:before, .nf-toggle-list-initialized.toggle-state-list .inner .session-card-stage:after {
  display: none !important;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-stage.session-card-stage-client {
  background-color: #DDDDDD;
}
.nf-toggle-list-initialized.toggle-state-list .inner .session-card-stage.session-card-stage-prospect {
  background-color: #07cd8f;
}

.filter-pill {
  display: inline-block;
  margin: 0 auto;
  background-color: #1a99d4;
  border-radius: 40px;
  color: white;
  padding: 5px 30px;
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
}
.filter-pill .filter-pill-close {
  margin-left: 4px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
}

.nf-selectboxit--sort {
  float: right;
}
@media (max-width: 767px) {
  .nf-selectboxit--sort {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
}
.nf-selectboxit--sort select {
  display: none;
}
.nf-selectboxit--sort .selectboxit-container * {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.nf-selectboxit--sort .selectboxit {
  border-radius: 0 !important;
  background: white !important;
  border-color: #cccccc !important;
  width: 220px !important;
}
.nf-selectboxit--sort .selectboxit .selectboxit-default-arrow {
  border-top: 4px solid #1a99d4;
}
.nf-selectboxit--sort .selectboxit.selectboxit-open, .nf-selectboxit--sort .selectboxit.selectboxit-hover {
  background-color: #1a99d4 !important;
  color: white !important;
  border-color: #1a99d4 !important;
}
.nf-selectboxit--sort .selectboxit.selectboxit-open .selectboxit-default-arrow, .nf-selectboxit--sort .selectboxit.selectboxit-hover .selectboxit-default-arrow {
  border-top: 4px solid white !important;
}
.nf-selectboxit--sort .selectboxit-list {
  border-radius: 0 !important;
  width: 222px !important;
  min-width: 222px !important;
  margin-top: -1px !important;
}
.nf-selectboxit--sort .selectboxit-list .selectboxit-focus > .selectboxit-option-anchor {
  background-color: #1a99d4 !important;
  color: white !important;
  border-color: #1a99d4 !important;
  background-image: none !important;
}

/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */
/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/
/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font: 14px Helvetica, Arial;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
  width: 220px; /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 30px; /* Height of the drop down */
  line-height: 30px; /* Vertically positions the drop down text */
  display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
  box-sizing: border-box;
  box-sizing: content-box\9 ;
  min-width: 100%; /* Minimum Width of the dropdown list box options */
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 6px;
  text-align: left;
  box-shadow: none;
}

/* Individual options */
.selectboxit-option .selectboxit-option-anchor {
  padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}

.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  color: #333333;
  background-color: #e6e6e6;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
}

.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
  color: #333333;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #0081c2;
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}

.profile-activity-timeline-title {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 0px;
  position: relative;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-prev,
.slick-next {
  width: 10px;
  height: 20px;
  background-size: 10px 20px;
  background-repeat: repeat-x;
  background-position: center center;
  transform: none;
}
.slick-prev.slick-prev,
.slick-next.slick-prev {
  background-image: url(/images/timeline-icon-prev.svg);
  left: -20px;
}
.slick-prev.slick-next,
.slick-next.slick-next {
  background-image: url(/images/timeline-icon-next.svg);
  right: -20px;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.2;
}

.profile-activity-timeline {
  padding-bottom: 10px;
}
.profile-activity-timeline .toggle-controls {
  right: 0;
  position: absolute;
  top: 0;
  width: 200px;
  height: 18px;
  text-align: right;
}
.profile-activity-timeline .toggle-controls .toggle-controls-cards {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #1a99d4;
  cursor: pointer;
  opacity: 0.3;
  margin-left: 10px;
  position: relative;
}
.profile-activity-timeline .toggle-controls .toggle-controls-cards:before {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  bottom: 4px;
  left: 6px;
  bottom: 2px;
  left: 2px;
  background-color: #1a99d4;
}
.profile-activity-timeline .toggle-controls .toggle-controls-cards:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 0;
  position: absolute;
  top: 3px;
  left: 5px;
  background-color: #1a99d4;
}
.profile-activity-timeline .toggle-controls .toggle-controls-list {
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.3;
  margin-left: 10px;
  position: relative;
  background-image: url(/images/list.svg);
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: 0 -5px;
}
.profile-activity-timeline.toggle-state-cards .toggle-controls-cards {
  opacity: 1;
}
.profile-activity-timeline.toggle-state-cards #list-outer {
  display: none;
}
.profile-activity-timeline.toggle-state-list .toggle-controls-list {
  opacity: 1;
}
.profile-activity-timeline.toggle-state-list #timeline-outer {
  display: none;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer {
  margin-top: 37px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #999;
  padding-left: 33px;
  padding-top: 3px;
  margin-left: 10px;
  margin-bottom: 0px;
  max-width: 89%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 525px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-wrapper {
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 371px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-wrapper.caption-wrapper-haslink a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(/images/external-link-blue2.svg);
  display: inline-block;
  background-position: bottom -1px right;
  background-size: 24px auto;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  left: -30px;
  margin-top: -2px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-wrapper .caption-title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 2rem;
  color: #1a99d4;
  max-width: 450px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-icon {
  background-color: #E50000;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  color: white;
  font-weight: 600;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  display: inline-block;
  margin-right: 5px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-bold1 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-bold2 {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  margin-top: 3px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags div {
  margin: 0 10px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .refresh {
  background-image: url(/images/refresh-screenshot2.svg);
  background-position: left center;
  background-size: 24px auto;
  background-repeat: no-repeat;
  opacity: 0.5;
  cursor: pointer;
  color: #999;
  padding-left: 30px;
  display: inline-block;
  margin-left: 19px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .refresh.refreshing {
  opacity: 1;
  animation: rotation 2s infinite linear;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags {
  position: absolute;
  right: 10px;
  top: auto;
  bottom: 0px;
  left: 30px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 2rem;
  color: #666;
  z-index: 99999;
  background-color: #FFFFFF;
  padding: 10px;
  padding-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  width: 76%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: 338px;
  bottom: -67px;
}
@media (min-width: 768px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags {
    background-color: transparent;
    padding: 0;
    top: 115px;
    right: 20px;
    left: auto;
    bottom: auto;
    box-shadow: none;
    width: 221px;
    padding-bottom: 10px;
  }
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flags-desc {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #999;
  margin-bottom: 20px;
  max-width: 170px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-group {
  margin-bottom: 20px;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags strong {
  color: #222;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  display: block;
  font-size: 1.7rem;
  line-height: 2.6rem;
  margin-bottom: 10px;
  color: #222;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-conversion {
  padding-left: 20px;
  position: relative;
  display: block;
  color: #FF8B03;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-conversion:before {
  content: "";
  color: #1a99d4 !important;
  font-size: 35px;
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 15px;
  background-size: 9px auto;
  background-repeat: no-repeat;
  background-image: url(/images/timeline-icon-conversion-active.svg);
  background-size: 14px auto;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-referrer {
  padding-left: 20px;
  position: relative;
  display: block;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-referrer:before {
  content: "";
  color: #1a99d4 !important;
  font-size: 35px;
  position: absolute;
  top: 6px;
  left: 0;
  width: 15px;
  height: 15px;
  background-size: 9px auto;
  background-repeat: no-repeat;
  background-image: url(/images/timeline-icon-referrer-active.svg);
  background-size: 14px auto;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-attribution {
  padding-left: 16px;
  position: relative;
  display: block;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-attribution:before {
  content: "";
  color: #1a99d4 !important;
  font-size: 35px;
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  background-size: 9px auto;
  background-repeat: no-repeat;
  background-image: url(/images/timeline-icon-paid-active.svg);
  background-size: 9px auto;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-positioning {
  padding-left: 16px;
  position: relative;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper .caption-outer .caption-flags .caption-flag-title.flag-title-positioning:before {
  content: "•";
  color: #1a99d4 !important;
  font-size: 35px;
  position: absolute;
  top: 2px;
  left: 0;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper #gallery {
  max-width: 89%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 70px !important;
}
@media (min-width: 525px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper #gallery {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper #gallery {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px !important;
    margin-top: 10px !important;
  }
}
.profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual {
  width: 100%;
  height: 325px;
  opacity: 0.1;
}
@media (min-width: 768px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual {
    width: 700px;
    height: 325px;
  }
}
.profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual.slick-current {
  opacity: 1;
}
.profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual img {
  width: 99%;
  height: auto;
  border: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual img {
    width: 360px;
    height: auto;
    max-width: 400px;
  }
}
@media (min-width: 831px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual img {
    width: 400px;
  }
}
@media (min-width: 1280px) {
  .profile-activity-timeline #timeline-outer #gallery-wrapper #gallery .slide-actual img {
    width: 400px;
    height: auto;
  }
}
.profile-activity-timeline #timeline-outer #timeline-wrapper {
  overflow-x: scroll;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper #timeline {
  margin: 20px 0 55px 0;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-part {
  height: 29px;
  background-image: url(/images/dots.png);
  background-size: 20px;
  background-repeat: repeat-x;
  background-position: 0px 14px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-visit {
  border-right: 2px solid #E5E5E5;
  border-left: 2px solid #E5E5E5;
  padding-left: 10px;
  padding-right: 10px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page {
  cursor: pointer;
  position: relative;
  min-width: 16px;
  padding-left: 3px;
  padding-right: 3px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-page-hit .timeline-marker {
  background-color: white;
  border: 2px solid #E5E5E5;
  border-radius: 20px;
  background-color: white;
  height: 12px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active .timeline-marker {
  background-color: #E5E5E5;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active:after {
  opacity: 1 !important;
  filter: none;
  filter: none;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active:before {
  color: #459BF9 !important;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active[key=E]:after {
  background-image: url(/images/timeline-icon-email-active.svg);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active[key=C]:after {
  background-image: url(/images/timeline-icon-conversion-active.svg);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active[key=R]:after {
  background-image: url(/images/timeline-icon-referrer-active.svg);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active[key="$"]:after {
  background-image: url(/images/timeline-icon-paid-active.svg);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active[key="R & C"]:after {
  background-image: url(/images/timeline-icon-referrer-conversion-active.svg);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page.timeline-active[key="$ + C"]:after {
  background-image: url(/images/timeline-icon-paid-conversion-active.svg);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page:after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  right: 0;
  height: 15px;
  display: inline-block;
  background-position: center center;
  background-size: 9px auto;
  background-repeat: no-repeat;
  filter: gray;
  filter: grayscale(1);
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page:before {
  content: "";
  color: #E5E5E5;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 32px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key="$"]:after {
  background-image: url(/images/timeline-icon-paid.svg);
  background-size: 8px auto;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key=C]:after {
  background-image: url(/images/timeline-icon-conversion.svg);
  background-size: 14px auto;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key=R]:after {
  background-image: url(/images/timeline-icon-referrer.svg);
  background-size: 14px auto;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key=E]:after {
  background-image: url(/images/timeline-icon-email.svg);
  background-size: 20px auto;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key=R]:befafterore {
  background-image: url(/images/timeline-icon-referrer.svg);
  background-size: 14px auto;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key="R & C"]:after {
  background-image: url(/images/timeline-icon-referrer-conversion.svg);
  background-size: 21px auto;
  height: 45px;
  bottom: -45px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[key="$ + C"]:after {
  background-image: url(/images/timeline-icon-paid-conversion.svg);
  background-size: 20px auto;
  height: 45px;
  bottom: -45px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-page[data-is-positioning-page="1"]:before {
  content: "•";
  color: #E5E5E5;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 35px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-button {
  background-color: #1a99d4 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 40px;
  padding: 0 !important;
  text-align: center !important;
  top: 40px;
  position: relative;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .timeline-button svg {
  width: 12px !important;
  height: auto !important;
  margin-top: 11px !important;
  float: none !important;
  margin-left: 3px;
}
.profile-activity-timeline #timeline-outer #timeline-wrapper .profile-activity-timeline-date {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #222222;
  margin-top: 68px;
  margin-bottom: -10px;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination {
  margin-top: 0;
  margin-bottom: 20px;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination > li a,
.profile-activity-timeline .profile-activity-timeline-nav .pagination > li span {
  background-color: transparent;
  border: none;
  color: #999999 !important;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #999;
  width: auto;
  height: auto;
  padding: 0 5px;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination > li.active a,
.profile-activity-timeline .profile-activity-timeline-nav .pagination > li.active span, .profile-activity-timeline .profile-activity-timeline-nav .pagination > li:hover a,
.profile-activity-timeline .profile-activity-timeline-nav .pagination > li:hover span {
  color: #222222 !important;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination [rel=prev] {
  background-image: none;
  opacity: 0.5;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination [rel=prev]:hover {
  opacity: 1;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination [rel=prev]:before {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #222222;
  content: "Previous";
  padding-left: 20px;
  background-image: url(/images/timeline-pagination-prev.svg);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: left center;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination [rel=next] {
  background-image: none;
  opacity: 0.5;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination [rel=next]:hover {
  opacity: 1;
}
.profile-activity-timeline .profile-activity-timeline-nav .pagination [rel=next]:before {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #222222;
  content: "Next";
  padding-right: 20px;
  background-image: url(/images/timeline-pagination-next.svg);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: right center;
}

table.timeline-list {
  margin-top: 40px;
  margin-bottom: 20px;
}
table.timeline-list td {
  padding-right: 20px;
  font-size: 1.3rem;
  line-height: 2rem;
  color: #666;
  vertical-align: top;
  height: 42px;
}
table.timeline-list td.timeline-list-dark {
  color: #222222;
  min-width: 65px;
  font-weight: 500;
  white-space: nowrap;
}
table.timeline-list td.timeline-list-date {
  white-space: nowrap;
}
table.timeline-list td.timeline-list-icons {
  text-align: center;
  white-space: nowrap;
}
table.timeline-list td.timeline-list-icons img {
  opacity: 0.8;
  display: inline-block;
  margin: 0 2px;
}
table.timeline-list td.timeline-list-icons .positioning-page-key {
  color: #1a99d4 !important;
  font-size: 35px;
  position: relative;
  top: 2px;
  left: 0;
}
table.timeline-list td a:after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(/images/external-link-blue.svg);
  background-position: bottom -1px right;
  background-size: 14px auto;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 2px;
}

.animate-truncate {
  overflow: hidden;
  position: relative;
  height: 0;
}

.animate-truncate.expanded {
  height: auto !important;
}

.animate-truncate .load-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  color: rgb(26, 153, 212);
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 0;
  background-image: url(/images/more-fade.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  cursor: pointer;
  height: 144px;
  vertical-align: baseline;
  display: table-cell;
  line-height: 277px;
}

.animate-truncate.expanded .load-more {
  display: none;
}

.js-truncaterows {
  display: none;
}

.js-truncaterows .load-more {
  color: rgb(26, 153, 212);
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 20px;
}

.js-truncaterows .listView-rowHiddenSmall {
  display: none !important;
}

.js-truncaterows .listView-rowHiddenLarge {
  display: none !important;
}

.js-truncaterows .load-more-small {
  display: block !important;
}

.js-truncaterows .load-more-large {
  display: none !important;
}

@media (min-width: 768px) {
  .js-truncaterows .listView-rowHiddenSmall {
    display: table-row !important;
  }
  .js-truncaterows .listView-rowHiddenLarge {
    display: none !important;
  }
  .js-truncaterows .load-more-small {
    display: none !important;
  }
  .js-truncaterows .load-more-large {
    display: block !important;
  }
}
@media (min-width: 1280px) {
  .js-truncaterows .listView-rowHiddenSmall {
    display: table-row !important;
  }
  .js-truncaterows .listView-rowHiddenLarge {
    display: none !important;
  }
}
.js-truncaterows.expanded .listView-rowHiddenSmall {
  display: table-row !important;
}

.js-truncaterows.expanded .listView-rowHiddenLarge {
  display: table-row !important;
}

.js-truncaterows.expanded tfoot {
  display: none !important;
}

.js-animaterow {
  overflow: hidden;
}

.js-animaterow-fixed {
  width: 100px;
}

.animatecell-bar {
  background-color: #daf8ef;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.5;
}

.animatecell-contents {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  height: 41px;
  line-height: 41px;
  padding-left: 20px;
  white-space: nowrap;
}

.animatecell-contents a {
  color: rgb(68, 68, 68);
}
