/* global wp_mail_smtp_tools_debug_events, ajaxurl, flatpickr */ /** * WPMailSMTP Debug Events functionality. * * @since 3.0.0 */ 'use strict'; var WPMailSmtpDebugEvents = window.WPMailSmtpDebugEvents || ( function( document, window, $ ) { /** * Elements. * * @since 3.0.0 * * @type {object} */ var el = { $debugEventsPage: $( '.wp-mail-smtp-tab-tools-debug-events' ), $dateFlatpickr: $( '.wp-mail-smtp-filter-date-selector' ), }; /** * Public functions and properties. * * @since 3.0.0 * * @type {object} */ var app = { /** * Start the engine. * * @since 3.0.0 */ init: function() { $( app.ready ); }, /** * Document ready. * * @since 3.0.0 */ ready: function() { app.initDateRange(); app.events(); // Open debug event popup from the query string. var searchParams = new URLSearchParams( location.search ); if ( searchParams.has( 'debug_event_id' ) ) { app.openDebugEventPopup( searchParams.get( 'debug_event_id' ) ); } }, /** * Register JS events. * * @since 3.0.0 */ events: function() { el.$debugEventsPage.on( 'click', '#wp-mail-smtp-reset-filter .reset', app.resetFilter ); el.$debugEventsPage.on( 'click', '#wp-mail-smtp-delete-all-debug-events-button', app.deleteAllDebugEvents ); el.$debugEventsPage.on( 'click', '.js-wp-mail-smtp-debug-event-preview', app.eventClicked ); }, /** * Init Flatpickr at Date Range field. * * @since 3.0.0 */ initDateRange: function() { var langCode = wp_mail_smtp_tools_debug_events.lang_code, flatpickrLocale = { rangeSeparator: ' - ', }; if ( flatpickr !== 'undefined' && Object.prototype.hasOwnProperty.call( flatpickr, 'l10ns' ) && Object.prototype.hasOwnProperty.call( flatpickr.l10ns, langCode ) ) { flatpickrLocale = flatpickr.l10ns[ langCode ]; flatpickrLocale.rangeSeparator = ' - '; } el.$dateFlatpickr.flatpickr( { altInput : true, altFormat : 'M j, Y', dateFormat: 'Y-m-d', locale : flatpickrLocale, mode : 'range' } ); }, /** * Reset filter handler. * * @since 3.0.0 */ resetFilter: function() { var $form = $( this ).parents( 'form' ); $form.find( $( this ).data( 'scope' ) ).find( 'input,select' ).each( function() { var $this = $( this ); if ( app.isIgnoredForResetInput( $this ) ) { return; } app.resetInput( $this ); } ); // Submit the form. $form.submit(); }, /** * Reset input. * * @since 3.0.0 * * @param {object} $input Input element. */ resetInput: function( $input ) { switch ( $input.prop( 'tagName' ).toLowerCase() ) { case 'input': $input.val( '' ); break; case 'select': $input.val( $input.find( 'option' ).first().val() ); break; } }, /** * Input is ignored for reset. * * @since 3.0.0 * * @param {object} $input Input element. * * @returns {boolean} Is ignored. */ isIgnoredForResetInput: function( $input ) { return [ 'submit', 'hidden' ].indexOf( ( $input.attr( 'type' ) || '' ).toLowerCase() ) !== -1 && ! $input.hasClass( 'flatpickr-input' ); }, /** * Process the click on the delete all debug events button. * * @since 3.0.0 * * @param {object} event jQuery event. */ deleteAllDebugEvents: function( event ) { event.preventDefault(); var $btn = $( event.target ); $.confirm( { backgroundDismiss: false, escapeKey: true, animationBounce: 1, closeIcon: true, type: 'orange', icon: app.getModalIcon( 'exclamation-circle-solid-orange' ), title: wp_mail_smtp_tools_debug_events.texts.notice_title, content: wp_mail_smtp_tools_debug_events.texts.delete_all_notice, buttons: { confirm: { text: wp_mail_smtp_tools_debug_events.texts.yes, btnClass: 'btn-confirm', keys: [ 'enter' ], action: function() { app.executeAllDebugEventsDeletion( $btn ); } }, cancel: { text: wp_mail_smtp_tools_debug_events.texts.cancel, btnClass: 'btn-cancel', } } } ); }, /** * Process the click on the event item. * * @since 3.0.0 * * @param {object} event jQuery event. */ eventClicked: function( event ) { event.preventDefault(); app.openDebugEventPopup( $( this ).data( 'event-id' ) ); }, /** * Open debug event popup. * * @since 3.5.0 * * @param {int} eventId Debug event ID. */ openDebugEventPopup: function( eventId ) { var data = { action: 'wp_mail_smtp_debug_event_preview', id: eventId, nonce: $( '#wp-mail-smtp-debug-events-nonce', el.$debugEventsPage ).val() }; var popup = $.alert( { backgroundDismiss: true, escapeKey: true, animationBounce: 1, type: 'blue', icon: app.getModalIcon( 'info-circle-blue' ), title: false, content: wp_mail_smtp_tools_debug_events.loader, boxWidth: '550px', buttons: { confirm: { text: wp_mail_smtp_tools_debug_events.texts.close, btnClass: 'btn-confirm', keys: [ 'enter' ] } }, onOpenBefore: function() { this.$contentPane.addClass( 'no-scroll' ); } } ); $.post( ajaxurl, data, function( response ) { if ( response.success ) { popup.setTitle( response.data.title ); popup.setContent( response.data.content ); } else { popup.setIcon( app.getModalIcon( 'exclamation-circle-regular-red' ) ); popup.setType( 'red' ); popup.setContent( response.data ); } } ).fail( function() { popup.setContent( wp_mail_smtp_tools_debug_events.texts.error_occurred ); } ); }, /** * AJAX call for deleting all debug events. * * @since 3.0.0 * * @param {object} $btn jQuery object of the clicked button. */ executeAllDebugEventsDeletion: function( $btn ) { $btn.prop( 'disabled', true ); var data = { action: 'wp_mail_smtp_delete_all_debug_events', nonce: $( '#wp-mail-smtp-debug-events-nonce', el.$debugEventsPage ).val() }; $.post( ajaxurl, data, function( response ) { var message = response.data, icon, type, callback; if ( response.success ) { icon = 'check-circle-solid-green'; type = 'green'; callback = function() { location.reload(); return false; }; } else { icon = 'exclamation-circle-regular-red'; type = 'red'; } app.displayModal( message, icon, type, callback ); $btn.prop( 'disabled', false ); } ).fail( function() { app.displayModal( wp_mail_smtp_tools_debug_events.texts.error_occurred, 'exclamation-circle-regular-red', 'red' ); $btn.prop( 'disabled', false ); } ); }, /** * Display the modal with provided text and icon. * * @since 3.0.0 * * @param {string} message The message to be displayed in the modal. * @param {string} icon The icon name from /assets/images/font-awesome/ to be used in modal. * @param {string} type The type of the message (red, green, orange, blue, purple, dark). * @param {Function} actionCallback The action callback function. */ displayModal: function( message, icon, type, actionCallback ) { type = type || 'default'; actionCallback = actionCallback || function() {}; $.alert( { backgroundDismiss: true, escapeKey: true, animationBounce: 1, type: type, closeIcon: true, title: false, icon: icon ? app.getModalIcon( icon ) : '', content: message, buttons: { confirm: { text: wp_mail_smtp_tools_debug_events.texts.ok, btnClass: 'wp-mail-smtp-btn wp-mail-smtp-btn-md', keys: [ 'enter' ], action: actionCallback } } } ); }, /** * Returns prepared modal icon. * * @since 3.0.0 * * @param {string} icon The icon name from /assets/images/font-awesome/ to be used in modal. * * @returns {string} Modal icon HTML. */ getModalIcon: function( icon ) { return '">Thrive Themes Description: Fully customizable, front end theme and template editing for WordPress has arrived! Version: 3.10 License: GNU General Public License v2 or later Text Domain: thrive-theme Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, custom-everything */ html{box-sizing:border-box;font-size:16px;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-smooth:antialiased;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:auto}body{font-family:Arial,sans-serif;color:rgba(10,10,10,.85);font-size:1rem;line-height:1.5}body:not(.defaults){background:#fff;margin:0;padding:0}*,*:before,*:after{box-sizing:inherit}p,li,blockquote,q,pre,code,kbd,samp{color:rgba(10,10,10,.85);font-family:Arial,sans-serif;font-size:1rem;line-height:1.75;letter-spacing:normal;font-weight:400}pre,code,kbd,samp{font-family:"Courier New",Courier,monospace;font-size:.9rem}h1,h2,h3,h4,h5,h6{margin:0;padding:0;color:#0a0a0a;font-weight:600;line-height:1.4em;font-family:Arial,sans-serif;letter-spacing:normal}h1.thrv_wrapper,h2.thrv_wrapper,h3.thrv_wrapper,h4.thrv_wrapper,h5.thrv_wrapper,h6.thrv_wrapper{margin-bottom:10px;margin-top:10px}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-size:inherit;line-height:inherit}h1{font-size:36px;line-height:1.3em}h2{font-size:28px;line-height:1.4em}h2 a{color:#0a0a0a}h3{font-size:24px;line-height:1.4em}h4{font-size:20px;line-height:1.6em}h5{font-size:18px;line-height:1.75em}h6{font-size:16px;line-height:1.75em}p{margin:0;padding:5px 0 10px 0}a{background-color:transparent;color:#008fff;line-height:inherit;font-size:inherit;font-weight:inherit;text-decoration:none}a:visited,a:active,a:focus,a:hover{outline:0}a:hover,a.tve-state-hover{text-decoration:underline}pre{background:#eee;line-height:1.6em;margin-bottom:1.6em;max-width:100%;overflow:auto;padding:1.6em;white-space:pre-wrap}blockquote,q{quotes:"" "";padding:5px 0 5px 20px;margin:5px 0;border-left:2px solid #ccc}blockquote:before,blockquote:after,q:before,q:after{content:""}blockquote>p,q>p{font:inherit !important;line-height:inherit !important;color:inherit !important;border:0 !important;padding:0 !important;margin:0 !important}ul,ol{margin-top:10px}ul{list-style:disc}ol{list-style:decimal}ul>li:not(.thrv-styled-list-item),ol>li:not(.thrv-styled-list-item){margin-bottom:0;margin-left:1.5em;overflow:visible !important}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0;height:auto;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}table,th,td{border:1px solid #000}td,th{padding:0}dfn,cite,em,i{font-style:italic}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}mark,ins{background:#fff9c0;text-decoration:none}big{font-size:125%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}dt{font-weight:bold}dd{margin:0 1.5em 1.5em}img.avatar{width:100%}figure{margin:1em 0}table{width:100%}button,input[type=button],input[type=reset],input[type=submit]{background:#e6e6e6;border:1px solid #e6e6e6;color:rgba(0,0,0,.8);font-size:1rem;line-height:20px;padding:10px 20px}input[type=text],input[type=email],input[type=url],input[type=password],input[type=search],input[type=number],input[type=tel],input[type=range],input[type=date],input[type=month],input[type=week],input[type=time],input[type=datetime],input[type=datetime-local],input[type=color],textarea{border:1px solid #ccc;border-radius:3px;padding:10px}input[type=text]:focus,input[type=email]:focus,input[type=url]:focus,input[type=password]:focus,input[type=search]:focus,input[type=number]:focus,input[type=tel]:focus,input[type=range]:focus,input[type=date]:focus,input[type=month]:focus,input[type=week]:focus,input[type=time]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=color]:focus,textarea:focus{color:#111}select{border:1px solid #ccc}textarea{width:100%}@media(max-width: 1023px){h3{font-size:22px}h2{font-size:26px}h1{font-size:32px}}@media(max-width: 767px){h2{font-size:24px}h1{font-size:28px}}input[type=search]{border:1px solid rgba(0,0,0,.25);border-left:0;border-radius:0;border-right:0;box-sizing:border-box;-webkit-appearance:textfield}ul>li span,ol>li span{line-height:inherit}.tcb-post-content figure[id*=attachment_]{max-width:100%}.tcb-post-content .wp-block-image .alignleft,.tcb-post-content .wp-block-image .alignright,.tcb-post-content .wp-block-image .aligncenter,.tcb-post-content .wp-block-image.is-resized{display:table}.tcb-post-content p.has-small-font-size{font-size:13px}.tcb-post-content p.has-regular-font-size,.tcb-post-content p.has-normal-font-size{font-size:16px}.tcb-post-content p.has-medium-font-size{font-size:20px}.tcb-post-content p.has-large-font-size{font-size:36px}.tcb-post-content p.has-larger-font-size,.tcb-post-content p.has-huge-font-size{font-size:42px}body.theme-has-off-screen-sidebar{position:relative;transition:padding-left .42s ease-in-out,padding-right .42s ease-in-out}body.theme-has-off-screen-sidebar .main-container{z-index:2}body.theme-has-off-screen-sidebar .sidebar-section:before{opacity:0}body.theme-has-off-screen-sidebar .sidebar-section .section-background{background-color:#fff}body.theme-has-off-screen-sidebar .sidebar-section .trigger-expanded-icon{display:none}body.theme-has-off-screen-sidebar.visible-off-screen-sidebar .select2-container--open{z-index:9999}body.theme-has-off-screen-sidebar.visible-off-screen-sidebar .sidebar-section:before{opacity:1}body.theme-has-off-screen-sidebar.visible-off-screen-sidebar .sidebar-section .trigger-collapsed-icon{display:none}body.theme-has-off-screen-sidebar.visible-off-screen-sidebar .sidebar-section .trigger-expanded-icon{display:block}body.theme-has-off-screen-sidebar[data-off-screen-type=push]{padding-left:0}body.theme-has-off-screen-sidebar[data-off-screen-side=left] .sidebar-section{left:calc(-1*var(--off-screen-sidebar-size))}body.theme-has-off-screen-sidebar[data-off-screen-side=left] .tve-off-screen-sidebar-trigger{left:0}body.theme-has-off-screen-sidebar[data-off-screen-side=left].visible-off-screen-sidebar[data-off-screen-type=push]{padding-left:var(--off-screen-sidebar-size)}body.theme-has-off-screen-sidebar[data-off-screen-side=left].visible-off-screen-sidebar .sidebar-section{left:0}body.theme-has-off-screen-sidebar[data-off-screen-side=left].visible-off-screen-sidebar .tve-off-screen-sidebar-trigger{left:var(--off-screen-sidebar-size)}body.theme-has-off-screen-sidebar[data-off-screen-type=push]{padding-right:0}body.theme-has-off-screen-sidebar[data-off-screen-side=right] .sidebar-section{right:calc(-1*var(--off-screen-sidebar-size))}body.theme-has-off-screen-sidebar[data-off-screen-side=right] .tve-off-screen-sidebar-trigger{right:0}body.theme-has-off-screen-sidebar[data-off-screen-side=right].visible-off-screen-sidebar[data-off-screen-type=push]{padding-right:var(--off-screen-sidebar-size)}body.theme-has-off-screen-sidebar[data-off-screen-side=right].visible-off-screen-sidebar .sidebar-section{right:0}body.theme-has-off-screen-sidebar[data-off-screen-side=right].visible-off-screen-sidebar .tve-off-screen-sidebar-trigger{right:var(--off-screen-sidebar-size)}#wrapper{--layout-background-width: 1080px;--layout-content-width: 1080px;--tve-off-screen-overlay-color: rgba(0, 0, 0, .7);margin:0;padding:0;position:relative;display:flex;flex-direction:column;min-height:100vh}.admin-bar #wrapper{min-height:calc(100vh - 32px)}#wrapper .hide-section{position:relative}body:not(.thrive_show_hidden_elements) #wrapper .hide-section{display:none !important}#wrapper .hide-section:after{background-image:repeating-linear-gradient(135deg, rgba(148, 163, 176, 0.2), rgba(148, 163, 176, 0.2) 3px, transparent 3px, transparent 6px) !important;background-size:auto !important;background-attachment:scroll !important;background-position:50% 50% !important;background-repeat:repeat !important;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:10}#wrapper .thrv_header .symbol-section-in,#wrapper .thrv_footer .symbol-section-in{box-sizing:border-box;max-width:100%}#content{box-sizing:border-box !important;position:relative;display:flex;align-items:center;flex-direction:column;flex-grow:1;z-index:2}div.main-container{--separator-size: 40px;--sidebar-size: 30%;width:var(--layout-content-width);box-sizing:border-box !important;display:flex;flex-grow:1;height:100%;margin:0;max-width:100%;padding:0;position:relative;z-index:1}div.main-container .hide-section+.main-columns-separator{display:none}div.main-container.flip-sections .sidebar-section{order:1}div.main-container.flip-sections .content-section{order:3}.main-content-background{height:100%;width:1080px;width:var(--layout-background-width);max-width:100%;position:absolute;top:0;overflow:hidden;margin:0;padding:0;z-index:0}.theme-section{flex-shrink:1;position:relative;margin:0;padding:0;box-sizing:border-box !important;display:flex;justify-content:center;align-items:center;width:100%;z-index:1}.theme-section.top-section .section-background{max-width:100%;width:1080px;width:var(--top-background-width, var(--layout-background-width, 1080px))}.theme-section.top-section .section-content{max-width:100%;width:1080px;width:var(--top-content-width, var(--layout-content-width, 1080px))}.theme-section.bottom-section .section-background{max-width:100%;width:1080px;width:var(--bottom-background-width, var(--layout-background-width, 1080px))}.theme-section.bottom-section .section-content{max-width:100%;width:1080px;width:var(--bottom-content-width, var(--layout-content-width, 1080px))}.theme-section .section-content{box-sizing:border-box !important;position:relative;z-index:1;margin-left:auto;margin-right:auto;height:100%;width:100%;max-width:100%}.theme-section .section-content::after,.theme-section .section-content::before{content:"";display:block;overflow:auto}.theme-section .section-background{box-sizing:border-box;height:100%;position:absolute;top:0;overflow:hidden;width:100%;max-width:100%;z-index:0}.content-section{flex-grow:1;order:1;width:calc(70% - 10px);width:calc(100% - var(--sidebar-size) - var(--separator-size)*.5) !important}.content-section:first-child{width:100% !important}.sidebar-section{flex-grow:1;order:3;width:calc(30% - 10px);width:calc(var(--sidebar-size) - var(--separator-size)*.5) !important}.sidebar-section.tve-sticky-sidebar{align-items:flex-start;align-self:flex-start;min-height:100vh}.sidebar-section.tve-is-sticky{position:absolute;z-index:2}.sidebar-section:before{transition:opacity .42s ease-in-out}.sidebar-section .tve-sidebar-close-icon{display:none}.sidebar-section .tve-off-screen-sidebar-trigger{display:none}[data-off-screen-side=left].theme-has-off-screen-sidebar .sidebar-section .tve-off-screen-sidebar-trigger{box-shadow:1px 0 5px 0 rgba(25,31,40,.15)}.theme-has-off-screen-sidebar.ttb-editor-page .sidebar-section{transition:none}.theme-has-off-screen-sidebar.ttb-editor-page .sidebar-section .tve-off-screen-sidebar-trigger{transition:none}.theme-has-off-screen-sidebar .sidebar-section{display:none;height:100vh;position:fixed !important;top:0;transition:left .42s ease-in-out,right .42s ease-in-out;width:var(--off-screen-sidebar-size) !important;z-index:9999 !important}.theme-has-off-screen-sidebar .sidebar-section .section-content{overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(25,31,40,.2) transparent}.theme-has-off-screen-sidebar .sidebar-section .section-content::-webkit-scrollbar{width:5px}.theme-has-off-screen-sidebar .sidebar-section .section-content::-webkit-scrollbar-thumb{background-color:rgba(25,31,40,.2);border-radius:20px}html .theme-has-off-screen-sidebar .sidebar-section .section-content{min-height:100% !important}.theme-has-off-screen-sidebar .sidebar-section .tve-sidebar-close-icon{background:transparent;border:0;opacity:.8;position:absolute;display:block;line-height:0;padding:0;right:10px;top:10px;cursor:pointer;z-index:24;width:auto !important;height:auto !important}.theme-has-off-screen-sidebar .sidebar-section .tve-sidebar-close-icon:hover{opacity:1}.theme-has-off-screen-sidebar .sidebar-section.theme-has-off-screen-overlay:before{content:"";position:fixed;background:var(--tve-off-screen-overlay-color);left:0;right:0;top:0;bottom:0}.theme-has-off-screen-sidebar .sidebar-section[data-trigger-position=top] .tve-off-screen-sidebar-trigger{top:0}.theme-has-off-screen-sidebar .sidebar-section[data-trigger-position=center] .tve-off-screen-sidebar-trigger{top:50%}.theme-has-off-screen-sidebar .sidebar-section[data-trigger-position=bottom] .tve-off-screen-sidebar-trigger{bottom:0}.theme-has-off-screen-sidebar .sidebar-section .tve-off-screen-sidebar-trigger{background-color:#f1f1f1;border:1px solid #e3e3e3;cursor:pointer;line-height:1;position:fixed;min-height:42px;min-width:18px;transition:left .42s ease-in-out,right .42s ease-in-out;z-index:2;display:flex;align-items:center;padding-left:2px;padding-right:2px;box-shadow:-1px 0 5px 0 rgba(25,31,40,.15)}.sidebar-section.sidebar-off-screen-on-desktop{display:none}@media(max-width: 1023px){.sidebar-section.sidebar-off-screen-on-desktop:not(.sidebar-off-screen-on-tablet){display:flex}}@media(max-width: 767px){.sidebar-section.sidebar-off-screen-on-desktop:not(.sidebar-off-screen-on-mobile){display:flex}}@media(max-width: 1023px){.sidebar-section.sidebar-off-screen-on-tablet{display:none}}@media(max-width: 767px){.sidebar-section.sidebar-off-screen-on-tablet{display:none}.sidebar-section.sidebar-off-screen-on-tablet:not(.sidebar-off-screen-on-mobile){display:flex}}@media(max-width: 767px){.sidebar-section.sidebar-off-screen-on-mobile{display:none}}.main-columns-separator{width:20px;width:var(--separator-size);height:20px;height:var(--separator-size);order:2;flex-shrink:0}@media(max-width: 767px){.main-columns-separator{display:none}}@media(max-width: 1023px){.main-columns-separator.sidebar-off-screen-on-tablet{display:none}}@media(min-width: 1023px){.main-columns-separator.sidebar-off-screen-on-desktop{display:none}}.theme-has-off-screen-sidebar .main-columns-separator{display:none}body:not(.tve_lp):not(.single-tcb_symbol) .thrv_header .symbol-section-out{margin:auto;right:0;left:0;max-width:100% !important;width:1080px;width:var(--header-background-width, var(--layout-background-width))}body:not(.tve_lp):not(.single-tcb_symbol) .thrv_header .symbol-section-in{max-width:100% !important;width:1080px;width:var(--header-content-width, var(--layout-content-width))}body:not(.tve_lp):not(.single-tcb_symbol) .thrv_header.thrv_wrapper{padding:0}body:not(.tve_lp):not(.single-tcb_symbol) .thrv_footer .symbol-section-out{margin:auto;right:0;left:0;max-width:100% !important;width:1080px;width:var(--footer-background-width, var(--layout-background-width))}body:not(.tve_lp):not(.single-tcb_symbol) .thrv_footer .symbol-section-in{max-width:100% !important;width:1080px;width:var(--footer-content-width, var(--layout-content-width))}body:not(.tve_lp):not(.single-tcb_symbol) .thrv_footer.thrv_wrapper{padding:0}.gallery.gallery-columns-1 .gallery-item{width:calc(100% / 1)}.gallery.gallery-columns-1 .gallery-item:nth-child(1n+1){clear:left}.gallery.gallery-columns-2 .gallery-item{width:calc(100% / 2)}.gallery.gallery-columns-2 .gallery-item:nth-child(2n+1){clear:left}.gallery.gallery-columns-3 .gallery-item{width:calc(100% / 3)}.gallery.gallery-columns-3 .gallery-item:nth-child(3n+1){clear:left}.gallery.gallery-columns-4 .gallery-item{width:calc(100% / 4)}.gallery.gallery-columns-4 .gallery-item:nth-child(4n+1){clear:left}.gallery.gallery-columns-5 .gallery-item{width:calc(100% / 5)}.gallery.gallery-columns-5 .gallery-item:nth-child(5n+1){clear:left}.gallery.gallery-columns-6 .gallery-item{width:calc(100% / 6)}.gallery.gallery-columns-6 .gallery-item:nth-child(6n+1){clear:left}.gallery.gallery-columns-7 .gallery-item{width:calc(100% / 7)}.gallery.gallery-columns-7 .gallery-item:nth-child(7n+1){clear:left}.gallery.gallery-columns-8 .gallery-item{width:calc(100% / 8)}.gallery.gallery-columns-8 .gallery-item:nth-child(8n+1){clear:left}.gallery.gallery-columns-9 .gallery-item{width:calc(100% / 9)}.gallery.gallery-columns-9 .gallery-item:nth-child(9n+1){clear:left}.gallery .gallery-item{float:left;margin:10px 0;text-align:center}.gallery .gallery-item .gallery-icon,.gallery .gallery-item .gallery-caption{display:inline-block}.gallery .gallery-item .gallery-caption{color:#757575;display:block;font-size:12px;font-style:italic;line-height:2;margin:10px 0 15px}.gallery .gallery-item img{border:2px solid #cfcfcf;border-radius:3px;box-shadow:0 1px 4px rgba(0,0,0,.2);box-sizing:border-box;height:auto;max-width:90%;padding:5%}.gallery:after{clear:both;content:"";display:table}.tve-sidebar-close-icon{outline:0}@media(max-width: 767px){.main-container{flex-wrap:wrap}.main-container>.theme-section{min-width:100%}} .comments-area.thrv_wrapper,.comments-area .thrv_wrapper{margin:0;padding:0}.comments-area.thrv_wrapper.comment-form-submit,.comments-area .thrv_wrapper.comment-form-submit{margin:20px 0}.comments-area .reply{display:table;margin:10px 0 0 0;float:right;padding:0}.comments-area .comment-reply-title{font-size:14px;font-weight:500;color:#121212;letter-spacing:1.4px;text-transform:uppercase;margin:0 0 10px}.thrv_wrapper.thrv_text_element.comment-no-comment{text-align:center;background-image:linear-gradient(#f0f3f3, #f0f3f3);padding-top:12px;padding-bottom:12px}.thrv_wrapper.thrv_text_element.comment-no-comment p{margin-bottom:0;padding:0;font-weight:inherit;line-height:inherit}.nav-links{overflow:hidden;margin:20px 0}.comment-metadata{font-size:12px;font-weight:normal;color:rgba(10,10,10,.4)}.comments-area .comment-metadata{margin:-30px 0 20px 72px}.comment-metadata a{font-weight:inherit;text-decoration:none;font-size:inherit}.comment-metadata a:not(.comment-edit-link){color:inherit}.comment-metadata a:not(.comment-edit-link):hover{color:inherit}.comment-form-item.comment-form-url{margin-bottom:40px}.comments-area .comment-form-item label{margin:0 0 10px}.comment-form-item input{background-color:#f5f5f5}.comments-area .comment-form-item input{padding:10px}.comment-author:after{clear:both;content:"";display:table}.comment-author .fn{color:rgba(10,10,10,.6);float:unset;display:inline-block;margin:8px 0 0;font-size:14px;font-weight:600}.comment-author .fn a{text-decoration:inherit;color:inherit;background:inherit}.comment-author *{float:left}.comment-author img{margin-right:22px;border-radius:50%}.tve-state-hover .tcb-button-link.comment-reply-link{background-color:transparent !important}#comments.comments-area ol.children{margin-left:20px}#comments .comment-respond{padding-top:20px}#comments .reply span.tcb-button-texts{flex:unset}.comments-area .comment-body{padding:20px;margin:0 0 20px}.comment-body{padding:20px;border-radius:4px;border:solid 1px #d5d9df;margin:20px 0 0}.reply .comment-reply-link{padding:8px;font-size:15px;background-color:transparent;color:#1fa5e6;border-radius:50px;font-weight:500;border:solid 1px #1fa5e6;text-decoration:none;display:inline-flex;align-items:center;justify-content:center}.reply .comment-reply-link:hover{background-color:transparent;text-decoration:none}.reply .comment-reply-link[disabled]{background-color:#bfbfbf}.reply .comment-reply-link:focus{outline:none}.reply .comment-reply-link::-moz-focus-inner{border:0}#comments.comments-area .comment-list:after{clear:both;content:"";display:table}#comments.comments-area .comments-title{color:#444;font-size:22px;font-weight:500}#comments.comments-area .comment-awaiting-moderation{font-weight:300;margin:0}#comments.comments-area .tcb-button-text{margin:0}#comments.comments-area ol{list-style:none;margin:0;padding:0}#comments.comments-area ol li{margin:0;padding:0}#comments.comments-area .wpgdprc-checkbox{width:100%}.comment-content{opacity:.85;font-size:14px;font-weight:300;line-height:1.5;color:rgba(10,10,10,.85)}.comments-area .comment-content{margin:0}.comment-content p{margin-bottom:20px;font-size:inherit;line-height:inherit}.comment-content p:last-child{margin-bottom:0}.comment-content a{word-break:break-all}.comment-form .error-message{color:red;font-size:13px}.comment-form textarea::placeholder,.comment-form input::placeholder{color:inherit;font-family:inherit;font-weight:inherit;text-decoration:inherit}.comment-form input[type=submit]{background-color:#666;font-weight:400;outline:0;padding:18px 32px}.comment-form>p{box-sizing:border-box}.comment-form>p input[type=email],.comment-form>p input[type=text],.comment-form>p input[type=url]{width:100%}.comment-author .thrive-comment-author-picture{margin:0 15px 0 0}.comment-author .thrive-comment-author-picture .avatar{border:solid 1px rgba(157,159,159,.26);border-radius:50%;margin:0;padding:0;width:60px}.comment-author .says{display:none}.comments-area .comments-closed-text{margin:0 0 10px 0}.comment-form-reply-title{font-size:14px;text-transform:uppercase;color:rgba(10,10,10,.6);font-weight:600}.comment-form-text textarea{min-height:200px;padding-top:25px;padding-bottom:20px;resize:vertical;display:block}.comment-form-text textarea,.comment-form-input{box-sizing:border-box;padding:19px 20px;line-height:1em;width:100%;outline:none;background-color:#f0f3f3;font-size:14px;vertical-align:middle;border:1px solid rgba(157,159,159,.26);border-radius:3px;color:rgba(16,16,16,.6)}.comment-form-input{color:rgba(10,10,10,.5);font-weight:300;line-height:46px}textarea.comment-it-error,input[type=text].comment-it-error,input[type=email].comment-it-error{border:solid 1px #d92b2b}.comment-form:after{content:"";display:table;clear:both}.comment-form-submit{position:relative;box-sizing:border-box !important;float:right;z-index:3;font-size:15px;display:table;margin:20px 0}.comment-form-submit .thrv_icon{position:absolute;right:0;top:50%;z-index:2;margin:-0.5em 10px 0 0;font-size:var(--tve-font-size, 1em);color:var(--tve-color)}.comment-form-submit .thrv_icon .tve_sc_icon{font-size:inherit;padding:0}.comment-form-submit button{padding:12px 32px;font-size:1em;cursor:pointer;width:100%;background-color:transparent;color:#1fa5e6;border-radius:50px;font-weight:500;border:solid 1px #1fa5e6}.comment-form-submit button[disabled]{background-color:#bfbfbf}.comment-form-submit button:focus{outline:none}.comment-form-submit button::-moz-focus-inner{border:0}@media(max-width: 1023px){.comment-form-submit{max-width:50%;width:50%}}@media(max-width: 767px){.comment-form-submit{float:left;max-width:100%;width:100%}}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);height:1px;overflow:hidden;position:absolute !important;width:1px;word-wrap:normal !important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-size:.7778rem;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:left;margin-right:1.5em}.alignright{display:inline;float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}.clear:before,.clear:after,.comment-content:before,.comment-content:after{content:"";display:table;table-layout:fixed}.clear:after,.tcb-post-content:after,.comment-content:after{clear:both}.sticky{display:block}.updated:not(.published){display:none}.page-content,.tcb-post-content{margin:1.5em 0 0}.page-links{clear:both;margin:0 0 1.5em}.archive-description h1{margin:0}.page-title{color:inherit;font-size:inherit;font-weight:inherit}.site-sidebar{color:#444;font-size:16px}.site-sidebar a{color:inherit;text-decoration:none}.site-sidebar a:hover{text-decoration:underline}.thrv_lead_generation .tve_lg_submit button{background-color:#1abc9c;color:#fff}.tve_contents_table{border-radius:3px;background-color:#eaecf1;padding:0 0 10px 0}.tve_contents_table .tve_ct_title{border-radius:3px;display:block}.thrive-singular .comment-body .reply{clear:both;max-width:100px}.comment-body:after{clear:both;content:"";display:table}.thrv-divider.theme-bottom-divider .tve_sep{border-width:1px;border-color:#d5d9df}article{position:relative}.tcb-post-list[data-type=list] article{margin-top:20px}body.hide-dynamic-content:not(.thrive_show_hidden_elements) .thrive-dynamic-source{display:none !important}body.hide-inline-post-titles:not(.thrive_show_hidden_elements) .tcb-post-list .thrive-shortcode-content[data-shortcode=tcb_post_title]{display:inline !important}body.hide-inline-post-titles:not(.thrive_show_hidden_elements) .thrive-shortcode-content[data-shortcode=tcb_post_title]{display:none !important}.editor-notice-overlay{opacity:.25;background-color:#f1f1f1}.thrive_prev_next .tcb-button-link{letter-spacing:2px;background-size:auto;background-attachment:scroll;border-radius:5px;overflow:hidden;padding:18px;background-position:50% 50%;background-repeat:no-repeat}.thrive_prev_next .thrive-prev-next-container{position:relative}.thrv_responsive_video .thrive-floating-dynamic-video .tcb-float-close-button{position:absolute;top:-20px;right:0;width:14px}.thrive-no-prev-post .tcb_post_prev_link,.thrive-no-next-post .tcb_post_next_link{display:none !important}.thrive-progress-bar{--bar-background-color: var(--tcb-skin-color-0, #e97954);--tcb-applied-color: var(--tcb-skin-color-0, #e97954);--bar-height: 6px;width:100%;pointer-events:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;position:fixed;background-color:transparent;max-height:var(--bar-height, 6px);border:0;display:none}.tve_editor_page .thrive-progress-bar{position:absolute}.thrive-progress-bar[data-position]{z-index:9;top:0;left:0}.thrive-progress-bar[data-position].show{display:block}.thrive-progress-bar::-webkit-progress-value{background-color:var(--bar-background-color, #e97954);height:var(--bar-height, 6px)}.thrive-progress-bar::-webkit-progress-bar{background-color:transparent;height:var(--bar-height, 6px)}.thrive-progress-bar::-moz-progress-bar{background-color:var(--bar-background-color, #e97954);border:0;height:var(--bar-height, 6px)}.thrive-progress-bar:focus{outline:none}.widget{flex:1 1 auto;flex-wrap:wrap}.widget h2{font-weight:500;color:#333;margin:0 0 20px;font-size:20px;font-size:1.111rem}.widget ul{margin:0;padding:0;list-style:none}.widget ul li{margin:0;line-height:1.8}.widget.widget_media_gallery a{display:inline-block}.widget.widget_media_gallery a img{vertical-align:middle}.widget.widget_media_gallery figure{margin:0 0 10px}.widget #wp-calendar caption{margin-bottom:10px}.widget #wp-calendar td{text-align:center}.widget.widget_tag_cloud a{font-size:16px;margin:0 10px 0 0}.widget.widget_tag_cloud a:hover{color:inherit}.widget.widget_search .search-form{margin:0;width:100%;position:relative}.widget.widget_search .search-form input[type=search]{border:1px solid rgba(0,0,0,.25);width:100%;border-radius:0;border-right:0;border-left:0;padding:6px 4px}.widget.widget_search .search-form input[type=submit]{position:absolute;width:18px;height:auto;top:0;right:0;bottom:0;overflow:hidden;text-indent:-9999px;background:transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTk5RTBGMEZEQzIxMTFFN0JDRUJDRDBGMUVBOEM4RUUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTk5RTBGMTBEQzIxMTFFN0JDRUJDRDBGMUVBOEM4RUUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFOTlFMEYwRERDMjExMUU3QkNFQkNEMEYxRUE4QzhFRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFOTlFMEYwRURDMjExMUU3QkNFQkNEMEYxRUE4QzhFRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpxgahsAAAFzSURBVHjanNS/S0JRGMbxo92hEhsLWhoaI7cIqqWlqUWliAYrCO3HboNB/0BDq0QIQUE6pWMQQbU11VpTU0hFRdQi9j3xBNeTysUXPih6fTjnvO8xlE6nja96sY4kYoigiisUUDFO5fP531fP99kEShjEI07xiiHMII4zLODFDfR8Ief41INF1H3P9SGHLC4wiQ9/UFjbKSlkHCdOiK13bGEVo9hzVxTWmdjtbODetK8DrXYFw25QUmdSNMFqFyEk3CDbncsm22lVN/jSFhuCIupO0Krr+agbVFWLg1YPBvDkBtlhm1aLg9QsuvS7hqCCtpcLENKNHQ1kxQ2qaGKzmpN2IUcYwTbe3CCjab7FvgZyTC3+O5M5dSuhw475vm+4InapU5rYZczjW93p15k8Y1PXY01dW0LNBoSc2280sXHNSVTduUZZV8WGHmIRx0jxD1DzmpzFg6a3VdkVpPTehplMJpPyTGf1L6zTIDfs7keAAQDc8VNBFTBXLQAAAABJRU5ErkJggg==") no-repeat center;border:none}.thrv-divider.theme-sidebar-divider{display:inline-block;width:16px;padding-bottom:20px;padding-top:5px}.thrv-divider.theme-sidebar-divider .tve_sep{border-width:1px;border-color:#0a0a0a}.widget-area{display:flex;flex-direction:column}.widget select{max-width:100%}.thrive-dynamic-styled-list-item .tcb-styled-list-icon{display:none}.dynamic-item-with-icon .tcb-styled-list-icon{display:block !important}.theme-style.thrv_wrapper{margin-top:50px}.theme-style h6{text-transform:uppercase;font-weight:500}.menu-toggle,.main-navigation.toggled ul{display:block}@media(min-width: 37.5em){.menu-toggle{display:none}.main-navigation ul{display:block}}.site-main .comment-navigation,.site-main .posts-navigation,.site-main .post-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-previous,.posts-navigation .nav-previous,.post-navigation .nav-previous{float:left;width:50%}.comment-navigation .nav-next,.posts-navigation .nav-next,.post-navigation .nav-next{float:right;text-align:right;width:50%}.wp-embed-aspect-16-9 .wp-block-embed__wrapper{position:relative;padding-top:56.25%}.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;max-width:100%}.thrive_author_links:not(.thrv_social_follow) .tve_s_icon:before{content:none !important}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom .tve_s_icon{padding:.6em;height:1.5em;width:1.5em;display:flex;box-sizing:content-box}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom .tve_s_text{display:none}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom svg{fill:#fff;height:1.5em;width:1.5em;vertical-align:bottom}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom .tve_s_item{margin-right:.3em}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom .tve_s_item:last-of-type{margin-right:0}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom .tve_s_item a{display:flex;padding:0}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_1 .tve_s_icon{border-radius:50%;background:linear-gradient(to bottom right, #8a8989 50%, #777676 50%)}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_1 .tve_s_icon:hover{background:linear-gradient(to bottom right, #adadad 50%, #a09f9f 50%)}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_2 .tve_s_icon{border-radius:50%;background:#242323}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_2 .tve_s_icon:hover{background:#5d5c5c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_3 .tve_s_text,.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_text{display:none}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_3 .tve_s_icon,.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_icon{border-radius:3px;border:1px solid #171616;background:transparent}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_3 .tve_s_icon:hover,.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_icon:hover{border-color:#b9b9b9}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_3 .tve_s_icon:hover svg,.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_icon:hover svg{fill:#b9b9b9}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_3 .tve_s_icon svg,.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_icon svg{fill:#171616}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_icon:hover{border-color:#171616;background-color:#171616}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_4 .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_5 .tve_s_icon svg{fill:#171616}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_5 .tve_s_icon:hover svg{fill:#b9b9b9}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_icon{border-radius:50%;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_icon:hover{opacity:.8}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_ig_share .tve_s_icon{background:linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_text{display:none}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_icon{border-radius:0;border:2px solid transparent}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_ig_share .tve_s_icon{background:linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);border:none}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_ig_share .tve_s_icon svg{height:calc(1.5em + 4px);width:calc(1.5em + 4px)}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_ig_share .tve_s_icon:hover{opacity:.8}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_text{display:none}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_icon{border-radius:2px;box-shadow:0 2px 5px 2px rgba(0,0,0,.25)}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_icon:hover{opacity:.8}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_ig_share .tve_s_icon{background:linear-gradient(45deg, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_t_share .tve_s_icon{background-color:#42b3ea}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_fb_share .tve_s_icon{background-color:#3569b4}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_in_share .tve_s_icon{background-color:#0177b5}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_pin_share .tve_s_icon{background-color:#f2303c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_xing_share .tve_s_icon{background-color:#006063}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_yt_share .tve_s_icon{background-color:#ec162c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_6 .tve_s_item.tve_s_g_share .tve_s_icon{background-color:#e04b35}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share .tve_s_icon{border-color:#42b3ea;color:#42b3ea}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share .tve_s_icon svg{fill:#42b3ea}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share .tve_s_icon:hover{background-color:#42b3ea;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_t_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share .tve_s_icon{border-color:#3569b4;color:#3569b4}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share .tve_s_icon svg{fill:#3569b4}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share .tve_s_icon:hover{background-color:#3569b4;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_fb_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share .tve_s_icon{border-color:#0177b5;color:#0177b5}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share .tve_s_icon svg{fill:#0177b5}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share .tve_s_icon:hover{background-color:#0177b5;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_in_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share .tve_s_icon{border-color:#f2303c;color:#f2303c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share .tve_s_icon svg{fill:#f2303c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share .tve_s_icon:hover{background-color:#f2303c;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_pin_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share .tve_s_icon{border-color:#006063;color:#006063}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share .tve_s_icon svg{fill:#006063}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share .tve_s_icon:hover{background-color:#006063;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_xing_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share .tve_s_icon{border-color:#ec162c;color:#ec162c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share .tve_s_icon svg{fill:#ec162c}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share .tve_s_icon:hover{background-color:#ec162c;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_yt_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share .tve_s_icon{border-color:#e04b35;color:#e04b35}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share .tve_s_icon svg{fill:#e04b35}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share .tve_s_icon:hover{background-color:#e04b35;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_7 .tve_s_item.tve_s_g_share .tve_s_icon:hover svg{fill:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_t_share .tve_s_icon{background-color:#42b3ea;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_fb_share .tve_s_icon{background-color:#3569b4;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_in_share .tve_s_icon{background-color:#0177b5;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_pin_share .tve_s_icon{background-color:#f2303c;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_xing_share .tve_s_icon{background-color:#006063;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_yt_share .tve_s_icon{background-color:#ec162c;color:#fff}.thrive_author_links:not(.thrv_social_follow) .tve_social_custom.tve_links_style_8 .tve_s_item.tve_s_g_share .tve_s_icon{background-color:#e04b35;color:#fff}.tve_social_items a{font-size:unset}.thrv-divider .tve_sep{background:transparent;border:none}.thrv-divider .tve_sep-1{border-left:0;border-right:0;border-style:solid;border-top:0;height:0;width:initial !important}.tve_s_item a{border:0;box-shadow:none;color:#fff !important;display:table;padding:2px;text-decoration:none !important}body:not(.ttb-editor-page) .tcb-post-content:before,body:not(.ttb-editor-page) .tcb-post-content:after{display:none}.thrive_author_box{min-height:50px}.thrive_author_box .tve_social_items{font-size:12px}.thrive_author_box .theme-author-text{font-size:14px;font-weight:500;letter-spacing:1.4px;color:#0a0a0a;margin:30px 0 0}.thrive_author_box .theme-author-name{font-size:24px;color:#008fff}.thrive_author_box .theme-auth-follow{font-size:14px;font-weight:300;margin:40px 0 10px}.thrive_author_box .theme-author-header{font-size:14px;font-weight:500;color:#0a0a0a;text-transform:uppercase;margin:40px 0 10px}.thrive_author_box .theme-author-desc{font-size:16px;font-weight:300;line-height:1.75}.tcb-clear .theme-comments-number{float:right}.thrv_wrapper.thrv_text_element{padding:1px}.theme-button{display:flex;max-width:100%}.theme-button .tcb-button-link{width:100%}p.tcb-post-date,p.tcb-post-author,p.tcb-post-comments-number,p.tcb-post-categories,.theme-comments-number p{font-size:14px;font-weight:300;letter-spacing:.7px;color:#444}.thrive-dynamic-list{display:table}.thrive-dynamic-list .thrv_wrapper{margin:0}.thrive-dynamic-list:empty{min-height:40px}.thrive-dynamic-list[data-layout=horizontal] ul{display:flex;flex-wrap:wrap;justify-content:flex-start}.thrive-dynamic-list .theme-dynamic-list{list-style:none;margin:0 !important;padding:0 !important}.thrive-dynamic-list li{display:flex;margin:0 0 15px}.thrive-dynamic-list li .thrive-dynamic-styled-list-text{display:flex;align-items:center}.thrive-dynamic-list .dynamic-list-icon .thrv_icon{margin-right:1px;padding:5px 10px 3px}.thrive-dynamic-list a{text-decoration:none;color:#0a0a0a;font-weight:normal;font-size:14px}.tcb-flip .tcb-button-link{flex-direction:row-reverse}a.tcb-plain-text{cursor:pointer}.thrv_meta_elements p{margin-bottom:0}[data-button_layout=icon] .tcb-button-texts{display:none}[data-button_layout=icon].tcb-with-icon.tcb-flip .tcb-button-icon{padding-left:0}.tcb-post-tags,.tcb-post-categories,.tcb-post-author,.entry-author-role,.tcb-post-comments-number{display:inline-block}.section-background .svg-shape-bottom,.section-background .svg-shape-top{position:absolute;left:0}.thrv_wrapper.tcb-post-author,.thrv_wrapper.tcb-post-date,.thrv_wrapper.tcb-post-thumbnail,.thrv_wrapper.thrive-dynamic-list{margin:0}.thrv_wrapper#content,.thrv_wrapper.tcb-post-author-picture,.thrv_wrapper.tcb-post-thumbnail,.thrv_wrapper.main-container{padding:0}.tcb-post-thumbnail img{box-sizing:border-box}.thrive-breadcrumbs{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;font-weight:300;color:#939292;font-size:14px;padding-left:0 !important;margin:10px 0}.thrive-breadcrumbs li{color:inherit;display:inline-flex;align-items:center;line-height:inherit}.thrive-breadcrumbs li.thrive-breadcrumb{margin:0;padding:0}.thrive-breadcrumbs li.thrive-breadcrumb-separator{cursor:default;justify-content:center;margin:0 10px;padding:0}.thrive-breadcrumbs li.thrive-hidden-element{display:none}.thrive-breadcrumbs li.thrive-breadcrumb-path{font-weight:inherit}.thrive-breadcrumbs li.thrive-breadcrumb-leaf{cursor:default;color:#1d1d1d;font-weight:normal}.thrive-breadcrumbs li.thrive-breadcrumb-leaf span{overflow:hidden;max-width:none}.thrive-breadcrumbs li a{color:inherit;text-decoration:none;font-size:inherit;font-weight:inherit;line-height:inherit}.thrive-breadcrumbs li a:hover{text-decoration:underline}.thrive-breadcrumbs[data-enable-truncate-chars="1"] .thrive-breadcrumb-leaf span{text-overflow:ellipsis;white-space:nowrap;max-width:80ch}@media(max-width: 1023px){.thrive-breadcrumbs[data-enable-truncate-chars="1"] .thrive-breadcrumb-leaf span{max-width:25ch}}.main-navigation ul{margin:0;padding:0}.main-navigation ul:after{content:"";display:table;clear:both}.main-navigation ul li{margin:0 25px;float:left;list-style:none;position:relative}.main-navigation ul li:hover>ul{display:block}.main-navigation ul li a{text-decoration:none;font-size:17px;color:#444;text-transform:uppercase;padding:35px 0;display:inline-block}.main-navigation ul.sub-menu{position:absolute;left:0;top:80%;display:none;background-color:#fff;box-shadow:0 5px 10px rgba(0,0,0,.1);z-index:10;width:220px;padding:10px 0}.main-navigation ul.sub-menu ul.sub-menu{top:-5px;left:100%}.main-navigation ul.sub-menu li{padding:0 10px;margin:0;display:block;float:none;line-height:1.6}.main-navigation ul.sub-menu li a{padding:0;text-transform:none}.main-navigation{clear:both;display:block;width:100%}.main-navigation ul{display:none;list-style:none;margin:0;padding-left:0}.main-navigation ul ul{box-shadow:0 3px 3px rgba(0,0,0,.2);float:left;left:-999em;position:absolute;top:100%;z-index:99999}.main-navigation ul ul ul{left:-999em;top:0}.main-navigation ul ul li:hover>ul,.main-navigation ul ul li.focus>ul{left:100%}.main-navigation ul ul a{width:200px}.main-navigation ul li:hover>ul,.main-navigation ul li.focus>ul{left:auto}.main-navigation li{float:left;padding:10px 20px;position:relative}.main-navigation a{display:block;text-decoration:none}@media(max-width: 767px){.main-navigation ul{margin:0;padding:0}.main-navigation ul:after{content:"";display:table;clear:both}.main-navigation ul li{margin:0 5px;float:left;list-style:none;position:relative}.main-navigation ul li:hover>ul{display:none}.main-navigation ul li a{text-decoration:none;font-size:17px;color:#444;text-transform:uppercase;padding:5px 0;display:inline-block}.main-navigation ul.sub-menu{position:absolute;left:0;top:80%;display:none;background-color:#fff;box-shadow:0 5px 10px rgba(0,0,0,.1);z-index:10;width:220px;padding:10px 0}.main-navigation ul.sub-menu ul.sub-menu{top:-5px;left:100%}.main-navigation ul.sub-menu li{padding:0 10px;margin:0;display:block;float:none;line-height:1.6}.main-navigation ul.sub-menu li a{padding:0;text-transform:none}}.tve-cf-item{margin-bottom:30px;box-sizing:border-box}.tve-cf-submit{box-sizing:border-box !important}span.tcb-cf-error,input[type=text].tcb-cf-error,input[type=email].tcb-cf-error,textarea.tcb-cf-error{color:#fb5c55;border-color:#fb5c55}span.tcb-cf-error{font-size:13px}span.tcb-cf-error{display:inline-block;padding:10px 0}.thrv-contact-form{width:100%;box-sizing:border-box}.thrv-contact-form input,.thrv-contact-form input[type=password],.thrv-contact-form input[type=email],.thrv-contact-form input[type=url],.thrv-contact-form input[type=text],.thrv-contact-form input[type=tel],.thrv-contact-form select,.thrv-contact-form textarea{box-sizing:border-box;background-color:#fff;padding:19px 20px;border:1px solid #000;line-height:1em;width:100%;color:#50565f;resize:vertical;outline:none;font-size:17px}.thrv-contact-form input:hover,.thrv-contact-form input:focus,.thrv-contact-form input[type=password]:hover,.thrv-contact-form input[type=password]:focus,.thrv-contact-form input[type=email]:hover,.thrv-contact-form input[type=email]:focus,.thrv-contact-form input[type=url]:hover,.thrv-contact-form input[type=url]:focus,.thrv-contact-form input[type=text]:hover,.thrv-contact-form input[type=text]:focus,.thrv-contact-form input[type=tel]:hover,.thrv-contact-form input[type=tel]:focus,.thrv-contact-form select:hover,.thrv-contact-form select:focus,.thrv-contact-form textarea:hover,.thrv-contact-form textarea:focus{border-color:#1da5e5}.theme-has-off-screen-sidebar.visible-off-screen-sidebar .tve-sf-overlay-container{width:calc(100% - var(--off-screen-sidebar-size))}.theme-has-off-screen-sidebar.visible-off-screen-sidebar[data-off-screen-side=left] .tve-sf-overlay-container{left:var(--off-screen-sidebar-size)}.single-thrive_typography .woocommerce-store-notice{display:none !important}body.post:not(.tve_editor_page) .thrv_contents_table:not(.tve-rendered),body.post:not(.tve_editor_page) .tve-dynamic-toc:not(.tve-rendered),body.page:not(.tve_editor_page) .thrv_contents_table:not(.tve-rendered),body.page:not(.tve_editor_page) .tve-dynamic-toc:not(.tve-rendered),body.single:not(.tve_editor_page) .thrv_contents_table:not(.tve-rendered),body.single:not(.tve_editor_page) .tve-dynamic-toc:not(.tve-rendered){display:none}body.post:not(.tve_editor_page) #tve_editor .thrv_contents_table,body.page:not(.tve_editor_page) #tve_editor .thrv_contents_table,body.single:not(.tve_editor_page) #tve_editor .thrv_contents_table{display:block}