/*
Theme Name: bitrates
Theme URI: https://example.com/
Author: tividev
Author URI: https://example.com/
Description: bitrates wordpress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bitrates
*/


@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/bitrates/fonts/gilroy-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/bitrates/fonts/gilroy-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/bitrates/fonts/gilroy-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/bitrates/fonts/gilroy-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/wp-content/themes/bitrates/fonts/gilroy-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

/* CONTAINER */

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
}

@media (max-width: 1600px) {
    .container {
        padding: 0 40px;
    }
}

/* CONTAINER */



/* DEFAULT */

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Убираем стили списков */
ul,
ol {
  list-style: none;
}


body,
input,
textarea,
button,
select {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
}

body, .home.page-template-default {
  background: #f7f7f8 !important;
}

body.single-guides, body.single-news {
    background: #fff !important;
}


a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

/* DEFAULT */

/* HEADER */

.header {
  background: #201838;
  z-index: 99999;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 120px;
  height: auto;
}

.primary-nav ul {
  display: flex;
  gap: 20px;
  color: #fff;
}

.primary-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 7px;
}

.primary-nav li.current-menu-item a {
    background: #653eef;
}

.primary-nav a:hover {
  color: #653eef;
}

.primary-nav li.current-menu-item a:hover {
    color: #fff;
}

.search {
  display: flex;
  background: #0c071c;
  height: 58px;
  padding: 0 20px;
}

.header-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-icon {
  width: 22px;
  height: 22px;
}

.search-input {
  padding: 5px 0;
  background: transparent;
  border: none;
}

.search-input::placeholder {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.burger, .mobile-menu {
    display: none;
}

@media (max-width: 820px) {
    
    .header.mob-menu-active {
        justify-content: flex-start;
        flex-direction: column;
        height: 100vh;
        overflow-y: auto;
    }
    
    .burger, .mobile-menu.active {
        display: block;
    }
    
    .header-content {
        padding: 14px 0;
    }
    
    /* From Uiverse.io by Creatlydev */ 
    .icon-menu {
        --gap: 5px;
        --height-bar: 2.5px;
        --pos-y-bar-one: 0;
        --pos-y-bar-three: 0;
        --scale-bar: 1;
        --rotate-bar-one: 0;
        --rotate-bar-three: 0;
        width: 25px;
        display: flex;
        flex-direction: column;
        gap: var(--gap);
        cursor: pointer;
        position: relative;
    }

    .bar {
        position: relative;
        height: var(--height-bar);
        width: 100%;
        border-radius: .5rem;
        background-color: #fff;
    }

    .bar--1 {
        top: var(--pos-y-bar-one);
        transform: rotate(var(--rotate-bar-one));
        transition: top 200ms 100ms, transform 100ms;
    }

    .bar--2 {
        transform: scaleX(var(--scale-bar));
        transition: transform 150ms 100ms;
    }

    .bar--3 {
        bottom: var(--pos-y-bar-three);
        transform: rotate(var(--rotate-bar-three));
        transition: bottom 200ms 100ms, transform 100ms;
    }

    .check-icon:checked + .icon-menu > .bar--1 {
        transition: top 200ms, transform 200ms 100ms;
    }

    .check-icon:checked + .icon-menu > .bar--3 {
        transition: bottom 200ms, transform 200ms 100ms;
    }   

    .check-icon:checked + .icon-menu {
        --pos-y-bar-one: calc(var(--gap) + var(--height-bar));
        --pos-y-bar-three: calc(var(--gap) + var(--height-bar));
        --scale-bar: 0;
        --rotate-bar-one: 45deg;
        --rotate-bar-three: -45deg;
    }
    /* FIN ICON-MENU */
    
    .mobile-menu {
        width: 100%;
        padding: 30px 0;
    }
    
    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-bottom: #544e65 2px solid;
        padding-bottom: 20px;
    }
    
    .mobile-menu-item-title {
        color: #fff;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
    }
    
    .mobile-menu-item-list {
        display: flex;
        flex-wrap: wrap;
        row-gap: 10px;
    }
    
    .mobile-menu-item-link {
        width: 50%;
        font-size: 12px;
        line-height: 1;
    }
    
    .mobile-menu-item-link a {
        color: #d0ced5;
    }

}

/* HEADER */

/* FOOTER */
footer {
    margin-top: 40px;
    background: #fff;
}

.footer-content {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.footer-logo {
    width: 230px;
}

.footer-left-content {
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.copy {
    font-size: 12px;
    color: #201838;
    opacity: .5;
    line-height: 18px;
    display: inline-block;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
}

.footer-nav li a {
    color: #201838;
    font-size: 12px;
    line-height: 1;
}

.footer-nav li a:hover {
    text-decoration: underline;
}

.footer-right {
    width: 60%;
}

.footer-right-content {
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
}

.footer-nav-title, .footer-nav-title-link {
    font-weight: 700;
    color: #3d3752 !important;
}

.footer-nav-title-link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .footer-content {
        flex-direction: column-reverse;
    }
    
    .footer-left, .footer-right {
        width: 100%;
    }
    
    .footer-right-content {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    
    .footer-right-item {
        width: 50%;
    }
    
    .footer-left {
        margin-top: 20px;
        align-items: center;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-nav-link {
        max-width: 130px;
    }
    
    .footer-left-content {
        flex-direction: column-reverse;
        padding-left: 0;
    }
    
    .footer-left-content {
        width: 100%;
        text-align: center;
    }
    
    .footer-nav-1 ul {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    
}

/* FOOTER */

/* BREADCRUMBS */

.breadcrumbs-area {
  width: 100% !important;
  padding: 10px 0 !important;
  background: #fff !important;
}

.breadcrumbs {
  width: 100% !important;
  display: flex;
  gap: 10px !important;
}

.breadcrumbs li {
  font-size: 12px !important;
  position: relative !important;
  padding-left: 15px !important;
}

.breadcrumbs li:first-child {
  padding-left: 0 !important;
}

.breadcrumbs li a {
  color: #201838 !important;
}

.breadcrumbs li a:hover {
  text-decoration: underline !important;
}

.breadcrumbs li:first-child:before {
  display: none !important;
}

.breadcrumbs li:before {
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  background: url(/wp-content/themes/bitrates/images/chevron-right.svg) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  display: block !important;
  position: absolute !important;
  bottom: 4px !important;
  left: 0 !important;
  opacity: 0.5 !important;
}

.breadcrumbs li span {
  color: #a6a3b0 !important;
}



/* ------ BREADCRUMBS */

/* TOP-COINS */

.top-coins,
.top-coins-items {
  display: flex;
  width: 100%;
  margin: 10px 0;
}

.top-coins-item-50 {
  width: 50%;
}

.top-coins-item-25,
.top-coins-2-rows {
  width: 25%;
}

.top-coins-item {
  height: auto;
  position: relative;
  display: flex;
  background: #000;
  padding: 30px 25px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
}

.top-coins-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.top-coins-item-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-coins-item-tag {
  padding: 3px 6px;
  background: #653eef;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  z-index: 2;
}

.top-coins-item-tag:hover {
  background: #937aee;
}

.top-coins-item-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.top-coins-item-category {
  display: flex;
  align-items: center;
}

.top-coins-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.top-coins-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

.top-coins-item-date {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.top-coins-item-link {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.top-coins-item-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.top-coins-item-link:hover .top-coins-item-title {
  text-decoration: underline;
}

.top-coins-item-excerpt {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}

.top-coins-item-author {
  width: fit-content;
  background: #171716;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 8px;
  text-transform: uppercase;
  font-size: 12px;
}

.top-coins-item-25 .top-coins-item-author,
.top-coins-2-rows .top-coins-item-author {
  background: none;
  color: #fff;
}

.top-coins-2-rows {
  display: flex;
  flex-direction: column;
}

.top-coins-2-rows .top-coins-item {
  height: 50%;
}

.top-coins-2-rows .top-coins-item-title {
  font-size: 14px;
  line-height: 20px;
}

.sponsored {
  margin-left: 10px;
  width: fit-content;
  background: #171716;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 8px;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .top-coins-item-title {
    font-size: 24px;
  }

  .top-coins-2-rows .top-coins-item-title {
    font-size: 12px;
  }

  .top-coins-item,
  .top-coins-2-rows {
    width: 33.3% !important;
  }

  .top-coins-2-rows .top-coins-item {
    width: 100% !important;
  }

  .top-coins-item-excerpt {
    display: none;
  }
}

@media (max-width: 767px) {
  .top-coins,
  .top-coins-items {
    margin-top: 0;
  }

  .container {
    padding: 0 20px;
  }

  .container.no-padding-mob {
    padding: 0;
  }

  .primary-nav {
    display: none;
  }

  .top-coins-items {
    flex-direction: column;
  }

  .top-coins-item {
    width: 100% !important;
    padding: 15px !important;
  }

  .top-coins-2-rows {
    width: 100% !important;
  }

  .top-coins-item-50,
  .top-coins-item-25 {
    height: 423px;
  }

  .top-coins-2-rows .top-coins-item {
    height: 225px;
  }
}

/* ------ TOP-COINS */

/* OTHER POSTS */

.other-post {
  display: flex;
}

.other-posts-item {
  padding: 20px 25px;
  background: #fff;
  border-right: 2px solid #f7f7f8;
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.other-posts-item:last-child {
  border-right: none;
}

.other-posts-item-category {
  display: flex;
  align-items: center;
}

.other-posts-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.other-posts-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

.other-posts-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.other-posts-item .sponsored {
  color: #9e9aa5;
  background: #f7f7f8;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 10px;
}

.other-posts-item-link {
  color: #201838;
  font-size: 14px;
  font-weight: 700;
}

.other-posts-item-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .other-post {
    flex-wrap: wrap;
  }

  .other-posts-item {
    width: 50%;
    border-bottom: 2px solid #f7f7f8;
  }

  .other-posts-item:last-child {
    border-right: 2px solid #f7f7f8;
  }
}

@media (max-width: 767px) {
  .other-post {
    flex-direction: column;
  }

  .other-posts-item {
    width: 100%;
  }
}

/* ------ OTHER POSTS */

/* SITE MAIN */

.site-main {
  margin-top: 20px;
  display: flex;
  gap: 3%;
}

.site-content {
  width: 72%;
}

/* ------ SITE MAIN */

/* MORE NEWS */

.more-news {
  display: flex;
  flex-direction: column;
}

.more-news.news-category {
  margin-top: 32px;
}

.news-category .more-news-items {
  border-top: 2px #653eef solid;
}

.section-link {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.section-link span {
  color: #511ceb;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-link svg {
  transition: transform 0.2s ease;
}

.section-link:hover svg {
  transform: translateX(5px);
}

.section-link span:hover {
  text-decoration: underline;
}

.more-news-items {
  display: flex;
  margin-top: 10px;
  background: #fff;
  padding: 20px;
  gap: 3%;
}

.more-news-col {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.more-news-item {
  padding-bottom: 15px;
  border-bottom: 2px solid #ececec;
  position: relative;
}

.more-news-item:last-child {
  border-bottom: none;
}

.more-news-item-link {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.more-news-item-img-area {
  position: relative;
  width: 86px;
}

.more-news-item-img-area img {
  height: 63px;
  width: 100%;
  object-fit: cover;
}

.more-news-item-img-area .sponsored {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
}

.more-news-item-text {
  flex: 1;
}

.more-news-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #201838;
}

.more-news-item-link:hover .more-news-item-title {
  text-decoration: underline;
}

.more-news-item-link:hover .more-news-item-img-area img {
  opacity: 0.7;
}

.more-news-item-category {
  position: absolute;
  left: 101px;
  bottom: 15px;
}

.more-news-item.featured,
.more-news-item.featured .more-news-item-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.more-news-item.featured img {
  height: 216px;
  width: 100%;
  object-fit: cover;
}

.more-news-item.featured .more-news-item-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #201838;
}

.more-news-item.featured .more-news-item-link:hover .more-news-item-title {
  text-decoration: underline;
}

.more-news-item.featured .more-news-item-link:hover img {
  opacity: 0.7;
}

.more-news-item-exerpt {
  font-size: 14px;
  color: #3b344f;
  font-weight: 400;
}

.more-news-item.featured .more-news-item-category {
  display: flex;
  align-items: center;
  position: relative;
  left: auto;
  bottom: auto;
}

.more-news-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.more-news-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

.more-news-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.more-news-item .sponsored {
  color: #9e9aa5;
  background: #f7f7f8;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .site-main {
    flex-direction: column;
  }

  .site-content,
  .right-sidebar {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .more-news-items {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .more-news-col {
    width: 100%;
  }

  .more-news-col:first-child .more-news-item:last-child {
    border-bottom: 2px solid#ececec;
  }
}

/* ------ MORE NEWS */

/* CRYPTO GUIDS */

.crypto-guids {
  display: flex;
  flex-direction: column;
  gap: 15%;
  margin-top: 20px;
}

.crypto-guids-items {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  padding: 20px;
  margin-top: 10px;
  background: #fff;
}

.crypto-guids-item {
  width: 47%;
  padding: 15px 0;
  border-bottom: 2px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crypto-guids-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #201838;
}

.crypto-guids-item-title:hover {
  text-decoration: underline;
}

.crypto-guids-item-category a {
  font-size: 10px;
  font-weight: 500;
  color: #615977;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.crypto-guids-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

@media (max-width: 767px) {
  .crypto-guids-items {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 15px;
  }

  .crypto-guids-item {
    width: 100%;
  }
}

/* ------ CRYPTO GUIDS */

/* RIGHT SIDEBAR */

.right-sidebar {
  width: 25%;
}

.sidebar-ad {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-title {
  color: rgba(32, 24, 56, 0.45);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.ad-img-mob {
  display: none;
}

@media (max-width: 1024px) {
  .right-sidebar {
    display: none;
  }
}

@media (max-width: 767px) {
  .right-sidebar {
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  .sidebar-ad {
    align-items: center;
    justify-content: center;
  }

  .sidebar-title {
    text-align: center;
  }

  .ad-img-desk {
    display: none;
  }

  .ad-img-mob {
    display: block;
  }
}

/* ------ RIGTH SIDEBAR */

/* BREADCRUMBS */

.breadcrumbs-area {
  width: 100%;
  padding: 10px 0;
  background: #fff;
}

.breadcrumbs {
  width: 100%;
  display: flex;
  gap: 10px;
}

.breadcrumbs li {
  font-size: 12px;
  position: relative;
  padding-left: 15px;
}

.breadcrumbs li:first-child {
  padding-left: 0;
}

.breadcrumbs li a {
  color: #201838;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(/images/chevron-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0;
  opacity: 0.5;
}

.breadcrumbs li span {
  color: #a6a3b0;
}

@media (max-width: 767px) {
    .breadcrumbs {
        flex-wrap: wrap;
        row-gap: 5px !important;
    }
}

/* ------ BREADCRUMBS */

/* NEWS ARCHIVE POST TYPE */

.title-area {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  width: fit-content;
  z-index: 20;
}

.description-toggler {
  padding: 10px;
  background: #fff;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.description {
  display: none;
}

.description.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  width: 640px;
  background: #fff;
  padding: 35px;
  top: 10px;
  left: calc(100% - 30px);
  z-index: 2;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.3);
}

.description-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.description h2 {
  font-size: 24px;
  font-weight: 900;
}

.description p {
  font-size: 16px;
}

.description-close {
  display: none;
}

h1.section-link {
  padding: 15px 0;
}

h1.section-link:hover span {
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  .title-area {
    width: 100%;
  }

  .description.active {
    top: 50px;
    left: 0;
    width: 100%;
    justify-content: center;
  }

  .description-text {
    position: relative;
  }

  .description-close {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .description-close span {
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 12px;
    color: #653eef;
    border: 2px solid #653eef;
    font-weight: 500;
  }
}

.news-categories-items {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  overflow-x: auto;
  user-select: none;
  scroll-behavior: smooth;
}

.news-categories-items::-webkit-scrollbar {
  display: none;
}

.news-categories-item {
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.news-categories-item.active {
  border-bottom: 3px solid #653eef;
}

.news-categories-item a {
  color: #201838 !important;
}

.news-categories-item:hover {
  border-bottom: 3px solid #653eef;
}

.latest-news-area {
  padding-top: 20px;
  display: flex;
  gap: 20px;
}

.latest-news-left {
  width: 70%;
  display: flex;
}

.latest-news-left .top-coins-item-50 {
  width: 55%;
}

.latest-news-items {
  width: 45%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.latest-news-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  margin: 0 20px;
  gap: 10px;
  border-bottom: 2px solid #ececec;
}

.latest-news-item:last-child {
  border-bottom: none;
}

.latest-news-item-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.latest-news-item-link:hover .latest-news-item-title {
  text-decoration: underline;
}

.latest-news-item-title {
  font-size: 14px;
  color: #201838;
  font-weight: 700;
}

.latest-news-item-exerpt {
  font-size: 14px;
  color: #3b344f;
}

.latest-news-item .sponsored {
  background: #f7f7f8;
  color: #9e9aa5;
  font-size: 10px;
}

.latest-news-right {
  flex: 1;
  background: #fff;
}

.latest-trending-item {
  background: #fff;
  padding-bottom: 10px;
}

.latest-trending-img-area {
  width: 100%;
  height: 243px;
  position: relative;
  padding: 30px 25px;
  box-sizing: border-box;
}

.latest-trending-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.latest-trending-img-area .top-coins-item-tag {
  display: block;
  z-index: 2;
  position: relative;
}

.latest-trending-img-area:hover img {
  opacity: 0.7;
}

.latest-trending-text-link {
  margin: 20px 20px 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.latest-trending-title {
  font-size: 16px;
  font-weight: 700;
  height: 41px;
  color: #201838;
}

.latest-trending-text-link:hover .latest-trending-title {
  text-decoration: underline;
}

.latest-trending-exerpt {
  color: #3b344f;
  font-size: 14px;
}

.latest-trending-item .other-posts-item-category {
  margin: 0 20px;
}

.latest-trending-item .other-posts-item-date {
  margin-left: 0;
}

.latest-trending-item .sponsored {
  background: #f7f7f8;
  color: #9e9aa5;
  font-size: 10px;
}

.latest-news-right .more-news-item {
  margin: 0 20px;
  padding-top: 10px;
  border-top: 2px solid #ececec;
  border-bottom: none;
  background: #fff;
}

@media (max-width: 1024px) {
  .post-type-news .top-coins-item {
    width: 50% !important;
  }

  .post-type-news .top-coins-item-author {
    display: none;
  }

  .post-type-news .latest-news-items {
    width: 50%;
  }

  .latest-trending-title {
    font-size: 14px;
    height: auto;
  }

  .latest-trending-exerpt {
    font-size: 12px;
  }

  .latest-news-right .more-news-item:last-child {
    display: none;
  }

  .latest-news-right .more-news-item-title {
    font-size: 12px;
  }

  .latest-news-right .more-news-item-category {
    display: none;
  }

  .latest-news-right .more-news-item-date {
    display: none;
  }
}

@media (max-width: 820px) {
  .post-type-news .latest-news-area {
    flex-direction: column;
  }

  .post-type-news .latest-news-left {
    width: 100%;
  }

  .post-type-news .latest-news-right {
    display: flex;
    flex-direction: column;
  }
  .latest-news-right .more-news-item:last-child {
    display: flex;
  }
}

@media (max-width: 767px) {
  .post-type-news .latest-news-area {
    flex-direction: column;
  }

  .post-type-news .latest-news-left {
    flex-direction: column;
    width: 100%;
  }

  .post-type-news .top-coins-item {
    width: 100% !important;
  }

  .post-type-news .latest-news-items {
    width: 100% !important;
  }

  .post-type-news .latest-news-right {
    display: block;
  }

  .latest-news-right .more-news-item:last-child {
    display: flex;
  }
}

.magazine-items {
  display: flex;
  border-top: 2px #653eef solid;
  padding: 20px;
  background: #fff;
  margin-top: 20px;
  gap: 3%;
}

.magazine-col-60 {
  width: 55%;
}

.magazine-col-40 {
  width: 47%;
}

.magazine-item.featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.magazine-item-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.magazine-item.featured .magazine-item-title {
  color: #201838;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.magazine-item-link:hover .magazine-item-title {
  text-decoration: underline;
}

.magazine-item.featured .magazine-item-exerpt {
  font-size: 14px;
  color: #3b344f;
}

.magazine-item.featured .magazine-item-category {
  display: flex;
  align-items: center;
  position: relative;
  left: auto;
  bottom: auto;
}

.magazine-item.featured .magazine-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.magazine-item.featured .magazine-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.magazine-item.featured .sponsored {
  color: #9e9aa5;
  background: #f7f7f8;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 10px;
}

.magazine-col-40 {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.magazine-item {
  width: 49%;
}

.magazine-item-img-area {
  height: 108px;
  position: relative;
}

.magazine-item-img-area img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.magazine-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #201838;
}

.magazine-item-time {
  margin-top: 10px;
}

.magazine-item-time span {
  font-size: 12px;
  color: #9995a8;
  font-weight: 500;
  text-transform: uppercase;
}

.magazine-item-exerpt {
  color: #3b344f;
  font-size: 14px;
  display: none;
}

@media (max-width: 767px) {
  .magazine-items {
    flex-direction: column;
    gap: 32px;
  }

  .magazine-col-60,
  .magazine-col-40 {
    width: 100%;
  }

  .magazine-col-40 {
    flex-direction: column;
    gap: 32px;
  }

  .magazine-item {
    width: 100%;
  }

  .magazine-item-exerpt {
    display: block;
  }
}

.coin-news {
  margin-top: 20px;
}

.coin-news-category-title {
  margin-bottom: 20px;
}

.coin-news-caregories {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 20px;
}

.coin-news-category {
  width: 49%;
  padding: 20px;
  border-top: 2px #653eef solid;
  background: #fff;
  display: flex;
}

.coin-news-items {
  display: flex;
  flex-direction: column;
}

.coin-news-item:first-child {
  margin-top: 20px;
}

.coin-news-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 0 10px 0;
  border-bottom: 2px solid #ececec;
}

.coin-news-item-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.coin-news-item-img-area {
  width: 54px;
  height: 54px;
  position: relative;
  flex-shrink: 0;
}

.coin-news-item-img-area img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coin-item-news-title {
  font-size: 14px;
  font-weight: 700;
  color: #0c071c;
}

.coin-item-news-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  width: 56px;
  text-align: right;
}

.coin-news-item .sponsored {
  position: relative;
  margin-left: 66px;
  color: #9e9aa5;
  background: #f7f7f8;
  font-size: 10px;
}

.coin-news-item-link:hover .coin-item-news-title {
  text-decoration: underline;
}

.coin-news-item-link:hover .coin-news-item-img-area {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .coin-news-caregories {
    flex-direction: column;
  }

  .coin-news-category {
    width: 100%;
  }
}

/* ------ NEWS ARCHIVE POST TYPE */

/* SINGLE NEWS */


.post {
}

.post-content {
  display: flex;
}

.post-content-social-area {
  position: relative;
  width: 84px;
}

.post-content-social {
  padding-top: 32px;
  width: 84px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.post-content-social.fixed {
  position: sticky;
  top: 10px;
}

.post-content-social.stopped {
  position: absolute;
  top: auto;
  bottom: 0;
}

.post-content-social a {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
}

.post-content-social a:hover {
  opacity: 0.7;
}

.post-content-social a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.post-content-body {
  flex: 1;
}

.post-image-area {
  height: 486px;
  padding: 0 84px 44px 84px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.post-image-area:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.3) 100%
  );
  left: 0;
  top: 0;
  z-index: 2;
}

.post-image-area img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.post-info {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.post-info h1 {
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  font-weight: 900;
}

.post-info .post-date {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ececec;
  padding: 20px 0;
}

.post-meta-category {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #ececec;
}

.post-meta-category a {
  font-size: 12px;
  font-weight: 700;
  color: #653eef;
  text-transform: uppercase;
}

.post-meta-category a:hover {
  text-decoration: underline;
}

.post-meta-time {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid #ececec;
}

.post-meta-time span {
  font-size: 12px;
  font-weight: 700;
  color: #201838fc;
  text-transform: uppercase;
}

.post-meta svg {
  width: 16px;
  height: 16px;
}

.post-meta-author {
  display: flex;
  gap: 5px;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #797488;
}

.post-meta-author-image {
  border-radius: 100%;
  width: 32px;
  height: 32px;
  position: relative;
  overflow: hidden;
  display: none;
}

.post-meta-author-image img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-meta-author a, .sponsored-by.by-author {
  color: #653eef;
}

.post-meta-author a:hover {
  text-decoration: underline;
}

.post-text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 30px;
}

.post-text p,
.post-text ul,
.post-text ol,
.post-text li {
  margin-bottom: 25px;
}

.post-text blockquote {
    color: #000;
    font-size: 20px;
    padding-left: 38px;
    margin: 65px 0 48px;
    font-weight: 700;
  }
  
 .post-text blockquote p {
     text-align: left !important;
 }  

.post-text ul {
  list-style: inside;
}

.post-text ol {
  list-style: decimal;
  padding-left: 15px;
}

.post-text li:last-child {
  margin-bottom: 0;
}

/*.post-text li {*/
/*    display: flex;*/
/*}*/

.post-text h1,
.post-text h2,
.post-text h3,
.post-text h4,
.post-text h5 {
  margin-bottom: 25px;
  font-weight: 900;
  color: #201838;
}

.post-text h1 {
    font-size: 30px;
}

.post-text h2 {
  font-size: 28px;
}

.post-text h3 {
  font-size: 24px;
}

.post-text h4 {
  font-size: 22px;
}

.post-text h5 {
  font-size: 20px;
}

.post-exerpt {
  font-size: 24px;
  line-height: 38px;
  color: #201838;
  font-weight: 500;
}

.post-text a {
  color: #653eef;
}

.post-text a:hover {
  text-decoration: underline;
}

.post-disclaimer {
  padding-top: 25px;
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  width: 412px;
  position: relative;
}

.post-disclaimer:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #653eef;
  height: 4px;
  width: 22px;
}

.single-news .sidebar-ad .sidebar-title {
  display: none;
}

.subscribe-form {
  margin-top: 32px;
  padding: 46px 50px;
  max-width: 700px;
  border-top: 2px solid #653eef;
  box-shadow: 0 6px 17px rgba(0, 0, 0, 0.08);
}

.subscribe-form-content {
  display: flex;
  flex-direction: column;
}

.newletter-title {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 25px;
}

.newsletter-img {
  width: 60px;
  height: 68px;
  background: url(/wp-content/themes/bitrates/images/ico-newsletter.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.subscribe-title {
  font-size: 41px;
  color: #3a334f;
  font-weight: 800;
  line-height: 1;
}

.subscribe-text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}

.subscribe-subtitle {
  color: #653eef;
  font-size: 14px;
  font-weight: 700;
}

.single-news .site-main {
  padding-bottom: 64px;
}

.more-news-area {
  margin: 0 auto;
  max-width: 864px;
}

.related-news.news-by-category {
  margin-top: 16px;
  box-shadow: 0 2px 24px 0 rgba(32, 24, 56, 0.04);
  border-top: 2px #653eef solid;
  padding: 20px;
}

.related-news-items {
  display: flex;
  gap: 14px;
}

.related-news-item {
  width: calc((100% - 14px * 3) / 4);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-news-item .news-item-img-area {
  width: 100%;
  height: 110px;
  position: relative;
  overflow: hidden;
}

.related-news-item:hover .news-item-img-area {
  opacity: 0.7;
}

.related-news-item .news-item-img-area img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.related-news-item .news-item-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #201838;
  max-height: 40px;
  overflow: hidden;
}

.related-news-item:hover .news-item-title {
  text-decoration: underline;
}

.related-news-item .news-item-exerpt {
  font-size: 14px;
  color: #3b344f;
  line-height: 20px;
  max-height: 38px;
  overflow: hidden;
}

.related-news-item .news-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.more-news-2-cols {
  margin-top: 25px;
  display: flex;
  gap: 2%;
}

.more-news-2-cols .editors-pick,
.more-news-2-cols .trending-news {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editors-pick-items,
.trending-news-items {
  box-shadow: 0 2px 24px 0 rgba(32, 24, 56, 0.04);
  border-top: 2px #653eef solid;
  padding: 20px;
}

.editors-pick-img-area {
  height: 167px;
  position: relative;
  overflow: hidden;
}

.editors-pick-img-area img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}

.editors-pick-item.with-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 2px solid #ececec;
  padding-bottom: 15px;
}

.editors-pick-item.with-image .editors-pick-item-title {
  font-size: 16px;
  line-height: 20px;
  color: #201838;
  font-weight: 700;
}

.editors-pick-item.with-image:hover .editors-pick-item-title {
  text-decoration: underline;
}

.editors-pick-item.with-image .editors-pick-item-exerpt {
  font-size: 14px;
  color: #3b344f;
  max-height: 37px;
  overflow: hidden;
}

.editors-pick-item.with-image .editors-pick-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.editors-pick-items .coin-news-item:first-child,
.trending-news-items .coin-news-item:first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .single-news {
    padding: 0;
  }

  .post-content {
    flex-direction: column;
    padding: 0 10px;
  }

  .post-info h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .post-image-area {
    padding: 0 10px 30px 10px;
  }

  .post-image-area:before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.9) 100%
    );
  }

  .post-meta {
    gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .post-meta-category,
  .post-meta-time {
    padding-right: 5px;
  }

  .post-text {
    margin-top: 20px;
    font-size: 16px;
  }
  
  

  .post-text li {
    margin-bottom: 10px;
  }

  .post-exerpt {
    font-size: 20px;
    line-height: 1.4;
  }

  .post-content-body {
    order: 1;
  }

  .post-content-social-area {
    order: 2;
    width: 100%;
  }

  .post-content-social {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .post-disclaimer {
    width: 100%;
  }

  .subscribe-form {
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }

  .subscribe-title {
    font-size: 24px;
  }

  .subscribe-title br {
    display: none;
  }

  .subscribe-text {
    font-size: 16px;
    line-height: 1.3;
  }

  .subscribe-text br {
    display: none;
  }

  .more-news-area {
    width: 100%;
    padding: 0 10px;
  }

  .related-news-items {
    flex-direction: column;
  }

  .related-news-item {
    width: 100%;
  }

  .related-news-item .news-item-img-area {
    height: 150px;
  }

  .more-news-2-cols {
    flex-direction: column;
  }

  .more-news-2-cols .editors-pick,
  .more-news-2-cols .trending-news {
    width: 100%;
  }
}

/* ------ SINGLE NEWS */

/* GUIDES */

.site-main.guides {
  margin-top: 0px;
}

.guides-categories-items {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.guides-category-item {
  width: calc((100% - 16px * 2) / 3);
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guides-category-item h3 {
  padding: 20px 0 20px 0;
  position: relative;
}

.guides-category-item h3:before {
  content: "";
  background: #653eef;
  height: 4px;
  width: 22px;
  position: absolute;
  bottom: 0;
}

.guides-category-item h3 a {
  font-size: 24px;
  font-weight: 900;
  color: #201838;
  word-break: break-word;
  line-height: 1.3;
}

.guides-category-item h3 a:hover {
  text-decoration: underline;
}

.category-item-desc {
  font-size: 14px;
  line-height: 24px;
  color: #3b344f;
}

.category-count {
  padding: 4px 10px;
  background: #653eef;
  color: #fff;
  line-height: 1;
  border-radius: 4px;
  font-size: 12px;
  width: fit-content;
  text-transform: uppercase;
}

.category-count:hover {
  opacity: 0.7;
}

.guides-items-2-col {
  margin-top: 24px;
  display: flex;
  gap: 2%;
}

.popular-guides,
.new-guides {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guides-items {
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(32, 24, 56, 0.04);
  border-top: 2px #653eef solid;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guides-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ececec;
}

.guides-item:last-child {
  border-bottom: none;
}

.guides-item a {
  font-size: 16px;
  color: #201838;
  line-height: 1.3;
  font-weight: 700;
}

.guides-item a:hover {
  text-decoration: underline;
}

.guides-item-category {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #3a334f;
}

.guides-item-category span {
  font-size: 10px;
  color: #615977;
  background: #f2f2f2;
  font-weight: 500;
}

.post-type-archive-guides .right-sidebar{
    margin-top: 14px;
}

.tax-guides_category .right-sidebar {
    margin-top: 4px;
}

@media (max-width: 820px) {
  .guides .news-categories-items {
    flex-wrap: wrap;
  }

  .guides-category-item {
    width: calc((100% - 16px) / 2);
  }

  .guides-item-category {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .guides .news-categories-items {
    flex-wrap: nowrap;
  }

  .guides-categories-items {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .guides-category-item {
    width: 100%;
  }

  .guides-category-item h3 {
    padding-top: 30px;
  }

  .guides-items-2-col {
    flex-direction: column;
    gap: 24px;
  }

  .popular-guides,
  .new-guides {
    width: 100%;
  }
}

/* ------ GUIDES */

/* GUIDES CATEGORY */

.guides-category {
  margin-top: 0px !important;
}

.guides-category-content {
  margin-top: 24px;
  display: flex;
  gap: 2%;
  padding: 20px;
  background: #fff;
}

.guides-category-info {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guides-category-title {
  font-size: 48px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.guides-category-title:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #653eef;
}

.guides-category-description {
  font-size: 14px;
  line-height: 24px;
  color: #3b344f;
}

.guides-category-posts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
  padding-top: 40px;
}

.guides-category-posts a {
  font-size: 18px;
  line-height: 1;
  color: #201838;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 2px solid #ececec;
}

.guides-category-posts a:hover {
  color: #511ceb;
}

.related-guides {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.guides-category-search {
  padding-bottom: 50px;
  border-bottom: 2px solid #ececec;
}

.guides-category-search-title {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 22px;
  font-weight: 900;
}

.guides-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 40px;
}

.guides-categories-list-item {
  width: 49%;
  padding-bottom: 20px;
  position: relative;
}

.guides-categories-list-item:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #653eef;
}

.guides-categories-list a {
  border-bottom: 0;
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #201838;
}

.guides-categories-list a:hover {
  color: #014c8c;
}

@media (max-width: 767px) {
  .guides-category-content {
    flex-direction: column;
    gap: 24px;
  }

  .guides-category-info,
  .guides-category-posts {
    width: 100%;
  }
}

/* ------ GUIDES CATEGORY */

/* GUIDES SINGLE */

.single-guides h1 {
  font-size: 36px;
  color: #201838;
  font-weight: 900;
}

.helpful {
  margin-top: 24px;
  padding: 30px 0;
  border-top: 2px solid #ececec;
  border-bottom: 2px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.helpful-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.helpful span {
  font-size: 14px;
  color: #201838;
  font-weight: 700;
}

.helpful-btns {
  display: flex;
  gap: 10px;
}

.helpful-btn {
  padding: 5px 20px;
  cursor: pointer;
  font-size: 12px;
  background: #f0efef;
  border-radius: 2px;
}

.helpful-btn:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin: 3px 7px 0 0;
}

.helpful-yes:before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid #00ba4b;
}

.helpful-yes:hover {
  background: #00ba4b;
  color: #fff;
}

.helpful-yes:hover:before {
  border-bottom: 9px solid #fff;
}

.helpful-no:hover {
  background: #ff4d76;
  color: #fff;
}

.helpful-no:before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #ff4d76;
}

.helpful-no:hover:before {
  border-top: 9px solid #fff;
}

.helpful-right {
  font-size: 14px;
  font-weight: 500;
}

.posts-navigation {
  margin-top: 24px;
  display: flex;
  gap: 2%;
}

.posts-navigation-left,
.posts-navigation-right {
  width: 49%;
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.posts-navigation-left:hover span,
.posts-navigation-right:hover span {
  text-decoration: underline;
}

.posts-navigation-left span,
.posts-navigation-right span {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #201838;
}

.posts-navigation a svg {
  width: 32px !important;
}

.posts-navigation-left svg {
  transform: rotate(180deg) scale(1.6);
}

.posts-navigation-right svg {
  transform: scale(1.6);
}

.post-content .guides-categories-list {
  margin-top: 24px;
  padding: 20px;
  background: #fff;
}

@media (max-width: 767px) {
  .helpful {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .posts-navigation-left,
  .posts-navigation-right {
    padding: 10px;
  }

  .posts-navigation-left svg {
    transform: rotate(180deg) scale(1);
  }

  .posts-navigation-right svg {
    transform: scale(1);
  }
}
/* ------ GUIDES SINGLE */

/* WALLETS */

.wallets .list-area {
  display: flex;
  background: #fff;
  margin-top: 20px;
  padding: 20px;
}

.wallets-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.wallets-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 0 20px 0;
  border-bottom: #ececec 1px solid; 
}

.wallets-item-info-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-link {
  font-size: 24px;
  color: #201838;
  font-weight: 700;
  line-height: 1;
}

.wallet-link:hover {
  color: #511ceb;
}

.wallets-item-exerpt {
  color: #201838;
  font-size: 14px;
  line-height: 19px;
}

.wallets-item-coins, .exchanges-item-coins {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 70%;

}

.coin-item {
  font-size: 11px;
  color: #78787b;
  padding: 2px 8px;
  background: #f7f7f8;
  line-height: 1;
}

.wallets-item-logo-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.wallet-logo {
  max-width: 120px;
  width: auto;
  max-height: 64px;
}

.wallets-item-logo-area .sponsored {
  font-size: 10px;
  color: #78787b;
  padding: 4px 8px;
  background: #f7f7f8 !important;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 767px) {
  .wallets-item-info-area {
    width: 70%;
  }
  
  .wallets-item {
      align-items: flex-start;
  }
  
  .wallets-item-coins, .exchanges-item-coins {
      display: none;
  }
  
  
}

/* ------ WALLETS */

/* SINGLE WALLETS */

.single-wallets, .single-exchanges {
    background: #fff !important;
}

.wallet-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.wallet-title-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-title-text h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.wallet-title-info {
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.wallet-title-info .separator {
    width: 2px;
    height: 12px;
    background: #dbdbdb;
}

.wallet-title-info a {
    color: #201838;
}

.wallet-title-info a:hover {
    text-decoration: underline;
}

.wallet-title-country {
    display: flex;
    gap: 5px;
    align-items: center;
}

.wallet-title-country img {
    width: 20px;
}

.top-data-header {
    padding: 20px 0;
    font-size: 24px;
    font-weight: 500;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.wallet-tabs {
    padding-top: 20px;
}

.wallet-tabs ul {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #201838;
    font-weight: 600;
}

.wallet-tabs ul li {
    color: #201838;
    cursor: pointer;
}

.wallet-tabs ul li:hover {
    color: #511ceb;
}

.wallet-tabs ul li.active {
    border-bottom: 3px solid #653eef;
}

.wallet-content {
    padding-top: 20px;
    display: none;
}

.wallet-content.active {
    display: block;
}

.wallet-content p {
    font-size: 18px;
    padding: 14px 0;
    color: #201838;
}

.wallet-content .font-medium {
    font-size: 24px;
    font-weight: 500;
    padding: 0;
}

.wallet-content .desc-title {
    font-size: 14px;
    font-weight: 700;
    max-width: 166px;
}

@media (max-width: 767px) {
    .wallet-title {
        align-items: flex-end;
    }
    
    .wallet-title-text {
        gap: 20px;
    }
    
    .wallet-title-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .wallet-title-info .separator {
        display: none;
    }
    
    .top-data-header {
        font-size: 20px;
    }
    
    .wallet-content .font-medium {
        font-size: 20px;
    }
}



/* ------ SINGLE WALLETS */

/* DEFAULT PAGE */

.page-template-default {
    background: #fff !important;
}

.site-main.default-page {
    background: #fff;
    margin-top: 0;
    padding: 40px 0;
    gap: 0;
    width: 80%;
}

.default-page-menu {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.default-page-menu h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1;
    font-weight: 700;
}

.default-page-menu a {
    color: #3b344f;
}

.default-page-menu .current-menu-item a {
    color: #653eef;
}

.default-page-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
}

.default-page .page-content {
    width: 80%;
}

.default-page h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.default-page h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.default-page h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 800;
}

.default-page ul, .default-page ol {
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    list-style: inside;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.default-page-menu ul {
    list-style: none;
    margin: 0;
}


.last-updated {
    font-size: 12px;
    color: #9995a8;
    font-weight: 700;
    text-transform: uppercase;
}

.default-page p {
    font-size: 14px;
    margin-bottom: 20px;
}

.default-page .exerpt-text {
    font-size: 20px;
    color: #201838;
    font-weight: 500;
}

.default-page .what-we-do {
    font-size: 12px;
    color: #653eef;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .site-main.default-page {
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .default-page .page-content {
        flex: 1;
        width: auto;
    }
    
    .default-page-menu {
        margin-top: 20px;
        flex-direction: row;
        width: 100%;
        gap: 20px;
    }
    
}

@media (max-width: 767px) {
    .default-page-menu {
        gap: 0;
        flex-wrap: wrap;
    }
    
    .default-page-menu-item {
        width: 50%;
    }
    
    .page-template-default .breadcrumbs .bread-current {
        display: block;
    }
    
    .single-news .bread-current {
        display: none;
    }
    
    .single-news .site-main {
        margin-top: 0;
    }
    
    .default-page h1 {
        font-size: 36px;
    }
    
    .post-meta {
        padding-bottom: 10px;
    }
    
    .post-meta-category, .post-meta-time {
        border: none;
    }
    
    .post-meta-author {
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #ececec;
    }
}



/*------ DEFAULT PAGE*/

/* SINGLE EXCHANGE */

.exchange-info-columns, .exchange-stock-market-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.mark {
    color: blue;
}

.exchange-info-columns .mark {
    display: none;
}

.exchange-info-item {
  width: calc((100% - 40px) / 3);
  box-sizing: border-box;
}

.exchange-info-item-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.single-exchange-h3 {
    font-size: 16px;
    font-weight: 700;
}

.exchange-info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  margin-bottom: 20px;
}

.exchange-info-table td {
  padding: 12px 0px;
  vertical-align: top;
  font-size: 18px;
}

.exchange-info-table tr {
  border-bottom: 1px solid #ececec; 
}

.exchange-info-table td:first-child {
  white-space: nowrap; /* не переносим, чтобы тянулось по содержимому */
  font-weight: 500;    /* можно выделить */
}

.exchange-info-table td:nth-child(2) {
    padding: 12px 12px;
}

@media (max-width: 767px) {
    .exchange-info-item {
        width: 100%;
    }
}



/*------ SINGLE EXCHANGE*/