/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
.legal-page {
  font-family: "Iqos", sans-serif;
}
@media (min-width: 1024px) {
  .legal-page__container {
    margin: 4.5rem auto;
  }
}
@media (min-width: 1300px) {
  .legal-page__container {
    max-width: calc(71.25rem + 2.625rem);
  }
}
.legal-page__sidebar {
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .legal-page__sidebar {
    padding: 0 1.3125rem;
  }
}
.legal-page__sidebar-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 2.1875rem;
  padding: 0.625rem;
  font-size: 0.875rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border: none;
  background-color: #34303d;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.legal-page__sidebar-btn svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.625rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.legal-page__sidebar-btn[aria-expanded=true] svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.legal-page__nav {
  background-color: #f6f4f0;
}
@media (min-width: 1024px) {
  .legal-page__nav {
    padding: 1.875rem 0;
  }
}
.legal-page__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: unset;
  background-color: unset;
}
.legal-page__nav-item {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #34303d;
}
@media (min-width: 1024px) {
  .legal-page__nav-item {
    font-size: 1.25rem;
  }
}
.legal-page__nav-item:last-of-type .nav-link,
.legal-page__nav-item:last-of-type .nav-link.active {
  border: none;
}
@media (min-width: 1024px) {
  .legal-page__nav-item.nav-item {
    margin: 0.625rem 0;
  }
}
.legal-page__nav .nav-link {
  font: inherit;
  color: inherit;
  text-transform: none;
  padding: 0.5625rem 2rem;
  border-bottom: 0.0625rem solid #bfbfbf;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (min-width: 1024px) {
  .legal-page__nav .nav-link {
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
  }
}
.legal-page__nav .nav-link.active {
  color: inherit;
  border-bottom: 0.0625rem solid #bfbfbf;
}
.legal-page__nav .nav-link.active, .legal-page__nav .nav-link:hover, .legal-page__nav .nav-link:focus {
  text-decoration: underline;
}
.legal-page__nav .nav-link::after {
  display: none;
}
@media (min-width: 1024px) {
  .legal-page__nav .nav-link,
.legal-page__nav .nav-link.active,
.legal-page__nav .nav-link:hover {
    border: none;
  }
}
.legal-page__main {
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .legal-page__main {
    padding: 0 1.3125rem;
  }
}
.legal-page__content {
  font-size: 1rem;
  line-height: 1.5;
  color: #34303d;
}
@media (max-width: 1023.98px) {
  .legal-page__content {
    margin: 2.5rem 0;
  }
}
.legal-page__content .content-asset > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.legal-page__content .content-asset > *:last-child {
  margin-bottom: 0;
}
.legal-page__content h1 {
  font-size: 2.5rem;
}
.legal-page__content h2 {
  font-size: 2.125rem;
}
.legal-page__content h3 {
  font-size: 1.875rem;
}
.legal-page__content h1,
.legal-page__content h2,
.legal-page__content h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 1.25rem 0;
}
.legal-page__content time,
.legal-page__content strong,
.legal-page__content b {
  font-weight: 700;
  line-height: 1.5;
}
.legal-page__content time {
  display: inline-block;
}
.legal-page__content blockquote {
  padding: 1.25rem;
  background-color: #f4f4f4;
  border-radius: 1rem;
}
.legal-page__content blockquote ul {
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
.legal-page__content blockquote ul.dash {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.legal-page__content blockquote :last-child {
  margin-bottom: 0;
}
.legal-page__content table {
  margin: 2rem 0 3rem;
}
.legal-page__content td {
  border: 0.03125rem solid;
  padding: 0.4375rem;
}
.legal-page__content td p:last-of-type,
.legal-page__content td ul:last-of-type {
  margin: 0;
}
.legal-page__content td ul {
  -webkit-padding-start: 1.25rem;
          padding-inline-start: 1.25rem;
}
.legal-page__content ul {
  list-style-type: disc;
}
[dir=rtl] .legal-page__content ol {
  list-style-type: arabic-indic;
}
.legal-page__content ol,
.legal-page__content ul,
.legal-page__content dl {
  margin-top: 0;
  margin-bottom: 1rem;
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
}
.legal-page__content ol p:last-of-type,
.legal-page__content ul p:last-of-type,
.legal-page__content dl p:last-of-type {
  margin: 0;
}
.legal-page__content ul.dash {
  list-style-type: none;
}
.legal-page__content ul.dash li::before {
  content: "-";
  display: inline-block;
  width: 1rem;
}
.legal-page .legal-accordion .faq-item {
  padding: 0.75rem;
  padding-right: 0;
  border-top: unset;
  border-bottom: 0.09375rem solid #34303d;
}
.legal-page .legal-accordion .faq-item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: unset;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}
.legal-page .legal-accordion .faq-item-arrow {
  position: static;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  margin: 0.75rem;
}
.legal-page .legal-accordion .faq-item-body {
  font-size: 1rem;
}
.legal-page .legal-accordion .faq-item-body p {
  line-height: 1.5;
}
