@charset "utf-8";

.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: 'Lato', 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: 24px;
    --heading-5-font-size: 16px;
    --heading-6-font-size: calc(16px - 2px);
    /* Other */
    --border-radius-base: 16px;
    --border-radius-small: calc(16px / 2);
    --border-radius-button: 50px;
    --logo-height: 35px;
    /* Assets */
    --assets-check-svg: url(/hc/theming_assets/01HZM3MWHD6MMMKJZTXA0TF0F0);
    --assets-circle-svg: url(/hc/theming_assets/01HZM3MWPGRQ8PBCREMRVGVNEG);

    --dark-grey-2: #1D2033;
  	--dark-grey-3: #282B3D;
  	--light-grey-5: #E6EBED;
  	--light-grey-6: #EDF1F2;
}

/**********
 Light mode
 **********/
body {
    --primary-color: rgba(32, 145, 246, 1);
    --secondary-color: rgba(32, 145, 246, 1);
    --primary-bg-color: rgba(5, 11, 25, 1);
    --primary-bg-color-always: rgba(5, 11, 25, 1);
    --secondary-bg-color: rgba(5, 11, 25, 1);
    --secondary-bg-color-always: rgba(5, 11, 25, 1);
    --primary-text-color: rgba(255, 255, 255, 1);
    --secondary-text-color: rgba(141, 145, 165, 1);
    --link-color: rgba(141, 145, 165, 1);
    --border-color: rgba(29, 32, 51, 1);
    --info-color: rgba(73, 42, 42, 1);
    --success-color: rgba(0, 204, 116, 1);
    --warning-color: rgba(242, 201, 76, 1);
    --danger-color: rgba(242, 94, 97, 1);
    --primary-color-light-hover: #0a82ee;
    --primary-color-hover: #0872d0;
    --primary-color-active: #086ac2;
    --secondary-color-hover: #0872d0;
    --secondary-color-active: #086ac2;
    --secondary-bg-color-hover: #020408;
    --secondary-bg-color-active: #000;
    --secondary-text-color-hover: #82869c;
    --secondary-text-color-active: #7c8198;
  	--link-color-hover: white;
    /*--link-color-hover: #6c7189;*/
    --link-color-active: #656a80;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.5;
    --bg-image-color: var(--primary-text-color);
    --career-link-color:  rgba(32, 145, 246, 1);
  
    --tab-active-color: var(--light-grey-5);
  	--tab-inactive-color: var(--light-grey-6);
  	--code-color: var(--light-grey-6);
}

}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
    /* Invert colors */
    --primary-bg-color: rgba(5, 11, 25, 1);
    --secondary-bg-color: rgba(5, 11, 25, 1);
}

/*********
 Dark mode
 *********/
.ui-dark body {
    /* UI dark colors */
    --primary-color: rgba(32, 145, 246, 1);
    --secondary-color: rgba(32, 36, 61, 1);
    --primary-bg-color: rgba(5, 11, 25, 1);
    --primary-bg-color-always: rgba(5, 11, 25, 1);
    --secondary-bg-color: rgba(5, 11, 25, 1);
    --secondary-bg-color-always: rgba(5, 11, 25, 1);
    --primary-text-color: #FFFFFF;
    --secondary-text-color: rgba(141, 145, 165, 1);
    --link-color: rgba(255, 255, 255, 1);
    --border-color: rgba(20, 23, 40, 1);
    --info-color: rgba(32, 145, 246, 1);
    --success-color: rgba(0, 204, 116, 1);
    --warning-color: rgba(242, 201, 76, 1);
    --danger-color: rgba(242, 94, 97, 1);
    --primary-color-light-hover: #3da0f7;
    --primary-color-hover: #5baef8;
    --primary-color-active: #6ab5f9;
    --secondary-color-hover: #32385e;
    --secondary-color-active: #3a426f;
    --secondary-bg-color-hover: #0f214c;
    --secondary-bg-color-active: #122759;
    --link-color-hover: #fff;
    --link-color-active: #fff;
    --bg-image-opacity: 0.5;
    --bg-image-opacity-dark: 0.75;
    --bg-image-color: var(--primary-bg-color);
    --career-link-color: #49e287;
  
    	
    --tab-active-color: var(--dark-grey-3);
    --tab-inactive-color: var(--dark-grey-2);
    --code-color: var(--dark-grey-2);
}



/***********
 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: 700;
}

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 (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  [dir] .welcome .h1 {
    font-size: 48px;
  }
}

@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: 1em;
}

@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 1em;
    }

    [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-text-color);
}

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

[dir].ui-dark pre {
    background-color: var(--code-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;
}

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;
    }
}

.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%;
}

.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;
}



.column-47 {
  padding-right: 0;
  padding-left: 0;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col-1 {
  width: 9%
}

.w-col-2 {
  width: 22%
}

.w-col-3 {
  width: 25%;
}

.w-clearfix:after,
.w-clearfix:before {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-clearfix:after {
  clear: both;
}

.image-69 {
  display: block;
  float: none;
}
.footer-fine-text {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-right: 0;
  float: none;
  color: var(--secondary-text-color);
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}

.footer-social-links {
  display: block;
  min-width: 360px;
  float: none;
  direction: ltr;
  text-align: left;
}

.social-link>svg>path{ 
  fill: var(--secondary-text-color);
}

.social-link {
  margin: 4px 10px 0 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  float: left;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.column-45 {
  left: 10px;
  padding-right: 0;
  padding-left: 0
}

.column-46 {
  left: 40px;
  padding-right: 0;
  padding-left: 0
}

.column-48 {
  left: 45px;
  padding-right: 0;
  padding-left: 0
}

.column-49 {
  left: 35px;
  padding-right: 0;
  padding-left: 0
}

.column-50 {
  left: 50px;
  padding-right: 0;
  padding-left: 0
}


h5.heading-46 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--primary-text-color);
  line-height: 30px;
  text-align: left
}

.link-2 {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  float: none;
  color: var(--secondary-text-color);
  line-height: 14px;
  text-align: center;
  text-decoration: none
}

.link-2.careers {
  color: var(--career-link-color);
}

.link-2.footer-link {
  text-align: left
}

.footer .container {
	display: block !important;
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .column-47 {
    padding-left: 0;
  }

  .w-col-medium-4 {
    width: 33.33333333%;
  }

  .footer-fine-text {
    max-width: 110px;
    padding-right: 0;
    padding-left: 0;
  }

  .footer-social-links {
    display: block;
    max-width: 620px;
    margin: 10px auto;
    float: none;
    text-align: center;
  }

  .social-link {
    display: inline-block;
    margin-top: 0;
    margin-right: 10px;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    float: left;
    direction: ltr;
  }
  
	.column-45 {
    left: 0;
    height: 220px;
    padding-left: 0
  }

  .column-46 {
    left: 0;
    height: 220px
  }

  .column-48,.column-49,.column-50 {
      left: 0;
      height: 150px;
      padding-right: 0;
      padding-left: 0
  }
  
  .link-2 {
    position: static
  }  
}

@media screen and (max-width: 990px) {
  
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-6 {
    width: 50%;
  }
  
  .column-45 {
    height: 220px;
    margin-bottom: 0
  }

  .column-46,.column-48 {
    height: 180px
  }
  
  .heading-46 {
    margin-top: 0;
    margin-bottom: 0
  }


}



 .page-heading {
    padding-bottom: 0px !important;
    margin-bottom: 0 !important;
  }

[dir] .page-content:not(.page-content--without-margin) {
  margin-top: 0px !important; }
	








@media screen and (max-width: 767px) {
  .sections__container {
    flex-direction: column !important;
    gap: 32px !important;
  }
  
  .knowledge--type-1 .sections__container {
    gap: 0px !important;
 		}
  [dir] .sections__item {
    margin-top: 0px !important;
  	}
  .row--center {
    gap: 10px !important;
 	 }
  }
}

@media screen and (max-width: 479px) {
  .sections__container {
    flex-direction: column !important;
    gap: 32px !important;
  }


  
  .column-47 {
    margin-bottom: 20px;
  }

  .w-col {
    width: 100%;
  }
  
  .image-69 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footer-fine-text {
    max-width: none;
    text-align: center;
  }

  .footer-social-links {
    display: block;
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .social-link {
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 10px;
    padding-left: 10px;
    float: none;
    clear: none;
  }
  
    .column-45,.column-46 {
    height: auto;
    margin-bottom: 30px
  }

  .column-47 {
    margin-bottom: 20px
  }

  .column-48,.column-49,.column-50 {
    height: auto;
    margin-bottom: 30px
  }
  
  .heading-46,.link-2 {
    text-align: center
  }
}

li > img {
	margin: 0.75em 0 0;
	border-radius: calc(var(--border-radius-base)/2);
  border: 1px solid #eee;
}

//*p > img {
	border-radius: calc(var(--border-radius-base)/2);
  border: 1px solid #eee;
}*//

.hide {
	display: none;
}




/* Style the buttons that are used to open the tab content */
.tab div {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: 0.3s;
}

/* Create an active/current tablink class */
.tab div.active {
  background-color:var(--border-color);
  /*background-color: var(--secondary-bg-color-hover);*/
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 20px 20px;
  border-top: none;
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
  margin-bottom: 20px
}

/* Style the tab content */
.tabcontent.active {
  display: block;
  background-color:var(--border-color);
  /*background-color: var(--tab-active-color);*/
}

img.inline {
    margin: auto;
    border: inherit;
    border-radius: inherit;
}
[dir] .header--style-1 .header__container.is-filled,
[dir] .header--style-1.header--is-fixed .header__container.is-scrolled {
  background-color: #050B19 !important;
  color: white !important;
}

.header__link.is-hidden--md-down {
  margin-right: 16px;
  display: inline-block;
  align-self: center;
  margin-right: 0;
}

.page-content__article a {
  color: #4898F7;
}
.page-content__article a:hover {
  color: #1B66BF;
}

.page-heading__meta time{
  color: #8D91A5;
}

.recent-articles a {
  color: #4898F7;
}
.recent-articles a:hover {
  color: #1B66BF;
}

.comment-form textarea {
  background-color: #f5f7fa !important;
  color: #1a1a1a !important;
}

.page-content__article p, li {
  color: #C0C4D1;
}

[dir] .welcome--style-1 input[type=search] {
  background-color: var(--border-color);
}

.articles__item a {
   color: white;
}

.articles__meta a {
  color: #8d91a5;
}

.sections__item a {
  --link-color-hover: #2091F6;
}

.modal is-active ,[dir].ui-light .modal__bg {
  background-color: var(--border-color)!important;
}

zd-autocomplete {
  background: var(--border-color) !important;
  }

zd-autocomplete-announcement {
  border: 0px !important;
}

input[type="search"]:focus {
  outline: none;
  box-shadow: none;
}

.hc-multiselect-toggle, .nesty-input, input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], input[type=text], input[type=password], input[type=datetime], select, textarea {
  background-color: var(--border-color) !important;
}

.upload-dropzone {
  background-color: var(--border-color) !important;
}

[dir] .welcome--size-small .welcome__section {
  padding-top: 162px !important;
  padding-bottom: 0px !important;
}

.knowledge--type-1 .sections__container {
    display: flex;
    gap: 65px;
    flex-wrap: wrap;
    align-items: flex-start;
}

[dir] .sections__item {
  	flex: 1;
    min-width: 0;
}


.knowledge__nav.js-tabs-links {
  display: none !important;
}
.knowledge--type-1 .col--lg-up-8, .col--lg-up-7  {
  flex: 1 1 100% !important;
  max-width: 100% !important;
  text-align: center;
  margin-top: 20px;
}

 .welcome__content h1{
  font-size: 56px;
} 

/* [dir] .helpers .helpers__title {
  font-size:32px;
} */

.helpers--type-1 .helpers__block {
  background-color: var(--border-color);
	border-radius: 20px;
 
}

[dir] .helpers--type-1 .helpers__icon {
  background-color: transparent !important;
}

[dir] .helpers--style-1.helpers--type-1 .helpers__icon {
  margin: 0px auto 14px !important;
}

.helpers--type-1 .helpers__icon img, .helpers--type-1 .helpers__icon svg {
  width: 60px !important;
  height: 60px !important;
}


h3.article_title {
  font-size: var(--heading-2-font-size);
  display: flex;
  justify-content: center;
}


body .nesty-panel {
  min-width: 360px !important;
  max-height: 340px !important;
  overflow-y: auto !important;
  font-size: 16px !important;
}

body .nesty-panel li {
  padding: 10px 14px !important;
}


.page-heading--style-3 .page-heading__breadcrumbs .breadcrumbs li+li:before {
  color: var(--link-color) !important;
}

.cta__section .btn--primary {
  background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.cta__section .btn--primary:hover {
  background-color: var(--secondary-color-active) !important;
}

[dir] .helpers--type-1 .helpers__block:before {
    background-color: var(--secondary-color-active) !important;
		transform: scale(.93, .90) !important;
}

.ui-dark .welcome input[type=search] {
	color: var(--primary-text-color) !important;
}
/***** Search Results — Multi-Help-Center Sidebar *****/

/* Outer flex container */
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 1024px) {
  .search-results {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

/* Main results column */
.search-results-column {
  flex: 1;
  min-width: 0;
}

@media only screen and (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 73%;
  }
}

/* Sidebar */
.search-results-sidebar {
  flex: 1 0 auto;
  border-top: 1px solid var(--border-color);
  margin-bottom: 20px;
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  .search-results-sidebar {
    flex: 0 0 22%;
    border-top: 0;
    height: auto;
  }
}

/* Each filter section inside sidebar */
.filters-in-section {
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.filters-in-section:last-child {
  border-bottom: 0;
}

/* Section title */
.collapsible-sidebar-title.sidenav-title {
  font-size: var(--heading-5-font-size);
  font-weight: 700;
  color: var(--primary-text-color);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

/* Toggle button — the caret */
.collapsible-sidebar-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--secondary-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 300ms ease;
}

/* Caret icon via pseudo-element */
.collapsible-sidebar-toggle::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--secondary-text-color);
  border-bottom: 2px solid var(--secondary-text-color);
  transform: rotate(45deg);
  transition: transform 300ms ease, border-color 300ms ease;
  margin-top: -4px;
}

/* Rotated when expanded */
.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-toggle::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.collapsible-sidebar-toggle:hover::after {
  border-color: var(--primary-color);
}

/* Filter list */
.multibrand-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Collapsed: hide items beyond the first 5 */
.multibrand-filter-list--collapsed .see-all-filters ~ li,
.multibrand-filter-list--collapsed li:nth-child(n+6) {
  display: none;
}

/* When sidebar is collapsed, hide the entire list */
.collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

/* Sidebar nav items */
.sidenav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: var(--border-radius-small);
  color: var(--primary-text-color);
  font-size: var(--heading-6-font-size);
  transition: background-color 200ms ease, color 200ms ease;
  text-decoration: none;
}

[dir] .sidenav-item {
  margin-bottom: 2px;
}

.sidenav-item:hover {
  background-color: var(--secondary-bg-color);
  color: var(--primary-color);
}

/* Active / selected filter */
.sidenav-item.current,
.sidenav-item[aria-current="page"] {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

.sidenav-item.current:hover,
.sidenav-item[aria-current="page"]:hover {
  background-color: var(--primary-color-hover);
  color: #fff;
}

/* Dark mode adjustments */
.ui-dark .sidenav-item:hover {
  background-color: var(--secondary-bg-color);
  color: var(--primary-color);
}

/* Filter name + doc count layout */
.sidenav-subitem.filter-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidenav-subitem.doc-count {
  flex-shrink: 0;
  color: var(--secondary-text-color);
  font-size: var(--heading-6-font-size);
}

[dir=ltr] .sidenav-subitem.doc-count {
  margin-left: 6px;
}

[dir=rtl] .sidenav-subitem.doc-count {
  margin-right: 6px;
}

.sidenav-item.current .sidenav-subitem.doc-count,
.sidenav-item[aria-current="page"] .sidenav-subitem.doc-count {
  color: rgba(255, 255, 255, 0.75);
}

/* "Show more" button */
.see-all-filters {
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--primary-color);
  font-size: var(--heading-6-font-size);
  font-weight: 600;
  text-align: left;
  display: block;
  width: 100%;
  transition: color 200ms ease;
}

.see-all-filters:hover {
  color: var(--primary-color-hover);
}

/* ---- Results list ---- */

.search-results-subheading {
  font-size: var(--heading-3-font-size);
  font-weight: 600;
  margin-bottom: 16px;
}

.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

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

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

.search-results-list > li {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.search-results-list > li:last-child {
  border-bottom: 1px solid var(--border-color);
}

.search-result-title {
  font-size: var(--heading-5-font-size);
  font-weight: 600;
  margin: 0 0 6px;
}

.results-list-item-link {
  color: var(--link-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.results-list-item-link:hover {
  color: var(--primary-color);
}

.results-list-item-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Meta group (breadcrumbs, author, date) */
.meta-group {
  list-style: none;
  padding: 0;
  margin: 6px 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--heading-6-font-size);
  color: var(--secondary-text-color);
}

[dir=ltr] .meta-group {
  padding-left: 0;
}

[dir=rtl] .meta-group {
  padding-right: 0;
}

.meta-group li {
  margin: 0;
  line-height: 1.4;
}

.meta-data {
  color: var(--secondary-text-color);
}

/* Breadcrumbs inside results */
.search-result-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

[dir=ltr] .search-result-breadcrumbs {
  padding-left: 0;
}

[dir=rtl] .search-result-breadcrumbs {
  padding-right: 0;
}

.search-result-breadcrumbs li {
  margin: 0;
  color: var(--secondary-text-color);
}

.search-result-breadcrumbs li a {
  color: var(--secondary-text-color);
}

.search-result-breadcrumbs li a:hover {
  color: var(--primary-color);
}

/* Separator dot after each breadcrumb except last */
.search-result-breadcrumbs li::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
  color: var(--secondary-text-color);
}

.search-result-breadcrumbs li:last-child::after {
  display: none;
}

/* Votes / comment count badges */
.search-result-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.search-result-votes,
.search-result-meta-count {
  color: var(--secondary-text-color);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--heading-6-font-size);
  font-weight: 300;
  padding: 2px 5px;
}

.search-result-votes::before {
  content: "👍";
}

.search-result-meta-count::before {
  content: "💬";
}

/* Snippet / description */
.search-results-description {
  margin-top: 8px;
  color: var(--secondary-text-color);
  font-size: var(--heading-6-font-size);
  line-height: 1.6;
  word-break: break-word;
}

.search-results-description em {
  font-style: normal;
  font-weight: 700;
  color: var(--primary-text-color);
}

/* Non-latin highlight overrides */
html[lang|="zh"] .search-results-description em {
  background: yellow;
  color: #000;
}

html[lang|="ar"] .search-results-description em,
html[lang|="bg"] .search-results-description em,
html[lang|="el"] .search-results-description em,
html[lang|="he"] .search-results-description em,
html[lang|="hi"] .search-results-description em,
html[lang|="ko"] .search-results-description em,
html[lang|="ja"] .search-results-description em,
html[lang|="ru"] .search-results-description em,
html[lang|="th"] .search-results-description em {
  font-weight: bold;
}

/* Mobile: sidebar on top, full width */
@media only screen and (max-width: 1023px) {
  .search-results-sidebar {
    width: 100%;
    border-top: 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
  }

  .filters-in-section {
    padding: 10px 0;
  }

  /* On mobile all sections start collapsed */
  .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: none;
  }
}

/* Dark mode */
.ui-dark .filters-in-section {
  border-color: var(--border-color);
}

.ui-dark .search-results-list > li {
  border-color: rgba(255, 255, 255, 0.);
}

.ui-dark .search-result-breadcrumbs li::after {
  color: var(--secondary-text-color);
}


/***** Search Results — Multi-Help-Center Sidebar *****/

/* Outer flex container */
.search-results {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media only screen and (min-width: 1024px) {
    .search-results {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

/* Main results column */
.search-results-column {
    flex: 1;
    min-width: 0;
}

@media only screen and (min-width: 1024px) {
    .search-results-column {
        flex: 0 0 73%;
    }
}

/* Sidebar */
.search-results-sidebar {
    flex: 1 0 auto;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding: 0;
}

@media only screen and (min-width: 1024px) {
    .search-results-sidebar {
        flex: 0 0 22%;
        border-top: 0;
        height: auto;
    }
}

/* Each filter section */
.filters-in-section {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.filters-in-section:last-child {
    border-bottom: 0;
}

/* Section title row — flex so button sits at the end */
.collapsible-sidebar-title.sidenav-title {
    font-size: var(--heading-5-font-size);
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

/* Toggle caret button — lives inside the h3, sits on the right */
.collapsible-sidebar-toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    margin-left: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--secondary-text-color);
}

.collapsible-sidebar-toggle::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--secondary-text-color);
    border-bottom: 2px solid var(--secondary-text-color);
    transform: rotate(45deg);
    transition: transform 300ms ease, border-color 300ms ease;
    margin-top: -3px;
}

/* Rotated when section is open */
.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.collapsible-sidebar-toggle:hover::after {
    border-color: var(--primary-color);
}

/* Filter list */
.multibrand-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

/* Collapsed: hide list when section aria-expanded is false (driven by JS) */
.collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: none;
}

/* Sidebar nav items */
.sidenav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: var(--border-radius-small);
    color: var(--primary-text-color);
    font-size: var(--heading-6-font-size);
    text-decoration: none;
    transition: background-color 200ms ease, color 200ms ease;
}

[dir] .sidenav-item {
    margin-bottom: 2px;
}

.sidenav-item:hover {
    background-color: var(--border-color);
    color: var(--primary-color);
}

/* Active / selected filter */
.sidenav-item.current,
.sidenav-item[aria-current="page"] {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

.sidenav-item.current:hover,
.sidenav-item[aria-current="page"]:hover {
    background-color: var(--primary-color-hover);
    color: #fff;
}

/* Filter name + doc count */
.sidenav-subitem.filter-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidenav-subitem.doc-count {
    flex-shrink: 0;
    color: var(--secondary-text-color);
    font-size: var(--heading-6-font-size);
}

[dir=ltr] .sidenav-subitem.doc-count {
    margin-left: 6px;
}

[dir=rtl] .sidenav-subitem.doc-count {
    margin-right: 6px;
}

.sidenav-item.current .sidenav-subitem.doc-count,
.sidenav-item[aria-current="page"] .sidenav-subitem.doc-count {
    color: rgba(255, 255, 255, 0.7);
}

/* "Show more" button */
.see-all-filters {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: var(--heading-6-font-size);
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    transition: color 200ms ease;
}

[dir=rtl] .see-all-filters {
    text-align: right;
}

.see-all-filters:hover {
    color: var(--primary-color-hover);
}

/* ---- Results list ---- */

.search-results-subheading {
    font-size: var(--heading-3-font-size);
    font-weight: 600;
    margin-bottom: 16px;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

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

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

.search-results-list > li {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.);
}

.search-results-list > li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.);
}

.search-result-title {
    font-size: var(--heading-5-font-size);
    font-weight: 600;
    margin: 0 0 6px;
}

.results-list-item-link {
    color: var(--link-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.results-list-item-link:hover {
    color: var(--primary-color);
}

.results-list-item-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Meta group */
.meta-group {
    list-style: none;
    padding: 0;
    margin: 6px 0 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--heading-6-font-size);
    color: var(--secondary-text-color);
}

[dir=ltr] .meta-group {
    padding-left: 0;
}

[dir=rtl] .meta-group {
    padding-right: 0;
}

.meta-group li {
    margin: 0;
    line-height: 1.4;
}

.meta-data {
    color: var(--secondary-text-color);
}

/* Breadcrumbs inside results */
.search-result-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

[dir=ltr] .search-result-breadcrumbs {
    padding-left: 0;
}

[dir=rtl] .search-result-breadcrumbs {
    padding-right: 0;
}

.search-result-breadcrumbs li {
    margin: 0;
    color: var(--secondary-text-color);
}

.search-result-breadcrumbs li a {
    color: var(--secondary-text-color);
}

.search-result-breadcrumbs li a:hover {
    color: var(--primary-color);
}

.search-result-breadcrumbs li::after {
    content: "·";
    display: inline-block;
    margin: 0 5px;
    color: var(--secondary-text-color);
}

.search-result-breadcrumbs li:last-child::after {
    display: none;
}

/* Vote / comment badges */
.search-result-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.search-result-votes,
.search-result-meta-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--secondary-text-color);
    font-size: var(--heading-6-font-size);
    font-weight: 300;
    padding: 2px 5px;
}

.search-result-votes::before {
    content: "👍";
}

.search-result-meta-count::before {
    content: "💬";
}

/* Snippet text */
.search-results-description {
    margin-top: 8px;
    color: var(--secondary-text-color);
    font-size: var(--heading-6-font-size);
    line-height: 1.6;
    word-break: break-word;
}

/* Highlight matched terms */
.search-results-description em,
.search-result-title em {
    font-style: normal;
    font-weight: 700;
    color: var(--secondary-text-color);
}

/* Non-latin highlight overrides */
html[lang|="zh"] .search-results-description em {
    background: yellow;
    color: #000;
    font-weight: normal;
}

html[lang|="ar"] .search-results-description em,
html[lang|="bg"] .search-results-description em,
html[lang|="el"] .search-results-description em,
html[lang|="he"] .search-results-description em,
html[lang|="hi"] .search-results-description em,
html[lang|="ko"] .search-results-description em,
html[lang|="ja"] .search-results-description em,
html[lang|="ru"] .search-results-description em,
html[lang|="th"] .search-results-description em {
    font-weight: bold;
    font-style: normal;
}

/* Mobile */
@media only screen and (max-width: 1023px) {
    .search-results-sidebar {
        width: 100%;
        border-top: 0;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 24px;
    }

    .filters-in-section {
        padding: 10px 0;
    }
}

/* Hide Zendesk auto-injected source/breadcrumb between title and snippet */
.search-result-list-item .breadcrumbs,
.search-result-list-item ol.breadcrumbs,
.search-result-list-item nav,
.search-result-list-item > *:not(h2):not(article) {
    display: none !important;
}

/* Keep our article content visible */
.search-result-list-item article,
.search-result-list-item article * {
    display: revert;
}

/* Space between search bar and results */
.search-results {
    margin-top: 40px;
}

/* More vertical padding between result items */
.search-results-list > li {
    padding: 32px 0;
}