/*
Theme Name: Suntara Media App
Description: A Template for Suntara Media App Website.
Author: Suntara Media
Theme URI: http://app.suntara.net
Author URI: http://papp.suntara.net
Version: 1.0.0
License: Private Licence
License URI: -
Text Domain: Suntara.Net
-----------------------------------------------------------------------------*/

:root {
    --font-family: 'Segoe UI Variable Display', 'Segoe UI', 'Open Sans', sans-serif;
    --bar-height: 62px;
    --border-radius: 5px;
    --box-shadow: 2px 2px 10px rgba(0 0 0 / 15%);
    --layout-space: 15px;
    --layout-content-space: 25px
}

@media screen and (max-width: 1480px) {
     :root {
        --layout-content-space: 15px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

ul,
ol {
    list-style: none;
}

body {
    padding: 0;
    margin: 0;
    --color-background: #fff;
    background: var(--color-background);
    color: #000;
    font-size: 16px;
    line-height: 1.5em;
    font-family: var(--font-family);
    --color-primary: #009688;
    --color-primary-light: #80cbc4;
    --color-primary-dark: #00695c;
    --color-primary-dl: var(--color-primary-dark);
    --color-primary-ld: var(--color-primary-light);
    --color-secondary: #4caf50;
    --color-secondary-light: #81c784;
    --color-secondary-dark: #2e7d32;
    --color-secondary-dl: var(--color-secondary-dark);
    --color-secondary-ld: var(--color-secondary-light);
    --color-tagline: var(--color-secondary-dark);
    --color-light-gray: #ddd;
    --color-bright-gray: #fafafa;
    --text-color: #222;
    --text-color-gray: #585858;
    --text-background: #fff;
    --btn-color: #fff;
    --btn-background: var(--color-primary);
    --hover-background: rgba(0 62 146 / 10%);
    --navbar-background: rgba(240 240 240 / 1);
    --navbar-menu-background: rgba(240 240 240 / 0.99);
}

body.dark-theme {
    --color-background: rgba(38 38 38 / 1);
    background: var(--color-background);
    color: #fff;
    --color-primary-dl: var(--color-primary-light);
    --color-primary-ld: var(--color-primary-dark);
    --color-secondary-dl: var(--color-secondary-light);
    --color-secondary-ld: var(--color-secondary-dark);
    --color-tagline: var(--color-secondary-light);
    --color-light-gray: #555;
    --color-bright-gray: #333;
    --navbar-background: #181a20;
    --navbar-menu-background: #1e2329;
    --hover-background: rgba(255 255 255 / 10%);
    --text-color: #fff;
    --text-color-gray: #b2b2b2;
    --text-background: #555;
    --btn-color: #fff;
    --btn-background: rgba(255 255 255 / 30%);
}

body.preload * {
    animation-duration: 0s !important;
    -webkit-animation-duration: 0s !important;
    transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;
}

.dark-theme img {
    filter: brightness(0.85);
    transition: filter 0.3s;
}

a {
    color: var(--color-primary);
    transition: color 0.3s;
}

.u-centered {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.full-width .u-centered {
    max-width: 1960px;
}

.hidden-header {
    display: none;
}

i.material-icons,
svg {
    vertical-align: middle;
    font-size: 24px;
}

.margin-top {
    margin-top: var(--layout-content-space);
}

.margin-bottom {
    margin-bottom: var(--layout-content-space);
}

.margin-left {
    margin-left: var(--layout-content-space);
}

.margin-right {
    margin-right: var(--layout-content-space);
}

.with-border {
    border: 1px solid var(--color-light-gray);
}

.with-rounded {
    border-radius: var(--border-radius);
}


/***** Navigation Section ******/

.navbar {
    background: var(--navbar-background);
    width: 100%;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    transition: background 0.15s ease;
    position: relative;
}

.navbar__wrapper {
    position: relative;
    display: flex;
    height: var(--bar-height);
    align-items: center;
    justify-content: space-between;
}

.navbar__content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 11px var(--layout-space);
}

.navbar__main-menu {
    margin-left: 80px;
    display: flex;
    height: var(--bar-height);
    z-index: 1;
}

.navbar__logo {
    height: 30px;
    width: 130px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://pcnight.com/wp-content/themes/mytheme/assets/img/logo.svg);
}

.dark-theme .navbar__logo {
    background-image: url(https://pcnight.com/wp-content/themes/mytheme/assets/img/logo-white.svg);
}

.navbar__main-menu li {
    list-style: none;
    line-height: var(--bar-height);
    padding: 0 2px;
}

.navbar__main-menu li a {
    color: var(--text-color);
    padding: 8px 17px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.navbar__main-menu li a:hover {
    background: var(--hover-background);
}

.navbar__wrapper .search-icon,
.navbar__wrapper .menu-icon,
.navbar__wrapper .btn-theme-toggle {
    cursor: pointer;
    line-height: calc(var(--bar-height) - 20px);
    width: calc(var(--bar-height) - 20px);
    transition: background 0.3s ease;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.navbar__wrapper .search-icon path,
.navbar__wrapper .menu-icon path,
.navbar__wrapper .btn-theme-toggle path {
    fill: var(--text-color)
}

.navbar__wrapper .search-icon:hover,
.navbar__wrapper .menu-icon:hover,
.navbar__wrapper .btn-theme-toggle:hover {
    background: var(--hover-background);
}

.navbar__wrapper .navbar__right,
.navbar__wrapper .menu-icon {
    margin: 0 var(--layout-space);
}

@media screen and (max-width: 350px) {
    .navbar__wrapper .btn-theme-toggle {
        display: none;
    }
    .navbar__wrapper .navbar__right,
    .navbar__wrapper .menu-icon {
        margin: 0 5px;
    }
}

.navbar__right {
    display: flex;
}

.navbar__wrapper .btn-theme-toggle {
    border: none;
    background: none;
    position: relative;
    overflow: hidden;
}

.navbar__wrapper .btn-theme-toggle svg {
    transition: transform 0.3s ease-in-out;
    position: absolute;
}


/** Light Mode **/

.navbar__wrapper .btn-theme-toggle svg.icon-light-mode {
    transform: none;
}

.navbar__wrapper .btn-theme-toggle svg.icon-dark-mode {
    transform: translateY(42px) rotate(90deg);
}


/** Dark Mode **/

.dark-theme .navbar__wrapper .btn-theme-toggle svg.icon-light-mode {
    transform: translateY(42px) rotate(90deg);
}

.dark-theme .navbar__wrapper .btn-theme-toggle svg.icon-dark-mode {
    transform: none;
}

.navbar__wrapper .menu-icon {
    display: none;
}

.navbar__wrapper .search-icon svg.icon-search {
    display: inline;
}

.navbar__wrapper .search-icon svg.icon-close {
    display: none;
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon svg.icon-search {
    display: none;
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon svg.icon-close {
    display: inline;
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon {
    background: var(--btn-background);
    box-shadow: var(--box-shadow);
    color: var(--btn-color);
}

.navbar__wrapper #show-search:checked~.navbar__right .search-icon path {
    fill: var(--btn-color);
}

.navbar__wrapper .search-box {
    position: absolute;
    right: calc(var(--bar-height) - 10px);
    height: 100%;
    max-width: calc(100% - var(--bar-height));
    width: 350px;
    opacity: 0;
    pointer-events: none;
}

.navbar__wrapper .search-icon svg.icon-close {
    display: none;
}

.navbar__wrapper #show-search:checked~.search-box {
    opacity: 1;
    padding: 10px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: 1px solid var(--hover-background);
    border-radius: var(--border-radius);
    outline: none;
    font-size: 17px;
    color: var(--text-color);
    background: var(--text-background);
    /*background: var(--color-primary-dark);*/
    padding: 0 100px 0 15px;
    font-family: var(--font-family);
    box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
}

.search-box input::placeholder {
    color: #AAAAAA;
}

.search-box .go-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    line-height: calc(var(--bar-height) - 30px);
    width: calc(var(--bar-height) - 30px);
    background: var(--btn-background);
    border: none;
    outline: none;
    color: var(--btn-color);
    font-size: 0;
    cursor: pointer;
    border-radius: 3px;
}

.navbar__wrapper input[type="checkbox"] {
    display: none;
}


/* Dropdown Menu code start */

.navbar__main-menu ul {
    position: absolute;
    background: var(--navbar-menu-background);
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    backdrop-filter: blur(2rem);
}

.navbar__main-menu svg {
    display: inline-block;
    width: 14px;
    height: 14px;
}

.navbar__main-menu svg path {
    fill: var(--text-color);
}

.navbar__main-menu ul:before {
    content: ' ';
    height: 9px;
    margin-top: -9px;
    display: block;
}

.navbar__main-menu li:hover>ul {
    top: calc(var(--bar-height) + 4px);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    border: 1px solid var(--hover-background);
}

.navbar__main-menu ul li a {
    display: block;
    width: 100%;
    line-height: 1em;
    border-radius: 4px;
}

.navbar__main-menu ul {
    padding: 4px;
    box-shadow: var(--box-shadow);
    min-width: 200px;
}

.navbar__main-menu ul ul {
    position: absolute;
    top: 20px;
    left: calc(100% - 5px);
    width: max-content;
    z-index: 1;
}

.navbar__main-menu ul li {
    position: relative;
    padding: 1px;
}

.navbar__main-menu ul li:hover>ul {
    top: 0;
}

.navbar__main-menu li.menu-item-has-children>a svg {
    margin-left: 5px;
}

.navbar__main-menu li.menu-item-has-children>a i::after {
    content: '\e5cf';
}

.navbar__main-menu ul.sub-menu li.menu-item-has-children>a svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%) rotate(-90deg);
}

.navbar__main-menu ul.sub-menu li.menu-item-has-children>a i::after {
    content: '\e409';
}


/* Responsive code start */

@media screen and (max-width: 1260px) {
    .navbar__wrapper nav {
        max-width: 100%;
    }
    .navbar__main-menu {
        margin-left: 30px;
    }
    .navbar__main-menu li a {
        padding: 8px 13px;
    }
    .navbar__wrapper .search-box {
        max-width: calc(100% - var(--bar-height));
    }
    .navbar__wrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

@media screen and (max-width: 945px) {
    .navbar__wrapper .menu-icon {
        display: flex;
    }
    .navbar__wrapper .menu-icon svg.icon-close {
        display: none;
    }
    .navbar__wrapper .menu-icon svg.icon-menu {
        display: inline;
    }
    .navbar__wrapper #show-menu:checked~.menu-icon svg.icon-close {
        display: inline;
    }
    .navbar__wrapper #show-menu:checked~.menu-icon svg.icon-close path {
        display: inline;
        fill: #fff;
    }
    .navbar__wrapper #show-menu:checked~.menu-icon svg.icon-menu {
        display: none;
    }
    .navbar__wrapper #show-menu:checked~.menu-icon {
        background: var(--color-primary);
        box-shadow: var(--box-shadow);
    }
    .navbar__main-menu {
        display: block;
        position: absolute;
        background: var(--color-primary-dark);
        height: 100vh;
        width: 100%;
        top: var(--bar-height);
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }
    nav #show-menu:checked~.navbar__content .navbar__main-menu {
        left: 0%;
    }
    .navbar__main-menu li {
        margin: 0 10px;
    }
    .navbar__main-menu li a {
        line-height: 40px;
        font-size: 20px;
        display: block;
        padding: 10px 15px 10px 52px;
        cursor: pointer;
        position: relative;
        border-bottom: 1px solid rgba(0 0 0 / 10%);
        border-radius: 0;
        color: #fff;
    }
    .navbar__main-menu li a path {
        fill: #fff;
    }
    /* dropdown responsive code start */
    .navbar__main-menu ul,
    .navbar__main-menu ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
        border: none;
        width: 100%;
    }
    .navbar__main-menu li:hover>ul {
        border: none;
    }
    .navbar__main-menu .active>ul {
        max-height: 100vh;
    }
    .navbar__main-menu ul li {
        margin: 0 0 0 20px;
    }
    .navbar__main-menu ul li a {
        line-height: 30px;
        border-radius: 5px!important;
    }
    .navbar__main-menu li.menu-item-has-children>a svg {
        width: 48px;
        height: 48px;
        padding: 10px;
        position: absolute;
        transition: all 0.3s ease;
        transform: rotate(-90deg);
    }
    .navbar__main-menu li.menu-item-has-children>a svg,
    .navbar__main-menu ul.sub-menu li.menu-item-has-children>a svg {
        left: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
    }
    .navbar__main-menu li.menu-item-has-children.active>a svg,
    .navbar__main-menu ul.sub-menu li.menu-item-has-children.active>a svg {
        transform: translateY(-50%) rotate(0deg);
    }
    .navbar__main-menu li.menu-item-has-children>a i::after {
        content: '\e409';
    }
}

@media screen and (max-width: 400px) {
    .content .logo a {
        font-size: 27px;
    }
    .navbar__wrapper .search-box {
        max-width: calc(100% - var(--bar-height));
    }
    .navbar__wrapper .search-box .go-icon {
        width: 30px;
    }
    .navbar__wrapper .search-box input {
        padding-right: 30px;
    }
}


/***** End Navigation Section ******/


/***** Main Layout *******/

.section-body__container,
.section-body__main-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: var(--layout-space);
}

.section-header,
.section-body,
.section-footer {
    margin: var(--layout-content-space) auto;
}

.section-header.back-color,
.section-footer.back-color {
    background: var(--color-light-gray);
}

.section-header.no-margin,
.section-footer.no-margin {
    margin: 0;
}

.section-header.pad,
.section-footer.pad {
    padding: var(--layout-content-space) 0;
}

.section-header__container,
.section-footer__container,
.section-body__container {
    margin: 0 var(--layout-space);
}

.section-body__main-content {
    order: 1;
    max-width: 100%;
}

.section-body__aside {
    order: 2;
}

.section-body__main-aside,
.section-body__aside {
    flex: 1;
    max-width: 100%;
}

.section-body__main-aside img {
    max-width: 100%;
    height: auto;
}

.section-body__main-aside img.post-thumbnail {
    border-radius: var(--border-radius);
}

.ads-wrapper {
    text-align: center;
}

@media all and (min-width: 645px) {}

@media all and (max-width: 945px) {
    .section-body__main {
        flex: none;
        width: 100%;
    }
    .section-body__main-container {
        flex-direction: column;
    }
    .ads-wrapper {
        width: 100%;
    }
}

@media all and (min-width: 945px) {
    .section-body__main,
    .section-body__main-content {
        flex: 1;
        width: 600px;
    }
    .section-body__main-aside {
        flex: 100%;
    }
    .section-body__aside {
        width: 300px;
        flex: none;
    }
    .section-body__main-content {
        width: 600px;
    }
}

@media all and (min-width: 1260px) {
    .section-body__main-aside {
        flex: none;
        width: 300px;
    }
}

@media all and (min-width: 1480px) {
    .section-body__container,
    .section-body__main-container {
        column-gap: calc(var(--layout-space) + 10px);
    }
}


/***** End Main Layout *******/


/************ Wordpress Default ******************/

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}


/************ End Wordpress Applied **************/


/************ Main Content Styling section__main *********/

.section-header h1 {
    font-size: 40px;
    margin: 0;
    line-height: 1.2em;
}

.section-header .tagline {
    color: var(--color-tagline);
}

.section-header .summary {
    font-size: 22px;
    line-height: 1.4em;
    letter-spacing: -.5px;
    color: var(--text-color-gray);
    margin-bottom: 10px;
}

@media (max-width: 960px) {
    .section-header h1 {
        font-size: 36px;
    }
    .section-header .summary {
        font-size: 20px;
    }
}

@media (max-width: 630px) {
    .section-header h1 {
        font-size: 26px;
    }
    .section-header .summary {
        font-size: 16px;
    }
    .section-header .tagline {
        font-size: 14px;
    }
}

.section-header .byline {
    height: 32px;
    border-top: 1px solid var(--color-light-gray);
    font-size: 11px;
    color: var(--text-color-gray);
}

.section-header .byline span {
    display: inline-block;
    margin-right: 5px;
}

.section-header .byline .author a {
    text-transform: uppercase;
    color: var(--text-color-gray);
}

.section-header .byline .author a:hover {
    color: var(--color-primary-light);
}


/*========= Styling Content ==========*/

.style {
    --margin-bottom: 16px;
}

.style a:hover {
    border-bottom: 2px solid var(--color-primary);
}

.dark-theme .style a {
    color: var(--color-primary-light);
    transition: color 0.3s;
}

.dark-theme .style a:hover {
    border-bottom: 2px solid var(--color-primary-light);
}

.style table a:hover,
.dark-theme .style table a:hover {
    border-bottom: none;
}

.style img {
    display: block;
    max-width: 100%;
    height: auto;
}

.style .wp-block-image {
    margin-bottom: var(--margin-bottom);
    position: relative;
}

.style .wp-block-image figcaption {
    padding: 0 10px;
    text-align: center;
    font-size: 12px;
    color: var(--text-color);
    /*     
    margin: 0;
    background: linear-gradient(to bottom right, rgba(255 255 255 / 60%), rgba(255 255 255 / 80%));
    position: absolute;
    left: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    border-radius: 0 var(--border-radius) 0 0;
    */
}

.style p,
.style h2,
.style h3,
.style h4,
.style h5 {
    margin: var(--margin-bottom) 0;
}

.style h2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
    margin-top: 1.625rem;
}

.style h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-top: 1.625rem;
}

.style h4 {
    font-size: 1.225rem;
    line-height: 1.4375rem;
    margin-top: 1.625rem;
}

.style ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.style ol ol {
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.style ol li {
    padding-left: 3px;
    margin: 5px 0;
    position: relative;
}

.style ol li::marker {
    font-weight: bold;
}

.style ol li a,
.dark-theme .style ol li a {
    color: var(--text-color);
    border-bottom: 2px solid var(--color-primary-ld);
    transition: border 0.3s;
}

.style ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.style ul ul {
    list-style-type: circle;
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.style li img {
    margin: var(--layout-space) 0;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-light-gray);
}


/************ Footer Styling section__main *********/

#footer {
    background: #181a20;
    padding: 50px 0 35px;
    color: #999;
    box-shadow: 0 200px 0 #000;
    font-size: 14px;
}

.footer__container {
    padding: 0 var(--layout-space);
}

.footer__main {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--layout-space);
}

.footer-logo {
    margin-bottom: 5px;
}

@media all and (min-width: 945px) {
    .footer__col {
        flex: 1;
    }
}

.footer__menu {
    display: flex;
    column-gap: 15px;
    justify-content: flex-start;
    margin: var(--layout-space) 0;
}

.footer__menu ul {
    list-style: none;
    margin-right: 10px;
    padding-left: 0;
    line-height: 2em;
}

.footer__menu li a {
    color: #fff;
    font-weight: 500;
}

.footer__menu li a:hover {
    color: #aaa;
}

#footer h3 {
    font-size: 17px;
    font-weight: bold;
    color: #999;
    margin: 0;
    padding: 0;
    clear: both;
    line-height: 1em;
}

#footer .copyright {
    color: #f1f1f1;
    margin: 30px 0 10px 0;
    text-align: left;
}

#footer .social {
    display: flex;
}

#footer .social span {
    font-size: 18px;
    display: inline-block;
    margin-right: 5px;
    line-height: 26px;
    color: #eee;
}

#footer .social svg {
    width: 26px;
    height: 26px;
    text-align: center;
    background: #eee;
    margin-left: 8px;
    border-radius: 50%;
    padding: 4px;
}

#footer .social svg:hover {
    color: #000;
    background: #fff;
}

#footer .social i:hover {
    color: #000;
    background: #fff;
}

#footer-disclaimer {
    padding: 5px 0;
    border-top: 1px solid #555;
}


/************ End Footer Stying ***********/


/************ Widget Section *************/

.widget {
    margin-bottom: 20px;
    text-align: center;
}

.widget.sticky {
    position: sticky;
    top: var(--layout-space);
    margin-bottom: 0;
}

.widget .widget__container {
    text-align: left;
}

.widget.basic .widget__header,
.section__header {
    border-bottom: 3px solid var(--color-primary);
    height: 30px;
}

.widget.basic .widget__header h4,
.section__header h2,
.section__header h3 {
    background: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    font-size: 14px;
    color: #fff;
    height: 28px;
    line-height: 28px;
    display: inline-block;
    padding: 0 10px;
    position: relative;
    text-shadow: -1px 1px 0px var(--color-primary-dark);
    border-radius: var(--border-radius) 0 0 0;
    margin: 0;
}

.widget.basic .widget__header h4:after,
.section__header h2:after,
.section__header h3:after {
    content: " ";
    border: 28px solid transparent;
    border-right: 1px none #000;
    border-left-width: 20px;
    border-left-color: var(--color-primary-dark);
    position: absolute;
    top: 0;
    z-index: -10;
    right: -20px;
    border-bottom: none;
}

.widget.basic .widget__content.pad {
    padding: 5px;
}

.widget.basic .widget__content.border {
    border: 1px solid var(--color-light-gray);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 1px 0 rgba(128 128 128 / 40%);
    overflow: hidden;
}


/*** Section ***/

.section-body .section__content {
    padding: var(--layout-content-space) 0;
}


/************ End Widget Section *************/


/************ Table of Content **************/

.widget.accordion {
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(128 128 128 / 40%);
}

#show-toc {
    display: none;
}

.widget.accordion .widget__header {
    background: var(--navbar-background);
    display: flex;
    justify-content: space-between;
    height: 36px;
    border-bottom: 1px solid var(--color-light-gray);
}

.widget.accordion .widget__header h4 {
    line-height: 36px;
    padding: 0 10px
}

.widget.accordion .widget__header .toc-icon {
    border-left: 1px solid var(--color-light-gray);
    padding: 3px;
}

.widget.accordion .widget__header .toc-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
    transform: rotate(-90deg);
}

.dark-theme .widget.accordion .widget__header .toc-icon svg path {
    fill: #fff;
}

.widget.accordion #show-toc:checked~.widget__header .toc-icon svg {
    width: 28px;
    height: 28px;
    transform: rotate(0deg);
}

.widget.accordion .widget__content {
    transition: max-height 0.5s ease-out;
    max-height: 0;
}

.widget.accordion #show-toc:checked~.widget__content {
    max-height: 250px;
    transition: max-height 0.5s ease-in;
    overflow-y: auto;
}

.widget.accordion .widget__content .widget.accordion .widget__content>ul {
    padding: 5px;
}

.widget.accordion .widget__content ul li {
    margin-left: 10px;
}

.toc-nav a {
    display: block;
    padding: 5px;
    color: var(--text-color-gray);
    transition: color 0.3s, padding 0.3s;
    position: relative;
    line-height: 1.25em;
}

.toc-nav a.active {
    color: var(--text-color);
    font-weight: 500;
    padding-left: 8px;
}

.toc-nav a:before {
    transition: height 0.3s;
    height: 0;
    content: ' ';
}

.toc-nav a.active:before {
    content: ' ';
    width: 3px;
    height: calc(100% - 12px);
    background: var(--color-primary);
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 2px;
}

.toc-nav a:hover {
    color: var(--color-primary);
}

@media all and (max-width: 1260px) {
    /*    .widget.widget.accordion {
        margin-bottom: 0;
    }*/
    .toc-nav a {
        white-space: normal;
    }
}


/************ Small Thumb List Variation *************/

ul.list__small-thumb li {
    padding: 5px;
    border-bottom: 1px solid var(--color-light-gray);
}

ul.list__small-thumb li a {
    display: flex;
    column-gap: 10px;
}

ul.list__small-thumb li:last-child {
    border-bottom: none;
}

ul.list__small-thumb .post-image img {
    width: 100px;
    height: auto;
    transition: filter 0.3s;
}

ul.list__small-thumb .post-content {
    flex: 1;
    line-height: 1.2em;
}

ul.list__small-thumb .post-content h4 {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s;
}

ul.list__small-thumb li a:hover img {
    filter: brightness(1.1);
}

ul.list__small-thumb li a:hover h4 {
    color: var(--color-primary);
}


/************ End Small Thumb List Variation *************/


/************ Medium Thumb List Variation *************/

ul.list__med-thumb li {
    padding: 5px;
    border-bottom: 1px solid var(--color-light-gray);
}

ul.list__med-thumb li a {
    display: flex;
    column-gap: 10px;
}

ul.list__med-thumb li:last-child {
    border-bottom: none;
}

ul.list__med-thumb .post-image img {
    width: 100px;
    transition: filter 0.3s;
}

ul.list__med-thumb .post-content {
    flex: 1;
    line-height: 1.2em;
}

ul.list__med-thumb .post-content h4 {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s;
}

ul.list__med-thumb li a:hover img {
    filter: brightness(1.1);
}

ul.list__med-thumb li a:hover h4 {
    color: var(--color-primary-light);
}


/************ End Small Thumb List Variation *************/


/******** Articles Column Group **********/

.article-col-group {
    position: relative;
    z-index: 8;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 20px -15px 40px;
}

.article-col-group .article-col {
    flex: 0 1 calc(50% - 30px);
    margin: 0 15px 20px;
}

@media only screen and (max-width:761px) {
    .article-col-group .article-col {
        flex: 1 1 100%;
    }
}

article.article-col-bullet {
    display: block;
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
}

.article-col-bullet__featured {
    display: block;
    clear: both;
    overflow: hidden;
    margin-bottom: 20px;
}

article.article-col-bullet a:hover h3.article-col-bullet__title,
article.article-col-bullet__featured a:hover h3.article-col-bullet__title {
    color: var(--accent-color);
}

.article-col-bullet img.article-col-bullet__thumb {
    float: left;
    margin-right: 15px;
    max-width: 100px;
}

.article-col-bullet__featured img.article-col-bullet__thumb {
    max-width: 100%;
    width: 100%;
}

.article-col-bullet__body {
    overflow: hidden;
}

h3.article-col-bullet__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3em;
    color: #000;
    -webkit-transition: color 150ms;
    -moz-transition: color 150ms;
    -o-transition: color 150ms;
    transition: color 150ms;
}

.article-col-bullet__featured h3.article-col-bullet__title {
    font-size: 26px;
    margin: 10px 0 5px 0;
    font-weight: 700;
}

.article-col-bullet__summary {
    font-size: 13px;
    color: #888;
    margin: 3px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p.article-col-bullet__description {
    font-size: 15px;
    line-height: 1.4em;
    color: #777;
    margin-top: 2px;
}

@media (max-width: 500px) {
    p.article-col-bullet__description {
        display: none;
    }
}


/******** End Articles Column Group *********/


/***************************************
Article Group List View
***************************************/


/**
 * Top Posts
 */

.post-group {
    margin-bottom: var(--layout-content-space);
}

.post-group ul {
    display: flex;
    column-gap: var(--layout-content-space);
    row-gap: var(--layout-content-space);
    flex-wrap: wrap;
}

.style .post-group ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}

.post-group .post-item {
    display: flex;
    column-gap: var(--layout-space);
    row-gap: var(--layout-space);
    color: var(--text-color);
}

.post-group img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
}

.post-group .post-item h3 {
    font-size: 24px;
    margin: 0 0 5px 0;
    line-height: 1.2em;
    transition: color 0.3s;
}

.post-group .post-item__meta {
    color: var(--text-color-gray);
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 5px;
}

.post-group .post-item__tagline {
    color: var(--color-tagline);
    font-size: 14px;
    line-height: 1em;
    margin-bottom: 5px;
}

.post-group .summary {
    color: var(--text-color-gray);
}

@media screen and (max-width: 960px) {
    .post-group .post-item h3 {
        font-size: 16px;
        font-weight: 400;
    }
    .post-group .post-item__tagline {
        font-size: 13px;
    }
}

.post-group .post-item:hover img {
    filter: brightness(1.1);
}

.post-group .post-item:hover h3 {
    color: var(--color-primary);
}

.dark-theme .post-group .post-item:hover h3 {
    color: var(--text-color-gray);
}


/*** Basic ***/

.post-group.basic ul {
    flex-direction: column;
}

.post-group.basic .post-item__image {
    max-width: 256px;
    flex: 1 1 30%;
}

.post-group.basic.compact .post-item__image {
    max-width: 192px;
    flex: 1 1 30%;
}

.post-group.basic .post-item__content {
    flex: 1 1 70%;
}

@media screen and (max-width: 690px) {
    .post-group.basic .summary {
        display: none;
    }
}


/*** Grid ***/

.post-group.grid ul {
    flex-direction: row;
}

.post-group ul li {
    width: 100%;
}

.post-group.grid ul li {
    flex: 1 1 21%;
}

.post-group.grid.grid3 ul li {
    flex: 1 1 30%;
}

@media screen and (max-width: 690px) {
    .post-group.grid ul li {
        flex: 1 1 40%;
    }
}

.post-group.grid .post-item {
    flex-direction: column;
}

.post-group.grid .post-item h3 {
    font-size: 20px;
}

.post-group.grid .summary {
    display: none;
}

@media screen and (max-width: 1260px) {
    .post-group.grid .post-item h3 {
        font-size: 16px;
    }
}


/*** Grid Device ***/

.post-group.grid.device ul li {
    flex: 1 1 40%;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
}

@media screen and (max-width: 690px) {
    .post-group.grid.device ul li {
        flex: none;
    }
}

.post-group.grid.device .post-item {
    flex-direction: row;
}

.post-group.grid.device .post-item__image {
    flex: none;
    width: 140px;
    padding: 10px 0;
    background: #fff;
    filter: brightness(0.95);
}

.dark-theme .post-group.grid.device .post-item__image {
    filter: brightness(0.85);
}

.dark-theme .post-group.grid.device .post-item__image img {
    filter: none;
}

.post-group.grid.device .post-item__tagline {
    margin-bottom: 2px;
    color: var(--text-color-gray);
}

.post-group.grid.device .post-item__content {
    padding: 5px;
}

.post-group.grid.device .post-item h3 {
    font-size: 14px;
}


/*========
SIMPLE PAGINATION
=========*/

.simple-pagination {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.simple-next-post {
    margin-left: var(--layout-space);
}

.simple-next-post a,
.simple-previous-post a {
    color: #fff;
    background: var(--color-primary);
    display: block;
    padding: 3px 10px;
    text-align: center;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 0 var(--color-primary-dark);
}

.simple-next-post a:hover,
.simple-previous-post a:hover {
    opacity: 0.9;
}


/*======= Tags & Video Wrapper ========*/

.single-tags {
    margin: 25px 0;
    font-size: 14px;
}

.single-tags .tag a {
    padding: 0 10px;
    margin: 4px 8px 4px 0;
    color: var(--text-color);
    display: inline-block;
    transition: color 150ms, border-color 150ms;
    border: 1px solid #ddd;
    border-radius: 5px;
    line-height: 2em;
}

.single-tags .tag a:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.single-tags .single-tags-title {
    padding: 0 10px;
    margin: 4px 8px 4px 0;
    color: #333;
    display: inline-block;
    border: 1px solid #ddd;
    line-height: 2em;
    border-radius: 5px 0 0 5px;
    background: linear-gradient(#f1f1f1, #fafafa);
    font-weight: 600;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 0;
    height: 0;
    background: #DDD;
    margin: 25px 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/**** Simple Flex Column ****/

.simple-cols {
    display: flex;
    column-gap: var(--layout-content-space);
}

.simple-cols.col2 .simple-col {
    flex: 1 1 50%;
}


/**** btn ****/

.btn {
    display: inline-block;
    padding: 0 4px;
    border-radius: var(--border-radius);
    background: var(--color-primary);
    color: #fff !important;
}

.btn-small {
    font-size: 11px;
    line-height: 14px;
}