@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Playfair+Display:wght@400;500;700&display=swap");
html {
    font-family: Nunito, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
a {
    background-color: transparent;
}
a:active,
a:hover {
    outline: 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: 700;
}
dfn {
    font-style: italic;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
mark {
    background: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 1em 40px;
}
hr {
    box-sizing: content-box;
    height: 0;
}
pre {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}
button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input {
    line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: 700;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}
th[role="columnheader"]:not(.no-sort) {
    cursor: pointer;
}
th[role="columnheader"]:not(.no-sort):after {
    content: "";
    float: right;
    margin-top: 7px;
    border-width: 0 4px 4px;
    border-style: solid;
    border-color: #404040 transparent;
    visibility: hidden;
    opacity: 0;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
th[aria-sort="ascending"]:not(.no-sort):after {
    border-bottom: none;
    border-width: 4px 4px 0;
}
th[aria-sort]:not(.no-sort):after {
    visibility: visible;
    opacity: 0.4;
}
th[role="columnheader"]:not(.no-sort):hover:after {
    visibility: visible;
    opacity: 1;
}
* {
    box-sizing: border-box;
}
body {
    background: #f9f1eb;
    font-family: Nunito, sans-serif;
    color: #33302e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
}
.d-flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-justify-between {
    justify-content: space-between;
}
.flex-align-center {
    align-items: center;
}
.flex-align-start {
    align-items: flex-start;
}
.flex-align-end {
    align-items: flex-end;
}
table {
    max-width: 100%;
}
.site-footer {
    margin-top: auto;
}
.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}
.row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.row-center {
    justify-content: center;
}
.col {
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}
.col-half-xs {
    width: 50%;
}
img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.secondary-background {
    background: #f3decb;
}
.row-section {
    padding: 2rem 0;
}
.row-section .row {
    align-items: center;
}
.row-section:nth-child(2n) {
    background: #f3decb;
}
.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    background: #990f3d;
    color: #fff;
    text-decoration: none;
}
.button:hover {
    background: #6b0a2a;
}
.button.green {
    background: #6bbd61;
    color: #fff;
}
.button.green:hover {
    background: #50a645;
}
.button.yellow {
    background: #fed831;
    color: #33302e;
}
.button.yellow:hover {
    background: #fbcd01;
}
@media screen and (min-width: 767px) {
    .col-3-sm {
        width: 33.33%;
    }
    .row-section:nth-child(odd) .row {
        flex-direction: row-reverse;
    }
}
.image-block {
    background-size: cover;
    background-position: 50%;
    margin-bottom: 10px;
}
.image-block.default {
    padding-bottom: 60%;
}
.image-block.square {
    padding-bottom: 100%;
}
.go-to-account {
    font-size: 18px;
}
@media screen and (min-width: 540px) {
    .col-half-sm {
        width: 50%;
    }
    .go-to-account {
        font-size: 22px;
    }
    .ty-wrapper .container {
        max-width: 900px;
    }
}
@media screen and (min-width: 992px) {
    .ty-wrapper {
        padding: 2rem 0 0;
    }
    body {
        padding-top: 0;
    }
    .col-half {
        width: 50%;
    }
    .col-3 {
        width: 33.33%;
    }
    .col-4 {
        width: 25%;
    }
    .col-6 {
        width: 66.66%;
    }
    .col-9 {
        width: 75%;
    }
}
@media screen and (max-width: 992px) {
    .hidden-mobile,
    .hidden-sm {
        display: none;
    }
}
.header-top-panel {
    content-visibility: auto;
    background: #262a33;
    color: #fff;
}
.header-top-panel a,
.header-top-panel a:focus,
.header-top-panel a:hover,
.header-top-panel a:visited {
    color: inherit;
    text-decoration: none;
}
.coin-tickers {
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 0;
    margin: 0;
    overflow: scroll;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.coin-tickers::-webkit-scrollbar {
    display: none;
}
.coin-ticker {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
}
.coin-name,
.coin-price {
    margin-right: 5px;
}
.coin-price,
.coin-value {
    display: inline-block;
}
.coin-value {
    border: 1px solid transparent;
    padding: 0 4px;
}
.coin-value.up {
    border-color: #9cd321;
    color: #9cd321;
}
.coin-value.down {
    border-color: #ff767c;
    color: #ff767c;
}
@media screen and (max-width: 992px) {
    .coin-price {
        display: none;
    }
}
.header-main-center,
.logo-url {
    line-height: 0;
}
.logo-url {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}
.logo-url img {
    max-width: 160px;
    width: 100%;
    height: auto;
}
.site-header {
    position: relative;
    z-index: 10;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}
.header-main-left,
.header-main-right {
    width: 30px;
}
.menu-button {
    background: transparent;
    border: none;
    width: 30px;
    display: block;
    position: absolute;
    right: 10px;
    top: 8px;
}
.menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    margin: 3px 0;
}
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}
.header-nav a {
    text-decoration: none;
    color: initial;
}
.header-nav .menu-item {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}
.header-nav .menu-item:hover {
    border-bottom-color: #33302e;
}
.header-nav .current-menu-item {
    border-bottom-color: #990f3d;
}
.header-nav .current-menu-item > a {
    color: #990f3d;
}
.header-menu {
    text-transform: uppercase;
}
.header-menu ul {
    padding: 0;
    margin: 0;
}
.header-menu li {
    display: inline-block;
    margin-right: 10px;
}
.header-menu .sub-menu {
    position: absolute;
    min-width: 250px;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    padding: 20px 0;
    background: #fff;
    text-transform: none;
    display: none;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.header-menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    display: none;
}
.header-menu .sub-menu .menu-item-has-children {
    position: relative;
}
.header-menu .sub-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}
.header-menu .sub-menu .menu-item-has-children:after {
    border-color: transparent transparent transparent #33302e;
    margin-bottom: -2px;
}
.header-menu .sub-menu li {
    display: list-item;
    list-style: none;
    margin-bottom: 10px;
    margin-right: 0;
    padding: 0 20px;
}
.header-menu .sub-menu a:hover {
    text-decoration: underline;
}
.header-menu .sub-menu:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: absolute;
    top: -3px;
    left: 0;
}
.header-menu .menu-item-has-children {
    position: relative;
}
.header-menu .menu-item-has-children:after {
    content: "";
    display: inline-block;
    margin-bottom: -3px;
    width: 0;
    height: 0;
    border: 5px solid;
    border-color: #33302e transparent transparent;
}
.header-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.header-menu .menu-item-has-children:hover > .sub-menu li a:hover {
    color: #990f3d;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    border-right: 1px solid #a0a0a0;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    background: #f9f1eb;
    padding: 15px 0;
    z-index: 30;
    overflow-x: hidden;
    overflow-y: scroll;
    color: #33302e;
    max-width: 480px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.side-menu .logo img {
    max-width: 160px;
}
.side-menu.open {
    left: 0;
}
.side-menu a,
.side-menu a:focus,
.side-menu a:hover,
.side-menu a:visited {
    text-decoration: none;
    color: initial;
}
.side-menu .side-menu-header {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.side-menu .side-menu-header .logo {
    text-transform: uppercase;
    font-size: 2rem;
    color: #33302e;
    text-decoration: none;
    font-family: Serif, sans-serif;
    font-weight: 700;
}
.side-menu .side-menu-header .logo:focus,
.side-menu .side-menu-header .logo:hover,
.side-menu .side-menu-header .logo:visited {
    text-decoration: none;
    color: inherit;
}
.side-menu ul {
    padding: 0;
    margin: 0;
}
.side-menu ul li {
    list-style: none;
}
.side-menu .menu-item {
    border: none;
}
.side-menu .menu-item > a {
    display: block;
    padding: 5px 15px;
    font-weight: 700;
}
.side-menu .menu-item.current-menu-item > a {
    background: #990f3d;
    color: #fff;
}
.side-menu .sub-menu {
    padding: 10px 15px;
    margin-bottom: 5px;
    background: #fff;
    font-size: 14px;
    display: none;
    transition: padding 0.2s;
}
.side-menu .sub-menu .toggle-menu-item {
    right: -8px;
}
.side-menu .sub-menu .sub-menu-title {
    text-transform: uppercase;
    padding: 3px 0;
    font-weight: 700;
}
.side-menu .sub-menu a:hover {
    text-decoration: underline;
}
.side-menu .sub-menu li {
    padding: 0.3rem 0;
    position: relative;
}
.side-menu .sub-menu li:before {
    content: ">";
    color: tomato;
    margin-right: 5px;
    font-size: 10px;
    vertical-align: middle;
    font-weight: 700;
}
.side-menu .header-lang {
    text-align: left;
    padding: 0 15px;
    margin-bottom: 10px;
}
.side-menu .close-menu-button {
    width: 30px;
    height: 30px;
    background: none;
    font-size: 30px;
    line-height: 0;
    text-align: center;
    font-weight: 700;
    border: 1px solid transparent;
}
.side-menu .close-menu-button:active,
.side-menu .close-menu-button:focus {
    outline: none;
    border: 1px solid #a0a0a0;
}
.side-menu .menu-item {
    position: relative;
}
.side-menu .toggle-menu-item {
    position: absolute;
    right: 5px;
    top: 0;
    height: 32px;
    line-height: 0;
    background: none;
    border: none;
    outline: none;
    font-size: 0;
}
.side-menu .toggle-menu-item:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 5px solid;
    border-color: transparent transparent transparent #990f3d;
}
.side-menu .current-menu-item .toggle-menu-item:after {
    border-color: transparent transparent transparent #fff;
}
.header-lang a {
    display: inline-block;
    vertical-align: middle;
}
.header-lang a:after {
    content: "";
    display: inline-block;
    margin: -3px 3px 0;
    height: 11px;
    width: 1px;
    background: #33302e;
}
.header-lang a:last-child:after {
    content: none;
}
.header-lang span {
    display: inline-block;
    font-weight: 700;
    vertical-align: middle;
    font-size: 14px;
    margin-right: 5px;
}
.side-menu-section-title {
    padding: 5px 15px;
    background: #f3decb;
    font-size: 12px;
    font-weight: 700;
}
.menu-button {
    display: none;
}
@media screen and (max-width: 767px) {
    .menu-button {
        display: block;
    }
    .header-navigation {
        display: none;
    }
    .header-main-section {
        border-bottom: 1px solid #a0a0a0;
    }
    .header-main {
        padding: 12px 0;
    }
}
.header-lang {
    text-align: right;
    font-weight: 400;
}
@media screen and (min-width: 767px) {
    .logo-url img {
        max-width: 380px;
    }
}
@media screen and (min-width: 992px) {
    .coin-tickers {
        font-size: 14px;
    }
}
.coin-news-section {
    padding: 0 0 30px;
}
.home .site-header {
    margin-bottom: 8px;
}
.news-article a {
    color: inherit;
    text-decoration: none;
}
.news-article .article-category {
    color: #990f3d;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.news-article .article-title {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #000;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 50px;
}
.news-article .article-title a {
    text-decoration: underline;
    text-decoration-color: #990f3d;
}
.news-article .article-title a:hover {
    color: #990f3d;
}
.article-short-content {
    line-height: 1.4;
    margin-bottom: 10px;
}
.article-short-content p {
    margin-top: 0;
    margin-bottom: 20px;
}
.article-short-content p:last-child {
    margin-bottom: 0;
}
.news-article {
    border-bottom: 1px solid #f3decb;
    padding: 0.4rem 0;
    height: 100%;
}
.news-article .article-category,
.news-article .article-title {
    margin-bottom: 5px;
}
.news-article .article-short-content {
    font-size: 0.8rem;
}
.news-article .main-article-meta {
    font-size: 0.5rem;
}
@media screen and (min-width: 767px) {
    .news-article {
        display: flex;
        box-sizing: border-box;
    }
    .news-article-thumb {
        width: 30%;
        padding-top: 3px;
    }
    .news-article-content {
        width: 70%;
        padding-left: 15px;
    }
}
@media screen and (max-width: 767px) {
    .news-article-thumb {
        max-width: 400px;
    }
}
@media screen and (min-width: 992px) {
    .coin-news-section {
        padding-top: 15px;
    }
    .main-article-title-secondary {
        font-size: 1.5rem;
    }
    .news-article {
        padding: 1rem 0;
    }
    .news-article-style-row {
        flex-direction: column;
        margin: 0 -15px;
        padding: 1rem;
    }
    .news-article-style-row .news-article-content {
        padding-left: 0;
    }
    .news-article-style-row .news-article-content,
    .news-article-style-row .news-article-thumb {
        width: 100%;
    }
    .news-article-style-row .article-title {
        font-size: 1rem;
        font-weight: 700;
        min-height: 40px;
    }
}
.guides-section {
    padding: 15px 0 30px;
}
.guides-section-title {
    position: relative;
    margin: 0;
    padding: 15px 0;
    color: #33302e;
}
.guides-section-title:before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #990f3d;
    margin-bottom: 7px;
}
.guides-section-title .coin-logo {
    width: 20px;
    height: 20px;
    margin: 0 5px 0 0;
}
.guides-section-title a {
    color: inherit;
    text-decoration: none;
}
.guides-section-title a:hover {
    color: rgba(51, 48, 46, 0.75);
}
.celebrity-item .article-title {
    font-size: 0.8rem;
}
.celebrity-item .news-article-content {
    width: 100%;
    padding: 0;
}
.celebrity-item img {
    width: 100%;
}
@media screen and (min-width: 992px) {
    .celebrity-item .article-title {
        font-size: 1rem;
        min-height: 40px;
    }
}
.coins-prices {
    padding: 15px 0;
    background: #f3decb;
}
.coin-item div {
    box-sizing: border-box;
}
.coin-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.coin-item-name {
    font-size: 1.2rem;
}
.coin-item-name a {
    color: inherit;
    text-decoration: none;
}
.coin-item-price {
    font-size: 1.2rem;
    color: #990f3d;
    font-weight: 700;
}
.coin-item-main {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}
.coin-item-icon {
    width: 10%;
    min-width: 25px;
}
.coin-item-icon img {
    width: 100%;
}
.coin-item-chart {
    width: 100%;
    padding: 0 15px;
}
.coin-item-chart canvas {
    width: 100% !important;
    height: 80px !important;
}
.coin-item-info {
    text-align: right;
    font-weight: 700;
}
.coin-item-info table {
    float: right;
}
.coin-item-info table td {
    padding: 3px;
}
.coin-item-info .up td:last-child {
    color: #018216;
}
.coin-item-info .down td:last-child {
    color: #990f3d;
}
@media screen and (min-width: 767px) {
    .coins-prices .coin-item-icon {
        min-width: 100px;
    }
}
.content-section .coin-list-table {
    font-size: 14px;
}
.content-section .coin-list-table tr:nth-child(2n) td {
    background: #f3decb;
}
.content-section .coin-list-table td,
.content-section .coin-list-table th {
    border-radius: 0 !important;
    border: none;
    padding: 5px 10px;
}
.content-section .coin-list-table td span,
.content-section .coin-list-table th span {
    font-weight: 400;
}
.content-section .coin-list-table td:nth-child(2),
.content-section .coin-list-table th:nth-child(2) {
    text-align: left;
}
.content-section .coin-list-table img {
    width: 20px;
    height: 20px;
    margin: 0 5px 0 0 !important;
}
.coin-filters {
    padding: 20px 0;
}
.coin-filters .button {
    width: auto;
    font-size: 12px;
    padding: 5px 0;
    background: #fed831;
    color: #33302e;
    border: none;
    box-shadow: none;
}
.coin-filters .button:hover {
    background: #fbcd01;
    color: #33302e;
}
.coin-filters-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    font-size: 14px;
}
.coin-filters-row .coin-filter-item {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 15px;
}
.coin-filters-row .coin-filter-item label {
    font-weight: 700;
}
.coin-filters-row .coin-filter-item div {
    width: 100%;
}
.coin-filters-row .coin-filter-item select {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    background: #fff url(../img/arrow-down-sign-to-navigate.svg) no-repeat calc(100% - 10px) 50%;
    background-size: 15px;
    appearance: none;
}
@media screen and (max-width: 992px) {
    .coin-filters-row .coin-filter-item {
        width: 33.33%;
    }
}
@media screen and (max-width: 767px) {
    .coin-filters-row .coin-filter-item {
        width: 50%;
    }
}
.ff-grid {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    position: relative;
}
[class*="ff-column"] {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    position: relative;
    max-width: calc(100% - 20px);
}
.ff-column-flush {
    margin: 0;
    position: relative;
    max-width: 100%;
}
.ff-row .ff-column {
    float: left;
}
@media only screen and (max-width: 765px) {
    .ff-span-2 {
        width: calc(50% - 20px);
    }
    .ff-column-flush.ff-span-2 {
        width: 50%;
    }
    .row .ff-column.ff-span-1:nth-child(6n + 7),
    .row .ff-column.ff-span-2:nth-child(2n + 3) {
        clear: left;
    }
    .ff-span-3,
    .ff-span-4,
    .ff-span-5,
    .ff-span-6,
    .ff-span-7,
    .ff-span-8,
    .ff-span-9,
    .ff-span-10,
    .ff-span-11 {
        width: calc(100% - 20px);
    }
    .ff-column-flush.ff-span-3,
    .ff-column-flush.ff-span-4,
    .ff-column-flush.ff-span-5,
    .ff-column-flush.ff-span-6,
    .ff-column-flush.ff-span-7,
    .ff-column-flush.ff-span-8,
    .ff-column-flush.ff-span-9,
    .ff-column-flush.ff-span-10,
    .ff-column-flush.ff-span-11 {
        width: 100%;
    }
}
@media only screen and (min-width: 766px) {
    .ff-span-4 {
        width: calc(33.33333% - 20px);
    }
    .ff-column-flush.ff-span-4 {
        width: 33.33332%;
    }
    .ff-span-5,
    .ff-span-6,
    .ff-span-7 {
        width: calc(50% - 20px);
    }
    .ff-column-flush.ff-span-5,
    .ff-column-flush.ff-span-6,
    .ff-column-flush.ff-span-7 {
        width: 49.99998%;
    }
    .ff-span-3 .image-left .media-image,
    .ff-span-3 .image-right .media-image,
    .ff-span-4 .image-left .media-image,
    .ff-span-4 .image-right .media-image {
        max-width: 33%;
    }
}
@media only screen and (min-width: 481px) and (max-width: 640px) {
    .ff-span-3 .image-left .media-image,
    .ff-span-3 .image-right .media-image,
    .ff-span-4 .image-left .media-image,
    .ff-span-4 .image-right .media-image {
        max-width: none;
    }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .ff-span-2 {
        width: calc(33.33333% - 20px);
    }
    .ff-column-flush.ff-span-2 {
        width: 33.33332%;
    }
    .ff-span-3 {
        width: calc(50% - 20px);
    }
    .ff-column-flush.ff-span-3 {
        width: 49.99998%;
    }
    .ff-span-3 + .ff-span-6,
    .ff-span-8 {
        width: calc(100% - 20px);
    }
    .ff-column.sidebar {
        display: flex;
        flex-flow: row wrap;
        min-width: 99.99996%;
        margin-left: 0;
        margin-right: 0;
    }
    .ff-column.sidebar .widget {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px 20px;
    }
    .ff-span-9 {
        width: calc(100% - 20px);
    }
}
@media only screen and (min-width: 601px) and (max-width: 782px) {
    .row .ff-column.ff-span-2:nth-child(3n + 4),
    .row .ff-column.ff-span-3:nth-child(2n + 3) {
        clear: left;
    }
}
@media only screen and (min-width: 601px) and (max-width: 860px) {
    .ff-span-10 {
        width: calc(100% - 20px);
    }
    .ff-span-5 + .ff-span-5 + .ff-span-2 {
        width: 100%;
    }
}
@media only screen and (min-width: 769px) {
    .ff-span-1 {
        width: calc(8.33333% - 20px);
    }
    .ff-span-2 {
        width: calc(16.66667% - 20px);
    }
    .ff-span-3 {
        width: calc(25% - 20px);
    }
    .ff-span-5 {
        width: calc(41.66667% - 20px);
    }
    .ff-span-7 {
        width: calc(58.33333% - 20px);
    }
    .ff-span-8 {
        width: calc(66.66667% - 20px);
    }
    .ff-span-9 {
        width: calc(75% - 20px);
    }
    .ff-span-10 {
        width: calc(83.33333% - 20px);
    }
    .ff-span-11 {
        width: calc(91.66667% - 20px);
    }
    .ff-column-flush.ff-span-1 {
        width: 8.33333%;
    }
    .ff-column-flush.ff-span-2 {
        width: 16.66666%;
    }
    .ff-column-flush.ff-span-3 {
        width: 24.99999%;
    }
    .ff-column-flush.ff-span-5 {
        width: 41.66665%;
    }
    .ff-column-flush.ff-span-7 {
        width: 58.33331%;
    }
    .ff-column-flush.ff-span-8 {
        width: 66.66664%;
    }
    .ff-column-flush.ff-span-9 {
        width: 74.99997%;
    }
    .ff-column-flush.ff-span-10 {
        width: 83.3333%;
    }
    .ff-column-flush.ff-span-11 {
        width: 91.66663%;
    }
    .offset-1 {
        margin-right: 8.5%;
    }
    .offset-2 {
        margin-right: 17%;
    }
    .offset-3 {
        margin-right: 25.5%;
    }
    .offset-4 {
        margin-right: 34%;
    }
    .offset-5 {
        margin-right: 42.5%;
    }
    .offset-6 {
        margin-right: 51%;
    }
    .offset-7 {
        margin-right: 59.5%;
    }
    .offset-8 {
        margin-right: 68%;
    }
    .offset-9 {
        margin-right: 76.5%;
    }
    .offset-10 {
        margin-right: 85%;
    }
    .offset-11 {
        margin-right: 93.5%;
    }
    .offset-left-1 {
        margin-left: 8.5%;
    }
    .offset-left-2 {
        margin-left: 17%;
    }
    .offset-left-3 {
        margin-left: 25.5%;
    }
    .offset-left-4 {
        margin-left: 34%;
    }
    .offset-left-5 {
        margin-left: 42.5%;
    }
    .offset-left-6 {
        margin-left: 51%;
    }
    .offset-left-7 {
        margin-left: 59.5%;
    }
    .offset-left-8 {
        margin-left: 68%;
    }
    .offset-left-9 {
        margin-left: 76.5%;
    }
    .offset-left-10 {
        margin-left: 85%;
    }
    .offset-left-11 {
        margin-left: 93.5%;
    }
    .pull-left-1 {
        margin-left: -8.5%;
    }
    .pull-left-2 {
        margin-left: -17%;
    }
    .pull-left-3 {
        margin-left: -25.5%;
    }
    .pull-left-4 {
        margin-left: -34%;
    }
    .pull-left-5 {
        margin-left: -42.5%;
    }
    .pull-left-6 {
        margin-left: -51%;
    }
    .pull-left-7 {
        margin-left: -59.5%;
    }
    .pull-left-8 {
        margin-left: -68%;
    }
    .pull-left-9 {
        margin-left: -76.5%;
    }
    .pull-left-10 {
        margin-left: -85%;
    }
    .pull-left-11 {
        margin-left: -93.5%;
    }
    .pull-right-1 {
        margin-right: -8.5%;
    }
    .pull-right-2 {
        margin-right: -17%;
    }
    .pull-right-3 {
        margin-right: -25.5%;
    }
    .pull-right-4 {
        margin-right: -34%;
    }
    .pull-right-5 {
        margin-right: -42.5%;
    }
    .pull-right-6 {
        margin-right: -51%;
    }
    .pull-right-7 {
        margin-right: -59.5%;
    }
    .pull-right-8 {
        margin-right: -68%;
    }
    .pull-right-9 {
        margin-right: -76.5%;
    }
    .pull-right-10 {
        margin-right: -85%;
    }
    .pull-right-11 {
        margin-right: -93.5%;
    }
    .row .ff-span-2:nth-child(6n + 7),
    .row .ff-span-3:nth-child(4n + 5),
    .row .ff-span-4:nth-child(3n + 4),
    .row .ff-span-6:nth-child(2n + 3) {
        clear: left;
    }
}
.review-badge {
    background: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    padding: 20px;
    align-items: center;
    margin: auto;
    width: 100%;
}
.review-badge .funnel-logo {
    display: flex !important;
}
.sidebar .review-badge img {
    padding: 10px;
}
.review-badge img {
    display: block;
    max-height: 90px;
    width: auto;
}
.review-badge .stars {
    margin-top: 8px;
    padding: 2px 4px;
    border-radius: 4px;
    text-align: center;
}
.review-badge .stars img {
    max-width: 20px;
}
.review-badge .stars strong {
    clear: both;
    display: block;
    color: #19242d;
    font-size: 10px;
    text-transform: uppercase;
}
.review-badge .stars i.fa {
    color: #e6cb00;
}
.review-badge div.rating {
    padding: 10px 0;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    align-items: center;
}
.review-badge .thumbs {
    text-align: center;
    width: 50%;
    height: 95px;
}
.review-badge .thumbs img {
    max-width: 90px;
    margin: auto;
    aspect-ratio: auto 70 / 42;
}
.review-badge .rating .score {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 50%;
    text-align: center;
}
.review-badge .rating .score p.rating {
    width: 100%;
    font-size: 30px;
    font-family: Nunito, sans-serif;
    margin-bottom: 0;
    color: #3182ce;
}
.review-badge .rating strong {
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
}
.review-badge ul {
    list-style: none;
    margin: 0;
}
.review-badge ul li {
    list-style: none;
    line-height: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    margin-left: 0;
}
.review-badge ul li svg {
    margin-right: 5px;
}
.review-badge a.button {
    clear: both;
    margin-bottom: 10px;
    float: none;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}
.review-badge a.button.btn-secondary {
    border: none;
    color: #444;
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    text-align: center;
    text-transform: none;
    text-decoration: underline;
}
.review-badge a.button.btn-secondary:hover {
    background: none;
    color: #000;
}
.review-badge .ff-column {
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.review-badge .ff-column:last-child p {
    margin-bottom: 0;
}
.sidebar .review-badge .grid {
    flex-direction: column;
}
.sidebar .review-badge .ff-column {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    width: 100%;
}
.sidebar .review-badge .ff-column .rating {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sidebar .review-badge {
    padding: 0;
}
.sidebar .review-badge .ff-column {
    padding: 0 20px;
    margin-bottom: 20px;
}
.sidebar .review-badge h2 {
    margin-top: 10px;
}
.review-badge h2 {
    font-weight: 700;
}
.review-badge .button.btn-primary {
    color: #000;
}
ff-span.verified {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
}
p.verified {
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
    color: #000;
    margin-bottom: 0;
}
#register {
    padding: 20px;
    border: 1px solid #f5f5f5;
    margin-top: 20px;
    border-radius: 6px;
}
#register .funnel-logo {
    display: flex;
}
#register h4.heading {
    margin-bottom: 20px;
}
#register .error {
    background: #f40;
    border-radius: 4px;
    color: #fff;
    padding: 6px 12px;
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
}
#register .error.hidden {
    display: none;
}
#register .grid {
    padding: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 2px solid #227078;
    box-shadow: 0 5px 5px #f2e5da;
}
#register input {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    width: 100%;
}
.iti.iti--allow-dropdown {
    width: 100%;
}
.iti__flag-container {
    border: 1px solid #eee;
    border-radius: 4px 0 0 4px;
}
#register #phone_number {
    border-radius: 0 4px 4px 0;
    padding-left: 45px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px !important;
}
#register input[type="submit"] {
    border: none;
    background: #6bbd61;
    color: #fff;
    font-weight: 400;
    margin-top: 20px;
    padding: 10px 20px;
    text-transform: uppercase;
    width: 100%;
}
#register .ff-column.ff-span-7 {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}
.page-template-template-account-activation {
    background: #fff;
}
.page-template-template-account-activation .header-site {
    background: #fff9f4;
}
.page-template-template-account-activation .header-block {
    margin: auto;
    max-width: 760px;
    text-align: center;
}
.page-template-template-account-activation .logo {
    display: inline-block;
    width: auto;
}
.page-template-template-account-activation .sitename {
    font-size: 26px;
    text-align: left;
}
.page-template-template-account-activation .header-block .float-right {
    display: none;
    float: right;
}
.page-template-template-account-activation .header-block .button {
    max-width: 260px;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 12px;
}
.page-template-template-account-activation .story h3 {
    font-family: Nunito, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 26px;
}
.page-template-template-account-activation .story p {
    line-height: 28px;
    font-size: 17px;
}
.page-template-template-account-activation .excerpt {
    background: #fff9f4;
    padding: 20px;
    border: 1px solid #e5e0db;
    border-radius: 4px;
    margin-top: 15px;
}
.page-template-template-account-activation .excerpt p {
    color: #444;
    font-weight: 600;
}
.page-template-template-account-activation .important {
    color: #f10;
    text-decoration: underline;
}
@media only screen and (min-width: 481px) {
    .sidebar .review-badge.sticky {
        position: fixed;
        top: 10px;
        max-width: 214px;
    }
}
@media only screen and (max-width: 769px) {
    .header-block {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 0 20px;
        width: 100%;
    }
    .responsive-nav {
        padding: 15px 0;
    }
    .logo {
        display: flex;
    }
    .review-badge .grid {
        flex-direction: column;
    }
    .review-badge .ff-column {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 0;
        width: 100%;
    }
    .review-badge .ff-column .rating {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .review-badge {
        padding: 0;
    }
    .review-badge .funnel-logo img {
        padding: 10px;
    }
    .review-badge .ff-column {
        flex-direction: column;
    }
    .review-badge .ff-column:nth-child(2),
    .review-badge .ff-column:nth-child(3) {
        padding: 0 20px;
    }
    .review-badge .ff-column {
        margin-bottom: 20px;
    }
    .review-badge h2 {
        margin-top: 10px;
    }
    .sidebar .review-badge.sticky {
        display: none;
    }
    #register .ff-column.ff-span-7 {
        padding-left: 0;
        border-left: none;
    }
}
.badge-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    margin: 15px 0;
    padding: 15px;
}
.badge-wrapper:first-child {
    margin-top: 0;
}
.badge-wrapper .badge-rating {
    text-align: center;
    font-size: 16px;
    color: #2e364e;
    font-weight: 400;
}
.badge-wrapper .badge-rating .count,
.badge-wrapper .badge-rating b {
    line-height: 35px;
    margin: 5px 0;
    color: #3182ce;
    font-size: 30px;
    font-weight: 700;
}
.badge-wrapper .badge-rating img {
    max-width: 40px;
    margin: 0 auto;
    aspect-ratio: auto 40 / 24;
}
.badge-wrapper .badge-text {
    text-align: center;
    font-size: 16px;
    color: #2e364e;
    font-weight: 400;
}
.badge-wrapper .badge-text .count {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    margin: 5px 0;
}
.badge-wrapper .button {
    background: #fed831;
    color: #33302e;
}
body .lwptoc-transparent .lwptoc_i {
    border: none !important;
}
body .lwptoc-notInherit .lwptoc_i DIV A {
    color: inherit !important;
}
body .lwptoc-notInherit .lwptoc_i div a {
    border-bottom: 1px solid transparent !important;
}
body .lwptoc_item .lwptoc_item span {
    font-weight: 400;
}
.lwptoc_toggle {
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    background: #990f3d;
    color: #fff;
    font-weight: 700;
    text-transform: none;
}
.lwptoc_toggle a {
    text-decoration: none !important;
    color: inherit;
    text-transform: none;
}
.lwptoc_title {
    display: none;
}
.lwptoc_toggle:after,
.lwptoc_toggle:before {
    content: none !important;
}
.lwptoc_i {
    width: 100%;
}
.lwptoc_items-visible > .lwptoc_itemWrap {
    width: 100%;
    padding: 15px;
    background: #fff;
}
.badge-wrapper,
.lwptoc_items-visible > .lwptoc_itemWrap,
.pros-cons {
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.pros-cons {
    background: #fff;
    margin: 15px 0;
}
.pros-cons td {
    text-align: left !important;
    border: 1px solid #a0a0a0 !important;
}
.statistic-table {
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    margin: 15px 0;
}
.story table {
    border-collapse: initial !important;
}
.story .fa-check {
    color: green;
}
.story .fa-star {
    color: #daa520;
}
.story .fa-dot-circle {
    color: #00a882;
}
.faq-wrapper .faq-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.faq-wrapper .faq-header .fas {
    vertical-align: middle;
    margin-left: 10px;
    transition: transform 0.3s;
}
.faq-wrapper .faq-body {
    display: none;
}
.faq-wrapper .faq-body > div {
    padding: 0 0 15px;
}
.faq-wrapper .faq-item {
    border-bottom: 1px solid #a0a0a0;
    margin-bottom: 15px;
}
.js--faq-button {
    cursor: pointer;
}
.js--faq-button.is-open .fas {
    transform: rotate(180deg);
}
.lwptoc_header {
    margin: 0 !important;
    text-align: center;
}
.badge-count {
    font-size: 28px;
    text-align: center;
    color: #fed831;
    font-weight: 700;
}
.alternative-wrapper > div:last-child {
    margin-bottom: 0;
}
#register img,
.badge-wrapper img {
    max-height: 55px;
    max-width: 250px;
    width: auto;
    height: auto;
    aspect-ratio: auto 250 / 55;
}
@media screen and (max-width: 767px) {
    .story .lwptoc_header {
        text-align: center;
    }
    .story table td {
        text-align: center !important;
        padding: 10px !important;
    }
    .badge-wrapper {
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }
    .badge-wrapper .badge-logo {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        text-align: center;
    }
    .badge-wrapper .badge-cta {
        width: 100%;
        margin-top: 15px;
    }
    .badge-wrapper .badge-cta .button {
        width: 100%;
        max-width: 400px;
    }
}

.article-heading {
    margin-bottom: 1rem;
    border-bottom: 1px solid #a0a0a0;
}
.article-heading img {
    margin-bottom: 0.4rem;
}
@media screen and (max-width: 992px) {
    .story .wp-post-image {
        margin-top: 1rem;
    }
}
@media screen and (min-width: 992px) {
    .story {
        padding-top: 28px;
    }
}
.article-title,
.story .wp-post-image {
    margin-bottom: 1rem;
}
.article-title {
    font-size: 1.3rem;
}
.article-short-content {
    margin-bottom: 1rem;
    font-size: 14px;
}
.article-short-content p:last-child {
    margin: 0;
}
.article-image {
    margin-bottom: 1rem;
}
.article-meta {
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
}
.article-meta a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}
#register {
    background: transparent;
    margin: 1rem 0;
    padding: 0;
}
#register input[type="submit"],
#register label {
    font-weight: 700;
}
.logos_section_inner img {
    width: 20% !important;
}
.mobile-fixed-button {
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 22;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: 0.5s ease;
}
.mobile-fixed-button p {
    margin: 0;
    padding-right: 0.5rem;
}
.mobile-fixed-button .button {
    min-width: 140px;
}
.sidebar .review-badge {
    padding: 1rem;
}
.sidebar .review-badge .ff-grid {
    justify-content: center;
}
.sidebar .review-badge .ff-column {
    margin: 0;
}
.sidebar .review-badge .ff-column .rating {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: none;
}
.sidebar .review-badge .ff-column .rating .score {
    width: 100%;
}
.sidebar .review-badge .ff-column p.verified {
    margin: 0;
}
.review-badge .button.btn-primary {
    background: #fed831;
    color: #33302e;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
.review-badge .button.btn-primary:hover {
    background: #fbcd01;
}
#register,
.review-badge {
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.content-section {
    color: #33302e;
    font-size: 14px;
    margin-bottom: 1rem;
}
.content-section #register {
    background: #fff;
    padding: 1rem;
}
.content-section .highlight {
    color: #20335b;
    background-color: #f5ff00;
}
.content-section blockquote {
    background: #f7e9dd;
    border-left: 5px solid #dcbea5;
    font-family: Nunito, sans-serif;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-style: italic;
    margin: 1rem 0;
    padding: 1rem 1rem 1rem 2rem;
}
.content-section .review-badge {
    margin: 1rem 0;
    box-sizing: border-box;
    background: #fff;
    padding: 1rem;
}
.content-section .review-badge .ff-grid {
    justify-content: center;
}
.content-section .review-badge .rating {
    background: transparent;
    border: none;
}
.content-section .review-badge .ff-column:first-child {
    margin-left: 0;
}
.content-section .review-badge .ff-column:last-child {
    margin-right: 0;
}
.content-section p {
    margin: 1rem 0;
    line-height: 1.3;
}
.content-section a {
    color: inherit;
    font-weight: 600;
    text-decoration-color: #990f3d;
}
.content-section h2 {
    margin: 2rem 0 1rem;
    text-transform: capitalize;
}
.content-section h2:before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #990f3d;
    margin-bottom: 7px;
}
.content-section ul {
    padding-left: 1rem;
}
.content-section ul li {
    margin-bottom: 0.7rem;
}
.content-section table {
    margin-bottom: 1rem;
    width: 100%;
    border-collapse: initial;
}
.content-section table caption {
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
}
.content-section table thead td,
.content-section table thead th {
    text-align: center;
    background: #6b0d2d;
    padding: 12px 25px;
    color: #fff;
}
.content-section table thead td:first-child,
.content-section table thead th:first-child {
    border-top-left-radius: 15px;
    text-align: left;
}
.content-section table thead td:last-child,
.content-section table thead th:last-child {
    border-top-right-radius: 15px;
}
.content-section table td {
    padding: 12px 25px;
    vertical-align: top;
    border-bottom: 1px solid #a0a0a0;
    text-align: center;
}
.content-section table td:first-child {
    text-align: left;
}
.content-section table td:last-child {
    padding-right: 0;
}
.content-section table td[colspan] {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
}
.content-section table td.selected {
    position: relative;
}
.content-section table td.selected:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 2px solid #990f3d;
    border-right: 2px solid #990f3d;
}
.content-section table th.selected {
    position: relative;
}
.content-section table th.selected:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 2px solid #990f3d;
    border-right: 2px solid #990f3d;
    border-top: 2px solid #990f3d;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.content-section table tr:last-child td.selected {
    position: relative;
    border: none;
}
.content-section table tr:last-child td.selected:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 2px solid #990f3d;
    border-right: 2px solid #990f3d;
    border-bottom: 2px solid #990f3d;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.content-section table tr:last-child td {
    border-bottom: none;
}
.content-section table h2 {
    margin: 0;
}
.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
    clear: both;
}
.content-section h3 {
    margin: 1rem 0;
}
.content-section .button {
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}
.content-section .lwptoc {
    margin: 1rem 0;
}
.content-section p:blank {
    display: none;
}
.content-section .lwptoc_header {
    padding: 0.5rem 0;
}
.content-section .lwptoc_i {
    padding: 0;
}
.content-section .lwptoc_items a {
    display: block;
    margin-bottom: 0.5rem;
}
.related-posts,
.sidebar-wrapper {
    margin: 1rem 0;
}
.related-posts .guides-section-title {
    padding-bottom: 0;
}
@media screen and (max-width: 767px) {
    .table-wrapper {
        max-width: 100%;
        overflow-x: scroll;
    }
    .review-badge .ff-column,
    .review-badge .verified,
    .review-badge p {
        margin: 0;
    }
    .review-badge .thumbs img {
        max-width: 50px;
    }
    #register h4.heading {
        display: none;
    }
}
@media screen and (min-width: 540px) {
    .article-title {
        font-size: 2rem;
    }
    .article-short-content {
        font-size: 1.1rem;
    }
    .content-section {
        font-size: 16px;
    }
    .article-heading img,
    .article-meta {
        margin-bottom: 1rem;
    }
    .article-meta {
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 992px) {
    .mobile-fixed-button {
        display: none;
    }
    .sidebar-wrapper {
        margin: 26px 0 1rem;
    }
    .sidebar-wrapper.fixed {
        position: fixed;
        top: 0;
    }
    .review-badge .button.btn-primary {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.quiz-widget {
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 20px;
}
.quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.quiz-header .question {
    font-size: 18px;
    font-weight: 700;
    padding-right: 20px;
    min-width: 320px;
}
.quiz-button {
    background: #fed831;
    color: #33302e;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    margin: 0 10px;
}
.quiz-button:focus {
    outline: none;
}
.quiz-button.selected {
    border: 2px solid #000;
}
.quiz-first {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.quiz-first .message {
    font-size: 18px;
}
.quiz-first .logo-button {
    background: transparent;
    max-width: 100px;
    margin: 0 10px;
    border: 2px solid transparent;
}
.quiz-first .logo-button:focus {
    outline: none;
}
.quiz-first .logo-button.selected {
    border: 2px solid #000;
}
.quiz-first .step-buttons {
    display: flex;
}
.quiz-result-content {
    display: flex;
    align-items: flex-start;
}
.quiz-result-content img {
    max-width: 200px;
}
.quiz-result-content ul {
    padding: 0;
    font-size: inherit;
}
.quiz-result-content ul li {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 0;
    position: relative;
}
.quiz-result-content ul li:before {
    content: "\2713";
    color: #50a645;
    display: block;
    text-align: left;
    font-size: 20px;
    width: 16px;
    height: 20px;
    position: absolute;
    top: -2px;
    left: 0;
}
.quiz-result-content label {
    font-weight: 700;
}
.quiz-result-content input {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    width: 100%;
}
.quiz-result-content #phone_number {
    padding-left: 45px;
}
.quiz-result-content input[type="submit"] {
    border: none;
    background: #6bbd61;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px 20px;
    text-transform: uppercase;
    width: 100%;
}
.quiz-result-content .ff-column {
    width: calc(50% - 20px);
    margin: 0;
}
.quiz-result-content .disclamer {
    font-size: 14px;
}
.quiz-result-top {
    text-align: center;
    font-size: 32px;
    color: #6fb92e;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}
.quiz-result-top span {
    font-size: 20px;
}
.quiz-result-top .message {
    font-size: 18px;
    color: #33302e;
    font-weight: 400;
    margin-top: 10px;
}
.quiz-result-subtitle {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.js--quiz-result,
.quiz-variant {
    display: none;
}
.js--quiz-result:first-child {
    display: block;
}
.quiz-widget .ff-grid {
    align-items: center;
    justify-content: space-between;
}
.quiz-widget .ff-grid .disclamer {
    text-align: center;
    margin-bottom: 15px;
}
.quiz-widget .ff-grid .text-center {
    text-align: center;
}
.quiz-widget .ff-grid .quiz-button {
    margin: 0 auto;
    width: auto;
}
@media screen and (max-width: 767px) {
    .quiz-result-content .ff-column {
        width: 100%;
        margin-bottom: 15px;
    }
    .quiz-result-content .logos_section_inner {
        max-width: 400px;
    }
    .step-buttons {
        margin-top: 20px;
    }
    .quiz-first {
        padding-top: 10px;
    }
    .quiz-header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }
    .quiz-header .quiz-button {
        max-width: 150px;
        margin-bottom: 15px;
    }
    .quiz-header .question {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .quiz-first {
        display: block;
        text-align: center;
    }
    .quiz-first .step-buttons {
        justify-content: center;
    }
    .quiz-first .logo-button {
        width: 33%;
    }
    .quiz-result-content {
        display: block;
    }
    .quiz-result-content .heading {
        margin-top: 0;
    }
    .quiz-result-content .feature,
    .quiz-result-content .form,
    .quiz-result-content .logo {
        width: 100%;
        margin: 15px 0;
        padding: 0 15px;
    }
    .quiz-result-content .feature img,
    .quiz-result-content .form img,
    .quiz-result-content .logo img {
        max-height: 100px;
        width: auto;
        display: block;
        margin: 0 auto;
    }
}
.quiz-result-1 {
    display: block;
}
.author-box {
    display: flex;
    align-items: center;
    border-top: 1px solid #a0a0a0;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}
.author-box .avatar {
    max-width: 60px;
    width: 100%;
    line-height: 0;
}
.author-box .avatar img {
    border-radius: 50%;
    border: 2px solid #990f3d;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    margin: 0;
}
.author-box svg {
    max-width: 15px;
}
.author-box svg path {
    fill: #018216;
}
.author-box .info {
    width: 100%;
    padding-left: 1rem;
}
.author-box .name {
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
}
.author-box .name span {
    margin: 0 0.5rem;
    color: #018216;
}
@media screen and (max-width: 767px) {
    .author-box {
        text-align: center;
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
    }
    .author-box .name {
        align-items: center;
        justify-content: center;
    }
    .author-box .avatar {
        line-height: 1;
        margin-bottom: 0.5rem;
    }
}
.single-author .author-box {
    align-items: stretch;
    padding: 1rem 0;
    margin: 1rem 0;
}
.single-author .author-box p {
    font-size: 1rem;
}
.single-author .author-box .avatar {
    max-width: 200px;
}
.single-author .author-box .info {
    font-size: 0.8rem;
    width: 100%;
    padding-left: 1rem;
}
.single-author .entry-social {
    padding: 0;
    margin: 1em 0;
    line-height: 0;
}
.single-author .entry-social svg {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    margin: 0 5px 0 0;
}
.single-author .entry-social li {
    display: inline-block;
    list-style: none;
}
.author-item {
    color: inherit;
    text-decoration: none;
}
.author-item .author-box {
    border: none;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}
.author-item .author-box .avatar {
    margin-bottom: 1rem;
}
.author-item .author-box .info {
    padding-left: 0;
}
.author-item .author-box .name {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.author-item .author-box .name strong {
    font-size: 1rem;
}
.author-item .author-box .entry-date {
    font-size: 0.7rem;
}
.review-header {
    padding: 15px 0;
    border-bottom: 1px solid #a0a0a0;
}
.review-header .rh-left {
    width: calc(100% - 250px);
    display: flex;
    align-items: center;
}
.review-header .rh-left .guides-section-title {
    margin: 0;
    padding: 0;
    color: #33302e;
}
.review-header .rh-left svg {
    height: 12px;
    width: 12px;
}
.review-header .rh-left svg path,
.review-header .rh-left svg polygon {
    fill: #696969;
}
.review-header .rh-left .article-heading {
    border-bottom: none;
    margin: 0;
}
.review-header .rh-left .article-meta {
    margin: 0;
}
.review-header .rh-left .score-wrapper {
    margin: 5px 0;
}
.review-header .rh-left .number {
    font-size: 12px;
    font-weight: 700;
}
.review-header .rh-right {
    background: #f3decb;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    display: flex;
    align-items: center;
}
.review-header .rh-right .message {
    padding-left: 15px;
}
.review-header .rh-right .message .title {
    font-weight: 700;
    font-size: 14px;
}
.review-header .rh-right .message a {
    font-size: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fed831, #fed831);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 0.3rem;
    transition: background-size 0.2s;
}
.review-header .rh-right .message a:hover {
    background-size: 0.3rem 2rem;
}
.review-header .rh-right .icon {
    width: 30px;
    position: relative;
}
.review-header .rh-right #world-icon {
    width: 30px;
    height: 30px;
}
.review-header .rh-right #check-icon {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.review-navigation-section {
    margin: 0;
    height: 0;
    overflow: hidden;
}
.review-navigation-section.fixed {
    height: auto;
    margin-top: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    background: #fff;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.review-navigation {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.review-navigation li {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    color: #5f5f5f;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}
.review-navigation li svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}
.review-navigation li .icon {
    font-size: 30px;
}
.review-navigation li.active,
.review-navigation li.active .icon {
    color: #990f3d;
}
.review-navigation li.active svg path {
    fill: #990f3d;
}
.summary-left {
    width: 25%;
    border-radius: 1rem;
    background: #f3decb;
    position: relative;
    padding: 2rem;
    overflow: hidden;
    line-height: 1.5;
    z-index: 1;
}
.summary-right {
    width: 75%;
    padding-left: 20px;
    line-height: 2;
}
.summary-right blockquote {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-left: 0.3rem solid #990f3d;
    padding-left: 2rem;
    margin: 0 0 20px;
    background: #f3decb;
}
.summary-right a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fed831, #fed831);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 0.3rem;
    transition: background-size 0.2s;
}
.summary-right a:hover {
    background-size: 0.3rem 2rem;
}
.summary-right .badge {
    margin-right: 15px;
}
.summary-score {
    padding: 20px;
    background: #f3decb;
    display: flex;
    align-items: center;
}
.summary-main-score {
    width: 30%;
}
.summary-secondary-score {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}
.secondary-score-item {
    width: 25%;
}
.review-page .content-section {
    line-height: 1.5;
}
.review-page .content-section a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fed831, #fed831);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 0.3rem;
    transition: background-size 0.2s;
}
.review-page .content-section a:hover {
    background-size: 0.3rem 2rem;
}
.review-page .content-section table a {
    background: none;
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #990f3d;
}
.sidebar-widget-title {
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    color: #33302e;
    font-weight: 700;
}
.sidebar-widget-title:before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #990f3d;
    margin-bottom: 7px;
}
.review-section {
    margin: 30px 0;
}
.review-section h4 {
    font-size: 1.17em;
    color: #33302e;
    font-weight: 700;
}
.review-section img {
    width: auto;
    height: auto;
}
.review-section img.aligncenter {
    margin: 0 auto;
    display: block;
}
.review-section figure {
    margin: initial;
    max-width: 100%;
}
.review-section figure.aligncenter {
    text-align: center;
}
.review-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.review-section .content-wrapper {
    padding: 0 40px;
    max-width: calc(100% - 380px);
}
.review-section blockquote {
    background: #fff7e5;
    border-color: #a0a0a0;
}
.review-section ul li::marker {
    color: #fed831;
}
.review-section-title {
    margin: 0;
    font-size: 1.6rem;
    color: #33302e;
}
.review-section-title:before {
    content: "";
    display: block;
    border-top: 4px solid #990f3d;
    width: 60px;
    margin-bottom: 5px;
}
.review-section-title .icon {
    display: inline-block;
    font-size: 35px;
}
.review-section-title .icon svg {
    width: 35px;
    height: 35px;
}
.review-section-header {
    margin-bottom: 20px;
}
.review-section-header .score-wrapper .number {
    font-weight: 700;
    font-size: 12px;
}
.review-section-side {
    padding: 10px 15px 15px;
    width: 184px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 12px;
}
.review-section-side,
.review-section-side .or-separator span {
    background-color: #f3decb;
}
.review-section-side .button {
    box-shadow: -3px 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.or-separator {
    display: block;
    text-align: center;
    margin: 15px 0;
    position: relative;
    z-index: 2;
}
.or-separator:before {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    height: 1px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #a0a0a0;
}
.or-separator span {
    display: inline-block;
    padding: 0 10px;
    font-size: 12px;
}
.badge.awards:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    background: url(../img/medal.svg) no-repeat 50%;
    background-size: cover;
    vertical-align: middle;
}
.indicator {
    max-width: 120px;
    width: 100%;
    height: 5px;
    position: relative;
    display: flex;
    z-index: 2;
    border: 1px solid #a0a0a0;
    border-radius: 3px;
}
.indicator .sector {
    width: 20%;
    border-right: 1px solid #a0a0a0;
}
.indicator .sector:last-child {
    border-right: none;
}
.indicator .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: -1;
}
.indicator.big {
    max-width: 150px;
    height: 10px;
}
.score-wrapper {
    display: flex;
    align-items: center;
}
.score-wrapper .number {
    margin-left: 10px;
}
.cta-wrapper {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}
.content-wrapper-center {
    margin: 0 auto;
}
.content-wrapper,
.content-wrapper-center {
    max-width: 600px;
    width: 100%;
}
.content-section .article-img {
    background: transparent;
}
.content-section a img {
    margin-bottom: 1rem;
}
.content-section blockquote {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-left: 0.3rem solid #990f3d;
    padding-left: 2rem;
    margin: 0 0 20px;
    background: #f3decb;
}
.content-section .compare-table-two-variant {
    border-collapse: initial;
    width: 100%;
    font-size: 14px;
    border: 1px solid #a0a0a0;
    border-radius: 10px;
    font-weight: 60;
}
.content-section .compare-table-two-variant td,
.content-section .compare-table-two-variant th {
    width: 50%;
    text-align: left !important;
    background: transparent;
}
.content-section .compare-table-two-variant td:last-child {
    vertical-align: middle;
    border-right: 1px solid #a0a0a0;
}
.content-section .compare-table-two-variant td:last-child:before {
    content: "•";
    padding-right: 0.5rem;
    font-size: 16px;
    color: #e02552;
    display: inline-block;
}
.content-section .compare-table-two-variant td:first-child {
    padding-left: 10px;
    vertical-align: middle;
    border-right: 1px solid #a0a0a0;
}
.content-section .compare-table-two-variant td:first-child:before {
    content: "•";
    padding-right: 0.5rem;
    font-size: 16px;
    color: #00a882;
    display: inline-block;
}
.content-section .compare-table-two-variant thead th {
    padding: 10px;
    border-bottom: 1px solid #a0a0a0;
}
.content-section .compare-table-two-variant thead th:first-child {
    color: #3bb273;
    border-right: 1px solid #a0a0a0;
}
.content-section .compare-table-two-variant thead th:last-child {
    color: #e02552;
}
.content-section .compare-table-two-variant td {
    padding: 10px 15px;
}
.content-section .features-table {
    font-size: 14px;
}
.content-section .features-table td,
.content-section .features-table th {
    width: 25%;
    padding: 3px 10px !important;
    vertical-align: middle;
    border: none;
}
.content-section .features-table td:nth-child(odd),
.content-section .features-table th:nth-child(odd) {
    text-align: left;
}
.content-section .features-table td:first-child,
.content-section .features-table th:first-child {
    border-top-left-radius: 5px;
}
.content-section .features-table td:last-child,
.content-section .features-table th:last-child {
    border-top-right-radius: 5px;
}
.content-section .features-table tr:nth-child(odd) td {
    background: #f3decb;
}
.content-section .features-table tr:nth-child(odd) td:first-child {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.content-section .features-table tr:nth-child(odd) td:last-child {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.content-section .features-table tr:first-child td:first-child {
    border-top-left-radius: 0;
}
.content-section .features-table tr:first-child td:last-child {
    border-top-right-radius: 0;
}
.button,
.table_show_more {
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    background: #333;
    font-weight: 700;
    color: #fff;
    min-width: 200px;
    border-radius: 5px;
    text-transform: uppercase;
}
.button.blue,
.table_show_more.blue {
    background: #990f3d;
    color: #fff;
}
.button.blue:hover,
.table_show_more.blue:hover {
    background: #6b0a2a;
}
.button.orange,
.table_show_more.orange {
    background: #fed831;
    color: #000;
}
.button.orange:hover,
.table_show_more.orange:hover {
    background: #fbcd01;
}
.button.small,
.table_show_more,
.table_show_more.small {
    padding: 5px 15px;
    font-size: 14px;
    min-width: 150px;
}
.table_show_more {
    background: #6b0d2d;
    color: #fff;
    border: none;
    margin: 0 auto;
    display: block;
}
.table_show_more:hover {
    background: #981340;
}
.text-center {
    text-align: center;
}
.coin-widget .coin-logo {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.coin-widget .coin-table {
    font-size: 14px;
}
.coin-widget .coin-table tr:nth-child(odd) {
    background: #f3decb;
}
.coin-widget .coin-table td,
.coin-widget .coin-table th {
    vertical-align: middle;
    padding: 3px 10px;
    border-radius: 0 !important;
    border: none;
}
.coin-widget .coin-table td:first-child,
.coin-widget .coin-table td:nth-child(2),
.coin-widget .coin-table th:first-child,
.coin-widget .coin-table th:nth-child(2) {
    text-align: left;
}
ul.table-currency-ctrl {
    padding: 0;
    margin: 0;
    font-size: 14px;
}
ul.table-currency-ctrl li {
    list-style: none;
    display: inline-block;
    padding: 3px 10px;
    margin: 0;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: 700;
}
ul.table-currency-ctrl li.active {
    background: #990f3d;
    color: #fff;
}
.sidebar-exchange-list {
    background: #fff;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 15px 10px;
    margin-bottom: 15px;
}
.sidebar-exchange-list h3 {
    margin: 0 0 15px;
    font-size: 18px;
}
.sidebar-exchange-list .score-wrapper .number {
    margin-left: 5px;
    font-size: 10px;
    font-weight: 700;
}
.sidebar-exchange-list a {
    color: inherit;
    font-weight: 600;
    text-decoration-color: #990f3d;
}
.sidebar-exchange-list table {
    font-size: 14px;
    width: 100%;
}
.sidebar-exchange-list table tr:nth-child(2n) {
    background: #f3decb;
}
.sidebar-exchange-list table thead th {
    background: #6b0d2d;
    color: #fff;
}
.sidebar-exchange-list table td,
.sidebar-exchange-list table th {
    padding: 5px;
    width: 50%;
    text-align: left;
}
.sidebar-exchange-list table td:first-child,
.sidebar-exchange-list table th:first-child {
    padding-left: 10px;
}
.sidebar-exchange-list .coin-logo {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.sidebar-exchange-list .coin-table td,
.sidebar-exchange-list .coin-table th {
    width: auto;
}
.exchange-widget {
    background: #fff;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 30px 10px;
    margin-bottom: 20px;
    text-align: center;
}
.exchange-widget img {
    max-width: 90%;
    margin-bottom: 15px;
}
.exchange-widget .button {
    background: #fed831;
    color: #000;
}
.table-tabs .tab {
    display: none;
}
.table-tabs .tab.active {
    display: block;
}
.table-tabs ul {
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.table-tabs ul li {
    list-style: none;
    display: inline-block;
    padding: 3px 10px;
    margin: 0;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: 700;
}
.table-tabs ul li.active {
    background: #6b0d2d;
    color: #fff;
}
.mobile-fixed-button img {
    max-width: 100px;
    margin-right: 15px;
    max-height: 50px;
}
.coin-widget-header {
    display: flex;
    justify-content: space-between;
}
.coin-widget-header input {
    border: 1px solid #a0a0a0;
    height: 25px;
    padding-left: 10px;
}
.fixed {
    position: relative;
}
.fixed .coin-widget-header {
    background: #fff;
    padding-top: 5px;
}
.fixed .coin-widget-header,
.fixed thead {
    position: relative;
    z-index: 2;
    transition: 0.1s;
}
.hide {
    display: none;
}
@media screen and (max-width: 991px) {
    .review-navigation-section {
        left: 0;
        right: 0;
        width: auto !important;
    }
    .review-page .sidebar-wrapper {
        display: none;
    }
    .review-page table td,
    .review-page table th {
        font-size: 12px !important;
    }
}
@media screen and (max-width: 766px) {
    .review-section {
        margin: 15px 0;
    }
    .review-header .rh-left,
    .review-header .rh-right {
        width: 100%;
    }
    .review-header .rh-left .title,
    .review-header .rh-right .title {
        font-size: 24px;
    }
    .review-header .rh-left {
        margin: 0 0 0.8rem;
    }
    .review-navigation-section {
        height: 0;
        overflow: hidden;
        margin: 0;
    }
    .review-navigation-section.fixed {
        height: auto;
    }
    .review-navigation {
        overflow-x: scroll;
    }
    .review-navigation li {
        min-width: 84px;
        padding: 5px;
    }
    .review-navigation li svg {
        margin-bottom: 5px;
    }
    .review-navigation li .icon {
        font-size: 18px;
    }
    .content-section .features-table thead th:nth-child(3),
    .content-section .features-table thead th:nth-child(4) {
        display: none;
    }
    .content-section .features-table tr {
        display: flex;
        flex-wrap: wrap;
    }
    .content-section .features-table tr td,
    .content-section .features-table tr th {
        width: 50%;
    }
    .content-section .features-table tr td:first-child,
    .content-section .features-table tr td:nth-child(3),
    .content-section .features-table tr th:first-child,
    .content-section .features-table tr th:nth-child(3) {
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }
    .content-section .features-table tr td:nth-child(2),
    .content-section .features-table tr td:nth-child(4),
    .content-section .features-table tr th:nth-child(2),
    .content-section .features-table tr th:nth-child(4) {
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }
    .content-section .features-table tr td:first-child,
    .content-section .features-table tr td:nth-child(2),
    .content-section .features-table tr th:first-child,
    .content-section .features-table tr th:nth-child(2) {
        background: #f3decb;
    }
    .content-section .features-table tr td:nth-child(3),
    .content-section .features-table tr td:nth-child(4),
    .content-section .features-table tr th:nth-child(3),
    .content-section .features-table tr th:nth-child(4) {
        background: transparent;
    }
    .content-section .features-table tr td:empty,
    .content-section .features-table tr th:empty {
        display: none;
    }
    .content-section .features-table tr th:first-child,
    .content-section .features-table tr th:nth-child(2) {
        background: #6b0d2d;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .review-header {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 600px) {
    .review-navigation {
        justify-content: flex-start;
    }
    .coin-widget-header {
        flex-direction: column;
    }
    .coin-widget-header input {
        margin: 10px 0;
    }
    .review-section-title {
        font-size: 1.4rem;
    }
    .review-section-title .icon {
        font-size: 22px;
    }
}
.ci-score-card {
    background: #fff;
    padding: 15px;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.ci-score-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ci-score-card-general {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #018216;
}
.ci-score-card-main-list ul {
    padding: 10px;
    margin: 0;
}
.ci-score-card-main-list ul li {
    font-weight: 700;
    list-style: none;
    margin: 10px 0;
}
.ci-score-card-main-list ul li .fa-minus {
    color: #990f3d;
}
.ci-score-card-list {
    font-size: 14px;
    padding: 10px;
}
.ci-score-card-list ul {
    padding: 0;
    margin: 0;
}
.ci-score-card-list ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #990f3d;
    margin: 0;
    padding: 5px 10px;
}
.ci-score-card-list ul li:last-child {
    border-bottom: 1px solid #990f3d;
}
.ci-score-card-label {
    font-weight: 700;
}
.ci-score-card-value {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    padding-left: 10px;
}
.ci-score-rating {
    margin-left: 5px;
    color: #daa520;
    font-size: 12px;
    white-space: nowrap;
    width: 79px;
    height: 16px;
}
.ci-score-card-bottom {
    font-size: 14px;
    padding: 10px;
    margin-top: 10px;
    border-top: 1px solid #a0a0a0;
}
.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}
.single-chart {
    width: 33%;
    justify-content: space-around;
}
.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 150px;
}
.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}
.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: a 1s ease-out forwards;
}
@keyframes a {
    0% {
        stroke-dasharray: 0 100;
    }
}
.circular-chart.orange .circle {
    stroke: #ff9f00;
}
.circular-chart.green .circle {
    stroke: #018216;
}
.circular-chart.tomato .circle {
    stroke: tomato;
}
.percentage {
    fill: #666;
    font-family: sans-serif;
    font-size: 8px;
    text-anchor: middle;
}
@media screen and (max-width: 767px) {
    .ci-score-card {
        margin-top: 20px;
    }
    .ci-score-card-top {
        flex-direction: column;
    }
    .ci-score-card-top > div {
        width: 100%;
    }
}
.vertical-divider {
    width: 1px;
    min-height: 150px;
    border-radius: 50%;
    background: #ccc;
}
@media screen and (max-width: 767px) {
    .vertical-divider {
        display: none;
    }
}
.exchange-bottom-section {
    margin: 15px 0 0;
}
.exchanges-archive-header {
    border-top: 1px solid #a0a0a0;
    padding-bottom: 10px;
}
.exchanges-archive-header .article-meta {
    margin-bottom: 0;
}
.tooltip table td,
.tooltip table th {
    padding: 0 5px !important;
}
.exchange-item {
    width: 100%;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    background: #fff;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.exchange-item,
.exchange-item .ei-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.exchange-item .ei-header {
    white-space: nowrap;
}
.exchange-item .ei-header .score-wrapper {
    min-width: 100px;
    margin: 3px 0 0 10px;
}
.exchange-item .ei-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exchange-item .ei-footer .button {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 5px;
    min-width: 100px;
}
.exchange-item .ei-body {
    display: none;
    width: 100%;
}
.exchange-item .ei-body .table-wrapper {
    padding: 10px 0 0;
    overflow: initial;
    width: 100%;
}
.exchange-item .coins-and-pairs {
    font-size: 14px;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #f3decb;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    font-weight: 700;
    z-index: -1;
}
.exchange-item .coins-and-pairs > span {
    margin-right: 15px;
}
.exchange-item .coins-and-pairs > span:last-child {
    margin-right: 0;
}
.exchange-item .coin-logo {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.exchange-item .score-wrapper {
    font-size: 12px;
    font-weight: 700;
    margin: 7px 0;
    min-width: 30%;
    justify-content: flex-end;
}
.exchange-item .review-button {
    width: 100%;
    min-width: auto;
    font-size: 12px;
    padding: 5px 0;
    background: #990f3d;
}
.exchange-item .review-button:hover {
    background: #6b0a2a;
}
.exchange-item .visit-button {
    width: auto;
    font-size: 12px;
    padding: 5px 0;
    background: #fed831;
    color: #33302e;
}
.exchange-item .visit-button:hover {
    background: #fbcd01;
    color: #33302e;
}
.exchange-item .info-button {
    width: 100%;
    min-width: auto;
    font-size: 12px;
    padding: 5px 0;
    background: #f3decb;
    border: none;
    color: #33302e;
}
.exchange-item .info-button:hover {
    background: #e9c4a2;
}
.exchange-item .name {
    margin: 0;
    font-size: 18px;
}
.exchange-item table {
    width: 100%;
    text-align: left;
    font-size: 12px;
    margin: 0 0 10px;
}
.exchange-item table td {
    padding: 3px 5px;
}
.exchange-item table tr:nth-child(odd) td {
    background: #f3decb;
}
.text-right {
    text-align: right;
}
.filter-group {
    background: #fff;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 15px 10px;
    margin-bottom: 1rem;
}
.filter-group label {
    display: flex;
    align-items: center;
    padding: 2px 0;
    font-size: 14px;
}
.filter-group label .coin-logo {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.filter-group label .payment-logo {
    width: 35px;
    height: auto;
    margin-right: 5px;
}
.filter-group label input {
    margin-right: 5px;
}
.top-filter {
    padding: 27px 0 15px;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
}
.top-filter,
.top-filter .ctrl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-filter .ctrl select {
    background: transparent;
    margin-left: 10px;
    padding: 0 10px;
    border: none;
    margin-top: 2px;
}
.exchanges-archive.variant .exchanges-archive-header {
    border-top: 0;
    border-bottom: 1px solid #a0a0a0;
}
.exchanges-archive.variant .top-filter {
    padding: 15px 0 0;
}
.exchanges-archive.variant .article-meta {
    margin-bottom: 0;
}
h1.guides-section-title {
    font-size: 1.6rem;
    margin-bottom: 0;
    padding-bottom: 0;
}
.article-short-content {
    margin-bottom: 0;
}
.mobile-close-filters {
    display: none;
}
@media screen and (max-width: 992px) {
    .exchanges-archive .sidebar-wrapper {
        position: fixed;
        transition: 0.3s;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 100;
        margin: 0;
        overflow-y: scroll;
    }
    .exchanges-archive .mobile-close-filters {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
    }
    .exchanges-archive .features-table thead th:nth-child(3),
    .exchanges-archive .features-table thead th:nth-child(4) {
        display: none;
    }
    .exchanges-archive .features-table tr {
        display: flex;
        flex-wrap: wrap;
    }
    .exchanges-archive .features-table tr td,
    .exchanges-archive .features-table tr th {
        width: 50%;
        padding: 3px 5px;
        font-size: 12px;
    }
    .exchanges-archive .features-table tr td:first-child,
    .exchanges-archive .features-table tr td:nth-child(3),
    .exchanges-archive .features-table tr th:first-child,
    .exchanges-archive .features-table tr th:nth-child(3) {
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }
    .exchanges-archive .features-table tr td:nth-child(2),
    .exchanges-archive .features-table tr td:nth-child(4),
    .exchanges-archive .features-table tr th:nth-child(2),
    .exchanges-archive .features-table tr th:nth-child(4) {
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }
    .exchanges-archive .features-table tr td:first-child,
    .exchanges-archive .features-table tr td:nth-child(2),
    .exchanges-archive .features-table tr th:first-child,
    .exchanges-archive .features-table tr th:nth-child(2) {
        background: #f3decb;
    }
    .exchanges-archive .features-table tr td:nth-child(3),
    .exchanges-archive .features-table tr td:nth-child(4),
    .exchanges-archive .features-table tr th:nth-child(3),
    .exchanges-archive .features-table tr th:nth-child(4) {
        background: transparent;
    }
    .exchanges-archive .features-table tr td:empty,
    .exchanges-archive .features-table tr th:empty {
        display: none;
    }
    .exchanges-archive .features-table tr th:first-child,
    .exchanges-archive .features-table tr th:nth-child(2) {
        background: #6b0d2d;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .bold-1-column tr:nth-child(odd) td {
        background: transparent !important;
    }
    .mobile-filter-open .sidebar-wrapper {
        left: 0;
    }
    .mobile-filter-button {
        padding: 5px 10px;
        border: none;
        font-size: 12px;
        min-width: 0;
        margin: 0 5px;
        background: #f3decb;
        color: #33302e;
    }
    .mobile-filter-button:hover {
        background: #e9c4a2;
    }
    .mobile-filter-button i {
        margin-right: 5px;
    }
    .top-filter .ctrl {
        position: fixed;
        transition: 0.3s;
        bottom: -100%;
        right: 0;
        width: 100%;
        height: 50px;
        background: hsla(0, 0%, 100%, 0.9);
        z-index: 40;
        margin: 0;
        padding: 15px;
        justify-content: center;
        align-items: center;
    }
    .top-filter .ctrl .label {
        margin-top: 2px;
    }
    .mobile-fixed-button {
        z-index: 50;
    }
    .mobile-order-open .top-filter .ctrl {
        bottom: 42px;
    }
    .top-filter {
        padding: 15px 0 0;
    }
    .tooltip {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .top-filter {
        padding: 0.7rem 0;
    }
    .exchange-item {
        margin-top: 2rem;
    }
    .exchange-item .ei-header {
        width: 100%;
    }
    .exchange-item .ei-footer {
        margin-top: 10px;
        width: 100%;
    }
    .exchange-item .ei-footer .button {
        width: 30%;
        min-width: 0;
    }
}
.col-half .exchange-item .features-table thead th:nth-child(3),
.col-half .exchange-item .features-table thead th:nth-child(4) {
    display: none;
}
.col-half .exchange-item .features-table tr {
    display: flex;
    flex-wrap: wrap;
}
.col-half .exchange-item .features-table tr td,
.col-half .exchange-item .features-table tr th {
    width: 50%;
    padding: 3px 5px;
    font-size: 12px;
}
.col-half .exchange-item .features-table tr td:first-child,
.col-half .exchange-item .features-table tr td:nth-child(3),
.col-half .exchange-item .features-table tr th:first-child,
.col-half .exchange-item .features-table tr th:nth-child(3) {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.col-half .exchange-item .features-table tr td:nth-child(2),
.col-half .exchange-item .features-table tr td:nth-child(4),
.col-half .exchange-item .features-table tr th:nth-child(2),
.col-half .exchange-item .features-table tr th:nth-child(4) {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.col-half .exchange-item .features-table tr td:first-child,
.col-half .exchange-item .features-table tr td:nth-child(2),
.col-half .exchange-item .features-table tr th:first-child,
.col-half .exchange-item .features-table tr th:nth-child(2) {
    background: #f3decb;
}
.col-half .exchange-item .features-table tr td:nth-child(3),
.col-half .exchange-item .features-table tr td:nth-child(4),
.col-half .exchange-item .features-table tr th:nth-child(3),
.col-half .exchange-item .features-table tr th:nth-child(4) {
    background: transparent;
}
.col-half .exchange-item .features-table tr td:empty,
.col-half .exchange-item .features-table tr th:empty {
    display: none;
}
.col-half .exchange-item .features-table tr th:first-child,
.col-half .exchange-item .features-table tr th:nth-child(2) {
    background: #6b0d2d;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
@media screen and (max-width: 540px) {
    .exchange-item .accordion-wrapper .aci-heading {
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .exchange-item .accordion-wrapper .aci-heading .aci-header {
        width: 50%;
    }
    .exchange-item .accordion-wrapper .aci-heading .aci-header span {
        border-radius: 5px;
    }
}
@media screen and (min-width: 540px) {
    .exchange-item .accordion-wrapper .aci-body.active {
        display: block;
    }
}
@media screen and (min-width: 767px) {
    .exchange-item .coins-and-pairs {
        position: static;
        z-index: 1;
        background: #fff;
        box-shadow: none;
    }
}
#chartdiv {
    margin: 0 -15px;
    height: 150px;
}
[aria-labelledby="id-66-title"] {
    display: none;
}
.sidebar-widget {
    background: #fff;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 15px 10px;
}
.sidebar-widget table {
    width: 100%;
    text-align: left;
}
.label-danger {
    color: #990f3d;
    font-weight: 700;
}
.label-good {
    color: #018216;
    font-weight: 700;
}
.coin-pairs-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 7px;
}
.coin-pairs-title .title {
    position: relative;
}
.coin-pairs-title .title:before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #990f3d;
    margin-bottom: 7px;
    position: absolute;
    top: -7px;
}
.table-style-1 tr:nth-child(odd) td,
.table-style-1 tr:nth-child(odd) th {
    background: #f3decb;
}
.table-style-1 tr:nth-child(2n) td,
.table-style-1 tr:nth-child(2n) th {
    background: #fff;
}
.coin-pairs-chart {
    margin: 0 0 50px;
    font-size: 12px;
}
.coin-pairs-chart h2 {
    margin: 0 0 20px;
}
.coin-calc-area {
    margin-top: 26px;
    background: #fff;
    padding: 15px;
    box-shadow: 2px 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.coin-calc-area .content-section,
.coin-calc-area .content-section table {
    margin: 0;
}
.coin-calc-area .sub {
    padding: 0;
    font-size: 11px;
    text-align: center;
}
.coin-calc-area .inputs {
    display: flex;
    align-items: center;
    position: relative;
}
.coin-calc-area .inputs .input-item {
    width: 30%;
}
.coin-calc-area .shuffle {
    background: transparent;
    border: none;
    font-size: 22px;
    outline: none;
    padding: 0;
}
.coin-calc-area .disclamer {
    max-width: 90%;
    font-size: 12px;
    margin: 15px auto 0;
    text-align: center;
}
.coin-calc-area .disclamer a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fed831, #fed831);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 0.3rem;
    transition: background-size 0.2s;
}
.coin-calc-area .disclamer a:hover {
    background-size: 0.3rem 2rem;
}
.coin-calc-area .button-wrapper {
    margin-top: 30px;
}
.coin-calc-area .button-wrapper .button {
    margin: 0 10px;
}
.result-container {
    margin-top: 22px;
    font-size: 28px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 70%;
}
.result-container div {
    padding: 0 10px;
    position: relative;
}
.result-container img {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}
.small-buttons .button {
    font-size: 12px;
    text-transform: uppercase;
    padding: 3px 15px;
    min-width: 0;
}
.input-item input {
    max-width: 100%;
    width: 300px;
    height: 50px;
    background: #fff;
    border: 1px solid #a0a0a0;
    padding-left: 10px;
    font-size: 18px;
}
.coin-list-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 3px 10px;
}
.coin-list-item img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}
.coin-list-item .icon {
    line-height: 0;
}
.coin-list-item .title {
    text-transform: uppercase;
}
.coin-list-item .name {
    font-size: 14px;
}
.last-td-right td:last-child,
.last-td-right th:last-child {
    text-align: right;
}
.second-td-center td:nth-child(2),
.second-td-center th:nth-child(2) {
    text-align: center !important;
}
@media screen and (max-width: 992px) {
    .coin-pairs-title {
        font-size: 18px;
    }
    .coin-pairs-title .change {
        white-space: nowrap;
    }
    .coin-calc-area {
        margin-right: -15px;
        margin-left: -15px;
    }
    .coin-calc-area .result-container {
        width: 100%;
        font-size: 22px;
        line-height: 22px;
    }
    .coin-calc-area .inputs {
        flex-direction: column;
    }
    .coin-calc-area .inputs .input-item {
        margin: 12px 0;
        width: 100%;
        max-width: 300px;
    }
    .coin-calc-area .result-block {
        padding: 0;
    }
    table .d-flex {
        flex-wrap: nowrap;
    }
}
.bold-1-column td:first-child {
    font-weight: 700;
}
@media screen and (max-width: 380px) {
    .mobile-hide-td-3 td:nth-child(3),
    .mobile-hide-td-3 th:nth-child(3) {
        display: none;
    }
    .result-container {
        font-size: 18px;
    }
    .result-container img {
        display: block;
        margin: 0 auto 10px;
    }
}
.topics-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: initial;
    margin: 20px 0;
}
.post-meta-box.fixed {
    margin-top: 0;
    position: fixed;
}
.page-header {
    border-bottom: 1px solid #a0a0a0;
    padding-bottom: 13px;
}
.page-header .page-title {
    margin-bottom: 0;
}
.page-header a {
    color: #6b0a2a;
}
.topics-table a {
    word-break: break-word;
    color: #222;
    text-decoration: none;
}
.topics-table h2 {
    margin: 0;
    font-size: 1em;
    font-weight: 400;
}
.topics-table td,
.topics-table th {
    font-weight: 700;
    padding: 5px 10px;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    color: #919191;
    border: none;
}
.topics-table td:first-child,
.topics-table th:first-child {
    padding-left: 15px;
    text-align: left;
}
.topics-table td:last-child,
.topics-table th:last-child {
    padding-right: 15px;
}
.topics-table tr th {
    background: #6b0d2d;
    color: #fff;
    font-size: 14px;
}
.topics-table tr th:first-child {
    border-top-left-radius: 5px;
}
.topics-table tr th:last-child {
    border-top-right-radius: 5px;
}
.topics-table tr td {
    border-bottom: 1px solid #f3decb;
}
.topics-table tr:nth-child(2n) td {
    background: #f3decb;
}
.topics-table .user-row {
    display: flex;
}
.topics-table .user-row img {
    min-width: 25px;
    width: 25px;
    height: 25px;
    margin: 0 2px;
}
.topics-table .category-link {
    font-size: 12px;
    color: #6b0d2d;
    text-decoration: none;
}
.category-link:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #6b0d2d;
    margin-right: 5px;
}
.topics-table .category-link.green {
    color: #018216;
}
.category-link.green:before {
    background: #018216;
}
@media screen and (max-width: 767px) {
    .topics-table .user-row img:not(:first-child) {
        display: none;
    }
    .topics-table td:nth-child(3),
    .topics-table th:nth-child(3) {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .topics-table td:nth-child(2),
    .topics-table td:nth-child(4),
    .topics-table th:nth-child(2),
    .topics-table th:nth-child(4) {
        display: none;
    }
}
.post-meta-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-top: none;
    margin: 25px 0 20px;
    z-index: 999;
}
.post-meta-box img {
    border-radius: 2px;
    margin-bottom: 0 !important;
}
.post-meta-box a {
    color: #6b0d2d;
    text-decoration: none;
}
.marker {
    color: #9b764f !important;
}
.post-meta-box span {
    display: block;
}
.post-meta-box [class^="pmb"] {
    padding: 7px 10px;
}
.pmb-users-row {
    display: flex;
}
.pmb-users-row img {
    width: 32px;
    height: 32px;
    margin-right: 4px;
    padding-top: 4px;
}
.pmd-last-reply {
    margin-top: 4px;
    display: flex;
}
.pmd-last-reply img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}
.pmd-posted {
    margin-top: 4px;
    display: flex;
}
.pmd-posted img {
    width: 20px;
    height: auto;
    margin-right: 4px;
}
.pmb-likes,
.pmb-reply-count,
.pmb-reply-views,
.pmb-users {
    text-align: center;
}
.pmb-badge img {
    max-width: 300px;
    max-height: 50px;
    height: auto;
    width: auto;
}
.pmb-badge a {
    background: #fed831;
    color: #000;
}
.pmb-badge a:hover {
    background: #fbcd01;
    color: #000;
}
.page-header a {
    background: #fff;
    color: #000;
    min-width: auto;
    padding: 5px 15px;
    font-size: 14px;
}
.page-header a:hover {
    background: #e6e6e6;
    color: #000;
}
.post-meta-box .label {
    margin: 1px 0 2px;
    color: inherit;
    font-weight: 400;
    font-size: 0.8706em;
    line-height: 1;
}
.post-meta-box .count {
    font-size: 1.3195em;
    line-height: 1.2;
    color: #646464;
}
.post-meta-box .pbm-cta .button {
    background: #6b0a2a;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    position: relative;
}
.post-meta-box .pbm-cta .button.link {
    background: #f3decb;
    color: #000;
}
.button-badge {
    position: absolute;
    background: #fed831;
    color: #000;
    padding: 1px 5px;
    font-size: 10px;
    top: -12px;
    right: 0;
}
.post-meta-box .pbm-cta .button.link .button-badge {
    background: #6b0a2a;
    color: #fff;
    border-radius: 50%;
}
.pbm-cta {
    justify-self: flex-end;
    margin-left: auto;
    transition: 0.3s;
}
.pbm-cta .link {
    margin-right: 15px;
}
.post-meta-box .button {
    font-size: 0.9rem;
    padding: 4px 10px;
    min-width: 50px;
    text-align: center;
}
.comment-item {
    display: flex;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid #a0a0a0;
}
.ci-avatar {
    width: 56px;
}
.ci-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 10%;
}
.ci-content {
    width: calc(100% - 56px);
}
.cic-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    line-height: 1;
    color: #919191;
}
.ci-name {
    color: #646464;
    font-weight: 700;
    font-size: 1rem;
}
.ci-comment {
    word-wrap: break-word;
    line-height: 1.4;
    font-size: 1rem;
    color: #222;
}
.ci-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0.8rem 0;
}
.ci-like {
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.ci-like svg {
    margin-left: 10px;
}
.ci-like:hover {
    color: #6b0a2a;
}
.ci-like:hover svg path {
    fill: #6b0a2a;
}
.ci-like svg {
    width: 17px;
    height: 17px;
}
.ci-like.liked svg {
    fill: red;
}
.ci-reply {
    padding: 1rem;
    background: #f3decb;
    border-left: 5px solid #6b0d2d;
    margin-bottom: 1rem;
}
.ci-reply .ci-name {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.ci-reply .ci-name img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 7px;
}
.hidden-xs {
    display: none;
}
@media screen and (min-width: 767px) {
    .visible-xs {
        display: none;
    }
    .hidden-xs {
        display: block !important;
    }
    .row-md-reverse {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .col-aside {
        width: 25%;
        padding: 1rem 0 0 2rem;
    }
    .col-content {
        width: 75%;
    }
}
@media screen and (max-width: 767px) {
    .post-meta-box {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: -15px;
        margin-right: -15px;
    }
    .post-meta-box .button {
        font-size: 14px;
        font-weight: 700;
        min-width: 140px;
        padding: 10px 15px;
    }
    .post-meta-box {
        justify-content: space-around;
        margin: 0 -15px;
    }
    .pbm-cta {
        margin: 0;
    }
    .post-meta-box > div {
        padding: 4px 5px;
        min-width: 20%;
        text-align: center;
    }
    .post-meta-box > div:first-child {
        text-align: left;
    }
    .pmb-badge-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 1rem !important;
        z-index: 999;
        border-top: 1px solid #e9e9e9;
        background: #f8f8f8;
    }
    .pmb-badge-btn a {
        margin: 0;
        min-width: 35% !important;
    }
    .pmb-reply {
        text-align: left;
    }
    .post-meta-box [class^="pmb"] {
        padding: 3px 7px;
    }
    .post-meta-box {
        padding: 6px 0;
    }
    .post-meta-box .pmb-badge,
    .post-meta-box .pmb-badge-logo,
    .post-meta-box .pmb-wrapper {
        padding: 0;
    }
    .post-meta-box .pmb-badge-logo {
        line-height: 0;
    }
}
@media screen and (max-width: 340px) {
    .pmb-users-row img:last-child {
        display: none;
    }
}
.modal-box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 1100;
}
.sign-area {
    max-width: 500px;
    width: 100%;
    margin: auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    position: relative;
}
.sign-area input {
    background: #fff;
    border-radius: 6px;
}
.sign-area .form-title {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 10px;
    background: #fff;
    color: #fff;
    font-weight: 700;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    font-family: Cabin, sans-serif;
}
.close-modal-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}
.__modal-open {
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .__modal-open .header-menu {
        display: none;
    }
}
.modal-logo {
    margin: 0 auto;
    display: block;
    height: auto;
    max-width: 250px;
}
.alternative-switch {
    font-size: 0.9rem;
}
.alternative-switch a {
    color: #3731a8;
    font-weight: 700;
}
.logos_section_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    height: 36px;
}
.logos_section_inner img {
    max-width: 25%;
}
.variant-2,
.write-review-modal .variant-1 {
    display: none;
}
.write-review-modal .variant-2 {
    display: block;
}
.input-row {
    margin: 1rem 0;
}
.input-row label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.input-row input {
    width: 100%;
    height: 35px;
    padding-left: 1rem;
    font-size: 0.8rem;
}
.form-title {
    font-weight: 700;
    margin-bottom: 1rem;
}
.modal-box .button {
    background: #6b0a2a;
    color: #fff;
    font-size: 14px;
    border: none;
}
@media screen and (max-width: 767px) {
    .form-title {
        font-size: 0.8rem;
    }
}
.modal-box {
    visibility: hidden;
}
.site-footer {
    background: #2f333e;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}
.site-footer a {
    color: inherit;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer ul {
    padding: 0;
    margin: 0;
}
.site-footer li {
    list-style: none;
    margin-bottom: 0.4rem;
}
.footer-menu-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-menu-row {
    margin: 0 -15px;
}
.footer-menu-col {
    padding: 10px 15px;
}
.footer-all-reviews-button {
    margin-top: 10px;
    display: block;
    background: transparent;
    border: none;
    border-top: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
    width: 100%;
    text-align: left;
    padding: 5px 0;
    margin-bottom: 10px;
}
.footer-all-reviews-button:active,
.footer-all-reviews-button:focus,
.footer-all-reviews-button:hover {
    outline: none;
}
.footer-all-review-row {
    padding-bottom: 10px;
    border-bottom: 1px solid #a0a0a0;
    display: none;
}
.footer-disclaimer {
    padding-top: 10px;
}
.footer-copyright {
    font-size: 14px;
    color: #fff;
    background: #2f333e;
    padding: 5px 0;
    text-align: center;
}
@media screen and (min-width: 540px) {
    .footer-menu-row {
        display: flex;
        flex-wrap: wrap;
    }
    .footer-menu-col {
        width: 50%;
        box-sizing: border-box;
    }
    .footer-all-review-row ul {
        column-count: 2;
    }
}
@media screen and (min-width: 992px) {
    .footer-menu-col {
        width: 25%;
    }
    .footer-all-review-row ul {
        column-count: 4;
    }
}
html {
    scroll-behavior: smooth;
}
body.home .site-header {
    border-bottom: 1px solid #a0a0a0;
    margin-bottom: 0;
}
.exchange-item table tr:nth-child(2n) td {
    background: #f9f1eb;
}
div.coins-and-pairs a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fed831, #fed831);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 1px 0.3rem;
    transition: background-size 0.2s;
}
body.archive.category .page-heading {
    margin-bottom: 13px;
}
@media screen and (max-width: 992px) {
    .exchanges-archive .features-table tr td:nth-child(3),
    .exchanges-archive .features-table tr td:nth-child(4),
    .exchanges-archive .features-table tr th:nth-child(3),
    .exchanges-archive .features-table tr th:nth-child(4) {
        background: #f9f1eb;
    }
}
.header-nav {
    border-bottom: 1px solid #a0a0a0;
    padding-bottom: 15px;
}
.news-article .article-title a {
    text-decoration: none;
}
@media screen and (min-width: 992px) {
    .coin-news-section {
        padding-top: 0;
    }
}
.sidebar .review-badge {
    margin-block-start: 1.67em;
}
.all-posts-links {
    color: #e6b487;
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin: 15px auto 0;
    text-align: center;
}
.all-posts-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin-bottom: 10px;
    margin-top: 0;
    list-style: none;
}
.all-posts-list-container h2 {
    padding-left: 10px;
    margin-bottom: 0;
}
.all-posts-list-container h2:before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #990f3d;
    margin-bottom: 7px;
}
.all-posts-list-container h3 {
    margin-top: 5px;
    margin-bottom: 5px;
}
.all-posts-list li {
    padding-left: 10px;
    padding-bottom: 3px;
}
.all-posts-list li a {
    color: initial;
    text-decoration: underline;
    text-decoration-color: #990f3d;
}
.article-short-content {
    font-size: 0.9rem;
}
.news-article .article-title {
    font-size: 1rem;
    min-height: 40px;
}
#register .ff-column.ff-span-5 > img,
.review-badge img {
    max-height: 70px;
    width: auto;
}
.sidebar .review-badge a > img {
    padding: 0;
}
.news-article-content .article-short-content {
    margin-bottom: 10px;
}
.widget.coin-list {
    background: #f3decb;
}
.coin-list-table {
    width: 100%;
    margin-bottom: 8px;
}
.coin-list-table td {
    padding: 10px;
}
.coin-list-table.mini {
    font-size: 0.7rem;
}
.coin-list-table .coin-name {
    text-align: left;
}
.sidebar .review-badge .ff-column .rating {
    margin-top: 8px;
}
.coin-list-table tr {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}
.coin-list .section-nav-title {
    margin-bottom: 0;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.coin-list-table .coin-name a {
    color: #000;
}
.coin-list-table .coin-change {
    text-align: center;
    color: rgba(0, 0, 0, 0.55);
    width: 26%;
}
.coin-change.up-change {
    color: #6fb92e;
}
.coin-change.up-change:after {
    content: "\f0d8";
    font: normal normal normal 14px/1 FontAwesome;
}
.coin-change.down-change {
    color: #bd2229;
}
.coin-change.down-change:after {
    content: "\f0d7";
    font: normal normal normal 14px/1 FontAwesome;
}
.coin-list iframe {
    margin-bottom: -6px;
}
.coin-list-table .coin-value {
    text-align: right;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.7rem;
}
.content-section {
    padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
    .col-half-xs {
        padding: 0 8px;
    }
    .news-article .article-title a {
        font-size: 0.7em;
    }
    h1.guides-section-title,
    h2.guides-section-title {
        font-size: 1.4em !important;
    }
    #register .ff-column.ff-span-5 > img {
        margin: 0 auto;
        display: block;
    }
    .review-badge .ff-column:last-child p {
        margin-bottom: 10px !important;
        margin-top: 0 !important;
    }
    .review-badge .rating .score {
        width: 100%;
    }
    .review-badge .rating .score p.rating {
        font-size: 30px;
    }
    .news-article .article-title {
        min-height: auto;
    }
    .all-posts-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
    .image-block.default {
        padding-bottom: 100%;
    }
    .article-short-content p {
        display: none;
    }
    .article-heading .article-short-content > p,
    .container > .article-short-content > p {
        display: block;
    }
    .guides-section {
        padding-bottom: 0;
    }
    .coin-list .section-nav-title,
    .sidebar-wrapper {
        margin-top: 0;
    }
    .home .guides-section.secondary-background .all-posts-links,
    .home .guides-section:last-child .all-posts-links {
        padding-bottom: 15px;
    }
    .archive .guides-section.secondary-background,
    .single .guides-section.secondary-background {
        padding-bottom: 10px;
    }
}
.exchanges-archive-header,
.page-heading {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.page-heading {
    border-top: 1px solid #a0a0a0;
    padding-bottom: 13px;
}
.page-heading .article-heading,
.page-heading .review-header {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.page-heading .article-heading .article-meta {
    margin-bottom: 0;
    margin-top: 6px;
}
.page-heading .review-header .rh-left {
    margin: 0 !important;
}
.header-nav {
    border: none;
}
.coin-price-row {
    display: flex;
    padding: 0 0 20px;
}
.coin-price-row a {
    color: inherit;
    text-decoration: none;
}
.coin-price-item {
    display: flex;
}
.coin-price-item .icon {
    width: 30%;
}
.coin-price-item .info {
    text-align: center;
    padding: 0 10px;
}
.coin-price-item .info .price {
    font-size: 18px;
    font-weight: 700;
}
.coin-price-item .info .sub-text {
    font-size: 14px;
}
.section-brokers {
    padding: 0 0 15px;
}
.view-all {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}
.view-all .fas {
    font-size: 14px;
    margin-left: 5px;
    line-height: 0;
}
.view-all:hover {
    color: #6b0d2d;
}
.broker-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
    font-size: 14px;
}
.broker-list a {
    text-decoration: none;
    color: inherit;
}
.broker-list a:hover {
    color: #6b0d2d;
}
.broker-list li {
    display: block;
    width: 25%;
    margin-bottom: 5px;
}
.broker-list li img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
    .coin-price-row {
        padding-top: 0;
        flex-wrap: wrap;
    }
    .coin-price-item {
        margin: 5px 0;
        width: 50%;
    }
    .coin-price-item:last-child {
        display: none;
    }
    .broker-list li {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .coin-price-item {
        margin: 5px 0;
        display: block;
        text-align: center;
    }
    .coin-price-item .icon {
        width: 50px;
        margin: 0 auto;
    }
}
th[role="columnheader"]:after {
    border-color: #fff transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.only-desktop {
    display: none;
}
.content-section .sidebar-exchange-list {
    margin: 20px -15px;
}
.content-section .sidebar-exchange-list table tr td {
    border: none !important;
}
@media screen and (min-width: 992px) {
    .only-mobile {
        display: none;
    }
    .only-desktop {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .broker-list a,
    table td,
    table th {
        font-size: 12px !important;
    }
}
