/* [project]/upto1/src/components/PostSummary/postSummary.scss.css [app-client] (css) */
.btn-Success {
  color: #121b36 !important;
}

.btn-Success i {
  color: inherit;
}

.bg-Dark {
  background-color: #121b36;
}

.summaryBox {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.summaryBox .summaryLink {
  color: var(--color-white);
  border-left: 3px solid rgba(0, 0, 0, 0);
  padding: 3px 0 3px 12px;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.summaryBox .summaryLink.level-2 {
  font-weight: 600;
}

.summaryBox .summaryLink.level-3 {
  padding-left: 30px;
  font-weight: 500;
}

.summaryBox .summaryLink.level-4 {
  padding-left: 45px;
  font-weight: 400;
}

.summaryBox[data-main-color="primary"] .summaryLink:hover, .summaryBox[data-main-color="primary"] .summaryLink.active {
  color: #04a8ff;
  border-left-color: #04a8ff;
}

.summaryBox[data-main-color="danger"] .summaryLink:hover, .summaryBox[data-main-color="danger"] .summaryLink.active {
  color: #f06;
  border-left-color: #f06;
}

.summaryBox[data-main-color="success"] .summaryLink:hover, .summaryBox[data-main-color="success"] .summaryLink.active {
  color: #01ff88;
  border-left-color: #01ff88;
}

.summaryBox[data-main-color="warning"] .summaryLink:hover, .summaryBox[data-main-color="warning"] .summaryLink.active {
  color: #ffc107;
  border-left-color: #ffc107;
}

.summaryBox[data-main-color="teal"] .summaryLink:hover, .summaryBox[data-main-color="teal"] .summaryLink.active {
  color: #20c997;
  border-left-color: #20c997;
}

.summaryBox[data-main-color="purple"] .summaryLink:hover, .summaryBox[data-main-color="purple"] .summaryLink.active {
  color: #6f42c1;
  border-left-color: #6f42c1;
}

.summaryBox[data-main-color="info"] .summaryLink:hover, .summaryBox[data-main-color="info"] .summaryLink.active {
  color: #72d2c2;
  border-left-color: #72d2c2;
}

.summaryBox[data-main-color="white"] .summaryLink:hover, .summaryBox[data-main-color="white"] .summaryLink.active {
  color: #fff;
  border-left-color: #fff;
}

.summaryBox .summaryLink.active {
  font-weight: 600;
}

/* [project]/upto1/src/app/(frontend)/posts/posts.scss.css [app-client] (css) */
.btn-Success {
  color: #121b36 !important;
}

.btn-Success i {
  color: inherit;
}

.bg-Dark {
  background-color: #121b36;
}

.single-post .postContent blockquote {
  border-left: 4px solid var(--post-main-color);
  color: var(--post-main-color);
  margin: 1.5rem 0;
  padding-left: 1rem;
  font-style: italic;
}

#relatedPosts {
  background-color: #121b36;
  padding: 32px 0;
}

/* [project]/upto1/src/blocks/BlogPostsGrid/blogPostsGrid.scss.css [app-client] (css) */
.btn-Success {
  color: #121b36 !important;
}

.btn-Success i {
  color: inherit;
}

.bg-Dark {
  background-color: #121b36;
}

.blogGridTitle {
  color: #fff;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .postsContainer .row {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    transition: transform .3s ease-out;
    overflow: hidden;
  }
}

.postsContainer .navigation {
  justify-content: space-between;
  align-items: center;
  margin-top: -12px;
  display: flex;
}

.postsContainer .navigation button {
  cursor: pointer;
  background: none;
  border: none;
  height: 32px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.postsContainer .navigation button i {
  color: #04a8ff;
  font-size: 32px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.postsContainer .navigation button:hover:not(:disabled) i {
  transform: scale(1.1);
}

.postsContainer .navigation button:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.postsContainer .navigation .bullets {
  align-items: center;
  gap: 12px;
  display: flex;
}

.postsContainer .navigation .bullets .bullet {
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  width: 12px;
  height: 12px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.postsContainer .navigation .bullets .bullet:hover {
  background-color: rgba(4, 168, 255, .3);
}

.postsContainer .navigation .bullets .bullet.active {
  background-color: #04a8ff;
  width: 24px;
}

.postsContainer:has(.blogPost.colorPrimary) .navigation button i {
  color: #04a8ff;
}

.postsContainer:has(.blogPost.colorPrimary) .navigation .bullets .bullet:hover {
  background-color: rgba(4, 168, 255, .3);
}

.postsContainer:has(.blogPost.colorPrimary) .navigation .bullets .bullet.active {
  background-color: #04a8ff;
}

.postsContainer:has(.blogPost.colorDanger) .navigation button i {
  color: #f06;
}

.postsContainer:has(.blogPost.colorDanger) .navigation .bullets .bullet:hover {
  background-color: rgba(255, 0, 102, .3);
}

.postsContainer:has(.blogPost.colorDanger) .navigation .bullets .bullet.active {
  background-color: #f06;
}

.postsContainer:has(.blogPost.colorSuccess) .navigation button i {
  color: #01ff88;
}

.postsContainer:has(.blogPost.colorSuccess) .navigation .bullets .bullet:hover {
  background-color: rgba(1, 255, 136, .3);
}

.postsContainer:has(.blogPost.colorSuccess) .navigation .bullets .bullet.active {
  background-color: #01ff88;
}

.postsContainer:has(.blogPost.colorWarning) .navigation button i {
  color: #ffc107;
}

.postsContainer:has(.blogPost.colorWarning) .navigation .bullets .bullet:hover {
  background-color: rgba(255, 193, 7, .3);
}

.postsContainer:has(.blogPost.colorWarning) .navigation .bullets .bullet.active {
  background-color: #ffc107;
}

.postsContainer:has(.blogPost.colorTeal) .navigation button i {
  color: #20c997;
}

.postsContainer:has(.blogPost.colorTeal) .navigation .bullets .bullet:hover {
  background-color: rgba(32, 201, 151, .3);
}

.postsContainer:has(.blogPost.colorTeal) .navigation .bullets .bullet.active {
  background-color: #20c997;
}

.postsContainer:has(.blogPost.colorPurple) .navigation button i {
  color: #6f42c1;
}

.postsContainer:has(.blogPost.colorPurple) .navigation .bullets .bullet:hover {
  background-color: rgba(111, 66, 193, .3);
}

.postsContainer:has(.blogPost.colorPurple) .navigation .bullets .bullet.active {
  background-color: #6f42c1;
}

.postsContainer:has(.blogPost.colorInfo) .navigation button i {
  color: #72d2c2;
}

.postsContainer:has(.blogPost.colorInfo) .navigation .bullets .bullet:hover {
  background-color: rgba(114, 210, 194, .3);
}

.postsContainer:has(.blogPost.colorInfo) .navigation .bullets .bullet.active {
  background-color: #72d2c2;
}

.postsContainer:has(.blogPost.colorWhite) .navigation button i {
  color: #fff;
}

.postsContainer:has(.blogPost.colorWhite) .navigation .bullets .bullet:hover {
  background-color: rgba(255, 255, 255, .3);
}

.postsContainer:has(.blogPost.colorWhite) .navigation .bullets .bullet.active {
  background-color: #fff;
}

.blogPost {
  background-color: #000;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blogPost .row {
  height: 100%;
}

.blogPost .bgi {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blogPost .voirPlus {
  opacity: .5;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 14px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.blogPost .voirPlus i {
  font-size: 20px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.blogPost:hover .voirPlus {
  opacity: 1;
}

.blogPost.oneCol {
  background-color: #000;
  height: 220px;
}

.blogPost.oneCol p {
  display: none;
}

.blogPost.oneCol .col-4 {
  width: 0;
  height: 0;
  position: static;
  padding: 0 !important;
}

.blogPost.oneCol .col-8 {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 100%;
  display: flex;
  position: relative;
}

.blogPost.oneCol .col-8 .postBlogTitle {
  height: 72px;
}

.blogPost.oneCol .col-8 .postBlogTitle span {
  -webkit-line-clamp: 3;
}

.blogPost.oneCol .bgi {
  z-index: 0;
  opacity: .5;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.blogPost.oneCol:hover .bgi {
  opacity: 0;
}

.blogPost.colorPrimary:not(.oneCol) .postBlogTitle, .blogPost.colorPrimary:not(.oneCol) .voirPlus, .blogPost.colorPrimary.oneCol strong, .blogPost.colorPrimary.oneCol small, .blogPost.colorPrimary.oneCol .voirPlus {
  color: #04a8ff;
}

.blogPost.colorPrimary.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorPrimary.oneCol:hover {
  background-color: #000;
}

.blogPost.colorDanger:not(.oneCol) .postBlogTitle, .blogPost.colorDanger:not(.oneCol) .voirPlus, .blogPost.colorDanger.oneCol strong, .blogPost.colorDanger.oneCol small, .blogPost.colorDanger.oneCol .voirPlus {
  color: #f06;
}

.blogPost.colorDanger.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorDanger.oneCol:hover {
  background-color: #000;
}

.blogPost.colorSuccess:not(.oneCol) .postBlogTitle, .blogPost.colorSuccess:not(.oneCol) .voirPlus, .blogPost.colorSuccess.oneCol strong, .blogPost.colorSuccess.oneCol small, .blogPost.colorSuccess.oneCol .voirPlus {
  color: #01ff88;
}

.blogPost.colorSuccess.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorSuccess.oneCol:hover {
  background-color: #000;
}

.blogPost.colorWarning:not(.oneCol) .postBlogTitle, .blogPost.colorWarning:not(.oneCol) .voirPlus, .blogPost.colorWarning.oneCol strong, .blogPost.colorWarning.oneCol small, .blogPost.colorWarning.oneCol .voirPlus {
  color: #ffc107;
}

.blogPost.colorWarning.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorWarning.oneCol:hover {
  background-color: #000;
}

.blogPost.colorTeal:not(.oneCol) .postBlogTitle, .blogPost.colorTeal:not(.oneCol) .voirPlus, .blogPost.colorTeal.oneCol strong, .blogPost.colorTeal.oneCol small, .blogPost.colorTeal.oneCol .voirPlus {
  color: #20c997;
}

.blogPost.colorTeal.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorTeal.oneCol:hover {
  background-color: #000;
}

.blogPost.colorPurple:not(.oneCol) .postBlogTitle, .blogPost.colorPurple:not(.oneCol) .voirPlus, .blogPost.colorPurple.oneCol strong, .blogPost.colorPurple.oneCol small, .blogPost.colorPurple.oneCol .voirPlus {
  color: #6f42c1;
}

.blogPost.colorPurple.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorPurple.oneCol:hover {
  background-color: #000;
}

.blogPost.colorInfo:not(.oneCol) .postBlogTitle, .blogPost.colorInfo:not(.oneCol) .voirPlus, .blogPost.colorInfo.oneCol strong, .blogPost.colorInfo.oneCol small, .blogPost.colorInfo.oneCol .voirPlus {
  color: #72d2c2;
}

.blogPost.colorInfo.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorInfo.oneCol:hover {
  background-color: #000;
}

.blogPost.colorWhite:not(.oneCol) .postBlogTitle, .blogPost.colorWhite:not(.oneCol) .voirPlus, .blogPost.colorWhite.oneCol strong, .blogPost.colorWhite.oneCol small, .blogPost.colorWhite.oneCol .voirPlus, .blogPost.colorWhite.oneCol .postBlogTitle {
  color: #fff;
}

.blogPost.colorWhite.oneCol:hover {
  background-color: #000;
}

.postBlogTitle {
  justify-content: start;
  align-items: center;
  height: 64px;
  margin: 4px 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  display: flex;
}

.postBlogTitle span {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  color: inherit;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.flexCSB {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flexCS {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.fz14 {
  font-size: 14px;
}

/*# sourceMappingURL=upto1_src_040355db._.css.map*/