.editor-content {
  line-height: 2.5;
}
.saleworkshops--content .section-editor .editor-content {
  color: var(--c-neutral-700);
}
.saleworkshops--content .section-editor .editor-content {
  color: var(--c-neutral-700);
}
.mejs-container {
  direction: ltr;
  border-radius: 16px;
  overflow: hidden;
}
.editor-content em {
  font-style: italic;
}
.editor-content img {
  max-width: 100%;
  border-radius: 16px;
}
code {
  direction: ltr;
  width: 100%;
  text-align: left;
  display: block;
  background: var(--c-neutral-700);
  padding: 1.5rem 2rem;
  border: 1px solid var(--c-neutral-200);
  border-radius: 1.2rem;
  color: var(--c-neutral-000);
}
.alignleft {
  float: left;
  margin: 0 3rem 3rem 0;
}
.alignright {
  float: right;
  margin-left: 3rem;
}
.aligncenter {
  text-align: center;
  display: block;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.blockquote {
  position: relative;
}
.editor-content li :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0;
  display: inline;
  line-height: 1.8;
}

.editor-content :is(h3, h4, h5, h6) {
  line-height: 2;
  /* font-weight: var(--fw-bold); */
  color: var(--c-primary);
}
.editor-content :is(h1, h2) {
  line-height: 1.8;
  /* font-weight: var(--fw-bold); */
  color: var(--c-primary);
}

/* .editor-content ul > li > :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 0;
  padding: 0;
} */
.editor-content h1 {
  font-size: calc(var(--fs-24));
}
.editor-content h2 {
  font-size: calc(var(--fs-24) - 0.2rem);
}
.editor-content h3 {
  font-size: calc(var(--fs-24) - 0.4rem);
}
.editor-content h4 {
  font-size: calc(var(--fs-24) - 0.5rem);
}
.editor-content h5 {
  font-size: calc(var(--fs-24) - 0.6rem);
}
.editor-content h6 {
  font-size: calc(var(--fs-24) - 0.7rem);
}

.editor-content ul:not(.acf-checkbox-list, .acf-radio-list, .acf-bl) li {
  margin-bottom: 0.5rem;
  list-style: disc;
  list-style-position: inside;
  text-indent: -2rem;
  padding-right: 2rem;
}

/* .editor-content ul li:before {
  content: "";
  background: var(--c-primary);
  margin-left: 1.2rem;
  display: inline-flex;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  box-shadow: 0px 5px 15px rgba(237, 26, 35, 0.25);
  flex-shrink: 0;
} */
.editor-content ul li::marker {
  color: var(--c-primary);
  line-height: 1;
}

.editor-content .wp-caption-text {
  text-align: center;
}
.editor-content .wp-caption {
  width: auto !important;
}
.editor-content a:not(.btn) {
  color: var(--c-secondary);
  position: relative;
}
.editor-content a:not(.btn)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.editor-content a:not(.btn):hover {
  opacity: 0.6;
}
.editor-content a:not(.btn):hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
.editor-content strong {
  color: var(--c-black);
  font-weight: var(--fw-bold);
}
.editor-content blockquote {
  padding: 2rem 9.5rem 2rem 2rem;
  border: 1px solid rgba(var(--c-primary-rgb), 0.4);
  position: relative;
  margin-block: 4rem !important;
  display: block;
  border-radius: 14px;
  color: var(--c-neutral-700);
  box-shadow: 0 4px 10px rgba(var(--c-primary-rgb), 0.1);
  background: var(--c-neutral-000);
}

.editor-content blockquote::before {
  content: "\e902";
  font-family: "icomoon";
  position: absolute;
  color: var(--c-neutral-000);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  right: 1.5rem;
  pointer-events: none;
  top: 50%;
  line-height: 1;
  font-size: 3rem;
  width: 6rem;
  height: 6rem;
  border-radius: 12px;
  transform: translate(0%, -50%);
}

.editor-content ol {
  list-style: none;
  margin-left: 0;
  padding: 0;
}
.editor-content ol li {
  counter-increment: item;
  position: relative;
  margin-bottom: 1rem;
  text-indent: -2rem;
  padding-right: 2rem;
}
.editor-content ol li:before {
  content: counter(item) ".";
  color: var(--c-primary);
  font-variation-settings: var(--fw-500);
  padding-left: 1.1rem;
  font-size: 2.2rem;
  line-height: 1;
}

.editor-content > * + * {
  margin-top: 1.2rem;
}
.editor-content.editor-space-sm > * + * {
  margin-top: 1rem;
}
.gallery_item img {
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  aspect-ratio: 1/1;
}
.editor-content .wp-video {
  display: block;
  /* margin: 3.2rem auto; */
  margin-inline: auto;
  width: 100% !important;
  overflow: hidden;
}
.editor-content table:not(.acf-table) td {
  white-space: nowrap;
  border-bottom: none;
  padding: 1rem 1.5rem;
  font-size: inherit;
}
.editor-content table:not(.acf-table) tr:first-child th,
.editor-content table:not(.acf-table) tr:first-child {
  white-space: nowrap;
  padding: 1rem;
  background: #d5dfea;
}
.editor-content table:not(.acf-table) :is(tbody, thead) {
  display: table;
  width: 100%;
}
.editor-content table:not(.acf-table) {
  border-collapse: collapse;
  /* margin-top: 2rem;
  margin-bottom: 2rem; */
  display: block;
  border-radius: 12px 12px 0 0;
  width: 100%;
  overflow-x: auto;
  display: block;
  -webkit-overflow-scrolling: auto;
  border-bottom: 0;
}
.editor-content table:not(.acf-table) tr,
.editor-content table:not(.acf-table) td,
.editor-content table:not(.acf-table) th {
  border: 2px solid #d5dfea;
  text-align: center;
}
.editor-content table:not(.acf-table) th {
  font-variation-settings: var(--fw-500);
}

/* width */
.editor-content table:not(.acf-table):not(.acf-table)::-webkit-scrollbar {
  height: 4px !important;
  width: 3px !important;
}
/* Track */
.editor-content table:not(.acf-table)::-webkit-scrollbar-track {
  background: #eae8e4 !important;
  height: 4px !important;
}
/* Handle */
.editor-content table:not(.acf-table)::-webkit-scrollbar-thumb {
  background: rgb(123, 123, 123) !important;
  height: 4px !important;
}
/* Handle on hover */
.editor-content table:not(.acf-table)::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary) !important;
}

/* width */
.editor-content table::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
/* Track */
.editor-content table::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 3px #cfcfcf; */
  border-radius: 0 0 4px 4px;
  background-color: #ececec;
}
/* Handle */
.editor-content table::-webkit-scrollbar-thumb {
  background: #aca9a9;
  border-radius: 0 0 4px 4px;
}
/* Handle on hover */
.editor-content table::-webkit-scrollbar-thumb:hover {
  background: var(--c-primary);
}
.editor-content table {
  scrollbar-color: var(--c-primary);
  scrollbar-width: thin;
}
iframe {
  border-radius: 16px;
  overflow: hidden;
}
/* readmore */
.content--readmore .editor-content {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.content--readmore .editor-content.open {
  transition: max-height 1s ease-in-out;
}
.content--readmore .view-more {
  display: none;
  min-width: auto;
  margin-inline: auto;
  margin-top: 2rem;
}
.content--readmore .view-more:after {
  content: "\e909";
  font-family: "icomoon";
  margin-right: auto;
  font-size: 2rem;
  transform: rotate(180deg);
}
.content--readmore.open .view-more:after {
  transform: rotate(0deg);
}
.content--readmore {
  position: relative;
}
.content--readmore.open::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 170px;
  bottom: 6rem;
  background-image: linear-gradient(to top, var(--c-neutral-000), transparent);
  pointer-events: none;
  z-index: 1;
}
.section-bg-100 .content--readmore.open::before {
  background-image: linear-gradient(to top, var(--c-neutral-100), transparent);
}
/**************************/
/* BELOW 576px */
/**************************/
@media (min-width: 36em) {
  .sw--gallery {
    margin-inline: 3rem;
  }
}
/**************************/
/* ABOVE 768px */
/**************************/
@media (min-width: 48em) {
}
/**************************/
/* ABOVE 992px */
/**************************/
@media (min-width: 62em) {
}
/**************************/
/* ABOVE 1200px */
/**************************/
@media (min-width: 75em) {
}

/**************************/
/* BELOW 1200px */
/**************************/
@media (max-width: 75em) {
}
/**************************/
/* BELOW 992px */
/**************************/
@media (max-width: 62em) {
}
/**************************/
/* BELOW 768px */
/**************************/
@media (max-width: 48em) {
  .alignleft,
  .alignright {
    float: none;
    margin-inline: auto;
    margin-bottom: 2rem;
  }
  .af-form.acf-form > .acf-fields {
    grid-template-columns: 1fr;
  }
}
/**************************/
/* BELOW 576px */
/**************************/
@media (max-width: 36em) {
  .editor-content blockquote::before {
    transform: translate(0%, -43%);
    right: auto;
    top: 0;
  }
  .editor-content blockquote {
    padding: 4.5rem 2rem 2rem 2rem;
    margin-top: 5rem !important;
  }
}
