:root {
  /* colors */
  --brand-blue: #146AFF;
  --brand-green: #00C2A4;
  --darkest-blue: #183444;
  --blue: #3788CB;
  --light-blue: #CBDDFF;
  --light-blue-06: rgba(203, 221, 255, 0.6);
  --gray: #6A81A9;
  --gray-02: rgba(106, 129, 169, .2);
  --light-gray: rgba(186, 194, 199, 0.4);
  --lighter-gray: #BAC2C7;
  --lightest-gray: #F5F8FF;
  --text-black: #313d4d;
  --secondary-red: #FF5F65;
  --white: #fff;
}

.hidden {
  display: none !important;
}
.d-flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-content-start {
  justify-content: start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-center {
  align-items: center;
}
.align-items-stretch {
  align-items: stretch;
}
.align-self-center {
  align-self: center;
}

.text-center {
  text-align: center !important;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.font-semibold {
  font-weight: 500;
}
.rounded-none	{
  border-radius: 0px !important;
}
.rounded	{
  border-radius: 4px !important;
}
.border-none {
  border-style: none !important;
}

.mb-16 {
  margin-bottom: 64px !important;
}
.mb-8 {
  margin-bottom: 32px !important;
}
.mb-6 {
  margin-bottom: 24px !important;
}
.mb-4 {
  margin-bottom: 16px !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mr-auto, .mx-auto {
  margin-right: auto;
}
.ml-auto, .mx-auto {
  margin-left: auto;
}
.mt-auto, .my-auto {
  margin-top: auto;
}
.mb-auto, .my-auto {
  margin-bottom: auto;
}
.bg-grey {
  background-color: var(--lightest-gray);
}
.bg-dark-blue {
  background-color: var(--darkest-blue);
}
.color-gray {
  color: var(--gray);
}
.color-green {
  color: var(--brand-green);
}
.max-w-1000 {
  max-width: 1000px;
}
.overflow-scroll {
  overflow: scroll;
}

.wp-block-buttons {
  display: flex;
}

.herald-mobile-nav {
  z-index: 100;
}
.herald-mobile-nav li a:hover {
  color: #4f4f4f;
}

.page-content {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  max-width: 1360px;
  padding: 40px 0 1px;
  min-height: 67vh;
}
@media screen and (max-width: 1360px) {
  .page-content {
    max-width: 90%;
  }
  lg\:justify-content-between {
    justify-content: space-between;
  }
  lg\:justify-content-center {
    justify-content: center;
  }
}

/* hide sidebar less thaen desktop */
@media (max-width: 1249px) {
  .herald-sidebar {
    display: none;
  }
}

table.sortable td {
  padding-top: 12px;
  padding-bottom: 12px;
}
table.sortable th {
  cursor: pointer;
  position: relative;
  vertical-align: top;
  padding-right: 27px;
  white-space: nowrap;
}
table.sortable th div {
  display: flex;
  flex-direction: row;
}
table.sortable th::after {
  content: '';
  background: url('../img/icons/arrows-sort.svg');
  width: 16px;
  height: 16px;
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 5px;
}
table.sortable th.dir-d::after {
  background: url('../img/icons/arrow-down.svg') no-repeat center center;
}
table.sortable th.dir-u::after {
  background: url('../img/icons/arrow-up.svg') no-repeat center center;
}

.ui-accordion h3.ui-accordion-header {
  font-size: 24px;
  margin-top: 30px;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
}
.ui-accordion h3.ui-accordion-header::before,
.ui-accordion h3.ui-accordion-header::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 0;
  left: 0;
  top: 11px;
  border: 2px solid var(--brand-blue);
  border-radius: 2px;
}
.ui-accordion h3.ui-accordion-header::after {
  transform: rotate(90deg);
  display: none;
}
.ui-accordion h3.ui-accordion-header.ui-accordion-header-collapsed::after {
  display: block;
}
.ui-accordion .ui-accordion-content {
  padding-left: 40px;
}
.ui-accordion .ui-accordion-content p {
  font-size: 20px;
}

.herald-site-footer {
  float: none;
  clear: both;
}
.footer-widgets .widget.copyright {
  margin-top: 0;
}

#promo{
  height: auto;
  min-height: 60px;
  padding: 10px 0 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #CBDDFF;
}
#promo h4{
  text-align: center;   
  font-family: 'Muli', sans-serif;
}
body#page-with-top-promo:not(.product-select-test) #promo{
  position: static;

}
body#page-with-top-promo #herald-responsive-header{
  top: 60px;
}
@media only screen and (max-width: 1249px){
  body#page-with-top-promo:not(.product-select-test) #promo{
    position: fixed;
    top: 0;
    z-index: 2000;
  }
}
#iterable {
  background: linear-gradient(to right, #0288d1 0%, #5a56be 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 20px;
}
#iterable input[type="submit"] {
  border: none;
  padding: 8px 20px;
  background-color: #00bfa4;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
#iterable p {
    color: white;
    text-align: left;
    
}
#iterable input[type="text"] {
    margin-bottom: 20px;
}

/* CTA banners */
@font-face {
	font-family: "Geomanist";
	src: url('../fonts/Geomanist/Geomanist-Regular.otf');
	font-weight: 400;
	font-display: fallback;
}
@font-face {
	font-family: "Geomanist";
	src: url('../fonts/Geomanist/Geomanist-Medium.otf');
	font-weight: 500;
	font-display: fallback;
}
.see-plans-cta h3,
.blog-footer-cta h3 {
  color: #000;
  font-family: Geomanist;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
}
.see-plans-cta p,
.blog-footer-cta p,
.blog-sidebar-ad p {
  color: #000;
  font-family: Geomanist, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.625;
}
.blog-sidebar-ad {
  border-radius: 16px !important;
  overflow: auto;
}
.blog-sidebar-ad .wp-block-buttons {
  display: flex;
}
.see-plans-cta {
  padding: 16px 38px;
  border-radius: 16px !important;
}
.orange-bolt a.wp-block-button__link {
  background: #f5a623;
  color: #282828 !important;
  font-family: Geomanist, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  min-width: 0!important;
  font-weight: 500;
  border-radius: 10px;
  font-size: 14px;
  height: auto;
  line-height: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 48px;
}
.orange-bolt a.wp-block-button__link:hover {
  padding-bottom: 11px;
}
.orange-bolt .wp-block-button {
  position: relative;
}
.orange-bolt a.wp-block-button__link:before {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  content: url('../img/pro-lightning.svg');
} 
.blog-footer-cta {
  border-radius: 16px !important;
  overflow: auto;
  margin-bottom: 2rem;
}
.blog-footer-cta .wp-block-buttons {
  position: absolute;
  bottom: 32px;
  left: 48px;
}
.blog-footer-cta .wp-block-cover__image-background {
  object-position: left;
}
@media screen and (max-width: 767px) {
  .blog-footer-cta .wp-block-cover__image-background {
    object-position: -20px;
  }
  .blog-footer-cta .wp-block-buttons {
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
  }
}
.herald-sidebar .herald-sticky .widget_custom_html h4.widget-title {
  display: none;
}
a.btn-blue {
  background: var(--brand-blue);
  color: var(--white) !important;
  font-family: Geomanist, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 8px;
  font-size: 14px;
  height: auto;
  line-height: 1;
  padding: 19px 48px;
  display: inline-block;
  padding-bottom: 19px !important;
}
a.btn-blue:hover {
  padding-bottom: 19px !important;
}

/* unicorn board */
.unicorn-hero {
  margin: 0 0 30px;
}
.unicorn-hero .page-content {
  background: none;
  padding: 30px 0 45px;
  min-height: 0;
}
.unicorn-hero h1 {
  margin-bottom: 20px;
  font-size: 58px;
}
.unicorn-hero .tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}
.unicorn-hero .tabs li {
  border-bottom: 1px solid var(--light-blue);
  margin: 0;
}
.unicorn-hero .tabs li a {
  padding: 16px 28px;
  color: var(--text-black);
  font-size: 16px;
  height: 100%;
  display: block;
}
.unicorn-hero .tabs .current {
  border-bottom: 4px solid #F5A623;
  font-weight: 500;
}
.unicorn-hero .hero-text {
  margin-top: 40px;
}
.unicorn-totals {
  margin-top: 40px;
}
.unicorn-totals > div {
  position: relative;
  padding: 0 30px;
}
.unicorn-totals > div:after {
  position: absolute;
  content: '';
  opacity: 0.5;
  border-left: 1px solid #BAC2C7;
  height: 70%;
  top: 15%;
  left: 0;
}
.unicorn-totals > div:first-child::after {
  display: none;
}
.unicorn-totals p {
  font-size: 14px;
  margin: 0;
}
.unicorn-totals h3 {
  color: var(--brand-blue);
  font-size: 36px;
}
a.btn-statistics {
  background: var(--lightest-gray) url('../img/icons/chart.svg') no-repeat 12px center;
  background-size: 24px 24px;
  color: var(--text-black) !important;
  border-radius: 8px;
  text-decoration: none;
  padding: 12px 12px 12px 50px !important;
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.2em;
  max-width: 215px;
  width: 175px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
a.btn-statistics.current, 
a.btn-statistics:hover {
  background-color: var(--light-blue);
}
.page-template-template-unicorn .page-content *,
.page-template-template-crypto .page-content * {
  font-family: Geomanist, "Helvetica Neue", Arial, sans-serif !important;
}
.page-template-template-unicorn .page-content h1,
.page-template-template-unicorn .page-content h2,
.page-template-template-unicorn .page-content h3,
.page-template-template-unicorn .page-content h4 {
  font-weight: 500;
}
.page-template-template-crypto .page-content h1,
.page-template-template-crypto .page-content h2,
.page-template-template-crypto .page-content h3,
.page-template-template-crypto .page-content h4 {
  font-weight: 500;
  color: #000;
}
.page-template-template-crypto .page-content h2 {
  font-size: 36px;
}
.page-template-template-crypto .page-content a {
  color: var(--brand-blue);
}
.herald-site-content.full-width {
  margin: 0;
  padding: 30px 0 0;
  width: 100%;
  max-width: 100%;
}
.page-template-template-unicorn .herald-sidebar {
  padding-left: 0;

}
.page-template-template-unicorn .herald-sidebar .sidebar-with-bg {
  background: var(--light-blue-06);
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.page-template-template-unicorn .herald-sidebar .blog-sidebar-ad {
  padding: 20px 0 35px;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(106, 129, 169, 0.4);
}
.page-template-template-unicorn .herald-sidebar .blog-sidebar-ad .wp-block-cover {
  background: none !important;
  padding: 0;
}
.page-template-template-unicorn .herald-sidebar .blog-sidebar-ad p.has-text-align-center {
  padding: 0 !important;
}
.page-template-template-unicorn .herald-sidebar .widget-title span {
  background: none;
  color: var(--text-black);
  padding: 0;
  border-radius: 0;
  font-size: 26px;
  margin-bottom: 5px;
}
.page-template-template-unicorn .herald-sidebar .widget-title:after {
  display: none;
}
.page-template-template-unicorn .herald-sidebar .meta-item.herald-rtime::before,
.page-template-template-unicorn .herald-sidebar .meta-item.herald-date span:before {
  display: none;
}
.page-template-template-unicorn .herald-sidebar .widget .meta-category span,
.page-template-template-unicorn .herald-sidebar .widget .entry-meta span,
.page-template-template-unicorn .herald-sidebar .widget a,
.page-template-template-unicorn .herald-sidebar .widget a:hover {
  color: var(--text-black);
}
@media (min-width: 1250px) {
  .page-template-template-unicorn .entry-content,
  .page-template-template-crypto .herald-main-content {
    padding-right: 50px;
  }
}
.page-template-template-unicorn .entry-content {
  margin-bottom: 150px;
}
.page-template-template-crypto .herald-main-content{
  margin-bottom: 80px;
}
.page-template-template-unicorn .entry-content h2 {
  margin-top: 60px;
}
.page-template-template-unicorn .entry-content a {
  color: var(--brand-blue);
}
.organization-thumbnail {
  width: 23px;
  height: 23px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 5px;
  object-fit: contain;
}
.unicorn-charts {
  border: none;
  box-sizing: border-box;
  padding: 0;
  margin: 32px 0;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .unicorn-charts {
    border: none;
    padding: 0;
    margin-top: 20px;
    max-height: 60vh;
  }
}
@media screen and (max-width: 767px) {
  .unicorn-hero h1 {
    font-size: 44px;
  }
  .unicorn-hero .tabs, 
  .unicorn-totals {
    flex-wrap: wrap;
  }
  .unicorn-totals > div {
    width: 100%;
    margin-bottom: 10px;
  }
  .unicorn-totals > div::after {
    display: none;
  }
  .unicorn-totals h3 {
    font-size: 32px;
  }
}

.page-template-template-unicorn div.table-parent {
  border: 1px solid var(--light-gray);
  max-height: 720px;
  overflow: scroll;
}
table.unicorn-table {
  border: none;
  position: relative;
}
.unicorn-table thead {
  background: none;
  border-bottom: 1px solid var(--light-gray);
}
.unicorn-table th,
.unicorn-table td {
  border: none;
  font-size: 15px;
}
.unicorn-table th {
  border-bottom: 1px solid var(--light-gray);
  color: #6A81A9;
  position: sticky !important;
  background: #fff;
  top: 0;
}
.unicorn-table tbody tr:hover {
  background: var(--lightest-gray);
}
.unicorn-charts-buttons {
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  .unicorn-charts-buttons {
    justify-content: center;
  }
  .unicorn-charts-buttons .btn-statistics {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.incontent-banner {
  background-color: var(--light-blue-06);
  border-radius: 4px;
  display: flex;
  padding: 40px;
  margin: 120px 0;
}
.incontent-banner.bg-chart {
  background: var(--light-blue-06) url('https://news.crunchbase.com/wp-content/uploads/banner-bg-chart.png') no-repeat 66% center;
  background-size: contain;
}
.incontent-banner .content-left {
  flex: 1;
}
.incontent-banner h3 {
  font-size: 28px;
  margin-bottom: 5px;
  color: var(--brand-blue);
}
.incontent-banner p {
  font-size: 16px;
}
.incontent-banner p:last-of-type {
  margin-bottom: 0;
}
.incontent-banner .cta-right {
  align-self: center;
}
.incontent-banner .cta-right .orange-bolt a.wp-block-button__link {
  padding-left: 38px;
  padding-right: 38px;
}
.incontent-banner .wp-block-button {
  margin-bottom: 0;
}
.crypto-price{
  padding: 80px 0;
  position: relative;
  margin-bottom: 40px;
  background: rgba(24, 52, 68, 0.04);
}
.crypto-price .page-content{
  min-height: 100%;
  padding: 0;
}
.crypto-price .cb-widget{
  background: #ffffff;
}
.crypto-price .owl-nav{
  background: #ffffff;
  position: absolute;
  top: 0px;
  right: 0;
  display: flex;
}
.crypto-price .header{
  display: flex;
  justify-content: space-between;
}
.crypto-price .header .nav-slider{
  display: flex;
  align-items: center;
}
.crypto-price .header .nav-slider .bulit-number{
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #6A81A9;
}
.crypto-price .header .nav-slider .next, .crypto-price .header .nav-slider .prev{
  cursor: pointer;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .crypto-price {
    padding: 50px 0;
    margin-bottom: 10px;
  }
  .crypto-price .page-content{
    padding: 0 20px;
  }
  .page-template-template-crypto .herald-main-content{
    margin-bottom: 50px;
  }
  .incontent-banner {
    display: block;
    text-align: center;
  }
  .incontent-banner.bg-chart {
    background-size: cover;
  }
  .incontent-banner .cta-right {
    margin-top: 20px;
  }
  .incontent-banner .cta-right .wp-block-buttons {
    justify-content: center;
  }
}
.herald_cta_widget .blog-sidebar-ad p {
  line-height:1.3;
  padding-left:5px;
  padding-right:5px;
  color:#000;
}
.herald_cta_widget .crunchbase-logo {
  background-color: var(--brand-blue);
  -webkit-mask: url(https://news.crunchbase.com/wp-content/uploads/crunchbase_logo.svg) no-repeat center;
  mask: url(https://news.crunchbase.com/wp-content/uploads/crunchbase_logo.svg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 23px;
  margin: 10px 0 25px;
}
p.stats-last-updated {
  color: var(--gray);
  font-size: 16px;
}

.crypto-hero {
  margin: 0 0 80px;
}
.crypto-hero .page-content {
  min-height: 0;
  padding: 100px 0;
}
.crypto-hero .hero-text h3 {
  color: var(--light-blue);
  font-size: 48px;
  margin-bottom: 15px;
}
.crypto-hero h1,
.crypto-hero p {
  color: var(--white) !important;
}
.crypto-hero p {
  font-size: 20px;
}
.crypto-hero h1 {
  font-size: 64px;
  line-height: 1.1em;
  margin-bottom: 15px;
  color: #fff;
}
.crypto-hero .unicorn-totals h3 {
  color: var(--brand-green);
}
.crypto-hero .unicorn-totals p {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .crypto-hero {
    margin-bottom: 30px;
  }
  .crypto-hero .page-content {
    padding: 50px 10px;
  }
  .crypto-hero .hero-text h3 {
    font-size: 24px;
  }
  .crypto-hero h1 {
    font-size: 36px;
  }
  .crypto-hero p {
    font-size: 16px;
  }
}


.herald-sidebar .statistics {
  border: 1px solid rgba(106, 129, 169, 0.2);
  border-radius: 10px;
  padding: 29px 24px;
  margin-bottom: 40px;
}
.herald-sidebar .statistics h4 {
  font-size: 24px;
  margin-bottom: 32px;
}
.herald-sidebar .statistics h4 small {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
  margin-top: 3px;
}
.herald-sidebar .statistics > section:not(:last-child) {
  border-bottom: 1px solid rgba(106, 129, 169, 0.2);
  padding-bottom: 32px;
  margin-bottom: 36px;
}
.herald-sidebar .statistics .item {
  font-size: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  margin-bottom: 17px;
}
.herald-sidebar .statistics .item:hover {
  background: rgba(24, 52, 68, 0.07);
  cursor: pointer;
}
.herald-sidebar .statistics .item a {
  color: #000;
}
.herald-sidebar .statistics .item:hover > span > a {
  color: var(--brand-blue);
}
.herald-sidebar .statistics .item a:after {
  content: url(../img/icons/external-link.svg);
  display: none;
  padding-left: 5px;
  position: relative;
  top: 1px;
}
.herald-sidebar .statistics .item:hover a:after {
  display: inline;
}
.herald-sidebar .statistics .item:hover .popup {
  display: block;
}
.herald-sidebar .statistics .item .popup {
  display: none;
  position: absolute;
  top: 100%;
  right: -24px;
  z-index: 100;
  padding: 20px 0 0;
}
.herald-sidebar .statistics .item .popup .arrow {
  background: transparent;
  position: absolute;
  top: 10px;
  right: 50%;
  margin-right: -5px;

  display: block;
  float: right;
  border-color: transparent;
  border-style: solid;
  border-width: 0 10px 10px;
  border-bottom-color: var(--white);
  width: 0;
  height: 0;
  line-height: 0;
  z-index: 1000;
}
.herald-sidebar .statistics .item .popup .content {
  display: flex;
  background: #FFFFFF;
  border-radius: 10px;
  font-size: 16px;
  width: 606px;
  max-width: 90vw;
  padding: 32px;
  filter: drop-shadow(0px 5px 40px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease-out;
}
.herald-sidebar .statistics .item .popup p {
  font-size: 16px;
  max-height: 100px;
  overflow-y: hidden;
}
.herald-sidebar .statistics .item .popup h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.herald-sidebar .statistics .item .popup figure {
  border: 1px solid rgba(106, 129, 169, 0.2);
  border-radius: 8px;
  padding: 7px 8px 8px;
  min-width: 96px;
  width: 96px;
  height: 96px;
  margin-right: 14px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.herald-sidebar .statistics .item .popup img.organization-thumbnail {
  width: 80px;
  height: 80px;
}
.herald-sidebar .statistics .item .popup .location {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}
.herald-sidebar .statistics .item .popup .totals {
  display: flex;
  justify-content: space-between;
}
.herald-sidebar .statistics .item .popup .totals p {
  flex-basis: 48%;
  margin: 0;
}
.herald-sidebar .statistics .item .popup .total {
  font-size: 20px;
  color: var(--brand-green);
  display: block;
}
.herald-sidebar .statistics .view-more {
  font-weight: 500;
}
.page-template-template-crypto a:after {
  display: none;
}
.page-template-template-crypto .herald_cta_widget .wp-block-cover {
  background: var(--darkest-blue) !important;
  padding: 24px;
}
.page-template-template-crypto .herald_cta_widget .wp-block-cover p {
  color: var(--white) !important;
  font-size: 18px;
}
.page-template-template-crypto .herald_cta_widget .crunchbase-logo {
  background-color: var(--white);
  height: 28px;
  margin: 7px 0 20px;
}
.page-template-template-crypto .herald_cta_widget .orange-bolt {
  margin-bottom: 7px;
}
.page-template-template-crypto .herald_cta_widget .orange-bolt .wp-block-button {
  width: 100%;
  margin-top: 10px;
}
.page-template-template-crypto .herald_cta_widget .blog-sidebar-ad p {
  line-height: 1.5;
}
.page-template-template-crypto .unicorn-charts-buttons {
  justify-content: initial;
  margin-bottom: 20px;
}
.page-template-template-crypto a.btn-statistics {
  width: auto;
  max-width: 100%;
  margin-right: 16px;
  flex-basis: 33.333%;
  background: rgba(24, 52, 68, 0.07);
  padding: 14px 20px !important;
}
.page-template-template-crypto a.btn-statistics:last-child {
  margin-right: 0;
}
.page-template-template-crypto a.btn-statistics:hover,
.page-template-template-crypto a.btn-statistics.current {
  background: rgba(24, 52, 68, 0.15);
}
.page-template-template-crypto a.btn-statistics:before {
  content: '';
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  min-width: 24px;
  margin-right: 11px;
  background-color: var(--darkest-blue);
  -webkit-mask: url(../img/icons/chart.svg) no-repeat center;
  mask: url(../img/icons/chart.svg) no-repeat center;
  background-size: contain;
}
.page-template-template-crypto .incontent-banner.bg-chart {
  background-color: var(--darkest-blue);
  background-image: url(https://news.crunchbase.com/wp-content/uploads/crypto-banner-table.svg);
}
.page-template-template-crypto .incontent-banner h3 {
  color: var(--light-blue);
}
.page-template-template-crypto .incontent-banner.bg-chart p {
  color: var(--white);
}
.page-template-template-crypto .incontent-banner.bg-mobile-share {
  background: var(--darkest-blue) url('https://news.crunchbase.com/wp-content/uploads/mobile-social.svg') no-repeat 58% center;
  background-size: contain;
  padding: 22px 40px;
  margin-bottom: 30px;
}
.page-template-template-crypto .incontent-banner.bg-mobile-share .content-left{
  display: flex;
  align-items: center;
}
.page-template-template-crypto .incontent-banner.bg-mobile-share .cb-social-shares li {
  margin: 0 0 0 14px!important;
}
.page-template-template-crypto .incontent-banner.bg-mobile-share .cb-social-shares a:hover,
.page-template-template-crypto .incontent-banner.bg-mobile-share .cb-social-shares a {
  background-color: rgba(255,255,255,0.12) !important;
  height: 48px;
  width: 48px;
}
.page-template-template-crypto .incontent-banner.bg-mobile-share .cb-social-shares i.ss {
  background-color: #fff !important;
  height: 48px;
  width: 48px !important;
  -webkit-mask-size: auto 19px;
  mask-size: auto 19px;
}
.page-template-template-crypto .incontent-banner.bg-mobile-share .cb-social-shares i.ss.copy {
  -webkit-mask-size: auto 24px;
  mask-size: auto 24px;
}
.page-template-template-crypto .page-content{
  max-width: 1320px;
}
.page-template-template-crypto .herald-sidebar{
  width: 348px
}
.page-template-template-crypto .herald-main-content{
  width: 957px;
}
.page-template-template-crypto .sticky{
  position: sticky;
  top: 40px;
}
.content-with-sidebar {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1249px){
  .page-template-template-crypto .herald-main-content{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .page-template-template-crypto .content-with-sidebar .herald-sidebar {
    display: block;
    padding: 0;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    border: none;
  }
  .page-template-template-crypto .content-with-sidebar {
    flex-wrap: wrap;
  }
  .herald-sidebar .statistics .item:hover .popup {
    display: none;
  }
  .page-template-template-crypto .herald-sidebar .widget {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .herald-sidebar .statistics .view-more {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-crypto .herald-main-content{
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .page-template-template-crypto .unicorn-charts-buttons {
    flex-wrap: wrap;
  }
  .page-template-template-crypto a.btn-statistics{
    flex-basis: 46%;
    justify-content: left;
  }
  .page-template-template-crypto a.btn-statistics:not(:first-child) {
    margin-right: 0;
  }
  /* .page-template-template-crypto .content-with-sidebar .herald-sidebar {
    display: block;
    width: calc(100% - 20px);
    margin: 0 10px;
  } */
}
@media screen and (max-width: 566px) {
  .page-template-template-crypto a.btn-statistics{
    flex-basis: 310px;
    margin-right: 0;
  }
}
article.post-item {
  display: flex;
  margin-bottom: 40px;
}
.herald-section article.post-item:last-child {
  margin-bottom: 40px;
}
article.post-item .entry-content p,
article.post-item .entry-meta,
article.post-item .meta-category a,
article.post-item .meta-category span {
  color: var(--text-black);
}
article.post-item .meta-category {
  display: block;
  margin-bottom: 6px;
}
article.post-item .meta-category a {
  font-size: 13px;
}
article.post-item h2.entry-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.28em;
  margin-bottom: 8px;
}
article.post-item .entry-title a {
  color: #000;
}
article.post-item .post-image {
  width: 376px;
  flex: 0 0 376px;
  max-width: 100%;
  margin-right: 24px;
}
article.post-item .herald-post-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
  width: 100%;
}
article.post-item .herald-post-thumbnail img {
  display: block;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
article.post-item .entry-header {
  margin: 0;
}
article.post-item .entry-content {
  margin-top: 0;
}
article.post-item .entry-content p {
  font-size: 18px;
  margin: 0;
}
article.post-item .entry-meta {
  margin-top: 2px;
}
article.post-item .entry-meta span {
  font-size: 13px;
  padding-right: 5px;
  color: var(--text-black);
}
article.post-item .entry-meta span.time-to-read {
  color: var(--blue);
}
@media screen and (max-width: 767px) {
  article.post-item {
    flex-wrap: wrap;
  }
  article.post-item .post-image {
    margin-bottom: 24px;
    width: auto;
    flex-basis: 376px !important;
  }
}

.cb-social-shares .ss-inline-share-wrapper.ss-center-inline-content .ss-inline-share-content {
  width: 100%;
}
.cb-social-shares .ss-inline-share-wrapper .ss-social-icons-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cb-social-shares .ss-inline-share-wrapper .ss-social-icons-container>li>a {
  background: transparent !important;
  color: var(--darkest-blue) !important;
  border: 1px solid var(--lighter-gray);
  height: 64px;
  width: 64px;
}
.cb-social-shares .ss-inline-share-wrapper .ss-social-icons-container>li>a:hover {
  background: transparent !important;
}
.cb-social-shares .ss-inline-share-wrapper .ss-social-icons-container>li>a:after,
.cb-social-shares .ss-inline-share-wrapper .ss-social-icons-container>li>a i.ss:before {
  display: none;
}
.cb-social-shares i.ss {
  background-color: var(--darkest-blue) !important;
  background-size: contain;
  height: 64px;
  width: 64px !important;
}
.cb-social-shares .ss-inline-share-wrapper i.ss.ss-linkedin {
  -webkit-mask: url(../img/icons/linkedin.svg) no-repeat center;
  mask: url(../img/icons/linkedin.svg) no-repeat center;
}
.cb-social-shares .ss-inline-share-wrapper i.ss.ss-facebook {
  -webkit-mask: url(../img/icons/facebook.svg) no-repeat center;
  mask: url(../img/icons/facebook.svg) no-repeat center;
}
.cb-social-shares .ss-inline-share-wrapper i.ss.ss-twitter {
  -webkit-mask: url(../img/icons/twitter.svg) no-repeat center;
  mask: url(../img/icons/twitter.svg) no-repeat center;
}
.cb-social-shares .ss-inline-share-wrapper i.ss.ss-copy {
  -webkit-mask: url(../img/icons/copy-link.svg) no-repeat center;
  mask: url(../img/icons/copy-link.svg) no-repeat center;
}

.crypto-latest-stories {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
      "first third"
      "second third";
  grid-column-gap: 2rem;
}
.crypto-latest-stories article:first-child {
  grid-area: first;
}
.crypto-latest-stories article:nth-child(2) {
  grid-area: second;
}
.crypto-latest-stories article:nth-child(3) {
  grid-area: third;
  flex-wrap: wrap;
}
.crypto-latest-stories article:first-child .post-image,
.crypto-latest-stories article:nth-child(2) .post-image {
  flex-basis: 196px;
}
.crypto-latest-stories article:nth-child(3) .post-image {
  width: 100%;
  margin-bottom: 24px;
}
.crypto-latest-stories article h2.entry-title {
  font-size: 20px;
  margin-bottom: 1px;
  line-height: 1.42em;
}
@media screen and (max-width: 767px) {
  .crypto-latest-stories {
    grid-template-columns: 1fr;
    grid-template-areas:
        "first"
        "second"
        "third";
  }
}
.page-template-template-crypto .ui-accordion h3.ui-accordion-header::before, 
.page-template-template-crypto .ui-accordion h3.ui-accordion-header::after {
  border-color: var(--darkest-blue);
}


h2.with-border {
  border-bottom: 1px solid var(--gray-02);
  padding-bottom: 13px;
  margin-bottom: 48px;
}
.data-rounded-border .cb-price-table-widget{
  height: 460px!important;
}
.data-rounded-border .cb-price-table-widget select{
  padding: 0;
  width: 58px;
  background: transparent;
}
@media screen and (max-width: 500px) { 
  .data-rounded-border {
    padding: 0;
  }
}

/* Footer banner */
.footer-banner.footer-banner--big-blue {
  font-family: Geomanist, "Helvetica Neue", Arial, sans-serif !important;
  width: 100%;
  background: var(--brand-blue);
  padding: 50px 0;
  position: relative;
}
.footer-banner.footer-banner--big-blue * {
  color: #fff;
}
.footer-banner.footer-banner--big-blue:after {
  content: '';
  position: absolute;
  left: 50%;
  width: calc(50% - 250px);
  top: 50px;
  height: calc(100% - 100px);
  margin-left: 250px;
  background: var(--secondary-red);
  border-radius: 300px 0px 0px 300px;
}
.footer-banner.footer-banner--big-blue .page-content {
  min-height: 300px;
  padding: 20px 0;
}
.footer-banner.footer-banner--big-blue .page-content img {
  max-width: 100%;
  margin: 20px 0;
}
.footer-banner.footer-banner--big-blue h2 {
  font-weight: 500;
  margin: 30px 0 35px;
  color: #fff;
}
.footer-banner.footer-banner--big-blue ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-banner.footer-banner--big-blue ul li {
  padding-left: 38px;
  background: url('../img/icons/check_circled.png') no-repeat left center;
  background-size: 24px 24px;
  margin-bottom: 8px;
  line-height: 1.8;
}
.footer-banner.footer-banner--big-blue .orange-button {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-banner.footer-banner--big-blue:after {
    display: none;
  }
}