<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("./section-templates.css");
@import url("./animate.css");
@import url("./segments.css");
@import url("./componentsUI.css");
@import url("./scripts-styles.css");
@import url("./segments-components-base.css");
@import url("./template-basic-styles.css");
@import url("./font-awesome.min.css");
@import url("./fonts.css");
@import url("./tailwind.css");
section {
  min-height: 60px;
}
.shared_initial_loader_div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: rgb(40, 50, 60);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
img[alt="logo"]:not([src]),
img[alt="logo"][src=""],
img[alt="logo"][src="#"],
img[alt="logo"][src="/static/shared/logos/logo-placeholder.png"],
img[alt="logo"][src="/static/shared/logos/logo-placeholder-w.png"],
img[alt="logo"][src="undefined"],
img[alt="logo"][src="null"] {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  object-fit: contain;
}
.clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-through {
  text-decoration: line-through;
}

.text-justify {
  text-align: justify;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.shared_initial_loader_div .shared_initial_loader_span {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: shared_rotation 1s linear infinite;
}

@keyframes shared_rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.shared-flex-vertical-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.shared-flex-vertical-left .shared-image-ctn {
  width: 100%;
}

.shared-aspect-ratio-1-1 {
  width: 9rem;
  height: 9rem;
}

.shared-aspect-ratio-4-3 {
  padding-top: 75%;
}

.shared-aspect-ratio-16-9 {
  padding-top: 56.25%;
}

.shared-image-ctn {
  position: relative;
}

.shared-image-ctn.shared-circle &gt; img {
  border-radius: 50%;
}

.post-preview {
  cursor: pointer;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.post-preview h2 {
  font-size: 24px;
  margin-top: 20px;
  color: #007bff;
}

.post-title {
  font-size: 30px;
  color: #333;
  padding: 20px 0 20px 0;
  text-align: center;
}

.blog_title {
  font-size: 30px;
  color: #333;
  padding: 20px 0 20px 0;
  text-align: center;
}

.post-preview p {
  font-size: 18px;
  color: #666;
}

.post-section {
  background-color: #f0f0f0;
  padding: 20px;
}

.post-section h2 {
  font-size: 24px;
  color: #333;
}

.post-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.shared-image-ctn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shared-image-ctn .shared-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#editor_list .shared-image-ctn {
  border-radius: 10px;
}

.shared-user-loader {
  width: 100%;
}

.shared-user-loader .shared-skeleton {
  width: 40%;
  height: 20px;
  border-radius: 6px;
}

.shared-skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-size: 160px 100%;
  background-repeat: no-repeat;
  background-position: left -160px top 0;
  animation: shine 1s ease infinite;
}

.shared-hidden {
  display: none !important;
}

#element-history-div {
  height: 100%;
  width: 100%;
}

.shared-error-message {
  color: #ff0000;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.IFRAME_CONTAINER {
  height: 100%;
}

.shared-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.shared-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Cookies */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  padding: 10px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  justify-content: space-between;
}
.cookie-popup .cookie-text {
  text-align: start;
  font-size: 14px;
  color: #444;
  opacity: 0.8;
  width: 80%;
}
.cookie-text h5 {
  text-align: start;
  font-size: 16px;
  color: var(--template-color-1);
  font-weight: bold;
  opacity: 0.8;
  padding: 0;
}
.cookie-text p {
  text-align: start;
}
.cookie-popup p {
  margin: 4px;
}

.cookie-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cookie-btns .cookie-btn {
  background-color: var(--template-color-0);
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  height: fit-content;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  border-radius: var(--button-radius);
}
.cookie-btns .cookie-btn:hover {
  background-color: #fff;
  color: var(--template-color-0);
  border: 1px solid var(--template-color-0);
}
/* Dropdown */
.shared-dropdown {
  position: relative;
  display: inline-block;
  background-color: transparent;
  z-index: 50;
}

.shared-dropdown-button {
  padding: 10px 28px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.shared-dropdown-button:hover {
  background-color: #f1f1f17a;
}

.shared-dropdown-content {
  display: none;
  position: absolute;
  background-color: color-mix(in srgb, var(--template-color-0) 90%, #fff 20%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: var(--radius-md);
}
.shared-dropdown-content a {
  padding: 8px 4px !important;
  text-decoration: none;
  display: block;
  font-size: 16px;
  width: 100%;
  text-align: start;
  color: white;
  text-wrap: nowrap;
}
.shared-dropdown-content a:hover {
  background-color: color-mix(in srgb, var(--template-color-0) 90%, #fff 40%);
}
.shared-dropdown:hover .dropdown-content {
  display: block;
}

.shared-language-placeholder {
  display: none;
}

.shared-widget {
  position: fixed;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  z-index: 1000;

  background-color: white;
  padding: 8px;

  border-radius: 8px 0 0 8px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  gap: 8px;
  display: flex;
  flex-direction: column;

  color: black;

  border: 1px solid rgb(0, 0, 0, 10%);
  border-right: 0;
}

.one_by_one {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.one_by_two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.two_by_one {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  gap: 10px;
}

.two_by_two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.one_by_three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.two_by_three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.segmented-section article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  position: relative;
  justify-content: center;
  align-items: center;
}
section:has(.segmented-section) {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.segmented-section {
  max-width: var(--section-width, 100%);
}
.segmented-section.full-wide {
  padding: 0;
  max-width: none !important;
}
.empty-article-container {
  border: 2px dashed #ccc;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
}
.empty-article-container::before {
  content: "click here to add content";
  display: block;
  color: rgb(160, 160, 160);
}

@media (max-width: 1440px) {
  .segmented-section {
    padding: 20px 1rem;
  }
}

@media (max-width: 720px) {
  .one_by_two {
    grid-template-columns: repeat(1, 1fr);
  }

  .segmented-section {
    padding: 20px 1rem;
    width: 100%;
  }
  .one_by_two {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
  .two_by_two {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
  .two_by_one {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    gap: 5rem;
  }
  .one_by_three {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
  .two_by_three {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
}
</pre></body></html>