.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    text-align: left !important;
    color: #333 !important;
}

.single-content h2 span,
.single-content h2 p {
    color: #333 !important;
    text-align: left !important;
}

.single-content h3 span,
.single-content h3 p {
    color: #333 !important;
    text-align: left !important;
}

.single-content h4 span,
.single-content h4 p {
    color: #333 !important;
    text-align: left !important;
}

.single-content h5 span,
.single-content h5 p {
    color: #333 !important;
    text-align: left !important;
}

.single-content h6 span,
.single-content h6 p {
    color: #333 !important;
    text-align: left !important;
}

.single-content .post-banner img {
    margin: 0;
}

.post-banner-container {
    display: none;
}

.post-banner-container.show {
    display: block;
}

.post-banner {
    max-width: 100%;
    margin: 48px auto 0;
}

@media (min-width: 768px) {
    .post-banner {
        margin: 65px auto 0;
    }
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    text-align: left;
}

.table-content-mobile {
    margin-bottom: 48px;
}

.table-content-btn[aria-expanded='false'] {
    position: relative;
    background: #ff3c32;
    border-radius: 4px;
    border-color: #ff3c32;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 24px;
}

.table-content-btn[aria-expanded='false']::after {
    position: absolute;
    right: 34px;
    content: url('../images/items/down-content.svg');
    top: 23px;
}

.table-content-btn[aria-expanded='true']::after {
    content: url('../images/items/up-content.svg');
    top: 23px;
    position: absolute;
    right: 28px;
}

.table-content-btn[aria-expanded='true'] {
    position: relative;
    background: #f4f7f9;
    border-radius: 4px;
    border-color: #f4f7f9;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    width: 100%;
    text-align: left;
    padding: 24px;
}

.collapseTableContent {
    padding: 0 24px 32px;
    background: #f4f7f9;
    border-radius: 4px;
    border-color: #f4f7f9;
}

.collapseTableContent.collapse.show {
    overflow: auto;
    max-height: calc(100vh - 352px);
    scrollbar-color: #828282 #f4f7f9;
    scrollbar-width: thin;
}

.table-content__wrap.sticky .collapseTableContent.collapse.show {
    max-height: calc(100vh - 208px);
}

.sidebar {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 20px;
}

.sidebar__wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 992px) {
    .sidebar__wrapper {
        max-width: 240px;
    }
}

.sidebar__container {
    position: -webkit-sticky;
    position: sticky;
    top: 116px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.single-post .sidebar__container {
    position: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.sidebar-subscribe {
    background: url('../images/backgrounds/btn-bg.png') top center no-repeat;
    background-size: cover;
    background-color: #ff3c32;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 9px;
}

.sidebar-subscribe__image {
    max-width: 77px;
    position: relative;
    z-index: 3;
    margin-right: -20px;
    padding-right: 6px;
}

.sidebar-subscribe__image img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-subscribe__btn {
    color: #222;
    font-size: 11.163px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding: 9px 25px 9px 30px;
    border-radius: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-box-shadow: 0px 3.721px 3.721px 0px #bd0900;
    box-shadow: 0px 3.721px 3.721px 0px #bd0900;
    max-width: 146px;
    -webkit-animation: scale 1s infinite linear;
    animation: scale 1s infinite linear;
}

.sidebar-subscribe__btn:hover {
    color: #222;
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.sidebar-most-popular {
    border-radius: 10px;
    border-left: 4px solid var(--richads-com-red-orange, #ff3c32);
    background: #fff;
    padding: 28px;
}

.sidebar-most-popular .sidebar-most-popular__title {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 16px;
}

.sidebar-most-popular .sidebar-most-popular__grid {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.sidebar-most-popular .sidebar-most-popular__item .item__readtime {
    color: #ff3c32;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.sidebar-most-popular .sidebar-most-popular__item .item__title {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-top: 4px;
    display: block;
}

.sidebar-readmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
}

.sidebar-readmore__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.sidebar-readmore__title {
    font-size: 14px;
    font-weight: 800;
    line-height: 16px;
    text-align: left;
    color: #333333;
}

.sidebar-readmore__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 6px;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-left: 0;
}

.sidebar-readmore__item .item__meta {
    grid-column: 1/3;
}

.sidebar-readmore__item .item__image {
    width: 72px;
    aspect-ratio: 72/48;
    display: block;
}

.sidebar-readmore__item .item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.sidebar-readmore__item .item__title {
    display: block;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.sidebar-readmore__item .item__title:hover {
    color: var(--df-default);
}

.wvl-content .wvl-publicate ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin-bottom: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 12px;
    list-style-type: none;
}

.wvl-content .wvl-publicate ul li {
    margin-left: 24px;
    line-height: 0;
    position: relative;
}

.wvl-content .wvl-publicate ul li::before {
    content: '•';
    color: #828282;
    font-size: 25px;
    position: absolute;
    left: -15px;
    top: 5px;
}

.wvl-content .wvl-publicate ul li:first-child {
    content: '';
    margin-left: 0;
}

.wvl-content .wvl-publicate ul li:first-child::before {
    content: '';
    margin-left: 0;
}

.wvl-content .wvl-publicate ul li a,
.wvl-content .wvl-publicate ul li .ttr,
.wvl-content .wvl-publicate ul li time {
    font-weight: 500;
    font-size: 10.3px;
    line-height: 13px;
    color: #828282;
}

.wvl-content .wvl-publicate ul li a:hover,
.wvl-content .wvl-publicate ul li .ttr:hover,
.wvl-content .wvl-publicate ul li time:hover {
    color: var(--df-default);
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {

    .wvl-content .wvl-publicate ul li a,
    .wvl-content .wvl-publicate ul li .ttr,
    .wvl-content .wvl-publicate ul li time {
        font-size: 9px;
    }
}

.single-content__wrapper+.author {
    padding-top: 40px;
    border-top: 1px solid #dde3eb;
}

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

@media (min-width: 992px) {
    .single-content {
        margin-bottom: 48px;
    }
}

/* DEFAULT ITEMS POST */
.single-title h1 {
    font-weight: 900;
    font-size: 45px;
    line-height: 100%;
    color: #333333;
    margin-bottom: 24px;
}

.cat-publicate-container {
    margin-bottom: 24px;
}

.cat-publicate-container ul {
    margin-bottom: 0;
}

.cat-publicate-container .cpc-publicate ul {
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin-bottom: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 12px;
    list-style-type: none;
}

.cat-publicate-container .cpc-publicate ul li {
    margin-left: 24px;
    line-height: 0;
    position: relative;
}

.cat-publicate-container .cpc-publicate ul li::before {
    content: '•';
    color: #828282;
    font-size: 25px;
    position: absolute;
    left: -15px;
    top: 5px;
}

.cat-publicate-container .cpc-publicate ul li:first-child {
    content: '';
    margin-left: 0;
}

.cat-publicate-container .cpc-publicate ul li:first-child::before {
    content: '';
    margin-left: 0;
}

.cat-publicate-container .cpc-publicate ul li a,
.cat-publicate-container .cpc-publicate ul li .ttr,
.cat-publicate-container .cpc-publicate ul li time {
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #828282;
}

.cat-publicate-container .cpc-publicate ul li a:hover,
.cat-publicate-container .cpc-publicate ul li .ttr:hover,
.cat-publicate-container .cpc-publicate ul li time:hover {
    color: var(--df-default);
}

.cat-publicate-container .cpc-tags ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cat-publicate-container .cpc-tags ul li {
    margin-right: 8px;
    line-height: 0;
    list-style-type: none;
}

.cat-publicate-container .cpc-tags ul li a {
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #828282;
    text-transform: capitalize;
}

.cat-publicate-container .cpc-tags ul li a:hover {
    color: var(--df-default);
}

.single-image {
    margin-bottom: 28px;
}

.single-image img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.single-content img {
    max-width: 100%;
    margin-bottom: 16px;
    text-align: center;
}

.single-content figure.aligncenter {
    text-align: center;
}

.single-content figure.alignleft {
    text-align: left;
}

.single-content figure.alignright {
    text-align: right;
}

.single-table-content h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.single-table-content ul {
    padding: 0;
}

.table-content__wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 116px;
}

.single-table-content ul li {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 20px;
}

.single-table-content ul li a {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #333333;
}

.single-table-content ul li a.active {
    color: var(--df-default) !important;
}

.single-table-content ul li a:hover {
    color: var(--df-default) !important;
}

.single-table-content ul li .collapse.show ul {
    padding-top: 20px;
}

.single-table-content .collapse-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.single-table-content .collapse-toggler {
    width: 11px;
    height: 7px;
    margin: 0 0 0 auto;
    padding: 10px;
    background: url('../images/items/up-content.svg') no-repeat center;
    background-size: auto;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    cursor: pointer;
}

.single-table-content .collapse-toggler .hide {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}

.single-table-content .collapse-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.single-content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content h2 {
    margin: 65px 0 48px;
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
}

.single-content h3 {
    margin-bottom: 32px;
    margin-top: 42px;
    font-weight: 700;
    font-size: 21px;
    line-height: 100%;
}

.single-content h4 {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
}

.single-content h5 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
}

.single-content em {
    font-weight: 500;
    font-size: 11px;
    line-height: 145%;
    color: #828282;
    margin-bottom: 48px;
    font-style: normal;
}

.single-content .img-caption {
    font-weight: 500;
    font-size: 11px;
    line-height: 145%;
    color: #828282;
    margin-bottom: 48px;
    font-style: normal;
}

.single-content ul li {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
    margin-bottom: 16px;
}

.single-content ul.children {
    margin-top: 16px;
}

.single-content ul.children li {
    list-style-type: disc;
}

.single-content p.single-info-blue {
    padding: 24px;
    background: #dff2fc;
}

.single-content p.single-info-yellow {
    padding: 24px;
    background: #ffa700;
    color: #fff;
}

.single-content p.single-info-dark-blue {
    padding: 24px;
    background: #3200ff;
    color: #fff;
}

.single-content a {
    color: #000000;
    text-decoration: underline;
}

.single-content a:hover {
    color: #3200ff;
}

.single-content ol {
    counter-reset: item;
    padding: 0;
    padding-left: 1em;
}

.single-content ol li {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
    margin-bottom: 16px;
}

.single-content ol.children li {
    padding-left: 2rem;
    margin-top: 8px;
}

.wptb-table-container table th,
.wptb-table-container table td {
    padding: 24px 24px;
    position: relative;
}

.wptb-table-container table th::after,
.wptb-table-container table td::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 1px;
    width: 36px;
    border-bottom: 1px solid #dde3eb;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.wptb-table-container table th:last-child::after,
.wptb-table-container table td:last-child::after {
    border: 0;
}

.wptb-preview-table tr:nth-of-type(2n+1),
.wptb-table-container table.wptb-preview-table-mobile tr td:nth-of-type(2n+1) .wptb-table-container table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.wptb-table-container table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.wptb-preview-table tr:nth-of-type(2n+1),
.wptb-table-container table.wptb-preview-table-mobile tr td:nth-of-type(2n+1) {
    background-color: #fff !important;
}

/* Accordion */
.wp-block-aab-accordion-block {
    border: 0 !important;
    padding: 32px 16px 32px;
}

.wp-block-aab-accordion-block .accordion-body {
    padding: 32px 0 0;
}

.wp-block-aab-accordion-block .dashicons.dashicons-plus-alt2::after {
    content: url('../images/items/down-faq.svg');
}

.wp-block-aab-accordion-block .dashicons.dashicons-minus::after {
    content: url('../images/items/up-faq.svg');
}

.accordion-item {
    border: 0;
}

.accordion-item h2.accordion-header {
    margin: 0;
}

.accordion-item h2.accordion-header button {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    background: #f4f7f9;
    padding: 32px 32px 0;
    margin-top: 32px;
}

.accordion-item h2.accordion-header button.collapsed {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    background: #fff;
    margin-top: 0;
}

.accordion-item .accordion-collapse {
    background: #f4f7f9;
}

.accordion-item .accordion-collapse.show {
    background: #f4f7f9;
}

.accordion-item h2.accordion-header button.accordion-button::after {
    background-image: url('../images/items/icons/accordion/arrow-down.svg');
}

.accordion-item h2.accordion-header button.accordion-button:not(.collapsed)::after {
    background-image: url('../images/items/icons/accordion/arrow-up.svg');
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.accordion-button:focus {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-body {
    padding: 32px 16px 32px;
}

/*BLOCK*/
.wp-block-aab-accordion-block {
    border-top: 1px solid #f00;
    margin: 0 auto !important;
}

.wp-block-aab-accordion-block .accordion-head {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}

.wp-block-aab-accordion-block .accordion-head h1 {
    margin: 0 !important;
}

.wp-block-aab-accordion-block .accordion-head h2 {
    margin: 0 !important;
}

.wp-block-aab-accordion-block .accordion-head h3 {
    margin: 0 !important;
}

.wp-block-aab-accordion-block .accordion-head h4 {
    margin: 0 !important;
}

.wp-block-aab-accordion-block .accordion-head h5 {
    margin: 0 !important;
}

.wp-block-aab-accordion-block .accordion-body {
    padding: 15px 0;
}

.wp-block-aab-accordion-block .dashicons {
    display: block;
}

.wp-block-aab-accordion-block .accordion-heading {
    -ms-flex: auto;
    -webkit-box-flex: 1;
    flex: auto;
}

.wp-block-aab-accordion-block .accordion-body {
    display: none;
}

.wp-block-aab-accordion-block .accordion-body.active {
    display: block !important;
}

/* TABLES */
.wp-block-table {
    overflow-x: auto;
}

.single-content table {
    width: 100%;
    margin-bottom: 50px;
    min-width: auto !important;
    display: block !important;
}

.single-content table th,
.single-content table td {
    padding: 24px 24px;
    position: relative;
    min-width: 160px;
}

.single-content table th::after,
.single-content table td::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    height: 1px;
    width: 42px;
    border-bottom: 1px solid #dde3eb;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.single-content table th:last-child::after,
table td:last-child::after {
    border: 0;
}

.single-content table tbody {
    border: 1px solid #dde3eb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.single-content table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.single-content table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content table td:last-child::after {
    border: 0;
}

.single-content .style1 table {
    width: 100%;
    margin-bottom: 50px;
    min-width: auto !important;
    display: block !important;
}

.single-content .style1 table th,
.single-content .style1 table td {
    padding: 24px 24px;
    position: relative;
    min-width: 160px;
}

.single-content .style1 table th::after,
.single-content .style1 table td::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    height: 1px;
    width: 42px;
    border-bottom: 1px solid #dde3eb;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.single-content .style1 table th:last-child::after,
.single-content .style1 table td:last-child::after {
    border: 0;
}

.single-content .style1 table tbody {
    border: 1px solid #dde3eb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.single-content .style1 table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.single-content .style1 table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content .style1 table td:last-child::after {
    border: 0;
}

.single-content .style2 table {
    width: 100%;
    margin-bottom: 50px;
    min-width: auto !important;
    display: block !important;
}

.single-content .style2 table th {
    border: 1px solid #dde3eb;
    padding: 17px 33px 15px;
}

.single-content .style2 table td {
    padding: 32px 35px 0;
}

.single-content .style2 table tr:last-child td {
    padding-bottom: 32px;
}

.single-content .style2 table th,
.single-content .style2 table td {
    position: relative;
    min-width: 160px;
    border-right: 1px solid #dde3eb;
}

.single-content .style2 table th::after,
.single-content .style2 table td::after {
    content: '';
    position: relative;
    border-bottom: none;
}

.single-content .style2 table th:last-child::after,
.single-content .style2 table td:last-child::after {
    border: 0;
}

.single-content .style2 table tbody {
    border: 1px solid #dde3eb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #f4f7f9;
    padding: 16px 0;
}

.single-content .style2 table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.single-content .style2 table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content .style2 table td:last-child::after {
    border: 0;
}

.single-content .style3 table {
    width: 100%;
    margin-bottom: 50px;
    min-width: auto !important;
    display: block !important;
}

.single-content .style3 table th {
    position: relative;
    min-width: 160px;
    border-right: none;
    border-left: none;
    border: 1px solid #dde3eb;
    border-right: none;
    border-left: none;
    padding: 17px 33px 15px;
    background-color: #fff;
}

.single-content .style3 table th:last-child {
    border-right: 1px solid #dde3eb;
}

.single-content .style3 table th:first-child {
    border-left: 1px solid #dde3eb;
}

.single-content .style3 table td {
    padding: 15px 32px;
}

.single-content .style3 table td {
    position: relative;
    min-width: 160px;
    border-right: 1px solid #dde3eb;
}

.single-content .style3 table th::after,
.single-content .style3 table td::after {
    content: '';
    position: relative;
    border-bottom: none;
}

.single-content .style3 table thead {
    padding: 16px 0;
    -webkit-box-shadow: 0px 0px 22px -2px #d7e5ef;
    box-shadow: 0px 0px 22px -2px #d7e5ef;
}

.single-content .style3 table tbody {
    border: 1px solid #dde3eb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 0;
    -webkit-box-shadow: -2px 0px 22px 0px #d7e5ef;
    box-shadow: -2px 0px 22px 0px #d7e5ef;
}

.single-content .style3 table tbody tr:nth-child(odd) {
    background-color: #f4f7f9;
}

.single-content .style3 table tbody tr:nth-child(even) {
    background-color: #fff;
}

.single-content .style3 table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.single-content .style3 table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content .style3 table td:last-child::after {
    border: 0;
}

.single-content .style4 table {
    width: 100%;
    margin-bottom: 50px;
    min-width: auto !important;
    display: block !important;
}

.single-content .style4 table th {
    position: relative;
    min-width: 160px;
    border-right: none;
    border-left: none;
    border: 1px solid #dde3eb;
    border-right: none;
    border-left: none;
    padding: 17px 33px 15px;
    background-color: #fff;
}

.single-content .style4 table th:last-child {
    border-right: 1px solid #dde3eb;
}

.single-content .style4 table th:first-child {
    border-left: 1px solid #dde3eb;
}

.single-content .style4 table td {
    padding: 15px 32px;
}

.single-content .style4 table td {
    position: relative;
    min-width: 160px;
    border-right: 1px solid #dde3eb;
}

.single-content .style4 table th::after,
.single-content .style4 table td::after {
    content: '';
    position: relative;
    border-bottom: none;
}

.single-content .style4 table tbody {
    border: 1px solid #dde3eb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 0;
}

.single-content .style4 table tbody tr:nth-child(odd) {
    background-color: #f4f7f9;
}

.single-content .style4 table tbody tr:nth-child(even) {
    background-color: #fff;
}

.single-content .style4 table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.single-content .style4 table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content .style4 table td:last-child::after {
    border: 0;
}

.single-content .style5 table {
    width: 100%;
    margin-bottom: 50px;
    min-width: auto !important;
    display: block !important;
}

.single-content .style5 table th {
    position: relative;
    min-width: 160px;
    border-right: none;
    border-left: none;
    border: 1px solid #dde3eb;
    border-right: none;
    border-left: none;
    padding: 17px 33px 15px;
    background-color: #dde3eb;
}

.single-content .style5 table th:last-child {
    border-right: 1px solid #dde3eb;
}

.single-content .style5 table th:first-child {
    border-left: 1px solid #dde3eb;
}

.single-content .style5 table td {
    padding: 15px 32px;
}

.single-content .style5 table td {
    position: relative;
    min-width: 160px;
    border-right: 1px solid #dde3eb;
}

.single-content .style5 table th::after,
.single-content .style5 table td::after {
    content: '';
    position: relative;
    border-bottom: none;
}

.single-content .style5 table tbody {
    border: 1px solid #dde3eb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 0;
}

.single-content .style5 table tbody tr:nth-child(odd) {
    background-color: #f4f7f9;
}

.single-content .style5 table tbody tr:nth-child(even) {
    background-color: #fff;
}

.single-content .style5 table th {
    font-weight: 700;
    font-size: 13px;
    line-height: 145%;
    color: #333333;
}

.single-content .style5 table td {
    font-weight: 500;
    font-size: 15px;
    line-height: 135%;
    color: #000000;
}

.single-content .style5 table td:last-child::after {
    border: 0;
}

.single-content img {
    height: auto;
}

@media only screen and (min-device-width: 1365px) and (max-device-width: 1480px) {

    .table-content-btn[aria-expanded='false'],
    .table-content-btn[aria-expanded='true'] {
        font-size: 14px;
    }
}

/* Sidebar banner */
.sidebar-banner img {
    max-width: 100%;
    height: 100%;
    border-radius: 4px;
}

.sidebar-banner-mobile img {
    display: block;
    margin: auto;
}

.sidebar-banner-mobile.banner-responsive img {
    width: 100%;
}

.sidebar-banner-desktop {
    max-width: 240px;
    max-height: 400px;
}

.single .author,
.page .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 48px;
}

@media (min-width: 992px) {

    .single .author,
    .page .author {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 72px;
    }
}

.single .author__intro,
.page .author__intro {
    padding: 45px 30px 28px 30px;
    background: #ff3c32;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 375px) {

    .single .author__intro,
    .page .author__intro {
        padding: 45px 56px 28px 56px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {

    .single .author__intro,
    .page .author__intro {
        gap: 12px;
        padding: 68px 32px 37px 32px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 192px;
    }
}

.single .author__intro::after,
.page .author__intro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 40px solid #fff;
    border-left: 40px solid transparent;
}

@media (min-width: 992px) {

    .single .author__intro::after,
    .page .author__intro::after {
        width: 31px;
        height: 31px;
        border: none;
        border-top: 31px solid #fff;
        border-right: 31px solid transparent;
        left: 0;
        right: auto;
    }
}

.single .author__image,
.page .author__image {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (min-width: 992px) {

    .single .author__image,
    .page .author__image {
        max-width: 128px;
    }
}

.single .author__image>img,
.page .author__image>img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    border: 2.125px solid #fff;
    margin-bottom: 0;
}

.single .author__icon,
.page .author__icon {
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single .author__icon img,
.page .author__icon img {
    width: 94px;
}

.single .author__name,
.page .author__name {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

@media (min-width: 992px) {

    .single .author__name,
    .page .author__name {
        text-align: center;
        font-size: 18px;
        line-height: 100%;
    }
}

.single .author__background,
.page .author__background {
    position: absolute;
    z-index: 1;
}

.single .author__background-color,
.page .author__background-color {
    left: -64px;
    bottom: -38px;
}

@media (min-width: 992px) {

    .single .author__background-color,
    .page .author__background-color {
        left: -62px;
        bottom: -32px;
    }

    .single .author__background-color img,
    .page .author__background-color img {
        width: 130px;
    }
}

.single .author__background-white,
.page .author__background-white {
    right: -0px;
    bottom: -32px;
}

.single .author__background-white img,
.page .author__background-white img {
    width: 130px;
}

.single .author__info,
.page .author__info {
    position: relative;
    padding: 20px 20px 32px 20px;
    background: #f4f7f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 992px) {

    .single .author__info,
    .page .author__info {
        padding: 30px 50px 30px 22px;
        gap: 26px;
    }
}

.single .author__link,
.page .author__link {
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-color: #ff3c32;
    text-decoration-color: #ff3c32;
    text-underline-offset: 3px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.single .author__description,
.page .author__description {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    position: relative;
    z-index: 2;
}

.scroll-to-top__btn {
    position: fixed;
    top: 136px;
    right: calc(10% - 80px);
    cursor: pointer;
    z-index: 10000;
    border-radius: 50%;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    transform: translateY(-200px);
    outline: none !important;
}

@media (max-width: 1439px) {
    .scroll-to-top__btn {
        right: calc(7% - 80px);
    }
}

@media (max-width: 1365px) {
    .scroll-to-top__btn {
        display: none !important;
    }
}

.scroll-to-top__btn.scroll-to-top__btn-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.scroll-to-top__btn svg rect:nth-child(2) {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-to-top__btn:hover {
    text-decoration: none;
}

.scroll-to-top__btn:hover svg rect:nth-child(2) {
    fill: #ff3c32;
}

.scroll-to-top__btn:active svg rect:nth-child(2) {
    fill: #ff3c32;
}

.single-blog .author-bio {
    display: none;
}

@media (max-width: 767px) {
    .single-blog .author-bio {
        display: grid;
        margin-bottom: 28px;
    }
}

.sidebar .author-bio {
    display: grid;
    max-width: 240px;
}

.sidebar .author-bio .author-bio__description,
.sidebar .author-bio .author-bio__description * {
    font-size: 10px;
    line-height: 14px;
}

@media (max-width: 767px) {
    .sidebar .author-bio {
        display: none;
    }
}

.author-bio {
    display: grid;
    grid-template-columns: 64px auto;
    gap: 10px;
}

.author-bio .author-bio__image {
    width: 64px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.author-bio .author-bio__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.author-bio .author-bio__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    min-height: 64px;
}

.author-bio .author-bio__name {
    color: var(--black, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}

.author-bio .author-bio__description,
.author-bio .author-bio__description * {
    color: var(--gray, #828282);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 0;
}

/* Custom embed */
.custom-embed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 32px 0;
    padding: 25px;
    background: #fff;
    border: 1px solid #dcdcde;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
            box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.custom-embed__title h3 {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
}

.custom-embed__title a {
    color: #2c3338;
    text-decoration: none;
}

.custom-embed__title a:hover {
    color: #2c3338;
    text-decoration: underline;
}

.custom-embed__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

@media (min-width: 576px) {
    .custom-embed__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.custom-embed__image-link {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.custom-embed__image-link img {
    width: 100%;
    height: auto;
    margin: 0;
}

@media (min-width: 576px) {
    .custom-embed__image-link img {
        max-width: 160px;
    }
}

.custom-embed__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #646970;
}

.custom-embed__text p {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #646970;
}

.custom-embed__text p:first-child {
    margin: 0;
}

.custom-embed__text a {
    color: #2271b1;
    text-decoration: underline;
}

.custom-embed__text a:hover {
    color: #2271b1;
}

.custom-embed__read-more {
    color: #2271b1;
    text-decoration: underline;
}

.custom-embed__bottom a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-decoration: none;
}

.custom-embed__bottom a:hover {
    text-decoration: none;
}

.custom-embed__bottom a:hover span {
    text-decoration: underline;
}

.custom-embed__bottom img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
}

.custom-embed__bottom span {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #646970;
}