/*
Theme Name: Journalx Child
Theme URI: https://docs.wpshop.ru/themes/journalx
Author: WPShop.biz
Author URI: http://wpshop.biz/
Template: journalx
Version: 1.0.0
*/

::-moz-selection { color: #fff; background: #1d1b31; }
::selection { color: #fff; background: #1d1b31; }

/* Kill theme focus ring globally */
*:focus { outline: none !important; }

/* =============================================
   TOPBAR / HEADER
   ============================================= */

.site-header .site-header-inner,
.site-header-inner,
.site-header-inner.fixed {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px;
    padding: 6px 20px !important;
    overflow: visible !important;
    box-sizing: border-box;
    text-align: left;
    max-width: none;
    margin: 0 !important;
}

.site-branding,
.site-branding.site-branding--search {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding-right: 0 !important;
    flex-wrap: nowrap !important;
}

.main-navigation,
.header-html-1,
.header-html-2,
.site-header .social-buttons {
    display: none !important;
}

/* Topbar: fixed, starts after collapsed sidebar */
.site-header {
    position: fixed;
    top: 0;
    left: 60px;
    width: calc(100% - 60px);
    padding: 0;
    margin: 0;
    background: #fff;
    z-index: 10000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    overflow: visible !important;
    transition: left 0.3s ease, width 0.3s ease;
}

/* When sidebar is pinned, topbar shifts right */
.sidebar-pinned .site-header {
    left: 210px;
    width: calc(100% - 210px);
}

/* Topbar logo — visible on mobile where sidebar is hidden */
.topbar-logo {
    display: none;
    flex-shrink: 0;
    line-height: 0;
}
.topbar-logo img {
    height: 28px;
    width: auto;
    display: block;
}

/* Search bar in topbar */
.site-branding--search {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: #f5f6f8;
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 0 14px;
    flex: 1;
    max-width: 280px;
    height: 38px;
    transition: all 0.2s ease;
}
.header-search-form:hover { background: #eef0f3; }
.header-search-form:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
    background: #fff;
}
.header-search-icon {
    font-size: 17px;
    color: #b0b5be;
    flex-shrink: 0;
    transition: color 0.2s;
}
.header-search-form:focus-within .header-search-icon { color: #2563eb; }
.header-search-input {
    border: none;
    background: transparent;
    padding: 0 10px;
    font-size: 14px;
    color: #1d1b31;
    width: 100%;
    outline: none;
    height: 100%;
    font-family: inherit;
}
.header-search-input::placeholder { color: #b0b5be; }

/* =============================================
   HEADER GLOBAL MARKET BAR
   ============================================= */
.cmc_header_bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}
.cmc-hb-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    cursor: default;
    position: relative;
    padding: 4px 0;
}
.cmc-hb-icon {
    font-size: 14px;
    color: #2563eb;
    line-height: 1;
	padding-left: 3px;
}
.cmc-hb-label {
    font-size: 13px;
    font-weight: 500;
    color: #8a8f98;
}
.cmc-hb-value {
    font-size: 13px;
    font-weight: 600;
    color: #1d1b31;
    letter-spacing: -0.01em;
}
.cmc-hb-item::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #e2e4e8;
}
.cmc-hb-item:last-child::after {
    display: none;
}
/* Tooltip on hover */
.cmc-hb-item[data-hint]:hover::before {
    content: attr(data-hint);
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #1d1b31;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
/* Hide header bar on small screens */
@media only screen and (max-width: 768px) {
    .cmc_header_bar {
        display: none;
    }
    .header-search-form {
        max-width: none;
    }
}

/* Hamburger — mobile only */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #1d1b31;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}

/* =============================================
   SIDEBAR — DESKTOP
   ============================================= */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    overflow: hidden;
}

/* Expanded state (hover or pinned) */
.sidebar[data-collapsed="false"] {
    width: 210px;
    box-shadow: 4px 0 24px rgba(0,0,0,0.08);
}

/* When pinned, no shadow needed — content shifts */
.sidebar.pinned {
    box-shadow: none;
}

/* --- Sidebar header --- */
.sidebar-header {
    display: flex;
    align-items: center;
    height: 54px;
    padding: 0 14px;
    flex-shrink: 0;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1d1b31;
    flex-shrink: 0;
    min-width: 32px;
}

.sidebar-logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-text {
font-size: 19px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.3px;
}
.spro {
font-weight: 400;
    color: #9ca3af;
    font-size: 18px;
}
		
	
.sidebar-logo-icon {
    font-size: 28px;
    color: #1d1b31;
    flex-shrink: 0;
}

.sidebar-logo-text {
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}

.sidebar[data-collapsed="false"] .sidebar-logo-text {
    opacity: 1;
}

/* Pin button */
.sidebar-pin {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    margin-left: auto;
    flex-shrink: 0;
}
.sidebar-pin:hover {
    background: #f0f0f0;
    color: #1d1b31;
}
.sidebar.pinned .sidebar-pin {
    color: #2563eb;
}
.sidebar.pinned .sidebar-pin i {
    transform: rotate(45deg);
}

.sidebar[data-collapsed="false"] .sidebar-pin {
    display: flex;
}

/* --- Sidebar nav --- */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
}
.sidebar-nav::-webkit-scrollbar { display: none; }

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav link base styles (both direct <a> and <a> inside .sidebar-link-row) */
.sidebar-nav > ul > li > a,
.sidebar-nav > ul > li > .sidebar-link-row > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 16px;
    color: #1d1b31;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
}

/* Hover on entire li (covers link + arrow for has-children) */
.sidebar-nav > ul > li:hover > a,
.sidebar-nav > ul > li:hover > .sidebar-link-row > a,
.sidebar-nav > ul > li.open > a,
.sidebar-nav > ul > li.open > .sidebar-link-row > a {
    background: #1d1b31;
    color: #fff;
}

.sidebar-nav > ul > .active:hover > a
 {
 color: #1d1b31;
 }
/* has-children: dark bg on the whole row when hovered or open */
.sidebar-nav > ul > li.has-children:hover > .sidebar-link-row,
.sidebar-nav > ul > li.has-children.open > .sidebar-link-row {
    background: #1d1b31;
}
.sidebar-nav > ul > li.has-children:hover > .sidebar-link-row .sub-arrow-btn,
.sidebar-nav > ul > li.has-children.open > .sidebar-link-row .sub-arrow-btn {
    color: rgba(255,255,255,0.6);
}
.sidebar-nav > ul > li.has-children:hover > .sidebar-link-row .sub-arrow-btn:hover,
.sidebar-nav > ul > li.has-children.open > .sidebar-link-row .sub-arrow-btn:hover {
    color: #fff;
}

.sidebar-nav > ul > li > a i:first-child,
.sidebar-nav > ul > li > .sidebar-link-row > a i:first-child {
    font-size: 25px;
    min-width: 25px;
    text-align: center;
    flex-shrink: 0;
    color: #9ca3af;
    transition: color 0.15s;
    line-height: 42px;
    height: 42px;
}

.sidebar-nav > ul > li:hover > a i:first-child,
.sidebar-nav > ul > li:hover > .sidebar-link-row > a i:first-child,
.sidebar-nav > ul > li.open > a i:first-child,
.sidebar-nav > ul > li.open > .sidebar-link-row > a i:first-child {
    color: #fff;
}

/* Active menu item */
.sidebar-nav > ul > li.active > a,
.sidebar-nav > ul > li.active > .sidebar-link-row {
    background: #f4f6f9;
}
.sidebar-nav > ul > li.active > a i:first-child,
.sidebar-nav > ul > li.active > .sidebar-link-row > a i:first-child {
    color: #2563eb;
}

.sidebar-nav > ul > li > a span,
.sidebar-nav > ul > li > .sidebar-link-row > a span {
    opacity: 0;
    transition: opacity 0.2s;
}
.sidebar[data-collapsed="false"] .sidebar-nav > ul > li > a span,
.sidebar[data-collapsed="false"] .sidebar-nav > ul > li > .sidebar-link-row > a span {
    opacity: 1;
}

/* Sidebar link row: link + arrow button side by side */
.sidebar-link-row {
    display: flex;
    align-items: center;
    transition: background 0.15s;
}
.sidebar-link-row > a {
    flex: 1;
    min-width: 0;
}
.sub-arrow-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #9ca3af;
    transition: color 0.15s;
    flex-shrink: 0;
}
.sidebar[data-collapsed="false"] .sub-arrow-btn { display: flex; }

/* Submenu arrow */
.sub-arrow {
    font-size: 16px !important;
    width: auto !important;
    transition: transform 0.2s;
}
.has-children.open .sub-arrow {
    transform: rotate(180deg);
}

/* Sidebar submenu */
.sidebar-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 6px 0;
    display: none;
    background: #1d1b31;
}
.has-children.open .sidebar-submenu {
    display: block;
}
.sidebar-submenu li a {
    display: block;
    padding: 8px 16px 8px 60px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.6;
    transition: opacity 0.15s;
}
.sidebar-submenu li a:hover {
    opacity: 1;
}

/* Collapsed sidebar */
.sidebar[data-collapsed="true"] .sidebar-nav > ul > li {
    position: relative;
}
.sidebar[data-collapsed="true"] .sidebar-nav > ul > li > a span,
.sidebar[data-collapsed="true"] .sidebar-nav > ul > li > .sidebar-link-row > a span,
.sidebar[data-collapsed="true"] .sub-arrow {
    display: none;
}
.sidebar[data-collapsed="true"] .sidebar-submenu {
    display: none !important;
}

/* --- Sidebar footer --- */
.sidebar-footer {
    padding: 8px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.sidebar-tg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #1d1b31;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    white-space: nowrap;
    overflow: hidden;
}
.sidebar-tg:hover { background: #2563eb; color: #fff !important; }
.sidebar-tg i { font-size: 20px; flex-shrink: 0; color: #fff !important; }
.sidebar-tg span {
    opacity: 0;
    transition: opacity 0.2s;
    color: #fff !important;
}
.sidebar[data-collapsed="false"] .sidebar-tg span {
    opacity: 1;
}
/* Collapsed: just show icon, no dark background box */
.sidebar[data-collapsed="true"] .sidebar-tg {
    background: transparent;
    padding: 10px 0;
}
.sidebar[data-collapsed="true"] .sidebar-tg i {
    color: #9ca3af !important;
    font-size: 24px;
}
.sidebar[data-collapsed="true"] .sidebar-tg:hover i {
    color: #1d1b31 !important;
}

/* =============================================
   CONTENT AREA
   ============================================= */

.home-section {
    position: relative;
    margin-left: 60px;
    width: calc(100% - 60px);
    padding: 0;
    margin-top: 54px;
    transition: margin-left 0.3s ease, width 0.3s ease;
}

/* When sidebar is pinned, content shifts */
.sidebar-pinned .home-section {
    margin-left: 210px !important;
    width: calc(100% - 210px) !important;
}

.home-content { left: 0; max-width: 100%; }
.site-content { padding: 0 30px; margin-bottom: 0; }
.site-footer { background-color: #f4f5f6; position: relative; }
.site-footer-inner.fixed { padding: 25px 55px; margin: 40px auto 0 auto; max-width: 100%; justify-content: end; font-size: 90%; color: #9ca3af; }

.entry-content {   
 padding-left: 0;
    padding-right: 0;

}

.single .home-section {

position: relative;
    margin-left: 60px;
    margin-top: 54px;
    transition: margin-left 0.3s ease, width 0.3s ease;
    padding: 20px 6%;
}
/* =============================================
   MOBILE FULLSCREEN MENU
   ============================================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-menu-inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 20px 30px;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1d1b31;
    text-decoration: none;
}
.mobile-menu-logo-img { height: 28px; width: auto; }

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #1d1b31;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-menu-nav { flex: 1; padding: 8px 0; }
.mobile-menu-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu-nav > ul > li { border-bottom: 1px solid #f0f0f0; }
.mobile-menu-nav > ul > li > a,
.mobile-menu-nav > ul > li > .mobile-link-row > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 8px;
    color: #1d1b31;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.mobile-menu-nav > ul > li > a:active,
.mobile-menu-nav > ul > li > .mobile-link-row > a:active { background: #f4f5f6; }
.mobile-menu-nav > ul > li > a i,
.mobile-menu-nav > ul > li > .mobile-link-row > a i { font-size: 22px; color: #9ca3af; width: 28px; text-align: center; flex-shrink: 0; }

/* Active mobile menu item */
.mobile-menu-nav > ul > li.active > a,
.mobile-menu-nav > ul > li.active > .mobile-link-row > a { background: #f4f6f9; }
.mobile-menu-nav > ul > li.active > a i,
.mobile-menu-nav > ul > li.active > .mobile-link-row > a i { color: #2563eb; }

/* Mobile link row: link + arrow button */
.mobile-link-row {
    display: flex;
    align-items: center;
}
.mobile-link-row > a {
    flex: 1;
    min-width: 0;
}
.mobile-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 12px;
    color: #9ca3af;
    font-size: 20px;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.has-submenu.open .mobile-sub-toggle i { transform: rotate(180deg); }

.mobile-submenu { list-style: none; padding: 0 0 8px 50px; display: none; }
.has-submenu.open .mobile-submenu { display: block; }
.mobile-submenu li a { display: block; padding: 8px 12px; color: #6b7280; text-decoration: none; font-size: 15px; border-radius: 6px; }
.mobile-submenu li a:active { background: #f4f5f6; color: #1d1b31; }

.mobile-menu-divider { height: 1px; background: #e5e7eb; margin: 8px 0; }

.mobile-menu-user { padding: 8px 0; }
.mobile-user-info { display: flex; align-items: center; gap: 12px; padding: 12px 8px; }
.mobile-user-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.mobile-user-name { display: block; font-size: 15px; font-weight: 600; color: #1d1b31; }
.mobile-user-email { display: block; font-size: 13px; color: #9ca3af; }
.mobile-user-links { list-style: none; margin: 0; padding: 0; }
.mobile-user-links li a { display: flex; align-items: center; gap: 14px; padding: 12px 8px; color: #1d1b31; text-decoration: none; font-size: 16px; }
.mobile-user-links li a i { font-size: 22px; color: #9ca3af; }
.mobile-logout { color: #e53e3e !important; }
.mobile-logout i { color: #e53e3e !important; }

.mobile-login-btn,
.mobile-register-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 8px;
    color: #1d1b31;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-login-btn i,
.mobile-register-btn i { font-size: 22px; color: #9ca3af; }

.mobile-menu-footer { padding: 16px 0 0; margin-top: auto; }
.mobile-telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: #1d1b31;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}
.mobile-telegram-link:hover { background: #2563eb; color: #fff; }
.mobile-telegram-link i { font-size: 22px; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .sidebar { display: none !important; }

    .site-header {
        left: 0 !important;
        width: 100% !important;
    }

    .topbar-logo { display: block; }
    .mobile-hamburger { display: flex; align-items: center; }

    .home-section,
    .sidebar-pinned .home-section,
    .sidebar-pinned-early .home-section {
        margin-left: 0 !important;
        width: 100% !important;
        margin-top: 50px;
    }

    .site-content { padding: 0 10px; }

    .site-header-inner { padding: 4px 12px !important; }

    .header-user-area { display: none !important; }

    .header-search-form { max-width: none; }

    .single .site-content { max-width: 100%; padding: 0 10px; }
    .cmc-advanced-single-page .site-content { max-width: 100%; }
    .site-footer-inner.fixed { padding: 25px 15px; }
}

@media (min-width: 769px) {
    .mobile-hamburger { display: none !important; }
    .topbar-logo { display: none !important; }
}

@media (min-width: 769px) and (max-width: 991px) {
    .header-user-area {
        position: relative !important;
        top: auto !important;
        right: auto !important;
    }
}

/* =============================================
   CMC + OTHER EXISTING STYLES
   ============================================= */

.posts-table-wrapper td { border-bottom: 1px solid #e5e7eb; }
.posts-table-wrapper a { text-decoration: none; }
.posts-table-wrapper .col-title a { font-weight: 600; }

.pseudo-link, .entry-content a {
    text-decoration: none;
    background-image: linear-gradient(rgba(34,34,34,.1),rgba(34,34,34,.1));
    background-repeat: repeat-x;
    background-size: 100% 1px;
    background-position: 0 100%;
    color: #3861fb;
}
.table-of-contents__list a { color: #222; }
.posts-data-table td { vertical-align: middle !important; }
.table-responsive table { margin: 0 !important; border: 0 !important;}
.cmc-name a, td .exchange-name-logo a, .cmc-social-list .pseudo-link { color: #1d1b31; background: 0; background-image: none !important; display: flex; width: 100%; height: 100%; }
.cmc-name a:hover, .exchange-name-logo a:hover { color: #3861fb; }
.cmc-social-list .pseudo-link i { padding-top: 3px; }
.cmc-name { width: 100%; }
span.mrank { background: #eff1f2; padding: 2px 4px; border-radius: 4px; color: #868b95; margin-left: 5px; font-size: 13px; }

i.cmc_icon-up, i.cmc_icon-down { display: none; }
td, th, .sidebar, .entry-meta, h1, h2, h3, h4, h5, h6, .table-of-contents, .breadcrumb, .cmc-content, .site-footer { font-family: "Roboto condensed","PT Sans","Helvetica Neue", Helvetica, Arial, sans-serif !important; }

.cmc-price { font-weight: 500; }
span.cmc-formatted-price { padding-left: 1px; }
.cmc_coin_symbol { font-size: 14px; text-transform: lowercase; color: #9ca3af; }
.cmc_coin_symbol::first-letter { text-transform: uppercase; }

.archive-description .table-responsive, .entry-content .table-responsive, .home-text .table-responsive { margin: 0; }
.single .site-content {
    background: white;
    padding-top: 1px;
    padding-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.08);
    border: 1px solid #eaecef;
    margin: 0 auto;
}
.entry-header, .page-header { margin-top: 15px; }

#cryptocurency-market-cap-wrapper .table-bordered>tbody>tr>td { border-left: 0; border-top: 0; border-bottom: 1px solid #e5e7eb; }
#cryptocurency-market-cap-wrapper .table-bordered { border-left: 0; border-right: 0; }
div[id*=cmc_].dataTables_wrapper table.dataTable td { padding: 11px 7px; }
#cmc_toggel_fav { margin-left: -7px; margin-right: 7px; }


@media only screen and (min-width:640px) {
    .price-minus .cmc-price, .price-plus .cmc-price { background: 0 !important; color: #1d1b31 !important; }
    #cmc_coinslist thead { position: sticky; top: 0px; background-color: white; z-index: 99; }
	
}

@media (max-width: 720px) {
    #cmc_coinslist_wrapper .table-striped>tbody>tr td:nth-of-type(2),
    #cmc_historical_tbl_wrapper .table-striped>tbody>tr td:nth-of-type(1) {
        box-shadow: 14px 0px 25px -10px rgba(221,221,221);
    }
}

@media (max-width: 520px) {

.single .home-section, .archive-description, .author-box, .breadcrumb, .child-categories, .comments-bottom, .container, .entry-comments, .entry-content, .entry-excerpt, .entry-footer, .entry-header, .entry-rating, .entry-tags, .home-content, .page-content, .page-header, .post-thumbnail
 {
padding-left: 0;
padding-right: 0;

}

}

/* Block boxes */
.block-boxes { display: flex; flex-wrap: wrap; margin-bottom: 30px; }
@media (min-width: 768px) { .block-boxes { margin-bottom: 50px; } }
@media (min-width: 1400px) { .block-boxes { max-width: 1900px; margin: 0 auto 70px; } }
.block-box { position: relative; width: 100%; padding: 0 20px; margin-bottom: 50px; }
@media (min-width: 400px) { .block-box { width: 50%; } }
@media (min-width: 768px) { .block-box { width: 33.33%; padding: 0 25px; } }
@media (min-width: 992px) { .block-box { width: 25%; } }
@media (min-width: 1400px) { .block-box { width: 20%; } }
.block-box a { text-decoration: none; }
.block-box__title { font-size: 17px; font-weight: 700; line-height: 1.3; margin: 0 0 0.4em; word-break: break-word; }
.block-box__body { font-family: Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif; max-width: 100%; }
.block-box__category { text-transform: uppercase; font-size: 0.7em; margin-bottom: 0.2em; opacity: 0.7; }
.block-box__thumbnail { position: relative; display: block; margin-bottom: 15px; overflow: hidden; }
.block-box__description { margin-bottom: 0.4em; }
.block-box__meta { margin-bottom: 15px; color: #999; font-size: 0.8em; font-family: Roboto, Arial, sans-serif; }
.block-box__meta a { color: #999; }
.block-box__date { margin-right: 20px; }
.block-box__author { margin-right: 20px; }
.block-box__comments, .block-box__views { white-space: nowrap; }
.block-box__comments:before, .block-box__views:before { position: relative; font-size: 1rem; vertical-align: middle; margin-right: 6px; top: -1px; }
.block-box__comments { margin-right: 20px; }
.block-box__comments:before { content: "\1F4AC"; }
.block-box__views { margin-right: 20px; }
.block-box__views:before { content: "\1F441"; }
.block-box--no-thumb { display: flex; }
.block-box--no-thumb a { display: flex; flex-wrap: wrap; width: 100%; padding: 15px; border: 1px solid #eee; justify-content: center; align-items: center; text-align: center; min-height: 120px; transition: 0.3s; }
.block-box--no-thumb a:hover { border-color: #305cf7; }

.block-thumbnail { margin-bottom: 30px; position: relative; padding-left: 20px; padding-right: 20px; }
@media (min-width: 768px) {
    .block-thumbnail { max-width: 700px; margin: 0 auto; padding-left: 0; padding-right: 0; }
    .sidebar-none .block-thumbnail { max-width: 1190px; }
}
@media (min-width: 1200px) {
    .block-thumbnail--wide { max-width: 1200px; left: 0; }
    .block-thumbnail { left: -230px; }
    .sidebar-none .block-thumbnail { left: 0; }
}

@media (min-width: 768px) {
    .sidebar-none .archive-description, .sidebar-none .author-box, .sidebar-none .breadcrumb, .sidebar-none .child-categories, .sidebar-none .comments-bottom, .sidebar-none .container, .sidebar-none .entry-comments, .sidebar-none .entry-content, .sidebar-none .entry-excerpt, .sidebar-none .entry-footer, .sidebar-none .entry-header, .sidebar-none .entry-rating, .sidebar-none .entry-tags, .sidebar-none .home-content, .sidebar-none .page-content, .sidebar-none .page-header, .sidebar-none .post-thumbnail { max-width: 1200px; }
}

/* CMC global data */
.cmc_classic .cmc_global_data ul li { padding-left: 0; }
.cmc_classic .cmc_global_data ul li:before { display: none !important; }
.cmc_global_data ul li:nth-child(2) .global_data { background: green !important; }
.cmc_global_data ul li:nth-child(3) .global_data { background: orange !important; }
.cmc_classic .cmc_global_data ul li .global_data { font-weight: bold !important; color: white; padding: 3px 5px; border-radius: 5px; background: #464748; }
.cmc_classic .cmc_global_data ul li .global_d_lbl { font-weight: 500 !important; background: none !important; border: none !important; padding: 0 !important; }
.cmc_classic .cmc_global_data ul li { margin-bottom: 5px !important; font-size: 15px !important; font-weight: 500 !important; background: #e8ebf0 !important; padding: 6px !important; color: #54575d !important; border: none !important; margin-right: 20px !important; border-radius: 5px; }

/* Spoilers */
.spoiler > input + .box > blockquote { display: none; }
.spoiler > input:checked + .box > blockquote { display: block; }
.spoiler > input[type="checkbox"]:focus { outline: none; }
.spoiler div.open { color: #fff; text-align: center; }
.spoiler div.close { color: #eda0a8; font-size: 18px; text-align: center; }
.spoiler > input + .box > div.close { display: none; }
.spoiler > input:checked + .box > div.close { display: block; }
.spoiler > input:checked + .box > div.open { display: none; }
.spoiler > input + .box > div.open { display: block; }

/* Testimonials */
.testimonial_group { display: block; margin: 0; }
.testimonial_group .stb-container-css { background: #f8fafd; border-radius: 12px; margin-bottom: 16px; padding: 20px 16px; border: none; box-shadow: none; color: #1e293b; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
.testimonial_group .stb-icon { display: none; }
.testimonial_group .stb-box { display: flex; flex-wrap: wrap; align-items: center; background: transparent; padding: 0; }
.testimonial_group strong { order: 1; margin-right: auto; font-size: 1.4rem; font-weight: 600; color: #0f172a; line-height: 1.4; }
.testimonial_group .review-head { order: 2; margin-left: auto; }
.testimonial_group .stars { color: #fbbf24; font-size: 1.5rem; letter-spacing: 3px; background: transparent; padding: 0; border: none; line-height: 1; }
.testimonial_group .rr_review_text { order: 3; flex: 0 0 100%; line-height: 1.6; color: #334155; padding: 0; border: none; }
.testimonial_group strong::before { content: "\ed5b"; color: #2563eb; font-family: 'boxicons'; font-size: 26px; margin-right: 10px; vertical-align: middle; display: inline-block; line-height: 1; }

.spoiler { position: relative; }
.spoiler-checkbox { position: absolute !important; width: 270px !important; height: 50px !important; left: 50% !important; transform: translateX(-50%) !important; opacity: 0 !important; z-index: 2 !important; cursor: pointer !important; margin: 0 !important; top: 0; }
.stb-plus-container.open { width: 270px; margin: 0 auto; border-radius: 6px; padding: 10px 0; background: #2563eb; }
.stb-minus-container.close { text-align: center; background: #eaedf0; width: 270px; margin: 0 auto; border-radius: 6px; padding: 10px 0; color: #eda0a8; }
.box { width: 100%; }
.blockquote.Untext { width: 100%; }
.rr_review_form { width: 100%; }
.rr_review_form .form_table .rr_form_row .rr_form_input textarea { width: 100%; }
.hideq { display: none; }


.archive-description table th, .entry-content table th, .home-text table th {
    text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #94a3b8; background: #f8fafd; border-bottom: 1px solid #e2e8f0;
}
