/*================ Blog page ==================*/
.layout-page {
    padding: 25px 0 30px;
}

@media (min-width: 1025px) and (max-width: 1365px) {
    .single-post.toc-exist .sc-block__inner.inner-s {
        max-width: 720px;
    }

    .single-post.toc-exist .sc-block__inner {
        margin-left: 0;
    }
}

.layout-page__inner .inner-s,
.layout-page__inner .inner-xs {
    padding: 0;
}

.sc-block__row {
    display: flex;
}

.sc-block__col {
    flex: 1 1 50%;
}

.sc-block__col:first-child {
    margin-right: 60px;
}

.sc-block__title {
    margin-bottom: 72px;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #F9F9F9;
}

.sc-block__title span {
    display: block;
    font-family: 'Inter', sans-serif;
}

.sc-block__author {
    margin-bottom: 35px;
}

.sc-block__img {
    margin-bottom: 40px;
    width: 100%;
    height: 0;
    padding-bottom: 48%;
    background: transparent no-repeat 50% 50%;
    background-size: cover;
}

.sc-block__article {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 28px;
    color: #4B4F56;
}

img {
    border-radius: 6px;
    background-size: contain;
}

ul,
ol {
    list-style: none;
}

.article-card--horizontal .article-card__title {
    min-height: 51px;
    max-height: 51px;
}

.sc-grid {
    display: flex;
    flex-wrap: wrap;
}

.sc-grid__col {
    margin-bottom: 36px;
    flex: 0 1 33.33%;
}

/*=================== Tabs ==================*/
.sc-tabs .cm-search {
    margin-top: -18px;
}

.sc-tabs__row {
    display: flex;
    margin-bottom: 40px;
}

.sc-tabs__content {
    display: none;
    overflow: hidden;
    margin-bottom: 32px;
}

.sc-tabs__col {
    position: relative;
}

.sc-tabs__col--left {
    flex: 0 1 auto;
    overflow-x: auto;
    border-bottom: 1px solid rgba(64, 66, 68, .2);
}

.sc-tabs__col--right {
    padding-left: 15px;
    flex: 1 0 200px;
    border-bottom: 1px solid rgba(64, 66, 68, .2);
}

.sc-tabs__col::-webkit-scrollbar {
    height: 4px;
    cursor: pointer;
}

.sc-tabs__col::-webkit-scrollbar-thumb {
    background-color: #dee0e9;
    border-radius: 10px;
    cursor: pointer;
}

.sc-tabs__col::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.sc-tabs__more {
    position: absolute;
    top: -6px;
    right: 0;
    background-color: #fff;
    box-shadow: -10px 0 10px 1px #fff;
    transition: box-shadow .2s, background-color .2s;
    z-index: 5;
}

.dropdown__btn {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    min-height: 32px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    line-height: 120%;
    color: #121416;
    transition: color .2s;
}

.dropdown__btn svg {
    margin-left: 10px;
    transform: rotate(0);
    transition: transform .2s;
}

.dropdown__btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.dropdown__btn.button-arrow::after {
    display: none;
}

.dropdown__menu {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    min-width: 200px;
    transition: background-color .2s;
}

.dropdown__link {
    display: block;
    padding: 6px 12px;
    white-space: nowrap;
    max-width: 100%;
    display: -webkit-box;
    height: 30px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.dropdown--more {
    position: relative;
    display: none;
}

.dropdown--more.not-empty {
    display: block;
}

.sc-tabs__more .dropdown__list.tabs-list {
    display: block;
    padding-bottom: 0;
}

.sc-tabs__more .dropdown__list .tabs-list__item {
    padding-right: 0;
    width: 100%;
}

.sc-tabs__more .dropdown__list .tabs-list__link {
    display: block;
    padding: 6px 22px 6px 12px;
}

.sc-tabs__more .dropdown__list .tabs-list__link:hover {
    background-color: rgba(0, 0, 0, .1);
}

html.dark-theme .sc-tabs__more .dropdown__list .tabs-list__link:hover {
    background-color: rgba(0, 0, 0, .3);
}

.sc-tabs__more .dropdown__list .tabs-list__link::after {
    display: none;
}

.sc-tabs__more .dropdown__list .tabs-list__link::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 12px;
    width: 9px;
    height: 7px;
    transform: translateY(-50%);
    background: transparent url(../images/svg/check-red.svg) no-repeat 50% 50%;
    background-size: cover;
    transition: opacity .2s;
    opacity: 0;
}

.sc-tabs__more .dropdown__list .tabs-list__link.is-active::before {
    opacity: 1;
}

.sc-tabs__more .dropdown__btn {
    font-weight: 600;
}

.tabs-list {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    min-width: fit-content !important;
}

.tabs-list__item {
    padding-right: 20px;
    line-height: 1;
}

.tabs-list__item:last-child {
    padding-right: 0;
}

.tabs-list__link {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    white-space: nowrap;
    color: #121416;
    transition: color .2s, background-color .1s;
}

.tabs-list__link::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #4AC18E;
    border-radius: 24px;
    transform: scaleX(0);
    transition: transform .2s;
}

.tabs-list__link:hover {
    text-decoration: none;
    color: #121416;
}

.tabs-list__link:hover::after,
.tabs-list__link.is-active::after {
    transform: scaleX(1);
}

/*================= Custo search =============*/
.cm-search {
    position: relative;
    height: 50px;
    width: 100%;
}

.cm-search__helper {
    position: absolute;
    margin: auto;
    top: 0;
    right: 5px;
    bottom: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all .6s;
    z-index: 4;
    border: 1px solid #000;
}

.cm-search__helper:hover {
    cursor: pointer;
}

.cm-search__helper::before {
    content: '';
    position: absolute;
    margin: auto;
    top: 17px;
    right: 0;
    bottom: 2px;
    left: 16px;
    width: 12px;
    height: 2px;
    transform: rotate(45deg);
    background-color: #121416;
    transition: all .5s;
}

.cm-search__helper::after {
    content: '';
    position: absolute;
    margin: auto;
    top: -7px;
    right: 0;
    bottom: 0;
    left: -7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #121416;
    transition: all .5s;
}

.cm-search__input {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    outline: none;
    background-color: #fff;
    padding: 0 60px 0 20px;
    border-radius: 30px;
    border: 1px solid #121416;
    box-shadow: 0 20px 25px 0 rgba(0, 0, 0, .2);
    transition: all 1s;
    opacity: 0;
    z-index: 5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #121416;
}

.cm-search__input:hover {
    cursor: pointer;
}

.cm-search__input:focus {
    width: 100%;
    opacity: 1;
    cursor: text;
}

.cm-search__input:focus~.cm-search__helper {
    background-color: #121416;
    z-index: 6;
}

.cm-search__input:focus~.cm-search__helper::before {
    top: 0;
    left: 0;
    width: 25px;
    background-color: #fff;
}

.cm-search__input:focus~.cm-search__helper::after {
    top: -2px;
    left: 0;
    width: 25px;
    height: 2px;
    border: none;
    background-color: #fff;
    border-radius: 0;
    transform: rotate(-45deg);
}

.cm-search__input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #121416;
    opacity: 0.5;
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box__input {
    height: 42px;
    padding: 12px;
    border: 1px solid rgba(36, 36, 36, .5);
    border-radius: 6px 0 0 6px;
    border-right: none;
    background-color: #FAFAFA;
    color: #121416;
    transition: color .2s, background-color .2s, border-color .2s;
}

.search-box__btn {
    border-radius: 0 6px 6px 0;
}

.sc-banner__icon svg path:first-child {
    fill: #EE3523;
}

.sc-banner__icon svg path:last-child {
    fill: #3B3D4F;
}

input::placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    color: rgba(18, 20, 22, .5);
    opacity: .8;
}

/*================ Banner ================*/
.sc-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 38px 50px;
    border-radius: 6px;
    background-color: #FAFAFA;
    transition: background-color .2s;
}

.sc-banner__col--left {
    display: flex;
    margin-right: 15px;
}

.sc-banner__icon {
    margin-right: 20px;
}

.sc-banner__title {
    max-width: 400px;
    font-family: 'Inter', sans-serif;
}

.list-article {
    margin-bottom: 32px;
    overflow: hidden;
}

.list-article__btn {
    text-align: center;
}

/*================= Rating ================*/
.article-rating {
    margin: 95px 0;
}

.article-rating__title.title-m {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.article-rating__description {
    margin-bottom: 26px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
}

.article-rating__wrap {
    display: flex;
    justify-content: space-between;
}

.article-rating__star,
.article-rating__social {
    display: flex;
    align-items: center;
}

.article-rating__star-icon {
    margin-right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(196, 196, 196, 0.3);
    text-align: center;
    line-height: 30px;
    font-size: 17px;
    color: #8C8E97;
    cursor: pointer;
}

.article-rating__star-text {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 1.1;
    color: #292c3d;
}

.blog-footer {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAFA;
    transition: background-color .2s;
}

.blog-footer .btn {
    padding: 0 51px !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/*=============== Footer-box ==============*/
.footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 68px;
    padding-bottom: 68px;
}

.footer-box__col:not(:last-child) {
    margin-right: 15px;
}

.footer-box__col .footer-box__description {
    max-width: 290px;
}

.footer-box__inner.inner {
    padding: 0 15px;
}

.footer-box__title {
    max-width: 550px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    text-transform: unset;
    color: #121416;
    transition: color .2s;
}

.footer-box__title span {
    display: block;
}

.footer-box__btn .btn-bg-green {
    background: #4AC18E;
    color: #292C3D;
}

.footer-box__btn .btn-bg-green:hover {
    background: #6BD7A9;
}

.abh_text {
    display: none;
}

.layout-page .abh_tab_content {
    top: -15px;
    left: -18px;
}

.layout-page .abh_tab_content .abh_image img {
    max-width: 90%;
}

.rss-feed-box {
    text-align: right;
}

.btn.btn--border.btn--black:disabled {
    display: none;
}

.sc-block__article a,
.sc-block__article a span {
    text-decoration: none;
    word-wrap: break-word;
    color: #46B586;
}

.sc-block__article a:hover,
.sc-block__article a:hover span {
    text-decoration: underline;
    color: #46B586;
}

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

.sc-block__article a:visited,
.sc-block__article a:focus,
.sc-block__article a:active,
.sc-block__article a:visited span,
.sc-block__article a:focus span,
.sc-block__article a:active span {
    text-decoration: none !important;
    color: #4AC18E;
}

a.btn--red:focus {
    color: #fff;
}

/*================= Responsive ================*/
@media (max-width: 1024px) {
    .layout-page {
        padding-bottom: 30px;
    }

    .sc-block__col:first-child {
        margin-right: 15px;
    }

    .tabs-list {
        justify-content: flex-start;
    }

    .tabs-list__item {
        padding-right: 15px;
    }

    .sc-banner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 15px;
    }

    .sc-banner__col--left {
        margin-bottom: 15px;
        margin-right: 0;
        align-items: center;
    }

    .sc-banner__title {
        max-width: none;
    }

    .article-rating {
        margin: 45px 0;
    }

    .sc-block__author {
        margin-bottom: 25px;
    }

    .sc-block__img {
        margin-bottom: 20px;
    }

    .description p,
    .sc-block__article ul,
    .sc-block__article ol {
        margin-bottom: 20px;
    }

    .dropdown__list.tabs-list {
        margin-bottom: 0;
    }

    section.intro-title.black-bg.blog-black-bg {
        padding-top: 80px;
    }

    .footer-box {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        padding-top: 40px;
        padding-bottom: 45px;
        border-bottom: none;
    }

    .footer-box__col {
        text-align: center;
    }

    .footer-box__col:not(:last-child) {
        margin-right: 0;
    }

    .footer-box__title {
        margin-bottom: 10px;
    }

    .footer-box__description {
        margin-bottom: 15px;
    }

    .footer__row {
        padding-top: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .sc-block__row {
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .sc-block__col {
        flex: 1 1 100%;
    }

    .sc-block__col:first-child {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .sc-tabs__row {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .sc-tabs__col {
        flex: 1 1 100%;
    }

    .sc-tabs .cm-search {
        margin-top: 0;
    }

    .sc-grid__col {
        flex: 1 1 50%;
    }

    .sc-block__title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 48px;
    }

    section.intro-title.black-bg.blog-black-bg {
        padding-top: 30px;
    }

    .sc-tabs__col--left {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .sc-tabs__col--right {
        padding-left: 0;
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .sc-grid__col {
        flex: 1 1 100%;
    }

    .sc-banner__col--left {
        align-items: flex-start;
    }

    .sc-banner__title {
        max-width: 340px;
    }
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.dark-theme .light-theme blockquote {
    background: none !important;
}

.light-theme blockquote {
    background: #f6f7f8;
    padding: 30px 30px 30px 80px;
}

.light-theme blockquote:before {
    top: 55px;
    font-size: 80px;
    left: 20px;
}

.sc-block__article ul {
    list-style-type: disc;
    padding-left: 20px;
}

.sc-block__article ol ul {
    padding-left: 3em;
}

.sc-block__article li ul {
    margin-top: 10px;
}

a.border-bule,
a.border-bule:visited,
a.border-bule:active,
a.border-bule:focus {
    color: #ff0f0f !important;
    text-decoration: none !important;
}

a.border-bule:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.button.border-green,
.button.border-green:visited,
.button.border-green:active,
.button.border-green:focus,
.button.border-bule:visited,
.button.border-bule:active,
.button.border-bule:focus {
    background: transparent;
    text-decoration: none !important;
    border: 2px solid #2BD285;
    color: #2BD285;
}

.button.border-green:hover,
.button.border-bule:hover {
    border-color: #4ED999 !important;
    background-color: #4ED999 !important;
    color: #292C3D;
    text-decoration: none !important;
}

.entry-content .button.border-bule:hover {
    color: #292C3D;
}

.blog-banner {
    background: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
    width: 80%;
    margin: 0 auto;
    display: none;
    min-height: 96px;
    padding: 20px 50px;
    position: relative;
    z-index: 9;
}

.blog-banner.mb-100 {
    margin-bottom: 100px;
}

.blog-banner__row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.blog-banner__col-text {
    flex: 1 1 60%;
    margin-right: 0;
}

.blog-banner__col-btn {
    flex: 1 1 40%;
    display: flex;
}

.blog-banner__text {
    flex: 1 1 60%;
    font-size: 12px;
    line-height: 160%;
    color: #292C3D;
    font-family: 'Inter', sans-serif;
}

.sticky-block-blog {
    position: sticky !important;
    bottom: 0;
}

.bottom-0 {
    bottom: 0 !important;
    transition: bottom 0.3s ease-out !important;
}

.scroll-header .bottom-with-cookie {
    bottom: 65px !important;
    transition: bottom 0.3s ease-out !important;
}

.blog-banner .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 7px 25px !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    transition: background-color .2s, border-color .2s, color .2s;
}

.blog-banner .btn-green {
    background: #4AC18E;
    color: #292C3D;
}

.blog-banner .btn-border-silver {
    border: 1px solid #4AC18E;
    color: #292C3D;
    border-radius: 4px;
}

.blog-banner .btn-border-silver:hover {
    border-color: #6BD7A9;
    background: #6BD7A9;
    box-shadow: 0 2px 6px rgba(74, 193, 142, 0.7);
    color: #292C3D;
}

.blog-banner .btn-green:hover {
    background: #6BD7A9;
    box-shadow: 0 2px 6px rgba(74, 193, 142, 0.7);
}

.blog-banner .btn:active,
.blog-banner .btn:focus,
.blog-banner .btn {
    outline: none !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.blog-banner-right {
    position: absolute;
    right: -140px;
    top: 40px;
}

.blog-banner-left {
    position: absolute;
    left: -140px;
    top: 40px;
}

.close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 4px;
    right: 4px;
    cursor: pointer;
}

.close-btn:before,
.close-btn:after {
    position: absolute;
    margin: auto;
    content: '';
    width: 12px;
    height: 1px;
    background: #999BAA;
    border-radius: 4px;
}

.close-btn:before {
    transform: rotate(45deg);
}

.close-btn:after {
    transform: rotate(-45deg);
}

.close-btn {
    display: none;
}

.blog-banner:not(.sticky-block-blog) .close-btn {
    display: flex;
}

.text-access-bg {
    background: #d9ead3;
    padding: 10px;
}

.text-errors-bg {
    background: #e6b8af;
    padding: 10px;
}


#ez-toc-container {
    position: relative;
    background: none;
    width: 100%;
    border: none;
    padding: 24px 0;
    font-family: 'Inter', sans-serif;
}

#ez-toc-container:before,
#ez-toc-container:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    background-color: #999BAA;
    opacity: 0.5;
}

#ez-toc-container:before {
    top: 0;
}

#ez-toc-container:after {
    bottom: 0;
}

#ez-toc-container a {
    display: inline;
}

.sc-block__article #ez-toc-container {
    border: none;
    box-shadow: none;
    background: none;
}

.sc-block__article #ez-toc-container a,
.sc-block__article #ez-toc-container a:visited {
    color: #4AC18E;
}

#ez-toc-container .ez-toc-title-container {
    margin-bottom: 20px;
}

#ez-toc-container p.ez-toc-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

#ez-toc-container .ez-toc-heading-level-2 {
    margin-bottom: 14px;
}

#ez-toc-container .ez-toc-heading-level-2>a {
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
}

#ez-toc-container .ez-toc-list-level-2 a,
#ez-toc-container .ez-toc-list-level-3 a {
    margin-bottom: 8px;
}

.sc-block__toc .title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #57586E;
    font-weight: 700;
    line-height: 160%;
    background-color: rgba(153, 155, 170, .3);
    margin: 0;
    padding: 15px;
}

.ez-toc-widget-sticky-title {
    text-transform: uppercase;
}

.ez-toc-widget-sticky:not(#ez-toc-widget-sticky-container),
.sc-block__toc .sc-block__social {
    left: auto;
    right: calc(((100% - 0px - 720px) / 2) - 35px);
    position: fixed;
    z-index: 9 !important;
}

.sc-block__toc .sc-block__social {
    opacity: 0;
}

.sc-block__toc .sc-block__social.social-show {
    opacity: 1;
}

.sc-block__toc .sc-block__social {
    margin-top: 35px;
    right: calc(((100% - 720px) / 2) - 35px - 280px);
}

.sc-block__toc .sc-block__social ul {
    padding-left: 0;
    justify-content: center;
}

#ez-toc-widget-sticky-container,
.sc-block__toc .sc-block__social {
    width: 280px;
}

#ez-toc-widget-sticky-container {
    background-color: #F9F9F9 !important;
}

.ez-toc-widget-sticky:not(#ez-toc-widget-sticky-container) {
    border-radius: 4px;
}

@media (max-width: 1199px) {

    .footer-box__title,
    .footer-box__col .footer-box__description {
        max-width: 100%;
    }

    .footer-box__title {
        font-size: 30px;
        min-width: 500px;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {

    .ez-toc-widget-sticky:not(#ez-toc-widget-sticky-container),
    .sc-block__toc .sc-block__social {
        right: auto;
        left: calc(720px + 15px + 15px);
    }

    #ez-toc-widget-sticky-container,
    .sc-block__toc .sc-block__social {
        width: 245px;
    }
}

@media (min-width: 1200px) and (max-width: 1365px) {

    .ez-toc-widget-sticky:not(#ez-toc-widget-sticky-container),
    .sc-block__toc .sc-block__social {
        left: calc((100% - 1170px + 30px) / 2 + 720px + 40px);
    }
}

div.ez-toc-widget-sticky-container ul.ez-toc-widget-sticky-list {
    padding: 24px 15px 30px !important;
    background-color: #F9F9F9;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

#ez-toc-widget-sticky-container ul ul,
.ez-toc div.ez-toc-widget-sticky-container ul ul {
    margin-left: 0 !important;
    padding-left: 0;
}

.sc-block__toc .ez-toc-link,
.sc-block__toc .ez-toc-link span {
    color: #4AC18E;
}

.ez-toc-widget-sticky-container li.active>a,
.sc-block__toc a:focus,
.sc-block__toc a:active,
.sc-block__toc a:visited span,
.sc-block__toc a:focus span,
.sc-block__toc a:active span {
    color: #292C3D;
}

.ez-toc-widget-sticky-container ul.ez-toc-widget-sticky-list li.active {
    background-color: transparent !important;
}

.sc-block__toc {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sticky-toc-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: .3s all ease;
}

.ez-toc-widget-sticky-container li.active>a {
    font-weight: 600 !important;
    line-height: 160%;
    margin-left: 16px;
    position: relative;
    display: inline-block;
}

.ez-toc-widget-sticky-container li.active>a:before {
    position: absolute;
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9InJpZ2h0LWFycm93IDEiIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8yMjA4XzQxMCkiPgo8ZyBpZD0iR3JvdXAiPgo8ZyBpZD0iR3JvdXBfMiI+CjxwYXRoIGlkPSJWZWN0b3IiIGQ9Ik0wLjE5MTgwMiA1LjUzMzc1TDQuNTI1NDMgMS4yMDAwM0M0LjY0OTEzIDEuMDc2MzIgNC44MTQwMSAxLjAwODQyIDQuOTg5ODEgMS4wMDg0MkM1LjE2NTgxIDEuMDA4NDIgNS4zMzA1OSAxLjA3NjQyIDUuNDU0MyAxLjIwMDAzTDUuODQ3NzYgMS41OTM1OUM1Ljk3MTM3IDEuNzE3MSA2LjAzOTQ2IDEuODgyMDcgNi4wMzk0NiAyLjA1Nzk4QzYuMDM5NDYgMi4yMzM3OCA1Ljk3MTM3IDIuNDA0MzEgNS44NDc3NiAyLjUyNzgyTDMuMzE5NTggNS4wNjE1NkgxMS4zNTE3QzExLjcxMzkgNS4wNjE1NiAxMiA1LjM0NTA3IDEyIDUuNzA3MzFWNi4yNjM3QzEyIDYuNjI1OTQgMTEuNzEzOSA2LjkzODAzIDExLjM1MTcgNi45MzgwM0gzLjI5MDlMNS44NDc2NiA5LjQ4NTkxQzUuOTcxMjcgOS42MDk2MiA2LjAzOTM3IDkuNzcwMTEgNi4wMzkzNyA5Ljk0NjAxQzYuMDM5MzcgMTAuMTIxNyA1Ljk3MTI3IDEwLjI4NDUgNS44NDc2NiAxMC40MDgyTDUuNDU0MiAxMC44MDA0QzUuMzMwNDkgMTAuOTI0MSA1LjE2NTcxIDEwLjk5MTYgNC45ODk3MSAxMC45OTE2QzQuODEzOTEgMTAuOTkxNiA0LjY0OTAzIDEwLjkyMzMgNC41MjUzMyAxMC43OTk2TDAuMTkxNzA1IDYuNDY1OTRDMC4wNjc3MDUyIDYuMzQxODQgLTAuMDAwNDg4MjgxIDYuMTc2MTkgLTkuNTM2NzRlLTA3IDYuMDAwMDlDLTAuMDAwMzkxMDA2IDUuODIzNDEgMC4wNjc3MDUyIDUuNjU3NjUgMC4xOTE4MDIgNS41MzM3NVoiIGZpbGw9IiMyOTJDM0QiLz4KPC9nPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMjIwOF80MTAiPgo8cmVjdCB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAxMiAwKSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
    width: 12px;
    height: 12px;
    top: 1px;
    left: -16px;
}

.dark-theme .ez-toc-widget-sticky-container li.active>a:before {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9InJpZ2h0LWFycm93IDEiIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8yMjA4XzQxMCkiPgo8ZyBpZD0iR3JvdXAiPgo8ZyBpZD0iR3JvdXBfMiI+CjxwYXRoIGlkPSJWZWN0b3IiIGQ9Ik0wLjE5MTgwMiA1LjUzMzc1TDQuNTI1NDMgMS4yMDAwM0M0LjY0OTEzIDEuMDc2MzIgNC44MTQwMSAxLjAwODQyIDQuOTg5ODEgMS4wMDg0MkM1LjE2NTgxIDEuMDA4NDIgNS4zMzA1OSAxLjA3NjQyIDUuNDU0MyAxLjIwMDAzTDUuODQ3NzYgMS41OTM1OUM1Ljk3MTM3IDEuNzE3MSA2LjAzOTQ2IDEuODgyMDcgNi4wMzk0NiAyLjA1Nzk4QzYuMDM5NDYgMi4yMzM3OCA1Ljk3MTM3IDIuNDA0MzEgNS44NDc3NiAyLjUyNzgyTDMuMzE5NTggNS4wNjE1NkgxMS4zNTE3QzExLjcxMzkgNS4wNjE1NiAxMiA1LjM0NTA3IDEyIDUuNzA3MzFWNi4yNjM3QzEyIDYuNjI1OTQgMTEuNzEzOSA2LjkzODAzIDExLjM1MTcgNi45MzgwM0gzLjI5MDlMNS44NDc2NiA5LjQ4NTkxQzUuOTcxMjcgOS42MDk2MiA2LjAzOTM3IDkuNzcwMTEgNi4wMzkzNyA5Ljk0NjAxQzYuMDM5MzcgMTAuMTIxNyA1Ljk3MTI3IDEwLjI4NDUgNS44NDc2NiAxMC40MDgyTDUuNDU0MiAxMC44MDA0QzUuMzMwNDkgMTAuOTI0MSA1LjE2NTcxIDEwLjk5MTYgNC45ODk3MSAxMC45OTE2QzQuODEzOTEgMTAuOTkxNiA0LjY0OTAzIDEwLjkyMzMgNC41MjUzMyAxMC43OTk2TDAuMTkxNzA1IDYuNDY1OTRDMC4wNjc3MDUyIDYuMzQxODQgLTAuMDAwNDg4MjgxIDYuMTc2MTkgLTkuNTM2NzRlLTA3IDYuMDAwMDlDLTAuMDAwMzkxMDA2IDUuODIzNDEgMC4wNjc3MDUyIDUuNjU3NjUgMC4xOTE4MDIgNS41MzM3NVoiIGZpbGw9IiNmZmYiLz4KPC9nPgo8L2c+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMjIwOF80MTAiPgo8cmVjdCB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAxMiAwKSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
}

.ez-toc-widget-sticky-container ul li a {
    padding-left: 0 !important;
    margin-bottom: 8px;
}

div.ez-toc-widget-sticky-container ul {
    margin-bottom: 0;
}

.sc-block__article #ez-toc-container ul ul {
    margin-top: 8px;
}

.ez-toc-widget-sticky-list .ez-toc-heading-level-2>a {
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
}

.dark-theme #ez-toc-container {
    background: none;
}

.dark-theme .sc-block__toc .title {
    color: #fff;
}

.dark-theme .sc-block__toc .ez-toc-link,
.dark-theme .sc-block__toc .ez-toc-link span {
    color: #4AC18E;
}

.dark-theme .ez-toc-widget-sticky-container li.active>a {
    color: #fff;
}

.dark-theme #ez-toc-widget-sticky-container,
.dark-theme div.ez-toc-widget-sticky-container ul.ez-toc-widget-sticky-list {
    background-color: #292C3D !important;
}

.dark-theme .ez-toc-widget-sticky * {
    scrollbar-width: auto;
    scrollbar-color: #4e5160 #1a1e2f;
}

.dark-theme .ez-toc-widget-sticky *::-webkit-scrollbar {
    width: 16px;
}

.dark-theme .ez-toc-widget-sticky *::-webkit-scrollbar-track {
    background: #1a1e2f;
}

.dark-theme .ez-toc-widget-sticky *::-webkit-scrollbar-thumb {
    background-color: #4e5160;
    border-radius: 10px;
    border: 3px solid #1a1e2f;
}

.sc-block__article ul+h2 {
    margin-top: 25px;
}

.su-spoiler~.su-spoiler:last-of-type {
    margin-bottom: 40px;
}

.su-spoiler .su-spoiler-title {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 23px 23px 23px 20px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    background-color: rgb(153 155 170 / 20%);
    color: #292C3D;
}

.su-spoiler .su-spoiler-title:focus {
    outline: none;
}

pre ol li,
pre ul li,
.su-spoiler .su-spoiler-content li {
    padding-left: 1em;
    line-height: 25px;
}

pre ul>li,
.su-spoiler ul>li {
    list-style: disc;
}

.su-spoiler .su-spoiler-content {
    padding-right: 1em;
    background-color: rgb(153 155 170 / 5%);
    font-family: 'Noto Sans Mono', monospace;
    font-size: 12px;
    line-height: 1.75;
    font-weight: 400;
    color: #57586E;
}

.su-spoiler .su-spoiler-icon {
    position: static;
    margin-right: 20px;
}

.su-spoiler.su-spoiler-style-default .su-spoiler-content {
    padding-right: 1em;
}

.su-spoiler .su-spoiler-content {
    padding-bottom: 20px;
}

.dark-theme .su-spoiler .su-spoiler-content,
.dark-theme .su-spoiler .su-spoiler-title,
body.dark-theme pre,
.dark-theme pre code,
body.dark-theme code {
    color: #fff;
}

body.dark-theme pre,
.dark-theme pre code,
body.dark-theme code {
    background-color: rgb(153 155 170 / 20%);
}

.wptb-cell .wptb-ph-element u {
    text-decoration-color: #4AC18E;
}

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

    .blog-banner__col-text {
        padding-bottom: 20px;
    }

    .blog-banner__col-btn {
        justify-content: center;
    }

    .blog-banner__text {
        text-align: center;
    }

    .blog-banner-right {
        display: none;
    }

    .blog-banner-left {
        display: none;
    }

    .ez-toc-widget-sticky,
    .sc-block__toc .sc-block__social {
        display: none;
    }
}

@media (max-width: 1149px) {
    .scroll-header .bottom-with-cookie {
        bottom: 76px !important;
        transition: bottom 0.3s ease-out !important;
    }
}

@media (max-width: 1148px) {
    .scroll-header .bottom-with-cookie {
        bottom: 110px !important;
        transition: bottom 0.3s ease-out !important;
    }
}

@media (max-width: 768px) {
    .scroll-header .bottom-with-cookie {
        bottom: 131px !important;
        transition: bottom 0.3s ease-out !important;
    }

    .blog-banner__col-text {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 648px) {
    .scroll-header .bottom-with-cookie {
        bottom: 151px !important;
        transition: bottom 0.3s ease-out !important;
    }

    .blog-banner {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-box__title {
        min-width: auto;
    }

    .footer-box__title span {
        display: inline;
    }
}

@media (max-width: 487px) {
    .scroll-header .bottom-with-cookie {
        bottom: 171px !important;
        transition: bottom 0.3s ease-out !important;
    }

    .blog-banner {
        padding: 20px 10px;
    }
}

@media (max-width: 400px) {
    .light-theme .btn {
        padding: 7px 15px !important;
    }
}

@media (max-width: 391px) {
    .scroll-header .bottom-with-cookie {
        bottom: 230px !important;
        transition: bottom 0.3s ease-out !important;
    }
}

/*================ Blog page Update ==================*/

.layout-page.single-post {
    padding: 0;
}

.sc-block__container .breadcrumbs {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
}

@media (min-width: 768px) {
    .sc-block__container .breadcrumbs {
        font-size: 14px;
    }
}

.single-post-meta p {
    font-weight: 600;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0px;
    margin-bottom: 16px;
    padding: 0;
    border-right: none;
    color: #CFD0D3;
}

.single-post-meta .d-flex p:nth-child(2) {
    border-left: 1px solid #CFD0D3;
    padding-left: 8px;
    margin-left: 8px;
}

@media (min-width: 768px) {
    .single-post-meta p {
        border-right: 1px solid #CFD0D3;
        font-weight: 500;
        padding: 0 8px;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0px;
        margin-bottom: 24px;
    }

    .single-post-meta .d-flex p:nth-child(2) {
        border-left: none;
        margin-left: 0;
    }
}

.single-post-meta--category p {
    padding-left: 0;
    margin-bottom: 0;
}

.single-post-meta p.single-post-meta--reading-time {
    border-right: none;
}

.socprime-toc {
    position: static;
    overflow-y: auto;
}

.single-post-container {
    display: grid;
    padding-top: 6px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 48px;
}

.single-post-header {
    grid-column: 1;
    grid-row: 1;
}

.single-post-content {
    grid-column: 1;
    grid-row: 3;
    overflow: auto;
}

.single-post-sidebar {
    grid-column: 1;
    grid-row: 2;
	position: relative;
    top: 0;
    overflow-y: hidden;
	align-self: start;
}

@media (min-width: 769px) {
    .single-post-container {
        grid-template-columns: calc(100% - 369px) 324px;
        grid-template-rows: auto 1fr;
        gap: 24px 48px;
    }

    .single-post-header {
        grid-column: 1;
        grid-row: 1;
    }

    .single-post-sidebar {
		position: sticky;
        top: 120px;
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .single-post-content {
        grid-column: 1;
        grid-row: 2;
    }
}


.single-post-content {
    border-top: 1px solid #57586E;
    padding-top: 40px;
}

.single-post-content>.numbered-list-block:first-child {
    margin-top: -40px;
}

@media (max-width: 1600px) {
    .single-post-content {}
}

.ai-action-bar {
    display: flex;
    gap: 12px;
    padding: 20px 0;
}

.ai-action-bar .ai-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #292C3D;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease;
}

.ai-action-bar .ai-btn.openai:hover {
    background: #4B9F81;
}

.ai-action-bar .ai-btn.perplexity:hover {
    background: #36717D;
}

.ai-action-bar .ai-btn.claude:hover {
    background: #CA7B5C;
}

.ai-action-bar .ai-btn.gemini:hover {
    background: #FFFFFF;
    transition: opacity 0.2s ease;
}

.ai-btn.gemini img {
    transition: opacity 0.2s ease;
}

.ai-action-bar .ai-btn.gemini:hover img {
    content: url("../images/svg/Gemini-color.svg");
}

.ai-action-bar .ai-btn img {
    width: 20px;
    height: 20px;
}

.ai-action-bar {
    border-top: 1px solid #4AC18E;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .ai-action-bar {
        margin-top: 0;
        border-top: none;
    }
}

.ai-action-bar-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 0;
}

.socprime-threat__author {
    margin-top: 24px;
    display: flex;
    align-items: center;
    background-color: transparent;
    gap: 14px;
}

.socprime-threat__author--photo {
    max-width: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    height: auto;
}

.socprime-threat__author--info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.socprime-threat__author--name {
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #ffffff;
}

.socprime-threat__author--role {
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    color: #ffffff;
    margin-bottom: 6px;
    opacity: 0.8;
}

.socprime-threat__author--linkedin {
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: #ffffff;
    background-color: #4AC18E66;
    border-radius: 2px;
    padding-right: 7px;
}

.socprime-threat__author--linkedin img {
    background-color: #4AC18E;
    border-radius: 2px;
    padding: 3px;
    margin-right: 7px;
}

.ai-action-bar-buttons {
    gap: 12px;
}

@media (min-width: 768px) {
    .ai-action-bar-buttons {
        gap: 16px;
    }
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 16px;
    text-transform: none;
}

.single-post-content h2 {
    font-size: 20px;
    line-height: 28px;
}

@media (min-width: 768px) {
    .single-post-content h2 {
        font-size: 28px;
        line-height: 36px;
    }
}

.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    font-size: 20px;
    line-height: 28px;
}

html.dark-theme h4 {
    font-weight: 500;
}

.single-post-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
    margin-bottom: 24px;
}

.single-post-content p+ul {
    margin-bottom: 0;
}

.single-post-content ul {
    list-style: inside;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0px;
}

.single-post-content pre {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    opacity: 0.7;
    border: none;
    color: #ffffff;
    padding: 16px 35px 16px 24px;
    background-color: #292C3D;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .single-post-content pre {
        padding: 24px 130px 28px 42px;

    }
}

.single-post-content pre {
    position: relative;
}

.single-post-content pre .copy-icon {
    position: absolute;
    top: 16px;
    right: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    background: transparent;
    padding: 0;
    border: none;
}

.copy-toast {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 16px), calc(-50% + 16px)) translateY(10px);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

.copy-toast.show {
    opacity: 1;
    transform: translate(calc(-50% - 16px), calc(-50% + 16px));
}


@media (min-width: 768px) {
    .single-post-content pre .copy-icon {
        top: 16px;
        right: 16px;
    }
}

.single-post-content pre .copy-icon svg {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
}

.single-post-content pre .copy-icon:hover {
    opacity: 1;
}

.cf7-popup-content .sc-home-form .landing-home-form__form {
    border: none;
    border-radius: 0;
}

.cf7-popup-content .sc-home-form__inner {
    padding: 0;
}

figure.wp-block-image img {
    border-radius: 0;
}

figure.wp-block-image figcaption {
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0px;
    color: #999BAA;
    margin-top: 8px;
}

.socprime-toc {
    overflow-y: auto;
    margin-top: 0;
    scroll-behavior: smooth;
    border-radius: 4px;
    background: #292C3D;
}

.socprime-toc-header {
    padding: 15px;
    border-radius: 4px 4px 0 0;
    background: #999baa57;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.socprime-toc.closed>ul {
    display: none;
}

.socprime-toc>ul {
    height: 256px;
    padding: 20px 0;
    display: block;
    overflow-y: auto;
}

.socprime-toc-title {
    font-weight: 700;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #F9F9F9;

}

.socprime-toc-toggle {
    width: 16px;
    height: 16px;
    background: url("../images/svg/arrow.svg") center/contain no-repeat;
    border: none;
    cursor: pointer;
    transition: transform .25s ease;
}

.toc-h2 a {
    display: flex;
    width: 100%;
    padding: 5px 16px;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.toc-h2 {
    border-left: 2px solid transparent;
}

.toc-h2.active {
    border-left: 2px solid #35B97C;
}

.toc-h2.active>a {
    color: #35B97C;
}

.toc-h3 {
    list-style: inside;
}

.toc-h3 a {
    display: flex;
    width: 100%;
    padding: 5px 16px 5px 32px;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0px;
}

.toc-h2 a:hover,
.toc-h3 a:hover,
.toc-h2 a:focus,
.toc-h3 a:focus {
    background-color: #4AC18E26;
    color: #FFFFFF;
}

.socprime-toc.closed .socprime-toc-toggle {
    transform: rotate(-90deg);
}

.socprime-toc.closed ul {
    display: none !important;
}

.socprime-toc .toc-h3 li {
    list-style: none;
    position: relative;
    color: #ffffff;
}

.socprime-toc .toc-h3 li.active,
.socprime-toc .toc-h3 li.active a {
    color: #35B97C;
}

.socprime-toc .toc-h3 li::before {
    content: "•";
    position: absolute;
    left: 18px;
    top: 4px;
    font-size: 23px;
    line-height: 1;
}

.socprime-toc .toc-h3 li .toc-h4 {
    margin-left: 10px;
    list-style: none;
}

.socprime-toc .toc-h3 li .toc-h4 li {
    position: relative;
    padding-left: 14px;
}

.socprime-toc .toc-h3 li .toc-h4 li::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 14px;
    width: 12px;
    height: 1px;
    background-color: #ffffff;
}

.toc-h4,
.socprime-toc .toc-h3 li.active .toc-h4,
.socprime-toc .toc-h3 li.active .toc-h4 a {
    color: #ffffff;
}

.socprime-toc .toc-h3 li.active .toc-h4 li.active,
.socprime-toc .toc-h3 li.active .toc-h4 li.active a {
    color: #35B97C;
}

.socprime-toc .toc-h3 li.active .toc-h4 li.active::before {
    background-color: #35B97C;
}

@media (max-width: 767px) {

    .socprime-toc .toc-h3,
    .socprime-toc .toc-h4 {
        display: block !important;
    }
}

.single-post-content ul.list-minus ul li {
    list-style: none;
}

.single-post-content ul.list-minus ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 15px;
    width: 12px;
    height: 1px;
    background-color: #ffffff;
}

.single-post-content ul {
    padding-left: 22px;
    list-style: disc outside;
}

html.dark-theme .wptb-table-container table td {
    padding: 24px 32px !important;
}

html.dark-theme .wptb-table-container table td:first-child {
    border-right: solid 1px #999baa33;
    border-color: #999baa59 !important;
    padding: 15px 32px !important;
}

html.dark-theme .wptb-table-container table tr:first-child td:first-child {
    border-right-color: #999baaab !important;
}

html.dark-theme .wptb-table-container table tr:first-child p {
    font-size: 12px !important;
    line-height: 160%;
    font-weight: 600;
    letter-spacing: 0px;
}

html.dark-theme .wptb-table-container table tr:first-child {
    text-transform: uppercase;
    background-color: #999baa8c !important;
}

html.dark-theme .wptb-preview-table tr:nth-child(even) {
    background-color: #57586e8a !important;
}

html.dark-theme .wptb-preview-table tr:nth-child(odd) {
    background-color: #292C3D !important;
}

.wptb-table-container[data-wptb-horizontal-scroll-status=true] {
    margin-bottom: 40px;
}

.wptb-table-container table {
    min-width: 742px !important;
}

.attack-flow-class p {
    display: none;
}

html.dark-theme .wptb-text-container>div>p {
    font-size: 16px !important;
    line-height: 160%;
}