/*
Theme Name: MyHome Child
Theme URI: https://tangiblewp.com/myhome
Author: TangibleWP
Author URI: https://tangiblewp.com
Description: MyHome
Template: myhome
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: translation-ready
Text Domain: myhome
*/
.twp-demo-launcher-root {
    --twp-demo-launcher-spacing: 24px;
    --twp-demo-launcher-z-index: 99999;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--twp-demo-launcher-z-index);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0
        calc(var(--twp-demo-launcher-spacing) + env(safe-area-inset-right, 0px))
        calc(var(--twp-demo-launcher-spacing) + env(safe-area-inset-bottom, 0px))
        calc(var(--twp-demo-launcher-spacing) + env(safe-area-inset-left, 0px));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    box-sizing: border-box;
}

.twp-demo-launcher-root--ready {
    opacity: 1;
}

.twp-demo-launcher-root[data-hidden="true"] {
    opacity: 0;
}

.twp-demo-launcher-root[data-hidden="true"] .twp-demo-launcher {
    transform: translateY(16px);
    pointer-events: none;
}

.twp-demo-launcher {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    pointer-events: auto;
    transition: transform 0.18s ease;
}

body.compare-active .twp-demo-launcher-root {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.twp-demo-launcher,
.twp-demo-launcher * {
    box-sizing: border-box;
}

.twp-demo-launcher__desktop {
    display: block;
}

.twp-demo-launcher__card {
    width: min(360px, calc(100vw - 48px));
    max-height: calc(100vh - 48px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    color: #0f172a;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

@supports (height: 100dvh) {
    .twp-demo-launcher__card {
        max-height: calc(100dvh - 48px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    }
}

.twp-demo-launcher__top {
    padding: 16px 18px 14px;
}

.twp-demo-launcher__title {
    margin: 0 0 11px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.twp-demo-launcher__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px;
    color: #fff !important;
    background: #6366f1;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: background 0.15s ease, transform 0.12s ease;
}

.twp-demo-launcher__cta:hover {
    color: #fff !important;
    background: #4f51e5;
    transform: translateY(-1px);
}

.twp-demo-launcher__micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 9px 0 0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.twp-demo-launcher__micro-check {
    color: #22c55e;
    font-weight: 700;
}

.twp-demo-launcher__pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    color: #6366f1 !important;
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: background 0.15s ease;
}

.twp-demo-launcher__pricing:hover {
    color: #4f51e5 !important;
    background: #eef2ff;
}

.twp-demo-launcher__pricing-arrow {
    font-size: 16px;
}

.twp-demo-launcher__mobile {
    display: none;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 32px);
}

.twp-demo-launcher a:focus-visible,
.twp-demo-launcher__mobile a:focus-visible {
    outline: 3px solid #a5b4fc;
    outline-offset: 2px;
}

.twp-demo-launcher__mobile-cta,
.twp-demo-launcher__mobile-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.12s ease;
}

.twp-demo-launcher__mobile-cta {
    color: #fff !important;
    background: #6366f1;
    box-shadow: 0 14px 38px rgba(99, 102, 241, 0.5);
}

.twp-demo-launcher__mobile-cta:hover {
    color: #fff !important;
    background: #4f51e5;
    transform: translateY(-1px);
}

.twp-demo-launcher__mobile-pricing {
    color: #4f46e5 !important;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.twp-demo-launcher__mobile-pricing:hover {
    color: #4338ca !important;
    background: #f8fafc;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .twp-demo-launcher-root {
        --twp-demo-launcher-spacing: 16px;
        right: 0;
        bottom: 0;
        left: auto;
        justify-content: flex-end;
        width: auto;
        padding-top: 0;
    }

    .twp-demo-launcher__desktop {
        display: none;
    }

    .twp-demo-launcher__mobile {
        display: flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    .twp-demo-launcher,
    .twp-demo-launcher__cta,
    .twp-demo-launcher__pricing,
    .twp-demo-launcher__mobile-cta,
    .twp-demo-launcher__mobile-pricing {
        transition: none;
    }
}

.tag-link-161 {
    order: 1;
}

.tag-link-162 {
    order: 2;
}

.tag-link-163 {
    order: 3;
}

.tag-link-164 {
    order: 4;
}

.tag-link-165 {
    order: 5;
}

.tag-link-166 {
    order: 6;
}

.tag-link-167 {
    order: 7;
}

.tag-link-168 {
    order: 8;
}

.myhome-home-menu-link {
    display: none !important;
}

/*.mc4wp-alert.mc4wp-error:after {*/
/*    content: 'Subscription module is disabled';*/
/*    font-size: var(--e-global-typography-ltext2-font-size);*/
/*    line-height: var(--e-global-typography-ltext2-line-height);*/
/*}*/

/*.mc4wp-alert.mc4wp-error {*/
/*    font-size: 0;*/
/*}*/

/*.mc4wp-response {*/
/*    position: absolute;*/
/*    padding: 0 10px;*/
/*    margin-left: 15px;*/
/*    margin-top: -12px;*/
/*    border-radius: var(--e-global-lborder-radius);*/
/*    background: var(--e-global-color-lcolor1);*/
/*    box-shadow: var(--e-global-shadow);*/
/*    color: var(--e-global-color-lcolor5);*/
/*    font-family: var(--e-global-typography-ltext2-font-family);*/
/*    font-size: var(--e-global-typography-ltext2-font-size);*/
/*    font-weight: var(--e-global-typography-ltext2-font-weight);*/
/*    line-height: 0px;*/
/*    letter-spacing: var(--e-global-typography-ltext2-letter-spacing);*/
/*    text-transform: var(--e-global-typography-ltext2-text-transform);*/
/*    font-style: var(--e-global-typography-ltext2-font-style);*/
/*    -webkit-text-decoration: var(--e-global-typography-ltext2-text-decoration);*/
/*    text-decoration: var(--e-global-typography-ltext2-text-decoration);*/
/*}*/

/*.mc4wp-response .mc4wp-error:before {*/
/*    content: "";*/
/*    background: var(--e-global-color-lcolor1);*/
/*    transform: rotate(-45deg);*/
/*    width: 7px;*/
/*    height: 7px;*/
/*    background-color: var(--e-global-color-lcolor1);*/
/*    left: 50%;*/
/*    margin-left: -3.5px;*/
/*    top: -3.5px;*/
/*    position: absolute;*/
/*}*/
