@charset "UTF-8";
/*
 * Colors
 */
/*
 * Brand colors
 */
/*
 * Colors used in hljs syntax highlighting
 */
/*
 * Search color
 */
/*
 * Layout
 */
/*
 * Transition
 */
/*
 * Font sizes
 */
/* Set root size to use relative units (em, rem) */
/* 1 rem equals 10px with default size/zoom */
@import url(vendor/featherlight.min.css);
@import url(vendor/perfect-scrollbar.css);
@import url(vendor/auto-complete.css);
@import url(vendor/bootstrap-grid.min.css);
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
:root {
  font-size: 62.5%; }

.space-10 {
  height: 1rem; }

.space-20 {
  height: 2rem; }

.space-30 {
  height: 3rem; }

.space-40 {
  height: 4rem; }

.space-50 {
  height: 5rem; }

.space-60 {
  height: 6rem; }

.space-70 {
  height: 7rem; }

.space-80 {
  height: 8rem; }

.space-90 {
  height: 9rem; }

.space-100 {
  height: 10rem; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1; }

/*
 * chrome always underlined fix;
 */
*:focus {
  outline: none; }

/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/
::-moz-selection {
  background: #35B863;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #35B863;
  color: #fff;
  text-shadow: none; }

/*
* Remove the gap between images, videos, audio and canvas and the bottom of
* their containers: h5bp.com/i/440
*/
audio,
canvas,
img,
video {
  vertical-align: middle; }

/*
* Remove default fieldset styles.
*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
* Allow only vertical resizing of textareas.
*/
textarea {
  resize: vertical; }

/*
* Remove special buttons in text field for IE10+ and Edge.
*/
::-ms-clear, ::-ms-reveal {
  display: none; }

/* Set root size to use relative units (em, rem) */
/* 1 rem equals 10px with default size/zoom */
:root {
  font-size: 62.5%; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1.3rem;
  /* This for example equals 14px  */
  font-family: "Arial", Arial, sans-serif;
  color: #333333; }

html, button, input, select, textarea {
  font-family: "Arial", Arial, sans-serif; }

.wrapper {
  display: flex;
  height: 100%; }

.side {
  display: flex;
  flex-direction: column;
  width: 300px;
  min-width: 300px;
  background: #f0f0f0;
  box-sizing: border-box;
  padding: 1.9rem 1rem 0rem 1.8rem;
  position: relative; }
  @media screen and (max-width: 768px) {
    .side {
      position: fixed;
      top: 6rem;
      bottom: 0;
      left: 0;
      z-index: 100;
      transform: translateX(-100%);
      transition: transform 0.2s ease; }
      .side--opened {
        transform: translateX(0); } }

.main {
  flex: 1 auto;
  display: flex;
  flex-direction: column;
  position: relative; }

.header {
  flex: 0 0 6rem;
  height: 6rem;
  background: #35b863; }
  .header__logo {
    position: absolute;
    top: 1rem;
    left: 2rem; }
  .header:before {
    content: '';
    display: block;
    position: absolute;
    left: -0.5rem;
    width: 0.5rem;
    height: 6rem;
    background: #35B863; }
  @media screen and (max-width: 768px) {
    .header__logo {
      top: 1.5rem;
      left: 5rem; }
      .header__logo img {
        width: 14rem; } }

.content {
  padding: 1rem 30rem 10rem 3rem;
  overflow: auto; }
  @media screen and (max-width: 1500px) {
    .content {
      padding-right: 20rem; } }
  @media screen and (max-width: 1400px) {
    .content {
      padding-right: 10rem; } }
  @media screen and (max-width: 1300px) {
    .content {
      padding-right: 2rem; } }
  @media screen and (max-width: 768px) {
    .content {
      padding: 0rem 2rem 2rem 2rem; } }

.gutter {
  display: block !important;
  flex: 0 0 17px;
  position: relative;
  background: #dcdcdc;
  border-left: 6px solid #f0f0f0;
  border-right: 5px solid #fff;
  transition: background 1.6s ease; }
  .gutter:after {
    content: '';
    position: absolute;
    height: 50px;
    width: 2px;
    border-radius: 3px;
    background: #aaa;
    top: 50%;
    left: 2px;
    transition: background 1.6s ease; }
  .gutter:hover {
    cursor: col-resize;
    box-sizing: border-box;
    background: #6989B6; }
    .gutter:hover:after {
      background: #fff; }
  @media screen and (max-width: 768px) {
    .gutter {
      display: none !important; } }

.nav {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  padding-top: 6.5rem; }

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: inherit; }

.hljs-keyword,
.hljs-literal {
  color: #7f007f;
  font-weight: bold; }

.hljs-type {
  color: #ad6e2d;
  font-weight: bold; }

.hljs-string {
  color: #1c5ece; }

.hljs-function {
  font-weight: bold; }

.hljs-comment {
  color: #20ab50; }

.hljs-port {
  color: #61b006;
  font-weight: bold; }

.language-ctl .hljs-keyword,
.language-ctl .hljs-literal {
  color: #7f007f;
  font-weight: bold; }
.language-ctl .hljs-type {
  color: #ad6e2d;
  font-weight: bold; }
.language-ctl .hljs-string {
  color: #1c5ece; }
.language-ctl .hljs-function {
  font-weight: bold; }
.language-ctl .hljs-comment {
  color: #20ab50; }
.language-ctl .hljs-port {
  color: #61b006;
  font-weight: bold; }

.language-xml .hljs-tag,
.language-xml .hljs-name {
  color: #3f7f7f; }
.language-xml .hljs-meta,
.language-xml .hljs-comment {
  color: #777777; }
.language-xml .hljs-attr {
  color: #7f007f; }
.language-xml .hljs-string {
  color: #1c5ece;
  font-style: italic; }

.language-sql .hljs-keyword,
.language-sql .hljs-literal {
  color: #7f007f;
  font-weight: bold; }
.language-sql .hljs-comment {
  color: #777777; }
.language-sql .hljs-type {
  color: #ad6e2d;
  font-weight: bold; }
.language-sql .hljs-string {
  color: #1c5ece;
  font-style: italic; }

.language-java .hljs-keyword,
.language-java .hljs-literal {
  color: #7f007f;
  font-weight: bold; }
.language-java .hljs-type {
  color: #ad6e2d;
  font-weight: bold; }
.language-java .hljs-string {
  color: #1c5ece; }
.language-java .hljs-comment {
  color: #20ab50; }

.language-json .hljs-attr {
  color: #3f7f7f; }
.language-json .hljs-string {
  color: #6a5acd; }
.language-json .hljs-number {
  color: #7f007f; }

#body-inner {
  font-size: 1.4rem; }

.center, p.tablecenter {
  text-align: center; }

.green {
  color: #20ab50; }

.dgreen {
  font-weight: bold;
  color: #61b006; }

.bluegreen {
  color: #3f7f7f; }

.gray {
  color: #777777; }

.purple {
  color: #7f007f; }

.purpleB {
  font-weight: bold;
  color: #7f007f; }

.SlateBlue {
  color: #6a5acd; }

.red {
  color: #ff0000; }

.dred {
  font-weight: bold;
  color: #c31111; }

.Linen {
  color: #e6b37f; }

.brown {
  font-weight: bold;
  color: #ad6e2d; }

.dblue {
  color: #1c5ece; }

.jsonelement, .xmlelement {
  color: #3f7f7f; }

.xmlattribute {
  color: #7f007f; }

a {
  color: #436ca4; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4 {
  font-weight: normal;
  color: #333;
  margin: 2rem 0; }

h1 {
  font-size: 3rem; }

h2 {
  margin: 4rem 0 2rem 0;
  font-size: 2.2rem; }

h3, h4, h5 {
  margin: 3rem 0 2rem 0;
  font-size: 2rem;
  font-weight: bold; }

h4 {
  font-size: 1.8rem; }

h5 {
  font-size: 1.6rem; }

h6 {
  margin: 1.5rem 0 1rem 0;
  font-size: 1.4rem;
  font-weight: bold; }

h7 {
  font-weight: bold; }

div.subtitle p {
  font-weight: normal;
  color: #333;
  margin: 2rem 0;
  font-size: 2rem; }

hr {
  border: none;
  background: #ccc;
  height: 0.2rem; }

p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 1rem 0; }

ul,
ol {
  padding: 0 0 0 2rem; }
  ul li,
  ol li {
    margin: 1rem 0 2rem 0; }
    ul li li,
    ol li li {
      margin: 1rem 0; }
    ul li p,
    ol li p {
      margin: 0 0 5px 0; }
      ul li p:last-of-type,
      ol li p:last-of-type {
        margin: 0; }
  ul.compact li,
  ol.compact li {
    margin: 0.5rem 0; }

kbd {
  font-weight: bold; }

code {
  padding: 0 0.4rem;
  display: inline-block;
  border-radius: 0.2rem;
  background: #f4f4f4;
  font-size: 1.5rem;
  line-height: 1.4;
  position: relative;
  word-break: break-all; }
  code.email {
    background: #e7f0fd;
    border: 0.1rem solid #cadcf5; }

.funcsynopsis {
  display: inline-block;
  padding: 0 2rem;
  border-radius: 0.2rem;
  background: #f4f4f4;
  line-height: 1.4;
  margin: 0 0 1rem 0; }

table.simplelist td p {
  margin: 0;
  line-height: normal; }

table.attributes {
  border-collapse: collapse;
  border-color: transparent;
  background: #fbfbfb;
  border: none;
  line-height: 1.6;
  border-radius: 0.2rem; }
  table.attributes .content {
    padding: initial; }
  table.attributes td .paragraph, table.attributes td p.tableblock {
    padding: 1rem 1.5rem; }
  table.attributes td, table.attributes th {
    vertical-align: top;
    word-break: normal;
    font-size: 1.4rem;
    border: 1px solid #dadada;
    padding: 0; }
    table.attributes td .literalblock, table.attributes th .literalblock {
      padding-left: 1.5rem; }
    table.attributes td .subhead, table.attributes th .subhead {
      padding: 0.5rem 1.5rem; }
    table.attributes td .imageblock, table.attributes th .imageblock {
      margin: 0;
      background: transparent; }
    table.attributes td p, table.attributes th p {
      line-height: 1.6;
      margin: 0 0 1rem 0; }
      table.attributes td p:last-of-type, table.attributes th p:last-of-type {
        margin: 0; }
  table.attributes td.subhead, table.attributes td div.subhead {
    padding: 0.5rem 1.5rem;
    border-bottom: 0.1rem solid #777;
    background: #eee; }
  table.attributes thead {
    background: #436ca4; }
    table.attributes thead th {
      color: #fff;
      border: none;
      border-right: 0.1rem solid #749ace;
      border-bottom: 0.1rem solid #749ace;
      padding: 0.5rem 1.5rem;
      font-size: 1.1rem;
      text-transform: uppercase;
      text-align: left; }
      table.attributes thead th a {
        color: #fff; }
      table.attributes thead th sup {
        display: inline-block;
        margin-left: 0.5rem;
        font-weight: normal; }
      table.attributes thead th:first-of-type {
        border-radius: 0.3rem 0 0 0; }
      table.attributes thead th:last-of-type {
        border-radius: 0 0.3rem 0 0;
        border-right: none; }
  table.attributes .footnotes {
    border-top: 1px solid #cacaca;
    background: #f1f1f1; }
    table.attributes .footnotes p {
      font-size: 1.3rem; }
      table.attributes .footnotes p code {
        background: #fff;
        border: 0.1rem solid #e6e6e6; }
    table.attributes .footnotes .footnote:first-child:before {
      content: "Legend:";
      font-weight: bold;
      margin-bottom: 0.5rem;
      display: block; }
  table.attributes fthfoot {
    border: 1px solid transparent; }
    table.attributes fthfoot fthtd {
      border: 1px solid transparent; }
  table.attributes tbody th {
    background: #436ca4;
    color: #fff;
    border: none;
    border-right: 0.1rem solid #749ace;
    border-bottom: 0.1rem solid #749ace;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: left; }
    table.attributes tbody th p {
      font-size: 1.1rem; }
      table.attributes tbody th p .tableblock {
        padding: 0 !important; }
  table.attributes tbody p {
    margin: 0; }

table.ctltemplates:not(.simplelist),
table.invisible:not(.simplelist),
table.informaltable:not(.simplelist),
table.comparison:not(.simplelist),
table.tableblock:not(.simplelist) {
  border-collapse: collapse;
  border-color: transparent;
  background: #fbfbfb;
  border: none;
  line-height: 1.6;
  border-radius: 0.2rem; }
  table.ctltemplates:not(.simplelist) .content,
  table.invisible:not(.simplelist) .content,
  table.informaltable:not(.simplelist) .content,
  table.comparison:not(.simplelist) .content,
  table.tableblock:not(.simplelist) .content {
    padding: initial; }
  table.ctltemplates:not(.simplelist) td .paragraph, table.ctltemplates:not(.simplelist) td p.tableblock,
  table.invisible:not(.simplelist) td .paragraph,
  table.invisible:not(.simplelist) td p.tableblock,
  table.informaltable:not(.simplelist) td .paragraph,
  table.informaltable:not(.simplelist) td p.tableblock,
  table.comparison:not(.simplelist) td .paragraph,
  table.comparison:not(.simplelist) td p.tableblock,
  table.tableblock:not(.simplelist) td .paragraph,
  table.tableblock:not(.simplelist) td p.tableblock {
    padding: 1rem 1.5rem; }
  table.ctltemplates:not(.simplelist) td, table.ctltemplates:not(.simplelist) th,
  table.invisible:not(.simplelist) td,
  table.invisible:not(.simplelist) th,
  table.informaltable:not(.simplelist) td,
  table.informaltable:not(.simplelist) th,
  table.comparison:not(.simplelist) td,
  table.comparison:not(.simplelist) th,
  table.tableblock:not(.simplelist) td,
  table.tableblock:not(.simplelist) th {
    vertical-align: top;
    word-break: normal;
    font-size: 1.4rem;
    border: 1px solid #dadada;
    padding: 0; }
    table.ctltemplates:not(.simplelist) td .literalblock, table.ctltemplates:not(.simplelist) th .literalblock,
    table.invisible:not(.simplelist) td .literalblock,
    table.invisible:not(.simplelist) th .literalblock,
    table.informaltable:not(.simplelist) td .literalblock,
    table.informaltable:not(.simplelist) th .literalblock,
    table.comparison:not(.simplelist) td .literalblock,
    table.comparison:not(.simplelist) th .literalblock,
    table.tableblock:not(.simplelist) td .literalblock,
    table.tableblock:not(.simplelist) th .literalblock {
      padding-left: 1.5rem; }
    table.ctltemplates:not(.simplelist) td .subhead, table.ctltemplates:not(.simplelist) th .subhead,
    table.invisible:not(.simplelist) td .subhead,
    table.invisible:not(.simplelist) th .subhead,
    table.informaltable:not(.simplelist) td .subhead,
    table.informaltable:not(.simplelist) th .subhead,
    table.comparison:not(.simplelist) td .subhead,
    table.comparison:not(.simplelist) th .subhead,
    table.tableblock:not(.simplelist) td .subhead,
    table.tableblock:not(.simplelist) th .subhead {
      padding: 0.5rem 1.5rem; }
    table.ctltemplates:not(.simplelist) td .imageblock, table.ctltemplates:not(.simplelist) th .imageblock,
    table.invisible:not(.simplelist) td .imageblock,
    table.invisible:not(.simplelist) th .imageblock,
    table.informaltable:not(.simplelist) td .imageblock,
    table.informaltable:not(.simplelist) th .imageblock,
    table.comparison:not(.simplelist) td .imageblock,
    table.comparison:not(.simplelist) th .imageblock,
    table.tableblock:not(.simplelist) td .imageblock,
    table.tableblock:not(.simplelist) th .imageblock {
      margin: 0;
      background: transparent; }
    table.ctltemplates:not(.simplelist) td p, table.ctltemplates:not(.simplelist) th p,
    table.invisible:not(.simplelist) td p,
    table.invisible:not(.simplelist) th p,
    table.informaltable:not(.simplelist) td p,
    table.informaltable:not(.simplelist) th p,
    table.comparison:not(.simplelist) td p,
    table.comparison:not(.simplelist) th p,
    table.tableblock:not(.simplelist) td p,
    table.tableblock:not(.simplelist) th p {
      line-height: 1.6;
      margin: 0 0 1rem 0; }
      table.ctltemplates:not(.simplelist) td p:last-of-type, table.ctltemplates:not(.simplelist) th p:last-of-type,
      table.invisible:not(.simplelist) td p:last-of-type,
      table.invisible:not(.simplelist) th p:last-of-type,
      table.informaltable:not(.simplelist) td p:last-of-type,
      table.informaltable:not(.simplelist) th p:last-of-type,
      table.comparison:not(.simplelist) td p:last-of-type,
      table.comparison:not(.simplelist) th p:last-of-type,
      table.tableblock:not(.simplelist) td p:last-of-type,
      table.tableblock:not(.simplelist) th p:last-of-type {
        margin: 0; }
  table.ctltemplates:not(.simplelist) td.subhead, table.ctltemplates:not(.simplelist) td div.subhead,
  table.invisible:not(.simplelist) td.subhead,
  table.invisible:not(.simplelist) td div.subhead,
  table.informaltable:not(.simplelist) td.subhead,
  table.informaltable:not(.simplelist) td div.subhead,
  table.comparison:not(.simplelist) td.subhead,
  table.comparison:not(.simplelist) td div.subhead,
  table.tableblock:not(.simplelist) td.subhead,
  table.tableblock:not(.simplelist) td div.subhead {
    padding: 0.5rem 1.5rem;
    border-bottom: 0.1rem solid #777;
    background: #eee; }
  table.ctltemplates:not(.simplelist) thead,
  table.invisible:not(.simplelist) thead,
  table.informaltable:not(.simplelist) thead,
  table.comparison:not(.simplelist) thead,
  table.tableblock:not(.simplelist) thead {
    background: #436ca4; }
    table.ctltemplates:not(.simplelist) thead th,
    table.invisible:not(.simplelist) thead th,
    table.informaltable:not(.simplelist) thead th,
    table.comparison:not(.simplelist) thead th,
    table.tableblock:not(.simplelist) thead th {
      color: #fff;
      border: none;
      border-right: 0.1rem solid #749ace;
      border-bottom: 0.1rem solid #749ace;
      padding: 0.5rem 1.5rem;
      font-size: 1.1rem;
      text-transform: uppercase;
      text-align: left; }
      table.ctltemplates:not(.simplelist) thead th a,
      table.invisible:not(.simplelist) thead th a,
      table.informaltable:not(.simplelist) thead th a,
      table.comparison:not(.simplelist) thead th a,
      table.tableblock:not(.simplelist) thead th a {
        color: #fff; }
      table.ctltemplates:not(.simplelist) thead th sup,
      table.invisible:not(.simplelist) thead th sup,
      table.informaltable:not(.simplelist) thead th sup,
      table.comparison:not(.simplelist) thead th sup,
      table.tableblock:not(.simplelist) thead th sup {
        display: inline-block;
        margin-left: 0.5rem;
        font-weight: normal; }
      table.ctltemplates:not(.simplelist) thead th:first-of-type,
      table.invisible:not(.simplelist) thead th:first-of-type,
      table.informaltable:not(.simplelist) thead th:first-of-type,
      table.comparison:not(.simplelist) thead th:first-of-type,
      table.tableblock:not(.simplelist) thead th:first-of-type {
        border-radius: 0.3rem 0 0 0; }
      table.ctltemplates:not(.simplelist) thead th:last-of-type,
      table.invisible:not(.simplelist) thead th:last-of-type,
      table.informaltable:not(.simplelist) thead th:last-of-type,
      table.comparison:not(.simplelist) thead th:last-of-type,
      table.tableblock:not(.simplelist) thead th:last-of-type {
        border-radius: 0 0.3rem 0 0;
        border-right: none; }
  table.ctltemplates:not(.simplelist) .footnotes,
  table.invisible:not(.simplelist) .footnotes,
  table.informaltable:not(.simplelist) .footnotes,
  table.comparison:not(.simplelist) .footnotes,
  table.tableblock:not(.simplelist) .footnotes {
    border-top: 1px solid #cacaca;
    background: #f1f1f1; }
    table.ctltemplates:not(.simplelist) .footnotes p,
    table.invisible:not(.simplelist) .footnotes p,
    table.informaltable:not(.simplelist) .footnotes p,
    table.comparison:not(.simplelist) .footnotes p,
    table.tableblock:not(.simplelist) .footnotes p {
      font-size: 1.3rem; }
      table.ctltemplates:not(.simplelist) .footnotes p code,
      table.invisible:not(.simplelist) .footnotes p code,
      table.informaltable:not(.simplelist) .footnotes p code,
      table.comparison:not(.simplelist) .footnotes p code,
      table.tableblock:not(.simplelist) .footnotes p code {
        background: #fff;
        border: 0.1rem solid #e6e6e6; }
    table.ctltemplates:not(.simplelist) .footnotes .footnote:first-child:before,
    table.invisible:not(.simplelist) .footnotes .footnote:first-child:before,
    table.informaltable:not(.simplelist) .footnotes .footnote:first-child:before,
    table.comparison:not(.simplelist) .footnotes .footnote:first-child:before,
    table.tableblock:not(.simplelist) .footnotes .footnote:first-child:before {
      content: "Legend:";
      font-weight: bold;
      margin-bottom: 0.5rem;
      display: block; }
  table.ctltemplates:not(.simplelist) fthfoot,
  table.invisible:not(.simplelist) fthfoot,
  table.informaltable:not(.simplelist) fthfoot,
  table.comparison:not(.simplelist) fthfoot,
  table.tableblock:not(.simplelist) fthfoot {
    border: 1px solid transparent; }
    table.ctltemplates:not(.simplelist) fthfoot fthtd,
    table.invisible:not(.simplelist) fthfoot fthtd,
    table.informaltable:not(.simplelist) fthfoot fthtd,
    table.comparison:not(.simplelist) fthfoot fthtd,
    table.tableblock:not(.simplelist) fthfoot fthtd {
      border: 1px solid transparent; }

.attributes,
.informaltable,
.comparison,
.comparison-contents,
.ports,
.ctltemplates-contents,
.table-contents,
.invisible {
  margin-top: 3rem; }
  .attributes table,
  .informaltable table,
  .comparison table,
  .comparison-contents table,
  .ports table,
  .ctltemplates-contents table,
  .table-contents table,
  .invisible table {
    border-collapse: collapse;
    border-color: transparent;
    background: #fbfbfb;
    border: none;
    line-height: 1.6;
    border-radius: 0.2rem; }
    .attributes table .content,
    .informaltable table .content,
    .comparison table .content,
    .comparison-contents table .content,
    .ports table .content,
    .ctltemplates-contents table .content,
    .table-contents table .content,
    .invisible table .content {
      padding: initial; }
    .attributes table td .paragraph, .attributes table td p.tableblock,
    .informaltable table td .paragraph,
    .informaltable table td p.tableblock,
    .comparison table td .paragraph,
    .comparison table td p.tableblock,
    .comparison-contents table td .paragraph,
    .comparison-contents table td p.tableblock,
    .ports table td .paragraph,
    .ports table td p.tableblock,
    .ctltemplates-contents table td .paragraph,
    .ctltemplates-contents table td p.tableblock,
    .table-contents table td .paragraph,
    .table-contents table td p.tableblock,
    .invisible table td .paragraph,
    .invisible table td p.tableblock {
      padding: 1rem 1.5rem; }
    .attributes table td, .attributes table th,
    .informaltable table td,
    .informaltable table th,
    .comparison table td,
    .comparison table th,
    .comparison-contents table td,
    .comparison-contents table th,
    .ports table td,
    .ports table th,
    .ctltemplates-contents table td,
    .ctltemplates-contents table th,
    .table-contents table td,
    .table-contents table th,
    .invisible table td,
    .invisible table th {
      vertical-align: top;
      word-break: normal;
      font-size: 1.4rem;
      border: 1px solid #dadada;
      padding: 0; }
      .attributes table td .literalblock, .attributes table th .literalblock,
      .informaltable table td .literalblock,
      .informaltable table th .literalblock,
      .comparison table td .literalblock,
      .comparison table th .literalblock,
      .comparison-contents table td .literalblock,
      .comparison-contents table th .literalblock,
      .ports table td .literalblock,
      .ports table th .literalblock,
      .ctltemplates-contents table td .literalblock,
      .ctltemplates-contents table th .literalblock,
      .table-contents table td .literalblock,
      .table-contents table th .literalblock,
      .invisible table td .literalblock,
      .invisible table th .literalblock {
        padding-left: 1.5rem; }
      .attributes table td .subhead, .attributes table th .subhead,
      .informaltable table td .subhead,
      .informaltable table th .subhead,
      .comparison table td .subhead,
      .comparison table th .subhead,
      .comparison-contents table td .subhead,
      .comparison-contents table th .subhead,
      .ports table td .subhead,
      .ports table th .subhead,
      .ctltemplates-contents table td .subhead,
      .ctltemplates-contents table th .subhead,
      .table-contents table td .subhead,
      .table-contents table th .subhead,
      .invisible table td .subhead,
      .invisible table th .subhead {
        padding: 0.5rem 1.5rem; }
      .attributes table td .imageblock, .attributes table th .imageblock,
      .informaltable table td .imageblock,
      .informaltable table th .imageblock,
      .comparison table td .imageblock,
      .comparison table th .imageblock,
      .comparison-contents table td .imageblock,
      .comparison-contents table th .imageblock,
      .ports table td .imageblock,
      .ports table th .imageblock,
      .ctltemplates-contents table td .imageblock,
      .ctltemplates-contents table th .imageblock,
      .table-contents table td .imageblock,
      .table-contents table th .imageblock,
      .invisible table td .imageblock,
      .invisible table th .imageblock {
        margin: 0;
        background: transparent; }
      .attributes table td p, .attributes table th p,
      .informaltable table td p,
      .informaltable table th p,
      .comparison table td p,
      .comparison table th p,
      .comparison-contents table td p,
      .comparison-contents table th p,
      .ports table td p,
      .ports table th p,
      .ctltemplates-contents table td p,
      .ctltemplates-contents table th p,
      .table-contents table td p,
      .table-contents table th p,
      .invisible table td p,
      .invisible table th p {
        line-height: 1.6;
        margin: 0 0 1rem 0; }
        .attributes table td p:last-of-type, .attributes table th p:last-of-type,
        .informaltable table td p:last-of-type,
        .informaltable table th p:last-of-type,
        .comparison table td p:last-of-type,
        .comparison table th p:last-of-type,
        .comparison-contents table td p:last-of-type,
        .comparison-contents table th p:last-of-type,
        .ports table td p:last-of-type,
        .ports table th p:last-of-type,
        .ctltemplates-contents table td p:last-of-type,
        .ctltemplates-contents table th p:last-of-type,
        .table-contents table td p:last-of-type,
        .table-contents table th p:last-of-type,
        .invisible table td p:last-of-type,
        .invisible table th p:last-of-type {
          margin: 0; }
    .attributes table td.subhead, .attributes table td div.subhead,
    .informaltable table td.subhead,
    .informaltable table td div.subhead,
    .comparison table td.subhead,
    .comparison table td div.subhead,
    .comparison-contents table td.subhead,
    .comparison-contents table td div.subhead,
    .ports table td.subhead,
    .ports table td div.subhead,
    .ctltemplates-contents table td.subhead,
    .ctltemplates-contents table td div.subhead,
    .table-contents table td.subhead,
    .table-contents table td div.subhead,
    .invisible table td.subhead,
    .invisible table td div.subhead {
      padding: 0.5rem 1.5rem;
      border-bottom: 0.1rem solid #777;
      background: #eee; }
    .attributes table thead,
    .informaltable table thead,
    .comparison table thead,
    .comparison-contents table thead,
    .ports table thead,
    .ctltemplates-contents table thead,
    .table-contents table thead,
    .invisible table thead {
      background: #436ca4; }
      .attributes table thead th,
      .informaltable table thead th,
      .comparison table thead th,
      .comparison-contents table thead th,
      .ports table thead th,
      .ctltemplates-contents table thead th,
      .table-contents table thead th,
      .invisible table thead th {
        color: #fff;
        border: none;
        border-right: 0.1rem solid #749ace;
        border-bottom: 0.1rem solid #749ace;
        padding: 0.5rem 1.5rem;
        font-size: 1.1rem;
        text-transform: uppercase;
        text-align: left; }
        .attributes table thead th a,
        .informaltable table thead th a,
        .comparison table thead th a,
        .comparison-contents table thead th a,
        .ports table thead th a,
        .ctltemplates-contents table thead th a,
        .table-contents table thead th a,
        .invisible table thead th a {
          color: #fff; }
        .attributes table thead th sup,
        .informaltable table thead th sup,
        .comparison table thead th sup,
        .comparison-contents table thead th sup,
        .ports table thead th sup,
        .ctltemplates-contents table thead th sup,
        .table-contents table thead th sup,
        .invisible table thead th sup {
          display: inline-block;
          margin-left: 0.5rem;
          font-weight: normal; }
        .attributes table thead th:first-of-type,
        .informaltable table thead th:first-of-type,
        .comparison table thead th:first-of-type,
        .comparison-contents table thead th:first-of-type,
        .ports table thead th:first-of-type,
        .ctltemplates-contents table thead th:first-of-type,
        .table-contents table thead th:first-of-type,
        .invisible table thead th:first-of-type {
          border-radius: 0.3rem 0 0 0; }
        .attributes table thead th:last-of-type,
        .informaltable table thead th:last-of-type,
        .comparison table thead th:last-of-type,
        .comparison-contents table thead th:last-of-type,
        .ports table thead th:last-of-type,
        .ctltemplates-contents table thead th:last-of-type,
        .table-contents table thead th:last-of-type,
        .invisible table thead th:last-of-type {
          border-radius: 0 0.3rem 0 0;
          border-right: none; }
    .attributes table .footnotes,
    .informaltable table .footnotes,
    .comparison table .footnotes,
    .comparison-contents table .footnotes,
    .ports table .footnotes,
    .ctltemplates-contents table .footnotes,
    .table-contents table .footnotes,
    .invisible table .footnotes {
      border-top: 1px solid #cacaca;
      background: #f1f1f1; }
      .attributes table .footnotes p,
      .informaltable table .footnotes p,
      .comparison table .footnotes p,
      .comparison-contents table .footnotes p,
      .ports table .footnotes p,
      .ctltemplates-contents table .footnotes p,
      .table-contents table .footnotes p,
      .invisible table .footnotes p {
        font-size: 1.3rem; }
        .attributes table .footnotes p code,
        .informaltable table .footnotes p code,
        .comparison table .footnotes p code,
        .comparison-contents table .footnotes p code,
        .ports table .footnotes p code,
        .ctltemplates-contents table .footnotes p code,
        .table-contents table .footnotes p code,
        .invisible table .footnotes p code {
          background: #fff;
          border: 0.1rem solid #e6e6e6; }
      .attributes table .footnotes .footnote:first-child:before,
      .informaltable table .footnotes .footnote:first-child:before,
      .comparison table .footnotes .footnote:first-child:before,
      .comparison-contents table .footnotes .footnote:first-child:before,
      .ports table .footnotes .footnote:first-child:before,
      .ctltemplates-contents table .footnotes .footnote:first-child:before,
      .table-contents table .footnotes .footnote:first-child:before,
      .invisible table .footnotes .footnote:first-child:before {
        content: "Legend:";
        font-weight: bold;
        margin-bottom: 0.5rem;
        display: block; }
    .attributes table fthfoot,
    .informaltable table fthfoot,
    .comparison table fthfoot,
    .comparison-contents table fthfoot,
    .ports table fthfoot,
    .ctltemplates-contents table fthfoot,
    .table-contents table fthfoot,
    .invisible table fthfoot {
      border: 1px solid transparent; }
      .attributes table fthfoot fthtd,
      .informaltable table fthfoot fthtd,
      .comparison table fthfoot fthtd,
      .comparison-contents table fthfoot fthtd,
      .ports table fthfoot fthtd,
      .ctltemplates-contents table fthfoot fthtd,
      .table-contents table fthfoot fthtd,
      .invisible table fthfoot fthtd {
        border: 1px solid transparent; }

.ports table {
  border-collapse: collapse;
  border-color: transparent;
  background: #fbfbfb;
  border: none;
  line-height: 1.6;
  border-radius: 0.2rem;
  background: none; }
  .ports table .content {
    padding: initial; }
  .ports table td .paragraph, .ports table td p.tableblock {
    padding: 1rem 1.5rem; }
  .ports table td, .ports table th {
    vertical-align: top;
    word-break: normal;
    font-size: 1.4rem;
    border: 1px solid #dadada;
    padding: 0; }
    .ports table td .literalblock, .ports table th .literalblock {
      padding-left: 1.5rem; }
    .ports table td .subhead, .ports table th .subhead {
      padding: 0.5rem 1.5rem; }
    .ports table td .imageblock, .ports table th .imageblock {
      margin: 0;
      background: transparent; }
    .ports table td p, .ports table th p {
      line-height: 1.6;
      margin: 0 0 1rem 0; }
      .ports table td p:last-of-type, .ports table th p:last-of-type {
        margin: 0; }
  .ports table td.subhead, .ports table td div.subhead {
    padding: 0.5rem 1.5rem;
    border-bottom: 0.1rem solid #777;
    background: #eee; }
  .ports table thead {
    background: #436ca4; }
    .ports table thead th {
      color: #fff;
      border: none;
      border-right: 0.1rem solid #749ace;
      border-bottom: 0.1rem solid #749ace;
      padding: 0.5rem 1.5rem;
      font-size: 1.1rem;
      text-transform: uppercase;
      text-align: left; }
      .ports table thead th a {
        color: #fff; }
      .ports table thead th sup {
        display: inline-block;
        margin-left: 0.5rem;
        font-weight: normal; }
      .ports table thead th:first-of-type {
        border-radius: 0.3rem 0 0 0; }
      .ports table thead th:last-of-type {
        border-radius: 0 0.3rem 0 0;
        border-right: none; }
  .ports table .footnotes {
    border-top: 1px solid #cacaca;
    background: #f1f1f1; }
    .ports table .footnotes p {
      font-size: 1.3rem; }
      .ports table .footnotes p code {
        background: #fff;
        border: 0.1rem solid #e6e6e6; }
    .ports table .footnotes .footnote:first-child:before {
      content: "Legend:";
      font-weight: bold;
      margin-bottom: 0.5rem;
      display: block; }
  .ports table fthfoot {
    border: 1px solid transparent; }
    .ports table fthfoot fthtd {
      border: 1px solid transparent; }
  .ports table thead {
    background: #fff; }
    .ports table thead th {
      color: #436ca4;
      border: 0.1rem solid #749ace; }
      .ports table thead th:last-of-type {
        border-right: 0.1rem solid #749ace; }

table.ports {
  border-collapse: collapse;
  border-color: transparent;
  background: #fbfbfb;
  border: none;
  line-height: 1.6;
  border-radius: 0.2rem;
  background: none; }
  table.ports .content {
    padding: initial; }
  table.ports td .paragraph, table.ports td p.tableblock {
    padding: 1rem 1.5rem; }
  table.ports td, table.ports th {
    vertical-align: top;
    word-break: normal;
    font-size: 1.4rem;
    border: 1px solid #dadada;
    padding: 0; }
    table.ports td .literalblock, table.ports th .literalblock {
      padding-left: 1.5rem; }
    table.ports td .subhead, table.ports th .subhead {
      padding: 0.5rem 1.5rem; }
    table.ports td .imageblock, table.ports th .imageblock {
      margin: 0;
      background: transparent; }
    table.ports td p, table.ports th p {
      line-height: 1.6;
      margin: 0 0 1rem 0; }
      table.ports td p:last-of-type, table.ports th p:last-of-type {
        margin: 0; }
  table.ports td.subhead, table.ports td div.subhead {
    padding: 0.5rem 1.5rem;
    border-bottom: 0.1rem solid #777;
    background: #eee; }
  table.ports thead {
    background: #436ca4; }
    table.ports thead th {
      color: #fff;
      border: none;
      border-right: 0.1rem solid #749ace;
      border-bottom: 0.1rem solid #749ace;
      padding: 0.5rem 1.5rem;
      font-size: 1.1rem;
      text-transform: uppercase;
      text-align: left; }
      table.ports thead th a {
        color: #fff; }
      table.ports thead th sup {
        display: inline-block;
        margin-left: 0.5rem;
        font-weight: normal; }
      table.ports thead th:first-of-type {
        border-radius: 0.3rem 0 0 0; }
      table.ports thead th:last-of-type {
        border-radius: 0 0.3rem 0 0;
        border-right: none; }
  table.ports .footnotes {
    border-top: 1px solid #cacaca;
    background: #f1f1f1; }
    table.ports .footnotes p {
      font-size: 1.3rem; }
      table.ports .footnotes p code {
        background: #fff;
        border: 0.1rem solid #e6e6e6; }
    table.ports .footnotes .footnote:first-child:before {
      content: "Legend:";
      font-weight: bold;
      margin-bottom: 0.5rem;
      display: block; }
  table.ports fthfoot {
    border: 1px solid transparent; }
    table.ports fthfoot fthtd {
      border: 1px solid transparent; }
  table.ports thead {
    background: #fff; }
    table.ports thead th {
      color: #436ca4;
      border: 0.1rem solid #749ace; }
      table.ports thead th:last-of-type {
        border-right: 0.1rem solid #749ace; }

.invisible {
  margin-top: 1rem; }
  .invisible table td, .invisible table th {
    padding: 0.5rem 1.5rem; }

th.halign-left, td.halign-left {
  text-align: left !important; }

th.halign-right, td.halign-right {
  text-align: right !important; }

th.halign-center, td.halign-center {
  text-align: center !important; }

.example, .exampleblock {
  background: #f6f6f6;
  padding: 1rem 2rem;
  margin: 2rem 0;
  border-left: 2px dashed #ccc; }
  .example p.title, .example div.title, .exampleblock p.title, .exampleblock div.title {
    margin-top: 0.5rem;
    font-weight: bold; }
  .example ul li, .exampleblock ul li {
    margin: 1rem 0; }
    .example ul li:last-of-type, .exampleblock ul li:last-of-type {
      margin-bottom: 0; }
  .example .listingblock pre, .exampleblock .listingblock pre {
    border-top: 1px solid #dfeef3;
    border-right: 1px solid #dfeef3;
    border-bottom: 1px solid #dfeef3; }
  .example .content, .exampleblock .content {
    padding: initial;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem; }

.imageblock {
  display: inline-block;
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  background: #f0f0f0;
  border-radius: 0.2rem; }
  .imageblock .content {
    padding: initial;
    margin: 0 0 1rem 0; }
  .imageblock table {
    width: 100%; }
  .imageblock img {
    max-width: 100%; }
  .imageblock .title {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #777; }
    .imageblock .title b {
      font-weight: normal; }
  .imageblock.informalfigure, .imageblock.informalfigure-left {
    background: none; }

.informalfigure {
  display: flex;
  justify-content: center; }

.informalfigure-left {
  float: left; }

.note,
.important, .tip, .warning, .caution {
  background: #f0f0f0;
  border-radius: 0.2rem;
  padding: 2rem 2rem 1rem 2rem;
  margin: 2rem 0 4rem 0; }
  .note td div.title,
  .important td div.title, .tip td div.title, .warning td div.title, .caution td div.title {
    font-weight: bold; }
  .note td p,
  .important td p, .tip td p, .warning td p, .caution td p {
    margin: 0 0 1rem 0; }
  .note .listingblock pre code,
  .important .listingblock pre code, .tip .listingblock pre code, .warning .listingblock pre code, .caution .listingblock pre code {
    background: transparent;
    border: none; }
  .note code,
  .important code, .tip code, .warning code, .caution code {
    background: #fcfcfc;
    border: 0.1rem solid #e6e6e6; }
  .note ul li,
  .important ul li, .tip ul li, .warning ul li, .caution ul li {
    margin: 1rem 0; }
    .note ul li:last-of-type,
    .important ul li:last-of-type, .tip ul li:last-of-type, .warning ul li:last-of-type, .caution ul li:last-of-type {
      margin-bottom: 0; }
  .note img,
  .important img, .tip img, .warning img, .caution img {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    vertical-align: sub; }

.caution {
  background: #fffcb8; }
  .caution tr:first-of-type td.content > .title {
    color: #8a8500; }

.important {
  background: #fef2dd; }
  .important tr:first-of-type td.content > .title {
    color: #d48808; }

.warning {
  background: #ffeeed; }
  .warning tr:first-of-type td.content > .title {
    color: #fa483a; }

.tip {
  background: #e5f8ec; }
  .tip tr:first-of-type td.content > .title {
    color: #1b5d32; }

.simplesect {
  border-bottom: 0.2rem solid #eee;
  padding: 0 0 2rem 0; }

.listingblock .content {
  padding: initial; }

pre {
  font-size: 1.5rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  overflow: auto; }
  .listingblock pre {
    background-color: #ecfaff;
    border-left: 0.3rem solid #cde2e8;
    padding: 1rem 1.5rem;
    font-size: inherit; }
  .listingblock.screen pre {
    background: none;
    border: none; }

.literalblock {
  background: #F7F7F7;
  border-left: 0.3rem solid #e6e6e6;
  padding: 1rem 1.5rem; }
  .literalblock .content {
    padding: 0 0 0 3rem; }

dl.toc {
  max-width: 60rem; }
  dl.toc a {
    display: block;
    padding: 10px 10px 10px 0;
    text-decoration: none; }
    dl.toc a:hover {
      text-decoration: underline; }
  dl.toc dd {
    margin: 0 0 0 2.5rem; }
  dl.toc dl {
    margin: 0; }
  dl.toc > dt a {
    border-bottom: 0.2rem solid #eee;
    padding-left: 0;
    font-weight: bold;
    font-size: 1.5rem; }

.replaceable {
  font-style: italic; }

@media screen and (max-width: 768px) {
  .content .imageblock img {
    width: 100%; } }
.content .note .content,
.content .important .content, .content .tip .content, .content .warning .content, .content .caution .content {
  padding: initial; }
.content .note > table > tbody > tr:first-of-type > td:first-of-type,
.content .important > table > tbody > tr:first-of-type > td:first-of-type, .content .tip > table > tbody > tr:first-of-type > td:first-of-type, .content .warning > table > tbody > tr:first-of-type > td:first-of-type, .content .caution > table > tbody > tr:first-of-type > td:first-of-type {
  vertical-align: top; }
  .content .note > table > tbody > tr:first-of-type > td:first-of-type::before,
  .content .important > table > tbody > tr:first-of-type > td:first-of-type::before, .content .tip > table > tbody > tr:first-of-type > td:first-of-type::before, .content .warning > table > tbody > tr:first-of-type > td:first-of-type::before, .content .caution > table > tbody > tr:first-of-type > td:first-of-type::before {
    content: '';
    display: inline-block;
    position: relative;
    width: 2rem;
    height: 2rem;
    top: -0.3rem;
    margin: 0 2rem 0 0rem;
    color: #7f7f7f;
    font-size: 2.1rem;
    background: url(../images/icons/info-circle-solid.svg) no-repeat center;
    background-size: 2rem auto; }
  .content .note > table > tbody > tr:first-of-type > td:first-of-type img,
  .content .important > table > tbody > tr:first-of-type > td:first-of-type img, .content .tip > table > tbody > tr:first-of-type > td:first-of-type img, .content .warning > table > tbody > tr:first-of-type > td:first-of-type img, .content .caution > table > tbody > tr:first-of-type > td:first-of-type img {
    display: none; }
@media screen and (max-width: 768px) {
  .content .note,
  .content .important, .content .tip, .content .warning, .content .caution {
    position: relative;
    border-left: 0.3rem solid #7f7f7f; }
    .content .note > table > tbody > tr:first-of-type > td:first-of-type,
    .content .important > table > tbody > tr:first-of-type > td:first-of-type, .content .tip > table > tbody > tr:first-of-type > td:first-of-type, .content .warning > table > tbody > tr:first-of-type > td:first-of-type, .content .caution > table > tbody > tr:first-of-type > td:first-of-type {
      width: 0; }
      .content .note > table > tbody > tr:first-of-type > td:first-of-type::before,
      .content .important > table > tbody > tr:first-of-type > td:first-of-type::before, .content .tip > table > tbody > tr:first-of-type > td:first-of-type::before, .content .warning > table > tbody > tr:first-of-type > td:first-of-type::before, .content .caution > table > tbody > tr:first-of-type > td:first-of-type::before {
        position: absolute;
        top: 2.0rem;
        left: -1.3rem;
        width: 2.4rem;
        height: 2.4rem;
        background-color: #f0f0f0;
        border-radius: 50%;
        border: 0.3rem solid #f0f0f0; } }
.content .important > table > tbody > tr:first-of-type > td:first-of-type::before {
  background: url(../images/icons/exclamation-circle-solid.svg) no-repeat center;
  background-size: 2rem auto;
  color: #e39108; }
@media screen and (max-width: 768px) {
  .content .important {
    border-left: 0.3rem solid #e39108; }
    .content .important > table > tbody > tr:first-of-type > td:first-of-type::before {
      background-color: #fef2dd;
      border: 0.1rem solid #fef2dd; } }
.content .warning > table > tbody > tr:first-of-type > td:first-of-type::before {
  background: url(../images/icons/exclamation-triangle-solid.svg) no-repeat center;
  background-size: 2rem auto;
  color: #fa483a; }
@media screen and (max-width: 768px) {
  .content .warning {
    border-left: 0.3rem solid #c91305; }
    .content .warning > table > tbody > tr:first-of-type > td:first-of-type::before {
      background-color: #fdc5c0;
      border: 0.1rem solid #fdc5c0; } }
.content .caution > table > tbody > tr:first-of-type > td:first-of-type::before {
  background: url(../images/icons/exclamation-circle-solid.svg) no-repeat center;
  background-size: 2rem auto;
  color: #999400; }
@media screen and (max-width: 768px) {
  .content .caution {
    border-left: 0.3rem solid #999400; }
    .content .caution > table > tbody > tr:first-of-type > td:first-of-type::before {
      background-color: #fffb8a;
      border: 0.1rem solid #fffb8a; } }
.content .tip > table > tbody > tr:first-of-type > td:first-of-type::before {
  background: url(../images/icons/lightbulb-solid.svg) no-repeat center;
  background-size: auto 2rem;
  left: 0.2rem;
  color: #2a904e; }
@media screen and (max-width: 768px) {
  .content .tip {
    border-left: 0.3rem solid #1e6938; }
    .content .tip > table > tbody > tr:first-of-type > td:first-of-type::before {
      left: -1.2rem;
      background-color: #e5f8ec;
      border: 0.3rem solid #e5f8ec; } }
@media screen and (max-width: 768px) {
  .content .listingblock {
    padding: 2rem;
    margin: 0 -4rem;
    overflow: auto; } }
.content dl.toc dd a {
  position: relative; }
  .content dl.toc dd a:before {
    content: '';
    font-size: 0.6rem;
    position: absolute;
    width: 2.6rem;
    height: 2.6rem;
    left: -2.6rem;
    top: 0.5rem;
    opacity: 0.3;
    background: url(../images/icons/circle-solid.svg) no-repeat center;
    background-size: 0.5rem auto; }
.content dl.toc > dt {
  position: sticky;
  top: -1rem;
  margin: 2.5rem 0 0 0;
  background: #FFFFFF;
  z-index: 2; }
  @media screen and (max-width: 768px) {
    .content dl.toc > dt {
      top: 0; } }
  .content dl.toc > dt a {
    background: #fff;
    border-bottom: 0.2rem solid #eee;
    padding-left: 0;
    font-weight: bold;
    font-size: 1.5rem; }
.content dl.toc > dd > dl > dt a {
  font-weight: bold;
  position: relative; }
  .content dl.toc > dd > dl > dt a:before {
    content: '';
    font-size: 0.6rem;
    position: absolute;
    width: 2.6rem;
    height: 2.6rem;
    left: -2.6rem;
    top: 0.5rem;
    opacity: 0.3;
    background: url(../images/icons/circle-solid.svg) no-repeat center;
    background-size: 0.5rem auto; }

/**
 * Page 404 styles
 */
.page-404 {
  width: 100%;
  height: 100vh; }
  .page-404 .page-404-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem;
    margin-bottom: 4rem; }
    .page-404 .page-404-content h1 {
      margin-bottom: 2rem;
      font-weight: bold; }
    .page-404 .page-404-content p {
      text-align: center;
      max-width: 60rem;
      margin-bottom: 2rem;
      font-size: 2rem; }
    .page-404 .page-404-content .icon-404 {
      width: 12rem;
      height: auto;
      margin-bottom: 4rem; }
    .page-404 .page-404-content .searchbox {
      position: relative;
      width: 50rem;
      top: unset;
      left: unset;
      right: unset;
      margin: 0; }

.intro__image {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center; }
  .intro__image > a {
    width: 70%; }
    @media screen and (max-width: 768px) {
      .intro__image > a {
        width: 100%; } }
  .intro__image img {
    width: 100%;
    height: auto; }
.intro h1 {
  margin: 3rem 0 1.6rem 0;
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1; }
.intro__subtitle {
  color: #436CA4;
  font-size: 2.4rem;
  text-align: center;
  margin: 0;
  line-height: 1; }
.intro__product {
  margin: 3rem 0 4rem 0; }
  .intro__product h2 {
    margin-top: 0; }
  @media screen and (max-width: 768px) {
    .intro__product {
      margin: -1rem 0 5rem 0; }
      .intro__product--designer, .intro__product--server {
        padding-right: 0; } }
.intro__header-separator {
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ADADAD;
  margin: 5rem 0 2rem 0; }
  .intro__header-separator::after {
    content: "";
    flex: 1 1 auto;
    align-self: center;
    height: 0.2rem;
    margin-left: 1rem;
    border-radius: 0.1rem;
    background: #D6D6D6; }
  @media screen and (max-width: 768px) {
    .intro__header-separator {
      margin-top: 0rem; } }
.intro__links h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0; }
.intro__links ul li {
  margin: 1rem 0;
  color: #ADADAD; }
.intro__feedback {
  background: #F7F7F7;
  border-radius: 0.2rem;
  padding: 2rem 2rem 2rem 8rem;
  margin: 7rem 0 0 0;
  position: relative; }
  .intro__feedback h4 {
    color: #858585;
    font-size: 1.3rem;
    margin: 0 0 1rem 0; }
  .intro__feedback p {
    color: #5C5C5C;
    font-size: 1.3rem;
    margin: 0; }
  .intro__feedback:before {
    content: '';
    background: url(../images/icons/comments-regular.svg) no-repeat center;
    background-size: 3rem 3rem;
    width: 3rem;
    height: 3rem;
    font-family: "Font Awesome 5 Free";
    color: #ADADAD;
    position: absolute;
    top: 3.5rem;
    left: 2.7rem;
    font-size: 2.4rem;
    opacity: 0.3; }

.intro__grid-links {
  width: 100%;
  display: grid;
  grid-gap: 3.2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3.2rem; }
  @media screen and (max-width: 768px) {
    .intro__grid-links {
      grid-template-columns: repeat(1, 1fr); } }
.intro__grid-resources {
  width: 100%;
  display: grid;
  grid-gap: 3.2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3.2rem; }
  @media screen and (max-width: 768px) {
    .intro__grid-resources {
      grid-template-columns: repeat(2, 1fr); } }

.quick-link-card {
  display: block;
  background-color: #F0F8FF;
  padding: 2rem;
  text-decoration: none;
  transition: all .5s; }
  .quick-link-card:hover, .quick-link-card:focus {
    background-color: #E0F0FF;
    transform: translateY(-0.4rem);
    text-decoration: none; }
  .quick-link-card h2 {
    color: #436CA4;
    font-size: 1.8rem;
    margin: 0 0 0.8rem 0;
    line-height: 2.4rem;
    display: inline-flex;
    font-weight: bold; }
    .quick-link-card h2 .material-symbols-outlined {
      margin-right: 0.8rem; }
  .quick-link-card p {
    color: #5C5C5C;
    font-size: 1.4rem;
    margin: 0; }

.resource-card {
  display: block;
  text-decoration: none; }
  .resource-card:hover {
    text-decoration: underline; }
  .resource-card h2 {
    color: #436CA4;
    font-size: 1.6rem;
    margin: 0 0 0.4rem 0;
    font-weight: bold; }
    .resource-card h2 .material-symbols-outlined {
      margin-right: 1rem; }
  .resource-card p {
    color: #5C5C5C;
    font-size: 1.4rem;
    margin: 0; }

.tree {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .tree ul {
    display: none;
    padding: 0 0 0 2.1rem; }
  .tree li {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 3.0rem; }
    .tree li a {
      display: block;
      padding: 0 0 0 3.0rem;
      color: #333333;
      z-index: 1;
      text-decoration: none; }
      .tree li a span {
        position: relative;
        z-index: 2;
        display: inline-block; }
      .tree li a .tree__node_high {
        content: '';
        position: absolute;
        width: 100%;
        left: 0;
        height: 3.0rem;
        z-index: 0;
        box-sizing: border-box;
        transition: background 0.2s ease; }
      .tree li a:hover .tree__node_high {
        background: #e6e6e6; }
      .tree li a.active {
        color: #FFFFFF; }
        .tree li a.active .tree__node_high {
          background: #436ca4; }
  .tree .tree__node__toggler {
    position: absolute;
    width: 3.0rem;
    cursor: pointer;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3; }
    .tree .tree__node__toggler::before {
      display: inline-block;
      width: 3rem;
      height: 3rem;
      content: '';
      opacity: 0.7;
      transform: rotate(-90deg);
      background: url(../images/icons/caret-down-solid.svg) no-repeat center;
      background-size: 0.85rem auto; }
  .tree .tree__node--opened > ul, .tree .tree__node--has-active > ul {
    display: inline-block; }
  .tree .tree__node--opened > .tree__node__toggler:before, .tree .tree__node--parent > .tree__node__toggler:before, .tree .tree__node--has-active > .tree__node__toggler:before {
    transform: rotate(0deg);
    background: url(../images/icons/caret-down-solid.svg) no-repeat center;
    background-size: 0.85rem auto; }
  .tree .tree__node--closed > .tree__node__toggler::before {
    transform: rotate(-90deg);
    background: url(../images/icons/caret-down-solid.svg) no-repeat center;
    background-size: 0.85rem auto; }
  .tree .tree__node--end > .tree__node__toggler {
    cursor: default; }
    .tree .tree__node--end > .tree__node__toggler::before {
      opacity: 0.3;
      background: url(../images/icons/circle-solid.svg) no-repeat center;
      background-size: 0.5rem auto; }
  .tree .tree__node--has-active > .tree__node__toggler:before {
    opacity: 1;
    filter: invert(1); }
  .tree > li {
    background: #FFFFFF;
    margin-bottom: 1rem;
    border-radius: 0.2rem;
    position: relative;
    border: 0.2rem solid #FFFFFF;
    box-sizing: border-box;
    min-height: 3.4rem; }
    .tree > li > ul {
      display: none; }

.tree__node__label {
  position: absolute;
  background: #e6e6e6;
  color: #333;
  font-size: 1.3rem;
  z-index: 1000;
  height: 3rem;
  margin-top: 0px;
  overflow: hidden; }
  .tree__node__label span {
    top: 7px;
    position: absolute; }

@supports (-ms-ime-align: auto) {
  .tree__node__label span {
    top: 8px; } }
.version {
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 1.3rem;
  right: 2rem;
  width: 26rem;
  max-height: 95vh;
  z-index: 100;
  transition: all 0.3s ease; }
  .version__current {
    display: block;
    position: relative;
    height: 3.3rem;
    background: #fff;
    padding: 0 0 0 1.3rem;
    border-radius: 0.2rem;
    line-height: 3.3rem;
    transition: all 0.3s ease; }
    .version__current:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0rem;
      width: 3rem;
      height: 3.2rem;
      transition: all 0.3s ease;
      background: url(../images/icons/caret-down-solid.svg) no-repeat center;
      background-size: 0.85rem auto; }
  .version__menu {
    position: relative;
    flex: 1;
    min-height: 0;
    display: none;
    border-top: 2px solid #D6D6D6;
    border-radius: 0 0 2px 2px;
    background: #FFFFFF;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
    overflow: auto;
    z-index: 2; }
    .version__menu ul {
      margin: 0;
      padding: 0; }
      .version__menu ul li {
        padding: 8px 5px;
        margin: 0;
        list-style: none;
        border-bottom: 1px solid #e8e8e8; }
        .version__menu ul li:last-of-type {
          border: none; }
        .version__menu ul li a {
          display: block;
          padding: 0.8rem 1rem;
          border-radius: 2px;
          color: #333333;
          text-decoration: none;
          transition: all 0.3s ease; }
          .version__menu ul li a:before {
            content: '';
            display: inline-block;
            margin-right: 1rem;
            opacity: 0.6;
            position: relative;
            bottom: 0.1rem;
            width: 1.5rem;
            height: 1.5rem;
            transition: all 0.3s ease;
            background: url(../images/icons/book-solid.svg) no-repeat center;
            background-size: 1.2rem auto;
            vertical-align: bottom; }
          .version__menu ul li a:hover {
            background: #e6e6e6;
            color: #000; }
            .version__menu ul li a:hover:before {
              opacity: 0.9; }
        .version__menu ul li.active a {
          background: #436CA4;
          color: #FFFFFF; }
          .version__menu ul li.active a:before {
            opacity: 1;
            filter: invert(1); }
          .version__menu ul li.active a:hover {
            background: #436CA4;
            color: #FFFFFF; }
  .version--opened .version__current {
    border-radius: 2px 2px 0 0;
    background: #fefefe; }
    .version--opened .version__current:after {
      transform: rotate(180deg); }
  .version:hover {
    cursor: pointer; }
    .version:hover .version__current {
      box-shadow: 0 0 2rem #2a904e; }
  @media screen and (max-width: 720px) {
    .version {
      width: 8rem; }
      .version__current span {
        display: none; }
      .version--opened {
        width: calc(100% - 4rem); }
        .version--opened .version__current span {
          display: inline; } }

.search {
  position: absolute;
  top: 1.7rem;
  left: 1.8rem;
  right: 1rem;
  margin: 0 0 2rem 0;
  width: auto;
  height: auto !important; }
  .search__input {
    color: #808080;
    background: none;
    border: none;
    border-bottom: 0.2rem solid #c1c1c1;
    display: block;
    width: 100%;
    padding: 1.2rem 3.5rem 1.2rem 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5rem;
    box-sizing: border-box;
    transition: all 0.7s ease; }
    .search__input:focus {
      background: #FFFFFF;
      outline: none;
      box-shadow: 0 0 1.5rem #cccccc; }
  .search .search__icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0.4;
    transition: all 0.1s ease;
    background: url(../images/icons/search-solid.svg) no-repeat center;
    background-size: 1.7rem auto; }
    .search .search__icon--clear {
      background: url(../images/icons/times-solid.svg) no-repeat center;
      background-size: 1rem auto; }
      .search .search__icon--clear:hover {
        cursor: pointer;
        opacity: 0.9; }
  .search__clear {
    position: absolute;
    width: 3rem;
    height: 3rem;
    top: 0.5rem;
    right: 0;
    opacity: 0.2;
    font-size: 1.6rem;
    transition: all 0.3s ease; }
    .search__clear:hover {
      opacity: 1;
      cursor: pointer; }

/**
 * Site search
 */
.support-search-header {
  background-color: #35B863;
  padding-top: 1rem;
  padding-bottom: 1rem; }

.support-search-header h1 {
  text-align: center;
  font-size: 2.4rem;
  color: #FFFFFF;
  margin: 1rem 0 0 0; }

.app-ss360 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: auto;
  max-width: 100%;
  padding: 0;
  position: relative; }

.app-ss360:focus {
  width: 300px; }

.app-ss360 .app-ss360__searchbox {
  -webkit-appearance: none;
  appearance: none;
  background-position: 4px 10px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-color: #E5F0FA;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1em;
  height: 40px;
  margin: 0;
  max-width: 100%;
  padding: 0 8px;
  width: 100%; }

.app-ss360 .app-ss360__searchbox:focus {
  border: none;
  outline-width: 0; }

#searchButton.app-ss360__searchbutton {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E5F0FA;
  border: none;
  border-radius: 0 3px 3px 0;
  box-sizing: border-box;
  color: #1D263B;
  cursor: pointer;
  font-size: 1em;
  height: 40px;
  margin-top: 0;
  padding: 0 10px;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out; }

.app-ss360 input:focus, .ss360-layer input:focus,
.app-ss360 select:focus, .ss360-layer select:focus,
.app-ss360 textarea:focus, .ss360-layer textarea:focus,
.app-ss360 button:focus, .ss360-layer button:focus {
  outline: none; }

.app-ss360 input:focus, .ss360-layer input:focus {
  background-color: #D8E9F8;
  transition: background-color 0.3s ease-in-out; }

/**
 * Unibox overwrites
 */
.unibox {
  padding: 20px 20px;
  border: 3px solid #E5F0FA;
  border-radius: 4px; }

.unibox__content-container {
  padding: 4px 0 0 0; }

#unibox-suggest-box a {
  color: #1D263B; }

.unibox__selectable--active .unibox__content-container,
.unibox__selectable--active .unibox__highlight-container,
.unibox__selectable:hover .unibox__content-container,
.unibox__selectable:hover .unibox__highlight-container {
  background: transparent;
  color: #35B863; }

#unibox-suggest-box .unibox__search-content--link:hover {
  color: #35B863; }

/**
 * Custom search modal layer
 */
#ss360-custom-searchbox {
  background-color: #F2F8FD;
  border: none;
  box-shadow: unset;
  font-size: 1.6rem;
  transition: background-color 0.3s ease-in-out; }

#ss360-custom-searchbox:focus {
  background-color: #D8E9F8;
  transition: background-color 0.3s ease-in-out; }

.ss360-close-button,
.ss360-close-button:hover,
.ss360-close-button:focus {
  background-color: transparent; }

.ss360-layer--overlay {
  padding: 40px;
  max-width: 960px; }

@media (min-width: 1000px) {
  .ss360-layer--overlay {
    left: calc((100% - 960px) / 2 - 28px); } }
/**
 * list item
 */
.ss360-list .ss360-suggests {
  box-shadow: unset;
  margin-top: 0;
  margin-bottom: 20px; }

#ss360-layer .ss360-suggests__link {
  font-size: 1.6rem;
  color: #3C91DD;
  margin-bottom: 0;
  font-weight: 700; }

.ss360-n-section .ss360-suggests__content {
  margin-left: 0;
  padding-bottom: 0; }

#ss360-layer .ss360-suggests__snippet {
  margin-top: 0;
  margin-bottom: 0; }

/*
 * Nav buttons
 */
.ss360-nav__menu .ss360-nav__entry {
  font-size: 1.6rem; }

.ss360-nav--tabs .ss360-nav__entry {
  background: #F2F2F2;
  border: 0;
  box-shadow: none;
  color: #1D263B; }

#ss360-layer .ss360-ac-bg--hover:hover {
  background-color: #E5F0FA;
  color: #1D263B; }

#ss360-layer .ss360-nav__menu-item--active .ss360-ac-bg--hover:hover {
  background-color: #FFFFFF;
  color: #1D263B; }

#ss360-layer .ss360-ac-bg--hover:focus {
  background-color: #FFFFFF;
  color: #1D263B; }

#ss360-layer .ss360-nav__result-count {
  font-size: 1.4rem;
  color: #3C91DD; }

#searchBox,
#ss360-custom-searchbox {
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 10px center; }

#ss360-custom-searchbutton {
  background-image: url('data:image/svg+xml;utf8,<svg width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M20.707 11.293L15.05 5.636a1 1 0 0 0-1.414 1.414l3.95 3.95H4a1 1 0 0 0 0 2h13.586l-3.95 3.95a1 1 0 1 0 1.414 1.414l5.657-5.657a1 1 0 0 0 0-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  min-width: 40px; }

.icon--search {
  width: 24px;
  overflow: hidden;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"><g><path fill="%23FFFFFF" d="M9.8,19.7c2,0,3.9-0.6,5.5-1.7l5.6,5.6c0.4,0.4,1.2,0.4,1.6,0l1.1-1.1c0.4-0.4,0.4-1.2,0-1.6L18,15.3c1-1.6,1.7-3.4,1.7-5.5c0-5.4-4.4-9.8-9.8-9.8S0,4.4,0,9.8C0,15.3,4.4,19.7,9.8,19.7z M9.8,3.9c3.3,0,6,2.7,6,6s-2.7,6-6,6 s-6-2.7-6-6S6.5,3.9,9.8,3.9z"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px; }

.nav-container--light .icon--search {
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"><g><path fill="%231D263B" d="M9.8,19.7c2,0,3.9-0.6,5.5-1.7l5.6,5.6c0.4,0.4,1.2,0.4,1.6,0l1.1-1.1c0.4-0.4,0.4-1.2,0-1.6L18,15.3c1-1.6,1.7-3.4,1.7-5.5c0-5.4-4.4-9.8-9.8-9.8S0,4.4,0,9.8C0,15.3,4.4,19.7,9.8,19.7z M9.8,3.9c3.3,0,6,2.7,6,6s-2.7,6-6,6 s-6-2.7-6-6S6.5,3.9,9.8,3.9z"/></g></svg>'); }

.icon--search:hover {
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve"><g><path fill="%233C91DD" d="M9.8,19.7c2,0,3.9-0.6,5.5-1.7l5.6,5.6c0.4,0.4,1.2,0.4,1.6,0l1.1-1.1c0.4-0.4,0.4-1.2,0-1.6L18,15.3c1-1.6,1.7-3.4,1.7-5.5c0-5.4-4.4-9.8-9.8-9.8S0,4.4,0,9.8C0,15.3,4.4,19.7,9.8,19.7z M9.8,3.9c3.3,0,6,2.7,6,6s-2.7,6-6,6 s-6-2.7-6-6S6.5,3.9,9.8,3.9z"/></g></svg>'); }

/**
 * *******************************************
 * **************** END  *********************
 * *******************************************
*/
#searchBox::placeholder {
  color: #c1c1c1; }

.unibox__selectable.unibox__selectable--show-all {
  margin-top: 20px;
  display: block;
  margin-left: 0;
  padding: 0; }

.unibox__selectable.unibox__selectable--show-all .unibox__show-all-icon {
  display: none; }

/*
 * History
 */
.unibox__selectable.unibox__selectable--history {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px; }

.unibox__selectable.unibox__selectable--history .unibox__content-container {
  padding: 2px 2px 2px 14px;
  background-color: #e8e8e8;
  border-radius: 30px; }

.unibox__selectable.unibox__selectable--history .unibox__search-content {
  margin-bottom: 0; }

#breadcrumbs {
  flex: 0 0 auto;
  color: #ADADAD;
  padding: 1.5rem 1.5rem 1.4rem 1.5rem;
  border-bottom: 1px solid #eee;
  position: relative;
  opacity: 0.6;
  transition: all 0.3s ease;
  line-height: 1.5; }
  #breadcrumbs:before {
    content: '';
    display: block;
    position: absolute;
    left: -0.5rem;
    bottom: -0.1rem;
    height: 0.1rem;
    width: 0.5rem;
    background: #eee; }
  #breadcrumbs a {
    color: #858585; }
  #breadcrumbs span.links a {
    text-decoration: underline;
    transition: all 0.2s ease;
    display: inline-block;
    margin: 0 0.5rem; }
    #breadcrumbs span.links a:last-of-type {
      text-decoration: none; }
    #breadcrumbs span.links a:hover {
      text-decoration: none;
      color: #436CA4; }
  #breadcrumbs:hover {
    opacity: 1; }
  @media screen and (max-width: 768px) {
    #breadcrumbs {
      padding: 1rem;
      font-size: 1.2rem; } }

#navigation {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0; }

mark {
  background-color: #d2ff4d;
  box-shadow: 0 0 5px #d2ff4d;
  display: inline-block; }

.sidebar-button {
  display: none;
  cursor: pointer;
  color: #FFFFFF;
  position: absolute;
  padding: 1rem;
  top: 1rem;
  left: 0.5rem; }
  .sidebar-button:before {
    content: '';
    display: block;
    width: 2.1rem;
    height: 2.1rem;
    background: url(../images/icons/bars-solid.svg) no-repeat center;
    background-size: 2.1rem auto; }
  @media screen and (max-width: 768px) {
    .sidebar-button {
      display: block; } }

/****
 Media Queries
 ****/
/****
 Flexbox
 ****/
/****
 Screen Readers
 ****/
/****
Normalize
 ****/
/****
 Theme Color
 ****/
/****
 Theme Color
 ****/
/****
 Fade in.
 ****/
@keyframes ss360-fid {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/****
 Fade out.
 ****/
@keyframes ss360-fo {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/****
 Layer fade in and upscale animation.
 ****/
@keyframes ss360-upscale {
  0% {
    opacity: 0;
    transform: scale(0.9); }
  25% {
    transform: scale(0.9); }
  100% {
    opacity: 1;
    transform: scale(1); } }
/****
 Bounce Loader
 ****/
@keyframes sk-bounce {
  0% {
    transform: scale(0); }
  50% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }
/****
 Plane Loader
 ****/
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px); }
  50% {
    transform: perspective(120px) rotateY(180deg); }
  100% {
    transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }
/****
 Recording Pulse
 ****/
@keyframes ss360-recording {
  0% {
    background-color: rgba(224, 83, 80, 0); }
  50% {
    background-color: #fa483a; }
  100% {
    background-color: rgba(224, 83, 80, 0); } }
.ss360-n-button {
  background: #fefefe;
  border: 0;
  box-sizing: border-box;
  display: block;
  float: none;
  height: auto;
  line-height: normal;
  margin: 0;
  min-width: 0;
  padding: 0;
  text-indent: unset; }

.ss360-n-button:before,
.ss360-n-button:after,
.ss360-n-button:hover:before,
.ss360-n-button:hover:after,
.ss360-n-button:focus:before,
.ss360-n-button:focus:after {
  content: none; }

.ss360-n-section {
  background: transparent;
  background-image: none;
  border: 0;
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  height: auto;
  left: 0;
  margin: 0;
  padding: 0;
  position: relative;
  text-indent: unset;
  top: 0;
  transform: none;
  width: 100%; }

.ss360-n-input {
  background: #fefefe;
  background-image: none;
  border: 0;
  border-radius: 0; }

.ss360-search-term-highlight {
  background-color: #b5f948;
  padding: 2px 4px; }

.ss360-sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ss360-skip-link {
  background: #fefefe;
  border: 1px solid #dedede;
  left: -999em;
  pointer-events: none;
  position: absolute;
  z-index: 9999; }

.ss360-skip-link:focus {
  left: 0; }

.ss360-ca {
  clear: both; }

/* FLEXBOX */
.ss360-flex {
  display: flex;
  flex-direction: row; }

.ss360-flex--column {
  flex-direction: column; }

.ss360-flex--align-start {
  align-items: flex-start; }

.ss360-flex--align-stretch {
  align-items: stretch; }

.ss360-flex--align-center {
  align-items: center; }

.ss360-flex--align-end {
  align-items: flex-end; }

.ss360-flex--justify-star {
  justify-content: flex-start; }

.ss360-flex--justify-center {
  justify-content: center; }

.ss360-flex--justify-end {
  justify-content: flex-end; }

.ss360-flex--wrap {
  flex-wrap: wrap; }

.ss360-flex--nowrap {
  flex-wrap: nowrap; }

@media (max-width: 680px) {
  .ss360-flex--column-sm {
    flex-direction: column; } }
.ss360-custom-search {
  justify-content: center;
  max-width: 100%;
  padding: 8px 0;
  position: relative;
  width: 100%; }

.ss360-custom-search:not(.ss360-custom-search--no-margin) {
  margin-bottom: 24px;
  margin-top: -8px;
  padding-right: 16px; }

.ss360-custom-search .ss360-custom-search__searchbox {
  appearance: none;
  background-position: 4px 10px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border: 1px solid #dedede;
  border-radius: 0;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  font-size: 1.2em;
  height: 44px;
  margin: 0;
  max-width: 420px;
  padding: 0 8px;
  width: 100%; }

.ss360-custom-search .ss360-custom-search__searchbutton {
  align-items: center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 1em;
  height: 44px;
  justify-content: center;
  margin-top: 0;
  padding: 0 16px;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out; }

.ss360-custom-search__searchbutton {
  border: 1px solid;
  border-left-width: 0;
  border-radius: 0;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

.ss360-custom-search__searchbutton--no-transition {
  transition: none; }

.ss360-custom-search__icon {
  height: 24px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 24px; }

.ss360-layer:not(.ss360-layer--overlay) .ss360-custom-search {
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  max-width: 800px; }

@media (max-width: 680px) {
  .ss360-custom-search:not(.ss360-custom-search--no-margin) {
    margin-top: 0;
    max-width: calc(100% - 50px); } }
.ss360-fullscreen-layer {
  background-color: #fefefe;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  overflow: auto;
  padding-top: 16px;
  position: fixed;
  top: -100%;
  width: 100%;
  z-index: 999998; }

@media (max-width: 991px) {
  .ss360-fullscreen-layer .ss360-custom-search {
    padding-left: 16px;
    padding-right: 16px; } }
.ss360-fullscreen-layer--fade {
  display: none;
  opacity: 0;
  top: 0; }

.ss360-fullscreen-layer .ss360-custom-search {
  margin-top: 0; }

.ss360-fullscreen-layer__heading {
  margin-bottom: 16px;
  padding: 0 72px;
  text-align: center; }

.ss360-fullscreen-layer__results {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  width: 100%; }

.ss360-fullscreen-layer--fade.ss360-fullscreen-layer--open {
  display: block;
  opacity: 1; }

.ss360-close-button, .ss360-close-button:hover, .ss360-close-button:focus {
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 64px;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  width: 64px;
  z-index: 99999; }

.ss360-close-button__icon {
  display: block;
  height: 32px;
  left: 16px;
  opacity: 1;
  position: absolute;
  top: 16px;
  width: 32px; }

.ss360-close-button__icon-svg {
  height: 100%;
  width: 100%; }

.ss360-close-button__icon--active {
  opacity: 0; }

.ss360-close-button:hover .ss360-close-button__icon,
.ss360-close-button:focus .ss360-close-button__icon {
  opacity: 0; }

.ss360-close-button:hover .ss360-close-button__icon--active,
.ss360-close-button:focus .ss360-close-button__icon--active {
  opacity: 1; }

/****
 Darken Background Layer
 ****/
.ss360-darken {
  background-color: rgba(0, 0, 0, 0.65);
  cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADo0lEQVRYhb1XP2gbZxR/7ztFR4OCWp2wfMa1RUF24BwLdF4aYxAatIjMovVQ0KAMhoJd2XO2DmrwEDzEg0d1Kh6yxSC0eckd2M4NFrVQPeQ4Lh6ubi/osPQ6VBKyIuVOspLfdu973/f73fv+/hA8QpKkgN/vlwFARsTFIWnvAEBpNBoVTdP+8TIuuiXIsiwSUZ6Ikoj4wKtgAHjVbDZ/Pzk5qY4lQJKkAM/zvwDAkxFIPwIRVRzHeTasItygYDweX/D5fL8h4uO7kAMAIGKU47jvI5HIW8Mwrj5q7w/Isiy2Wq3SiOV2BRFdM8Z+VBRF743fqoAkSQHG2AtEnJkkOQAAIvJEJAuC8No0TacTZ71JPM8//8QKn4SIRZ7nn/fGuhVIJBJ5uOOC84gZURRB13UFoL0G2lvt1Rcg7wIRnyiKojMAACLKf0nyXk5OkqSAz+f71a3D8vLyV5FI5J5hGDfDcoLBIFcqlR7Ozs7eOz4+djsJF0OhUInxPJ/0orhQKHy7t7e3kMlkgsPIDw4OFqLR6P3V1dWvg8HgwDOmFzzPJ7np6ek8Ikbdki8uLuxMJiOk0+mwZVmOpmkfett3d3e/W1paelCv1+1cLle1LKvpNiYRASeK4k+IGHZLNgzjRlGUv9Pp9DfJZDJERE1VVf8FACgWi/Nra2uhUcjbaGAikXjjMRkAbpe6XC6/BwBIpVLhMcgBAGBkAf0iAADGJQfoOwm9wrKsZq1WszvftVrNHod8bAHFYnG+U/Z6vW6nUqlwsVicH0sAEZ2P0mFra0vsnfNcLlcdVwQRnTMA0F0z28hms8L6+vqMaZqNzpxbltXM5XJVTdOuxxChc6IoCl4eHtlsVtjZ2Ynatn2zubn55+XlZfdKbTQadHh4eBWLxfypVCoci8X8R0dHlgcBfzDGWMWL1JWVlYBt2zcbGxvV09PTD4Nytre3/yqXy+91XXcGtfeDMVZBAIBEIvESAGS3DnNzc/7eP78jFFVVn3Z2wb6XHhMk73IyAABVVRUiqkxw8E+CiCqqqipdAQAAjuM8g/+NxefGuzYXAPQ8yUzTdKamphRETCMi/zmYiei61Wr9fHZ21t36t+5swzCuIpHIMSIuebkhRyQ/b7VahX6nNNAZtX3gy0m9kIno3HGcp4Pc0cBXi2majiAIrzmO8yPiozuSVxzHKQyzZq7mNB6PLzDG8oiYHJFbAYD9zmofBlcBHbQt2w/gwZ4j4n6/BRuG/wA9X65CnAC2oQAAAABJRU5ErkJggg==") 12 12, auto;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999998; }

.ss360-darken--noclose {
  cursor: auto; }

/****
 Loader
 ****/
.ss360-loader {
  display: none;
  height: 80px;
  left: 49.5%;
  position: fixed;
  top: 49.5%;
  width: 80px;
  z-index: 999999;
  /****
	Spinner
	****/
  /****
	Plane
	****/ }

.ss360-loader__bounce {
  animation: sk-bounce 2s infinite ease-in-out;
  border-radius: 50%;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%; }

.ss360-loader__bounce--delayed {
  animation-delay: -1s; }

.ss360-loader--square {
  animation: sk-rotateplane 1.2s infinite ease-in-out;
  height: 60px;
  width: 60px; }

.ss360-more-results {
  background: none;
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  min-width: 180px;
  padding: 8px 32px;
  text-align: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  width: auto; }

.ss360-data-points {
  border: 0;
  font-size: 14px;
  margin-left: 0;
  margin-right: 0;
  width: auto; }

.ss360-data-point {
  border: 0; }

.ss360-data-point__cell {
  border: 0;
  padding: 0; }

.ss360-data-point__cell--key {
  font-weight: 700;
  padding-right: 8px; }

.ss360-data-point__cell--value {
  word-break: break-all; }

.ss360-data-points--row .ss360-data-points__body {
  display: flex;
  flex-wrap: wrap; }

.ss360-data-points--row .ss360-data-point {
  margin-bottom: 8px;
  margin-right: 24px; }

.ss360-data-points--row .ss360-data-point--last {
  margin-right: 0; }

.ss360-data-points--column {
  display: block;
  max-width: 400px;
  width: 100%; }

.ss360-data-points--column .ss360-data-point__cell {
  padding-bottom: 8px;
  vertical-align: top; }

.ss360-group {
  margin-bottom: 0;
  margin-top: 0; }

.ss360-group .ss360-list {
  list-style: none;
  margin-top: 0;
  padding-left: 0; }

.ss360-group__heading {
  font-size: 1.2em;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 8px; }

.ss360-layer--overlay .ss360-list {
  padding-left: 4px;
  padding-right: calc(4px + 0.5em); }

.ss360-fullscreen-layer {
  background-color: #fefefe;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  overflow: auto;
  padding-top: 16px;
  position: fixed;
  top: -100%;
  width: 100%;
  z-index: 999998; }

@media (max-width: 991px) {
  .ss360-fullscreen-layer .ss360-custom-search {
    padding-left: 16px;
    padding-right: 16px; } }
.ss360-fullscreen-layer--fade {
  display: none;
  opacity: 0;
  top: 0; }

.ss360-fullscreen-layer .ss360-custom-search {
  margin-top: 0; }

.ss360-fullscreen-layer__heading {
  margin-bottom: 16px;
  padding: 0 72px;
  text-align: center; }

.ss360-fullscreen-layer__results {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  width: 100%; }

.ss360-fullscreen-layer--fade.ss360-fullscreen-layer--open {
  display: block;
  opacity: 1; }

@media (min-width: 992px) {
  .ss360-grid--lg {
    display: grid; }

  .ss360-grid--lg .ss360-suggests {
    max-width: 100%;
    overflow: hidden; }

  .ss360-grid--lg .ss360-suggest__image-container {
    width: 100%; }

  .ss360-grid--lg .ss360-suggests__wrap {
    flex-direction: column;
    height: 100%; }

  .ss360-grid--lg .ss360-suggests__image-wrap {
    box-sizing: border-box;
    height: 220px;
    margin-bottom: 24px;
    min-height: 220px;
    min-width: 100%;
    padding: 0 16px;
    width: 100%; }

  .ss360-grid--lg .ss360-suggests__header {
    max-height: 54px;
    min-height: 54px;
    overflow: hidden;
    padding-top: 0; }

  .ss360-grid--lg .ss360-suggests__content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px; }

  .ss360-grid--lg .ss360-suggests__snippet {
    height: 100%; }

  .ss360-grid--lg .ss360-suggests__image {
    height: 100%;
    max-height: none;
    width: 100%; }

  .ss360-grid--lg .ss360-suggest__image--lazy {
    height: 150px; }

  .ss360-grid--lg .ss360-suggests__image-wrap--object-fit-polyfill {
    height: 150px;
    width: 100%; }

  .ss360-grid--lg .ss360-suggests__image--pdf {
    object-fit: contain; } }
@media (max-width: 991px) {
  .ss360-grid--sm {
    display: grid; }

  .ss360-grid--sm .ss360-suggests {
    max-width: 100%;
    overflow: hidden; }

  .ss360-grid--sm .ss360-suggest__image-container {
    width: 100%; }

  .ss360-grid--sm .ss360-suggests__wrap {
    flex-direction: column;
    height: 100%; }

  .ss360-grid--sm .ss360-suggests__image-wrap {
    box-sizing: border-box;
    height: 220px;
    margin-bottom: 24px;
    min-height: 220px;
    min-width: 100%;
    padding: 0 16px;
    width: 100%; }

  .ss360-grid--sm .ss360-suggests__header {
    max-height: 54px;
    min-height: 54px;
    overflow: hidden;
    padding-top: 0; }

  .ss360-grid--sm .ss360-suggests__content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px; }

  .ss360-grid--sm .ss360-suggests__snippet {
    height: 100%; }

  .ss360-grid--sm .ss360-suggests__image {
    height: 100%;
    max-height: none;
    width: 100%; }

  .ss360-grid--sm .ss360-suggest__image--lazy {
    height: 150px; }

  .ss360-grid--sm .ss360-suggests__image-wrap--object-fit-polyfill {
    height: 150px;
    width: 100%; }

  .ss360-grid--sm .ss360-suggests__image--pdf {
    object-fit: contain; } }
.ss360-grid {
  grid-column-gap: 16px; }

@media (min-width: 992px) {
  .ss360-grid {
    grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1200px) {
  .ss360-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr; } }
@media (max-width: 991px) {
  .ss360-grid {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) {
  .ss360-grid {
    grid-template-columns: 1fr; }

  .ss360-grid .ss360-suggests__header {
    min-height: 0; } }
@media (min-width: 992px) {
  .ss360-grid--lg.ss360-grid--singleline-title .ss360-suggests {
    min-width: 0; }

  .ss360-grid--lg.ss360-grid--singleline-title .ss360-suggests__link-wrap {
    display: block;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; } }
@media (max-width: 991px) {
  .ss360-grid--sm.ss360-grid--singleline-title .ss360-suggests {
    min-width: 0; }

  .ss360-grid--sm.ss360-grid--singleline-title .ss360-suggests__link-wrap {
    display: block;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; } }
@media (min-width: 992px) {
  .ss360-masonry--lg .ss360-group {
    overflow: hidden; }

  .ss360-masonry--lg.ss360-list {
    align-content: space-between;
    display: flex;
    flex-flow: column wrap;
    height: 2000px;
    margin-bottom: 0;
    margin-top: 0; }

  .ss360-masonry--lg .ss360-suggests__wrap {
    flex-direction: column; }

  .ss360-masonry--lg .ss360-suggests__link,
  .ss360-masonry--lg .ss360-suggests__image-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-width: 100%;
    width: 100%; }

  .ss360-masonry--lg .ss360-suggests__image {
    height: auto;
    margin: 8px 0;
    max-height: none;
    max-width: 100%;
    object-fit: cover;
    width: auto; }

  .ss360-masonry--lg .ss360-suggests__image--lazy {
    height: 150px;
    width: 100%; }

  .ss360-masonry--lg .ss360-masonry-break {
    content: '';
    flex-basis: 100%;
    margin: 0;
    padding: 0;
    width: 0; } }
@media (max-width: 991px) {
  .ss360-masonry--sm .ss360-group {
    overflow: hidden; }

  .ss360-masonry--sm.ss360-list {
    align-content: space-between;
    display: flex;
    flex-flow: column wrap;
    height: 2000px;
    margin-bottom: 0;
    margin-top: 0; }

  .ss360-masonry--sm .ss360-suggests__wrap {
    flex-direction: column; }

  .ss360-masonry--sm .ss360-suggests__link,
  .ss360-masonry--sm .ss360-suggests__image-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-width: 100%;
    width: 100%; }

  .ss360-masonry--sm .ss360-suggests__image {
    height: auto;
    margin: 8px 0;
    max-height: none;
    max-width: 100%;
    object-fit: cover;
    width: auto; }

  .ss360-masonry--sm .ss360-suggests__image--lazy {
    height: 150px;
    width: 100%; }

  .ss360-masonry--sm .ss360-masonry-break {
    content: '';
    flex-basis: 100%;
    margin: 0;
    padding: 0;
    width: 0; } }
.ss360-layer {
  background: #fefefe;
  color: #4a4f62;
  flex-wrap: wrap;
  font-size: 16px;
  padding: 12px;
  text-align: left; }

.ss360-layer--overlay {
  background-color: #fefefe;
  border-radius: 8px;
  box-sizing: content-box;
  height: 80%;
  left: calc(10% - 28px);
  max-width: 800px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 32px 24px 32px 32px;
  position: fixed;
  top: calc(10% - 30px);
  width: 80%;
  z-index: 99999999999; }

@media (min-width: 1000px) {
  .ss360-layer--overlay {
    left: calc((100% - 800px) / 2 - 28px); } }
@media (max-width: 680px) {
  .ss360-layer--overlay {
    box-shadow: none;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    overflow-x: auto;
    padding: 12px;
    position: fixed;
    top: 0;
    width: 100%; } }
.ss360-layer--wide-overlay {
  flex-wrap: wrap;
  left: calc(10% - 28px);
  max-width: 1140px; }

@media (max-width: 680px) {
  .ss360-layer--wide-overlay {
    left: 0; } }
@media (min-width: 1425px) {
  .ss360-layer--wide-overlay {
    left: calc((100% - 1140px) / 2 - 28px); } }
.ss360-layer__flex-wrapper {
  width: 100%; }

/* Animations */
.ss360-animated {
  animation: 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0s 1 normal forwards running; }

.ss360-animated--fast {
  animation-duration: 150ms; }

.ss360-fid {
  animation-name: ss360-fid; }

.ss360-us {
  animation-name: ss360-upscale; }

.ss360-fo {
  animation-name: ss360-fo; }

/****
 General layer content styles (search result block)
 ****/
.ss360-layer__content {
  margin: 0;
  outline: none;
  position: relative; }

.ss360-query-correction {
  margin-bottom: 8px; }

.ss360-list {
  margin-left: 0; }

.ss360-layer__heading {
  font-size: 1.2em;
  margin-bottom: 8px;
  margin-top: 0;
  padding: 12px 0; }

.ss360-layer__heading .ss360-layer__heading-anchor {
  color: inherit;
  cursor: default;
  outline: none;
  pointer-events: none;
  text-decoration: none; }

.ss360-layer__heading--padded {
  padding: 12px 16px; }

.ss360-layer__content--tabs .ss360-layer__heading {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ss360-layer__content--tabs.ss360-layer__content--branded {
  padding-top: 26px; }

/****
 Elements to be displayed only on certain devices
 ****/
@media (max-width: 991px) {
  .ss360-hide-dataPoints--sm .ss360-data-points,
  .ss360-hide-images--sm .ss360-suggests__image,
  .ss360-hide-snippet--sm .ss360-suggests__snippet,
  .ss360-hide-title--sm .ss360-suggests__header,
  .ss360-hide-url--sm .ss360-suggests__url {
    display: none; } }
@media (min-width: 992px) {
  .ss360-hide-dataPoints--lg .ss360-data-points,
  .ss360-hide-images--lg .ss360-suggests__image,
  .ss360-hide-snippet--lg .ss360-suggests__snippet,
  .ss360-hide-title--lg .ss360-suggests__header,
  .ss360-hide-url--lg .ss360-suggests__url {
    display: none; } }
/* Accessibility - turn off animations */
@media (prefers-reduced-motion: reduce) {
  .ss360-close-button:hover,
  .ss360-loader,
  .ss360-loader__bounce,
  .ss360-loader--square {
    animation-duration: 0s; } }
/****
 Basic Styles
****/
.ss360-nav--top {
  padding-bottom: 0; }

.ss360-nav--left {
  flex: 1;
  padding-right: 12px; }

.ss360-nav__entry {
  background: #fefefe;
  border-radius: 3px;
  border-style: solid;
  border-width: 2px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  color: #4a4f62;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin-right: 12px;
  padding: 12px;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out, border-color 0.1s ease-in-out; }

.ss360-nav__result-count {
  margin-left: 4px; }

.ss360-nav__result-count:after {
  content: ')'; }

.ss360-nav__result-count:before {
  content: '('; }

.ss360-nav__menu {
  float: none;
  list-style: none;
  margin-top: 4px;
  padding-left: 0; }

.ss360-nav--top .ss360-nav__menu {
  margin-bottom: 16px;
  margin-left: 0; }

.ss360-nav--top .ss360-nav__menu-item {
  display: inline-block;
  margin: 4px 0 0 0; }

.ss360-nav--top .ss360-nav__entry {
  margin-right: 4px; }

.ss360-nav--left .ss360-nav__entry {
  margin-bottom: 12px; }

.ss360-layer .ss360-layer__content--right {
  flex: 4; }

/****
 Tabs
 ****/
.ss360-layer__content--tabs .ss360-group:not(.ss360-group--active) {
  display: none; }

.ss360-layer__content--tabs .ss360-group__heading {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ss360-nav--tabs.ss360-nav--left {
  /* stylelint-disable */
  /* stylelint-enable */ }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__menu {
  margin-top: 0; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__menu-item {
  border-right-style: solid;
  border-right-width: 2px;
  margin-right: 0;
  text-align: right; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__entry {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-right: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 0;
  margin-right: 0; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__entry--first {
  margin-top: 0; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__entry:not(.ss360-nav__entry--last) {
  margin-bottom: 8px; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__menu-item--active {
  border-right: 0; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__menu-item--active .ss360-nav__entry {
  border-bottom-width: 2px;
  border-color: inherit;
  border-right-width: 0;
  margin-bottom: 0; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__menu-item--active + .ss360-nav__menu-item {
  padding-top: 8px; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__post,
.ss360-nav--tabs.ss360-nav--left .ss360-nav__pre {
  border-right-style: solid;
  border-right-width: 2px; }

.ss360-nav--tabs.ss360-nav--left .ss360-nav__pre {
  height: 3em; }

.ss360-nav--tabs.ss360-nav--top {
  align-items: flex-end;
  margin-bottom: 16px;
  /* stylelint-disable */
  /* stylelint-enable */ }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__menu-item {
  border-bottom-style: solid;
  border-bottom-width: 2px; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__entry {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin-bottom: 0; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__entry--first {
  margin-left: 0; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__entry:not(.ss360-nav__entry--last) {
  margin-right: 8px; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__menu-item--active {
  border-bottom: 0;
  margin-left: -2px;
  margin-right: -2px; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__menu-item--active .ss360-nav__entry {
  margin-right: 0; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__menu-item--active + .ss360-nav__menu-item {
  padding-left: 8px; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__post,
.ss360-nav--tabs.ss360-nav--top .ss360-nav__pre {
  border-bottom-style: solid;
  border-bottom-width: 2px; }

.ss360-nav--tabs.ss360-nav--top .ss360-nav__pre {
  flex-grow: 1; }

.ss360-nav--tabs {
  /* stylelint-disable */
  /* stylelint-enable */ }

.ss360-nav--tabs .ss360-nav__entry {
  background: #dedede;
  border: 0;
  box-shadow: none; }

.ss360-nav--tabs .ss360-nav__menu-item--active .ss360-nav__entry {
  background: #fefefe;
  border-color: inherit;
  border-style: solid;
  border-width: 2px;
  border-bottom-width: 0;
  color: #4a4f62;
  padding-bottom: 12px; }

.ss360-nav--tabs .ss360-nav__menu-item:not(.ss360-nav__menu-item--active) .ss360-nav__entry:hover, .ss360-nav--tabs .ss360-nav__menu-item:not(.ss360-nav__menu-item--active) .ss360-nav__entry:focus {
  color: #fefefe;
  padding-bottom: 12px; }

.ss360-nav--tabs .ss360-nav__menu {
  margin-bottom: 0;
  margin-right: 0; }

.ss360-nav--tabs .ss360-nav__post {
  flex-grow: 6; }

/****
 Dropdown
 ****/
.ss360-nav__select {
  border: 0;
  filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  height: 40px;
  opacity: 0;
  padding: 8px 0;
  position: absolute;
  top: 0;
  width: 100%; }

.ss360-nav__select-wrapper {
  cursor: pointer;
  max-width: 20em;
  position: relative;
  width: 100%; }

.ss360-nav__select-label {
  cursor: pointer;
  margin: 0;
  padding: 4px 12px;
  position: relative; }

.ss360-nav__select-label:after {
  border-left: 6px solid #fefefe;
  content: '▼';
  font-size: 14px;
  padding: 4px 16px;
  position: absolute;
  right: 0;
  top: 0; }

.ss360-nav__select-label--open:after {
  content: '▲'; }

.ss360-nav__select-label--focus {
  outline: 1px dotted #4a4f62;
  outline: -webkit-focus-ring-color auto 6px; }

.ss360-nav__select-option {
  background: #fefefe;
  color: #484848; }

.ss360-nav__select, .ss360-nav__select-label {
  display: block;
  font: 400 1em/2em Source Sans Pro, sans-serif; }

/****
 Responsiveness
 ****/
@media (max-width: 680px) {
  .ss360-nav--left {
    clear: both;
    margin-bottom: 16px;
    padding-right: 0; }

  .ss360-nav--left .ss360-nav__menu-item {
    display: inline-block;
    margin-top: 8px; }

  .ss360-nav--left .ss360-nav__entry {
    margin-bottom: 0;
    margin-right: 8px; }

  .ss360-nav--left,
  .ss360-layer__content--right {
    flex: none;
    width: 100%; } }
/****
 Single Search Result
 ****/
.ss360-suggests {
  box-shadow: -1px 1px 6px rgba(0, 0, 0, 0.12);
  margin: 4px 0 24px 0; }

.ss360-suggests--hidden {
  display: none; }

.ss360-suggests__link {
  color: #436CA4;
  font-size: 1.2em;
  text-decoration: none; }

.ss360-suggests__link:hover {
  text-decoration: underline; }

.ss360-suggests__url {
  color: #35B863;
  display: block;
  font-size: 14px;
  padding-right: 16px;
  text-decoration: none;
  word-break: break-word; }

.ss360-suggests__header {
  line-height: 1.41;
  margin-bottom: 4px;
  padding: 0;
  padding-top: 8px;
  position: relative;
  text-align: left; }

.ss360-suggests__wrap {
  display: flex;
  flex-direction: row; }

.ss360-suggests__content {
  display: flex;
  flex-direction: column;
  margin-left: 16px;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 12px;
  width: 100%; }

.ss360-suggests__link-wrap {
  margin: 0; }

.ss360-suggests__snippet {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 12px;
  margin-top: 12px;
  padding-right: 16px;
  word-break: break-word; }

.ss360-suggests__image-wrap {
  display: block;
  line-height: 0;
  max-width: 33%;
  min-height: 100%;
  min-width: 250px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 250px; }

.ss360-suggests__image-wrap--empty {
  background: repeating-linear-gradient(-45deg, #fefefe, #fefefe 4px, #efefef 4px, #efefef 8px);
  height: 100%;
  min-height: 100%; }

.ss360-suggests__image {
  display: inline-block;
  max-height: 200px;
  max-width: 100%;
  object-fit: scale-down;
  width: auto; }

.ss360-suggests__image--cover {
  min-height: 100px;
  object-fit: cover; }

.ss360-suggests__image--lazy {
  height: 100px; }

.ss360-suggests__image--doc {
  height: 150px;
  max-height: 150px; }

.ss360-suggests__image--pdf {
  box-sizing: border-box;
  object-fit: cover;
  padding: 24px; }

.ss360-suggests__image-wrap--object-fit-polyfill {
  /* IE Fix */
  background-repeat: no-repeat;
  display: block;
  height: 200px;
  margin: 8px 16px 8px 0; }

.ss360-suggests__image-wrap--video .ss360-suggests__image {
  filter: brightness(0.62); }

@media (max-width: 991px) {
  .ss360-suggests__content {
    box-sizing: border-box;
    margin: 0;
    padding: 0 12px; }

  .ss360-suggests__wrap {
    flex-direction: column; }

  .ss360-suggests__image-wrap {
    align-self: center;
    margin-bottom: 16px;
    max-width: none;
    width: 100%; } }
.ss360-404 .ss360-sorting {
  display: none; }

.ss360-layer__heading + .ss360-sorting {
  /* Wrapper */
  margin-bottom: 8px;
  margin-top: -8px; }

.ss360-sorting {
  min-height: 24px;
  position: relative;
  width: 100%; }

.ss360-sorting__select, .ss360-sorting__label {
  font-size: 14px; }

.ss360-sorting__select {
  appearance: none;
  border: 0;
  border-bottom: 1px solid #dedede;
  height: auto;
  margin: 0;
  max-width: 150px;
  padding: 8px 32px 8px 12px;
  position: relative; }

.ss360-sorting__select::-ms-expand {
  display: none; }

.ss360-sorting:after {
  content: '▼';
  font-size: 0.62em;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 10px; }

.ss360-sorting__label {
  margin: 0;
  margin-right: 8px;
  padding-bottom: 8px; }

@media (max-width: 680px) {
  .ss360-sorting__select {
    margin-right: 16px; } }
.ss360-voice-search {
  background: transparent;
  border-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 2; }

.ss360-voice-search--recording {
  animation-duration: 1.25s;
  animation-iteration-count: infinite;
  animation-name: ss360-recording;
  background-color: #fa483a; }

.ss360-skeleton__result {
  box-shadow: none; }

.ss360-skeleton__result-image {
  height: 125px;
  width: 125px; }

.ss360-skeleton__result-heading {
  height: 25px;
  margin-bottom: 12px;
  max-width: 350px;
  width: calc(100% - 50px); }

.ss360-skeleton__content-container {
  display: flex;
  flex-direction: row; }

.ss360-skeleton__result-snippet {
  height: 125px;
  margin: 0;
  margin-left: 16px;
  width: 100%; }

.ss360-skeleton__result-snippet-row {
  height: 20px;
  margin-bottom: 12px;
  width: 100%; }

.ss360-skeleton__result-snippet-row--last {
  margin-bottom: 0;
  width: 62%; }

.ss360-skeleton__block-heading {
  height: 35px;
  width: 62%; }

.ss360-skeleton__navigation-entry {
  display: inline-block;
  height: 37px;
  margin: 16px 4px;
  width: 105px; }

.ss360-skeleton__navigation-entry--first {
  margin-left: 0; }

.ss360-skeleton__filter--left {
  flex: 1;
  padding-right: 16px;
  padding-top: 16px; }

.ss360-skeleton__filter--top {
  margin-bottom: 16px;
  margin-top: 16px;
  width: 100%; }

.ss360-skeleton--filter-left .ss360-skeleton__block-heading {
  margin-right: 38%;
  width: 100%; }

.ss360-nav--left.ss360-skeleton__navigation .ss360-skeleton__navigation-entry {
  margin: 8px;
  width: 80%; }

.ss360-layer__content--skeleton-right {
  padding-top: 8px;
  width: 80%; }

.ss360-layer__content--skeleton-filter-left {
  flex: 3; }

.ss360-skeleton__filter--left .ss360-skeleton__filter-block {
  height: 250px;
  margin-bottom: 16px;
  width: 100%; }

.ss360-skeleton__filter--top .ss360-skeleton__filter-block {
  height: 25px;
  margin-right: 16px;
  max-width: 20%;
  width: 200px; }

.ss360-shimmer {
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: ss360-shimmer;
  animation-timing-function: linear;
  background: #ebedee;
  background-image: linear-gradient(to right, #ebedee 0%, #f8f9f9 20%, #ebedee 40%, #ebedee 100%);
  background-repeat: no-repeat;
  background-size: 1000px 100%;
  display: inline-block;
  position: relative; }

@keyframes ss360-shimmer {
  0% {
    background-position: -800px 0; }
  100% {
    background-position: 800px 0; } }
@media (min-width: 992px) {
  .ss360-grid--lg .ss360-skeleton__content-container {
    flex-direction: column; }

  .ss360-grid--lg .ss360-skeleton__result-snippet {
    margin: 0;
    margin-top: 16px;
    width: 100%; }

  .ss360-grid--lg .ss360-skeleton__result-image {
    height: 150px;
    width: 100%; }

  .ss360-grid--lg__block-heading {
    margin-left: 8px; }

  .ss360-skeleton__hide-titles--desktop .ss360-skeleton__result-heading {
    display: none; }

  .ss360-skeleton__hide-images--desktop .ss360-skeleton__result-image {
    display: none; }

  .ss360-skeleton__hide-images--desktop .ss360-skeleton__result-snippet {
    margin-left: 0; }

  .ss360-skeleton__hide-snippets--desktop .ss360-skeleton__result-snippet {
    display: none; } }
@media (max-width: 991px) {
  .ss360-grid--sm .ss360-skeleton__content-container {
    flex-direction: column; }

  .ss360-grid--sm .ss360-skeleton__result-snippet {
    margin: 0;
    margin-top: 16px;
    width: 100%; }

  .ss360-grid--sm .ss360-skeleton__result-image {
    height: 150px;
    width: 100%; }

  .ss360-grid--sm .ss360-skeleton__result-heading {
    width: 100%; }

  .ss360-grid--sm .ss360-skeleton__block-heading {
    margin-left: 8px;
    width: calc(100% - 16px); }

  .ss360-skeleton__navigation-entry--last {
    display: none; }

  .ss360-skeleton__hide-titles--mobile .ss360-skeleton__result-heading {
    display: none; }

  .ss360-skeleton__hide-images--mobile .ss360-skeleton__result-image {
    display: none; }

  .ss360-skeleton__hide-images--mobile .ss360-skeleton__result-snippet {
    margin-left: 0; }

  .ss360-skeleton__hide-snippets--mobile .ss360-skeleton__result-snippet {
    display: none; }

  .ss360-layer .ss360-layer__content--skeleton-right {
    padding-left: 8px; }

  .ss360-skeleton__filter--left {
    display: none; } }
.ss360-suggests__cta-wrap {
  display: flex; }

.ss360-suggests__cta-wrap:not(.ss360-suggests__cta-wrap--column) {
  align-items: center; }

.ss360-suggests__cta-wrap--column {
  align-items: flex-start;
  flex-direction: column; }

.ss360-suggests__cta-wrap--column .ss360-cta {
  align-self: flex-start; }

.ss360-suggests__cta-wrap--column .ss360-cta--center {
  align-self: center; }

.ss360-suggests__cta-wrap--column .ss360-cta--right {
  align-self: flex-end; }

.ss360-suggests__cta-wrap--row .ss360-cta {
  margin-right: 12px; }

.ss360-cta {
  box-sizing: content-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 12px 0;
  overflow: visible;
  position: relative;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, padding 0.3s ease-in-out, margin-right 0.3s ease-in-out, fill 0.3s ease-in-out; }

.ss360-cta:not(.ss360-cta--plain) {
  align-items: center;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  padding: 8px 16px;
  text-decoration: none; }

.ss360-cta:not(.ss360-cta--noicon) {
  margin-right: 25px; }

.ss360-cta--noicon:hover, .ss360-cta--noicon:focus {
  background-color: #fefefe; }

.ss360-cta__icon {
  background: #fefefe;
  height: 20px;
  left: 0;
  overflow: hidden;
  padding: 1px;
  position: absolute;
  top: 7px;
  transform: translate3d(-11px, 0, 0);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, fill 0.3s ease-in-out;
  width: 20px; }

.ss360-cta__img {
  max-height: 100%;
  max-width: 100%; }

.ss360-cta:not(.ss360-cta--noicon):focus,
.ss360-cta:not(.ss360-cta--noicon):hover {
  margin-right: 12px;
  padding-left: 29px; }

.ss360-cta:not(.ss360-cta--noicon):focus .ss360-cta__icon,
.ss360-cta:not(.ss360-cta--noicon):hover .ss360-cta__icon {
  background: transparent;
  transform: translate3d(2px, 0, 0); }

.ss360-error {
  margin: 24px;
  padding: 32px; }

.ss360-error__icon {
  margin-right: 32px; }

.ss360-error__cta {
  width: 100%; }

.ss360-error__heading {
  font-size: 1.5em;
  margin-bottom: 16px;
  margin-top: 0; }

.ss360-error__message {
  font-size: 1em;
  line-height: 1.41;
  margin-bottom: 32px;
  margin-top: 0; }

.ss360-error__button {
  align-self: center;
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-size: 1.2em;
  font-weight: 400;
  max-width: 100%;
  min-width: 180px;
  padding: 8px 32px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  width: auto; }

@media (max-width: 767px) {
  .ss360-error {
    flex-direction: column; }

  .ss360-error__description {
    align-items: center;
    flex-direction: column; }

  .ss360-error__icon {
    margin-bottom: 16px; }

  .ss360-error__button {
    align-self: auto; } }
.ss360-product-finder__question--hidden {
  display: none; }

.ss360-product-finder__question-title {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 12px; }

.ss360-product-finder__answers {
  display: flex; }

.ss360-product-finder__answer {
  border: 2px solid #fefefe;
  cursor: pointer;
  flex: 1;
  line-height: 0;
  position: relative; }

.ss360-product-finder__answer-image {
  height: 250px;
  max-width: 100%;
  object-fit: cover;
  width: 100%; }

.ss360-product-finder__answer-text {
  background-color: rgba(0, 0, 0, 0.72);
  bottom: 0;
  box-sizing: border-box;
  color: #fefefe;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding: 8px;
  position: absolute;
  width: 100%; }

.ss360-product-finder__controls {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 12px 2px;
  width: 100%; }

.ss360-product-finder__button {
  background-color: #fefefe;
  border: 2px solid;
  cursor: pointer;
  font-size: 1em;
  padding: 8px 12px; }

.ss360-product-finder__button--next, .ss360-product-finder__button--finish {
  font-weight: 700; }

.ss360-product-finder__button:disabled {
  cursor: initial; }

.ss360-white-bg--hover:hover,
.ss360-white-bg--hover:focus {
  background: #fefefe; }

.ss360-tc-c {
  color: #4a4f62; }

.ss360-tc-c--hover:hover,
.ss360-tc-c--hover:focus {
  color: #4a4f62; }

.ss360-tc-b {
  border-color: #4a4f62; }

.ss360-tc-b--hover:hover,
.ss360-tc-b--hover:focus {
  border-color: #4a4f62; }

.ss360-tc-b--focus:focus {
  border-color: #4a4f62; }

.ss360-tc-bg {
  background-color: #4a4f62;
  color: #fefefe; }

.ss360-tc-bg--hover:hover,
.ss360-tc-bg--hover:focus {
  background-color: #4a4f62;
  color: #fefefe; }

.ss360-tc-bg--focus:focus {
  background-color: #4a4f62;
  color: #fefefe; }

.ss360-ac-c {
  color: #436CA4; }

.ss360-ac-c--hover:hover,
.ss360-ac-c--hover:focus {
  color: #436CA4; }

.ss360-ac-b {
  border-color: #436CA4; }

.ss360-ac-b--hover:hover,
.ss360-ac-b--hover:focus {
  border-color: #436CA4; }

.ss360-ac-b--focus:focus {
  border-color: #436CA4; }

.ss360-ac-bg {
  background-color: #436CA4;
  color: #fefefe; }

.ss360-ac-bg--hover:hover,
.ss360-ac-bg--hover:focus {
  background-color: #436CA4;
  color: #fefefe; }

.ss360-ac-bg--focus:focus {
  background-color: #436CA4;
  color: #fefefe; }

.ss360-acd-bg--hover:hover,
.ss360-acd-bg--hover:focus {
  background-color: #365983;
  color: #fefefe; }

.ss360-acd-b--hover:hover,
.ss360-acd-b--hover:focus {
  border-color: #365983; }

#ss360-layer .ss360-white-bg--hover:hover,
#ss360-layer .ss360-white-bg--hover:focus {
  background: #fefefe; }

#ss360-layer .ss360-tc-c {
  color: #4a4f62; }

#ss360-layer .ss360-tc-c--hover:hover,
#ss360-layer .ss360-tc-c--hover:focus {
  color: #4a4f62; }

#ss360-layer .ss360-tc-b {
  border-color: #4a4f62; }

#ss360-layer .ss360-tc-b--hover:hover,
#ss360-layer .ss360-tc-b--hover:focus {
  border-color: #4a4f62; }

#ss360-layer .ss360-tc-b--focus:focus {
  border-color: #4a4f62; }

#ss360-layer .ss360-tc-bg {
  background-color: #4a4f62;
  color: #fefefe; }

#ss360-layer .ss360-tc-bg--hover:hover,
#ss360-layer .ss360-tc-bg--hover:focus {
  background-color: #4a4f62;
  color: #fefefe; }

#ss360-layer .ss360-tc-bg--focus:focus {
  background-color: #4a4f62;
  color: #fefefe; }

#ss360-layer .ss360-ac-c {
  color: #436CA4; }

#ss360-layer .ss360-ac-c--hover:hover,
#ss360-layer .ss360-ac-c--hover:focus {
  color: #436CA4; }

#ss360-layer .ss360-ac-b {
  border-color: #436CA4; }

#ss360-layer .ss360-ac-b--hover:hover,
#ss360-layer .ss360-ac-b--hover:focus {
  border-color: #436CA4; }

#ss360-layer .ss360-ac-b--focus:focus {
  border-color: #436CA4; }

#ss360-layer .ss360-ac-bg {
  background-color: #436CA4;
  color: #fefefe; }

#ss360-layer .ss360-ac-bg--hover:hover,
#ss360-layer .ss360-ac-bg--hover:focus {
  background-color: #436CA4;
  color: #fefefe; }

#ss360-layer .ss360-ac-bg--focus:focus {
  background-color: #436CA4;
  color: #fefefe; }

#ss360-layer .ss360-acd-bg--hover:hover,
#ss360-layer .ss360-acd-bg--hover:focus {
  background-color: #365983;
  color: #fefefe; }

#ss360-layer .ss360-acd-b--hover:hover,
#ss360-layer .ss360-acd-b--hover:focus {
  border-color: #365983; }

/**
 * Unibox CSS
 */
.unibox-n-button {
  background: #fefefe;
  border: 0;
  box-sizing: border-box;
  display: block;
  float: none;
  height: auto;
  line-height: normal;
  margin: 0;
  min-width: 0;
  padding: 0;
  text-indent: unset; }

.unibox-n-button:after,
.unibox-n-button:before,
.unibox-n-button:focus:after,
.unibox-n-button:focus:before,
.unibox-n-button:hover:after,
.unibox-n-button:hover:before {
  content: none; }

.unibox-n-section {
  background: transparent;
  background-image: none;
  border: 0;
  box-sizing: border-box;
  display: block;
  font-size: 1.6rem;
  height: auto;
  left: 0;
  margin: 0;
  padding: 0;
  position: relative;
  text-indent: unset;
  top: 0;
  transform: none;
  width: 100%; }

.unibox-n-input {
  background: #fefefe;
  background-image: none;
  border: 0;
  border-radius: 0; }

.unibox-sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.unibox-stretch {
  height: 100%; }

.unibox {
  background-color: #fefefe;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.12);
  color: #4a4f62;
  display: none;
  overflow: hidden;
  position: absolute;
  z-index: 1500;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.12); }

.unibox--empty {
  visibility: hidden; }

.unibox__content-container {
  box-sizing: border-box;
  max-width: calc(100% - 60px);
  padding: 12px 8px 16px 16px;
  width: 100%; }

.unibox__search-content {
  display: block;
  margin-bottom: 4px;
  text-align: left; }

.unibox__search-content--link {
  color: #4a4f62;
  overflow: hidden;
  text-decoration: none; }

.unibox__suggest-heading {
  font-size: 1.4rem;
  background: #e8f1fd;
  color: #27405f;
  padding: 0.7rem 1.5rem;
  border: none;
  border-left: 0.2rem solid #436CA4;
  border-radius: 0.2rem;
  font-weight: bold;
  margin: 8px 0 16px 0; }

.unibox__selectable {
  clear: both;
  display: flex;
  font-size: 1.4rem;
  position: relative;
  text-align: left;
  margin-top: 16px; }

.unibox__vis {
  width: 70px; }

.unibox__img-container {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  min-width: 68px;
  padding: 4px 0 4px 8px; }

.unibox__img {
  left: 0;
  max-height: 60px;
  max-width: 60px;
  position: relative;
  top: 0;
  transform: none; }

.unibox__highlight {
  font-weight: 700; }

.unibox__result-content {
  margin-bottom: 16px;
  margin-top: 4px; }

.unibox__ca {
  clear: both; }

.unibox__invisible {
  display: none;
  height: 0;
  position: relative;
  text-align: left;
  visibility: hidden; }

.unibox__ivf {
  height: 76px;
  left: -15px;
  position: absolute;
  top: -89px;
  width: 76px; }

.unibox__ivf-img {
  bottom: 0;
  margin: auto;
  max-width: 76px;
  position: absolute;
  top: 0;
  transform: rotateX(-90deg) translateY(100%);
  transition: 0.3s ease-out; }

.unibox__ivf-img--l {
  transform: rotateX(0) translateY(0); }

.unibox__selectable--show-all {
  align-items: center;
  background: none;
  border: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4px 8px;
  width: 100%; }

.unibox__show-all-icon {
  margin-left: 8px;
  margin-top: 4px; }

.unibox__cluster--no-img .unibox__content-container {
  max-width: 100%; }

.unibox__selectable--active,
.unibox__selectable:hover {
  cursor: pointer; }

.unibox__selectable--active .unibox__content-container,
.unibox__selectable--active .unibox__highlight-container,
.unibox__selectable:hover .unibox__content-container,
.unibox__selectable:hover .unibox__highlight-container {
  background: #dedede; }

.unibox__selectable--active.unibox__selectable--show-all,
.unibox__selectable:hover.unibox__selectable--show-all {
  text-decoration: underline; }

.unibox--fullwidth .unibox__selectable {
  padding: 16px; }

.unibox--fullwidth .unibox__extra {
  left: 86px;
  top: 41px; }

.unibox-special {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000000; }

.unibox-special,
.unibox-special__input-wrap {
  margin: 0;
  padding: 0; }

.unibox-special__input-wrap {
  background: #fefefe;
  border: 1px solid #dedede;
  box-sizing: border-box;
  width: 100%; }

.unibox-special__searchbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #dedede;
  border-radius: 0;
  font-size: 1.2em;
  height: 48px;
  margin: 16px 63px;
  padding: 0 12px;
  width: calc(100% - 126px); }

.unibox-special__icon {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 50px;
  padding: 0;
  position: absolute;
  top: 16px;
  width: 50px; }

.unibox-special__icon--close {
  background: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB3aWR0aD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMnoiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+") no-repeat 50%;
  background-size: 24px;
  border-right: 1px solid #dedede;
  left: 0; }

.unibox-special__icon--searchbutton {
  background: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB3aWR0aD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjUgMTRoLS43OWwtLjI4LS4yN0E2LjQ3MSA2LjQ3MSAwIDAwMTYgOS41IDYuNSA2LjUgMCAxMDkuNSAxNmMxLjYxIDAgMy4wOS0uNTkgNC4yMy0xLjU3bC4yNy4yOHYuNzlsNSA0Ljk5TDIwLjQ5IDE5bC00Ljk5LTV6bS02IDBDNy4wMSAxNCA1IDExLjk5IDUgOS41UzcuMDEgNSA5LjUgNSAxNCA3LjAxIDE0IDkuNSAxMS45OSAxNCA5LjUgMTR6Ii8+PHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==") no-repeat 50%;
  background-size: 24px;
  border-left: 1px solid #dedede;
  right: 0; }

.unibox-special .unibox--special {
  display: block;
  height: 100%;
  margin-top: 4px;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  width: 100%; }

.unibox-special .unibox__selectable {
  min-height: 50px; }

.unibox-special__background {
  pointer-events: none;
  transform: translateZ(0);
  transition-delay: 0s;
  transition-timing-function: ease-out;
  will-change: transform; }

.unibox-special__background--left {
  transform: translate3d(-100%, 0, 0); }

.unibox-special__background--right {
  transform: translateZ(0); }

.unibox__selectable--group-cta {
  background: #fefefe;
  border: 0;
  color: #4a4f62;
  display: block;
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-align: right;
  width: 100%; }

.unibox__selectable--group-cta.unibox__selectable--active,
.unibox__selectable--group-cta:hover {
  text-decoration: underline; }

.unibox__selectable--history .unibox__content-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 8px 8px 16px; }

.unibox__delete-history {
  background: transparent;
  border: 0;
  cursor: pointer; }

.unibox__delete-history-icon {
  display: block; }

/* See all results */
.unibox__show-all-text {
  background: url(../images/icons/search-solid.svg) no-repeat left center;
  background-size: 1.7rem auto;
  padding-left: 2.5rem; }

.unibox-tc-c {
  color: #4a4f62;
  font-size: 1.4rem;
  margin-top: 8px;
  text-align: left; }

.unibox-tc-c--hover:focus,
.unibox-tc-c--hover:hover {
  color: #4a4f62; }

.unibox-tc-b {
  border-color: #4a4f62; }

.unibox-tc-b--hover:focus,
.unibox-tc-b--hover:hover {
  border-color: #4a4f62; }

.unibox-tc-b--focus:focus {
  border-color: #4a4f62; }

.unibox-tc-bg {
  background-color: #4a4f62;
  color: #fefefe; }

.unibox-tc-bg--hover:focus,
.unibox-tc-bg--hover:hover {
  background-color: #4a4f62;
  color: #fefefe; }

.unibox-tc-bg--focus:focus {
  background-color: #4a4f62;
  color: #fefefe; }

#unibox-suggest-box .unibox-tc-c {
  color: #4a4f62; }

#unibox-suggest-box .unibox-tc-c--hover:focus,
#unibox-suggest-box .unibox-tc-c--hover:hover {
  color: #4a4f62; }

#unibox-suggest-box .unibox-tc-b {
  border-color: #4a4f62; }

#unibox-suggest-box .unibox-tc-b--hover:focus,
#unibox-suggest-box .unibox-tc-b--hover:hover {
  border-color: #4a4f62; }

#unibox-suggest-box .unibox-tc-b--focus:focus {
  border-color: #4a4f62; }

#unibox-suggest-box .unibox-tc-bg {
  background-color: #4a4f62;
  color: #fefefe; }

#unibox-suggest-box .unibox-tc-bg--hover:focus,
#unibox-suggest-box .unibox-tc-bg--hover:hover {
  background-color: #4a4f62;
  color: #fefefe; }

#unibox-suggest-box .unibox-tc-bg--focus:focus {
  background-color: #4a4f62;
  color: #fefefe; }

/* highlight the results */
.unibox-ac-c,
.ss360-highlight {
  background: #e8f1fd; }

.unibox__cluster--type-searchHistory .unibox__selectable {
  display: inline-flex;
  padding: 4px 8px;
  background: #e8f1fd;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  margin-top: 0; }

.unibox__cluster--type-resultGroup .unibox__selectable:hover, .unibox__cluster--type-resultGroup .unibox__selectable.unibox__selectable--active {
  background-color: #e8f1fd;
  transition: background-color 0.2s ease-in-out; }
.unibox__cluster--type-resultGroup .unibox__selectable .ss360-suggest__row {
  display: flex;
  width: 100%; }
.unibox__cluster--type-resultGroup .unibox__selectable .ss360-suggest__item {
  display: flex;
  flex: 1 1;
  align-items: center; }
  .unibox__cluster--type-resultGroup .unibox__selectable .ss360-suggest__item .badge {
    flex: 1 0;
    padding: 0.7rem 1.5rem;
    border: none;
    text-align: right;
    color: rgba(0, 0, 0, 0.3); }
  .unibox__cluster--type-resultGroup .unibox__selectable .ss360-suggest__item .ss360-suggest__suggestion {
    flex: 3 0;
    padding: 0.7rem 1.5rem;
    border: none;
    border-left: 0.2rem solid rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.3);
    line-height: 1.4em; }
    .unibox__cluster--type-resultGroup .unibox__selectable .ss360-suggest__item .ss360-suggest__suggestion h6 {
      color: #333333; }

#unibox-suggest-box {
  width: 100% !important;
  min-width: 540px !important;
  max-width: 540px !important;
  top: 50px !important; }
