@font-face {
    font-family: 'Montserrat';
    font-style:  normal;
    font-weight: 500;
    font-display: block;
    src: url("https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
}

@font-face {
    font-family: 'Montserrat';
    font-style:  normal;
    font-weight: 600;
    font-display: block;
    src: url("https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2");
}

@font-face {
    font-family: 'Montserrat';
    font-style:  normal;
    font-weight: 700;
    font-display: block;
    src: url("https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
}

html body {
    /* Accent */
    --accent_green: #39CC83;

    /* Background */
    --background_page: #10161F;
    --background_page_translucent: rgba(16, 22, 31, 0.72);
    --background_content: #1D2633;
    --background_content_tint: #2E3847;
    --background_content_attention: #424C5C;

    /* Text */
    --text_primary: #FFFFFF;
    --text_secondary: #8994A3;
    --text_tertiary: #556170;
    --text_accent: #45AEF5;

    /* Button */
    --button_primary_background: #45AEF5;
    --button_primary_background_highlighted: #5BB8F6;
    --button_secondary_background: #1D2633;
    --button_secondary_background_highlighted: #222C3B;

    /* Field */
    --field_background: #1D2633;
    --field_active_border: #45AEF5;
}

::selection {
    background: rgba(79,90,112,.24);
}

::-moz-selection {
    background: rgba(79,90,112,.24);
}

html,
body {
    box-sizing: border-box;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    cursor: default;
    color: var(--text_primary);
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    background-color: var(--background_page);
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-style: normal;
    font-weight: 500;
}

body {
    padding: 84px 56px 76px;
}

input,
textarea,
button,
select {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-style: normal;
    appearance: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
}

#mainNav {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 16px 56px;
    background-color: var(--background_page_translucent);
    -webkit-backdrop-filter: blur(48px);
    backdrop-filter: blur(48px);
    -webkit-user-select: none;
    user-select: none;
}

#mainNav .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container-fluid {
    position: static;
    padding: 0;
}

.container-fluid:before, .container-fluid:after {
    display: none;
}

.navbar .navbar-inner {
    background: none;
    box-shadow: none;
    padding: 0;
}

.navbar .nav {
    position: static;
    float: none;
    display: flex;
    align-items: center;
}

#mainNav.navbar .nav li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 8px 16px;
    color: var(--text_primary);
    background-color: var(--button_secondary_background);
    border-radius: 18px;
    transition: background .2s ease-in-out;
}

.navbar .nav .active .caret {
    display: none;
}

#mainNav.navbar .nav #home {
    display: none;
}

#mainNav.navbar .nav #lang a {
    display: flex;
    align-items: center;
    margin: 0;
    text-transform: uppercase;
}

#mainNav.navbar .nav #lang a svg {
    margin-right: 8px;
    margin-left: -4px;
}

.navbar .brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.brand span {
    order: 1;
    font-size: 0;
    display: block;
    width: 52px;
    height: 52px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/imgs/logo.png');
}

.brand:before,
.brand:after {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    white-space: nowrap;
}

.brand:before {
    order: 2;
    content: 'Tonkeeper';
    margin-left: 16px;
    color: var(--text_primary);
}

.brand:after {
    order: 3;
    content: 'Help Center';
    margin-left: 8px;
    color: var(--text_secondary);
}

#docsSearch {
    margin: 0;
    padding: 96px 0;
    border: none;
    background: none;
}

#docsSearch h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 auto 28px;
}

#searchBar {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 436px;
    padding: 0;
}

#searchBar:before {
    position: absolute;
    top: 16px;
    left: 16px;
    display: block;
    width: 16px;
    height: 16px;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/16/magnifier_secondary.svg');
}

#searchBar .search-query {
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box;
    width: calc(100% - 60px);
    height: 48px;
    margin: 0;
    padding: 12px 12px 12px 44px;
    appearance: none;
    color: var(--text_primary);
    border: 1px solid var(--field_background);
    border-radius: 12px;
    box-shadow: none;
    background: var(--field_background);
    transition: border-color .2s ease-in-out;
}

#searchBar .search-query::-moz-placeholder {
    color: var(--text_secondary);
}
#searchBar .search-query::-webkit-input-placeholder {
    color: var(--text_secondary);
}
#searchBar .search-query:-ms-input-placeholder {
    color: var(--text_secondary);
}
#searchBar .search-query::-ms-input-placeholder {
    color: var(--text_secondary);
}
#searchBar .search-query::placeholder {
    color: var(--text_secondary);
}

#contentArea #searchBar .search-query:focus,
#contentArea #searchBar .search-query:focus:invalid,
#docsSearch #searchBar .search-query:focus,
#docsSearch #searchBar .search-query:focus:invalid {
    border-color: var(--field_active_border);
    outline: 0 !important;
}

#searchBar button {
    font-size: 0;
    appearance: none;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 12px;
    background: var(--button_primary_background);
    text-shadow: none;
    box-shadow: none;
    border: none;
    transition: background .2s ease-in-out;
}

#searchBar button:before {
    display: block;
    min-width: 16px;
    width: 16px;
    height: 16px;
    margin: 0;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/16/magnifier_primary.svg');
}

#serp-dd,
#serp-dd.sb {
    overflow: hidden;
    top: 60px;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: var(--background_content_tint);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 16px 64px rgba(0, 0, 0, 0.16);
}

#serp-dd .result {
    max-height: 364px;
}

#sidebar.sidebar--sticky {
    position: sticky;
    top: 132px;
}

#sidebar #serp-dd {
    top: 76px;
    width: calc(100% - 32px);
}

#serp-dd .noResults {
    font-size: 16px;
    line-height: 24px;
    margin: 0 !important;
    padding: 12px;
    text-align: center;
    color: var(--text_primary);
}

#searchBar #serp-dd .result > li {
    margin: 0;
}

#searchBar #serp-dd .result > li.noResults {
    text-align: center;
}

#serp-dd .result > li.active {
    background: none;
}

#serp-dd .result a {
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding: 12px 12px 12px 44px;
    color: var(--text_primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

#serp-dd .result a:before {
    position: absolute;
    top: 16px;
    left: 16px;
}

#serp-dd .result > li.active a {
    background-color: var(--background_content_attention);
}

.most-pop-articles {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
    padding: 44px 32px;
    border-radius: 16px;
    background-color: var(--background_content);
}

.most-pop-articles h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 24px;
}

.most-pop-articles h2:before {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/84/bookmark.svg');
}

#contentArea {
    padding-bottom: 48px;
}

#contentArea .most-pop-articles .popArticles {
    max-width: 800px;
    margin: 0 auto;
}

#contentArea .most-pop-articles .popArticles li,
#contentArea .articleList li,
.related ul > li {
    margin: 0;
    padding: 0;
}

#contentArea .most-pop-articles .popArticles a,
#contentArea .articleList a,
.related ul > li a {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12px;
    border-radius: 12px;
    color: var(--text_primary);
    transition: background-color .2s ease-in-out;
}

#contentArea .most-pop-articles .popArticles a span,
#contentArea .articleList a span {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#contentArea .most-pop-articles .popArticles .icon-article-doc,
#contentArea .articleList .icon-article-doc,
.related .icon-article-doc {
    padding: 4px;
    margin-right: 8px;
    margin-left: 0;
}

.icon-article-doc:before,
#serp-dd .result a:before {
    display: block;
    min-width: 16px;
    width: 16px;
    height: 16px;
    margin: 0;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/16/doc.svg');
}

#serp-dd .result a:before {
    margin-right: 12px;
}

.sep {
    display: none;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0 -8px -16px;
}

.category-list .category {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(33.3333% - 16px);
    margin: 0 8px 16px;
    padding: 36px 24px;
    border: none;
    border-radius: 16px;
    background: var(--background_content);
    transition: background .1s ease-in-out;
}

.category-list h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    color: var(--text_primary);
}

.category-list h3:before {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/84/wallet.svg');
}

.category-list #category-4 h3:before,
.category-list #category-13 h3:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/84/ton.svg');
}

.category-list #category-5 h3:before,
.category-list #category-14 h3:before {
    background-image: url('https://tonkeeper.com/assets/helpscout/ic-inforamtion-circle-84.svg');
}

.category-list #category-6 h3:before,
.category-list #category-15 h3:before {
    background-image: url('https://tonkeeper.com/assets/helpscout/ic-faq-84.svg');
}

.category-list #category-7 h3:before,
.category-list #category-16 h3:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/84/stack.svg');
}

.category-list #category-8 h3:before,
.category-list #category-17 h3:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/84/shield.svg');
}

.category-list #category-9 h3:before,
.category-list #category-18 h3:before {
    background-image: url('https://tonkeeper.com/assets/helpscout/ic-troubleshooting-84.svg');
}

.category-list .category .article-count {
    font-size: 16px;
    line-height: 24px;
    margin: 4px 0 0;
    color: var(--text_secondary);
}

footer {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 56px;
}

footer p {
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center !important;
    color: var(--text_tertiary);
}

footer p a {
    color: var(--text_tertiary);
    transition: color .2s ease-in-out;
}

/* Category Page */
#categoryHead .sort {
    display: none;
}

#sidebar {
    overflow: hidden;
    width: 312px;
    margin-top: 48px;
    border-radius: 16px;
    background-color: var(--background_content);
}

#sidebar #searchBar {
    box-sizing: border-box;
    margin: 0;
    padding: 16px;
}

#sidebar #searchBar:before {
    top: 32px;
    left: 32px;
}

#sidebar form .search-query {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    padding: 12px 12px 12px 44px;
    color: var(--text_primary);
    border: 1px solid var(--background_content_tint);
    border-radius: 12px;
    background-color: var(--background_content_tint);
}

#sidebar form button {
    display: none;
}

#sidebar #searchBar + h3 {
    display: none;
}

.nav-list > li > a,
.nav-list .nav-header {
    text-shadow: none;
}

#sidebar .nav-list a:hover,
#sidebar .nav-list a:focus {
    color: var(--text_primary);
}

#sidebar .nav-list {
    margin: 0;
    padding: 0 0 8px;
}

#sidebar .nav-list li {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    user-select: none;
}

#sidebar .nav-list a {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 16px 24px;
    color: var(--text_primary);
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

#sidebar .nav-list li.active a {
    font-weight: 500;
    color: var(--text_accent);
}

#sidebar .nav-list li.active a:hover,
#sidebar .nav-list li.active a:active {
    font-weight: 500;
    color: var(--text_accent);
}

#sidebar .nav-list li.active a:hover .icon-arrow,
#sidebar .nav-list li.active a:active .icon-arrow,
#sidebar .nav-list li.active a .icon-arrow {
    display: none;
}

#main-content {
    width: calc(100% - 328px);
    margin: 48px 0 0;
    padding: 0;
}

.contentWrapper,
.related {
    box-sizing: border-box;
    width: 100%;
    min-height: initial;
    padding: 0 12px 12px;
    border: none;
    background: none;
    color: var(--text_primary);
    border-radius: 16px;
    background: var(--background_content);
}

.contentWrapper p {
    margin-top: 0;
}

#categoryHead h1,
.related h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    padding: 24px 12px 16px;
    color: var(--text_primary);
    text-transform: initial;
}

.contentWrapper p.descrip:empty {
    margin: 0;
}

.articleList,
.related ul {
    margin: 0;
    padding: 0;
}

/* Article Page */
#main-content #fullArticle {
    cursor: text;
    padding: 24px 12px 0;
}

#main-content #fullArticle h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 0 16px;
    color: var(--text_primary);
    text-transform: initial;
}

#main-content #fullArticle h3 {
    font-size: 20px;
    line-height: 28px;
}

#main-content #fullArticle p,
#main-content #fullArticle strong,
#main-content #fullArticle ul,
#main-content #fullArticle ol,
#main-content #fullArticle li,
#main-content #fullArticle div,
#main-content #fullArticle blockquote,
#main-content #fullArticle dd,
#main-content #fullArticle table {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    color: var(--text_secondary);
}

#fullArticle strong,
#fullArticle b {
    font-weight: 600;
}

#fullArticle h1,
#fullArticle h2,
#fullArticle h3,
#fullArticle h4,
#fullArticle h5 {
    font-weight: 700;
    color: var(--text_primary);
}

#fullArticle h2,
#fullArticle h3,
#fullArticle h4,
#fullArticle h5 {
    margin: 20px 0 8px;
}

#fullArticle figure {
    width: calc(100% + 48px);
    margin: 20px -24px;
}

#fullArticle figure h2,
#fullArticle figure h2,
#fullArticle figure h3,
#fullArticle figure h4,
#fullArticle figure h5,
#fullArticle figure p,
#fullArticle figure ul,
#fullArticle figure ol,
#fullArticle figure li,
#fullArticle figure blockquote,
#fullArticle figure dd {
    padding: 0 24px;
}

#main-content #fullArticle figure div {
    margin: 0;
}

#fullArticle .image-caption,
#fullArticle figcaption {
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    margin-top: -12px;
    color: var(--text_tertiary);
}

#fullArticle .image-caption:empty,
#fullArticle figcaption:empty {
    margin-top: 0;
}

#fullArticle img,
#fullArticle iframe {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    max-height: initial !important;
    margin: 20px auto;
    padding: 0;
    border: none;
    border-radius: 0;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

.printArticle {
    display: none;
}

.articleRatings {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 96px;
    margin-top: 12px;
    padding: 32px 12px 20px;
    color: var(--text_primary);
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.articleRatings:before,
.articleRatings:after {
    position: absolute;
    left: -12px;
    display: block;
    width: calc(100% + 24px);
    height: 1px;
    content: '';
    opacity: .2;
    background-color: var(--background_content_attention);
}

.articleRatings:before {
    top: 0;
}

.articleRatings:after {
    display: none;
    bottom: 0;
}
.articleRatings-actions {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: 16px;
}

.articleRatings-question {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: var(--text_primary);
}

.rateAction {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    transition: transform .2s ease-in-out;
}

.rateAction + .rateAction {
    margin-left: 4px;
}

.rateAction:before {
    display: block;
    width: 48px;
    height: 48px;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.rateAction .rating-face {
    display: none;
}

.rateAction.selected:after {
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
}

.rateAction--positive:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/imgs/face_happy.png');
}

.rateAction--negative:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/imgs/face_sad.png');
}

.rateAction.selected,
.rateAction:not([disabled=disabled]):focus {
    background: none;
    background-size: cover;
    box-shadow: none;
    transform: scale(1.1);
}

.rateAction.selected:after {
    border-color: var(--accent_green);
}

.articleRatings-feedback,
.articleRatings-failure {
    padding-top: 4px;
}

.articleRatings-feedback:before,
.articleRatings-failure:before {
    display: block;
    width: 48px;
    height: 48px;
    content: '';
    margin: 0 auto 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.articleRatings-feedback:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/48/check_cricle.svg');
}

.articleRatings-failure:before {
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/48/cross_circle.svg');
}

.articleRatings-feedback-tick {
    display: none;
}

.articleFoot {
    margin: 16px 0 0;
    padding: 0 12px 8px;
}

.articleFoot p.lu,
.articleFoot time.lu {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    margin: 0;
    float: none;
    color: var(--text_tertiary);
}

#serp-dd .result a:hover,
#serp-dd .result > li.active,
#fullArticle strong a,
#fullArticle a strong,
.collection a,
.contentWrapper a{
    color: var(--text_accent);
    transition: color .2s ease-in-out;
}

.contentWrapper--no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 128px 24px;
}

.contentWrapper--no-results h1 {
    display: none;
}

.contentWrapper--no-results #serp {
    max-width: 504px;
}

.contentWrapper--no-results #serp:before {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/84/folder.svg');
}

.contentWrapper--no-results #serp .nada {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
    color: var(--text_primary);
}

.contentWrapper #serp h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    padding: 24px 12px 8px;
    color: var(--text_primary);
}

.contentWrapper #serp h1 strong {
    color: var(--text_secondary);
}

#serp .articlesFound {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    padding: 0 12px 16px;
    color: var(--text_tertiary);
}

#serp .articlesFound strong {
    font-weight: 500;
}

#serp .articleList > li a,
#serp .articleList > li:not(.articleItem) {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px;
    border-radius: 12px;
    transition: background-color .2s ease-in-out;
    color: var(--text_primary);
}

#serp .articleList > li:not(.articleItem) a {
    display: flex;
    align-items: center;
    padding: 0;
}

#serp .articleList > li a .articleItemTitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: var(--text_primary);
}

#serp .articleList > li a .articleItemTitle + p,
#serp .articleList > li:not(.articleItem) a + p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 2px 0 0;
    padding-left: 32px;
    color: var(--text_secondary);
}

.related {
    margin-top: 16px;
}

/* Reset default hovers */
a:hover, a:focus {
    text-decoration: none;
}
#searchBar #serp-dd .result a:hover {
    color: var(--text_primary);
    background-color: transparent;
}
#contentArea .most-pop-articles .popArticles a:hover span,
#contentArea .articleList a:hover span,
.related ul > li a:hover span {
    text-decoration: none;
    color: var(--text_primary);
}
#contentArea .most-pop-articles .popArticles a:hover,
#contentArea .articleList a:hover,
.related ul > li a:hover {
    text-decoration: none;
    background-color: transparent;
}
.category-list .category:hover {
    background: var(--background_content);
}
.category-list .category:hover .article-count {
    color: var(--text_secondary);
}
#serp .articleList > li:not(.articleItem) a:hover {
    background: none;
}
#serp .articleList > li.articleItem a:hover {
    text-decoration: none;
}
.rateAction:not([disabled=disabled]):hover {
    background: none;
    background-size: cover;
    box-shadow: none;
    transform: scale(1);
}
footer p a:hover {
    color: var(--text_tertiary);
}

/* Set hovers only on desktop */
@media (hover: hover), (min-width: 769px) {
    a:hover, a:focus {
        text-decoration: underline;
    }
    #mainNav.navbar .nav li a:hover {
        background: var(--button_secondary_background_highlighted);
    }
    #contentArea #searchBar .search-query:hover,
    #contentArea #searchBar .search-query:hover:invalid,
    #docsSearch #searchBar .search-query:hover,
    #docsSearch #searchBar .search-query:hover:invalid {
        border-color: var(--field_active_border);
        outline: 0 !important;
    }
    #searchBar button:hover {
        background: var(--button_primary_background_highlighted);
    }
    #searchBar #serp-dd .result a:hover {
        background-color: var(--background_content_attention);
    }
    #sidebar .nav-list a:hover,
    #sidebar .nav-list li.active a:hover,
    #sidebar .nav-list li.active a:active {
        background-color: var(--background_content_tint);
    }
    #contentArea .most-pop-articles .popArticles a:hover,
    #contentArea .articleList a:hover,
    .related ul > li a:hover {
        background-color: var(--background_content_tint);
    }
    .category-list .category:hover {
        background: var(--background_content_tint);
    }
    #serp .articleList > li.articleItem a:hover {
        background-color: var(--background_content_tint);
    }
    .rateAction:not([disabled=disabled]):hover {
        transform: scale(1.1);
    }
    footer p a:hover {
        color: var(--text_secondary);
    }
}

@media (max-width: 991px) {
    .category-list .category {
        width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    body {
        min-height: calc(100vh - 74px);
    }
    body {
        padding: 64px 0 78px;
    }

    #mainNav {
        margin: 0;
        padding: 12px 16px;
    }

    .navbar-inner {
        min-height: 40px;
    }

    .navbar .nav {
        position: relative;
    }

    .navbar .brand {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .brand span {
        width: 40px;
        height: 40px;
    }

    .brand:before {
        display: none;
    }

    .brand:after {
        font-size: 20px;
        line-height: 28px;
        margin-left: 12px;
        color: var(--text_primary);
    }

    #mainNav.navbar .nav #lang {
        position: absolute;
        right: 0;
    }

    .navbar .btn-navbar {
        display: none;
    }

    .nav-collapse, .nav-collapse.collapse {
        display: none;
    }

    #docsSearch {
        padding: 64px 16px 80px;
    }

    #docsSearch h1 {
        font-size: 32px;
        line-height: 40px;
        padding: 0;
    }

    #searchBar {
        width: 100%;
    }

    #searchBar button .icon-search {
        display: none;
    }

    #searchBar button span {
        display: none;
    }

    #contentArea {
        padding: 0 8px;
    }

    .most-pop-articles {
        overflow: hidden;
        margin-bottom: 9px;
        padding: 32px 0 20px;
    }

    .most-pop-articles h2 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .most-pop-articles.two-col .popArticles {
        columns: 1;
    }

    #contentArea .most-pop-articles .popArticles a,
    #contentArea .articleList a, .related ul > li a {
        padding: 12px 16px;
        border-radius: 0;
    }

    .category-list {
        margin: 0 0 -8px;
    }

    .category-list .category {
        width: 100%;
        margin: 0 0 8px;
    }

    .category-list h3 {
        font-size: 20px;
        line-height: 28px;
    }

    footer {
        padding: 28px 24px;
    }

    body.internal-page {
        background-color: var(--background_page);
    }

    body.internal-page .brand:after {
        display: none;
    }

    body.internal-page .brand {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        min-width: 48px;
        height: 48px;
        margin-top: -4px;
        margin-bottom: -4px;
        margin-left: -8px;
    }

    body.internal-page .brand span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--button_secondary_background);
    }

    body.internal-page .brand span:before {
        display: block;
        width: 16px;
        height: 16px;
        content: '';
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url('https://ddejfvww7sqtk.cloudfront.net/faq-assets/tonkeeper/icons/16/back.svg');
    }

    body .navbar .nav-collapse {
        display: block;
        overflow: visible;
        width: 100%;
        height: auto;
    }

    body:not(.internal-page) .navbar .nav {
        justify-content: flex-end;
        margin: 0;
    }

    body.internal-page .navbar .nav {
        justify-content: space-between;
        margin: 0;
    }

    body.internal-page #contentArea {
        padding: 0 0 48px;
    }

    #sidebar {
        display: none;
    }

    #main-content {
        width: 100%;
        margin: 0;
    }

    .contentWrapper,
    .related {
        padding: 0;
        background: none;
    }

    .related {
        margin-top: 8px;
    }

    #categoryHead h1,
    .related h3 {
        font-size: 24px;
        line-height: 32px;
        padding: 20px 16px 16px;
    }

    body.article-page #contentArea {
        padding-bottom: 0;
    }

    #main-content #fullArticle {
        padding: 20px 16px 0;
    }

    #main-content #fullArticle h1 {
        font-size: 24px;
        line-height: 32px;
    }

    #fullArticle figure {
        width: calc(100% + 32px);
        margin-right: -16px;
        margin-left: -16px;
    }

    #fullArticle figure h2, #fullArticle figure h2, #fullArticle figure h3, #fullArticle figure h4, #fullArticle figure h5, #fullArticle figure p, #fullArticle figure ul, #fullArticle figure ol, #fullArticle figure li, #fullArticle figure blockquote, #fullArticle figure dd {
        padding: 0 16px;
    }

    .articleRatings {
        min-height: 112px;
        padding: 32px 24px 32px;
    }

    .articleRatings:before,
    .articleRatings:after {
        display: block;
        width: 100%;
        left: 0;
    }

    .articleFoot {
        padding-right: 16px;
        padding-left: 16px;
    }

    body.search-page #contentArea {
        padding-bottom: 0;
    }

    .contentWrapper--no-results {
        height: calc(100vh - 80px - 76px);
    }

    .contentWrapper #serp h1 {
        font-size: 24px;
        line-height: 32px;
        padding: 20px 16px 8px;
    }

    #serp-dd .result {
        max-height: 220px;
    }

    #serp .articlesFound {
        padding: 0 16px 16px;
    }

    #serp .articleList > li a,
    #serp .articleList > li:not(.articleItem) {
        padding-right: 16px;
        padding-left: 16px;
    }
}
