@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

.fa-icon,
blockquote:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/**********
 Variables
 **********/
body {
  /* Text */
  --text-font-family: 'Rubik', sans-serif;
  --heading-font-family: 'Lato', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --heading-1-font-size: 48px;
  --heading-2-font-size: 32px;
  --heading-3-font-size: 24px;
  --heading-4-font-size: 20px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);
  /* Other */
  --border-radius-base: 8px;
  --border-radius-small: calc(8px / 2);
  --border-radius-button: 50px;
  --logo-height: 80px;
  --border-width: 1px;
  --white-color: #fff;
  /* Assets */
  --assets-check-svg: url(/hc/theming_assets/01JC6DMJ83GPD6N4ZEQJCPNDGK);
  --assets-circle-svg: url(/hc/theming_assets/01JC6DMJ839SK57HPHXHBQ2GAV);
}

/**********
 Light mode
 **********/
body {
  --primary-color: #935cff;
  --secondary-color: #fac63c;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: #f4f4f4;
  --secondary-bg-color-always: #f4f4f4;
  --primary-text-color: #27282c;
  --secondary-text-color: #9d9c9e;
  --link-color: #935cff;
  --border-color: #e4e4e4;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #7f3dff;
  --primary-color-hover: #6a1fff;
  --primary-color-active: #6010ff;
  --secondary-color-hover: #f3b206;
  --secondary-color-active: #e4a706;
  --secondary-bg-color-hover: #eaeaea;
  --secondary-bg-color-active: #e5e5e5;
  --secondary-text-color-hover: #939294;
  --secondary-text-color-active: #8e8d8f;
  --link-color-hover: #6a1fff;
  --link-color-active: #6010ff;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.5;
  --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
  /* Invert colors */
  --primary-bg-color: #f4f4f4;
  --secondary-bg-color: #FFFFFF;
}

/*********
 Dark mode
 *********/
.ui-dark body {
  /* UI dark colors */
  --primary-color: rgba(238, 153, 26, 1);
  --secondary-color: #fac63c;
  --primary-bg-color: rgba(24, 21, 18, 1);
  --primary-bg-color-always: rgba(24, 21, 18, 1);
  --secondary-bg-color: rgba(51, 48, 44, 1);
  --secondary-bg-color-always: rgba(51, 48, 44, 1);
  --primary-text-color: rgba(242, 232, 217, 1);
  --secondary-text-color: rgba(140, 137, 131, 1);
  --link-color: rgba(238, 153, 26, 1);
  --border-color: rgba(69, 69, 69, 1);
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #f0a636;
  --primary-color-hover: #f2b253;
  --primary-color-active: #f3b961;
  --secondary-color-hover: #fcd778;
  --secondary-color-active: #fcdc87;
  --secondary-bg-color-hover: #544f48;
  --secondary-bg-color-active: #5c574f;
  --link-color-hover: #f4bf6f;
  --link-color-active: #f5c57e;
/*   --bg-image-opacity: 0.5; */
  --bg-image-opacity-dark: 0.75;
  --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
  /* Invert colors */
  --primary-bg-color: rgba(51, 48, 44, 1);
  --secondary-bg-color: rgba(24, 21, 18, 1);
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
}

[dir] body,
[dir] html {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[dir] body {
  background-color: var(--secondary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

[dir] a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
/*   font-family: var(--heading-font-family); */
/*   font-weight: 400; */
  font-family: Oswald;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
  margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
  margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h1,
  .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  [dir] h1,
  [dir] .h1 {
    margin: 0 0 1em;
  }

  [dir] .markdown h1,
  [dir] .markdown .h1 {
    margin-top: 1em;
  }
}

h2,
.h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
  margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
  margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h2,
  .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  [dir] h2,
  [dir] .h2 {
    margin: 0 0 1.2em;
  }

  [dir] .markdown h2,
  [dir] .markdown .h2 {
    margin-top: 1.2em;
  }
}

h3,
.h3 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
  margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
  margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h3,
  .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }

  [dir] h3,
  [dir] .h3 {
    margin: 0 0 1.3em;
  }

  [dir] .markdown h3,
  [dir] .markdown .h3 {
    margin-top: 1.3em;
  }
}

h4,
.h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
  margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
  margin-top: 1.4em;
}

h5,
.h5 {
  font-size: var(--heading-5-font-size);
  line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
  margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
  margin-top: 1.5em;
}

h6,
.h6 {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
  margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
  margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
  margin: 1.5em 0 1.5em;
}

[dir] li {
  margin: 0.75em 0 0.75em;
}

small,
.small {
  font-size: var(--heading-6-font-size);
}

[role="main"] {
  flex-grow: 1;
  position: relative;
}

hr {
  display: block;
  height: 0;
}

[dir] hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  color: var(--primary-bg-color);
}

[dir] pre {
  padding: 8px 16px;
  border-radius: var(--border-radius-base);
  background-color: var(--primary-text-color);
}

.ui-dark pre {
  color: var(--secondary-text-color);
}

[dir].ui-dark pre {
  background-color: var(--secondary-bg-color);
}

blockquote {
  display: block;
  position: relative;
  z-index: 2;
}

[dir=ltr] blockquote {
  padding-left: 16px;
  border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
  padding-right: 16px;
  border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 24px;
  }

  [dir=rtl] blockquote {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 32px;
  }

  [dir=rtl] blockquote {
    padding-right: 32px;
  }
}

blockquote:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -4px;
  font-size: 60px;
  color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
  left: 8px;
}

[dir=rtl] blockquote:before {
  right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
  [dir=ltr] blockquote:before {
    left: 12px;
  }

  [dir=rtl] blockquote:before {
    right: 12px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote:before {
    left: 16px;
  }

  [dir=rtl] blockquote:before {
    right: 16px;
  }
}

.list-unstyled {
  list-style: none;
}

[dir=ltr] .list-unstyled {
  padding-left: 0;
}

[dir=rtl] .list-unstyled {
  padding-right: 0;
}

dl.details {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
  margin-bottom: 32px;
  margin-top: 0;
}

dl.details > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details > dt {
  font-weight: 700;
}

[dir] dl.details > dt {
  margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
  margin-right: 8px;
}

[dir=rtl] dl.details > dt {
  margin-left: 8px;
}

[dir] dl.details > dd {
  margin-bottom: 12px;
}

dl.details > div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

[dir] dl.details > div {
  margin-bottom: 12px;
}

dl.details--type-2 {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
  margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details--type-2 > dd {
  color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  [dir=ltr] dl.details--type-2 > dd {
    text-align: right;
  }

  [dir=rtl] dl.details--type-2 > dd {
    text-align: left;
  }
}

[dir] dl.details--no-margin {
  margin-bottom: 0;
}

.text-secondary {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
  color: var(--secondary-text-color);
}

/******
 Tables
 ******/
/* .table-container {
  display: block;
  width: 100%;
  overflow-x: auto;
}
 */
/* [dir] .table-container {
  border: 1px solid var(--border-color);
}
 */
.table-container table:not(.pika-table) {
  width: calc(100% + 3px);
  max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
  margin: -1px;
}

table:not(.pika-table) {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table:not(.pika-table) thead {
  font-weight: 700;
}

[dir] table:not(.pika-table) thead {
  background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
  background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
  width: 100%;
  max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
  border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
  border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
  padding: 8px;
  border: 1px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
}

.iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

[dir=ltr] .iframe iframe {
  left: 0;
}

[dir=rtl] .iframe iframe {
  right: 0;
}

[dir] .markdown > * {
  margin: 1.5em 0 1.5em;
}

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  color: var(--primary-text-color);
  white-space: pre;
}

[dir] .wysiwyg-body p code {
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  font-style: italic;
  overflow: hidden;
}

[dir=ltr] .wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  margin-left: 0;
  margin-right: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

[dir=rtl] .wysiwyg-body blockquote {
  border-right: 5px solid var(--border-color);
  margin-right: 0;
  margin-left: 0;
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.comments__item-body.wysiwyg-body blockquote:before {
  color: var(--primary-bg-color);
}

[dir] .comments__item-body.wysiwyg-body p code,
[dir].ui-dark .comments__item-body pre {
  background-color: var(--primary-bg-color);
}


/******* CUSTOM CONTENT *******/

/*** CUSTOM HEADER ***/

[dir] .header--style-1 .header__container.is-filled, [dir] .header--style-1.header--is-fixed .header__container.is-scrolled{
  background: rgba(6, 6, 5, 0.10)!important;
	backdrop-filter: blur(40px)!important;
  z-index: 9999;
}

[dir] .header--style-1 .header__container {
    background: rgba(24, 21, 18, 0.40)!important;
}

/*** CUSTOM HEADER END ***/

/*** CUSTOM SEARCH ***/
[dir].ui-dark .welcome input[type=search] {
	border-radius: 4px!important;
	border: 1px solid var(--8C8983, #8C8983)!important;
	background: #2A282C!important;
  color: var(--primary-text-color);
}

.custom-welcome.ui-dark .welcome input[type=search] {
    color: #F2E8D9!important;
}

/* Hover state */

@media only screen and (min-width: 980px) {
    [dir] .activity--type-2 .recent-activity-item {
        padding: 24px 48px 24px;
    }
}

/*** CUSTOM SEARCH END ***/

/*** CUSTOM HOME ***/
@media only screen and (min-width: 980px) {
    [dir] .welcome--size-large .welcome__section.custom_welcome__section {
        padding-top: 240px;
        padding-bottom: 120px;
    }
}

.welcome--style-1 h1.h1, h1.h1 {
	color: var(--primary-text-color);
}

.ui-dark body {
 --bg-image-opacity: 0!important;
}
.custom-category-blocks .category-blocks__item .category-blocks__title {
  margin-bottom:0px;
}

.custom-categories .sections__item {
  background: #181512;
  border-radius:8px;
  padding:24px;
}

.custom-categories .sections__item .categories__title{
  padding: 0 0 16px!important;
}


.custom-btn-primary,
[dir] .header--style-1 .btn.custom-btn-primary,
[dir] .btn.custom-btn-primary,
#modal-menu > div.modal__container > div > div > div:nth-child(1) > a:nth-child(2){
  background-color: #F2E8D9;
  border-radius: 4px;
  color: #060605;
  border-color: transparent;
  height: 40px;
  font-family: "Oswald", serif;
  font-weight: 400;
  text-transform: uppercase;
  padding: 7px 23px;
}

[dir] .btn.custom-btn-primary:hover{
  background-color: #EE991A!important;
	color:#060605!important;
  border-color: transparent!important;
}

.header--style-1 .btn.custom-btn-primary:hover{
  background-color: #EE991A!important;
	color:#060605!important;
  border-color: transparent!important;
}

#modal-menu > div.modal__container > div > div > div:nth-child(1) > a:nth-child(2)::before{
    content: "";
    background: url(/hc/theming_assets/01JCATAEAZ745WK81XTCHFZ5BS);
    width: 40px;
    height: 40px;
    position: relative;
    margin-top: -8px;
    margin-bottom: auto;
    margin-left: -24px;
    margin-right: 16px;
    display: flex;
}

.custom-btn-primary::before{
    content: "";
    background: url(/hc/theming_assets/01JCATAEAZ745WK81XTCHFZ5BS);
    width: 40px;
    height: 40px;
    position: relative;
    margin-top: 0px;
    margin-left: -24px;
    margin-right: 16px;
    display: block;
}

#modal-menu > div.modal__container > div > div > div:nth-child(1) > a:nth-child(2){
	display: flex;
  max-width: 13rem;
  margin-left: auto;
  margin-right: auto;
}

#modal-menu > div.modal__container > div > div > div:nth-child(1) > a:nth-child(2)::before{
    margin-top: -7px;
}

h1::after, 
h2::after {
  content: "";
  background:url("/hc/theming_assets/01JCB6H7E6CZ8EZH5XMNTDTMCG") no-repeat center center;
  width:365px;
  height:16px;
  position: relative;
  margin-top:12px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  display:flex;
  max-width: 100%;
}

@media only screen and (max-width:  640px) {
    h1::after, 
    h2::after {
    max-width: 80%;
  }
}

.activity .recent-activity-item-meta{
  display:none!Important;
}

.custom-activity .recent-activity-header {
  text-align: center;
}

.cta__title:after{
	display:none;  
}

.cta__section{
 background-image: url("/hc/theming_assets/01JCFTSJDXTJW4RVPV3A47DAP3");
 background-color: #cccccc;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9),
only screen and (min-width: 668px) and (min-height: 416px),
only screen and (min-width: 980px) {
    [dir] h3, [dir] .h3 {
        margin: 0px 0 0.3em;
    }
}

@media only screen and (min-width: 980px) {
	[dir] .activity--type-2 .recent-activity-item {
        padding: 24px 48px 24px!Important;
    }
}

.knowledge__nav-link span{
  color: var(--secondary-text-color);
}
.knowledge__nav-link.is-active span{
  color: var(--primary-text-color);
}

@media 
    only screen and (min-width: 568px) and (max-aspect-ratio: 13/9),
    only screen and (min-width: 668px) and (min-height: 416px),
    only screen and (min-width: 980px) {
    #helpers .helpers__block .helpers__description {
        max-width: 320px;
    }
}
/*** CUSTOM HOME END ***/

/*** CUSTOM ARTICLE & BLOG ***/
.articles__meta, .category-blocks__meta .calendar,
.page-heading--style-1,.page-heading--style-2 .page-heading__meta span{
  color:#F2E8D9!important;
}

.custom-article p strong,
.custom-article li strong,
.custom-article li::marker{
  color:#F2E8D9!Important;
}

.custom-article p,
.custom-article li{
  color:#8C8983;
}

.custom-article h2::after,
.recent-articles h2::after{
  display:none;
}

.vote__controls .vote__btn--down{
  order:1;
  margin-left: 16px;
}

.vote__controls .vote__btn--up{
  order:0;
}

.subscribe-btn{
  display:none!important;
}

@media only screen and (min-width: 980px) {
    [dir] .articles--boxes .articles__item {
        padding: 32px;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }
}

/*** CUSTOM ARTICLE & BLOG END ***/


/* CUSTOM DROPDOWN */

.ui-dark .header__link.is-active,
.ui-dark .header__link,
.ui-dark .header__link, .ui-light
.header__link.is-active,
.ui-light .header__link{
  color:#F2E8D9!important;
  padding: 4px 8px 4px 8px;
  height:40px!important;
  max-width:140px;
  border-radius: 4px;
	background: rgba(51, 51, 51, 0.00);
  height: 40px;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;

}

.ui-dark .header__link.is-active,
.ui-dark .header__link:active,
.ui-dark .header__link:hover, .ui-light
.header__link.is-active,
.ui-light .header__link:active,
.ui-light .header__link:hover {
	color:#F2E8D9!important;
  opacity:1!important;
  background: rgba(51, 51, 51, 0.60);
}

[dir=ltr] .btn--circle>*, [dir=ltr] .pagination ul li>a>*, [dir=ltr] .pagination ul li>span>*, [dir=ltr] .share li a>*{
   color:#F2E8D9!important;
  background: rgba(51, 51, 51, 0.00);
}

[dir].ui-dark .header--style-1 .btn--light:active, [dir].ui-dark .header--style-1 .btn--light:hover{
	color:#F2E8D9!important;
  opacity:1!important;
  background: rgba(51, 51, 51, 0.60)!important;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9),
  only screen and (min-width: 668px) and (min-height: 416px),
  only screen and (min-width: 980px) {
    [dir] h1, [dir] .h1 {
        text-align: center;
    }
}

/* CUSTOM DROPDOWN END */

/* Custom Request */
.upload-item .upload-link {
  color:#F2E8D9;
}

/* Custom Request END */

/* Custom Footer */
footer .wraper{
    width: 100%;
     max-width: 1264px;
  	margin: auto;
}
@media only screen and (min-width: 980px) {
    footer .wraper{
        max-width: 1264px
    }
}
.footer-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem;
}
footer .logo{
	max-width: 160px;
}
.social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.social-icons a {
    text-decoration: none;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: filter 0.25s ease;
}
.social-icons a:hover {
    filter: brightness(1.25);
}
.social-icons img {
    width: 20px;
    height: 20px;
}
.footer-inner p{
    color: #8C8983;
    font-size: 10px;
    text-align: center;
}
.footer-links {
  display: flex;
  flex-direction: column;
   margin: auto;
}
.footer-links a {
  color: #8C8983;
  margin: 5px 0;
  text-decoration: underline;
}
.footer-links a:hover {
  color: rgba(238, 153, 26, 1);
  text-decoration: none;
}
/* Responsive for mobile */
@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
.footer-inner {
        flex-direction: column;
        align-items: center;
    }
    .social-icons {
        margin-bottom: 16px;
    }
    .footer-language-selector {
        margin-top: 16px;
    }
    .logo {
        margin-bottom: 16px;
    }
    .footer-inner p{
			margin:0 16px;
  }
}
/* Custom Footer END */

/* ScrollTopBtn */
#scrollTopBtn {
    display: none; 
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    font-size: 24px;
    background-color: var(--primary-text-color);
    color: white;
    border: none;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    transition: background-color 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

#scrollTopBtn:hover {
    background-color: var(--link-color);
}

#scrollTopBtn:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
    #scrollTopBtn {
        display: none !important;
    }
}
/* ScrollTopBtn END */

/* Spoiler */
.wysiwyg-color-black10,
p code{
    background-color: #a79d7d;
    color: transparent;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Rubik', sans-serif;
}

.wysiwyg-color-black10:hover,
p code:hover{
    background-color: transparent;
    color: inherit;
}
/* Spoiler END */

/*Editor fix*/
.ck-editor__editable{
  max-height:320px;
}
/* Scrollbar for WebKit browsers (Chrome, Safari, etc.) */
.ck-editor__editable ::-webkit-scrollbar {
  width: 10px;
}

.ck-editor__editable ::-webkit-scrollbar-track {
  background: #2c2c2c; /* Dark background to match the theme */
  border-radius: 5px;
}

.ck-editor__editable ::-webkit-scrollbar-thumb {
  background: #ff9500; /* Orange thumb color */
  border-radius: 5px;
}

.ck-editor__editable ::-webkit-scrollbar-thumb:hover {
  background: #e68a00; /* Slightly darker orange on hover */
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff9500 #2c2c2c;
}