/* PHPpot base styles: global layout, header, footer, sidebar, shared utilities. */

/* Global variables, reset, layout, typography */
:root {
    --brand: #ffb000;
    --ink: #0f172a;
    --muted: #5f6b7a;
    --bg: #f7f5f0;
    --card: #ffffff;
    --line: rgba(15, 23, 42, .12);
    --radius: 18px;
    --h1-size: clamp(2rem, 3.6vw, 2.75rem);
    --h2-size: 1.75rem;
    --h3-size: 1.25rem;
    --h4-size: 1rem;
    --h5-size: 0.95rem;
    --h6-size: 0.875rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, Segoe UI,
        Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    color: #2f2f2f;
    background-color: var(--bg);
}

a {
    text-decoration: none;
    color: #2f20d1;
}

a:visited {
    color: #4132ea;
}

a img {
    border: none;
    background-color: transparent;
    vertical-align: bottom;
}

#site-logo {
    vertical-align: middle;
    padding: 12px 8px 12px 0px;
    width: 79px;
    height: 34px;
}

#container {
    clear: both;
    text-align: left;
    width: 952px;
}

/* three-column layout starts */
.content {
    width: 1185px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

#tutorial-body {
    float: left;
    margin-top: 20px;
    width: 850px;
}

#tutorial-menu {
    float: left;
    width: 235px;
    margin-bottom: 20px;
}

#tutorial {
    float: right;
    width: 600px;
    padding-left: 0px;
    overflow-wrap: break-word;
}

.entry-content {
    overflow-wrap: break-word;
}

/* three-column layout ends */

#tutorial a:hover,
#aboutcntnt a:hover,
.testimonial-content a:hover {
    text-decoration: underline;
}

#recommended a:hover {
    color: #2f20d1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 1.2em 0 .5em;
}

h1 {
    margin-top: 0;
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

h1 a,
h1 a:visited {
    color: #2f2f2f;
}

h2 a,
h2 a:visited {
    color: #000;
    border-bottom: 0;
    text-decoration: none;
}

h3 a,
h3 a:visited {
    color: #2f2f2f;
    border-bottom: 0;
    text-decoration: none;
}

h3 a:hover {
    color: #000000;
    text-decoration: underline;
}

#tutorial p {
    line-height: 1.6;
}

#tutorial li {
    line-height: 1.5;
    margin: 6px 0;
}

#tutorial strong {
    color: #474747;
}

#tutorial-body #tutorial img {
    border-radius: 4px;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/* Forms, header, footer, sidebar */
/* Search form starts here */
.search-form {
    display: inline;
}

.search {
    border: #E0E0E0 1px solid;
    background-color: #fcfefd;
    line-height: 15px;
    margin-right: -30px;
    padding: 5px 0 5px 8px;
    width: 307px;
    color: #5c5c5c;
    border-radius: 1000px;
    box-sizing: border-box;
}

button.search-button {
    border: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 0PX;
}

/* Search form ends here */

/* feedburner starts */

/* label used in many templates */
form label {
    width: 50px;
    display: inline-block;
}

input#submit {
    padding: 10px 40px;
    cursor: pointer;
    color: #755C3B;
    background: #A2E1F5;
    border: none;
}

.subscribe {
    padding: 10px 20px;
    cursor: pointer;
    color: #000;
    background: #dcdcdc;
    margin: 0;
    border: 1px solid #d0cfcf;
    border-color: #c3c3c3 #c1c1c1 #adadad;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background-image: -webkit-linear-gradient(top, #dcdcdc, #bfbfbf);
    background-image: linear-gradient(to bottom, #dcdcdc, #bfbfbf);
}

.feedb-email {
    padding: 10px 8px;
    width: 150px;
    margin: 0;
    border: 1px solid #c3c3c3;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* feedburner ends */

/*header starts here */
#header,
#tutorial,
#sidebar {
    margin-bottom: 5px;
}

#site_header {
    border-bottom: 1px solid #e2dfda;
    margin-bottom: 10px;
    background-color: #ffffff;
}

#site_header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#site_header .content>a {
    display: inline-flex;
    align-items: center;
}

#site_header svg {
    height: 32px;
    width: auto;
}

#site_header a {
    font-size: .95em;
}

#site_header .header-link-container a {
    font-size: .95em;
}

a.header-link {
    color: #fff;
    padding: 7px 28px;
    font-size: .95em;
    transition: color 1s ease;
    font-weight: 600;
}

a.header-link:hover {
    color: #00F5FF;
    transition: color 1s ease;
}

.header-link-container {
    float: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

#site_header #expand-sub-menu-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

#site_header .header-panel {
    display: grid;
    grid-template-columns: 1fr minmax(0, 420px) 1fr;
    align-items: center;
    flex: 1 1 auto;
    gap: 10px;
    min-width: 0;
}

#site_header .header-panel .search-container {
    grid-column: 2;
    justify-self: center;
    margin: 0;
    width: 100%;
}

#site_header .header-panel .testimonial-icon {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
}

#site_header .search-container {
    display: block;
    flex: 1 1 auto;
    margin: 0 12px;
    max-width: 420px;
}

#site_header .search-form {
    position: relative;
    display: block;
}

#site_header .search {
    width: 100%;
    padding: 10px 38px 10px 14px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
    margin-right: 0;
    color: #2f2f2f;
    line-height: 1.2;
}

#site_header .search:focus {
    outline: none;
    border-color: #ffb000;
}

#site_header button.search-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background: url(../images/sprite.png?v=301118) no-repeat -76px -30px;
    border: none;
    padding: 0;
}

#site_header #header-contact-navigation {
    font-size: .95em;
}

#header-contact-navigation {
    color: #2a1a00;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 6px;
    border-radius: 999px;
    border: 1px solid #f0c36b;
    padding: 8px 22px;
    cursor: pointer;
    background-color: #ffb000;
    font-weight: 600;
}

#header-contact-navigation:hover {
    background-color: #ffaf14;
}

.header-menu-toggle,
.header-tutorial-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
    cursor: pointer;
}

.header-menu-toggle:hover,
.header-tutorial-toggle:hover {
    background-color: #fffbf0;
    border-color: #f2d59e;
}

.header-menu-icon,
.header-menu-icon::before,
.header-menu-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #2f2f2f;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.header-menu-icon {
    position: relative;
}

.header-menu-icon::before,
.header-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.header-menu-icon::before {
    top: -6px;
}

.header-menu-icon::after {
    top: 6px;
}

#tutorial-menu .tutorial-menu-close {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    margin: 0 0 12px;
    border-radius: 999px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
    color: #2f2f2f;
    font-size: .85em;
    font-weight: 600;
    cursor: pointer;
}

#tutorial-menu .tutorial-menu-close:hover {
    background-color: #fffbf0;
    border-color: #f2d59e;
}

#site_header.is-menu-open .header-menu-icon {
    background-color: transparent;
}

#site_header.is-menu-open .header-menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}

#site_header.is-menu-open .header-menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

body.is-tutorial-menu-open .header-tutorial-toggle .header-menu-icon {
    background-color: transparent;
}

body.is-tutorial-menu-open .header-tutorial-toggle .header-menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}

body.is-tutorial-menu-open .header-tutorial-toggle .header-menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

#site_header .demo-download-icon,
#site_header .testimonial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
    color: #2f2f2f;
    font-weight: 600;
    margin-right: 0;
}

#site_header .demo-download-icon:hover,
#site_header .testimonial-icon:hover {
    background-color: #fffbf0;
    border-color: #f2d59e;
    color: #2f2f2f;
}

#mobile-search-icon {
    display: none;
}

/*header ends here */

/*********** footer starts **********/
.top {
    float: right;
    margin-bottom: 1.17em;
}

a.top {
    color: #505050;
    clear: both;
}

a.top:hover {
    color: #333;
}

#footer {
    clear: both;
}

#footer:not(.site-footer) {
    background-color: #ffffff;
    padding: 28px 0 20px;
    border-top: 1px solid #e5e0d6;
}

#footer:not(.site-footer) a {
    color: #2f2f2f;
}

#footer:not(.site-footer) a:hover {
    color: #8a4f00;
}

.site-footer-contact-note {
    clear: both;
    background-color: transparent;
    color: var(--ink);
    padding: 24px 0 10px;
}

.site-footer-contact-note .footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    padding: 22px 24px;
}

.site-footer-contact-note .footer-cta-text h2 {
    margin: 0 0 6px;
    font-size: clamp(1.2rem, 1.7vw, 1.45rem);
    line-height: 1.25;
    letter-spacing: -.2px;
}

.site-footer-contact-note .footer-cta-text p {
    margin: 0;
    color: var(--muted);
}

.site-footer-contact-note .footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer-contact-note #footer-contact-navigation {
    border-radius: 999px;
    border: 1px solid #f0c36b;
    padding: 10px 22px;
    cursor: pointer;
    color: #2a1a00;
    background-color: #ffb000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    white-space: nowrap;
}

.site-footer-contact-note #footer-contact-navigation:hover {
    background-color: #ffa400;
}

footer#footer.site-footer {
    background-color: transparent;
    padding: 12px 0 0;
    border-top: 0;
}

.site-footer .footer-inner {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    padding: 24px;
}

.site-footer a {
    color: rgba(15, 23, 42, .84);
}

.site-footer a:hover {
    color: #8a4f00;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(200px, 1fr);
    column-gap: 34px;
    row-gap: 22px;
    align-items: start;
}

.site-footer .footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer .footer-title {
    font-size: 1.04em;
    font-weight: 700;
    color: #8a4f00;
    margin-bottom: 2px;
}

.site-footer .footer-copy {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: .95em;
    line-height: 1.5;
}

.site-footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.site-footer .footer-list li {
    margin: 0;
}

.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
    font-weight: 600;
    font-size: .92em;
}

.site-footer .footer-social a:hover {
    background-color: #fffbf0;
    border-color: #f2d59e;
}

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .9em;
    color: var(--muted);
}

.site-footer .site-footer-bottom-band {
    margin-top: 16px;
    padding: 18px 0 22px;
    border-top: 1px solid #e5e0d6;
    background: #ffffff;
}

.site-footer .footer-bottom a {
    color: var(--muted);
}

.site-footer .footer-bottom a:hover {
    color: rgba(15, 23, 42, .88);
}

.site-footer .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer .footer-sep {
    color: #d4cebe;
}

.site-footer .footer-newsletter form {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer .footer-newsletter label.heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer .footer-newsletter .feedb-email {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(15, 23, 42, .18);
    border-radius: 12px;
    background-color: #fffdfa;
    box-sizing: border-box;
}

.site-footer .footer-newsletter .feedb-email::placeholder {
    color: rgba(15, 23, 42, .45);
}

.site-footer .footer-newsletter .feedb-email:focus {
    outline: 2px solid rgba(255, 176, 0, .45);
    outline-offset: 1px;
}

.site-footer .footer-newsletter .subscribe {
    width: auto;
    margin-top: 0;
    border: 1px solid transparent;
    border-radius: 12px;
    background-color: #ffb000;
    color: #2a1a00;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 10px 18px;
}

.site-footer .footer-newsletter .subscribe:hover {
    background-color: #ffa400;
}

.site-footer .footer-newsletter .small-note {
    margin-top: 8px;
    color: #6b7280;
    font-size: .85em;
}

@media screen and (max-width: 900px) {
    .site-footer-contact-note .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
    }

    .site-footer-contact-note .footer-cta-actions {
        width: 100%;
    }

    .site-footer-contact-note #footer-contact-navigation {
        width: 100%;
    }

    .site-footer .footer-inner {
        padding: 20px 18px 14px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer .site-footer-bottom-band {
        padding: 16px 0 18px;
    }
}

/******** footer ends **********/

/******** sidebar starts *******/
#contactMe {
    margin-top: 5px;
}

#contactMe a {
    color: #2f2f2f;
}

#aboutcntnt {
    line-height: 1.55;
    background-color: #ffffff;
    padding: 18px 16px;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid #e5e0d6;
}

.hi-icon {
    vertical-align: text-top;
    padding-right: 5px;
}

.sidebar-featured-product {
    border: 1px solid #dadfe2;
    border-radius: 4px;
    display: flex;
}

.sidebar-featured-url {
    margin: 20px;
}

.sidebar-featured-product a {
    color: #006fea;
    display: contents;
    width: 150px;
    height: 150px;
}

.sidebar-product {
    margin: 10px 0;
}

.sidebar-product img {
    border: 1px solid #f3ead3;
    border-radius: 15px;
    box-sizing: border-box;
}

.sidebar-product a {
    color: #1873e6;
    font-weight: 500;
    display: block;
}

.heading {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #8a4f00;
}

#photo {
    float: right;
    margin-left: 12px;
}

#photo img {
    border-radius: 14px;
    border: 1px solid #e7e0d2;
    width: 88px;
    height: 88px;
    object-fit: cover;
}

#aboutdesc p {
    margin: 0 0 10px;
}

#aboutdesc p:last-child {
    margin-bottom: 0;
}

.testimonials-sbar {
    padding: 18px 16px;
    margin: 20px 0;
    border-radius: 16px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
}

.testimonials-sbar p {
    line-height: 1.45;
    margin-bottom: 0px;
}

p.testimonials-sbar-by {
    margin: 1em 0;
    font-weight: 600;
    color: #6b4b1c;
}

.view-testimonials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid;
    padding: 10px 18px;
    cursor: pointer;
    color: #2a1a00;
    background-color: #ffb000;
    border-color: #ffc87a #e2a348 #da9d0a;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
}

.view-testimonials:visited {
    color: #2a1a00;
}

.view-testimonials:hover {
    background-color: #ffa400;
}

.view-testimonials:focus-visible {
    outline: 2px solid #b86a00;
    outline-offset: 2px;
}

#recommended,
.sidebar-section {
    padding: 18px 16px;
    margin: 20px 0;
    border-radius: 16px;
    border: 1px solid #e5e0d6;
    background-color: #ffffff;
}

.sidebar-section .heading {
    text-align: left;
}

.connect-with {
    cursor: pointer;
}

#recommended ol {
    padding: 0;
}

#recommended>ol li {
    margin: 10px 0;
    list-style: none;
}

#recommended ol li a {
    color: #1f2937;
    padding: 2px 0;
    display: inline-block;
}

#sidebar {
    width: 320px;
    float: right;
    font-size: .95em;
    margin-top: 20px;
}

/********** sidebar ends ************/

/* Tutorial menu shared by tutorial pages */
/* TUTORIAL MENU starts */
#tutorial-menu {
    font-size: .92em;
}

#tutorial-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#tutorial-menu a {
    color: #222;
    text-decoration: none;
    display: block;
}

.main-menu {
    border: 1px solid rgba(207, 207, 207, 0.55);
    border-radius: 14px;
    background: #fff;
    max-height: 65vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.main-menu>li>a {
    padding: 10px 12px;
    border-top: 1px solid rgba(207, 207, 207, 0.55);
}

.main-menu>li.cat-item>a,
.sub-menu>li.cat-item>a {
    position: relative;
    padding-left: 22px;
}

.main-menu>li.cat-item>a::before,
.sub-menu>li.cat-item>a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent rgba(120, 120, 120, 0.7);
}

.main-menu>li.is-expanded>a::before,
.sub-menu>li.taxonomy-active>a::before {
    transform: translateY(-50%) rotate(90deg);
}

.main-menu>li:first-child>a {
    border-top: none;
}

.main-menu>li>a:hover {
    background: #f7f7f7;
}

.sub-menu {
    border-top: 1px solid rgba(207, 207, 207, 0.55);
    padding: 6px 0;
    background: #fafafa;
}

.sub-menu>li>a {
    padding: 6px 12px 6px 22px;
    color: #333;
}

.sub-menu>li.taxonomy-active>a {
    font-weight: 600;
}

.post-list {
    padding: 6px 0 8px 0;
}

.post-list>li>a,
.post-list>li.current-post {
    padding: 5px 12px 5px 30px;
    color: #444;
}

.post-list>li.current-post {
    font-weight: 600;
}

.tutorial-menu-heading {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f6b7a;
    margin: 0 0 8px 6px;
}

.tutorial-menu-topics-wrap {
    border: 1px solid rgba(207, 207, 207, 0.55);
    border-radius: 14px;
    background: #fff;
    padding: 10px 10px 12px;
    margin: 0 0 16px;
}

.tutorial-menu-topics {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tutorial-menu-topics a {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: rgba(15, 23, 42, 0.72);
    text-decoration: none;
    font-size: 0.82em;
    line-height: 1.2;
    font-weight: 600;
}

.tutorial-menu-topics a:hover {
    background: rgba(15, 23, 42, 0.1);
    border-color: rgba(15, 23, 42, 0.16);
    color: var(--ink);
}

.tutorial-menu-topics a:focus {
    outline: 2px solid rgba(15, 23, 42, 0.35);
    outline-offset: 2px;
}

.menu-toggle {
    background: none;
    border: 0;
    padding: 10px 12px;
    font: inherit;
    cursor: pointer;
    text-align: left;
    width: 100%;
    display: block;
    color: inherit;
}

.menu-toggle:focus {
    outline: 2px solid #ccc;
    outline-offset: 2px;
}

.menu-toggle:hover {
    background: #f7f7f7;
}

.main-menu>li:first-child>.menu-toggle {
    border-top: none;
}

.main-menu {
    margin-top: 0;
}

.main-menu>li>.menu-toggle,
.sub-menu>li>.menu-toggle {
    border-top: 1px solid rgba(207, 207, 207, 0.55);
}

.main-menu>li>.menu-toggle {
    font-weight: 600;
    color: #1b1b1b;
    background: #fff;
}

.sub-menu>li>.menu-toggle {
    font-size: 0.95em;
    color: #2f2f2f;
}

.main-menu>li.cat-item>.menu-toggle,
.sub-menu>li.cat-item>.menu-toggle {
    position: relative;
    padding-left: 22px;
}

.main-menu>li.cat-item>.menu-toggle::before,
.sub-menu>li.cat-item>.menu-toggle::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent rgba(120, 120, 120, 0.7);
}

.sub-menu>li.cat-item>.menu-toggle {
    padding-left: 36px;
}

.sub-menu>li.cat-item>.menu-toggle::before {
    left: 22px;
}

.main-menu>li.is-expanded>.menu-toggle::before,
.sub-menu>li.taxonomy-active>.menu-toggle::before {
    transform: translateY(-50%) rotate(90deg);
}

.sub-menu,
.post-list {
    display: none;
}

.main-menu>li.is-expanded>.sub-menu {
    display: block;
}

.sub-menu>li.taxonomy-active>.post-list {
    display: block;
}

.current-post {
    font-weight: 600;
    color: #000;
}

.taxonomy-active>.menu-toggle {
    font-weight: 600;
}

/* TUTORIAL MENU ENDS */

/* Shared utilities and legacy sidebar socials */
.inline-block {
    display: inline-block;
}

.shop-footer-common {
    margin-top: 20px;
    overflow: auto;
    float: right;
}

.shop-footer-common a {
    color: #555;
    display: inline-block;
    margin: 8px 10px;
}

.subscribe-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-email {
    width: 100%;
}

.follow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: #5f6b7a;
}

.follow a {
    color: #2f2f2f;
}

.separator {
    padding: 0 6px;
    color: #d4cebe;
}

.shop-footer-common .separator {
    padding: 0 12px;
}

.shop-footer-common .policy-doc-nav {
    float: right;
    text-align: left;
}

#expand-sub-menu-icon {
    display: inline-block;
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.small-note {
    font-size: 0.8em;
    color: #757575;
    margin-top: 5px;
}

/* Fixing width of label style*/
.width-auto {
    width: auto;
}

/* Dont know where the following styles are used ends */
.display-none {
    display: none;
}

/* SIDEBAR SOCIAL ICON STYLES */
.facebook-social-link {
    background: #4267b2;
}

.twitter-social-link {
    background: #1da1f2;
}

.linkedin-social-link {
    background: #0077b5;
}

.social-link {
    color: #FFF !important;
    padding: 0px !important;
    border-radius: 20px;
    margin: 0px 0px 17px 0px;
    display: inline-block;
    font-weight: bold;
}

.social-link span {
    display: inline-block;
    position: relative;
    padding: 3px 20px 3px 44px;
}

.social-link span:hover {
    color: #e2fe00;
}

.linkedin-social-img:before {
    background: url(/wp-content/themes/solandra/images/sprite.png?v=301118) no-repeat -48px -24px;
    height: 24px;
    width: 24px;
    display: inline-flex;
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
}

.twitter-social-img:before {
    background: url(/wp-content/themes/solandra/images/sprite.png?v=301118) no-repeat -24px -24px;
    height: 24px;
    width: 24px;
    display: inline-flex;
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
}

.facebook-social-img:before {
    background: url(/wp-content/themes/solandra/images/sprite.png?v=301118) no-repeat -0px -24px;
    height: 24px;
    width: 24px;
    display: inline-flex;
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
}

/* SIDEBAR SOCIAL ICON STYLES ENDS */
.social-link img {
    vertical-align: middle;
}

#site_header .search-container {
    display: block;
    margin: 0 12px;
}

#site_header .search-form {
    display: block;
}

#site_header button.search-button {
    border: none;
    height: 16px;
    width: 16px;
    background: url(../images/sprite.png?v=301118) no-repeat -76px -30px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 0;
}

/* Responsive layout rules */
/*
3-col - wide screen: 
15 + ((235 + 15 + 600)850 + 15 + 320)1185 + 15 = 1215px - 3 col

15 		- left gutter
235 	- #tutorial-menu - left sidebar LSB
15 		- margin space between LSB and main body (MB)
600 	- #tutorial - MB
850 	- #tutorial-body - Together first-col and second-col size
15 		- margin space between first two-cols and right sidebar (RSB)
320		- #sidebar - RSB
1185 	- .content - 3 cols together
15 		- right gutter

2-col - wide screen: 
15 + (570 + 15 + 320)905 + 15 = 935 - 2 col
15 		- left gutter
570 	- #article - MB
15 		- margin space between MB and right sidebar (RSB)
320		- #aside - RSB
905 	- .two-column-content - 2 cols together
15 		- right gutter

2-col - level-1: 
15 + (460 + 15 + 250)725 + 15 = 755

*/

/* 
3-col - level 1: 1071px to 1215px
15 + ((235 + 15 + 540)790 + 15 + 235)1040 + 15 = 1070
*/
@media screen and (min-width: 1071px) and (max-width: 1215px) {
    #tutorial {
        width: 540px;
    }

    #tutorial-body {
        width: 790px;
    }

    #sidebar {
        width: 235px;
    }

    .content {
        width: 1040px;
    }
}

/* 
3-col - level 2: 1015px to 1070px
15 + ((227 + 15 + 500)742 + 15 + 227)984 + 15 = 1014
*/
@media screen and (min-width: 1015px) and (max-width: 1070px) {
    #tutorial-menu {
        width: 227px;
    }

    #tutorial {
        width: 500px;
    }

    #tutorial-body {
        width: 742px;
    }

    #sidebar {
        width: 227px;
    }

    .content {
        width: 984px;
    }
}

/* 
3-col - level 3: becomes 2-col left sidebar hidden
15 + ((570)570 + 15 + 320)905 + 15 = 935px
*/
@media screen and (max-width: 1014px) {
    #site_header .search {
        width: 100%;
    }

    .header-tutorial-toggle {
        display: inline-flex;
    }

    #tutorial-menu .tutorial-menu-close {
        display: inline-flex;
        position: sticky;
        top: 8px;
        z-index: 2;
    }

    .has-tutorial-toggle {
        position: relative;
        padding-top: 42px;
    }

    .content-shell .card--padded.has-tutorial-toggle,
    .content-shell .card--padded-lg.has-tutorial-toggle,
    .content-shell .card--flush.has-tutorial-toggle,
    .content-shell .card.has-tutorial-toggle {
        padding-top: 72px;
    }

    .has-tutorial-toggle>.header-tutorial-toggle {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 2;
    }

    #tutorial-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        margin: 0;
        padding: 16px 12px 24px;
        background-color: #ffffff;
        border-right: 1px solid #e5e0d6;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .2s ease, opacity .2s ease;
        z-index: 1000;
        overflow-y: auto;
        float: none;
    }

    #tutorial {
        width: 570px;
    }

    #tutorial-body {
        width: 570px;
    }

    #sidebar {
        width: 320px;
    }

    .content {
        width: 905px;
    }

    .search {
        width: 460px;
    }

    body.is-tutorial-menu-open {
        overflow: hidden;
    }

    body.is-tutorial-menu-open #tutorial-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* 
3-col - level 4: becomes 2-col left sidebar hidden
15 + ((460)460 + 15 + 250)725 + 15 = 755px
*/
@media screen and (min-width: 756px) and (max-width: 965px) {
    #site_header .search {
        width: 100%;
    }

    #tutorial-menu {
        width: 460px;
    }

    #tutorial {
        width: 460px;
    }

    #tutorial-body {
        width: 460px;
    }

    #sidebar {
        width: 250px;
    }

    .content {
        width: 725px;
    }

    .search {
        width: 460px;
    }

    #logo-text {
        display: none;
    }

}

/* 3-col - level 5: becomes 1-col, left sidebar hidden, right sidebar goes below 
15 + ((570)570 + 0 + 0)570 + 15 = 600px
*/
@media screen and (max-width: 755px) {
    #site_header .content {
        flex-wrap: wrap;
        gap: 12px;
    }

    #site_header .header-panel {
        display: none;
        flex: 1 1 100%;
        order: 3;
        width: 100%;
        margin-top: 4px;
        padding-top: 12px;
        border-top: 1px solid #e5e0d6;
        gap: 12px;
    }

    #site_header.is-menu-open .header-panel {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    #site_header .header-panel .search-container {
        flex: 1 1 100%;
        max-width: none;
        margin: 0;
    }

    #site_header .header-panel .testimonial-icon {
        margin-left: 0;
        margin-bottom: 12px;
        align-self: flex-start;
    }

    #site_header .search {
        width: 100%;
    }

    #site_header .header-menu-toggle {
        display: inline-flex;
    }

    #site_header #header-contact-navigation {
        margin-left: 0;
    }

    #tutorial-menu {
        width: 350px;
    }

    .main-menu {
        max-height: none;
        overflow: visible;
    }

    #tutorial {
        width: 570px;
    }

    #tutorial-body {
        width: 570px;
    }

    #sidebar {
        width: 320px;
        clear: both;
        float: none;
    }

    .content {
        width: 570px;
    }

    .site-footer-contact-note #footer-contact-navigation {
        margin: 0;
    }

    #expand-sub-menu-icon {
        position: static;
        padding: 0;
        background: transparent;
        width: auto;
        text-align: left;
        box-sizing: border-box;
    }

    .search {
        width: 350px;
    }

}

/* 3- col become 1-col and width becomes auto for main content 
left sidebar hidden, right sidebar goes below */
@media screen and (max-width: 600px) {
    #tutorial-menu {
        width: 350px;
    }

    #tutorial {
        width: auto;
        float: none;
        max-width: 570px;
        padding-top: 10px;
    }

    #tutorial-body {
        float: none;
        width: 100%;
    }

    #sidebar {
        width: auto;
        max-width: 350px;
        clear: both;
        float: none;
    }

    .content {
        width: auto;
    }

}

@media screen and (max-width: 450px) {
    #tutorial-menu {
        width: auto;
        max-width: 350px;
    }

    .search {
        width: 100%;
    }

    #logo-text {
        display: none;
    }

    #site_header .search-container {
        margin-right: 0px;
    }

    #site_header #header-contact-navigation {
        padding: 8px 15px;
    }
}

/* Utility visibility */
@media screen and (max-width: 755px) {
    .hide-sm {
        display: none !important;
    }
}

@media screen and (max-width: 1014px) {
    .hide-md {
        display: none !important;
    }
}

/* Responsive styles ends */

/* Shared content shell primitives */
/* Shared layout shell styles (moved from index.php) */
.content-shell {
    --radius: 18px;
    color: var(--ink);
    background: var(--bg);
    border-radius: calc(var(--radius) + 6px);
    padding: 0;
}

.content-shell * {
    box-sizing: border-box;
}

.content-shell a {
    color: inherit;
    text-decoration: none;
}

.content-shell .wrap {
    max-width: 100%;
    margin: 0 auto;
}

.content-shell .card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.content-shell .card--padded {
    padding: 16px;
    border-radius: var(--radius);
}

.content-shell .card--padded-lg {
    padding: 20px;
}

.content-shell h1 {
    margin: 14px 0 10px;
    font-size: var(--h1-size);
    line-height: 1.05;
    letter-spacing: -.6px;
}

.content-shell .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 12px;
    font-weight: 650;
    letter-spacing: .2px;
    border: 1px solid transparent;
    transition: transform .08s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
    user-select: none;
}

.content-shell .btn:active {
    transform: translateY(1px);
}

.content-shell .btn-primary {
    background: var(--brand);
    color: #2a1a00;
    border-color: rgba(255, 176, 0, .55);
}

.content-shell .btn-primary:hover {
    opacity: .95;
}

.content-shell .btn-secondary {
    background: rgba(15, 23, 42, .05);
    border-color: rgba(15, 23, 42, .12);
    color: rgba(15, 23, 42, .92);
}

.content-shell .btn-secondary:hover {
    background: rgba(15, 23, 42, .08);
}

.content-shell .text-link {
    color: rgba(15, 23, 42, .72);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(15, 23, 42, .22);
}

.content-shell .text-link:hover {
    color: rgba(15, 23, 42, .9);
}

.content-shell .divider {
    height: 1px;
    background: var(--line);
}

.content-shell .section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.content-shell .section-head h1,
.content-shell .section-head h2,
.content-shell .section-head .section-title {
    margin: 0;
    font-size: 20px;
    letter-spacing: -.3px;
}

.content-shell .section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
}

.content-shell .text-muted {
    color: var(--muted);
}

.content-shell .text-small {
    font-size: 12.5px;
}

.content-shell .recent-shell {
    margin-top: 0;
}