/* Headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
}
.breakdance .h1 {
    font-size: var(--bde-h1-font-size);
}
@media screen and (min-width: 768px) {
    .breakdance .h1,
    .breakdance h1 {
    	   letter-spacing: -1px;
    }
}
.breakdance .h2 {
    font-size: var(--bde-h2-font-size);
}
.breakdance .h3 {
    font-size: var(--bde-h3-font-size);
}
.breakdance .h4 {
    font-size: var(--bde-h4-font-size);
}
.breakdance .h5 {
    font-size: var(--bde-h5-font-size);
}
.breakdance .h6 {
    font-size: var(--bde-h6-font-size);
}


/* Text links */
.bde-text-link:not(:hover) {
	text-decoration: none;
}



/* Blockquote */
body.breakdance .bde-blockquote {
	padding: 0;
	background: none;
	width: 100%;
	border: 0;
	box-shadow: none;
	padding-left: 20px;
	border-left: 1px solid #000;
}
@media screen and (min-width: 768px) {
	body.breakdance .bde-blockquote {
		padding-left: 100px;
	}
}
body.breakdance .bde-blockquote {
	font-size: 21px;
}
body.breakdance .bde-blockquote cite {
	font-size: var(--bde-body-font-size);
}
body.breakdance .bde-blockquote cite::before {
	content: '— ';
}


/* Rich text */
/*body .bde-rich-text h3 {
	font-size: var(--bde-h4-font-size);
}
body .bde-rich-text h4 {
	font-size: var(--bde-h5-font-size);
}
body .bde-rich-text h5 {
	font-size: var(--bde-h6-font-size);
}*/
.bde-rich-text li p {
	margin: 0 0 10px;
}
.bde-rich-text p {
	margin-bottom: 40px;
}
.bde-rich-text ul,
.bde-code-block ul {
	list-style: none;
	padding-left: 0;
	text-align: left;
}
.bde-rich-text ul li,
.bde-code-block ul li {
	padding: 0 0 30px 50px;
	position: relative;
}
.bde-rich-text ul li strong,
.bde-code-block ul li strong {
	color: var(--bde-brand-primary-color);
}
.bde-rich-text ul li::before {
	top: 10px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--bde-brand-primary-color);
	position: absolute;
	content: '';
	display: block;
	border-radius: 10px;
}
.bde-rich-text ul ul,
.bde-code-block ul ul {
	margin-top: 20px;
}
.bde-rich-text ul ul li,
.bde-code-block ul ul li {
	padding: 0 0 10px 30px;
	position: relative;
}
.bde-rich-text ul ul li::before,
.bde-code-block ul ul li::before {
    width: 20px;
	height: 2px;
	top: 9px;
    background: #000000;
}
.bde-rich-text ol {
	counter-reset: ol-list-counter;
	list-style: none;
	margin: 30px 0 50px;
	padding: 0;
}
.bde-rich-text > ol > li {
	padding-left: 40px;
	counter-increment: ol-list-counter;
	position: relative;
}
.bde-rich-text ol li strong {
	font-weight: 700;
}
.bde-rich-text ol li:not(:last-child) {
	margin-bottom: 30px;
}
.bde-rich-text > ol > li::before {
    content: counter(ol-list-counter);
    color: #000;
    position: absolute;
    left: 0px;
    width: 24px;
    height: 24px;
    top: -1px;
    border-radius: 0;
    text-align: center;
	border: 1px solid var(--bde-brand-primary-color);
	border-width: 0 1px 0 0;
	z-index: 5;
	font-family: var(--bde-heading-font-family);
}
.bde-rich-text ol li::after {
	content: '';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    top: -3px;
    text-align: center;
	background: url(/wp-content/uploads/2024/04/list-bg.svg) center/contain no-repeat;
}
.bde-rich-text ol ul {
	margin-left: 20px;
}
.bde-rich-text ol ul li::before,
.bde-rich-text ol ul li::after {
	display: none;
}
.bde-rich-text ol ul {
	list-style: disc;
}
.bde-rich-text ol ul li {
	list-style: disc;
	padding: 0;
	margin: 0 0 10px 0;
}
.bde-rich-text ol ul p {
	margin: 0 0 10px;
}
.bde-rich-text hr {
    border: 1px solid #000;
    border-bottom: 0;
    margin: 0 0 50px;
}
.bde-rich-text * + hr {
	margin-top: 50px;
}
.bde-rich-text a {
	font-family: 'Garamond', 'Times New Roman', serif;
}
.bde-rich-text b,
.bde-rich-text strong {
	font-weight: 500;
}
.bde-rich-text blockquote {
	font-size: var(--bde-h5-font-size);
	font-style: italic;
	border-left: 1px solid #000;
	padding: 0 0 0 20px;
	margin: 40px 0;
}
@media screen and (min-width: 768px) {
	.bde-rich-text blockquote {
		padding-left: 100px;
	}
}


/* Tables */
body .bde-rich-text table,
body .bde-shortcode table {
	border-collapse: collapse;
	width: 100%;
	margin: 30px 0 50px;
}
@media screen and (max-width: 767px) {
	body .bde-rich-text table,
	body .bde-shortcode table {
		overflow: scroll;
		display: block;
  overflow-x: auto;
	}
}
body .bde-rich-text table th,
body .bde-rich-text table td, 
body .bde-shortcode table th,
body .bde-shortcode table td {
	padding: 10px 14px;
	border: 1px solid #000;
	font-size: 14px;
}
body .bde-rich-text table tr:nth-of-type(1) td {
	background: #000;
	color: #fff;
}
body .bde-rich-text table p,
body .bde-shortcode table p {
	margin: 0;
}
body .bde-rich-text tablep:last-of-type ,
body .bde-shortcode table p:last-of-type {
	margin-bottom: 0;
}


/* Default widths */
.bde-div,
.bde-code-block {
	width: 100%;
}


/* Meta */
@media screen and (max-width: 767px) {
	.bde-post-meta {
		flex-wrap: wrap !important;
		flex-direction: row !important;
		width: 100% !important;
		gap: 24px !important;
	}
}



/* Looper Builder */
.breakdance .bde-post-loop .ee-post {
    gap: 0;
}



/* Flex Filter Grid */
.flex-filter .ee-post {
	position: relative !important;
	left: 0 !important;
	top: 0 !important;
	transform: none !important;
	transition: opacity .01s ease-in-out !important;
	margin: 0 !important;
}
.flex-filter .ee-posts-isotope {
	height: auto !important;
}