@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');

@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/googlesans/v58/4UasrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RPjIUvbQoi-E.woff2)
    format('woff2');
}

@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/googlesans/v58/4UasrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RPjIUvbQoi-E.woff2)
    format('woff2');
}

@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/googlesans/v58/4UasrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RPjIUvbQoi-E.woff2)
    format('woff2');
}

:root {
  --bg: #fff;
  --fg: #1f1f1f;
  --muted: #5f6368;
  --rule: #dadce0;
  --chip: #f1f3f4;
  --your-accent-blue: #1a73e8;
  --your-active-bg: #d2e1fc;
  --your-active-text: #0a57d0;
  --your-nested-active-text: #5f6368;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: #202124;
  font: 400 14px/1.54 Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #3367d6;
  text-decoration: none;
}

.body--lock {
  overflow: hidden;
}

.appbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg);
  z-index: 1000;
  box-shadow: 0 1px 0 var(--rule);
}

.appbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  width: 100%;
  margin: 0 auto;
}

.burger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
}

.burger:hover {
  background: var(--chip);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  padding-left: 0;
}

.brand-logo-svg,
.logo-image {
  height: 24px;
  width: auto;
  vertical-align: middle;
  fill: #000;
}

.brand span {
  font-size: 22px;
  font-weight: 400;
  color: #1f1f1f;
}

.header-right {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 5px;
}

.waffle-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-right: 15px;
}

.profile-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin-right: 20px;
}

.profile-img {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.profile-svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
}

#waffle-portal {
  display: none;
  position: absolute;
  top: 40px !important;
  right: -10px !important;
  width: 370px;
  height: 610px;
  z-index: 9999;
  background: transparent;
  border: none;
  overflow: hidden;
}

#waffle-portal iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}

.tabs {
  border-bottom: 1px solid var(--rule);
}

.tabs-inner {
  display: flex;
  gap: 28px;
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
}

.tabs a {
  padding: 10px 0 8px;
  text-decoration: none;
  font-family: 'Google Sans', sans-serif;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.1s, border-bottom 0.1s;
}

.tabs a.active {
  color: #0b57d0;
  border-bottom: 4px solid #0b57d0;
  padding-bottom: 6px;
}

.tabs a:hover:not(.active) {
  color: var(--fg);
}

@media (max-width: 1020px) {
  .tabs {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .brand .brand-logo-svg,
  .brand .logo-image {
    display: none;
  }

  .brand {
    margin-left: 8px;
    gap: 0;
    font-weight: 400;
    font-size: 22px;
    color: var(--fg);
    line-height: 1.5;
  }
}

.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 304px;
  max-width: 86vw;
  background: var(--bg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
  transform: translateX(-100%);
  transition: transform 0.24s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
}

.site-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1000;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

.drawer-header {
  display: flex;
  align-items: center;
  padding: 16px;
  min-height: 56px;
  gap: 10px;
  border-bottom: 1px solid var(--rule);
}

.drawer-header .brand-logo-svg,
.drawer-header .logo-image {
  height: 24px;
  width: auto;
  vertical-align: middle;
  fill: #000;
  flex-shrink: 0;
}

.drawer-title {
  font-size: 22px;
  font-weight: 400;
  color: #1f1f1f;
  flex-grow: 1;
  white-space: nowrap;
}

.drawer-nav {
  padding: 0;
  overflow-y: auto;
}

.drawer-nav a.nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 24px 0 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  line-height: 20px;
  position: relative;
}

.drawer-nav a.nav-link[data-page]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  height: 1px;
  background: var(--rule);
}

.drawer-nav a.nav-link[data-page]:first-of-type::before {
  content: none;
}

.drawer-nav a.nav-link.active {
  background-color: var(--your-active-bg);
  color: var(--your-active-text);
  border-radius: 50px 0 0 50px;
  margin: 0;
  padding-left: 40px;
  font-weight: 600;
}

.drawer-nav a.nav-link:hover:not(.active) {
  background-color: transparent;
}

.nested-links {
  padding-bottom: 0;
}

.nested-links a.nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px 0 56px;
  font-weight: 400;
  font-size: 13px;
  color: var(--fg);
}

.nested-links a.nav-link.active-nested {
  color: var(--your-nested-active-text);
  font-weight: 500;
}

.nested-links a.nav-link:hover:not(.active-nested) {
  background-color: transparent;
}

.content-wrapper {
  min-height: calc(90vh - 40px);
  max-width: 978px;
  margin: 0 auto;
  padding: 32px 16px;
}

.faq-content {
  padding-top: 56px;
  padding-bottom: 40px;
}

.faq-main-title {
  font-family: 'Google Sans', sans-serif;
  color: #3c4043;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 12px;
}

.faq-intro {
  color: #5f6368;
  margin: 0;
  max-width: 820px;
}

.faq-item {
  margin-top: 48px;
}

.faq-item .title {
  margin-bottom: 16px;
}

.faq-item p {
  color: #3c4043;
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 860px;
}

.faq-item ul {
  margin: 0 0 14px 24px;
  padding: 0;
}

.faq-item li {
  color: #3c4043;
  line-height: 1.75;
  margin: 0 0 8px;
}

.content-section {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 25px;
}

.content-item {
  box-sizing: border-box;
}

.icon-text-wrapper {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.icon-container {
  margin-bottom: 30px;
  flex-shrink: 0;
  margin-right: 16px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon {
  margin-top: 0;
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

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

.title {
  font-family: 'Google Sans', sans-serif;
  color: #3c4043;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
}

.description {
  line-height: 1.714;
  margin: 20px 0;
}

.link a {
  color: #3367d6;
  text-decoration: none;
}

#brx-footer {
  border-top: 1px solid var(--rule);
  margin-top: 0;
  position: relative;
}

#brx-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.12);
}

.g-footer {
  background: #fff;
  border-top: 1px solid #eee;
  width: 100%;
}

.g-footer__inner {
  max-width: 978px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  min-height: 40px;
}

.g-footer__links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-family: Roboto, arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 2.19;
}

.g-footer__links li + li::before {
  content: "·";
  padding: 0 6px;
  color: #1f1f1f;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.j-static.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCRc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

.g-footer__links a {
  color: #1f1f1f;
  font-family: 'Roboto', arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  text-decoration: underline;
}

.g-footer__links a:hover {
  color: #1f1f1f;
  text-decoration: underline;
}

.g-footer__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g-footer__lang::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: transparent
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAABGdBTUEAALGPC/xhBQAAAFpQTFRFAAAAc8b%2BeNj%2BeLL7lt3/YbL4cs/9rNn8p9b7%2Bfn5hdD/a8D/7vD/vOL9itf%2B////3PD%2Byuj9R6348Pb7KZz2UL78MKL3Oqv4Zsz/ndX8qN/%2BI5T0S7X4W8b9mmuivQAAAAF0Uk5TAEDm2GYAAACXSURBVBjTXYqLEsIwCARR%2B27zpCFNxP//TSGOTu3OhDs2wGaPM9bD8hKGMDtnDq130GkxDK/BY/tVc6CtXa21Q72ClFKoqUrINBLAzHP9grKpccxFYmqNIcY4j%2BXDiLJBztmUXCRkGgkgIsZbO1kwEjVDKwYmDriSGt6FPHrnp6x1Bd/vzxP9Bj8mFfBH2K8Gtng1AA95bxQhE7o%2B68UQAAAAAElFTkSuQmCC")
    center center / 17px 17px no-repeat;
}

.g-footer__select {
  font-size: 12px;
  font-family: Roboto, arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  padding: 2px 20px 2px 8px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  background: #fff;
  color: #1f1f1f;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 12px;
  cursor: pointer;
}

.g-footer__select:focus {
  outline: none;
  border-color: #708090;
  box-shadow: 0 0 0 1px #708090;
}

.g-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .faq-content {
    padding-top: 36px;
  }

  .faq-main-title {
    font-size: 1.65rem;
  }

  .faq-item {
    margin-top: 36px;
  }

  .content-section {
    grid-template-columns: 1fr;
  }

  .icon-text-wrapper {
    flex-direction: row;
    padding-left: 0;
  }

  .icon-container {
    margin-right: 16px;
  }

  .g-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .g-footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    line-height: 2.19;
  }

  .g-footer__lang {
    width: auto;
    align-self: flex-start;
  }
}
