<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * OptimizePress Styles Migration
 * 
 * Modern CSS styles for OptimizePress shortcodes
 * Extracted from the original plugin and updated for compatibility
 * 
 * @package FollowTheMoney
 * @version 1.0.0
 */

/* ==========================================================================
   ARROWS SHORTCODE
   ========================================================================== */

.op-arrows {
    text-align: center;
    margin: 20px 0;
}

.op-arrows img {
    max-width: 100%;
    height: auto;
}

.op-arrows.text-left {
    text-align: left;
}

.op-arrows.text-right {
    text-align: right;
}

.op-arrows.text-center {
    text-align: center;
}

/* ==========================================================================
   BULLET BLOCK SHORTCODE
   ========================================================================== */

.op-bullet-block {
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    background: #f9f9f9;
}

.bullet-block-style-1 {
    border-left: 4px solid #007cba;
}

.bullet-block-style-2 {
    border-left: 4px solid #28a745;
}

.bullet-block-style-3 {
    border-left: 4px solid #dc3545;
}

.bullet-block-style-4 {
    border-left: 4px solid #ffc107;
}

.op-bullet-block.text-left {
    text-align: left;
}

.op-bullet-block.text-right {
    text-align: right;
}

.op-bullet-block.text-center {
    text-align: center;
}

/* ==========================================================================
   CONTENT TOGGLE SHORTCODE
   ========================================================================== */

.op-toggle-panel {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.op-toggle-panel-toggle-text {
    display: block;
    padding: 15px 20px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.op-toggle-panel-toggle-text:hover {
    background: #e9ecef;
    text-decoration: none;
    color: #333;
}

.op-toggle-panel-toggle {
    float: right;
    padding: 15px 20px;
    background: #007cba;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-left: 1px solid #ddd;
}

.op-toggle-panel-toggle:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.op-toggle-panel-content {
    padding: 20px;
    background: white;
    display: none;
}

.op-toggle-panel-content.active {
    display: block;
}

/* ==========================================================================
   COURSE DESCRIPTION SHORTCODE
   ========================================================================== */

.op-course-description {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.course-description-1 {
    border-left: 4px solid #007cba;
}

.course-description-2 {
    border-left: 4px solid #28a745;
}

.course-description-3 {
    border-left: 4px solid #dc3545;
}

.op-course-description h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.op-course-description img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.op-course-description-content {
    line-height: 1.6;
}

/* ==========================================================================
   DIVIDER SHORTCODE
   ========================================================================== */

.op-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.op-divider img {
    max-width: 100%;
    height: auto;
}

.op-divider-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 15px;
    color: #666;
    font-weight: 600;
}

.divider-style-1 {
    border-bottom: 1px solid #ddd;
}

.divider-style-2 {
    border-bottom: 2px solid #007cba;
}

.divider-style-3 {
    border-bottom: 3px solid #28a745;
}

/* ==========================================================================
   FEATURE BLOCK SHORTCODE
   ========================================================================== */

.op-feature-block {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-block-one-col .op-feature {
    flex: 1 1 100%;
}

.feature-block-two-col .op-feature {
    flex: 1 1 calc(50% - 10px);
}

.feature-block-three-col .op-feature {
    flex: 1 1 calc(33.333% - 14px);
}

.feature-block-four-col .op-feature {
    flex: 1 1 calc(25% - 15px);
}

.op-feature {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.op-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.op-feature-block-icon-container {
    display: inline-block;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 50%;
    background: #f8f9fa;
}

.op-feature-block-icon-container img {
    max-width: 100%;
    height: auto;
}

.op-feature h2 {
    margin: 15px 0;
    color: #333;
    font-size: 1.2em;
}

.op-feature-content {
    line-height: 1.6;
    color: #666;
}

/* Feature Block Styles */
.feature-block-style-icon .op-feature-block-icon-container {
    background: #007cba;
}

.feature-block-style-image .op-feature-block-icon-container {
    background: #28a745;
}

.feature-block-style-1 .op-feature-block-icon-container {
    background: #dc3545;
}

.feature-block-style-2 .op-feature-block-icon-container {
    background: #ffc107;
}

.feature-block-style-3 .op-feature-block-icon-container {
    background: #6f42c1;
}

.feature-block-style-4 .op-feature-block-icon-container {
    background: #fd7e14;
}

/* ==========================================================================
   FEATURE BOX SHORTCODE
   ========================================================================== */

.feature-box {
    margin: 30px 0;
    padding: 0;
    border-radius: 6px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    border:2px solid #ccc;
}

.feature-box:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.feature-box .box-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.4em;
    font-weight: 600;
}

.feature-box-content {
    line-height: 1.6;
    color: #666;
}

.feature-box-align-left {
    text-align: left;
}

.feature-box-align-center {
    text-align: center;
}

.feature-box-align-right {
    text-align: right;
}

/* ==========================================================================
   FILE DOWNLOAD SHORTCODE
   ========================================================================== */

.downloadlist-title-container {
    margin-bottom: 20px;
}

.downloadlist-title {
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
}

.downloadlist-1,
.downloadlist-2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.downloadlist-1 li,
.downloadlist-2 li {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    transition: box-shadow 0.3s ease;
}

.downloadlist-1 li:hover,
.downloadlist-2 li:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.downloadlist-1 .thumb,
.downloadlist-2 .thumb {
    float: left;
    margin-right: 15px;
}

.downloadlist-1 .thumb img,
.downloadlist-2 .thumb img {
    max-width: 60px;
    height: auto;
    border-radius: 3px;
}

.downloadlist-1 .content,
.downloadlist-2 .content {
    overflow: hidden;
}

.downloadlist-1 .content a,
.downloadlist-2 .content a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.downloadlist-1 .content a:hover,
.downloadlist-2 .content a:hover {
    text-decoration: underline;
}

.downloadlist-1 .content p,
.downloadlist-2 .content p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9em;
}

/* ==========================================================================
   GUARANTEE BOX SHORTCODE
   ========================================================================== */

.op-guarantee-box {
    margin: 30px 0;
    padding: 25px;
    border: 2px solid #28a745;
    border-radius: 8px;
    background: #f8fff9;
    text-align: center;
    position: relative;
}

.guarantee-box-1 {
    border-color: #28a745;
    background: #f8fff9;
}

.guarantee-box-2 {
    border-color: #007cba;
    background: #f8fbff;
}

.guarantee-box-3 {
    border-color: #dc3545;
    background: #fff8f8;
}

.guarantee-box-4 {
    border-color: #ffc107;
    background: #fffef8;
}

.guarantee-box-5 {
    border-color: #6f42c1;
    background: #faf8ff;
}

.op-guarantee-box img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.op-guarantee-box h3 {
    margin: 15px 0;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
}

.op-guarantee-content {
    line-height: 1.6;
    color: #666;
}

/* ==========================================================================
   HEADLINE SHORTCODE
   ========================================================================== */

.headline-style-1 {
    color: #333;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.headline-style-2 {
    color: #007cba;
    font-weight: 600;
    border-bottom: 2px solid #007cba;
    padding-bottom: 5px;
}

.headline-style-3 {
    color: #28a745;
    font-weight: 600;
    border-bottom: 2px solid #28a745;
    padding-bottom: 5px;
}

.headline-style-4 {
    color: #dc3545;
    font-weight: 600;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 5px;
}

.headline-style-5 {
    color: #ffc107;
    font-weight: 600;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 5px;
}

.headline-style-6 {
    color: #6f42c1;
    font-weight: 600;
    border-bottom: 2px solid #6f42c1;
    padding-bottom: 5px;
}

.headline-style-7 {
    color: #fd7e14;
    font-weight: 600;
    border-bottom: 2px solid #fd7e14;
    padding-bottom: 5px;
}

.headline-style-8 {
    color: #20c997;
    font-weight: 600;
    border-bottom: 2px solid #20c997;
    padding-bottom: 5px;
}

.headline-style-9 {
    color: #e83e8c;
    font-weight: 600;
    border-bottom: 2px solid #e83e8c;
    padding-bottom: 5px;
}

.headline-style-10 {
    color: #6c757d;
    font-weight: 600;
    border-bottom: 2px solid #6c757d;
    padding-bottom: 5px;
}

.headline-style-11 {
    color: #17a2b8;
    font-weight: 600;
    border-bottom: 2px solid #17a2b8;
    padding-bottom: 5px;
}

.headline-style-12 {
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-style-13 {
    color: #007cba;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-style-14 {
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-style-15 {
    color: #dc3545;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-style-16 {
    color: #ffc107;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-style-17 {
    color: #6f42c1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TWO COLUMN BLOCK SHORTCODE
   ========================================================================== */

.op-double-column {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.op-double-column .col-left,
.op-double-column .col-right {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}


/* ==========================================================================
   BUTTON SHORTCODES
   ========================================================================== */

.op-button-wrapper {
    margin: 20px 0;
}

.op-button-wrapper.text-left {
    text-align: left;
}

.op-button-wrapper.text-right {
    text-align: right;
}

.op-button-wrapper.text-center {
    text-align: center;
}

.op-button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.4;
    background: #c7a800;
    color:#42390b !important;
}

.op-button:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* Button Sizes */
.button-size-small {
    padding: 8px 16px;
    font-size: 14px;
}

.button-size-medium {
    padding: 12px 24px;
    font-size: 16px;
}

.button-size-large {
    padding: 16px 32px;
    font-size: 18px;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .op-double-column {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-block-two-col .op-feature,
    .feature-block-three-col .op-feature,
    .feature-block-four-col .op-feature {
        flex: 1 1 100%;
    }
    
    .op-button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .op-button-wrapper.text-left,
    .op-button-wrapper.text-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .op-feature-block {
        gap: 15px;
    }
    
    .op-feature {
        padding: 15px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .op-toggle-panel-toggle-text,
    .op-toggle-panel-toggle {
        padding: 12px 15px;
    }
    
    .op-toggle-panel-content {
        padding: 15px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .op-toggle-panel-toggle,
    .op-toggle-panel-toggle-text {
        display: none !important;
    }
    
    .op-toggle-panel-content {
        display: block !important;
    }
    
    .op-button {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .op-feature-block {
        display: block !important;
    }
    
    .op-feature {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
}
</pre></body></html>