@charset "UTF-8";

/***** Base *****/

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  /* Fallback font */
}

/**** Begin fonts - Amy Ogborn ****/

/* BEGIN Gilroy Bold */
@font-face {
  font-family: Gilroy;
  src: local("Gilroy");
  src: url("/hc/theming_assets/01J00Y03TH5ZG5KNBNTY67NQDS") format("truetype"),
    url("/hc/theming_assets/01HZHDWMVANJT7J87GNT2HKGAJ") format("woff"),
    url("/hc/theming_assets/01HZHDW72EFG11J64D209SEXEF") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* END Gilroy Bold*/

/* BEGIN Gilroy Bold */
@font-face {
  font-family: Gilroy;
  src: local("Gilroy");
  src: url("/hc/theming_assets/01J00XZMX6YS2M8TDY151CK9FW") format("truetype"),
    url("/hc/theming_assets/01HZHDWGGXWJ4K0NMK2HG3YRQ2") format("woff"),
    url("/hc/theming_assets/01HZHDWP37481MWGQW7G7MCV3D") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* END Gilroy Bold*/

/* BEGIN Proxima Nova */
@font-face {
  font-family: Proxima Nova;
  src: url("/hc/theming_assets/01HZHDWH9S3VFVZYR8Z8KP3XKS") format("woff"),
    url("/hc/theming_assets/01HZHDW6QTXJS18EDPZY82ZMVC") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* END Proxima Nova */

/* BEGIN Proxima Nova */
@font-face {
  font-family: Proxima Nova Bold;
  src: local("Proxima Nova");
  src: url("/hc/theming_assets/01HZHDWNMMSRACVB8A0SYDKND6") format("woff"),
    url("/hc/theming_assets/01HZHDWBMRJ3SS51ZFJRTM1QEQ") format("woff2");
  font-weight: bolder;
  font-style: normal;
  font-display: swap;
}

/* END Proxima Nova */

/* BEGIN Proxima Nova */
@font-face {
  font-family: Proxima Nova;
  src: local("Proxima Nova");
  src: url("/hc/theming_assets/01HZHDWTS2MJX27A4ZJ61317VQ") format("woff");
  font-weight: bolder;
  font-style: italic;
  font-display: swap;
}

/* END Proxima Nova */

/* BEGIN Proxima Nova */
@font-face {
  font-family: Proxima Nova;
  src: local("Proxima Nova");
  src: url("/hc/theming_assets/01HZHDW7EJNM9FD7Y8C65EM6N8") format("woff"),
    url("/hc/theming_assets/01HZHDW6HXEP824E2GH2YGP0CY") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* END Proxima Nova */

/* BEGIN Proxima Nova */
@font-face {
  font-family: Proxima Nova;
  src: local("Proxima Nova");
  src: url("/hc/theming_assets/01HZHDWPDZY658MTH1DK6CC19R") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* END Proxima Nova */

/* BEGIN TomTom Icons */

@font-face {
  font-family: "TomTom Icons";
  src: local("TomTom Icons");
  src: url("/hc/theming_assets/01HZHDWPZKX63VE400DK63HZRY"),
    url("/hc/theming_assets/01JKWW62QYRANZ7DSZF5063N7Y") format("svg"),
    url("/hc/theming_assets/01HZHDWD6Z4M1QZVABF4CYE2Z5") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* END  TomTom Icons */

/**** End fonts ****/

/*** transform In effect ***/

@-webkit-keyframes transformIn {

  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes transformIn {

  0% {
    -moz-transform: scale(0);
  }

  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes transformIn {

  0% {
    -o-transform: scale(0);
  }

  100% {
    -o-transform: scale(1);
  }
}

@keyframes transformIn {

  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/*** End Bounce effect ***/

/*** Bounce effect ***/

@-webkit-keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
  }
}

@-moz-keyframes bounce {

  0%,
  100% {
    -moz-transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-10px);
  }
}

@-o-keyframes bounce {

  0%,
  100% {
    -o-transform: translateX(0);
  }

  50% {
    -o-transform: translateX(-10px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

/*** End Bounce effect ***/

/*** Fade In effect ***/

.fade-in {
  animation: fadeIn ease 3s;
  -webkit-animation: fadeIn ease 3s;
  -moz-animation: fadeIn ease 3s;
  -o-animation: fadeIn ease 3s;
  -ms-animation: fadeIn ease 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*** End Fade In effect ***/
/*** Button animations ***/
@keyframes move-up-first {
  0% {
    transform: translateY(0)
  }

  to {
    transform: translateY(-20px)
  }
}

@keyframes move-up-second {
  0% {
    transform: translateY(20px)
  }

  to {
    transform: translateY(0)
  }
}

@keyframes show {
  0% {
    opacity: 0
  }

  40%,
  to {
    opacity: 1
  }
}

@keyframes hide {
  0% {
    opacity: 1
  }

  40%,
  to {
    opacity: 0
  }
}

@keyframes move-arrow-first {
  0% {
    opacity: 1;
    transform: translate(0)
  }

  25% {
    opacity: 0
  }

  to {
    opacity: 0;
    transform: translate(22px)
  }
}

@keyframes move-arrow-second {
  0% {
    opacity: 0;
    transform: translate(-22px)
  }

  25% {
    opacity: 0
  }

  50% {
    opacity: 1
  }

  to {
    opacity: 1;
    transform: translate(0)
  }
}

/*** End button animations ***/
body {
  background-color: #fff;
  color: #000000;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.538461538;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  letter-spacing: .3px;
  font-display: swap;
}

@media (min-width: 1024px) {
  body>main {
    min-height: 65vh;
  }
}

/* Responsive design matched to TomTom branding. Use '.tile-grid' in your element to set the responsivness */

:root {
  --gutter: 24px;
  --columns: 4;
}

@media (min-width: 768px) {
  :root {
    --gutter: 40px;
    --columns: 8;
  }
}

@media (min-width: 80em) {
  :root {
    --gutter: 80px;
  }
}

.tile-grid,
.container {
  margin-left: var(--gutter);
  margin-right: var(--gutter);
  position: relative;
}

@media (min-width: 100em) {

  .tile-grid,
  .container {
    max-width: 1440px;
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

.tile-grid__groups {
  position: relative;
  max-width: 1440px;
}

.tile-grid__group:first-child {
  position: static;
}

.tile-grid__group {
  padding-inline-start: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  position: relative;
  top: 0;
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 0fr 1fr;
  -ms-grid-rows: 200px;
  grid-template-rows: 200px;
  grid-auto-rows: 200px;
}

@media (min-width: 636px) {
  .tile-grid__group {
    -ms-grid-rows: calc(50vw - var(--gutter));
    grid-template-rows: calc(50vw - var(--gutter));
    grid-auto-rows: calc(50vw - var(--gutter));
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .tile-grid__group {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-rows: 360px;
    grid-auto-rows: 360px;
  }
}

.tile-grid-group__tile {
  position: relative;
  overflow: hidden;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media (min-width: 768px) {
  .tile-grid-group__tile {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
    -ms-grid-rows: 1fr 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .tile-grid-group__tile:first-child {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }

  .tile-grid-group__tile:nth-child(2),
  .tile-grid-group__tile:nth-child(6) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

.tile-grid-group__tile:nth-child(1) {
  background-color: #8dc3eb;
  color: #fff;
  background-position: right;
  background-size: cover;
}

.tile-grid-group__tile:nth-child(1):hover a,
.tile-grid-group__tile:nth-child(1) h4,
.tile-grid-group__tile:nth-child(1) p,
.tile-grid-group__tile:nth-child(1) h1 {
  color: #fff;
}

.tile-grid-group__tile:nth-child(2) {
  transition: all 0.8s;
  color: #fff;
  background-color: #fdc530;
}

.tile-grid-group__tile:nth-child(2):hover a,
.tile-grid-group__tile:nth-child(2) h4,
.tile-grid-group__tile:nth-child(2) p {
  color: #000;
}

.tile-grid-group__tile:nth-child(4) {
  overflow: hidden;
  position: relative;
  transition: all 0.8s;
  background-position: center;
  background-size: cover;
  color: #fff;
  background-image: url("$assets-homepage-apps-icon-jpg");
  transition: all 5s;
}

.tile-grid-group__tile:nth-child(4):hover {
  background-position: right;
}

.tile-grid-group__tile:nth-child(4) a,
.tile-grid-group__tile:nth-child(4) h4,
.tile-grid-group__tile:nth-child(4) p {
  color: #fff;
}

.tile-grid-group__tile:nth-child(6) {
  overflow: hidden;
  position: relative;
  transition: all 0.8s;
  background-position: center;
  background-size: cover;
  color: #fff;
  background-image: url("$assets-user-manuals-icon-png");
  transition: all 5s;
}

.tile-grid-group__tile:nth-child(6):hover {
  background-position: bottom right;
}

.tile-grid-group__tile:nth-child(2),
.tile-grid-group__tile:nth-child(3),
.tile-grid-group__tile:nth-child(4),
.tile-grid-group__tile:nth-child(5),
.tile-grid-group__tile:nth-child(6) {
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
  .tile-grid-group__tile:nth-child(6) {
    border-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .tile-grid-group__tile:nth-child(5) {
    border-bottom: 0;
  }
}

@media (min-width: 768px) {

  .tile-grid-group__tile:nth-child(3),
  .tile-grid-group__tile:nth-child(5),
  .tile-grid-group__tile:nth-child(6) {
    border-right: 1px solid #e5e5e5;
  }
}

.responsive-image {
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
}

/* End Of responsive design */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin-top: 0;
  letter-spacing: .3px;
}

h1 {
  font-size: 32px;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
}

a {
  color: #666;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s;
}

article a {
  color: #666;
  text-transform: none;
  box-shadow: inset 0 -1px 0 0.01px #0000, inset 0 -1px;
}

article a:hover {
  background-color: #6666661a;
  box-shadow: none;
}

article a.button:hover {
  background-color: #df1b12;
}


article {
  color: #666;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  color: #000;
}

#Manuals article a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  transition: all 0.3s;
  text-decoration: none;
}

strong {
  font-family: 'Proxima Nova Bold';
  /* font-weight: 700; -- Not in this release*/
}

input,
textarea {
  color: #000;
  font-size: 16px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border 0.12s ease-in-out;
  border-radius: 2px;
  width: 300px;
  height: 48px;
  line-height: 24px;
  color: #666666;
  padding: 0px 0px 0px 16px;
  transition: border-color 0.5s ease-out;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
}

input:focus {
  border: 1px solid #61ade0;
}

input[disabled] {
  background-color: #bebebe;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /*     background: url($assets-dropdown-arrow-svg) no-repeat #fff; */
  background-position: right 10px center;
  width: 100%;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  width: 300px;
  height: 48px;
  padding: 0px 0px 0px 13px;
  transition: border-color 0.5s ease-out;
}

select:focus {
  border: 1px solid #61ade0;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid #61ade0;
}

.container-divider {
  border-top: 1px solid #4c4c4c;
  margin-bottom: 20px;
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

/**** Error Page ****/

.error-background {
  background-color: #f2f2f2;
  border-top: 1px solid #CCC;
  padding-bottom: 80px;
}

@media (min-width: 1200px) {
  .error-background {
    background-image: url("/hc/theming_assets/01J7418M2AE33EGAWPADR3J2B1");
    background-repeat: no-repeat;
    background-position: top right;
  }
}

.error-page {
  position: relative;
  min-height: 50vh;
}

@media (min-width: 1200px) {
  .error-page {
    margin: 0 auto;
    min-height: 60vh;
    position: relative;
  }

  .error-page-inner {
    padding-top: 10%;
  }
}

@media (min-width: 1200px) {
  .error-page {
    padding: 0;
    width: 60%;
    margin-left: 0;
  }
}

.error-title {
  padding-top: 20px;
  line-height: 1.2;
}

.error-hero {
  background-image: url("$assets-error_banner-png");
  background-position: center;
  background-size: cover;
  height: 350px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.error-page p {
  color: #4a4c4c;
  font-size: 18px;
}

.error-link {
  border: none;
  border-radius: 0px;
  box-sizing: border-box;
  color: #000;
  text-align: left;
  max-width: 100%;
  background-color: transparent;
  margin-top: 20px;
}

.error-search {
  min-width: 400px;
  margin: 20px;
}

@media (min-width: 1200px) {
  #wrong_language_cta {
    margin-left: 20px;
  }
}

/**** End Error Page ****/

.dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}

.dropdown-toggle:focus {
  outline: 0;
  text-decoration: underline;
}

.dropdown-toggle::after {
  color: inherit;
  font-family: "TomTom Icons";
  background-repeat: no-repeat;
  background-size: contain;
  content: "\002A";
}

.dropdown-menu {
  z-index: 50;
}

/***** Buttons *****/

.button,
[role="button"],
.button:visited {
  border: none;
  border-radius: 50px !important;
  color: #ffffff !important;
  background-color: #df1b12;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  margin-bottom: 16px;
  padding: 12px 20px;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  -webkit-touch-callout: none;
  text-decoration: none !important;
  box-shadow: none;
}

.button-white,
.button-white:focus {
  color: #000 !important;
  fill: #000 !important;
  --coloredFontColor: #666 !important;
  background-color: #e5e5e5 !important;
  width: auto !important;
}

.button-black,
.button-black:focus {
  color: #fff !important;
  fill: #000 !important;
  --coloredFontColor: #000 !important;
  background-color: #000 !important;
}

.button-red {
  color: #ffffff;
  fill: #000;
  --coloredFontColor: #666;
  width: 100% !important;
}

.button-blue {
  color: #ffffff;
  background-color: #8dc3eb;
  --coloredFontColor: #666;
  width: 100%;
}

.button-grey {
  color: #ffffff;
  background-color: #4a4c4c;
  --coloredFontColor: #666;
  width: 100% !important;
}

.download-button {
  border: none;
  border-radius: 0px !important;
  color: #ffffff;
  background-color: #df1b12;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  line-height: 16px;
  margin: 0;
  padding: 16px 24px;
  text-align: center;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out,
    color 0.15s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  /*   width: 100%; */
  -webkit-touch-callout: none;
  text-transform: uppercase;
  align-items: center;
  list-style: none;
}

.download-button::before {
  font-family: "TomTom Icons";
  content: "\0030";
  font-size: 30px;
}

@media (min-width: 768px) {

  .button,
  [role="button"] {
    width: auto;
    margin-bottom: 10px;
  }
}

.button::after,
[role="button"]::after {
  color: #000000;
}

.button:hover,
.button:active,
.button:focus,
.button[aria-selected="true"],
[role="button"]:hover,
[role="button"]:active,
[role="button"]:focus,
[role="button"][aria-selected="true"] {
  text-decoration: none;
}

.button[aria-selected="true"]:hover,
.button[aria-selected="true"]:focus,
.button[aria-selected="true"]:active,
[role="button"][aria-selected="true"]:hover,
[role="button"][aria-selected="true"]:focus,
[role="button"][aria-selected="true"]:active {
  border-color: none;
}

.button[data-disabled],
[role="button"][data-disabled] {
  cursor: pointer;
}

.button-large,
input[type="submit"] {
  border: none;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  border-radius: 50px !important;
  color: #ffffff;
  background-color: #df1b12;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  text-transform: none;
}

@media (min-width: 768px) {

  .button-large,
  input[type="submit"] {
    width: auto;
  }
}

.button-secondary {
  color: #000;
  border: none;
  background-color: #fff;
  border-radius: 0px;
  width: auto;
  padding: 5px;
  font-size: 16px;
}

.button-secondary:after {
  color: #fff;
  border: 1px solid #8dc3eb;
  background-color: #fff;
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
  border: none;
}

.button_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: #df1b12;
  white-space: nowrap;
  padding: 16px 24px;
}

.animated_button {
  display: inline-flex;
  cursor: pointer;
}

.animated_button .animated_button_first,
.animated_button .animated_button_second {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.animated_button:hover .animated_button_first {
  -webkit-animation: move-up-first .75s cubic-bezier(.16, 1, .3, 1), hide .75s cubic-bezier(.45, 0, .55, 1);
  animation: move-up-first .75s cubic-bezier(.16, 1, .3, 1), hide .75s cubic-bezier(.45, 0, .55, 1);
}

.animated_button_second {
  opacity: 0;
  position: absolute;
}

.animated_button:hover .animated_button_second {
  -webkit-animation: show .75s cubic-bezier(.45, 0, .55, 1), move-up-second .75s cubic-bezier(.16, 1, .3, 1);
  animation: show .75s cubic-bezier(.45, 0, .55, 1), move-up-second .75s cubic-bezier(.16, 1, .3, 1);
  transition: all 0.25s ease-in-out;
}

.animated_arrow svg {
  position: absolute;
}

.animated_arrow:hover .animated_arrow_first svg {
  animation: move-arrow-first 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

.animated_arrow:hover .animated_arrow_second svg {
  animation: move-arrow-second 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

/* Animation for complete link of category page */
.see-all-articles:hover .animated_arrow .animated_arrow_first svg {
  animation: move-arrow-first 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

.see-all-articles:hover .animated_arrow .animated_arrow_second svg {
  animation: move-arrow-second 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

#open_bongo_update .animated_arrow_first {
  background: url("/hc/theming_assets/01JJP8YGQTHTKVC2BR2JTFSGE0");
  width: 12px;
  height: 10px;
  margin-top: 5px;
  margin-left: 12px;
}

#open_bongo_update .animated_arrow_second {
  background: url("/hc/theming_assets/01JJP8YGQTHTKVC2BR2JTFSGE0");
  width: 12px;
  height: 10px;
  margin-top: 5px;
  margin-left: -12px;
}

#open_bongo_update:hover .animated_arrow_first {
  transition: all 0.25s ease-in-out;
  animation: move-arrow-first 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

#open_bongo_update:hover .animated_arrow_second {
  transition: all 0.25s ease-in-out;
  animation: move-arrow-second 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

.not-your-product {
  position: absolute;
  top: 94px;
  left: 24px;
  max-width: calc(100% - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}

.not-your-product:after {
  font-family: "TomTom Icons";
  content: "\0028";
  color: #df1b12;
  border: none;
  background-color: transparent;
}

@media (min-width: 48em) {
  .not-your-product {
    right: 16px;
    left: auto;
    width: calc(25vw - 16px);
  }
}

/***** Tables *****/

table,
.table {
  width: 100%;
  table-layout: fixed;
}

@media (min-width: 768px) {

  table,
  .table {
    table-layout: auto;
  }
}

table th,
.table th,
table th a,
.table th a {
  color: #333;
  font-size: 16px;
  text-align: left;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  word-wrap: normal;
}

[dir="rtl"] .table th,
[dir="rtl"] .table th a,
[dir="rtl"] table th,
[dir="rtl"] table th a {
  text-align: right;
}

td,
th {
  padding: 18px;
}

table tr,
.table tr {
  border-bottom: 1px solid #ddd;
}

@media (max-width: 530px) {

  td,
  th {
    padding: 12px;
  }
}

/***** Forms *****/

.form {
  max-width: 650px;
}


.form-field label {
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  position: relative;
  top: 30px;
  left: 10px;
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  z-index: 10;
}

.error_message {
  color: #df1b12;
  margin-top: 10px;
  margin-bottom: -34px;
}

.form-field input {
  border: 1px solid #e5e5e5;
  padding: 15px 10px 0px 10px;
  width: 100%;
}

.form-field input[type="text"] {
  border: 1px solid #e5e5e5;
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  /* border-radius: 4px;
  height: 60px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
  padding-top: 20px; */
  background: none;
  height: 56px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
  padding-top: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.form-field .nesty-input:focus {
  border: 1px solid #e5e5e5;
  text-decoration: none;
}

.nesty-input::after {
  top: 40%;
  content: "";
  background-image: url('/hc/theming_assets/01J7418KCHAMWDAJH8QVYR3FT7');
  background-size: 100% 100%;
  background-position: center;
  width: 14px;
  height: 14px;
  transition: all 0.25s ease-in-out;
  transform: rotate(0deg);
}

.nesty-inputSelected::after {
  transform: rotate(180deg);
}

.hc-multiselect-toggle {
  padding-top: 20px;
  min-height: 60px;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid #61ade0;
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
  padding-top: 20px;
}

.form-field input[type="checkbox"]+label {
  margin: 0 0 0 10px;
  padding-top: 20px;
}

.form-field.required>label::after {
  content: "*";
  color: #df1b12;
  margin-left: 2px;
}

.form-field .optional {
  color: #bebebe;
  margin-left: 4px;
}

.form-field p {
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  color: #4c4c4c;
  font-size: 16px;
  margin: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url(/hc/theming_assets/01J7418MBYJ5EPYAXVWF7Q55RR) 99% 50% no-repeat;
  background-size: 16px 16px;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: #000;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 16px;
  /*   margin-top: 30px; */
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #000;
}

/***** Header ****/

.header {
  background-color: #fff;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
  position: sticky;
  width: 100%;
  top: 0px;
  border-bottom: 1px #e5e5e5 solid;
  height: 64px;
  z-index: 999;
  /* Mobile header will sit above everything */
}

@media (min-width: 47.99em) {
  .header {
    height: 80px;
  }
}

@media (max-width: 59.99em) {
  .header--open {
    position: fixed;
    top: 0;
  }
}

@media (min-width: 60em) {
  .header {
    z-index: 30;
    /* Just above basic page so header 'floats' on page */
  }
}

ul.nav-text-links {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  column-gap: 24px;
  display: flex;
}

.nav-text-links li {
  text-align: left;
  list-style: none;
  padding-left: 20px;
}

.nav-text-links a {
  text-transform: none;
}

.header-link {
  display: inline-block;
  height: 100%;
  position: relative;
  color: #666;
  -webkit-transition: border .2s, padding .2s, opacity .2s, color 0.4s;
  transition: border .2s, padding .2s, opacity .2s, color 0.4s;
}

.header-link-href {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  line-height: 75px;
  height: 100%;
  vertical-align: middle;
}

.header-link:hover,
.support-header-link,
.header-link_hover {
  border-bottom: 5px solid #DF1B12;
  transition: border .2s, padding .2s, opacity .2s, color 0.4s;
  color: #000;
  position: relative;
  cursor: pointer;
}

.balanceFlex {
  display: flex;
  flex: 1;
}

.nav-icon:hover .nav-icon-anchor {
  background: #f2f2f2;
}

.nav-icons #user div {
  margin-bottom: 0;
}

.nav-icons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-items: center;
  justify-content: flex-end;
  align-items: center;
  height: 64px;
}

@media (min-width: 60em) {
  .nav-icons {
    height: 80px;
    display: flex;
    justify-items: center;
    justify-content: flex-end;
    align-items: center;
  }
}

#menu-text-accounts {
  display: none;
}

@media (min-width: 60em) {
  #menu-text-accounts {
    display: flex;
  }
}

.nav-icons a,
.nav-icons #menu-text-accounts .nav-icon-anchor {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 12px 20px;
}

@media (min-width: 48em) {

  .nav-icons a,
  .nav-icons #menu-text-accounts .nav-icon-anchor {
    height: 40px;
  }
}

.nav-icon {
  justify-content: center;
  align-items: center;
  fill: #000;
  padding: 0;
  font-size: 12px;
  letter-spacing: .2px;
  color: #000;
  font-weight: bold;
  height: 64px;
}

@media (min-width: 48em) {
  .nav-icon {
    height: 80px;
  }
}

#menu-text-accounts.nav-icon {
  margin-right: 0;
}

.nav-icon span {
  margin-left: 8px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.nav-icon#menu-text-cart, .nav-icon#menu-text-search {
  display: none;
}

.nav-icon#menu-text-cart, .nav-icon#menu-text-search {
  display: none;
}

.gap-8 {
  gap: 8px;
}

@media (min-width: 60em) {
  .nav-icon#menu-text-cart, .nav-icon#menu-text-search {
    display: flex;
  }

  .nav-icon#menu-text-cart span, .nav-icon#menu-text-search span {
    display: none;
  }

  .nav-icons #menu-text-search .nav-icon-anchor, .nav-icons #menu-text-cart .nav-icon-anchor {
    padding: 12px 5px;
  }
}

@media (min-width: 80em) {
  .nav-icon#menu-text-cart, .nav-icon#menu-text-search {
    display: flex;
  }

  .nav-icon#menu-text-cart span, .nav-icon#menu-text-search span {
    display: block;
  }

  .nav-icons #menu-text-search .nav-icon-anchor, .nav-icons #menu-text-cart .nav-icon-anchor {
    padding: 12px 20px;
  }
}

.nav-icon svg path {
  color: #f2f2f2;
}

.nav-icon-anchor {
  color: #000;
  border-radius: 20px;
  transition: all .3s;
}

.nav-wrapper {
  display: none;
  position: fixed;
  left: 0px;
  top: 81px;
  background-color: #fff;
  height: 80px;
}

.nav-main-items {
  display: inline-block;
  text-align: center;
}

.nav-main-hamburger {
  fill: #000;
  cursor: pointer;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-end;
}

.header__mobile-menu-toggle {
  width: 36px;
  height: 64px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header__hamburger {
  width: 18px;
  height: 2px;
  background: #000;
  justify-content: center;
  align-items: center;
  transition: background .5s, width .5s;
  display: flex;
  position: absolute;
}

/* For Navbar's See All button */

.header_see_all .mobile-menu-list__link-text .menu-link__main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header_see_all .mobile-menu-list__link-text .menu-link__main .menu-link__title {
  margin-bottom: 0;
  color: #DF1B12;
}

/* End of "For Navbar's See All button" */

.header__hamburger:before,
.header__hamburger:after {
  content: "";
  width: 18px;
  height: 2.3px;
  transform-origin: 0;
  background: #000;
  transition: background .5s, transform .5s;
  position: absolute;
}

.header__hamburger:before {
  top: -6px;
}

.header__hamburger:after {
  bottom: -6px;
}

.header__hamburger--open:before {
  transform: translateX(-5px)translateY(-1px)rotate(45deg)
}

.header__hamburger--open:after {
  transform: translateX(-5px)translateY(0px)rotate(-45deg);
}

.header__hamburger--open {
  width: 0;
}

.header__subdomain {
  display: block;
  padding: 0;
  padding-left: 12px;
  border-left: 1px solid #e5e5e5;
  display: block;
  font-size: 12px;
}

.logo_section {
  display: flex;
  align-items: center;
  column-gap: 16px;
  flex: 1;
}

@media (min-width: 60em) {
  .nav-text-links {
    display: flex;
  }

  .nav-text-links li {
    text-align: center;
    padding-left: 0px;
  }

  .nav-wrapper {
    display: block;
    position: static;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    background-color: transparent;
    height: 80px;
    flex: 1;
  }

  .header-main__close,
  .nav-main-hamburger,
  .header-main__panel .header-main__icon-items,
  .header-main__panel__logo {
    display: none;
  }

  .header__subdomain {
    font-size: 16px;
    padding-left: 16px;
  }

  .header__subdomain_text {
    font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 200;
  }
}

.header-inner {
  position: relative;
  align-items: center;
  display: grid;
  grid-template-columns: 4fr 1fr;
  height: 64px;
}

.header__subdomain_text {
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 21px;
  font-weight: 200;
}

@media (min-width: 48em) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    height: 80px;
  }
}

@media (max-width: 48em) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    height: 64px;
  }
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 60em) {
  .user-nav {
    position: relative;
  }
}

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"]>a {
  display: block;
  margin: 20px;
}

.nav-wrapper a,
.nav-wrapper .header-link-href {
  border: 0;
  color: inherit;
  font-size: 18px;
  width: 100%;
  text-align: center;
  color: #000;
}

@media (min-width: 60em) {

  .nav-wrapper a,
  .nav-wrapper .header-link-href {
    display: inline-block;
    font-size: 14px;
  }
}

.header__menu {
  width: 100%;
  position: absolute;
  top: auto;
  left: 0;
  transform: translateY(0);
  display: block;
}

.mobile-menu {
  top: 64px;
  left: 0;
  height: 0px;
  transition: height 700ms;
  background-color: #F2F2F2;
  z-index: 10;
  width: 100vw;
  color: #000;
  fill: #000;
  flex-direction: column;
  display: flex;
}

@media (min-width: 47.99em) {
  .mobile-menu {
    top: 80px;
  }
}

.mobile-menu__wrapper {
  display: none;
}

.header--open .mobile-menu {
  height: calc(100dvh - 65px);
  transition: height 700ms;
}

.mobile-menu-list {
  list-style-type: none;
}

.mobile-menu__actions {
  background-color: #FFF;
  bottom: calc(15px + (100vh - 100%));
  justify-content: space-between;
  display: none;
  width: 100%;
  height: 48px;
  position: fixed;
}

@-moz-document url-prefix() {
  .mobile-menu__actions {
    bottom: calc(25px + (100vh - 100%));
  }
}

@supports (-webkit-touch-callout: none) {

  /* CSS specific to iOS devices */
  .mobile-menu__actions {
    bottom: calc(35px + (100vh - 100%));
  }
}

@supports not (-webkit-touch-callout: none) {

  /* CSS specific to non iOS devices */
  .mobile-menu__actions {
    bottom: calc(5px + (100vh - 100%));
  }
}

.header--open .mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
}

@media (min-width: 60em) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu__actions .mobile-menu__login,
.mobile-menu__actions .mobile-menu__basket {
  width: 100%;
}

.mobile-menu__login .login {
  margin: 0;
  padding: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu__column {
  margin: var(--gutter);
}

.mobile-menu__items {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.mobile-menu-list {
  /*     margin: 0; */
  padding: 0;
  list-style: none;
}

.mobile-menu-list__item,
.menu-link__title {
  letter-spacing: .2px;
  cursor: pointer;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 28px;
}

@media (max-width: 79.99em) {
  .mobile-menu-list__item .menu-link__title {
    /* letter-spacing: -.46px; */
    line-height: 26px;
  }
}

@media (max-width: 47.99em) {
  .mobile-menu-list__item .menu-link__title {
    /* letter-spacing: -.25px; */
    line-height: 24px;
  }
}

.mobile-menu-list__link,
.mobile-menu-list__link-text {
  color: inherit;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.mobile-menu-list__link {
  padding-top: 16px;
}

#mobile_header_submenu_5 {
  padding-top: 16px;
}

.mobile-menu-list__link-text {
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .2px;
  line-height: 18px;
}

.mobile-menu__basket,
.mobile-menu__login {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mobile-menu__basket {
  border-right: 1px solid #e5e5e5;
}

.login-button__text {
  color: #000;
}

.mobile_submenu,
.mobile-submenu__column {
  background-color: #f2f2f2;
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  transform: translate(100vw);
  transition: transform .2s;
}

.mobile_submenu.mobile_submenu--open,
.mobile-submenu__column.mobile_submenu--open {
  transform: translate(0vw) !important;
  transition: transform .2s;
}

.mobile-menu-back,
.mobile-submenu-back {
  letter-spacing: -.25px;
  background: #fff;
  align-items: baseline;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  display: flex;
}

.mobile-menu-back__category {
  cursor: pointer;
  padding: var(--gutter);
  align-items: center;
  transition: color .2s ease-in-out;
  display: flex;
}

.mobile-menu-back__category svg {
  margin-bottom: 2px;
  margin-right: 16px;
}

.mobile-menu-back__line {
  width: 1px;
  height: 16px;
  background: #e5e5e5;
  margin: 0 24px;
}

.menu-link svg {
  fill: #000;
  margin: 0 0 0px 4px;
}

[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover,
.nav-wrapper a:focus,
.nav-wrapper a:active {
  background-color: transparent;
  color: #000;
}

.login {
  padding: 12px 16px;
  margin: 14px 0px 14px 12px;
}

.menu-link.login {
  padding: 0;
  margin: 0;
}

.nav-wrapper a.login {
  display: inline-block;
}

.nav-wrapper .menu-button {
  background: none;
  border: 0;
  color: #000;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

@media (min-width: 60em) {
  .nav-wrapper .menu-button {
    display: none;
  }
}

.nav-wrapper .menu-button .icon-menu {
  vertical-align: middle;
  width: 13px;
}

[dir="rtl"] .nav-wrapper .menu-button {
  margin-left: 10px;
  margin-right: 0;
}

.nav-wrapper .menu-button:hover,
.nav-wrapper .menu-button:focus,
.nav-wrapper .menu-button:active {
  background-color: transparent;
  color: #df1b12;
}

.header_search {
  padding: 24px 0px;
  background-color: #F2F2F2;
}

.header_search h1 {
  font-size: 25px;
}

@media (min-width: 769px) {
  .header_search h1 {
    font-size: 45px;
  }

  .header_search {
    padding: 80px 0px;
  }
}

/***** User info in header *****/

img#user-avatar.user-avatar {
  display: none;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 60em) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info>[role="button"] {
  border: 0;
  color: #000;
  fill: #000;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
  background-color: transparent;
}

.user-info>[role="button"]:hover,
.user-info>[role="button"]:focus {
  color: #df1b12;
  background-color: transparent;
}

.user-info>[role="button"]::after {
  display: none;
}

[dir="rtl"] .user-info>[role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

/***** User avatar *****/

.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent::before {
  background-color: #000000;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #000000;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

.menu__columns {
  position: absolute;
}

.menu__column {
  display: none;
  color: #000;
  fill: #000;
  --backgroundColor: #fff;
  --coloredFontColor: #666;
  --subtleBorderColor: #e5e5e5;
  width: max-content;
  top: 0;
  padding: 28px 40px;
  background-color: #fff;
  flex-direction: column;
  position: relative;
  left: -40px;
  box-shadow: 0 30px 50px #0000001a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.menu__column#menu-list-accounts {
  left: 0;
}

.menu__column_visible {
  display: block;
}

.menu-list__item {
  letter-spacing: -.25px;
  cursor: pointer;
  align-items: center;
  font-size: 14px;
  display: flex;
  transform: translate3d(0px, -5px, 0px);
  opacity: 0;
  transition: all 0.5s;
}

.menu-list__item_visible {
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
  transition: all 0.5s;
}

.menu-list__item .menu-link {
  display: flex;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-link__title {
  letter-spacing: .2px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  line-height: 18px;
  font-weight: bold;
  color: #000;
}

.menu-link__title:hover {
  color: #DF1B12;
  transition: color .2s;
}

.menu-list__item .menu-link__title {
  cursor: pointer;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-size: 14px;
  display: flex;
}

/*** End header ***/
/*** internet explorer warning - Lorna *****/

.colored-article__content {
  text-align: justify;
  margin: 0 auto;
  width: 80%;
}

.colored-article__body {
  color: #666;
}

/*** End of internet explorer warning - Lorna *****/

/***** Footer *****/

.footer {
  margin-top: 0;
  padding: 0;
  background-color: #000000;
}

.dropdown_menu_add_on {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: #000 !important;
  padding: 40px 50px 10px 50px !important;
  border-top: 1px solid #666 !important;
}

.dropdown_menu_add_on a {
  color: #CCC !important;
  transition: all 0.25s ease 0s;
}

.dropdown_menu_add_on a:hover {
  background: unset !important;
  color: #e5e5e5 !important;
}

.footer .footer__link-groups a {
  color: #CCC;
  transition: none;
  display: flex;
  align-items: center;
  transition: color .3s;
}

.footer .footer__link-groups a:hover {
  color: #FFF;
  transition: color .3s;
}

.footer-inner,
.footer_copyright {
  margin: 0 auto;
  justify-content: space-between;
  font-size: 14px;
  color: #999;
}

.footer_copyright {
  padding-top: 40px;
  display: flex;
}

.footer-link-group__label {
  margin-bottom: 16px;
}

.footer__link-group {
  margin-left: 0;
}

@media (min-width: 48em) {
  .footer__link-group {
    margin-left: 0;
    grid-column: span 3;
  }
}

@media (min-width: 60em) {
  .footer__link-group {
    grid-column: span 2;
  }
}

.footer-link-group__item {
  text-transform: none;
  list-style: none;
  padding: 10px 0;
  line-height: 12px;
  margin-bottom: 8px;
}

@media (min-width: 48em) {
  .footer-link-group__item {
    padding: 0;
  }
}

.footer-horizontal-links-list {
  display: flex;
  flex-direction: row;
  padding-inline-start: 0;
}

.footer-link-group__items {
  padding-left: 0;
  margin-block-start: 0;
}

.footer-social-items .footer-link-group__item {
  margin-bottom: 0;
}

.footer-link-group__link {
  color: #CCC;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  transition: color .3s;
}

.footer-link-group__link:hover {
  color: #FFF;
  transition: color .3s;
}

/* Footer link groups grid begin  - Levitt */

.text--subheadline2,
.text .subheadline2 {
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.footer__content--grid {
  margin-left: auto;
  margin-right: auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
}

@media (min-width: 48em) {
  .footer__content--grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 60em) {
  .footer__content--grid {
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: var(--gutter);
  }
}

.footer_container {
  margin: 0 auto;
  padding-left: 0;
  grid-template-columns: repeat(1, 1fr);
  display: grid;
  padding: 24px 0;
  margin-bottom: 8px;
}

@media (min-width: 48em) {
  .footer_container {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 40px;
  }
}

@media (min-width: 60em) {
  .footer_container {
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: var(--gutter);
  }
}

.footer__content {
  padding: 40px 0;
  padding-bottom: 0;
}

.footer-social {
  grid-column: 1/3;
  grid-row: 1;
}

@media (min-width: 48em) {
  .footer-social {
    grid-column: 1/3;
    grid-row: 1/4;
  }
}

@media (min-width: 60em) {
  .footer-social {
    grid-area: 1/span 2/span 2;
  }
}

.footer-social-items {
  margin: auto;
}

.footer-social-items .footer-link-group__items {
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

@media (min-width: 48em) {
  .footer-social-items .footer-link-group__items {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.footer-social .footer-link-group__label {
  display: none;
}

@media (min-width: 48em) {
  .footer-social .footer-link-group__label {
    display: inline-block;
  }
}

.footer-social .footer-link-group__link span {
  display: none;
}

@media (min-width: 48em) {
  .footer-social .footer-link-group__link span {
    display: inline-block;
  }
}

.footer-social .footer-link-group__item {
  padding: 0;
}

.footer__horizontal-links-wrapper {
  border-top: 1px solid #333;
}

.footer__horizontal-links--middle .footer-horizontal-links-list {
  padding-top: 8px;
  padding-bottom: 4px;
}

@media (min-width: 60em) {
  .footer__horizontal-links--middle .footer-horizontal-links-list {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.footer-horizontal-links-list {
  margin-block-start: 0;
  margin-block-end: 0;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

@media (min-width: 60em) {
  .footer-horizontal-links-list {
    gap: 24px 16px;
  }
}

.footer-horizontal-links-list__link {
  color: #FFF;
  font-family: Proxima Nove, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.footer-horizontal-links-list__link:hover {
  color: #fff;
  transition: none;
}

.footer-language-selector {
  cursor: pointer;
  color: currentColor;
  color: #CCC;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 16px;
  transition: color .3s;
  /*     display: flex; */
}

.footer-language-selector:hover {
  color: #FFF;
}

.footer-language-selector .dropdown-toggle::after {
  margin-left: 10px;
}

@media (min-width: 60em) {
  .footer-language-selector {
    padding-top: 0;
  }
}

.language-selector .dropdown-menu {
  padding: 0 !important;
  position: static;
  border-top: none !important;
  min-width: unset;
  font-size: 14px;
}

.language-selector .dropdown-toggle:focus {
  text-decoration: none;
}

.footer__footnote {
  padding-bottom: 40px;
  font-family: proxima_nova_regular, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #CCC;
}

@media (min-width: 80em) {
  .footer__footnote {
    position: absolute;
    top: 40px;
    right: 0;
  }
}

.footer__horizontal-links--bottom .footer-horizontal-links-list {
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 60em) {
  .footer__horizontal-links--bottom .footer-horizontal-links-list {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer__horizontal-links {
  position: relative;
}

.social_image {
  width: 20px;
  height: 20px;
  color: #000;
  background: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
  margin-right: 0px;
}

@media (min-width: 48em) {
  .social_image {
    margin-right: 8px;
  }
}

.social_image_svg {
  width: 12px;
  height: 14px;
  /* To center the icon vertically */
}

.social_image svg {
  width: 100%;
  height: 100%;
}

.social_image path {
  fill: #000;
}

/***** End Footer *****/

/***** Breadcrumbs *****/

.breadcrumbs {
  margin: auto 0;
  padding: 0;
  background-color: transparent;
  line-height: 14px;
}

.breadcrumbs li {
  display: inline;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  vertical-align: middle;
  line-height: 24px;
  color: #666 !important;
}

.breadcrumbs li a {
  color: #666 !important;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  vertical-align: text-bottom;
}

.breadcrumbs li a {
  background-color: transparent;
}

.chevron_mac::before {
  margin: 0 16px;
  content: url(/hc/theming_assets/01JJP8YHPFP8NPFZDPATDRCJ63);
  fill: #999999;
  vertical-align: text-bottom;
  line-height: 24px;
}

.chevron_win::before {
  margin: 0 16px;
  content: url(/hc/theming_assets/01JJP8YHPFP8NPFZDPATDRCJ63);
  fill: #999999;
  vertical-align: middle;
  line-height: 24px;
}

.chevron_general::before {
  margin: 0 16px;
  content: url(/hc/theming_assets/01JJP8YHPFP8NPFZDPATDRCJ63);
  fill: #999999;
  vertical-align: initial;
  line-height: 24px;
}

.breadcrumbs li:last-child a,
.breadcrumbs li:last-child {
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

/***** Search field *****/

.search {
  position: relative;
}

.search input[type="search"] {
  border: none;
  border-radius: 20px;
  box-sizing: border-box;
  color: #4a4c4c;
  height: 60px;
  padding: 10px 16px 10px 20px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .search input[type="search"] {
    font-size: 20px;
  }
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  color: #000;
}

.search input[type="submit"] {
  top: 6px;
  right: 6px;
  position: absolute;
  min-width: 0;
  max-width: 100px;
  padding: 0 5px;
}

[dir="rtl"] .search::right {
  right: 15px;
  left: auto;
}

.search-full input[type="search"] {
  border: 1px solid #fff;
}

.search_header_search {
  background-color: #f2f2f2;
}

.header_search h1 {
  font-size: 24px;
}

@media (min-width: 768px) {

  .header_search h2,
  .header_search form {
    margin-top: 0px;
  }

  .header_search h1 {
    font-size: 30px;
  }
}

.header_search form {
  margin-left: 0;
}

.header_search .search input[type="search"] {
  height: 80px;
  padding: 14px 80px;
  font-size: 24px;
  color: #000 !important;
  border-radius: 50px;
}

.header_search .search input[type="search"]::placeholder {
  color: #000 !important;
  font-weight: bold;
  opacity: 1;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]:focus::placeholder {
  color: #e5e5e5 !important;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]::-moz-placeholder {
  color: #000 !important;
  font-weight: bold;
  opacity: 1;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]:focus::placeholder {
  color: #e5e5e5 !important;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]:-moz-placeholder {
  color: #000 !important;
  opacity: 1;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]:focus::placeholder {
  color: #e5e5e5 !important;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]::-webkit-input-placeholder {
  color: #000 !important;
  opacity: 1;
  transition: 300ms ease all;
}

.header_search .search input[type="search"]:focus::placeholder {
  color: #e5e5e5 !important;
  transition: 300ms ease all;
}

.header_search form .title {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  position: absolute;
  padding: 0;
  background: none;
  border: 0;
  outline: 0;
  left: 80px;
  pointer-events: none;
  margin-top: 30px;
  transition: 300ms ease all;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
}

.header_search form:has(> input[type="search"]:focus) .title {
  color: #4a4c4c;
  transition: 300ms ease all;
  font-size: 12px;
  margin-top: 8px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
}

.header_search form .title.has-value {
  color: #4a4c4c;
  transition: 300ms ease all;
  font-size: 12px;
  margin-top: 8px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
}

.search_icon {
  position: absolute;
  top: 50%;
  padding: 0;
  background: none;
  border: 0;
  outline: 0;
  left: 40px;
  margin-top: -7px;
}

/***** Hero component *****/

.hero {
  background-color: #8dc3eb;
  background-image: url("https://bynder-public-eu-central-1.s3.amazonaws.com/media/4087735D-27A0-4FA8-83683B755FDF23EB/59F92549-D1C7-4BBC-9CCA273C42199D80/webimage-F9331C0C-0D17-4A0F-9AA07F84DD413191.jpg");
  color: #fff;
  background-position: center;
  background-size: cover;
  margin-bottom: 0 !important;
}

.hero-inner {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  /* WebKit-based browsers will ignore this. */
  min-height: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  height: -moz-available !important;
  height: fill-available;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px 0 24px 0;
}

.section-page.page-header {
  padding: 0px 0 24px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin: auto;
  font-size: 24px;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
}

.page-header-description {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  min-height: 30px;
  padding: 12px 0;
  align-items: center;
}

@media (min-width: 768px) {
  .sub-nav {
    padding: 24px 0;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/

/* Used in Homepage#categories and Community#topics */

.home_container {
  margin: 0 auto;
  padding: 0;
}

ul.blocks-list {
  margin-block-start: 0;
}

.blocks-list {
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
    padding: 0;
    max-width: 1660px;
  }
}

.blocks-item {
  border-radius: 0px;
  box-sizing: border-box;
  color: #000;
  text-align: left;
  padding: 40px;
  background-color: #fff;
}

.blocks-item .button {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: block;
  width: 50px;
  height: 50px;
}

.blocks-item .button:after {
  content: url(/hc/theming_assets/01JJP8YCH8XW3Z3NF7BN18A47D);
  position: absolute;
  top: 16.5px;
  left: 16.5px;
  width: 20px;
  height: 20px;
  color: #fff;
}

.blocks-item:hover *,
.blocks-item:focus *,
.blocks-item:active * {
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #000000;
}

.blocks-item-link {
  color: #000;
  padding: 20px 0px;
  min-height: -webkit-fill-available;
  top: 0;
}

.blocks-item-link:hover,
.blocks-item-link:focus,
.blocks-item-link:active {
  text-decoration: none;
}

/***** Homepage *****/

.section h1,
.homepage-title h1 {
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
  font-size: 24px;
}

@media (min-width: 768px) {

  .section h1,
  .homepage-title h1 {
    font-size: 45px;
  }
}

.section p {
  flex: 1;
  text-align: left;
  margin-bottom: 20px;
}

.hero_login {
  color: #fff;
  border: none;
  background-color: transparent;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  text-transform: none;
  text-decoration: underline;
}

.hero_login:hover {
  border: none;
  background-color: transparent;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  text-transform: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#home-section h2 {
  text-align: center;
  color: #000;
  padding: 60px 0;
  margin-bottom: 0;
}

.search_link {
  color: #fff;
  text-decoration: underline;
  text-transform: none;
}

.search_link:hover {
  transition: all 0.3s ease-in-out;
}

/***** Promoted articles *****/

.promoted-articles-box {
  z-index: 100;
  /* Just above the basic page elements*/
  position: fixed;
  top: 96px;
  right: 16px;
  left: auto;
  transition-property: position, right, bottom;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  display: flex;
  width: 90%;
  min-height: 120px;

  border-radius: 20px;

  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 30px 50px 0 rgba(0, 0, 0, .1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

li.promoted-articles-item {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media (min-width: 768px) {
  .promoted-articles-box {
    width: 448px;
  }
}

.promoted_header {
  position: relative;
  background-color: #fff;
  color: #666;
  text-align: center;
  padding: 5px;
  width: 50px;
  margin-left: 1px;
  border-radius: 20px 0px 0px 20px;
}

.promoted_header h4 {
  margin-bottom: 0;
  color: #fff;
}

.close {
  position: absolute;
  right: 20px;
  top: 40%;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}

.close:hover {
  transform: rotate(90deg);
  transition: all 0.3s;
}

.close svg path {
  fill: #DF1B12
}

ul.article-list.promoted-articles {
  list-style: none;
  padding: 16px;
  margin: 0;
  background-color: #fff;
  border-left: 1px solid #e5e5e5;
  color: #666;
  width: 90%;
  border-radius: 0px 20px 20px 0px;
  min-height: 100px !important;
}

@media (min-width: 768px) {
  ul.article-list.promoted-articles {
    width: 400px;
  }
}

ul.article-list.promoted-articles a {
  text-transform: none;
  padding: 0;
}

.promoted-articles {
  display: flex !important;
  flex-direction: column;
  flex-wrap: wrap;
}

.promoted-articles-item {
  flex-direction: column;
  color: #666;
}

li.promoted-articles-item {
  display: none;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    flex: 0 0 auto;
    width: fit-content;
  }

  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.title-promoted-articles-item {
  margin-bottom: 8px;
}

.promoted-articles-item a {
  text-decoration: none;
  align-items: center;
  display: flex;
  padding: 15px 0;
}

.promoted-articles-item .icon-lock::before {
  vertical-align: baseline;
}

.promoted-articles-item .red_animated_arrow {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 10px 9px;
  height: 30px;
  width: 30px;
  border-radius: 20px;
}

.promoted-articles-item .red_animated_arrow svg path {
  fill: #000 !important;
}

.promoted-articles-button {
  position: relative;
  display: flex;
  gap: 0px;
  align-items: center;
  width: auto;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.promoted-articles-button .read_more {
  display: inline-block;
  font-size: 14px;
  color: #000;
}

/***** Click through Announcements *****/

#left-arrow {
  position: absolute;
  left: 10px;
  top: 40%;
}

#right-arrow {
  position: absolute;
  right: 60px;
  top: 40%;
}

#left-arrow:after {
  font-family: "TomTom Icons";
  content: "left";
  position: absolute;
  cursor: pointer;
  color: #fff;
}

#right-arrow:after {
  font-family: "TomTom Icons";
  content: "right";
  cursor: pointer;
  color: #fff;
}

/***** End Click through Announcements *****/

/***** Minimize the announcements / promoted articles *****/

.minimize {
  transition: all 0.5s ease-in-out;
  right: -30px;
  border-right: none;
  width: 60px;
}

.minimize-articles {
  display: none !important;
  transition: all 0.5s ease-in-out;
}

.minimize-header {
  height: 150px;
  width: 60px;
  transition: all 0.5s ease-in-out;
  border-radius: 20px 0 0 20px;
}

.minimize-header:hover {
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
  cursor: pointer;
}

#promoted-arrow:after {
  content: "left";
  font-family: "TomTom Icons";
  color: #DF1B12;
  font-size: 16px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 5px;
  cursor: pointer;
}

/***** End Minimize the announcements / promoted articles *****/

/***** Community section in homepage *****/

.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01HZHDWY238WAYHXXQ3B6AH59D);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/

.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
}

.recent-activity-item-parent,
.recent-activity-item-link {
  margin: 6px 0;
  color: #000000;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {

  .recent-activity-item-parent,
  .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }

  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time,
.recent-activity-item-comment {
  color: #333;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-item-comment span::before {
  color: #000000;
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Category pages *****/
.category-page {
  background-color: #fff;
}

.category-container {
  display: block;
}

@media (min-width: 1024px) {
  .category-container {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .category-container {
    flex-direction: row;
  }
}

.category-search {
  width: 100%;
}

@media (min-width: 1024px) {
  .category-search {
    width: 50%;
  }
}

.category-content {
  margin-top: 0px;
  flex: 1;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 1;
  }
}

.category-bottom-body {
  background-color: #f2f2f2;
}

.section-tree,
.next-section-tree {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  padding-inline-start: 0;
}

.next-section-tree {
  margin-top: 80px;
}

/* @media (min-width: 768px) {
  .section-tree {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .section-tree {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
} */

.section-tree .section {
  background-color: #FFF;
  border-radius: 20px;
  padding: 0;
  border: 1px solid #f2f2f2;
  min-height: 490px;
  position: relative;
  box-shadow: 0px 0px 1px 1px #f2f2f2;

  display: flex;
  /* Adjesting below content */
  flex-direction: column;
}

.section-tree #important_section_block_1,
.section-tree #important_section_block_2 {
  padding: 0px;
  background-color: transparent;
  min-height: min-content;
}

.section-tree #important_section_block_1 {
  grid-column: 1;
  grid-row: 6;
}

.section-tree #important_section_block_2 {
  grid-column: 1;
  grid-row: 5;
}

@media (min-width: 768px) {
  .section-tree #important_section_block_1 {
    grid-column: 2;
    grid-row: 2;
    min-height: 520px;
  }

  .section-tree #important_section_block_2 {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (min-width: 1200px) {
  .section-tree #important_section_block_1 {
    grid-column: 3;
    grid-row: 2;
  }

  .section-tree #important_section_block_2 {
    grid-column: 3;
    grid-row: 1;
  }
}

.extra_block {
  color: #7a7e80;
}

.section-tree-title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 24px;
  display: flex;
  align-items: center;
}

.section-img {
  border-radius: 20px 20px 0 0;
  padding: 0;
  width: -webkit-fill-available;
}

.section-text-div {
  flex: 1; /* making it full height */
  display: flex;
  flex-direction: column;
  margin: 24px;
}

img.section-img.nds {
  min-width: 90px;
}

ul.article-list {
  padding-inline-start: 12px;
  list-style: disc;
  min-height: 260px;
  margin: 0 0 12px;
  color: #666;
  flex: 1; /* making it full height */
}

.section-tree-title a {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-transform: none;
}

.section-tree .see-all-articles {
  position: relative;
  font-size: 14px;
  color: #df1b12;
  font-family: 'Gilroy';
  font-weight: bolder;
  width: max-content;
  max-width: 80%;
}

.section-tree .see-all-articles .animated_arrow {
  right: -40px;
}

.section-tree .see-all-articles .animated_arrow_first,
.section-tree .see-all-articles .animated_arrow_second {
  padding-top: 5px;
}

.section-tree .see-all-articles .animated_arrow_first {
  margin-left: 12px;
}

.article-list-item {
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #bebebe;
}

.category-body .article-list-item {
  border-bottom: none;
}

.article-list {
  margin-bottom: 10px;
}

.article-list-item a {
  color: #666;
  text-transform: none;
  font-size: 16px;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  box-shadow: inset 0 -1px 0 0.01px #0000, inset 0 -1px;
}

.article-list-item a:hover {
  box-shadow: none;
  background-color: #6666661a;
}

.section-body .article-list-item a {
  font-size: 20px;
}

.article-list-item .icon-lock::before {
  vertical-align: baseline;
}

.icon-star::before {
  color: #000000;
  font-size: 18px;
}

.category-page .article-list li:nth-child(n+4) {
  display: none;
}

.section-tree .explore {
  position: absolute;
  cursor: pointer;
  background-color: #DF1B12;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  height: 30px;
  width: 30px;
  border-radius: 24px;
  margin-left: 10px;
}

.section-tree .explore_arrow {
  position: absolute;
}

.section-tree .animated_arrow svg {
  position: absolute;
  top: 10px;
  left: 10px;
}

.next-section-tree p {
  font-size: 16px;
  color: #666;
  margin: 24px 0;
}

.text-container {
  min-height: 120px;
}

.link-container {
  display: flex;
  align-items: center;
}

a.learn-more {
  font-size: 14px;
  font-family: 'Gilroy';
  font-weight: bold;
  color: #000;
  line-height: 16px;
}

.link-container svg {
  margin-left: 8px;
}

.section-description {
  display: none;
}

/* .app-category { // Comment becouse of CCWEBDEV-9139
  margin-top: 80px;
} */

.app-category h1 {
  font-size: 24px;
}

.app-category ul.article-list {
  min-height: 200px;
}

@media (min-width:1441px) and (max-width:1690px) {
  ul.article-list {
    min-height: 230px;
  }
}

@media (min-width:1200px) and (max-width:1360px) {
  ul.article-list {
    min-height: 300px;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  ul.article-list {
    min-height: 270px;
  }

  .article-list-item a,
  .next-section-tree p {
    font-size: 14px;
  }

  .section-tree,
  .next-section-tree {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section-tree-title a {
    font-size: 18px;
  }
}

@media (max-width:1199px) {
  .page-header {
    padding: 12px 0 24px;
  }

  .section-tree,
  .next-section-tree {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 0;
    margin-top: 0;
  }

  .section-description {
    display: block;
    min-height: 100px;
  }

  ul.article-list {
    display: none;
  }

  .section-body ul.article-list {
    display: block;
  }

  .category-content {
    margin-bottom: 0;
  }

  .app-category {
    margin-top: 0;
  }
}

@media (max-width:767px) {
  .page-header {
    padding: 12px 0 0;
  }

  .page-header h1 {
    font-size: 20px;
  }

  .section-tree .section {
    min-height: 0;
  }

  .section-text-div {
    margin: 12px;
  }

  .section-tree,
  .next-section-tree {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 0;
    margin-top: 0;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .category-content {
    margin-bottom: 0;
  }

  .section-tree .section-tree-title a {
    font-size: 14px;
  }

  .article-list-item a {
    font-size: 12px;
  }

  .section-description {
    font-size: 12px;
    min-height: 90px;
    color: #666;
  }

  .section-tree .see-all-articles {
    font-size: 12px;
  }

  ul.article-list {
    min-height: 225px;
  }

  .section-tree .explore {
    bottom: 10px;
    padding: 12px;
    height: 20px;
    width: 20px;
  }

  .next-section-tree {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 60px;
    padding: 40px 0;
  }

  .link-container {
    padding: 12px 0;
  }

  .next-section-tree p {
    margin: 12px 0;
  }

  .text-container {
    min-height: 0;
  }

  .section-tree .animated_arrow svg {
    top: 7px;
    left: 7px;
  }

  .app-category h1 {
    margin: 0;
    font-size: 20px;
  }

  .app-category .section-tree {
    padding: 0 0 24px 0;
  }

  .app-category .section-description {
    min-height: 40px;
  }

  .app-category .section-tree section:nth-child(1),
  .app-category .section-tree section:nth-child(2) {
    grid-column: span 2;
  }
}

/***** End Category pages *****/

/***** Section pages *****/

.section-body {
  background-color: #fff;
  margin-bottom: 80px;
}

.section-container {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex: auto;
}


.section-container h1 {
  text-align: left;
}


.section-content {
  flex: 1;
}

.section-content ul.article-list {
  padding-inline-start: 0px;
}

.section-content li.section-article {
  list-style-position: outside;
  margin-left: 24px;
}

@media (max-width: 767px) {
  .section-body {
    margin-bottom: 40px;
  }

  .section-container h1 {
    margin: 0;
    font-size: 24px;
  }

  .section-page.page-header {
    margin: 12px 0;
    padding: 0;
  }

  .section-content ul.article-list {
    display: block;
  }

  .section-content li.section-article {
    margin-bottom: 16px;
  }

  .section-body .article-list-item a {
    font-size: 16px;
  }
}

.main-div {
  display: flex;
}

.left-div {
  flex: 2;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

#section-page-header {
  background-color: #8dc3eb;
  color: #fff;
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

.section-list {
  margin: 40px 0;
}

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none;
}

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: #000000;
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  display: none;
}

li.section-article {
  font-size: 20px;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  line-height: 30px;
  padding: 0;
  margin-bottom: 24px;
  border-bottom: none;
  list-style: disc;
  color: #666;
  list-style-position: inside;
}

li.section-article::marker {
  font-size: 24px;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: start !important;
}

.section-search {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tomtom_home_section .animated_arrow_first,
.mydrive_section .animated_arrow_first {
  padding-top: 5px;
  margin-left: 10px;
}

.tomtom_home_section .animated_arrow_second,
.mydrive_section .animated_arrow_second {
  padding-top: 5px;
}

.tomtom_home_section p,
.mydrive_section p {
  color: #666;
  margin-top: 0;
}

.tomtom_home_section h2,
.mydrive_section h2 {
  margin: 0;
}

.main-div .pagination {
  display: none;
}

@media (max-width: 768px) {
  .main-div .pagination {
    display: block;
  }

  .pagination {
    display: none;
  }

  .main-div {
    display: block;
  }
}

.section-subscribe {
  align-self: center;
  margin-top: 10px;
}

.section-subscribe a.dropdown-toggle {
  background-color: #e5e5e5;
  color: #000 !important;
}

@media (min-width: 1024px) {
  .section-subscribe {
    align-self: flex-end;
  }
}

.form_block {
  margin: auto;
  background-color: #fff;
  max-width: 800px;
  padding: 50px;
  display: flex;
  align-items: center;
}

#golf_form_block {
  display: none;
}

.form_link_title {
  margin-bottom: 0px;
  margin-top: 0px;
}

.form_img {
  display: none;
  background-size: cover;
}

@media (min-width: 768px) {
  .form_img {
    display: block;
  }
}

.form_img img {
  width: 100px;
}

.form_text,
.form_link {
  padding: 20px;
  margin: auto;
}

.form_link {
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.form_link::before {
  font-family: "TomTom Icons";
  content: "\0028";
  color: #fff;
}

/***** End Section pages *****/

#default {
  background-color: #fff;
}

.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 100%;
    min-width: 640px;
  }
}

#default article h1,
#default article h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#default article li {
  line-height: 2;
}

.article-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header,
.ht-article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}

.article-avatar {
  margin-right: 10px;
}

.article-author {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */
  }
}

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role="button"] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  vertical-align: middle;
}

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

img {
  max-width: 100% !important;
}

.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul,
[dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul>ul,
.article-body ol>ol,
.article-body ol>ul,
.article-body ul>ol,
.article-body li>ul,
.article-body li>ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body a:visited {
  color: #81100a;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #333;
  font-style: italic;
  padding: 0 15px;
}

.article-body>p:last-child {
  margin-bottom: 0;
}

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}

.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.article-comment-count {
  color: #333;
  font-weight: 300;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count .icon-comments {
  color: #000000;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
  }
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}

/********** Article Satisfaction *************/

.article-vote,
.article-vote[aria-selected="true"] {
  background: #FFF !important;
  border: none;
  color: #000 !important;
  margin: 0 10px 0 10px;
  width: auto;
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-align: left;
  vertical-align: bottom;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 10px;
}

.article-vote::after {
  content: attr(title);
  color: #000;
  text-decoration: none;
}

.article-vote:focus {
  color: #bebebe;
}

.article-vote[aria-selected="true"]::before,
.article-vote[aria-selected="true"]::after {
  color: #000000;
}

#article-vote-up-select,
#article-vote-down-select {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #fff;
  vertical-align: middle;
}

@-moz-document url-prefix() {

  #article-vote-up-select,
  #article-vote-down-select {
    vertical-align: sub;
  }
}

.article-votes {
  display: block;
  visibility: hidden;
  z-index: 100;
  /* Pop up, above basic elements on page and web widget, but below the cookie bar and locale pop up */
  position: fixed;
  margin: auto;
  cursor: pointer;
  background-color: #4A4C4C;
  padding: 10px 50px 10px 10px;
  border: none;
  font-size: 18px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease-in-out;
  scroll-behavior: smooth;
  right: 0px;
  bottom: -100%;
  text-transform: none;
  border-radius: 20px;
}

.article-votes-visible {
  visibility: visible;
  bottom: 2.5%;
}

@media (min-width: 636px) {
  .article-votes {
    right: unset;
    left: 50%;
    margin-left: -250px;
    width: auto;
    min-width: 500px;
    /* bottom: 20px; */
    min-height: unset;
    padding: 10px 50px 10px 10px;
    line-height: 45px;
  }
}

#close_article {
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 50px;
  right: 0;
  padding: 12px;
  border-left: 1px solid #fff;
}

.cross {
  transition: 300ms ease all;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

@media (min-width: 636px) {
  .cross {
    transition: 300ms ease all;
    line-height: 50px;
    /* top: 27px; */
  }
}

.cross:hover {
  transform: rotate(90deg);
  transition: 300ms ease all;
}

.article-votes:hover {
  cursor: default;
}

.article-votes-question,
.article-votes-controls {
  display: inline-block;
  vertical-align: middle;
  height: inherit;
  /*line-height: 30px;*/
  margin: 0 10px;
}

.article-votes-count {
  display: block;
  width: 100%;
  line-height: 45px;
}

.article-votes-controls {
  margin: 10px 0px 0px 0px;
}

@media (min-width: 636px) {
  .article-votes-controls {
    margin: 0 10px 0px 10px;
  }
}

.article-vote-seperate,
.article-vote-divide {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.article-vote-divide {
  margin: 0 45px;
}

.article-vote-up::before,
.article-vote-down::before {
  position: absolute;
  top: 25px;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border-radius: 50%;
}

/* .article-vote-seperate::before {
    content: " ";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    position: relative;
    margin: 1px;
    background-color: #4a4c4c;
} */

.article-vote-seperate.active::before {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms;
  background-color: #4a4c4c;
}

/********** Article Satisfaction *************/

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: #000000;
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover,
.article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: #000000;
  color: #000000;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #000;
  border-color: #000;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
}

.sidenav-item {
  border-radius: 4px;
  color: #000000;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article,
.sidenav-item:hover {
  background-color: #000000;
  color: #000000;
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
  display: inline-block;
}

/***** Attachments *****/

/* Styles attachments inside posts, articles and comments */

.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: #000000;
  content: "\1F4CE";
  font-size: 15px;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #333;
}

/***** Social share links *****/

.share {
  padding: 0;
  white-space: nowrap;
}

.share li,
.share a {
  display: inline-block;
}

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: #333;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

.share a:hover {
  text-decoration: none;
}

.share a:hover::before {
  color: #000000;
}

.share-twitter::before {
  content: "\e901";
}

.share-facebook::before {
  content: "\e903";
}

.share-linkedin::before {
  content: "\e900";
}

/**** Articles ****/
/**** Get Started Article ***/
/* .gs-article-header {
  background-image: url("$assets-getstartedheader_desktop_opt-jpg");
} */
#Get_started h2.tt-get-started-step-title {
  background-image: url("/hc/theming_assets/01JJP8YFWCJT2SRQESK7W50QNH");
}

/**** End of Get Started Article ***/

#back-to-top {
  width: fit-content;
  cursor: pointer;
  background-color: #000;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  line-height: 16px;
  vertical-align: middle;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out,
    color 0.15s ease-in-out;
  margin: 20px auto;
}

#arrow-up {
  font-size: 50px;
  padding-bottom: -20px;
}

/******* Sub-footer *******/
.ts-sub-footer-wrapper {
  background-color: #f2f2f2;
  padding: 40px 0;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .ts-sub-footer-wrapper {
    background-color: #f2f2f2;
    padding: 80px 0;
  }
}

.sub_footer_header_otter {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .sub_footer_header_otter {
    margin-bottom: 80px;
  }
}

.sub_footer_items {
  display: grid !important;
  grid-template-columns: 100%;
  grid-column-gap: 0;
  grid-row-gap: 24px;
  padding-inline-start: 0;
  grid-auto-rows: 320px;
}

@media (min-width: 768px) {
  .sub_footer_items {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 80px;
    grid-auto-rows: 320px;
    padding-inline-start: 0;
    grid-column-gap: 80px;
  }
}

.sub_footer_item {
  padding: 24px;
  cursor: pointer;
  background-color: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .sub_footer_item {
    padding: 2em;
  }
}

.ts-sub-footer-box {
  padding: 30px 0;
  width: 320px;
  position: relative;
  margin: auto;
}

@media (min-width: 768px) {
  .ts-sub-footer-box {
    width: 45%;
    padding: 30px;
    margin: 0;
  }
}

@media (min-width: 1440px) {
  .ts-sub-footer-box {
    width: 20%;
    padding: 30px;
  }
}

.sub-footer-inner-box {
  margin-top: 20px;
}

.sbf_title {
  color: #000;
  text-decoration: none;
  text-transform: none;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

.ts-sub-footer-text {
  color: #000;
  text-decoration: none;
  text-transform: none;
}

.ts-sub-footer-text {
  width: 100%;
  color: #4a4c4c;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .ts-sub-footer-text {
    width: 50%;
  }
}

.ts-sub-footer-text p {
  margin: 0 !important;
}

.sub_explore {
  position: absolute;
  bottom: 35px;
  line-height: 1;
}

.sub_explore::after {
  content: url(/hc/theming_assets/01JJP8YHXYFR3AKVPRV8EG6RWA);
  vertical-align: middle;
  margin-left: 14px;
  position: absolute;
  margin-top: 0;
  line-height: 1;
}

@-moz-document url-prefix() {
  .sub_explore::after {
    position: relative;
    top: -2px;
  }
}

.sbf_button {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.sub_footer_header {
  font-size: 24px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 768px) {
  .sub_footer_header {
    font-size: 36px;
  }
}

.ts-sub-footer-box:hover,
.ts-sub-footer-box img {
  cursor: pointer;
}

#subfooter_user_manual {
  background: url($assets-sbf_manuals_desktop_opt-jpg);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

#bongo_open {
  background-color: #fff;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

#subfooter_video {
  background: url($assets-sbf_videos_desktop_opt-jpg);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

#subfooter_community {
  background: url($assets-sbf_community_desktop_opt-jpg);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

/******** End of sub-footer ******/

/*** Video Block ***/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ct-video-block,
.video-block {
  max-width: 640px;
}

/*** Video Block ***/
/***** Comments *****/
/* Styles comments inside articles, posts and requests */

.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #333;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: #000000;
}

.comment-sorter {
  display: block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: #333;
  font-weight: 300;
  font-size: 13px;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid #000000;
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }

  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs+textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: #000000;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

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

.comment-body ul,
.comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .comment-body ul,
[dir="rtl"] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.comment-body ul>ul,
.comment-body ol>ol,
.comment-body ol>ul,
.comment-body ul>ol,
.comment-body li>ul,
.comment-body li>ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body a:visited {
  color: #81100a;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #333;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/

/* Used in article comments, post comments and post */

.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

.vote a:active,
.vote a:hover,
.vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #333;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
  color: #000000;
}

.vote-up::before,
.vote-down::before {
  color: #333;
  font-size: 24px;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: #000000;
}

.vote-voted:hover::before {
  color: #000;
}

/***** Actions *****/

/* Styles admin and en user actions(edit, delete, change status) in comments and posts */

.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before,
.actions .dropdown-toggle:focus::before,
.actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #333;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Status labels *****/

/* Styles labels used in posts, articles and requests */

.status-label {
  background-color: #8dc3eb;
  border-radius: 0px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
  text-transform: uppercase;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
}

.status-label:hover,
.status-label:active,
.status-label:focus {
  text-decoration: none;
}

.status-label-pinned,
.status-label-featured,
.status-label-official {
  background-color: #df1b12;
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-not-planned,
.status-label-closed {
  background-color: #e5e5e5;
  color: #333;
}

.status-label-pending {
  background-color: #fcd530;
  text-align: center;
}

.status-label-open {
  background-color: #df1b12;
}

.status-label-solved {
  background-color: #68737d;
}

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

.status-label-hold {
  background-color: #000;
}

/* Navigation element that collapses on mobile */

.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav {
    flex-direction: row;
  }
}

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle::after {
  content: "\25BE";
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid #000000;
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
  padding-inline-start: 0;
}

#accounts_header {
  font-weight: bold;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
    justify-content: center;
  }

  #accounts_header {
    position: absolute;
    left: 0;
  }
}

.collapsible-nav-list li {
  color: #000000;
  line-height: 45px;
  order: 1;
}

.current {
  border-bottom: solid 5px #DF1B12;
  transition: border .2s, padding .2s, opacity .2s, color 0.4s;
}

#repairs_header {
  cursor: pointer;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }

  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }

  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: #000000;
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 5px solid #DF1B12;
    transition: border .2s, padding .2s, opacity .2s, color 0.4s;
  }

  .collapsible-nav-list li:hover a {
    text-decoration: none;
  }
}

.collapsible-nav-list li:not([aria-selected="true"]) {
  display: none;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:not([aria-selected="true"]) {
    display: block;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid #000000;
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #000000;
}

.collapsible-nav[aria-expanded="true"] .collapsible-nav-toggle::after {
  content: "\2715";
}

.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]) {
  display: block;
}

/* Sidebar navigation that collapses on mobile */

.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(45px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid #000000;
}

.collapsible-sidebar-body {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-toggle::after {
  content: "\2715";
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

/***** My activities *****/
.my-activities-header H1 {
  font-size: 18px;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .my-activities-header H1 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .my-activities-nav {
    margin-bottom: 60px;
  }
}

.my-activities-sub-nav {
  margin-bottom: 30px;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
  color: #000;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
    font-weight: bold;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

.my-activities-table td:first-child:hover {
  cursor: pointer;
}

#cs_MyRepair_Details.my-activities-table td:first-child:hover {
  cursor: auto;
}

@media (min-width: 1024px) {

  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

#cs_MyRepair_Details.my-activities-table td:not(:first-child) {
  display: table-cell;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
#new_requests_page {
  background-color: #F2F2F2;
}

.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.requests-table-toolbar input::placeholder {
  color: #000;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .search {
    margin-bottom: 0px;
  }
}

.requests-table-toolbar .search input[type="search"] {
  border: 1px solid #BEBEBE;
  border-radius: 50px;
  font-size: 14px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
}

.requests-table-toolbar .search input[type="search"]:placeholder {
  color: #000;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
  font-size: 14px;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
}

#request-status-select:focus-visible,
#quick-search:focus-visible {
  border: solid 1px #00A65E;
  outline: none;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }

  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  height: 56px;
  margin-bottom: 30px;
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {

  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }

  [dir="rtl"] .requests-table-toolbar .organization-subscribe,
  [dir="rtl"] .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: #000000;
  color: #000000;
}

.requests-table-toolbar+.requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar+.requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar+.requests-search-info+.requests {
  margin-top: 20px;
}

.requests-table-toolbar+.requests {
  margin-top: 40px;
}

.requests {
  margin-bottom: 20px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

.requests-table-info a {
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/***** Pagination *****/

.pagination {
  margin-top: 20px;
  text-align: center;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.pagination * {
  display: inline-block;
}

.pagination ul {
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding-inline-start: 0px;
}

.pagination .pagination_link {
  display: flex;
  flex-direction: row;
}

.pagination li {
  border-radius: 0px;
  float: left;
  border-right: 1px solid #e5e5e5;
  color: #000;
}

.pagination li:last-child {
  border-right: none;
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) span,
.pagination li:hover:not(.pagination-current) a {
  color: #DF1B12;
  text-decoration: none;
}

.pagination a,
.pagination span {
  font-size: 15px;
  color: #666;
  padding: 4px 8px;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-weight: lighter;
}

@media (min-width: 768px) {

  .pagination a,
  .pagination span {
    font-size: 14px;
    padding: 4px 12px;
  }
}

.pagination-current a,
.pagination-current span {
  color: #DF1B12;
  cursor: default;
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last a,
.pagination-next a {
  color: #DF1B12;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
}

/***** Metadata *****/

.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #333;
  font-size: 13px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/

[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-toggle::after,
.collapsible-sidebar-toggle::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak-as: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.search::before {
  font-family: "TomTom Icons";
  font-style: normal;
  font-weight: normal;
  speak-as: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/***** Search results *****/

.search-results-container {
  background-color: #fff;
}

.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

.search-results-sidebar {
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}

.search-results-sidebar .sidenav-item:hover,
.search-results-sidebar .sidenav-item[aria-selected="true"] {
  background-color: #e9ebed;
  color: inherit;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #999;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: #df1b12;
}

.search-results-sidebar .see-all-filters[aria-hidden="true"] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: " \2304";
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

.search-results-list {
  margin-bottom: 25px;
  color: #000;
  padding-left: 0px;
}

.search-results-list>li {
  padding: 20px 0;
  list-style: none;
  border-bottom: 1px solid #ddd;
}

.search-results-list>li:first-child {
  border-top: 1px solid #ddd;
}

.search-results-list>li h2 {
  margin-bottom: 0;
}

.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
  padding-left: 80px;
}

@media (min-width: 1024px) {
  .search-results .meta-group {
    display: flex;
  }
}

.search-results .meta-group>li {
  display: block;
}

@media (min-width: 1024px) {
  .search-results .meta-group>li {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .search-results .meta-group li:first-child {
    flex: 1;
  }
}

.search-results .meta-group .meta-data {
  color: inherit;
}

[dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-right: 20px;
}

[dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-left: 20px;
}

.search-results .meta-group .meta-data::after {
  content: none;
}

.search-results-description {
  margin-top: 10px;
  word-break: break-word;
  color: #4a4c4c;
  font-weight: 400;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
}

.results-list-item-link {
  color: #000;
}

.search-result-title {
  font-size: 16px;
  display: inline-block;
}

[dir="ltr"] .search-result-icons {
  float: right;
}

[dir="rtl"] .search-result-icons {
  float: left;
}

.search-result-votes,
.search-result-meta-count {
  color: #333;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before,
.search-result-meta-count::before {
  color: #000000;
}

[dir="ltr"] .search-result-votes,
[dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before,
[dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes,
[dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before,
[dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs {
    display: table-row;
  }
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}

.search-result-breadcrumbs li,
.search-result-breadcrumbs li a,
.search-result-breadcrumbs li a:visited {
  color: inherit;
}

.search-result-breadcrumbs-nav {
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .search-result-breadcrumbs-nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 0;
  }
}

/*** End Search Results ***/

/* By default use bold instead of italic to highlight */

.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */

html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow;
}

.zd_Hidden {
  display: none !important;
}

.zd_link {
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease-in-out;
}

.zd_link:hover {
  text-decoration: none !important;
  border-bottom: none;
}

/**** Cookie banner ****/

.cookie_bar {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 100000;
  /* Maximum layer */
  /* Increased to 100,000 due to Ada widget being 99999 */
  padding: 16px;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
    -webkit-transform 0.3s;
  border-radius: 20px;
  color: #fff;
  fill: #fff;
  --coloredFontColor: #fff;
  background-color: #333;
}

.cookie_bar .text__link,
.cookie_bar .cookie_text__link,
.cookie_bar_buttons_preferences {
  color: inherit;
  padding-top: 2px;
  padding-bottom: 1px;
  text-decoration: none;
  transition: box-shadow .3s ease-in;
  position: relative;
  box-shadow: inset 0 -1px 0 0.01px #0000, inset 0 -1px;
}

.cookie_bar .text__link:hover,
.cookie_bar .cookie_text__link:hover,
.cookie_bar_buttons_preferences:hover {
  box-shadow: none;
  transition-timing-function: ease-out;
}

.checkbox-input {
  align-items: center;
  display: flex;
  position: relative;
}

.checkbox-input__checkbox {
  isolation: isolate;
  width: 24px;
  height: 24px;
  border: 1px solid var(--subtleBorderColor);
  fill: #0000;
  background: #fff;
  border-radius: 20px;
  transition: fill .15s, background .15s;
  overflow: hidden;
}

.multi_checkbox_option {
  padding-bottom: 16px;
}

.multi_checkbox_option .checkbox-input:hover {
  cursor: pointer;
}

.checkbox-input__checkbox--checked {
  fill: #fff;
  background: #DF1B12;
  border: none;
}

.checkbox-input__checkbox--disabled {
  pointer-events: none;
  background-color: #B2B2B2;
  fill: #FFF;
}

.checkbox-input__label {
  padding-left: 16px;
  line-height: 24px;
  pointer-events: none;
}

.checkbox-input__input {
  width: 0;
  opacity: 0;
  z-index: -1;
  position: absolute;
}

@media (min-width: 48em) {
  .cookie_bar {
    width: calc(50vw - 16px);
    bottom: 16px;
    left: auto;
    right: 16px;
  }
}

@media (min-width: 1200px) {
  .cookie_bar {
    width: calc(25vw - 32px);
    min-width: 216px;
    padding: 24px;
  }
}

@media (min-width: 80em) {
  .cookie_bar {
    padding: 40px;
    width: calc(25vw - 32px);
    min-width: 216px;
  }
}

.cookie_bar_buttons_container {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

.cookie_bar_buttons_preferences {
  margin-left: 16px;
}

.cookie_bar_buttons_x {
  padding: 16px;
  background-color: #df1b12;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.cookie_bar_buttons_x:hover {
  background-color: #b1110e;
}

.cookie_bar_buttons_x:hover svg {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.cookie_bar_buttons {
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 0;
}

.cookie_bar_buttons .animated_arrow_first,
.cookie_bar_buttons .animated_arrow_second {
  margin-top: 4px;
}

.cookie_bar_buttons .animated_arrow_first {
  margin-left: 8px;
}

.cookie_bar_buttons .animated_arrow_second {
  margin-left: 0px;
}

.cookie_text__link {
  color: #fff;
  text-transform: none;
  text-decoration: underline;
}

.cookie_text__link:hover {
  text-decoration: none;
}

.cookie_bar_text {
  display: block;
  margin-bottom: 16px;
}

.cookie_bar_content {
  font-size: 14px;
  line-height: 21px;
}

.cap {
  text-transform: capitalize;
}

#cookie_bar_buttons_accept {
  font-size: 14px;
  margin-bottom: 0px;
}

.cookie-panel--closed {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
}

/****** Exit survey - Levitt *****/

.modal {
  position: fixed;
  z-index: 998;
  /* Just under Maximum layer 1000 to be hidden below the cookie bar and locale pop up*/
  /*     padding-top: 100px; */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease 0.1s;
}

#survey_body,
.follow_up_box_body {
  position: relative;
  top: 30%;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  height: max-content;
  transition: all 0.3s ease 0.1s;
  border-radius: 20px;
  background-color: #FFF;
}

/* Servey Body Animation */

.openServeyAnimation {
  opacity: 1;

  animation: fadeIn ease 0.5s;
  -webkit-animation: fadeIn ease 0.5s;
  -moz-animation: fadeIn ease 0.5s;
  -o-animation: fadeIn ease 0.5s;
  -ms-animation: fadeIn ease 0.5s;
}

.openServeyBodyAnimation {
  transform: scale(1);

  animation: transformIn ease 0.5s;
  -webkit-animation: transformIn ease 0.5s;
  -moz-animation: transformIn ease 0.5s;
  -o-animation: transformIn ease 0.5s;
  -ms-animation: transformIn ease 0.5s;
}


/* End: Servey Body Animation */

.follow_up_box_subheading {
  color: #DF1B12;
  font-weight: bold;
  margin: 0;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.follow_up_box_innertext {
  margin: 8px 0;
}

button#open_chatbot {
  margin-top: 24px;
}

.open_chatbot .animated_arrow_first,
.open_chatbot .animated_arrow_second {
  padding-top: 5px;
}

.open_chatbot .animated_arrow_first {
  margin-left: 10px;
}

.follow_up_box_close img {
  width: 10px;
  position: absolute;
  right: 20px;
  top: 18px;
  cursor: pointer;
}

@media (min-width: 768px) {

  #survey_body,
  .follow_up_box_body {
    width: max-content;
    height: max-content;
  }
}

#survey_backgound {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
}

#follow_up_box_backgound {
  padding: 28px;
}

#greetings {
  margin-top: 0;
  font-size: 25px;
  font-weight: 800;
}

#follow_up_box_backgound #greetings,
#follow_up_box_backgound .option_container {
  margin: 0;
}

.option_container,
.survey_question {
  margin-bottom: 24px;
}

.follow_up_box_modal .option_container {
  margin-bottom: 0;
}

.op {
  display: inline-flex;
  cursor: pointer;
  margin: 0 20px 0 0;
  width: min-content !important;
  border: 0;
  background: none;
}

.open_chatbot .op {
  margin: 0;
  padding: 0;
}

.open_chatbot .button {
  margin: 0;
}

.option_container .exit_survey {
  background-color: #FFF;
  color: #000 !important;
  border: 1px solid #B2B2B2;
}

.tt_survey_btn {
  border: 1px solid #ddd;
  padding: 12px 20px;
  background-color: #f1f1f2;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tt_survey_btn:hover {
  background-color: #ddd;
}

#msgspan {
  margin-left: 39px;
  color: #7a7e80;
}

#agree {
  width: 25px;
  height: 25px;
  border: 1.3px solid #bebebe;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease 0s;
  position: absolute;
  margin-right: 14px;
  border-radius: 4px;
}

#newchkbox {
  cursor: pointer;
}

#agree_inner {
  width: 25px;
  height: 25px;
  background-color: #df1b12;
  position: absolute;
  top: -1px;
  left: -2px;
  border-radius: 4px;
}

/*Exit survey*/

/***** Locale Pop Up *****/

.locale_overlay {
  position: fixed;
  z-index: 999;
  /* Just under Maximum layer 1000 to be hidden below the cookie bar*/
  top: 0;
  left: 0;
}

.overlay_inner {
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  max-height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
}

.locale_box {
  max-width: 1440px;
  position: relative;
}

.locale_content {
  width: 750px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.locale_map {
  position: relative;
  width: 300px;
}

.image {
  width: 100%;
  height: 100%;
}

.locale_text_content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #666;
}

.locale_text_heading {
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.5px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .locale_text_heading {
    margin: 0 0 20px;
  }
}

.locale_text_country {
  display: flex;
  align-items: center;
}

.locale_text_flag_outline {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.locale_text_flag_image {
  width: 20px;
  height: 17px;
}

.locale_text_flag_image img {
  width: 100%;
  height: 100%;
}

.locale_text_country_label {
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 36px;
  margin-left: 15px;
  text-transform: none;
}

.locale_text_country_text {
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 40px 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.locale_text_country_buttons {
  display: block;
}

.locale_text_country_buttons_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.locale_text_country_button {
  margin: 10px 0;
  width: 100%;
}

/***** End Locale Pop Up ****/

/****** footer accordion *******/

.accordion {
  background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-bottom: 10px;
}

.accordion p {
  display: inline;
}

.active, .accordion:hover {
  background-color: transparent;
}

.accordion:after {
  content: '\002A';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  color: inherit;
  font-family: "TomTom Icons";
  background-repeat: no-repeat;
  background-size: contain;
}

.active:after {
  color: inherit;
  font-family: "TomTom Icons";
  background-repeat: no-repeat;
  background-size: contain;
  content: "\002A";
  transform: rotate(180deg);
}

.panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.footer_column>div {
  display: grid;
}

.locale_change{
  color: #666 !important;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  line-height: inherit;
  width: 100%;
}

.footer_btn:hover {
  color: #fff;
}
/****** footer  *******/

a .tt-flag-image {
  margin-right: 15px;
}

.tt-flag-image {
  background-image: url(https://www.tomtom.com/v2/gfx/countries.png);
  background-repeat: no-repeat;
  background-size: 300px 275px;
  width: 20px;
  height: 15px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 8px;
  display: inline-flex;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
  .tt-flag-image {
    background-image: url(https://www.tomtom.com/v2/gfx/countries.png);
    background-size: 300px 275px;
    background-repeat: no-repeat;
  }
}

.tt-flag-image.albania {
  background-position: -5px -5px;
}

.tt-flag-image.andorra {
  background-position: -35px -5px;
}

.tt-flag-image.angola {
  background-position: -65px -5px;
}

.tt-flag-image.argentina {
  background-position: -95px -5px;
}

.tt-flag-image.australia {
  background-position: -125px -5px;
}

.tt-flag-image.austria {
  background-position: -155px -5px;
}

.tt-flag-image.bahrain {
  background-position: -185px -5px;
}

.tt-flag-image.belarus {
  background-position: -215px -5px;
}

.tt-flag-image.belgium {
  background-position: -245px -5px;
}

.tt-flag-image.benin {
  background-position: -5px -30px;
}

.tt-flag-image.bosnia_herzegovina {
  background-position: -35px -30px;
}

.tt-flag-image.botswana {
  background-position: -65px -30px;
}

.tt-flag-image.brasil {
  background-position: -95px -30px;
}

.tt-flag-image.brunei {
  background-position: -125px -30px;
}

.tt-flag-image.bulgaria {
  background-position: -155px -30px;
}

.tt-flag-image.burkina_faso {
  background-position: -185px -30px;
}

.tt-flag-image.burundi {
  background-position: -215px -30px;
}

.tt-flag-image.cameroon {
  background-position: -245px -30px;
}

.tt-flag-image.canada {
  background-position: -5px -55px;
}

.tt-flag-image.central_african_republic {
  background-position: -35px -55px;
}

.tt-flag-image.chile {
  background-position: -65px -55px;
}

.tt-flag-image.china {
  background-position: -95px -55px;
}

.tt-flag-image.congo {
  background-position: -125px -55px;
}

.tt-flag-image.congo_democratic {
  background-position: -155px -55px;
}

.tt-flag-image.croatia {
  background-position: -185px -55px;
}

.tt-flag-image.cyprus {
  background-position: -215px -55px;
}

.tt-flag-image.czech_republic {
  background-position: -245px -55px;
}

.tt-flag-image.denmark {
  background-position: -5px -80px;
}

.tt-flag-image.estonia {
  background-position: -35px -80px;
}

.tt-flag-image.finland {
  background-position: -65px -80px;
}

.tt-flag-image.france {
  background-position: -95px -80px;
}

.tt-flag-image.french_guyana {
  background-position: -125px -80px;
}

.tt-flag-image.gabon {
  background-position: -155px -80px;
}

.tt-flag-image.germany {
  background-position: -185px -80px;
}

.tt-flag-image.ghana {
  background-position: -215px -80px;
}

.tt-flag-image.gibraltar {
  background-position: -245px -80px;
}

.tt-flag-image.greece {
  background-position: -5px -105px;
}

.tt-flag-image.guadeloupe {
  background-position: -35px -105px;
}

.tt-flag-image.hong_kong {
  background-position: -65px -105px;
}

.tt-flag-image.hungary {
  background-position: -95px -105px;
}

.tt-flag-image.india {
  background-position: -125px -105px;
}

.tt-flag-image.indonesia {
  background-position: -155px -105px;
}

.tt-flag-image.ireland {
  background-position: -185px -105px;
}

.tt-flag-image.italy {
  background-position: -215px -105px;
}

.tt-flag-image.japan {
  background-position: -275px -205px;
}

.tt-flag-image.korea {
  background-position: -275px -180px;
}

.tt-flag-image.kenia {
  background-position: -245px -105px;
}

.tt-flag-image.kosovo {
  background-position: -5px -130px;
}

.tt-flag-image.kuwait {
  background-position: -35px -130px;
}

.tt-flag-image.latvia {
  background-position: -65px -130px;
}

.tt-flag-image.lesotho {
  background-position: -95px -130px;
}

.tt-flag-image.liechtenstein {
  background-position: -125px -130px;
}

.tt-flag-image.lithuania {
  background-position: -155px -130px;
}

.tt-flag-image.luxembourg {
  background-position: -185px -130px;
}

.tt-flag-image.macau {
  background-position: -215px -130px;
}

.tt-flag-image.macedonia {
  background-position: -245px -130px;
}

.tt-flag-image.malawi {
  background-position: -5px -155px;
}

.tt-flag-image.malaysia {
  background-position: -35px -155px;
}

.tt-flag-image.mali {
  background-position: -65px -155px;
}

.tt-flag-image.malta {
  background-position: -95px -155px;
}

.tt-flag-image.mauritania {
  background-position: -125px -155px;
}

.tt-flag-image.mauritius {
  background-position: -155px -155px;
}

.tt-flag-image.mayotte_and_reunion {
  background-position: -185px -155px;
}

.tt-flag-image.mexico {
  background-position: -215px -155px;
}

.tt-flag-image.moldova {
  background-position: -245px -155px;
}

.tt-flag-image.monaco {
  background-position: -5px -180px;
}

.tt-flag-image.montenegro {
  background-position: -35px -180px;
}

.tt-flag-image.morocco {
  background-position: -65px -180px;
}

.tt-flag-image.mozambique {
  background-position: -95px -180px;
}

.tt-flag-image.namibia {
  background-position: -125px -180px;
}

.tt-flag-image.netherlands {
  background-position: -155px -180px;
}

.tt-flag-image.new_sealand {
  background-position: -185px -180px;
}

.tt-flag-image.niger {
  background-position: -215px -180px;
}

.tt-flag-image.nigeria {
  background-position: -245px -180px;
}

.tt-flag-image.norway {
  background-position: -5px -205px;
}

.tt-flag-image.oman {
  background-position: -35px -205px;
}

.tt-flag-image.poland {
  background-position: -65px -205px;
}

.tt-flag-image.portugal {
  background-position: -95px -205px;
}

.tt-flag-image.qatar {
  background-position: -125px -205px;
}

.tt-flag-image.romania {
  background-position: -155px -205px;
}

.tt-flag-image.russia {
  background-position: -185px -205px;
}

.tt-flag-image.rwanda {
  background-position: -215px -205px;
}

.tt-flag-image.san_marino {
  background-position: -245px -205px;
}

.tt-flag-image.saudi {
  background-position: -5px -230px;
}

.tt-flag-image.senegal {
  background-position: -35px -230px;
}

.tt-flag-image.serbia {
  background-position: -65px -230px;
}

.tt-flag-image.singapore {
  background-position: -95px -230px;
}

.tt-flag-image.slovakia {
  background-position: -125px -230px;
}

.tt-flag-image.slovenia {
  background-position: -155px -230px;
}

.tt-flag-image.south_africa {
  background-position: -185px -230px;
}

.tt-flag-image.spain {
  background-position: -215px -230px;
}

.tt-flag-image.swaziland {
  background-position: -245px -230px;
}

.tt-flag-image.sweden {
  background-position: -5px -255px;
}

.tt-flag-image.switzerland {
  background-position: -35px -255px;
}

.tt-flag-image.taiwan {
  background-position: -65px -255px;
}

.tt-flag-image.tanzania {
  background-position: -95px -255px;
}

.tt-flag-image.thailand {
  background-position: -125px -255px;
}

.tt-flag-image.togo {
  background-position: -155px -255px;
}

.tt-flag-image.turkey {
  background-position: -185px -255px;
}

.tt-flag-image.uae {
  background-position: -215px -255px;
}

.tt-flag-image.uganda {
  background-position: -245px -255px;
}

.tt-flag-image.ukraine {
  background-position: -275px -5px;
}

.tt-flag-image.united_kingdom {
  background-position: -275px -30px;
}

.tt-flag-image.uruguay {
  background-position: -275px -55px;
}

.tt-flag-image.usa {
  background-position: -275px -80px;
}

.tt-flag-image.vatican_city {
  background-position: -275px -105px;
}

.tt-flag-image.zambia {
  background-position: -275px -130px;
}

.tt-flag-image.zimbabwe {
  background-position: -275px -155px;
}

.footer_column {
  vertical-align: top;
  margin: 0;
}

@media (min-width: 48em) {
  .footer_column {
    grid-column: span 4;
  }
}

@media (min-width: 60em) {
  .footer_column {
    grid-column: span 2;
  }
}

.footer_continent {
  font-weight: bold;
  margin-left: 1px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.25px;
  color: #fff;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.footer_btn {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  line-height: 20px;
  color: currentColor;
}

.footer_column a {
  text-transform: none !important;
  padding: 0 !important;
  line-height: 40px !important;
}

/*footer*/

/******* Serial prefix checker - Levitt *************/

#tt_serial_no_input {
  text-transform: uppercase;
}

.tt_input {
  border: 1px solid #61ade0;
  border-radius: 30px;
  box-sizing: border-box;
  color: #000000;
  height: 35px;
  padding-left: 15px;
  width: 12em;
  font-size: 16px;
}

.single_result {
  display: block;
  margin: 0.5em 0;
  background-color: #bcdcf5;
  padding: 0 0 0 0.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s ease 0s;
}

#product_results_box .single_result .pt_record {
  cursor: pointer;
}

#product_results_box .single_result:hover {
  background-color: #8dc3eb;
  -webkit-box-shadow: 2px 5px 5px 0px rgba(190, 190, 190, 1);
  -moz-box-shadow: 2px 5px 5px 0px rgba(190, 190, 190, 1);
  box-shadow: 2px 5px 5px 0px rgba(190, 190, 190, 1);
  margin: 0.7em 0;
}

/******* End of serial prefix checker - Levitt *************/

.close_bongo {
  content: url(/hc/theming_assets/01J7418JCD480JBX3JXGP82V43);
}

/****** IE box - Lorna *********/

.notification-bar-ie {
  background-color: #fdc530;
  color: #000;
  max-height: 300px;
  fill: #000;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, max-height 0.3, padding 0.3s;
  padding: 24px 0;
  display: none;
  position: fixed;
  top: 80px;
  width: 100%;
}

.notification-bar__inner {
  width: 1440px;
  max-width: 1440px;
  padding: 0px 40px;
}

@media all and (min-width: 48em) {
  .notification-bar-ie {
    padding: 40px 0 48px;
  }
}

/****** End of IE box - Lorna *********/

/************** Updates Banner - Amy **********************/

#update-banner {
  background-color: #F2F2F2;
  color: rgb(0, 0, 0);
  padding-top: 30px;
  padding-bottom: 30px;
}

.update-banner-group {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
}
@media (min-width: 1200px) {
  .update-banner-group {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    	grid-column-gap: 20px;
      display: grid;
  }
}


#update-banner h2 {
  font-size: 14px;
  color: rgb(223, 27, 18);
  margin-bottom: 0px;
}

#update-banner h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  #update-banner h2 {
    font-size: 14px;
  }

  #update-banner h3 {
    font-size: 36px;
    margin-top: 10px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.update-banner-buttons {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  	grid-column-gap: 40px;
    display: grid;
}
@media (min-width: 600px) {
  .update-banner-buttons {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      display: grid;
  }
}
@media (min-width: 1024px) {
  .update-banner-buttons {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      display: grid;
  }
}
.update-banner-group img {
  display: block;
  height: 106px;
  margin: auto;
}
.update-link {
  margin-bottom: 20px;
  margin-top: 20px;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.update-link:visited,
.update-link:focus {
  background-color: rgb(0, 0, 0);
}

.update-link-group:hover {
  cursor: pointer;
}

#update-banner button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 0px;
  font-size: 24px;
}

@media (min-width: 1024px) {
  #update-banner button {
    top: 10px;
    right: 10px;
  }
}

/************** end of Updates Banner - Amy **********************/

/****** Retail PopUp - Amy *****/
#retail_popup {
  z-index: 997;
  /* Just under Maximum layer 1000 to be hidden below the cookie bar and locale pop up and Exit survey */
}

#survey_title {
  width: 100%;
}

#retail_popup_body {
  position: relative;
  top: 25%;
  background-color: rgba(255, 255, 255, 1);
  margin: auto;
  padding: 24px;
  width: 450px;
  transition: all 0.3s ease 0.1s;
  border-radius: 20px;
}

#retail_popup_background {
  width: 100%;
}

#retail_popup_background .survey_question .retail_popup_paragraph p {
  color: #666666;
  margin: 24px 0;
}

#retail_popup_background .survey_question .retail_popup_paragraph ul {
  color: #666666;
  padding-inline-start: 20px;
}

#retail_popup_button {
  margin-top: 0;
  margin-bottom: 0px;
  width: max-content !important;
}

.contain__text__link {
  border-bottom: 1px solid #000;
  padding-bottom: 0;
  cursor: pointer;
}

.text__link {
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-decoration: none;
  position: relative;
  padding-top: 2px;
  padding-bottom: 1px;
  text-transform: none;
}

.pop_up_question {
  margin-bottom: 2em;
  margin-top: 1em;
}

.tt_survey_btn {
  border: 1px solid #ddd;
  padding: 12px 20px;
  border-radius: 22px;
  background-color: #f1f1f2;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tt_survey_btn:hover {
  background-color: #ddd;
}

/****** End Retail PopUp - Amy *****/

/***** Search bar auto complete ********/

zd-autocomplete {
  border-radius: 0px;
}

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
  color: #000;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
}

zd-autocomplete-breadcrumbs-multibrand {
  color: #4a4c4c;
  -webkit-text-fill-color: #4a4c4c;
  font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
}

/***** Search bar auto complete ********/

/*RMA form*/
.tt_form_inline {
  width: 49%;
  display: inline-block;
}

.margin_left {
  margin-left: 1%;
}

.small {
  width: 30%;
  display: inline-block;
}

.big {
  width: 69%;
  display: inline-block;
}

/*RMA form*/

/******* Bongo on update Article SB: 360017209739 ************/

.bongo_update_icon {
  background: url("/hc/theming_assets/01J7418GH0DHZKBNNMNK5WC4RB");
  width: 170px;
  height: 170px;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}

.open_bongo_update {
  margin-top: 30px;
  background-color: #000000;
}

.update_bongo_container {
  display: flex;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
  padding-left: 5%;
}

.pnd {
  background: url("/hc/theming_assets/01J7418PFMY3SPZCCZ0MZ28B3Q");
  height: 100%;
  max-height: 340px;
  max-width: 537px;
}

.update_login {
  width: fit-content;
  margin-top: 20px;
}

#update_create_button {
  background-color: #e5e5e5;
  color: #000 !important;
  margin-left: 16px;
}

#update_login_button {
  margin-bottom: 0px;
  background-color: #e5e5e5;
  color: #000 !important;
}

.right {
  width: 0;
  display: none;
}

.left {
  width: 100%;
}

@media (min-width: 1024px) {
  .right {
    width: 50%;
    display: block;
  }

  .left {
    width: 50%;
  }
}

/******* End Bongo on update Article SB: 360017209739 ************/
/*************************** Different sized images, based on screen size ***************************/
.small_screen {
  display: inherit;
}

.medium_screen {
  display: none;
}

.large_screen {
  display: none;
}

@media (min-width: 768px) {
  .small_screen {
    display: none;
  }

  .medium_screen {
    display: inherit;
  }

  .large_screen {
    display: none;
  }
}

@media (min-width: 1024px) {
  .small_screen {
    display: none;
  }

  .medium_screen {
    display: none;
  }

  .large_screen {
    display: inherit;
  }
}

/*************************** Different sized images, based on screen size ***************************/

/***** CCWEBDEV-3230 *****/
#repairs {
  padding-bottom: 2em;
}

/***** End - CCWEBDEV-3230 *****/

/*************************** Article Links ***************************/
.article_main_link_div {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .article_main_link_div {
    margin-bottom: 16px;
  }
}

.article_main_link {
  color: #df1b12;
  box-shadow: none;
  display: flex;
  font-family: Gilroy, "Gilroy", Helvetica, Arial, sans-serif;
  font-weight: bold;
  align-items: center;
  margin-bottom: 12px;
}

.article_main_link:visited {
  color: #df1b12 !important;
}

.article_main_link .explore {
  background-color: #DF1B12;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-left: 12px;
  display: flex;
}

.article_main_link .explore .animated_arrow_first {
  background: url("/hc/theming_assets/01JJP8YGQTHTKVC2BR2JTFSGE0");
  width: 12px;
  height: 10px;
  margin-top: 10px;
  margin-left: 10px;
}

.article_main_link .explore .animated_arrow_second {
  background: url("/hc/theming_assets/01JJP8YGQTHTKVC2BR2JTFSGE0");
  width: 12px;
  height: 10px;
  margin-top: 10px;
  margin-left: -12px;
}

.article_main_link:hover {
  background-color: transparent;
  box-shadow: none;
}

.article_main_link:hover .animated_arrow_first {
  transition: all 0.25s ease-in-out;
  animation: move-arrow-first 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

.article_main_link:hover .animated_arrow_second {
  transition: all 0.25s ease-in-out;
  animation: move-arrow-second 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

.article-body li .article_arrow_button {
  margin: 16px 0 4px;
}

p+div {
  margin-bottom: 0;
}

p~.article_arrow_button {
  margin: 0 0 16px;
}

.article_arrow_button {
  max-width: 80vw;
  margin: 16px 0;
  white-space: normal;
}

.article_arrow_button .animated_arrow_first {
  background: url("/hc/theming_assets/01JJP8YGQTHTKVC2BR2JTFSGE0");
  width: 12px;
  height: 10px;
  margin-top: 5px;
  margin-left: 12px;
}

.article_arrow_button .animated_arrow_second {
  background: url("/hc/theming_assets/01JJP8YGQTHTKVC2BR2JTFSGE0");
  width: 12px;
  height: 10px;
  margin-top: 5px;
  margin-left: -12px;
}

.article_arrow_button:hover .animated_arrow_first {
  transition: all 0.25s ease-in-out;
  animation: move-arrow-first 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

.article_arrow_button:hover .animated_arrow_second {
  transition: all 0.25s ease-in-out;
  animation: move-arrow-second 1s cubic-bezier(.16, 1, .3, 1) 0.3s infinite;
}

#ada-button-frame {
  display: none;
}

.ada_button_div {
  position: fixed;
  bottom: 24px;
  right: 36px;
  z-index: 9;
}

.ada_button {
  padding: 20px 24px;
}

/* Start: Css for update_bongo Id */

#update_bongo {
  position: relative;
}

#update_bongo .left {
  width: 100% !important;
}

#update_bongo .right {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 77/50;
  top: 0;
  left: 100%;
}

#update_bongo .update_login p {
  margin-bottom: 16px !important;
}

/* END: Css for update_bongo Id */


/* Hide scrolling while Navbar Opened */

.restrictBody {
  max-height: 100vh !important;
  overflow-y: hidden !important;
}

/* END: Hide scrolling while Navbar Opened */


@media (max-width: 1024px) {
  article.article-div {
    padding-top: 12px;
  }
}

/*Search results header */
zd-autocomplete-header {
  display: flex;
  justify-content: flex-start; 
}

.search-results-column p a {
  box-shadow: inset 0 -1px 0 0.01px #0000, inset 0 -1px;
  color: #666;
  text-transform: none;
  transition: all 0.3s;
}

.search-results-column p a:hover {
  background-color: #6666661a;
  box-shadow: none;
  transition: all 0.3s;
}