
:root {
    --theme-primary: #2563eb;
    --theme-primary-rgb: 67, 56, 202;
    --theme-bg-light: #f8f9fa;
    --theme-alert-bg: #fefce8;
    --theme-alert-border: #facc15;
    --theme-alert-text: #a16207;
  }
  
  /* Global styles */
  body {
    font-family: 'Inter', system-ui, sans-serif;
    font-feature-settings: normal;
    font-size: 18px;
    line-height: 28px;margin-bottom: 0 !important;
  }
  div#page {
    background: #f8f9fa;
}
  /* Hero Section */
  .section-hero {
    padding: 6rem 0;
    background: linear-gradient(to right, var(--theme-primary), var(--theme-primary));
    color: #fff;
  }
 
  
  /* About Section */
  .section-about {
    background-color: #fff;
  }
  .section-about .alert {
    background-color: var(--theme-alert-bg);
    border-left: 4px solid var(--theme-alert-border);
    color: var(--theme-alert-text);
  }
  
  /* Workbook Sections */
  .section-workbook {
    background-color: var(--theme-bg-light);
  }
  .workbook-section .card {
    transition: all 0.3s ease;
  }
  .workbook-section .card:hover {
    transform: translateY(-4px);
  }
  
  /* How to Use Section */
  .section-how-to-use {
    background-color: #fff;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-weight: bold;
    background-color: rgba(var(--theme-primary-rgb), 0.1);
    color: var(--theme-primary);
  }
  .error-404 {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page_not_found {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.page_not_found h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.page_not_found p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 30px;
}

.page_not_found a {
    display: inline-block;
    background-color: #4338ca;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page_not_found a:hover {
    background-color: #312e81;
}

.banner-inner-outer {
    background: linear-gradient(135deg, var(--theme-primary), #6366f1);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.banner-inner-outer h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
}

.banner-inner-outer h1 span {
    color: #a5b4fc;
}
/* Custom Header Styling */
.primary-header {
    background: linear-gradient(to right, var(--theme-primary), var(--theme-primary));
    color: white;
}

/* User Icon */
.user-icon i {
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
}

.user-icon:hover i {
    color: #f0f0f0;
}


/* Logout Button */
.primary-header .btn-outline-danger {
    border-color: white; /* White border for logout button */
    color: white; /* White text for the logout button */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-header .btn-outline-danger:hover {
    background-color: white; /* White background on hover */
    color: #dc3545; /* Red color for text when hovering */
    border-color: #dc3545; /* Red border on hover */
}
.myaccount-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 2rem auto;
    max-width: 1100px;
}

/* Sidebar */
.account-sidebar {
    flex: 1 1 250px;
    background-color: var(--theme-primary); /* Indigo-700 */
    color: #fff;
    padding: 2rem;
}

.account-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar li {
    margin-bottom: 0.5rem;
}

.account-sidebar a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover & Active Link Styles */
.account-sidebar li.is-active a,
.account-sidebar a:hover {
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* Left border highlight for active link */


/* Content area */
.account-content {
    flex: 3 1 650px;
    padding: 2rem;
    background: #fff;
}

/* Typography */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.woocommerce-account header.entry-header {
    text-align: center;
    margin-top: 30px;
}


/* === THEMED PRODUCT PAGE (MATCHES ACCOUNT DESIGN) === */

.single-product .site-main {
    background-color: var(--theme-bg-light);
    padding: 4rem 1rem;
}
nav.woocommerce-breadcrumb {
    display: none;
}
/* === PRODUCT PAGE FIXES & ENHANCEMENTS === */

/* Main container for product */
.woocommerce div.product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    padding: 2rem;
    max-width: 700px; /* increased for better spacing */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    text-align: center;
}

/* Center the product image */
.woocommerce div.product div.images {
    display: flex;
    justify-content: center; /* Center image horizontally */
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.woocommerce div.product div.images img {
    max-width: 90%; /* Reduced max-width for responsiveness */
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* SALE BADGE (style it like a tag/pill with theme color) */
.woocommerce span.onsale {
    background-color: var(--theme-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(var(--theme-primary-rgb), 0.2);
}

/* Title, Price, Meta */
.woocommerce div.product .product_title {
    font-size: 2.25rem; /* Slightly larger title */
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 1.75rem; /* Increased price size */
    font-weight: 600;
    color: var(--theme-primary);
    margin-bottom: 1.5rem;
}

/* Add to Cart Button */
.woocommerce div.product .single_add_to_cart_button {
    background-color: var(--theme-primary);
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%; /* Button takes full width */
    max-width: 350px; /* Maximum width for button */
    margin: 0 auto;
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background-color: #312e81;
}

/* Quantity Input */
.woocommerce div.product form.cart .quantity input.qty {
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 6px;
    margin-right: 10px;
}
.woocommerce-tabs.wc-tabs-wrapper ,.single-product .product_meta{
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .woocommerce div.product {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }

    .woocommerce div.product div.images {
        margin-bottom: 1.5rem;
    }

    .woocommerce div.product div.images img {
        max-width: 100%; /* Allow image to scale fully on smaller screens */
    }

  

    .woocommerce div.product .product_title {
        font-size: 1.75rem; /* Adjust title font size for mobile */
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 1.25rem; /* Adjust price font size for mobile */
    }

    .woocommerce div.product .single_add_to_cart_button {
        max-width: 100%;
    }
}


/* === STYLED WOO LOGIN & REGISTER FORMS === */

.woocommerce form.woocommerce-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.woocommerce form.woocommerce-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.woocommerce form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce form .form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
}

.woocommerce form input[type="text"],
.woocommerce form input[type="email"],
.woocommerce form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.woocommerce form input[type="text"]:focus,
.woocommerce form input[type="email"]:focus,
.woocommerce form input[type="password"]:focus {
    border-color: var(--theme-primary);
    outline: none;
}

.woocommerce-form-login .woocommerce-LostPassword,
.woocommerce-form-register .woocommerce-privacy-policy-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.woocommerce-form-login .woocommerce-LostPassword a {
    color: var(--theme-primary);
    text-decoration: none;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

/* Buttons */
.woocommerce form button.button {
    background-color: var(--theme-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.woocommerce form button.button:hover {
    background-color: #312e81;
}

/* Remember Me */
.woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.woocommerce-form__label-for-checkbox input {
    margin-right: 0.5rem;
}

/* Notice messages */
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
    background-color: var(--theme-alert-bg);
    color: var(--theme-alert-text);
    border-left: 4px solid var(--theme-alert-border);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce form.woocommerce-form {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
}
button.show-password-input {
    display: none !important;
}
.woocommerce h2 {
  
    text-align: center;
}
.woocommerce-account  h1.entry-title {
    display: none;
}
/* === LOST PASSWORD PAGE STYLING === */


.woocommerce form.woocommerce-ResetPassword {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.woocommerce form.woocommerce-ResetPassword h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.woocommerce form.woocommerce-ResetPassword p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
}

.woocommerce form.woocommerce-ResetPassword .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce form.woocommerce-ResetPassword label {
    display: block;
    font-weight: 500;
    color: #444;
    margin-bottom: 0.5rem;
}

.woocommerce form.woocommerce-ResetPassword input[type="text"],
.woocommerce form.woocommerce-ResetPassword input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.woocommerce form.woocommerce-ResetPassword input:focus {
    border-color: var(--theme-primary);
    outline: none;
}

/* Submit Button */
.woocommerce form.woocommerce-ResetPassword button.button {
    background-color: var(--theme-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

.woocommerce form.woocommerce-ResetPassword button.button:hover {
    background-color: #312e81;
}
.woocommerce-message {
    padding: 10px;
    /* border-radius: 9px; */
    margin-bottom: 12px;
}
/* Notices */
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
    background-color: var(--theme-alert-bg);
    color: var(--theme-alert-text);
    border-left: 4px solid var(--theme-alert-border);
    padding: 1rem 3.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    /* max-width: 500px; */
    border-top: unset !important;
    margin-left: auto;
    margin-right: auto;
}
a.wc-block-components-checkout-return-to-cart-button {
    display: none;
}
.single-product .woocommerce-notices-wrapper {
    display: none;
}

/* Example styles for Workbook History page */
.woocommerce-workbook-history-container {
    margin: 20px 0;
}

.woocommerce-workbook-history-container table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.woocommerce-workbook-history-container th,
.woocommerce-workbook-history-container td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.woocommerce-workbook-history-container th {
    background-color: #f4f4f4;
}

.woocommerce-workbook-history-container h2 {
    margin-bottom: 20px;
}

.address-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.woocommerce-Address {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.woocommerce-Address:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.woocommerce-Address h2 {
    font-size: 1.25rem;
    color: var(--theme-primary);
}

.woocommerce-Address a {
    font-weight: 500;
    color: var(--theme-primary);
    text-decoration: none;
}

.woocommerce-Address a:hover {
    text-decoration: underline;
}

aside#secondary {
    display: none !important;
}
div#comments {
    display: none;
}
.wp-theme-emdr-workbook h1.entry-title {
    display: none;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* new */
/* Home page */
#page .section-hero h1 {font-size: 48px;line-height: 48px;}
#page .section-hero .lead {font-size: 24px;line-height: 32px;margin-bottom: 32px !important;}
#page .heading {font-size: 30px;line-height: 36px;font-weight: 700;}
#page .section-hero .btn {font-weight: 500;font-size: 18px;line-height: 24px;padding: 10px 32px;border: none;color: #1d4ed8;background-color: #fff;height: 48px;border-radius: 8px;}
#page .section-workbook .card  {border-radius: 8px !important;}
#page .section-workbook .card-body h2 {margin-bottom: 12px;}
#page .section-workbook .card-body p {color: #4b5563 !important;}
#page .section-workbook .card-body a {font-weight: 500;}
#page .section-workbook .grid-template-columns {grid-template-columns: repeat(4, 1fr);gap: 32px;}
#page .section-how-to-use .getstartbtn {background-color: #2563eb;font-weight: 500;border-radius: 8px;height: 45.6px;line-height: 26px;}
#page .section-how-to-use .step-number {background: #dbeafe;color: #2563eb;font-size: 16px;    line-height:28px;}
#page .section-how-to-use p {color: #374151 !important;line-height: 24px;}
footer{background: var(--theme-primary);}
.btn:focus {box-shadow: none !important;}
a {text-decoration: none;}
.intropage p, .intropage li{color: #000;}
.intropage p span{color: #374151;font-weight: 400;}
.intropage .impNote {margin-bottom: 40px;position: relative;}
.intropage .impNote:before {width: 4px;height: 100%;content: "";position: absolute;top: 0;left: 0;}
.intropage .introContent .subHeading {font-size: 24px;color: #000;line-height: 32px;margin-bottom: 16px !important;}
.intropage .introContent {color: #000;}


.productPage .purchaseBtn{font-size: 18px;background: var(--theme-primary);padding: 10px 24px !important;}
.productPage h1 {color: #1d4ed8;}
.productPage p a {color: #1d4ed8;}
.productPagemain {min-height: calc(100vh - 113px);}
.intropage .continueBtn, .intropage .continueBtn:hover{background: #2563eb;font-size: 16px;line-height: 24px;}
.backtohomeBtn{color:#1f2937 !important;background: #e5e7eb;font-size: 16px;line-height: 24px; }


.myaccount-wrapper .account-sidebar {
    padding: 24px;
}
.myaccount-wrapper .account-sidebar .woocommerce-MyAccount-navigation {
    width: 100%;
}
.entry-footer {background: transparent;}
.entry-footer a{background: transparent;color: #000 !important;}
.page-id-42 #primary {
    min-height: calc(100vh - 182px);
}
.workbook-access-box{display: block;}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select,  .woocommerce form .form-row textarea {
    border: 1px solid #d1d5db !important;
}
.woocommerce form button.button:hover {
    background-color: var(--theme-primary);
    color: #fff;
}
/* EMDR WorkBook CSS Start */

div#frm_form_2_container {
    max-width: 56rem;
	margin-left: auto;
    margin-right: auto;
}

h3.frm_pos_top.frm_section_spacing {
    background-color: rgb(37 99 235) !important;
	padding: 1rem  !important;
	color: rgb(255 255 255)  !important;
}


.frm_form_field {
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	border-radius: .5rem;
	background-color: rgb(255 255 255);
	padding: 1.5rem;
}



.hide-form-label label {
    display: none !important;
}
.note-to-self {
    background-color: rgb(254 252 232);
    border-left-width: 4px !important;
    border: 0 solid rgb(250 204 21);
	color: rgb(161 98 7) !important;
}
.note-to-self p{
	color: rgb(161 98 7) !important;

}
.note-to-self h4 {
	color: rgb(133 77 14) !important;

}
button.frm_save_draft {
    background: rgb(22 163 74) !important;
    color: white !important;
    border-color: rgb(22 163 74) !important;
}
/* .frm_style_formidable-style.with_frm_style .form-field.frm_section_heading {
    
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
} */
.frm_rootline_line li:nth-child(5),
.frm_rootline_line li:nth-child(6),.frm_rootline_line li:nth-child(7) {
  display: none !important;
}
.frm_rootline_line li:nth-child(4)::after {
	content: none !important;
  }
  

/* EMDR WorkBook CSS Start */
.with_frm_style .frm_form_field.frm_html_container {margin-bottom: 0 !important;    color: #000;}

.entry-content .impNote {
   
    margin-bottom: 40px;
    position: relative;
}
.entry-content .impNote:before {
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
}


.entry-content .frm_form_field {
    padding: 0;   margin-top: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}
.entry-content .frm_form_field  h3.frm_pos_top.frm_section_spacing{  margin-bottom: 0 !important;}
.entry-content .frm_form_field .frm_form_field {padding-left:24px !important; padding-right:24px !important; margin-top: 24px !important;margin-bottom: 0 !important;}
.entry-content .frm_form_field .frm_form_field h3 {font-size: 18px !important;line-height: 28px !important;margin-bottom: 12px !important;}
.entry-content .frm_form_field .frm_form_field p {font-size: 16px !important;line-height: 24px !important;margin-bottom: 16px !important;}
.entry-content .frm_form_field .frm_form_field .frm_primary_label{font-size: 16px !important;line-height: 24px !important;font-weight: 500;margin-bottom: 8px !important;padding: 0 !important;}
.entry-content .with_frm_style textarea{height:113px ;border-radius: 8px;}
.entry-content .frm_form_field .frm_form_field p:last-child {
    margin-bottom: 0 !important;
}
.entry-content #frm_field_48_container {margin-top: 0 !important;}

.entry-content #frm_field_47_container h3{margin-bottom: 16px !important;}

.timeline_table {
    padding: 24px;
}
.timeline_table .timeline_table_tr {
    display: flex;
    border: 1px solid #d1d5db;
    border-bottom: 0 !important;
}
.timeline_table .timeline_table_tr .frm_form_field {
    width: 100%;
    margin: 0 !important;
    padding: 8px 16px !important;
    overflow-x: auto;
}
.timeline_table .timeline_table_tr:last-child {
    border-bottom: 1px solid #d1d5db !important;
}
.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading h3 {
    font-size: 18px !important;
    line-height: 22px;
}
.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading h3.frm_pos_top.frm_section_spacing {
    font-size: 20px !important;
    line-height: 24px;
}

#frm_field_53_container {
    padding-bottom: 24px;    margin-bottom: 24px !important;
    margin-top: 32px !important;
}
#frm_field_53_container {
    padding-bottom: 24px;
}
#frm_field_47_container {
    margin-top: 0 !important;
}
#frm_field_60_container .space-y-4 {
    display: none;
}
#frm_field_60_container h4.font-medium.mb-2 {
    font-size: 16px;
}
#frm_field_61_container {
    margin-top: 0 !important;
}
#frm_field_19_container {
    padding-bottom: 24px !important;
}

.entry-content .frm_form_field .frm_form_field .frm_range_container input {
    width: 70%;
}
.entry-content .frm_form_field .frm_form_field .label_range {
    width: 40%;
}
.entry-content .frm_form_field .frm_form_field .frm_range_container {display: flex;gap: 16px;width: 100%;justify-content: space-between;}
.entry-content .frm_form_field .frm_form_field .frm_range_container .frm-text-right {width: 50%;text-align: center !important;}
.with_frm_style .frm_submit.frm_flex button{ padding: 8px 24px;}
.entry-content .frm_form_field .frm_form_field .frm_submit.frm_flex {justify-content: left;margin-top: 0;}
.with_frm_style .frm_submit.frm_flex {margin-top: 16px;justify-content: end;}

.frm_page_num_2 h3.frm_pos_top.frm_section_spacing {
    background: #16a34a !important;
}
.entry-content  .technique_div {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;margin-top: 32px;
    padding-bottom: 32px;
}
.entry-content .frm_form_field .frm_form_field ul {
    margin-left: 0;
    padding-left: 24px;
}
.entry-content .frm_form_field .technique_div .frm_form_field{padding-left: 0 !important;padding-right: 0 !important;}
.entry-content .impNote p {margin-bottom: 0 !important;}
#frm_field_148_container .space-y-6 {display: none;}
#frm_field_148_container h3{margin-bottom: 0;}
.entry-content .impNote .bg-yellow-50.border-l-4.border-yellow-400.p-4.my-6 {padding: 0 !important;}
#frm_field_127_container {margin-bottom: 32px;padding-bottom: 24px;}
#frm_field_127_container {margin-bottom: 32px;padding-bottom: 24px;}
#frm_field_373_container {margin-top: 24px !important;}
#frm_field_202_container {margin-top: 24px !important;}
div#frm_field_154_container {
    padding-bottom: 24px;
}
div#frm_field_202_container {
    padding-bottom: 24px;
}
.with_frm_style .frm_submit .frm_prev_page + .frm_save_draft, .with_frm_style .frm_submit .frm_button_submit + .frm_save_draft {display: none;}
.with_frm_style .frm_submit.frm_flex { justify-content: space-between;}
.with_frm_style .frm_submit .frm_prev_page, .with_frm_style .frm_submit .frm_button_submit{
    color: transparent !important;
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content !important;
    max-width: 100%;    min-width: 200px !important;
    min-width: auto;
    background: #e5e7eb;
}
.with_frm_style .frm_submit .frm_prev_page:before {
    color: black;
    position: absolute;
    color: #fff;
}

.frm_page_num_1 .with_frm_style .frm_submit  .frm_button_submit {background: #2563eb;}
.frm_page_num_2 .with_frm_style .frm_submit  .frm_button_submit {background: #16a34a;}
.with_frm_style .frm_submit .frm_button_submit:before {
   color: #fff;
    position: absolute;
    color: #fff;
}
.frm_page_num_1 .frm_submit .frm_button_submit:before { content: "Continue to Section 2 →" !important}
.frm_page_num_2 .frm_submit .frm_button_submit:before { content: "Continue to Section 3 →" !important}
.frm_page_num_3 .frm_submit .frm_button_submit:before { content: "Continue to Section 4 →" !important}
.frm_page_num_4 .frm_submit .frm_button_submit:before { content: "Continue to Conclusion →" !important}

.frm_page_num_2 .frm_submit .frm_prev_page:before {content: "← Back to Section 1" !important;}
.frm_page_num_3 .frm_submit .frm_prev_page:before {content: "← Back to Section 2" !important;}
.frm_page_num_4 .frm_submit .frm_prev_page:before {content: "← Back to Section 3" !important;}


/* impNote color */
.impNoteblue {background: #eff6ff;color: #2563eb;}
.impNoteblue:before {background: #2563eb;}
.impNotegreen{color: #16a34a; background: #f0fdf4;}
.impNotegreen:before{background: #16a34a;}
.impNoteyellow {background: #fefce8;padding: 16px !important;}
.impNoteyellow:before{background: #facc15;}
.impNotepurple {background: #faf5ff;color: #9333ea !important;}
.impNotepurple:before{background: #9333ea;}
.impNoteteal {background: #f0fdfa;color: #Ea580C;}
.impNoteteal:before{background: #Ea580C;}
#frm_field_236_container .frm_range_container .frm-text-right {width: auto;}
#frm_field_236_container .frm_range_container #field_64lf9 {width: 100%;}
#frm_field_236_container .frm_range_container {gap: 30px;}
#frm_field_230_container {margin-bottom: 32px !important;padding-bottom: 24px;}
#frm_field_268_container input#field_metwy {width: 100%;}
#frm_field_268_container .frm-text-right {width: auto !important;}
#frm_field_268_container input#field_metwy {width: 100%;}
#frm_field_268_container .frm-text-right{   width: auto;}
#frm_field_260_container {margin-bottom: 32px;padding-bottom: 24px;}
#frm_field_289_container input#field_5eg0e {width: 100%;}
#frm_field_289_container .frm-text-right{   width: auto;}
.frm_page_num_3 h3.frm_pos_top.frm_section_spacing {background: #9333ea !important;}
#frm_field_233_container h4 + .mb-4 {display: none;}
#frm_field_246_container .space-y-3.mb-6 {display: none;}
.with_frm_style .frm_input_group .frm_inline_box:first-child {background: transparent;    box-shadow: none !important;border: none !important;}
#frm_field_255_container .space-y-6 {display: none;}
#frm_field_255_container h3.text-xl.font-semibold.mb-4{margin-bottom: 0 !important;}
#frm_field_230_container {padding-bottom: 24px;margin-bottom: 32px;}
#frm_field_275_container .space-y-6 {display: none;}
#frm_field_260_container {margin-bottom: 32px !important;padding-bottom: 24px;}
#frm_field_285_container h4.font-bold.text-lg + .mb-4 {display: none;}
#frm_field_285_container h4.font-bold.text-lg + .mb-4 {display: none;}
#frm_field_281_container {margin-bottom: 32px !important;padding-bottom: 24px;}
.entry-content .technique_mgn #frm_field_233_container, .entry-content .technique_mgn  h4.font-bold.text-lg.mb-4 {margin-top: 0 !important;margin-bottom: 0 !important;}
#frm_field_376_container h4 + .mb-4 {display: none;  margin-bottom: 0 !important;}
#frm_field_264_container h4.font-bold.text-lg.mb-4 {margin-bottom: 0 !important;}
#frm_field_264_container h4 + .mb-4 {display: none;}

#frm_field_273_container h4.font-bold.text-lg.mb-4 {margin-bottom: 0 !important;}
#frm_field_275_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_285_container h4.font-bold.text-lg.mb-4 {margin-bottom: 0 !important;}
#frm_field_364_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_479_container h4 + .mb-4 {display: none;}
#frm_field_479_container h4 {margin-bottom: 0 !important;}

#frm_field_474_container {padding-bottom: 24px;margin-bottom: 32px;}
#frm_field_523_container {padding-bottom: 24px;margin-bottom: 32px;}
#frm_field_553_container h4 +.mb-4 {display: none;}
#frm_field_553_container h4 {margin-bottom: 0 !important;}

/* .frm_page_num_4 .frm_submit.frm_flex .frm_button_submit {display: none;} */

#frm_field_376_container h4.font-bold.text-lg.mb-4 {margin-bottom: 0 !important;}
#frm_field_376_container {margin-top: 0 !important;}
#frm_field_386_container {margin-top: 0 !important;}
#frm_field_391_container {margin-top: 0 !important;}
#frm_field_391_container h4 + .mb-4 {display: none;}
#frm_field_396_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
.entry-content .technique_div #frm_field_130_container {margin-top: 0 !important;}
.entry-content .technique_div #frm_field_134_container {margin-top: 0 !important;}
#frm_field_148_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_157_container h4 + .flex.justify-center.mb-6 {display: none;}
#frm_field_158_container{margin-top: 0 !important;}

.entry-content .technique_div #frm_field_135_container {margin-bottom: 0 !important;}
.entry-content .technique_div #frm_field_137_container {margin-bottom: 0 !important;}
.entry-content .technique_div #frm_field_140_container {margin-bottom: 0 !important;}
#frm_field_159_container h4.font-medium.mb-3 {margin-bottom: 0 !important;}
#frm_field_159_container h4.font-medium.mb-3 .mb-4{display: none;}
#frm_field_197_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_211_container, div#frm_field_213_container , div#frm_field_206_container, div#frm_field_209_container{margin-top: 0 !important;}
#frm_field_222_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_222_container h3.text-xl.font-semibold.mb-4 + .space-y-6 {display: none;}
.entry-content .frm_form_field .frm_form_field h4 {font-size: 18px;line-height: 20px;font-weight: 700;}
#frm_field_247_container {margin-top: 0 !important;}
.entry-content .frm_form_field .frm_form_field input {border-radius: 6px !important;border-radius: 8px !important;}
#frm_field_248_container, 
#frm_field_249_container, 
#frm_field_250_container, 
#frm_field_251_container, 
#frm_field_252_container, 
#frm_field_253_container, 
#frm_field_254_container, 
#frm_field_255_container, 
#frm_field_256_container, 
#frm_field_257_container, 
#frm_field_258_container
{margin-top: 12px;}
#frm_field_482_container p + .mb-4 {display: none;}
#frm_field_482_container p.font-medium.mb-2 {margin-bottom: 0 !important;}
#frm_field_280_container .grid.grid-cols-1.md\:grid-cols-2.gap-6, #frm_field_284_container .grid.grid-cols-1.md\:grid-cols-2.gap-6 {display: grid;grid-template-columns: repeat(2, 1fr);}
#frm_field_280_container .grid.grid-cols-1.md\:grid-cols-2.gap-6 h5.font-medium.mb-2 , #frm_field_284_container .grid.grid-cols-1.md\:grid-cols-2.gap-6  h5.font-medium.mb-2 {font-size: 16px;line-height: 24px;}
#frm_field_284_container {margin-top: 0 !important;}

#frm_field_89_container h3 {margin-bottom: 0 !important;}
#frm_field_89_container h3 + .space-y-6{display: none;}
#frm_field_137_container {margin-top: 0 !important;}
#frm_field_138_container {margin-top: 0 !important;}
#frm_field_140_container {margin-top: 0 !important;}
#frm_field_141_container {margin-top: 0 !important;}
#frm_field_280_container {margin-top: 0 !important;}
#frm_field_284_container {margin-top: 0 !important;}
#frm_field_285_container {margin-top: 0 !important;}
#frm_field_517_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_517_container h3.text-xl.font-semibold.mb-4 + .space-y-6{display: none;}
.entry-content .frm_form_field .frm_form_field .space-y-6 h5 {margin-top: 16px;}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{font-weight: 600;}
#frm_field_478_container {margin-top: 0 !important;}
#frm_field_479_container {margin-top: 0 !important;}
#frm_field_517_container h3.text-xl.font-semibold.mb-4 {margin-bottom: 0 !important;}
#frm_field_517_container h3.text-xl.font-semibold.mb-4 + .space-y-6 {display: none;}
#frm_field_532_container h5.font-medium.mb-2 + .mb-4 {display: none;}
#frm_field_532_container h5.font-medium.mb-2 {margin-bottom: 0 !important;}
#frm_field_526_container {margin-top: 0 !important;}
#frm_field_527_container {margin-top: 0 !important;}
#frm_field_544_container {margin-top: 0 !important;}
#frm_field_545_container h3.text-xl.font-semibold.mb-4{margin-bottom: 0 !important;}
#frm_field_545_container h3.text-xl.font-semibold.mb-4 + .space-y-6{display: none;}
.entry-content .self_compassion {margin-bottom: 32px;margin-top: 32px !important;padding-bottom: 24px;}
#frm_field_403_container {padding: 0 !important;margin-top: 0 !important;border-bottom-left-radius: 0;border-bottom-right-radius: 0;}
#frm_field_431_container {padding: 0 !important;margin-top: 23px !important;}
#frm_field_434_container h4.font-bold.text-lg.mb-4{margin-bottom: 0 !important;}
#frm_field_434_container h4.font-bold.text-lg.mb-4 + .mb-4{display: none;}

#frm_field_445_container .frm-text-right {
    width: auto;
}
#frm_field_373_container h3.frm_pos_top.frm_section_spacing {
    background: #Ea580C !important;
}
div#frm_field_391_container h4.font-bold.text-lg.mb-4 {
    margin-bottom: 0 !important;
}

div#frm_field_397_container {
    margin-top: 16px !important;
}
.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading h3.frm_pos_top.frm_section_spacing.bg-teal {
    background: #Ea580C !important;
}
.frm_form_field.frm_section_main {
    background: white;
}
div#frm_field_434_container {
    margin-top: 0 !important;
}
div#frm_field_438_container p + .space-y-3 {
    display: none;
}


.frm_fields_container + .frm_form_field.frm_section_main {
    margin-top: 32px !important;
}

div#frm_field_654_container {
    padding-bottom: 24px !important;    padding-left: 0 !important;
}
div#frm_field_406_container {
    margin-top: 0 !important;
}
.technique_div h5 {
    font-size: 16px;line-height: 24px;
}
ol.list-decimal.pl-6.space-y-2 {
    padding-left: 24px !important;
    margin: 0 !important;
}


.technique_div.self-compassion #frm_field_406_container .space-y-4 div {
    margin-bottom: 16px;
}
.technique_div.self-compassion #frm_field_406_container .space-y-4 div:last-child {
    margin-bottom: 0;
}
div#frm_field_412_container {
    margin-top: 0 !important;
}
div#frm_field_422_container h4.font-bold.text-lg.mb-4 + .mb-4 {
    display: none;
}
div#frm_field_422_container h4.font-bold.text-lg.mb-4 {
    margin-bottom: 0 !important;
}
div#frm_field_438_container p {
    margin-bottom: 0 !important;
}

div#frm_field_439_container {
    margin-top: 0 !important;
}
div#frm_field_452_container {
    margin-top: 0 !important;
}
div#frm_field_452_container h3.frm_pos_top {
    border: none;
    padding: 0 !important;
}
div#frm_field_452_container + .frm_form_field.frm_hidden_container.frm_repeat_buttons {
    display: none;
}
div#frm_field_463_container {
    margin-top: 0 !important;
}
div#frm_field_463_container h3.text-xl.font-semibold.mb-4 + .space-y-6 {
    display: none;
}
.with_frm_style .frm_submit.frm_flex button {
    max-width: 240px !important;
    padding: 15px 24px;
    width: 100% !important;
}
.entry-content .reflectionQue .frm_form_field {
    padding: 0 !important;
}
div#frm_field_120_container{padding: 16px !important;font-size: 16px;}

div#frm_field_120_container h4.font-bold.text-yellow-800 {
    font-size: 16px;
    margin-bottom: 4px;
}
div#frm_field_478_container p.font-medium.mb-1 {
    margin: 0 !important;
    font-weight: 500 !important;
}

.entry-content .impNote h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.entry-content .impNote.impNoteyellow {padding: 16px !important;}
.entry-content .impNote.impNoteyellow h2 {color: #854d0e;}
.entry-content .impNote.impNoteyellow p {color: #a16207;}
.with_frm_style .frm_submit.frm_flex button.frm_save_draft {
    width: auto !important;
    padding: 8px 16px;
    margin: 0 !important;
}
.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .frm_style_formidable-style.with_frm_style input[type=submit], .frm_style_formidable-style.with_frm_style .frm_submit input[type=button], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style, .frm_style_formidable-style.with_frm_style .frm-edit-page-btn{
    background: #2563eb;    border-color: #2563eb;
}
.frm_button_submit, .frm_prev_page{
    padding: 8px 16px !important;
}
.frm_page_num_2 .frm_button_submit {
    background: #16a34a !important;
    border-color: #16a34a !important;
}
.frm_page_num_3  .frm_button_submit {
    background: #9333ea !important;
    border-color: #9333ea !important;
}
.frm_page_num_4  .frm_button_submit {
    background: #Ea580C !important;
    border-color: #Ea580C !important;
}

.frm_style_formidable-style.with_frm_style .frm_page_bar .frm_current_page .frm_page_1{
    background-color: #2563eb !important;
    border-color: #EAECF0;
}

.entry-content .frm_page_num_2 .frm_fields_container .frm_page_bar .frm_current_page .frm_page_1{ background: #2563eb !important;color: #fff;}
.entry-content .frm_page_num_2 .frm_fields_container .frm_page_bar .frm_current_page .frm_page_2{ background: #16a34a !important;color: #fff;}
.entry-content .frm_page_num_3 .frm_fields_container .frm_page_bar .frm_current_page .frm_page_3{ background: #9333ea !important;color: #fff;}
.entry-content .frm_page_num_4 .frm_fields_container .frm_page_bar .frm_current_page .frm_page_4{ background: #Ea580C !important;color: #fff;}

.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_back.frm_page_1{ background: #2563eb !important;color: #fff;}
.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_back.frm_page_2{ background: #16a34a !important;color: #fff;}
.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_back.frm_page_3{ background: #9333ea !important;color: #fff;}
.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_back.frm_page_4{ background: #Ea580C !important;color: #fff;}


.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_skip.frm_page_1{ background: #2563eb !important;color: #fff;}
.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_skip.frm_page_2{ background: #16a34a !important;color: #fff;}
.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_skip.frm_page_3{ background: #9333ea !important;color: #fff;}
.entry-content .frm_fields_container .frm_page_bar .frm_rootline_single .frm_page_skip.frm_page_4{ background: #Ea580C !important;color: #fff;}


/* .entry-content .frm_style_formidable-style.with_frm_style .frm_rootline .frm_current_page input[type="button"], .entry-content .frm_style_formidable-style.with_frm_style .frm_page_bar input.frm_rootline_show_more_btn.active
{background-color: #2563eb !important;} */
div#frm_field_693_container {
    margin-top: 0 !important;
}


    .section-hero sup {
        top: -1.3em ;
        font-size: 18px;
    }

/* Responsive */
@media (max-width:102px) {
    #page .section-workbook .grid-template-columns {
        grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width:991px) {
.productPage h1 { font-size: 24px !important;line-height: 32px;}
.productPage p {font-size: 16px;line-height: 24px;}
}


@media (max-width: 767px) {
    #page .section-hero h1 {font-size: 36px;line-height: 40px;}
    #page .section-hero .lead {font-size: 20px;line-height: 28px;}
    #page .section-workbook .grid-template-columns {grid-template-columns: repeat(1, 1fr);}

    .myaccount-wrapper {
        flex-direction: column;
		margin: 5%;
    }

    .account-sidebar,
    .account-content {
        flex: 1 1 100%;
        padding: 1.5rem;
    }
    .wp-video-shortcode {
        width: -webkit-fill-available !important;
    }
    .wp-video {
        width: auto !important;
    }
    .timeline_table {
        padding: 17px 0px 0px 0px;
    }
    .timeline_table .timeline_table_tr .frm_form_field {
        padding: 3px !important;
    }

    #frm_field_280_container .grid.grid-cols-1.md\:grid-cols-2.gap-6, #frm_field_284_container .grid.grid-cols-1.md\:grid-cols-2.gap-6 {
        display: block;
    }
    .timeline_table .timeline_table_tr p {
        font-size: 12px !important;
    }
  .section-hero sup{
    top: -1.1em !important;
    font-size: 13px;
    }
  
}
