diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..79207a4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# This file is for unifying the coding style for different editors and IDEs +# editorconfig.org + +# WordPress Coding Standards +# https://make.wordpress.org/core/handbook/coding-standards/ + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = tab +indent_size = 4 + +[{.jshintrc,*.json,*.yml}] +indent_style = space +indent_size = 2 + +[{*.txt,wp-config-sample.php}] +end_of_line = crlf diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index 95eb4d9..b9f579f 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -1,14 +1,23 @@ -name: PHPCS check +name: PHP_CodeSniffer on: pull_request jobs: phpcs: - name: PHPCS - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: PHPCS check - uses: chekalsky/phpcs-action@v1 - with: - enable_warnings: true \ No newline at end of file + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '7.4' + coverage: none + tools: composer + + - name: Install dependencies + run: composer install --prefer-dist --no-suggest --no-progress + + - name: Detect coding standard violations + run: vendor/bin/phpcs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2c64f3b --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# ignore PHPStorm extra directories +.idea/ + +# Ignore OS Specific files. +.DS_Store + +# Leave node_modules from git +node_modules/ + +# sass cache +.sass-cache + +# map files +*.map + +# Skip package file from versoning +astra-theme.zip + +# ignore git inside subproject +admin/bsf-core/.git + +# ignore PHPCS report files +phpcs-summary.log +phpcs-full.log + +# Org Package +astra +*.zip + +# Ignore Composer's directories +vendor/ +cghooks.lock diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6d97dd0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +sudo: false + +services: + - docker + +language: php + +cache: + - $HOME/.composer/cache + +matrix: + include: + - php: 7.4snapshot + env: WP_TRAVISCI=phpcs + +before_script: + - | + if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then + composer install + fi + +script: + - | + if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then + vendor/bin/phpcs + fi + - if find . -name "*.php" ! -path "./vendor/*" ! -path "./admin/bsf-core/*" -exec php -l {} \; | grep "Errors parsing"; then exit 1; fi + diff --git a/Gruntfile.js b/Gruntfile.js index 707976d..b6e0d15 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -3,7 +3,7 @@ module.exports = function (grunt) { // Project configuration var autoprefixer = require('autoprefixer'); var flexibility = require('postcss-flexibility'); - var Astra_theme_Addons = ['background', 'border', 'color', 'customizer-link', 'description', 'divider', 'heading', 'hidden', 'link', 'radio-image', 'responsive', 'responsive-color', 'responsive-background', 'responsive-slider', 'responsive-spacing', 'select', 'settings-group', 'slider', 'sortable', 'spacing', 'typography']; + var Astra_theme_Addons = ['background', 'border', 'color', 'customizer-link', 'description', 'divider', 'heading', 'hidden', 'link', 'radio-image', 'responsive', 'responsive-color', 'responsive-background', 'responsive-select', 'responsive-slider', 'responsive-spacing', 'select', 'settings-group', 'slider', 'sortable', 'spacing', 'typography']; const sass = require('node-sass'); @@ -142,6 +142,15 @@ module.exports = function (grunt) { dest: 'assets/css/unminified', ext: '.css' }, + /* Common Style with new Header-Footer Builder Style */ + { + expand: true, + cwd: 'sass/', + src: ['frontend.scss'], + dest: 'assets/css/unminified', + ext: '.css' + }, + /* Compatibility */ { expand: true, @@ -374,15 +383,12 @@ module.exports = function (grunt) { '!package-lock.json', '!phpcs.xml.dist', '!assets/fonts/google-fonts.json', - '!admin/bsf-analytics/.git/**', - '!admin/bsf-analytics/bin/**', - '!admin/bsf-analytics/.gitignore', - '!admin/bsf-analytics/composer.json', - '!admin/bsf-analytics/composer.lock', - '!admin/bsf-analytics/Gruntfile.js', - '!admin/bsf-analytics/package.json', - '!admin/bsf-analytics/package-lock.json', - '!admin/bsf-analytics/phpcs.xml.dist', + '!inc/customizer/extend-custom-controls/package.json', + '!inc/customizer/extend-custom-controls/package-lock.json', + '!inc/customizer/extend-custom-controls/src/**', + '!inc/customizer/extend-custom-controls/node_modules/**', + '!inc/customizer/extend-custom-controls/build/index.asset.php', + '!inc/customizer/extend-custom-controls/build/index.js.map', ], dest: 'astra/' } @@ -463,25 +469,19 @@ module.exports = function (grunt) { '!inc/customizer/custom-controls/assets/css/unminified/custom-controls.css', ], dest: 'inc/customizer/custom-controls/assets/css/unminified/custom-controls.css', + }, + { + src: [ + 'inc/customizer/custom-controls/link/link.js', + 'inc/customizer/custom-controls/typography/typography.js', + 'inc/customizer/custom-controls/typography/selectWoo.js', + ], + dest: 'inc/customizer/custom-controls/assets/js/unminified/custom-controls-plain.js', }, { src: [ - 'inc/customizer/custom-controls/background/background.js', - 'inc/customizer/custom-controls/border/border.js', - 'inc/customizer/custom-controls/color/color.js', - 'inc/customizer/custom-controls/link/link.js', - 'inc/customizer/custom-controls/customizer-link/customizer-link.js', - 'inc/customizer/custom-controls/radio-image/radio-image.js', - 'inc/customizer/custom-controls/responsive/responsive.js', - 'inc/customizer/custom-controls/responsive-color/responsive-color.js', - 'inc/customizer/custom-controls/responsive-background/responsive-background.js', - 'inc/customizer/custom-controls/responsive-slider/responsive-slider.js', - 'inc/customizer/custom-controls/responsive-spacing/responsive-spacing.js', - 'inc/customizer/custom-controls/settings-group/settings-group.js', - 'inc/customizer/custom-controls/slider/slider.js', - 'inc/customizer/custom-controls/sortable/sortable.js', - 'inc/customizer/custom-controls/typography/typography.js' - + 'inc/customizer/custom-controls/assets/js/unminified/custom-controls-plain.js', + 'inc/customizer/extend-custom-controls/build/index.js' ], dest: 'inc/customizer/custom-controls/assets/js/unminified/custom-controls.js', }, @@ -553,7 +553,7 @@ module.exports = function (grunt) { } }, }, - + json2php: { options: { // Task-specific options go here. @@ -598,7 +598,7 @@ module.exports = function (grunt) { // min all grunt.registerTask('minify', ['style', 'concat', 'uglify:js', 'cssmin:css']); - + grunt.registerTask('download-google-fonts', function () { var done = this.async(); var request = require('request'); diff --git a/README.md b/README.md new file mode 100644 index 0000000..71736d7 --- /dev/null +++ b/README.md @@ -0,0 +1,89 @@ +# Astra # +**Contributors:** [brainstormforce](https://profiles.wordpress.org/brainstormforce) +**License:** GPLv2 or later +**License URI:** https://www.gnu.org/licenses/gpl-2.0.html +**Tags:** custom-menu, custom-logo, entertainment, featured-images, full-width-template, one-column, two-columns, left-sidebar, e-commerce, right-sidebar, custom-colors, editor-style, featured-images, full-width-template, microformats, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready, blog +**Tested up to:** 5.5.3 +**Requires PHP:** 5.3 +**Stable tag:** 3.0.0-beta.1 + +Astra is fast, fully customizable & beautiful WordPress theme suitable for blog, personal portfolio, business website and WooCommerce storefront. + +## Description ## + +Astra is fast, fully customizable & beautiful WordPress theme suitable for blog, personal portfolio, business website and WooCommerce storefront. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with Schema.org code integrated and is Native AMP ready so search engines will love your site. + +It offers special features and templates so it works perfectly with all page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi, etc. Some of the other features: # WooCommerce Ready # Responsive # RTL & Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. + +Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and WooCommerce ready theme that you can use for building any kind of website! + +## Installation ## + +### From within WordPress ### +1. Visit "Appearance > Themes > Add New" +2. Search for "Astra" +3. Install and activate + +## License ## + +Astra WordPress Theme, Copyright 2020 WPAstra. +Astra is distributed under the terms of the GNU GPL. + +Astra is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc. +Underscores is distributed under the terms of the GNU GPL v2 or later. + +## Features ## + +### Appearance > Widgets ### +Astra has up to 4 widget area. 1 in your header, 1 for each sidebar and up to 2 in your footer. + +### Appearance > Customize ### + - Site Identity: Hide your site title or tagline, and upload your own header. + - Layout: Change things like your container width, header layout, Header width, Custom menu item , sidebar layout and much more. + - Set footer layout there is a two footer layout layout 1 and layout 2. layout 1 is stack style and layout 2 is inline. + - Blog: Show the full post or excerpt, also show and hide blog post meta & adjust blog post width to default or custom. + - Single post:Set single post meta and adjust width to custom or default. + - Colors & background: Choose your default background color, body color, theme color and link color. + - Typography: Choose your default body font & set default font size to H1 to H6 tags, Site title, tagline & blog post title on archive page and single page. + +### ASTRA Child Theme ### + +There are multiple ways you can use a child theme with the Astra Theme, Use any one method mentoned below to create a child theme or use a child theme we have created. + +1. Download the child theme from Github - https://github.com/brainstormforce/astra-child/releases/latest/ +2. More information on creating child theme. - https://developer.wordpress.org/themes/advanced-topics/child-themes/ + + +### Screenshot Licenses ### + +Screenshot images are all licensed under Creative Commons Zero (CC0) ( https://pxhere.com/en/license ) +https://pxhere.com/en/photo/100653 +https://pxhere.com/en/photo/759723 +https://pxhere.com/en/photo/1259448 +https://pxhere.com/en/photo/1456591 +https://pxhere.com/en/photo/1389199 + + +### Normalizing styles ### + +Normalizing styles have been helped along thanks to the fine work of. +Nicolas Gallagher and Jonathan Neal https://necolas.github.com/normalize.css/ + +### Flexibility JS ### + +Flexibility is a JavaScript polyfill for Flexbox By Jonathan Neal, 10up. (https://github.com/jonathantneal/flexibility) +Licensed under MIT ( https://github.com/jonathantneal/flexibility/blob/master/LICENSE.md ) + +### IcoMoon-Free ### + +Astra icon font is based on IcoMoon-Free vector icon by Keyamoon. +IcoMoon-Free vector icon destributed under trems of CC BY 4.0 or GPL. (https://creativecommons.org/licenses/by/4.0/ or https://www.gnu.org/licenses/gpl.html) +Source: https://keyamoon.com/ + +### Breadcrumb Trail ### + +Astra default breadcrumb is based on Breadcrumb Trail by Justin Tadlock. (https://github.com/justintadlock/breadcrumb-trail) +Breadcrumb Trail is distributed under the terms of the GNU GPL v2 or later. + +Underscores +https://underscores.me/, (C) 2012-2020 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) diff --git a/admin/bsf-analytics/assets/css/minified/style-rtl.min.css b/admin/bsf-analytics/assets/css/minified/style-rtl.min.css deleted file mode 100644 index 036f45f..0000000 --- a/admin/bsf-analytics/assets/css/minified/style-rtl.min.css +++ /dev/null @@ -1 +0,0 @@ -#bsf-optin-notice{padding:1px 12px;border-right-color:#007cba}#bsf-optin-notice .notice-container{padding-top:10px;padding-bottom:12px}#bsf-optin-notice .notice-content{margin:0}#bsf-optin-notice .notice-heading{padding:0 0 12px 20px}#bsf-optin-notice .button-primary{margin-left:5px} \ No newline at end of file diff --git a/admin/bsf-analytics/assets/css/minified/style.min.css b/admin/bsf-analytics/assets/css/minified/style.min.css deleted file mode 100644 index 9dc616e..0000000 --- a/admin/bsf-analytics/assets/css/minified/style.min.css +++ /dev/null @@ -1 +0,0 @@ -#bsf-optin-notice{padding:1px 12px;border-left-color:#007cba}#bsf-optin-notice .notice-container{padding-top:10px;padding-bottom:12px}#bsf-optin-notice .notice-content{margin:0}#bsf-optin-notice .notice-heading{padding:0 20px 12px 0}#bsf-optin-notice .button-primary{margin-right:5px} \ No newline at end of file diff --git a/admin/bsf-analytics/assets/css/unminified/style-rtl.css b/admin/bsf-analytics/assets/css/unminified/style-rtl.css deleted file mode 100644 index de4a4b5..0000000 --- a/admin/bsf-analytics/assets/css/unminified/style-rtl.css +++ /dev/null @@ -1,21 +0,0 @@ -#bsf-optin-notice { - padding: 1px 12px; - border-right-color: #007cba; -} - -#bsf-optin-notice .notice-container { - padding-top: 10px; - padding-bottom: 12px; -} - -#bsf-optin-notice .notice-content { - margin: 0; -} - -#bsf-optin-notice .notice-heading { - padding: 0 0 12px 20px; -} - -#bsf-optin-notice .button-primary { - margin-left: 5px; -} \ No newline at end of file diff --git a/admin/bsf-analytics/assets/css/unminified/style.css b/admin/bsf-analytics/assets/css/unminified/style.css deleted file mode 100644 index 09a6e55..0000000 --- a/admin/bsf-analytics/assets/css/unminified/style.css +++ /dev/null @@ -1,21 +0,0 @@ -#bsf-optin-notice { - padding: 1px 12px; - border-left-color: #007cba; -} - -#bsf-optin-notice .notice-container { - padding-top: 10px; - padding-bottom: 12px; -} - -#bsf-optin-notice .notice-content { - margin: 0; -} - -#bsf-optin-notice .notice-heading { - padding: 0 20px 12px 0; -} - -#bsf-optin-notice .button-primary { - margin-right: 5px; -} \ No newline at end of file diff --git a/admin/bsf-analytics/class-bsf-analytics-stats.php b/admin/bsf-analytics/class-bsf-analytics-stats.php deleted file mode 100644 index 5081c43..0000000 --- a/admin/bsf-analytics/class-bsf-analytics-stats.php +++ /dev/null @@ -1,256 +0,0 @@ -get_default_stats() ); - } - - /** - * Retrieve stats for site. - * - * @return array stats data. - * @since 1.0.0 - */ - private function get_default_stats() { - return array( - 'graupi_version' => defined( 'BSF_UPDATER_VERSION' ) ? BSF_UPDATER_VERSION : false, - 'domain_name' => get_site_url(), - 'php_os' => PHP_OS, - 'server_software' => isset( $_SERVER['SERVER_SOFTWARE'] ) ? filter_var( wp_unslash( $_SERVER['SERVER_SOFTWARE'] ), FILTER_SANITIZE_STRING ) : '', - 'mysql_version' => $this->get_mysql_version(), - 'php_version' => $this->get_php_version(), - 'php_max_input_vars' => ini_get( 'max_input_vars' ), // phpcs:ignore:PHPCompatibility.IniDirectives.NewIniDirectives.max_input_varsFound - 'php_post_max_size' => ini_get( 'post_max_size' ), - 'php_max_execution_time' => ini_get( 'max_execution_time' ), - 'php_memory_limit' => ini_get( 'memory_limit' ), - 'zip_installed' => extension_loaded( 'zip' ), - 'imagick_availabile' => extension_loaded( 'imagick' ), - 'xmlreader_exists' => class_exists( 'XMLReader' ), - 'gd_available' => extension_loaded( 'gd' ), - 'curl_version' => $this->get_curl_version(), - 'curl_ssl_version' => $this->get_curl_ssl_version(), - 'is_writable' => $this->is_content_writable(), - - 'wp_version' => get_bloginfo( 'version' ), - 'user_count' => $this->get_user_count(), - 'site_language' => get_locale(), - 'timezone' => wp_timezone_string(), - 'is_ssl' => is_ssl(), - 'is_multisite' => is_multisite(), - 'network_url' => network_site_url(), - 'external_object_cache' => (bool) wp_using_ext_object_cache(), - 'wp_debug' => WP_DEBUG, - 'wp_debug_display' => WP_DEBUG_DISPLAY, - 'script_debug' => SCRIPT_DEBUG, - - 'active_plugins' => $this->get_active_plugins(), - - 'active_theme' => get_template(), - 'active_stylesheet' => get_stylesheet(), - ); - } - - /** - * Get installed PHP version. - * - * @return float PHP version. - * @since 1.0.0 - */ - private function get_php_version() { - if ( defined( 'PHP_MAJOR_VERSION' ) && defined( 'PHP_MINOR_VERSION' ) && defined( 'PHP_RELEASE_VERSION' ) ) { // phpcs:ignore - return PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION . '.' . PHP_RELEASE_VERSION; - } - - return phpversion(); - } - - /** - * User count on site. - * - * @return int User count. - * @since 1.0.0 - */ - private function get_user_count() { - if ( is_multisite() ) { - $user_count = get_user_count(); - } else { - $count = count_users(); - $user_count = $count['total_users']; - } - - return $user_count; - } - - /** - * Get active plugin's data. - * - * @return array active plugin's list. - * @since 1.0.0 - */ - private function get_active_plugins() { - if ( ! $this->plugins ) { - // Ensure get_plugin_data function is loaded. - if ( ! function_exists( 'get_plugin_data' ) ) { - require_once ABSPATH . 'wp-admin/includes/plugin.php'; - } - - $plugins = wp_get_active_and_valid_plugins(); - $plugins = array_map( 'get_plugin_data', $plugins ); - $this->plugins = array_map( array( $this, 'format_plugin' ), $plugins ); - } - - return $this->plugins; - } - - /** - * Format plugin data. - * - * @param string $plugin plugin. - * @return array formatted plugin data. - * @since 1.0.0 - */ - public function format_plugin( $plugin ) { - return array( - 'name' => html_entity_decode( $plugin['Name'], ENT_COMPAT, 'UTF-8' ), - 'url' => $plugin['PluginURI'], - 'version' => $plugin['Version'], - 'slug' => $plugin['TextDomain'], - 'author_name' => html_entity_decode( wp_strip_all_tags( $plugin['Author'] ), ENT_COMPAT, 'UTF-8' ), - 'author_url' => $plugin['AuthorURI'], - ); - } - - /** - * Curl SSL version. - * - * @return float SSL version. - * @since 1.0.0 - */ - private function get_curl_ssl_version() { - $curl = array(); - if ( function_exists( 'curl_version' ) ) { - $curl = curl_version(); // phpcs:ignore WordPress.WP.AlternativeFunctions.curl_curl_version - } - - return isset( $curl['ssl_version'] ) ? $curl['ssl_version'] : false; - } - - /** - * Get cURL version. - * - * @return float cURL version. - * @since 1.0.0 - */ - private function get_curl_version() { - if ( function_exists( 'curl_version' ) ) { - $curl = curl_version(); // phpcs:ignore WordPress.WP.AlternativeFunctions.curl_curl_version - } - - return isset( $curl['version'] ) ? $curl['version'] : false; - } - - /** - * Get MySQL version. - * - * @return float MySQL version. - * @since 1.0.0 - */ - private function get_mysql_version() { - global $wpdb; - return $wpdb->db_version(); - } - - /** - * Check if content directory is writable. - * - * @return bool - * @since 1.0.0 - */ - private function is_content_writable() { - $upload_dir = wp_upload_dir(); - return wp_is_writable( $upload_dir['basedir'] ); - } - } -} - -/** - * Polyfill for sites using WP version less than 5.3 - */ -if ( ! function_exists( 'wp_timezone_string' ) ) { - /** - * Get timezone string. - * - * @return string timezone string. - * @since 1.0.0 - */ - function wp_timezone_string() { - $timezone_string = get_option( 'timezone_string' ); - - if ( $timezone_string ) { - return $timezone_string; - } - - $offset = (float) get_option( 'gmt_offset' ); - $hours = (int) $offset; - $minutes = ( $offset - $hours ); - - $sign = ( $offset < 0 ) ? '-' : '+'; - $abs_hour = abs( $hours ); - $abs_mins = abs( $minutes * 60 ); - $tz_offset = sprintf( '%s%02d:%02d', $sign, $abs_hour, $abs_mins ); - - return $tz_offset; - } -} diff --git a/admin/bsf-analytics/class-bsf-analytics.php b/admin/bsf-analytics/class-bsf-analytics.php deleted file mode 100644 index 41ca567..0000000 --- a/admin/bsf-analytics/class-bsf-analytics.php +++ /dev/null @@ -1,528 +0,0 @@ -bsf_analytics_url() ); - - add_action( 'admin_init', array( $this, 'handle_optin_optout' ) ); - add_action( 'cron_schedules', array( $this, 'every_two_days_schedule' ) ); - add_action( 'admin_notices', array( $this, 'option_notice' ) ); - add_action( 'astra_notice_before_markup_bsf-optin-notice', array( $this, 'enqueue_assets' ) ); - - add_action( 'init', array( $this, 'schedule_unschedule_event' ) ); - - if ( ! has_action( 'bsf_analytics_send', array( $this, 'send' ) ) ) { - add_action( 'bsf_analytics_send', array( $this, 'send' ) ); - } - - add_action( 'admin_init', array( $this, 'register_usage_tracking_setting' ) ); - - add_action( 'update_option_bsf_analytics_optin', array( $this, 'update_analytics_option_callback' ), 10, 3 ); - add_action( 'add_option_bsf_analytics_optin', array( $this, 'add_analytics_option_callback' ), 10, 2 ); - - $this->includes(); - } - - /** - * BSF Analytics URL - * - * @return String URL of bsf-analytics directory. - * @since 1.0.0 - */ - public function bsf_analytics_url() { - - $path = wp_normalize_path( BSF_ANALYTICS_PATH ); - $theme_dir = wp_normalize_path( get_template_directory() ); - - if ( strpos( $path, $theme_dir ) !== false ) { - return rtrim( get_template_directory_uri() . '/admin/bsf-analytics/', '/' ); - } else { - return rtrim( plugin_dir_url( BSF_ANALYTICS_FILE ), '/' ); - } - } - - /** - * Get API URL for sending analytics. - * - * @return string API URL. - * @since 1.0.0 - */ - private function get_api_url() { - return defined( 'BSF_API_URL' ) ? BSF_API_URL : 'https://support.brainstormforce.com/'; - } - - /** - * Enqueue Scripts. - * - * @since 1.0.0 - * @return void - */ - public function enqueue_assets() { - - /** - * Load unminified if SCRIPT_DEBUG is true. - * - * Directory and Extensions. - */ - $dir_name = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified'; - $file_rtl = ( is_rtl() ) ? '-rtl' : ''; - $css_ext = ( SCRIPT_DEBUG ) ? '.css' : '.min.css'; - - $css_uri = BSF_ANALYTICS_URI . '/assets/css/' . $dir_name . '/style' . $file_rtl . $css_ext; - - wp_enqueue_style( 'bsf-analytics-admin-style', $css_uri, false, BSF_ANALYTICS_VERSION, 'all' ); - } - - /** - * Send analytics API call. - * - * @since 1.0.0 - */ - public function send() { - wp_remote_post( - $this->get_api_url() . 'wp-json/bsf-core/v1/analytics/', - array( - 'body' => BSF_Analytics_Stats::instance()->get_stats(), - 'timeout' => 5, - 'blocking' => false, - ) - ); - } - - /** - * Check if usage tracking is enabled. - * - * @return bool - * @since 1.0.0 - */ - public function is_tracking_enabled() { - $is_enabled = get_site_option( 'bsf_analytics_optin' ) === 'yes' ? true : false; - $is_enabled = $this->is_white_label_enabled() ? false : $is_enabled; - - return apply_filters( 'bsf_tracking_enabled', $is_enabled ); - } - - /** - * Check if WHITE label is enabled for BSF products. - * - * @return bool - * @since 1.0.0 - */ - public function is_white_label_enabled() { - - $options = apply_filters( 'bsf_white_label_options', array() ); - $is_enabled = false; - - if ( is_array( $options ) ) { - foreach ( $options as $option ) { - if ( true === $option ) { - $is_enabled = true; - break; - } - } - } - - return $is_enabled; - } - - /** - * Display admin notice for usage tracking. - * - * @since 1.0.0 - */ - public function option_notice() { - - if ( ! current_user_can( 'manage_options' ) ) { - return; - } - - // Don't display the notice if tracking is disabled or White Label is enabled for any of our plugins. - if ( false !== get_site_option( 'bsf_analytics_optin', false ) || $this->is_white_label_enabled() ) { - return; - } - - // Show tracker consent notice after 24 hours from installed time. - if ( strtotime( '+24 hours', $this->get_analytics_install_time() ) > time() ) { - return; - } - - /* translators: %s product name */ - $notice_string = __( 'Want to help make %1s even more awesome? Allow us to collect non-sensitive diagnostic data and usage information. ', 'astra' ); - - if ( is_multisite() ) { - $notice_string .= __( 'This will be applicable for all sites from the network.', 'astra' ); - } - - $language_dir = is_rtl() ? 'rtl' : 'ltr'; - - Astra_Notices::add_notice( - array( - 'id' => 'bsf-optin-notice', - 'type' => '', - 'message' => sprintf( - '
-
- %1$s -
-
- - %3$s - - - %6$s - -
-
', - /* translators: %s usage doc link */ - sprintf( $notice_string . '%4s', esc_html( $this->get_product_name() ), $language_dir, esc_url( $this->usage_doc_link ), __( ' Know More.', 'astra' ) ), - add_query_arg( - array( - 'bsf_analytics_optin' => 'yes', - 'bsf_analytics_nonce' => wp_create_nonce( 'bsf_analytics_optin' ), - ) - ), - __( 'Yes! Allow it', 'astra' ), - add_query_arg( - array( - 'bsf_analytics_optin' => 'no', - 'bsf_analytics_nonce' => wp_create_nonce( 'bsf_analytics_optin' ), - ) - ), - MONTH_IN_SECONDS, - __( 'No Thanks', 'astra' ) - ), - 'show_if' => true, - 'repeat-notice-after' => false, - 'priority' => 18, - 'display-with-other-notices' => true, - ) - ); - } - - /** - * Process usage tracking opt out. - * - * @since 1.0.0 - */ - public function handle_optin_optout() { - if ( ! isset( $_GET['bsf_analytics_nonce'] ) ) { - return; - } - - if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['bsf_analytics_nonce'] ) ), 'bsf_analytics_optin' ) ) { - return; - } - - $optin_status = isset( $_GET['bsf_analytics_optin'] ) ? sanitize_text_field( wp_unslash( $_GET['bsf_analytics_optin'] ) ) : ''; - - if ( 'yes' === $optin_status ) { - $this->optin(); - } elseif ( 'no' === $optin_status ) { - $this->optout(); - } - - wp_safe_redirect( - remove_query_arg( - array( - 'bsf_analytics_optin', - 'bsf_analytics_nonce', - ) - ) - ); - } - - /** - * Opt in to usage tracking. - * - * @since 1.0.0 - */ - private function optin() { - update_site_option( 'bsf_analytics_optin', 'yes' ); - } - - /** - * Opt out to usage tracking. - * - * @since 1.0.0 - */ - private function optout() { - update_site_option( 'bsf_analytics_optin', 'no' ); - } - - /** - * Add two days event schedule variables. - * - * @param array $schedules scheduled array data. - * @since 1.0.0 - */ - public function every_two_days_schedule( $schedules ) { - $schedules['every_two_days'] = array( - 'interval' => 2 * DAY_IN_SECONDS, - 'display' => __( 'Every two days', 'astra' ), - ); - - return $schedules; - } - - /** - * Schedule usage tracking event. - * - * @since 1.0.0 - */ - private function schedule_event() { - if ( ! wp_next_scheduled( 'bsf_analytics_send' ) && $this->is_tracking_enabled() ) { - wp_schedule_event( time(), 'every_two_days', 'bsf_analytics_send' ); - } - } - - /** - * Unschedule usage tracking event. - * - * @since 1.0.0 - */ - private function unschedule_event() { - wp_clear_scheduled_hook( 'bsf_analytics_send' ); - } - - /** - * Load analytics stat class. - * - * @since 1.0.0 - */ - private function includes() { - require_once __DIR__ . '/class-bsf-analytics-stats.php'; - } - - /** - * Register usage tracking option in General settings page. - * - * @since 1.0.0 - */ - public function register_usage_tracking_setting() { - - if ( ! apply_filters( 'bsf_tracking_enabled', true ) || $this->is_white_label_enabled() ) { - return; - } - - register_setting( - 'general', // Options group. - 'bsf_analytics_optin', // Option name/database. - array( 'sanitize_callback' => array( $this, 'sanitize_option' ) ) // sanitize callback function. - ); - - add_settings_field( - 'bsf-analytics-optin', // Field ID. - __( 'Usage Tracking', 'astra' ), // Field title. - array( $this, 'render_settings_field_html' ), // Field callback function. - 'general' // Settings page slug. - ); - } - - /** - * Sanitize Callback Function - * - * @param bool $input Option value. - * @since 1.0.0 - */ - public function sanitize_option( $input ) { - - if ( ! $input || 'no' === $input ) { - return 'no'; - } - - return 'yes'; - } - - /** - * Print settings field HTML. - * - * @since 1.0.0 - */ - public function render_settings_field_html() { - ?> -
- - %2s', esc_url( $this->usage_doc_link ), __( 'Learn More.', 'astra' ) ) ); - ?> -
- get( 'Name' ); - } - - $base = plugin_basename( __FILE__ ); - - $exploded_path = explode( '/', $base, 2 ); - $plugin_slug = $exploded_path[0]; - - return $this->get_plugin_name( $plugin_slug ); - } - - /** - * Get plugin name by plugin slug. - * - * @param string $plugin_slug Plugin slug. - * @return string $plugin_info['Name'] Plugin name. - */ - private function get_plugin_name( $plugin_slug ) { - - $plugins = get_option( 'active_plugins' ); - - if ( ! function_exists( 'get_plugin_data' ) ) { - require_once ABSPATH . 'wp-admin/includes/plugin.php'; - } - - foreach ( $plugins as $plugin_file ) { - - $plugin_folder = explode( '/', $plugin_file ); - $plugin_folder = $plugin_folder[0]; - if ( $plugin_folder === $plugin_slug ) { - $plugin_path = WP_PLUGIN_DIR . '/' . $plugin_file; - $plugin_data = get_plugin_data( $plugin_path ); - return $plugin_data['Name']; - } - } - } - - /** - * Set analytics installed time in option. - * - * @return string $time analytics installed time. - * @since 1.0.0 - */ - private function get_analytics_install_time() { - - $time = get_site_option( 'bsf_analytics_installed_time' ); - - if ( ! $time ) { - $time = time(); - update_site_option( 'bsf_analytics_installed_time', time() ); - } - - return $time; - } - - /** - * Schedule/unschedule cron event on updation of option. - * - * @param string $old_value old value of option. - * @param string $value value of option. - * @param string $option Option name. - * @since 1.0.0 - */ - public function update_analytics_option_callback( $old_value, $value, $option ) { - $this->add_option_to_network( $value ); - } - - /** - * Analytics option add callback. - * - * @param string $option Option name. - * @param string $value value of option. - * @since 1.0.0 - */ - public function add_analytics_option_callback( $option, $value ) { - $this->add_option_to_network( $value ); - } - - /** - * Schedule or unschedule event based on analytics option value. - * - * @since 1.0.0 - */ - public function schedule_unschedule_event() { - - if ( true === $this->is_white_label_enabled() ) { - $this->unschedule_event(); - return; - } - - $analytics_option = get_site_option( 'bsf_analytics_optin' ); - - if ( 'no' === $analytics_option ) { - $this->unschedule_event(); - } elseif ( 'yes' === $analytics_option ) { - $this->schedule_event(); - } - } - - /** - * Save analytics option to network. - * - * @param string $value value of option. - * @since 1.0.0 - */ - public function add_option_to_network( $value ) { - - // If action coming from general settings page. - if ( isset( $_POST['option_page'] ) && 'general' === $_POST['option_page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing - - if ( get_site_option( 'bsf_analytics_optin' ) ) { - update_site_option( 'bsf_analytics_optin', $value ); - } else { - add_site_option( 'bsf_analytics_optin', $value ); - } - } - } - } - - new BSF_Analytics(); - -} diff --git a/assets/css/minified/compatibility/woocommerce/woocommerce.min-rtl.css b/assets/css/minified/compatibility/woocommerce/woocommerce.min-rtl.css index 3d68e46..44d042c 100644 --- a/assets/css/minified/compatibility/woocommerce/woocommerce.min-rtl.css +++ b/assets/css/minified/compatibility/woocommerce/woocommerce.min-rtl.css @@ -1 +1 @@ -@charset "UTF-8";@keyframes spin{100%{transform:rotate(-360deg)}}@font-face{font-family:star;src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.svg#star) format("svg");font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce) format("svg");font-weight:400;font-style:normal}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;right:0;left:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#a46497;color:#fff;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fff;text-decoration:underline}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.clear{clear:both}.ast-site-header-cart,.woocommerce .ast-site-header-cart{position:relative;list-style-type:none;margin-right:0;padding-right:0;margin-bottom:0;order:1}.ast-site-header-cart:focus .widget_shopping_cart,.ast-site-header-cart:hover .widget_shopping_cart,.woocommerce .ast-site-header-cart:focus .widget_shopping_cart,.woocommerce .ast-site-header-cart:hover .widget_shopping_cart{left:0;right:auto;opacity:1;visibility:visible}.ast-site-header-cart .ast-shopping-cart-icon,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon{display:initial;vertical-align:middle}.ast-site-header-cart .ast-shopping-cart-icon:before,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon:before{content:"\e854";font-family:Astra;font-size:18px;font-size:1.2857rem}.ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul{text-align:right;width:auto;position:static;right:auto;top:auto;border-top:0}.ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message{text-align:right}.ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-site-header-cart .widget_shopping_cart{background-color:#fff;position:absolute;top:100%;width:280px;z-index:999999;font-size:.875em;right:-999em;display:block;line-height:1.618;box-shadow:0 2px 8px 1px rgba(0,0,0,.07);transition:all .3s ease;border:2px solid #e6e6e6;opacity:0;visibility:hidden}.ast-site-header-cart .widget_shopping_cart:after,.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{bottom:100%;right:auto;left:8px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:after{border-color:rgba(255,255,255,0);border-bottom-color:#fff;border-width:6px;margin-right:-6px;margin-bottom:-.3px}.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{border-color:rgba(230,230,230,0);border-bottom-color:#e6e6e6;border-width:9px;margin-right:-5px;left:5px}.ast-site-header-cart .widget_shopping_cart .product_list_widget,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget{padding:1em 1.5em;max-height:500px;max-height:50vh;overflow-y:auto}.ast-site-header-cart .widget_shopping_cart .product_list_widget li,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li{padding:.5em 5em .5em 2em;border-bottom:1px solid rgba(0,0,0,.05)}.ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child{border-bottom:0}.ast-site-header-cart .widget_shopping_cart .product_list_widget li img,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li img{max-width:4em;margin:0 0 .5em 0}.ast-site-header-cart .widget_shopping_cart p.buttons,.ast-site-header-cart .widget_shopping_cart p.total,.woocommerce .ast-site-header-cart .widget_shopping_cart p.buttons,.woocommerce .ast-site-header-cart .widget_shopping_cart p.total{padding:1em 1.5em;margin:0;text-align:center}.ast-site-header-cart .widget_shopping_cart .buttons .button,.ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward{display:block;margin-left:0;width:100%;margin-right:0}.ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message{margin:1.41575em}.ast-site-header-cart .widget_shopping_cart .cart_list a,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a{font-weight:400;padding:0;border-width:0}.ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{border-width:1px}.ast-above-header-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.ast-below-header .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{color:#ccc}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart{left:auto;right:0;transition:right 0s}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{right:15px;left:auto}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{right:11px;left:auto}.ast-cart-menu-wrap{display:inline-block;line-height:1}.ast-cart-menu-wrap .count{font-weight:700;position:relative;display:inline-block;vertical-align:middle;text-align:center;min-width:2.1em;min-height:2.1em;font-size:.86em;line-height:1.8;border-radius:0 0 .3em .3em;border-width:2px;border-style:solid;padding:0 .4em}.ast-cart-menu-wrap .count:after{bottom:100%;margin-bottom:0;height:.8em;width:.8em;right:50%;transform:translateX(50%);top:-.6em;content:' ';position:absolute;pointer-events:none;border-width:2px;border-style:solid;border-top-right-radius:10em;border-top-left-radius:10em;border-bottom:0}.ast-woocommerce-cart-menu .main-header-menu .woocommerce-custom-menu-item li:hover>a.remove{color:#ccc}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:left}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:right}.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:flex;justify-content:center}.ast-woocommerce-cart-menu .header-main-layout-2 .site-branding{flex:0 0 100%}.ast-header-break-point .woocommerce-custom-menu-item .ast-cart-menu-wrap{width:2em;height:2em;font-size:1.4em;line-height:2;vertical-align:middle;text-align:left}.ast-header-break-point .ast-button-wrap .main-header-menu-toggle{font-size:1.4em}.ast-header-break-point .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:right}.ast-header-break-point #ast-site-header-cart .widget_shopping_cart{display:none}.ast-header-break-point.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 0 1em 1em}.ast-header-break-point.ast-woocommerce-cart-menu .header-main-layout-3 .ast-site-header-cart{padding:0 1em 1em 0}.ast-header-break-point.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item{margin-bottom:0;margin-top:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart a{border:none;display:inline-block}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;right:50%;margin-right:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;right:50%;margin-right:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce h2{margin-bottom:.7em}.woocommerce a.remove{display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:18px;width:24px;height:24px;text-align:center;line-height:21px;border-radius:100%;color:#ccc;text-decoration:none;border:1px solid #ccc}.woocommerce small.note{display:block;color:#777;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0;font-size:.92em;color:#777}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:' ';display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .woocommerce-breadcrumb a{color:#777}.woocommerce .quantity input[type=email],.woocommerce .quantity input[type=number],.woocommerce .quantity input[type=text]{padding:.3em}.woocommerce .quantity input[type=email]:focus,.woocommerce .quantity input[type=number]:focus,.woocommerce .quantity input[type=text]:focus{outline:0;border-color:#eaeaea}.woocommerce .quantity .qty{width:3.631em;text-align:center;min-height:35px}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price,.woocommerce div.product span.price{color:#77a464;font-size:1.5rem;font-weight:700;margin:0 0 .2em}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.5;font-weight:400;display:inline-block}.woocommerce div.product p.ast-stock-detail,.woocommerce div.product p.stock{font-size:1em}.woocommerce div.product p.ast-stock-detail .ast-stock-avail,.woocommerce div.product p.stock .ast-stock-avail{font-weight:700}.woocommerce div.product .stock{color:#77a464}.woocommerce div.product .out-of-stock{color:red}.woocommerce div.product .product_title{margin:0 0 .5em 0}.woocommerce div.product .product_meta{border-top:1px solid #ebebeb;padding-top:1em;font-size:.9em;margin:0 0 .8em}.woocommerce div.product .product_meta>span{display:block}.woocommerce div.product .woocommerce-product-rating{margin:0 0 .5em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{transform-style:preserve-3d;margin-bottom:1em}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795,-.035,0,1) .5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{position:absolute;top:.5em;left:.5em;font-size:2em;z-index:9;width:36px;height:36px;background:#fff;text-indent:-9999px;border-radius:100%;box-sizing:content-box;backface-visibility:hidden}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before{content:"";display:block;width:10px;height:10px;border:2px solid #000;border-radius:100%;position:absolute;top:9px;right:9px;box-sizing:content-box}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after{content:"";display:block;width:2px;height:8px;background:#000;border-radius:6px;position:absolute;top:19px;right:22px;transform:rotate(45deg);box-sizing:content-box}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:right;margin:0;list-style:none}.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{width:32%;width:calc(33.33% - .7em);margin-left:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:right}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n){margin-left:0}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:24%;width:calc(25% - .75em);margin-left:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:right}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n){margin-left:0}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{width:18.5%;width:calc(20% - .8em);margin-left:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:right}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n){margin-left:0}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:left;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 2px 0 0}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-right:16px;width:0}.woocommerce div.product div.social iframe{float:right;margin-top:3px}.woocommerce div.product .woocommerce-tabs{margin-bottom:2em;width:100%}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0;margin:0 0 1em;overflow:hidden;position:relative;border-top:1px solid rgba(0,0,0,.05)}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:0;background:0 0;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 0 0 1em;padding:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6a6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit;outline:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{content:' ';position:absolute;width:100%;height:3px;box-shadow:none;top:0;right:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{content:' ';position:absolute;bottom:-1px;width:5px;height:5px;border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:' ';width:100%;bottom:0;right:0;border-bottom:1px solid #d3ced2;z-index:1}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs.tabs::before{display:none;border:0}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 1.2em;padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes{border-style:solid}.woocommerce div.product .woocommerce-tabs .shop_attributes p{padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes th{border-right-width:1px;border-style:solid;padding-right:.9em}.woocommerce div.product .woocommerce-tabs .shop_attributes td{padding:.5em .9em .5em .5em;font-style:normal;border-style:solid}.woocommerce div.product.ast-woo-product-no-review #reviews #comments{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form_wrapper{width:100%;padding-right:0}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form{padding:1.5em 2em}.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-email{margin-bottom:1em}@media (min-width:1201px){.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{width:49%;display:inline-block}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author input,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email input{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author{float:right}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{float:left}}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:' ';display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin:0 0 1.2em}.woocommerce div.product form.cart .ast-woo-single-cart-button-wrap{display:flex;align-items:center;flex-wrap:wrap}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:' ';display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:right;margin:0 0 0 4px}.woocommerce div.product form.cart table{border-width:0 0 1px;margin:0 0 1.2em}.woocommerce div.product form.cart table td{padding-right:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{border-bottom:1px solid rgba(0,0,0,.1);position:relative;margin-bottom:1em;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;vertical-align:top;line-height:2em;padding-top:0;padding-bottom:0;padding-left:0;display:block}.woocommerce div.product form.cart .variations label{font-weight:700}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;width:100%;margin-left:0;padding-top:.5em;padding-bottom:.5em}.woocommerce div.product form.cart .variations td.label{vertical-align:middle;margin-top:8px;margin-bottom:1px}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em;position:static;display:inline-block;color:inherit;opacity:.6;font-size:11px;text-transform:uppercase}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:right}.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.woocommerce div.product form.cart .group_table tr:last-child td{border-bottom:0}.woocommerce div.product form.cart .group_table td.label{padding:.5em;font-size:.8rem;line-height:1.3;font-weight:700}.woocommerce div.product form.cart .group_table td{vertical-align:middle;padding-bottom:.5em;border-left:0;border-bottom:1px solid rgba(0,0,0,.1)}.woocommerce div.product form.cart .group_table td:first-child{text-align:right;width:4em}.woocommerce div.product form.cart .group_table td.price{padding-right:.8em;font-weight:700;font-size:.9rem}.woocommerce div.product form.cart .group_table td.price del{opacity:.5}.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce div.product form.cart p.stock{line-height:1.3;margin-bottom:.8em;font-size:.9em}.woocommerce div.product form.cart .single_variation_wrap{width:100%}.woocommerce div.product form.cart .single_variation_wrap p{margin-bottom:.8em}.woocommerce div.product form.cart .single_variation_wrap .single_variation{margin-bottom:1.2em;border-top:1px solid #ebebeb;padding-top:0;border-top:0}.woocommerce div.product span.onsale{min-height:3.5em;min-width:3.5em;line-height:3.5em}.woocommerce div.product .related.products,.woocommerce div.product .woocommerce-tabs{display:block}.woocommerce div.product .related.products ul.products{margin:0}.woocommerce div.product .related.products ul.products li.product{width:22.5%;width:calc(25% - 15px)}.woocommerce span.onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;position:absolute;text-align:center;top:.5em;right:.5em;margin:0;border-radius:100%;background-color:#77a464;color:#fff;-webkit-font-smoothing:antialiased;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:' ';display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{width:0}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;left:0;right:auto;margin:-.5em 0 0 -.5em}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{margin-top:1em}.woocommerce ul.products li.product .price{color:#77a464;display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.5;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(132,132,132,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 2.5em}.woocommerce .woocommerce-ordering select{vertical-align:top;padding:.5em}.woocommerce nav.woocommerce-pagination{text-align:right}.woocommerce nav.woocommerce-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{margin:0 0 5px 5px;border:1px solid #d3ced2;padding:0;float:right;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.75em;display:block;min-width:2.5em}.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current{background:#ebe9eb;color:#8a7e88}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.5em .75em;font-weight:700;border-radius:3px;right:auto;color:#515151;background-color:#ebe9eb;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce #respond input#submit.loading,.woocommerce a.button.loading,.woocommerce button.button.loading,.woocommerce input.button.loading{opacity:.25;padding-left:2.618em}.woocommerce #respond input#submit.loading::after,.woocommerce a.button.loading::after,.woocommerce button.button.loading::after,.woocommerce input.button.loading::after{font-family:WooCommerce;content:'\e01c';vertical-align:top;-webkit-font-smoothing:antialiased;font-weight:400;position:absolute;top:auto;left:1em;animation:spin 2s linear infinite}.woocommerce #respond input#submit.added::after,.woocommerce a.button.added::after,.woocommerce button.button.added::after,.woocommerce input.button.added::after{font-family:WooCommerce;content:'\e017';margin-right:.53em;vertical-align:bottom}.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background-color:#dad8da;text-decoration:none;background-image:none;color:#515151}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color:#935386;color:#fff}.woocommerce #respond input#submit.alt.disabled,.woocommerce #respond input#submit.alt.disabled:hover,.woocommerce #respond input#submit.alt:disabled,.woocommerce #respond input#submit.alt:disabled:hover,.woocommerce #respond input#submit.alt:disabled[disabled],.woocommerce #respond input#submit.alt:disabled[disabled]:hover,.woocommerce a.button.alt.disabled,.woocommerce a.button.alt.disabled:hover,.woocommerce a.button.alt:disabled,.woocommerce a.button.alt:disabled:hover,.woocommerce a.button.alt:disabled[disabled],.woocommerce a.button.alt:disabled[disabled]:hover,.woocommerce button.button.alt.disabled,.woocommerce button.button.alt.disabled:hover,.woocommerce button.button.alt:disabled,.woocommerce button.button.alt:disabled:hover,.woocommerce button.button.alt:disabled[disabled],.woocommerce button.button.alt:disabled[disabled]:hover,.woocommerce input.button.alt.disabled,.woocommerce input.button.alt.disabled:hover,.woocommerce input.button.alt:disabled,.woocommerce input.button.alt:disabled:hover,.woocommerce input.button.alt:disabled[disabled],.woocommerce input.button.alt:disabled[disabled]:hover{background-color:#a46497;color:#fff}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit:disabled[disabled],.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce a.button:disabled[disabled],.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce button.button:disabled[disabled],.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit:disabled[disabled]:hover,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled:hover,.woocommerce a.button:disabled[disabled]:hover,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled:hover,.woocommerce button.button:disabled[disabled]:hover,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#ebe9eb}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding:.4em .4em 0;display:inline-block}.woocommerce #reviews h2{font-weight:400}.woocommerce #reviews h2 small{float:left;color:#777;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#777}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:' ';display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 1em;border:0;position:relative;background:100%;border:0;border-bottom:1px solid #e2e2e2}.woocommerce #reviews #comments ol.commentlist li:last-child{border-bottom:0}.woocommerce #reviews #comments ol.commentlist li .meta{color:#777;font-size:.75em}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:right;position:absolute;top:0;right:0;padding:3px;height:3.6em;width:3.6em;border:none;background:0 0;margin:0;border-radius:100%;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 50px 0 0;border:none;border-radius:4px;padding:0 1.5em;display:flex;flex-wrap:wrap}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1.7em}.woocommerce #reviews #comments ol.commentlist li .comment-text meta,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{order:1;width:100%;font-size:1em;margin-bottom:.2em}.woocommerce #reviews #comments ol.commentlist li .comment-text .description{font-style:italic;order:3;width:100%}.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating{order:2;margin-bottom:.5em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 50px 0 0}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e4e1e3;border-radius:4px;padding:1em 1em 0;margin:20px 50px 0 0}.woocommerce #reviews #comments .commentlist>li::before{content:''}.woocommerce #reviews #review_form{border:2px solid #efefef;padding:1em 1.9em 2.3em}.woocommerce #reviews #review_form #respond p{margin:2px 0 6px}.woocommerce #reviews #review_form #respond p.form-submit{margin-top:1em}.woocommerce #reviews #review_form #respond p.comment-form-author,.woocommerce #reviews #review_form #respond p.comment-form-email{margin-bottom:1em}.woocommerce #reviews #review_form #respond p.comment-form-author label,.woocommerce #reviews #review_form #respond p.comment-form-email label{display:inline-block;min-width:100px}.woocommerce #reviews #review_form #respond #comment{height:90px}.woocommerce #reviews #review_form input{max-width:100%}.woocommerce .star-rating{float:left;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:star}.woocommerce .star-rating::before{content:'\73\73\73\73\73';color:#d3ced2;float:right;top:0;right:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:right;top:0;right:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:'\53\53\53\53\53';top:0;position:absolute;right:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:' ';display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 0 0 4px;float:right}.woocommerce .products .star-rating{display:block;margin:.5em auto 0;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;background:transparent none}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:' ';display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond .form-submit input{right:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none}.woocommerce p.stars a::before{display:block;position:absolute;top:0;right:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:'\e021';text-indent:0}.woocommerce p.stars a:hover~a::before{content:'\e021'}.woocommerce p.stars:hover a::before{content:'\e020'}.woocommerce p.stars.selected a.active::before{content:'\e020'}.woocommerce p.stars.selected a.active~a::before{content:'\e021'}.woocommerce p.stars.selected a:not(.active)::before{content:'\e020'}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(even) td,.woocommerce table.shop_attributes tr:nth-child(even) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid rgba(0,0,0,.1);margin:0 0 24px -1px;text-align:right;width:100%;border-collapse:separate;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px}.woocommerce table.shop_table td{border-top:1px solid rgba(0,0,0,.1);padding:6px 12px;vertical-align:middle}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid rgba(0,0,0,.1)}.woocommerce #customer_details,.woocommerce .woocommerce table.shop_table{margin-bottom:2em;border-radius:0}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.my_account_orders .order-actions{text-align:left}.woocommerce table.my_account_orders .order-actions .button{margin:.125em .25em .125em 0}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:right}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:right}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:'\2193';display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:right;clear:both;margin-left:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:' ';display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:left;margin-right:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-right:1em;border-right:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:' ';display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:right;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 0 0 4px;clear:right}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:' ';display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-left:5px;margin-bottom:5px}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2;font-weight:700;font-size:13.5px;font-size:.9rem}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row select{cursor:pointer;margin:0}.woocommerce form .form-row .required{color:red;font-weight:700;border:0}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 0 0 8px;text-align:center;vertical-align:middle}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{box-sizing:border-box;width:100%;margin:0;outline:0;line-height:1}.woocommerce form .form-row textarea{height:4em;line-height:1.5;display:block;box-shadow:none}.woocommerce form .form-row .select2-container{width:100%;line-height:2em}.woocommerce form .form-row.woocommerce-invalid .select2-container,.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:#d65d67}.woocommerce form .form-row.woocommerce-validated .select2-container,.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:#69bf29}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid #d3ced2;padding:20px;margin:2em 0;text-align:right;border-radius:5px}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0;padding:.25em 22px .25em 0;text-indent:-22px;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .5ex}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:' ';display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:right;margin-left:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-left:1px dashed #d3ced2;padding-left:2em;margin-right:0;padding-right:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-left-width:2px;text-align:right;width:100%;border-radius:5px;padding:6px 12px}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{margin-bottom:0;padding-right:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;margin-right:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;margin-right:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:' ';display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:right;padding:0 0 1px 1px;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .widget_product_categories .product-categories .count{float:left}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:left;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:right}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:right;margin-right:.5em;margin-left:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#a46497;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#a46497}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#602053;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{right:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{left:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:' ';display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .show-on-hover{position:absolute;top:0;right:0;height:100%;left:0;bottom:0;padding:0;margin:0;opacity:0;filter:blur(0);transition:all .2s linear}.woocommerce li.product:hover .show-on-hover{opacity:1;transform:scale(1) translateZ(0) translateY(0);pointer-events:inherit}.woocommerce .ast-return-to-shop{display:inline-block;margin:5px 0;vertical-align:middle}.woocommerce .related.products h2,.woocommerce .up-sells h2,.woocommerce .woocommerce-tabs h2{font-size:1.5rem}.woocommerce .comment-reply-title{font-size:1.5rem;line-height:1.3}.woocommerce .select2-container .select2-selection--single{height:auto;padding:.75em}.woocommerce .select2-container .select2-selection--single .select2-selection__rendered{padding-right:0}.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:1.35}.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{top:50%;width:1.7em;transform:translateY(-50%)}.woocommerce .select2-results__option,.woocommerce .select2-search--dropdown .select2-search__field{padding:6px .75em}.woocommerce .widget_product_search button,.woocommerce-page .widget_product_search button{flex:0 0 auto;padding:10px 20px}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{text-align:right;margin-bottom:2.5em}.woocommerce ul.products li.product.product-category>a,.woocommerce-page ul.products li.product.product-category>a{display:inline-block;position:relative}.woocommerce ul.products li.product a img,.woocommerce-page ul.products li.product a img{margin-bottom:.8em}.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce-page ul.products li.product .woocommerce-loop-product__title{margin-bottom:.5em;padding:0;font-size:1em}.woocommerce ul.products li.product .ast-woo-product-category,.woocommerce-page ul.products li.product .ast-woo-product-category{font-size:.85em;margin-bottom:.5em;display:block;line-height:1.3;opacity:.6}.woocommerce ul.products li.product .star-rating,.woocommerce-page ul.products li.product .star-rating{margin:0 0 .5em auto;backface-visibility:hidden}.woocommerce ul.products li.product .ast-woo-shop-product-description p,.woocommerce-page ul.products li.product .ast-woo-shop-product-description p{margin-bottom:.5em}.woocommerce ul.products li.product .woocommerce-loop-product__link,.woocommerce-page ul.products li.product .woocommerce-loop-product__link{position:relative;display:block}.woocommerce ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.woocommerce ul.products li.product.product-category>a:hover .woocommerce-loop-category__title,.woocommerce-page ul.products li.product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{position:absolute;background-color:rgba(255,255,255,.88);transition:background .3s;text-align:center;right:1em;left:1em;padding:.5em 0 .7em}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{font-size:.7em}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{bottom:1em;text-transform:uppercase;font-weight:700}.woocommerce ul.products li.product .price,.woocommerce-page ul.products li.product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.woocommerce ul.products li.product .price del,.woocommerce-page ul.products li.product .price del{display:initial}.woocommerce ul.products li.product .button,.woocommerce-page ul.products li.product .button{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3}.woocommerce ul.products li.product .button.added,.woocommerce-page ul.products li.product .button.added{margin-bottom:0;transition:margin 0s}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.woocommerce .related.products li.product:last-child,.woocommerce-page .related.products li.product:last-child{margin-left:0}.woocommerce table.shop_table,.woocommerce-page table.shop_table{border:1px solid #ebebeb;border-radius:0}.woocommerce table.shop_table .product-thumbnail img,.woocommerce-page table.shop_table .product-thumbnail img{width:auto;max-width:70px}.woocommerce table.shop_table thead,.woocommerce-page table.shop_table thead{background-color:#fbfbfb}.woocommerce table.shop_table thead th,.woocommerce-page table.shop_table thead th{border-width:0}.woocommerce table.shop_table td,.woocommerce table.shop_table th,.woocommerce-page table.shop_table td,.woocommerce-page table.shop_table th{border-bottom-width:0;padding:.7em 1em}.woocommerce table.shop_table td,.woocommerce-page table.shop_table td{border-top:1px solid #ebebeb}.woocommerce table.shop_table .woocommerce-Price-amount,.woocommerce-page table.shop_table .woocommerce-Price-amount{font-weight:700}.woocommerce #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text{width:auto}.woocommerce #content table.cart td,.woocommerce-page #content table.cart td{min-height:3.25em}.woocommerce #content table.cart [name=coupon_code],.woocommerce-page #content table.cart [name=coupon_code]{max-height:35px}.woocommerce #content table.cart .button,.woocommerce-page #content table.cart .button{display:inline-block;width:auto}.woocommerce #content table.cart .button[name=apply_coupon],.woocommerce-page #content table.cart .button[name=apply_coupon]{padding:10px 40px}.ast-separate-container .ast-woocommerce-container{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-woocommerce-container{padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-woocommerce-container{padding:1.5em 2.14em}}@media (min-width:1201px){.ast-separate-container .ast-woocommerce-container{padding:5.34em 6.67em}}.ast-separate-container .ast-woocommerce-container .product{border-bottom:0}.ast-separate-container.single-product .ast-article-single{margin:0;padding:0;display:inline-block;width:100%}.pswp{z-index:999999}.woocommerce img.pswp__img,.woocommerce-page img.pswp__img{max-width:none}.woocommerce .pswp__caption__center,.woocommerce-page .pswp__caption__center{text-align:center}.woocommerce .pswp__bg,.woocommerce-page .pswp__bg{opacity:.7!important}.woocommerce .pswp__ui--fit .pswp__caption,.woocommerce .pswp__ui--fit .pswp__top-bar,.woocommerce-page .pswp__ui--fit .pswp__caption,.woocommerce-page .pswp__ui--fit .pswp__top-bar{background-color:transparent}.woocommerce form .form-row textarea,.woocommerce input[type=email],.woocommerce input[type=number],.woocommerce input[type=password],.woocommerce input[type=reset],.woocommerce input[type=search],.woocommerce input[type=tel],.woocommerce input[type=text],.woocommerce input[type=url],.woocommerce textarea,.woocommerce-page form .form-row textarea,.woocommerce-page input[type=email],.woocommerce-page input[type=number],.woocommerce-page input[type=password],.woocommerce-page input[type=reset],.woocommerce-page input[type=search],.woocommerce-page input[type=tel],.woocommerce-page input[type=text],.woocommerce-page input[type=url],.woocommerce-page textarea{border-color:#ddd;background:#fff;box-shadow:none;border-radius:0}.woocommerce form .form-row textarea:focus,.woocommerce input[type=email]:focus,.woocommerce input[type=number]:focus,.woocommerce input[type=password]:focus,.woocommerce input[type=reset]:focus,.woocommerce input[type=search]:focus,.woocommerce input[type=tel]:focus,.woocommerce input[type=text]:focus,.woocommerce input[type=url]:focus,.woocommerce textarea:focus,.woocommerce-page form .form-row textarea:focus,.woocommerce-page input[type=email]:focus,.woocommerce-page input[type=number]:focus,.woocommerce-page input[type=password]:focus,.woocommerce-page input[type=reset]:focus,.woocommerce-page input[type=search]:focus,.woocommerce-page input[type=tel]:focus,.woocommerce-page input[type=text]:focus,.woocommerce-page input[type=url]:focus,.woocommerce-page textarea:focus{box-shadow:none;border-color:#ddd}.woocommerce .select2-container .select2-selection--single,.woocommerce select,.woocommerce-page .select2-container .select2-selection--single,.woocommerce-page select{padding:.75em;border:1px solid #ddd;border-radius:0;box-shadow:none}.woocommerce .select2-container .select2-selection--single:focus,.woocommerce select:focus,.woocommerce-page .select2-container .select2-selection--single:focus,.woocommerce-page select:focus{outline:0}button.pswp__button{box-shadow:none!important;background-image:url(../../../../../../../plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png)!important}button.pswp__button,button.pswp__button--arrow--left::before,button.pswp__button--arrow--right::before,button.pswp__button:hover{background-color:transparent!important}button.pswp__button--arrow--left,button.pswp__button--arrow--left:hover,button.pswp__button--arrow--right,button.pswp__button--arrow--right:hover{background-image:none!important}button.pswp__button--close:hover{background-position:100% -44px}button.pswp__button--zoom:hover{background-position:-88px 0}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 3.5em 1em 2em;margin:0 0 2em;position:relative;background-color:#f7f6f7;color:#515151;border-top:3px solid #a46497;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:' ';display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:'\e028';display:inline-block;position:absolute;top:1em;right:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:left}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-right:0!important;margin-right:0!important}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:'\e015';color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:'\e016';color:#b81c23}.woocommerce .woocommerce::after,.woocommerce .woocommerce::before,.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:' ';display:table}.woocommerce .woocommerce::after,.woocommerce-account .woocommerce::after{clear:both}.woocommerce .addresses .title::after,.woocommerce .addresses .title::before,.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:' ';display:table}.woocommerce .addresses .title::after,.woocommerce-account .addresses .title::after{clear:both}.woocommerce .addresses .title h3,.woocommerce-account .addresses .title h3{float:right}.woocommerce .addresses .title .edit,.woocommerce-account .addresses .title .edit{float:left;padding:.7em 1em}.woocommerce ol.commentlist.notes li.note p.meta,.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce ol.commentlist.notes li.note .description p:last-child,.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce ul.digital-downloads,.woocommerce-account ul.digital-downloads{margin-right:0;padding-right:0}.woocommerce ul.digital-downloads li,.woocommerce-account ul.digital-downloads li{list-style:none;margin-right:0;padding-right:0}.woocommerce ul.digital-downloads li::before,.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none}.woocommerce ul.digital-downloads li .count,.woocommerce-account ul.digital-downloads li .count{float:left}.woocommerce h2,.woocommerce-account h2{font-size:1.625rem}.woocommerce .woocommerce-Addresses .woocommerce-Address-title,.woocommerce .woocommerce-Addresses .woocommerce-column__title,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce .woocommerce-customer-details .woocommerce-Address-title,.woocommerce .woocommerce-customer-details .woocommerce-column__title,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title{background:#fbfbfb;padding:.5em;margin-bottom:0;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce .woocommerce-customer-details .woocommerce-column__title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title h3{margin-bottom:0}.woocommerce .woocommerce-Addresses address,.woocommerce .woocommerce-MyAccount-content address,.woocommerce .woocommerce-customer-details address,.woocommerce-account .woocommerce-Addresses address,.woocommerce-account .woocommerce-MyAccount-content address,.woocommerce-account .woocommerce-customer-details address{border:1px solid rgba(0,0,0,.1);padding:1em;border-radius:0}.cart-collaterals h2,.woocommerce-Address h3{font-size:1.2rem;padding:.7em 1em}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#add_payment_method table.cart td,#add_payment_method table.cart th,.woocommerce-cart table.cart td,.woocommerce-cart table.cart th,.woocommerce-checkout table.cart td,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:right;box-sizing:border-box;border:1px solid #d3ced2;padding:6px 6px 5px;margin:0 0 0 4px;outline:0;line-height:1}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle;line-height:1}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:' ';display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping_calculator .button,.woocommerce-cart .cart-collaterals .shipping_calculator .button,.woocommerce-checkout .cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}#add_payment_method .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping_calculator .shipping-calculator-button::after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#777;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:40%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-right:0;border-left:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#777}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#77a464}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #ebe9eb}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:right;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:right}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:right}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#777;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:right;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:right;padding:1em;border-bottom:1px solid #d3ced2;margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:right;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 0 0 1em}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px .5em 0 0;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-right:2px}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dfdcde;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c7c1c6;border-top-color:#bbb3b9}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 0 0 1em;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:left .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/visa.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/laser.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/diners.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/amex.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/discover.svg)}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#777;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:'';display:block;border:1em solid #dfdcde;border-left-color:transparent;border-right-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;right:0;margin:-1em 2em 0 0}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:left;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:52px;vertical-align:middle}.woocommerce-cart-form__cart-item td.product-remove{text-align:center}.woocommerce-cart-form__cart-item td.product-remove a.remove{display:inline-block;vertical-align:middle}.woocommerce-cart table.shop_table td,.woocommerce-cart table.shop_table th{border-left:0}.woocommerce-cart table.shop_table .woocommerce-Price-amount,.woocommerce-cart table.shop_table td.product-name{font-weight:700}.woocommerce-cart .cart-collaterals .cross-sells li.product{padding-bottom:1em}.woocommerce-cart .cart-collaterals .cart_totals,.woocommerce-cart .cart-collaterals .cross-sells{padding:0 20px;border-width:1px;border-style:solid;border-color:#ebebeb;border-radius:0;margin-bottom:2em}.woocommerce-cart .cart-collaterals .cart_totals .shop_table,.woocommerce-cart .cart-collaterals .cross-sells .shop_table{border-top:0;border-right:0;border-left:0;border-radius:0}.woocommerce-cart .cart-collaterals .cart_totals>h2,.woocommerce-cart .cart-collaterals .cross-sells>h2{margin:0 -20px 20px;background-color:#fbfbfb;border-bottom:1px solid #ebebeb}.woocommerce-cart .hentry,.woocommerce-cart ul.products{margin-bottom:0}.woocommerce-cart .hentry li.product,.woocommerce-cart ul.products li.product{margin-bottom:0}.woocommerce-cart table.cart td.actions .coupon{display:flex;align-items:center;margin:5px 0}.woocommerce-cart table.cart td.actions .coupon .input-text{padding:.5em .75em}.woocommerce-cart table.cart td.actions .button{padding:.5em 1em;line-height:1.5}.woocommerce-cart table.cart td.actions input.button{display:inline-block;width:auto}.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{font-size:1.1em;line-height:1.8em}.woocommerce-page.woocommerce-checkout form.checkout.woocommerce-checkout:after,.woocommerce.woocommerce-checkout form.checkout.woocommerce-checkout:after{content:"";clear:both;display:table}.woocommerce-page.woocommerce-checkout table.shop_table thead,.woocommerce.woocommerce-checkout table.shop_table thead{background:0 0}.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table th{padding:14px 12px}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table td{padding:10px 0 10px 10px;border-color:#ebebeb;opacity:.8}.woocommerce-page.woocommerce-checkout table.shop_table tfoot td,.woocommerce.woocommerce-checkout table.shop_table tfoot td{opacity:1}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table th{border-bottom-width:1px}.woocommerce-page.woocommerce-checkout #customer_details h3,.woocommerce.woocommerce-checkout #customer_details h3{font-size:1.2rem;padding:20px 0 14px;margin:0 0 20px;border-bottom:1px solid #ebebeb}.woocommerce-page.woocommerce-checkout form #order_review_heading,.woocommerce.woocommerce-checkout form #order_review_heading{border-width:2px 2px 0 2px;border-style:solid;font-size:1.2rem;margin:0;padding:1.5em 1.5em 1em;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review,.woocommerce.woocommerce-checkout form #order_review{padding:0 2em;border-width:0 2px 2px;border-style:solid;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review table,.woocommerce.woocommerce-checkout form #order_review table{border-width:0}.woocommerce-page.woocommerce-checkout form #order_review td,.woocommerce-page.woocommerce-checkout form #order_review th,.woocommerce.woocommerce-checkout form #order_review td,.woocommerce.woocommerce-checkout form #order_review th{border-top:0;border-left:0;padding-right:0;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form .form-row:last-child,.woocommerce.woocommerce-checkout form .form-row:last-child{margin-bottom:0}.woocommerce-page.woocommerce-checkout #payment,.woocommerce.woocommerce-checkout #payment{border-radius:0}.woocommerce-page.woocommerce-checkout #payment ul.payment_methods,.woocommerce.woocommerce-checkout #payment ul.payment_methods{padding:0;margin-bottom:1em;border-bottom:0}.woocommerce-page.woocommerce-checkout #payment div.payment_box,.woocommerce.woocommerce-checkout #payment div.payment_box{background-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.payment_box:before,.woocommerce.woocommerce-checkout #payment div.payment_box:before{border-bottom-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.form-row,.woocommerce.woocommerce-checkout #payment div.form-row{padding:0 0 2em}.woocommerce-page.woocommerce-checkout #payment #place_order,.woocommerce.woocommerce-checkout #payment #place_order{width:100%}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th{padding:.7em 1em;border-bottom-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th:last-child{border-left-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title{background:#fbfbfb;padding:1em;margin-bottom:0;font-size:1.3rem;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading,.woocommerce.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading{font-size:1.5rem;border-top:3px solid #ebebeb;padding-top:.5em}.woocommerce-page.woocommerce-checkout .woocommerce-order h3,.woocommerce.woocommerce-checkout .woocommerce-order h3{font-size:1.1rem}.woocommerce-page.woocommerce-checkout .woocommerce-order ul.order_details,.woocommerce.woocommerce-checkout .woocommerce-order ul.order_details{margin-bottom:2em}.woocommerce-page.woocommerce-checkout .woocommerce-customer-details address,.woocommerce.woocommerce-checkout .woocommerce-customer-details address{border-left-width:1px;border-bottom-width:1px;border-radius:0}.woocommerce form .form-row .required{text-decoration:none}.woocommerce form.checkout_coupon{margin:0;border:0;padding:0 0 2em}.woocommerce form.checkout_coupon .form-row{margin:0;padding:0;float:none;display:inline-block}.woocommerce form.checkout_coupon [name=coupon_code]{padding-top:9px;padding-bottom:9px}.woocommerce form.checkout_coupon .button{padding:.5em 1em;vertical-align:initial;line-height:1.35}.woocommerce form.checkout_coupon .button[name=apply_coupon]{padding:10px 40px}@media (max-width:420px){.woocommerce form.checkout_coupon .form-row-first,.woocommerce form.checkout_coupon .form-row-last{display:block;margin:0 auto;width:100%}.woocommerce form.checkout_coupon .form-row-first{margin-bottom:10px}.woocommerce form.checkout_coupon .button[name=apply_coupon]{width:100%;padding:10px 5px}}.checkout_coupon .input-text{padding:.5em .75em}.woocommerce-MyAccount-navigation-link{list-style:none;border:1px solid rgba(0,0,0,.1);border-bottom-width:0}.woocommerce-MyAccount-navigation-link:last-child{border-bottom-width:1px}.woocommerce-MyAccount-navigation-link.is-active a{background-color:#fbfbfb}.woocommerce-MyAccount-navigation-link a{display:block;padding:.5em 1em}.woocommerce-MyAccount-navigation>ul{margin:0}.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Button{margin-top:1em;margin-right:3px}#secondary .widget.woocommerce>li,#secondary .widget_layered_nav_filters>li{margin-bottom:0}#secondary .widget .select2-container .select2-selection--multiple .select2-selection__rendered{display:block;min-height:42px}#secondary .widget .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin-top:5px;margin-bottom:5px}#secondary .widget .select2-search__field{min-height:42px;margin:0}.woocommerce #secondary .woocommerce ul.cart_list,.woocommerce #secondary .woocommerce ul.product_list_widget{margin:0}.woocommerce .woocommerce ul.cart_list li a,.woocommerce .woocommerce ul.product_list_widget li a{font-weight:400}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce .widget_shopping_cart li,.woocommerce ul.product_list_widget .cart_list li,.woocommerce ul.product_list_widget li{padding:.6em 5em .6em 0;min-height:5em;position:relative;border-bottom:1px solid #e2e2e2;margin:0;line-height:1.5}.woocommerce .widget_shopping_cart .cart_list li:last-child,.woocommerce .widget_shopping_cart li:last-child,.woocommerce ul.product_list_widget .cart_list li:last-child,.woocommerce ul.product_list_widget li:last-child{border-bottom:none}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons{margin-bottom:0}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons a{display:inline-block;width:calc(50% - 5px);margin-left:5px;text-align:center}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons .checkout.wc-forward{margin-right:5px;margin-left:0}.woocommerce.widget_product_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.woocommerce.widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-left:4px;line-height:1.5;transition:all .2s linear}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{padding:5px 0;border-top:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2;margin-bottom:1.3em}.woocommerce ul.product_list_widget li img{position:absolute;right:0;width:4em;margin:0 0 .5em 0;top:50%;transform:translateY(-50%)}.woocommerce ul.product-categories>li{padding:2px 0}.woocommerce ul.product-categories>li ul li:before{content:"\e900";padding:0 5px 0 5px;display:inline-block;font-family:Astra;transform:rotate(90deg);font-size:11px;font-size:.7rem}.woocommerce ul.product-categories>li:first-child{border:none}.woocommerce .widget del{opacity:.5}.woocommerce .widget ins{background:inherit}.woocommerce .widget .amount,.woocommerce .widget ins{font-weight:700}.woocommerce .widget .star-rating{margin:5px 0}.woocommerce .widget_rating_filter ul li a{display:inline-flex;align-items:center}.woocommerce .price_slider_amount .price_label span{font-weight:700}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.2em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{top:-.4em;cursor:pointer}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:.9em!important;padding:8px 18px}.woocommerce .widget_price_filter .price_slider{margin-bottom:1.2em}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#ededed}.woocommerce .widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;margin-left:4px;line-height:1.5;padding:.5em 1.2em;font-size:12px!important;font-size:.8rem!important}.woocommerce .widget_product_tag_cloud .tagcloud a a.current-item,.woocommerce .widget_product_tag_cloud .tagcloud a a:focus,.woocommerce .widget_product_tag_cloud .tagcloud a a:hover{background-color:#fafafa}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding:.5em 5em .5em 1.8em}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;right:auto;left:0;top:.5em}.woocommerce-product-search{display:flex}.woocommerce-product-search .search-field{flex:auto;width:100%;border-top-left-radius:0;border-bottom-left-radius:0}.woocommerce-product-search input[type=submit]{padding:10px 15px;border-top-right-radius:0;border-bottom-right-radius:0}.widget_layered_nav_filters ul li.chosen{padding:0 .5em;margin-left:.5em;background:rgba(245,245,245,.75);border-radius:20px;font-size:.8em}.widget_layered_nav_filters ul li.chosen:hover{background-color:#f5f5f5}.widget_layered_nav_filters ul li.chosen a{display:block}.widget_layered_nav_filters ul li.chosen a::before{margin-left:.5em;color:#f11}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,.05)}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{text-align:center}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-main-header-bar-alignment{display:inline-block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-masthead-custom-menu-items{display:inline-block;float:left}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-break-point .header-main-layout-2 .main-header-container{display:flex}.rtl .woocommerce-pagination .page-numbers li:last-child .next{transform:rotateY(180deg)}.rtl .woocommerce-pagination .page-numbers li:first-child .prev{transform:rotateY(-180deg)}.ast-site-header-cart .widgettitle{display:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product{text-align:right;margin-bottom:2.5em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a{display:inline-block;position:relative}.wc-block-grid .wc-block-grid__products .wc-block-grid__product a img{width:100%;height:auto;display:block;margin:0 0 .8em 0;box-shadow:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title{margin-bottom:.5em;padding:0;font-size:1em;line-height:1.2;font-weight:inherit}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .star-rating{margin:0 0 .5em auto;backface-visibility:hidden}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link{position:relative;display:block}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{font-size:.7em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price del{display:initial}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3;font-size:100%;font-weight:700}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link.added{margin-bottom:0;transition:margin 0s}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;text-transform:capitalize;position:absolute;text-align:center;border-radius:100%;z-index:9;top:0;left:15px;right:auto;margin:-.5em 0 0 -.5em}.widget_product_categories .children{padding-right:20px} \ No newline at end of file +@charset "UTF-8";@keyframes spin{100%{transform:rotate(-360deg)}}@font-face{font-family:star;src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.svg#star) format("svg");font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce) format("svg");font-weight:400;font-style:normal}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;right:0;left:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#a46497;color:#fff;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fff;text-decoration:underline}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.clear{clear:both}.ast-site-header-cart,.woocommerce .ast-site-header-cart{position:relative;list-style-type:none;margin-right:0;padding-right:0;margin-bottom:0;order:1}.ast-site-header-cart:focus .widget_shopping_cart,.ast-site-header-cart:hover .widget_shopping_cart,.woocommerce .ast-site-header-cart:focus .widget_shopping_cart,.woocommerce .ast-site-header-cart:hover .widget_shopping_cart{left:0;right:auto;opacity:1;visibility:visible}.ast-site-header-cart .ast-shopping-cart-icon,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon{display:initial;vertical-align:middle}.ast-site-header-cart .ast-shopping-cart-icon:before,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon:before{content:"\e854";font-family:Astra;font-size:18px;font-size:1.2857rem}.ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul{text-align:right;width:auto;position:static;right:auto;top:auto;border-top:0}.ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message{text-align:right}.ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-site-header-cart .widget_shopping_cart{background-color:#fff;position:absolute;top:100%;width:280px;z-index:999999;font-size:.875em;right:-999em;display:block;line-height:1.618;box-shadow:0 2px 8px 1px rgba(0,0,0,.07);transition:all .3s ease;border:2px solid #e6e6e6;opacity:0;visibility:hidden}.ast-site-header-cart .widget_shopping_cart:after,.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{bottom:100%;right:auto;left:8px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:after{border-color:rgba(255,255,255,0);border-bottom-color:#fff;border-width:6px;margin-right:-6px;margin-bottom:-.3px}.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{border-color:rgba(230,230,230,0);border-bottom-color:#e6e6e6;border-width:9px;margin-right:-5px;left:5px}.ast-site-header-cart .widget_shopping_cart .product_list_widget,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget{padding:1em 1.5em;max-height:500px;max-height:50vh;overflow-y:auto}.ast-site-header-cart .widget_shopping_cart .product_list_widget li,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li{padding:.5em 5em .5em 2em;border-bottom:1px solid rgba(0,0,0,.05)}.ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child{border-bottom:0}.ast-site-header-cart .widget_shopping_cart .product_list_widget li img,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li img{max-width:4em;margin:0 0 .5em 0}.ast-site-header-cart .widget_shopping_cart p.buttons,.ast-site-header-cart .widget_shopping_cart p.total,.woocommerce .ast-site-header-cart .widget_shopping_cart p.buttons,.woocommerce .ast-site-header-cart .widget_shopping_cart p.total{padding:1em 1.5em;margin:0;text-align:center}.ast-site-header-cart .widget_shopping_cart .buttons .button,.ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward{display:block;margin-left:0;width:100%;margin-right:0}.ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message{margin:1.41575em}.ast-site-header-cart .widget_shopping_cart .cart_list a,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a{font-weight:400;padding:0;border-width:0}.ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{border-width:1px}.ast-above-header-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.ast-below-header .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{color:#ccc}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart{left:auto;right:0;transition:right 0s}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{right:15px;left:auto}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{right:11px;left:auto}.ast-cart-menu-wrap{display:inline-block;line-height:1}.ast-cart-menu-wrap .count{font-weight:700;position:relative;display:inline-block;vertical-align:middle;text-align:center;min-width:2.1em;min-height:2.1em;font-size:.86em;line-height:1.8;border-radius:0 0 .3em .3em;border-width:2px;border-style:solid;padding:0 .4em}.ast-cart-menu-wrap .count:after{bottom:100%;margin-bottom:0;height:.8em;width:.8em;right:50%;transform:translateX(50%);top:-.6em;content:' ';position:absolute;pointer-events:none;border-width:2px;border-style:solid;border-top-right-radius:10em;border-top-left-radius:10em;border-bottom:0}.ast-woocommerce-cart-menu .main-header-menu .woocommerce-custom-menu-item li:hover>a.remove{color:#ccc}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:left}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:right}.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:flex;justify-content:center}.ast-woocommerce-cart-menu .header-main-layout-2 .site-branding{flex:0 0 100%}.ast-header-break-point .woocommerce-custom-menu-item .ast-cart-menu-wrap{width:2em;height:2em;font-size:1.4em;line-height:2;vertical-align:middle;text-align:left}.ast-header-break-point .ast-button-wrap .main-header-menu-toggle{font-size:1.4em}.ast-header-break-point .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:right}.ast-header-break-point #ast-site-header-cart .widget_shopping_cart{display:none}.ast-header-break-point.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 0 1em 1em}.ast-header-break-point.ast-woocommerce-cart-menu .header-main-layout-3 .ast-site-header-cart{padding:0 1em 1em 0}.ast-header-break-point.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item{margin-bottom:0;margin-top:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart a{border:none;display:inline-block}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;right:50%;margin-right:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;right:50%;margin-right:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce h2{margin-bottom:.7em}.woocommerce a.remove{display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:18px;width:24px;height:24px;text-align:center;line-height:21px;border-radius:100%;color:#ccc;text-decoration:none;border:1px solid #ccc}.woocommerce small.note{display:block;color:#777;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0;font-size:.92em;color:#777}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:' ';display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .woocommerce-breadcrumb a{color:#777}.woocommerce .quantity input[type=email],.woocommerce .quantity input[type=number],.woocommerce .quantity input[type=text]{padding:.3em}.woocommerce .quantity input[type=email]:focus,.woocommerce .quantity input[type=number]:focus,.woocommerce .quantity input[type=text]:focus{outline:0;border-color:#eaeaea}.woocommerce .quantity .qty{width:3.631em;text-align:center;min-height:35px}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price,.woocommerce div.product span.price{color:#77a464;font-size:1.5rem;font-weight:700;margin:0 0 .2em}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.5;font-weight:400;display:inline-block}.woocommerce div.product p.ast-stock-detail,.woocommerce div.product p.stock{font-size:1em}.woocommerce div.product p.ast-stock-detail .ast-stock-avail,.woocommerce div.product p.stock .ast-stock-avail{font-weight:700}.woocommerce div.product .stock{color:#77a464}.woocommerce div.product .out-of-stock{color:red}.woocommerce div.product .product_title{margin:0 0 .5em 0}.woocommerce div.product .product_meta{border-top:1px solid #ebebeb;padding-top:1em;font-size:.9em;margin:0 0 .8em}.woocommerce div.product .product_meta>span{display:block}.woocommerce div.product .woocommerce-product-rating{margin:0 0 .5em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{transform-style:preserve-3d;margin-bottom:1em}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795,-.035,0,1) .5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{position:absolute;top:.5em;left:.5em;font-size:2em;z-index:9;width:36px;height:36px;background:#fff;text-indent:-9999px;border-radius:100%;box-sizing:content-box;backface-visibility:hidden}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before{content:"";display:block;width:10px;height:10px;border:2px solid #000;border-radius:100%;position:absolute;top:9px;right:9px;box-sizing:content-box}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after{content:"";display:block;width:2px;height:8px;background:#000;border-radius:6px;position:absolute;top:19px;right:22px;transform:rotate(45deg);box-sizing:content-box}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:right;margin:0;list-style:none}.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{width:32%;width:calc(33.33% - .7em);margin-left:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:right}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n){margin-left:0}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:24%;width:calc(25% - .75em);margin-left:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:right}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n){margin-left:0}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{width:18.5%;width:calc(20% - .8em);margin-left:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:right}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n){margin-left:0}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:left;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 2px 0 0}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-right:16px;width:0}.woocommerce div.product div.social iframe{float:right;margin-top:3px}.woocommerce div.product .woocommerce-tabs{margin-bottom:2em;width:100%}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0;margin:0 0 1em;overflow:hidden;position:relative;border-top:1px solid rgba(0,0,0,.05)}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:0;background:0 0;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 0 0 1em;padding:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6a6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit;outline:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{content:' ';position:absolute;width:100%;height:3px;box-shadow:none;top:0;right:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{content:' ';position:absolute;bottom:-1px;width:5px;height:5px;border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:' ';width:100%;bottom:0;right:0;border-bottom:1px solid #d3ced2;z-index:1}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs.tabs::before{display:none;border:0}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 1.2em;padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes{border-style:solid}.woocommerce div.product .woocommerce-tabs .shop_attributes p{padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes th{border-right-width:1px;border-style:solid;padding-right:.9em}.woocommerce div.product .woocommerce-tabs .shop_attributes td{padding:.5em .9em .5em .5em;font-style:normal;border-style:solid}.woocommerce div.product.ast-woo-product-no-review #reviews #comments{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form_wrapper{width:100%;padding-right:0}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form{padding:1.5em 2em}.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-email{margin-bottom:1em}@media (min-width:1201px){.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{width:49%;display:inline-block}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author input,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email input{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author{float:right}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{float:left}}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:' ';display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin:0 0 1.2em}.woocommerce div.product form.cart .ast-woo-single-cart-button-wrap{display:flex;align-items:center;flex-wrap:wrap}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:' ';display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:right;margin:0 0 0 4px}.woocommerce div.product form.cart table{border-width:0 0 1px;margin:0 0 1.2em}.woocommerce div.product form.cart table td{padding-right:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{border-bottom:1px solid rgba(0,0,0,.1);position:relative;margin-bottom:1em;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;vertical-align:top;line-height:2em;padding-top:0;padding-bottom:0;padding-left:0;display:block}.woocommerce div.product form.cart .variations label{font-weight:700}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;width:100%;margin-left:0;padding-top:.5em;padding-bottom:.5em}.woocommerce div.product form.cart .variations td.label{vertical-align:middle;margin-top:8px;margin-bottom:1px}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em;position:static;display:inline-block;color:inherit;opacity:.6;font-size:11px;text-transform:uppercase}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:right}.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.woocommerce div.product form.cart .group_table tr:last-child td{border-bottom:0}.woocommerce div.product form.cart .group_table td.label{padding:.5em;font-size:.8rem;line-height:1.3;font-weight:700}.woocommerce div.product form.cart .group_table td{vertical-align:middle;padding-bottom:.5em;border-left:0;border-bottom:1px solid rgba(0,0,0,.1)}.woocommerce div.product form.cart .group_table td:first-child{text-align:right;width:4em}.woocommerce div.product form.cart .group_table td.price{padding-right:.8em;font-weight:700;font-size:.9rem}.woocommerce div.product form.cart .group_table td.price del{opacity:.5}.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce div.product form.cart p.stock{line-height:1.3;margin-bottom:.8em;font-size:.9em}.woocommerce div.product form.cart .single_variation_wrap{width:100%}.woocommerce div.product form.cart .single_variation_wrap p{margin-bottom:.8em}.woocommerce div.product form.cart .single_variation_wrap .single_variation{margin-bottom:1.2em;border-top:1px solid #ebebeb;padding-top:0;border-top:0}.woocommerce div.product span.onsale{min-height:3.5em;min-width:3.5em;line-height:3.5em}.woocommerce div.product .related.products,.woocommerce div.product .woocommerce-tabs{display:block}.woocommerce div.product .related.products ul.products{margin:0}.woocommerce div.product .related.products ul.products li.product{width:22.5%;width:calc(25% - 15px)}.woocommerce span.onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;position:absolute;text-align:center;top:.5em;right:.5em;margin:0;border-radius:100%;background-color:#77a464;color:#fff;-webkit-font-smoothing:antialiased;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:' ';display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{width:0}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;left:0;right:auto;margin:-.5em 0 0 -.5em}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{margin-top:1em}.woocommerce ul.products li.product .price{color:#77a464;display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.5;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(132,132,132,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 2.5em}.woocommerce .woocommerce-ordering select{vertical-align:top;padding:.5em}.woocommerce nav.woocommerce-pagination{text-align:right}.woocommerce nav.woocommerce-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{margin:0 0 5px 5px;border:1px solid #d3ced2;padding:0;float:right;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.75em;display:block;min-width:2.5em}.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current{background:#ebe9eb;color:#8a7e88}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.5em .75em;font-weight:700;border-radius:3px;right:auto;color:#515151;background-color:#ebe9eb;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce #respond input#submit.loading,.woocommerce a.button.loading,.woocommerce button.button.loading,.woocommerce input.button.loading{opacity:.25;padding-left:2.618em}.woocommerce #respond input#submit.loading::after,.woocommerce a.button.loading::after,.woocommerce button.button.loading::after,.woocommerce input.button.loading::after{font-family:WooCommerce;content:'\e01c';vertical-align:top;-webkit-font-smoothing:antialiased;font-weight:400;position:absolute;top:auto;left:1em;animation:spin 2s linear infinite}.woocommerce #respond input#submit.added::after,.woocommerce a.button.added::after,.woocommerce button.button.added::after,.woocommerce input.button.added::after{font-family:WooCommerce;content:'\e017';margin-right:.53em;vertical-align:bottom}.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background-color:#dad8da;text-decoration:none;background-image:none;color:#515151}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color:#935386;color:#fff}.woocommerce #respond input#submit.alt.disabled,.woocommerce #respond input#submit.alt.disabled:hover,.woocommerce #respond input#submit.alt:disabled,.woocommerce #respond input#submit.alt:disabled:hover,.woocommerce #respond input#submit.alt:disabled[disabled],.woocommerce #respond input#submit.alt:disabled[disabled]:hover,.woocommerce a.button.alt.disabled,.woocommerce a.button.alt.disabled:hover,.woocommerce a.button.alt:disabled,.woocommerce a.button.alt:disabled:hover,.woocommerce a.button.alt:disabled[disabled],.woocommerce a.button.alt:disabled[disabled]:hover,.woocommerce button.button.alt.disabled,.woocommerce button.button.alt.disabled:hover,.woocommerce button.button.alt:disabled,.woocommerce button.button.alt:disabled:hover,.woocommerce button.button.alt:disabled[disabled],.woocommerce button.button.alt:disabled[disabled]:hover,.woocommerce input.button.alt.disabled,.woocommerce input.button.alt.disabled:hover,.woocommerce input.button.alt:disabled,.woocommerce input.button.alt:disabled:hover,.woocommerce input.button.alt:disabled[disabled],.woocommerce input.button.alt:disabled[disabled]:hover{background-color:#a46497;color:#fff}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit:disabled[disabled],.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce a.button:disabled[disabled],.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce button.button:disabled[disabled],.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit:disabled[disabled]:hover,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled:hover,.woocommerce a.button:disabled[disabled]:hover,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled:hover,.woocommerce button.button:disabled[disabled]:hover,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#ebe9eb}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding:.4em .4em 0;display:inline-block}.woocommerce #reviews h2{font-weight:400}.woocommerce #reviews h2 small{float:left;color:#777;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#777}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:' ';display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 1em;border:0;position:relative;background:100%;border:0;border-bottom:1px solid #e2e2e2}.woocommerce #reviews #comments ol.commentlist li:last-child{border-bottom:0}.woocommerce #reviews #comments ol.commentlist li .meta{color:#777;font-size:.75em}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:right;position:absolute;top:0;right:0;padding:3px;height:3.6em;width:3.6em;border:none;background:0 0;margin:0;border-radius:100%;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 50px 0 0;border:none;border-radius:4px;padding:0 1.5em;display:flex;flex-wrap:wrap}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1.7em}.woocommerce #reviews #comments ol.commentlist li .comment-text meta,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{order:1;width:100%;font-size:1em;margin-bottom:.2em}.woocommerce #reviews #comments ol.commentlist li .comment-text .description{font-style:italic;order:3;width:100%}.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating{order:2;margin-bottom:.5em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 50px 0 0}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e4e1e3;border-radius:4px;padding:1em 1em 0;margin:20px 50px 0 0}.woocommerce #reviews #comments .commentlist>li::before{content:''}.woocommerce #reviews #review_form{border:2px solid #efefef;padding:1em 1.9em 2.3em}.woocommerce #reviews #review_form #respond p{margin:2px 0 6px}.woocommerce #reviews #review_form #respond p.form-submit{margin-top:1em}.woocommerce #reviews #review_form #respond p.comment-form-author,.woocommerce #reviews #review_form #respond p.comment-form-email{margin-bottom:1em}.woocommerce #reviews #review_form #respond p.comment-form-author label,.woocommerce #reviews #review_form #respond p.comment-form-email label{display:inline-block;min-width:100px}.woocommerce #reviews #review_form #respond #comment{height:90px}.woocommerce #reviews #review_form input{max-width:100%}.woocommerce .star-rating{float:left;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:star}.woocommerce .star-rating::before{content:'\73\73\73\73\73';color:#d3ced2;float:right;top:0;right:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:right;top:0;right:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:'\53\53\53\53\53';top:0;position:absolute;right:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:' ';display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 0 0 4px;float:right}.woocommerce .products .star-rating{display:block;margin:.5em auto 0;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;background:transparent none}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:' ';display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond .form-submit input{right:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none}.woocommerce p.stars a::before{display:block;position:absolute;top:0;right:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:'\e021';text-indent:0}.woocommerce p.stars a:hover~a::before{content:'\e021'}.woocommerce p.stars:hover a::before{content:'\e020'}.woocommerce p.stars.selected a.active::before{content:'\e020'}.woocommerce p.stars.selected a.active~a::before{content:'\e021'}.woocommerce p.stars.selected a:not(.active)::before{content:'\e020'}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(even) td,.woocommerce table.shop_attributes tr:nth-child(even) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid rgba(0,0,0,.1);margin:0 0 24px -1px;text-align:right;width:100%;border-collapse:separate;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px}.woocommerce table.shop_table td{border-top:1px solid rgba(0,0,0,.1);padding:6px 12px;vertical-align:middle}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid rgba(0,0,0,.1)}.woocommerce #customer_details,.woocommerce .woocommerce table.shop_table{margin-bottom:2em;border-radius:0}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.my_account_orders .order-actions{text-align:left}.woocommerce table.my_account_orders .order-actions .button{margin:.125em .25em .125em 0}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:right}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:right}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:'\2193';display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:right;clear:both;margin-left:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:' ';display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:left;margin-right:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-right:1em;border-right:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:' ';display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:right;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 0 0 4px;clear:right}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:' ';display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-left:5px;margin-bottom:5px}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2;font-weight:700;font-size:13.5px;font-size:.9rem}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row select{cursor:pointer;margin:0}.woocommerce form .form-row .required{color:red;font-weight:700;border:0}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 0 0 8px;text-align:center;vertical-align:middle}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{box-sizing:border-box;width:100%;margin:0;outline:0;line-height:1}.woocommerce form .form-row textarea{height:4em;line-height:1.5;display:block;box-shadow:none}.woocommerce form .form-row .select2-container{width:100%;line-height:2em}.woocommerce form .form-row.woocommerce-invalid .select2-container,.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:#d65d67}.woocommerce form .form-row.woocommerce-validated .select2-container,.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:#69bf29}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid #d3ced2;padding:20px;margin:2em 0;text-align:right;border-radius:5px}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0;padding:.25em 22px .25em 0;text-indent:-22px;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .5ex}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:' ';display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:right;margin-left:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-left:1px dashed #d3ced2;padding-left:2em;margin-right:0;padding-right:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-left-width:2px;text-align:right;width:100%;border-radius:5px;padding:6px 12px}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{margin-bottom:0;padding-right:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;margin-right:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;margin-right:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:' ';display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:right;padding:0 0 1px 1px;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .widget_product_categories .product-categories .count{float:left}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:left;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:right}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:right;margin-right:.5em;margin-left:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#a46497;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#a46497}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#602053;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{right:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{left:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:' ';display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .show-on-hover{position:absolute;top:0;right:0;height:100%;left:0;bottom:0;padding:0;margin:0;opacity:0;filter:blur(0);transition:all .2s linear}.woocommerce li.product:hover .show-on-hover{opacity:1;transform:scale(1) translateZ(0) translateY(0);pointer-events:inherit}.woocommerce .ast-return-to-shop{display:inline-block;margin:5px 0;vertical-align:middle}.woocommerce .related.products h2,.woocommerce .up-sells h2,.woocommerce .woocommerce-tabs h2{font-size:1.5rem}.woocommerce .comment-reply-title{font-size:1.5rem;line-height:1.3}.woocommerce .select2-container .select2-selection--single{height:auto;padding:.75em}.woocommerce .select2-container .select2-selection--single .select2-selection__rendered{padding-right:0}.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:1.35}.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{top:50%;width:1.7em;transform:translateY(-50%)}.woocommerce .select2-results__option,.woocommerce .select2-search--dropdown .select2-search__field{padding:6px .75em}.woocommerce .widget_product_search button,.woocommerce-page .widget_product_search button{flex:0 0 auto;padding:10px 20px}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{text-align:right;margin-bottom:2.5em}.woocommerce ul.products li.product.product-category>a,.woocommerce-page ul.products li.product.product-category>a{display:inline-block;position:relative}.woocommerce ul.products li.product a img,.woocommerce-page ul.products li.product a img{margin-bottom:.8em}.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce-page ul.products li.product .woocommerce-loop-product__title{margin-bottom:.5em;padding:0;font-size:1em}.woocommerce ul.products li.product .ast-woo-product-category,.woocommerce-page ul.products li.product .ast-woo-product-category{font-size:.85em;margin-bottom:.5em;display:block;line-height:1.3;opacity:.6}.woocommerce ul.products li.product .star-rating,.woocommerce-page ul.products li.product .star-rating{margin:0 0 .5em auto;backface-visibility:hidden}.woocommerce ul.products li.product .ast-woo-shop-product-description p,.woocommerce-page ul.products li.product .ast-woo-shop-product-description p{margin-bottom:.5em}.woocommerce ul.products li.product .woocommerce-loop-product__link,.woocommerce-page ul.products li.product .woocommerce-loop-product__link{position:relative;display:block}.woocommerce ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.woocommerce ul.products li.product.product-category>a:hover .woocommerce-loop-category__title,.woocommerce-page ul.products li.product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{position:absolute;background-color:rgba(255,255,255,.88);transition:background .3s;text-align:center;right:1em;left:1em;padding:.5em 0 .7em}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{font-size:.7em}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{bottom:1em;text-transform:uppercase;font-weight:700}.woocommerce ul.products li.product .price,.woocommerce-page ul.products li.product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.woocommerce ul.products li.product .price del,.woocommerce-page ul.products li.product .price del{display:initial}.woocommerce ul.products li.product .button,.woocommerce-page ul.products li.product .button{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3}.woocommerce ul.products li.product .button.added,.woocommerce-page ul.products li.product .button.added{margin-bottom:0;transition:margin 0s}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.woocommerce .related.products li.product:last-child,.woocommerce-page .related.products li.product:last-child{margin-left:0}.woocommerce table.shop_table,.woocommerce-page table.shop_table{border:1px solid #ebebeb;border-radius:0}.woocommerce table.shop_table .product-thumbnail img,.woocommerce-page table.shop_table .product-thumbnail img{width:auto;max-width:70px}.woocommerce table.shop_table thead,.woocommerce-page table.shop_table thead{background-color:#fbfbfb}.woocommerce table.shop_table thead th,.woocommerce-page table.shop_table thead th{border-width:0}.woocommerce table.shop_table td,.woocommerce table.shop_table th,.woocommerce-page table.shop_table td,.woocommerce-page table.shop_table th{border-bottom-width:0;padding:.7em 1em}.woocommerce table.shop_table td,.woocommerce-page table.shop_table td{border-top:1px solid #ebebeb}.woocommerce table.shop_table .woocommerce-Price-amount,.woocommerce-page table.shop_table .woocommerce-Price-amount{font-weight:700}.woocommerce #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text{width:auto}.woocommerce #content table.cart td,.woocommerce-page #content table.cart td{min-height:3.25em}.woocommerce #content table.cart [name=coupon_code],.woocommerce-page #content table.cart [name=coupon_code]{max-height:35px}.woocommerce #content table.cart .button,.woocommerce-page #content table.cart .button{display:inline-block;width:auto}.woocommerce #content table.cart .button[name=apply_coupon],.woocommerce-page #content table.cart .button[name=apply_coupon]{padding:10px 40px}.ast-separate-container .ast-woocommerce-container{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-woocommerce-container{padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-woocommerce-container{padding:1.5em 2.14em}}@media (min-width:1201px){.ast-separate-container .ast-woocommerce-container{padding:5.34em 6.67em}}.ast-separate-container .ast-woocommerce-container .product{border-bottom:0}.ast-separate-container.single-product .ast-article-single{margin:0;padding:0;display:inline-block;width:100%}.pswp{z-index:999999}.woocommerce img.pswp__img,.woocommerce-page img.pswp__img{max-width:none}.woocommerce .pswp__caption__center,.woocommerce-page .pswp__caption__center{text-align:center}.woocommerce .pswp__bg,.woocommerce-page .pswp__bg{opacity:.7!important}.woocommerce .pswp__ui--fit .pswp__caption,.woocommerce .pswp__ui--fit .pswp__top-bar,.woocommerce-page .pswp__ui--fit .pswp__caption,.woocommerce-page .pswp__ui--fit .pswp__top-bar{background-color:transparent}.woocommerce form .form-row textarea,.woocommerce input[type=email],.woocommerce input[type=number],.woocommerce input[type=password],.woocommerce input[type=reset],.woocommerce input[type=search],.woocommerce input[type=tel],.woocommerce input[type=text],.woocommerce input[type=url],.woocommerce textarea,.woocommerce-page form .form-row textarea,.woocommerce-page input[type=email],.woocommerce-page input[type=number],.woocommerce-page input[type=password],.woocommerce-page input[type=reset],.woocommerce-page input[type=search],.woocommerce-page input[type=tel],.woocommerce-page input[type=text],.woocommerce-page input[type=url],.woocommerce-page textarea{border-color:#ddd;background:#fff;box-shadow:none;border-radius:0}.woocommerce form .form-row textarea:focus,.woocommerce input[type=email]:focus,.woocommerce input[type=number]:focus,.woocommerce input[type=password]:focus,.woocommerce input[type=reset]:focus,.woocommerce input[type=search]:focus,.woocommerce input[type=tel]:focus,.woocommerce input[type=text]:focus,.woocommerce input[type=url]:focus,.woocommerce textarea:focus,.woocommerce-page form .form-row textarea:focus,.woocommerce-page input[type=email]:focus,.woocommerce-page input[type=number]:focus,.woocommerce-page input[type=password]:focus,.woocommerce-page input[type=reset]:focus,.woocommerce-page input[type=search]:focus,.woocommerce-page input[type=tel]:focus,.woocommerce-page input[type=text]:focus,.woocommerce-page input[type=url]:focus,.woocommerce-page textarea:focus{box-shadow:none;border-color:#ddd}.woocommerce .select2-container .select2-selection--single,.woocommerce select,.woocommerce-page .select2-container .select2-selection--single,.woocommerce-page select{padding:.75em;border:1px solid #ddd;border-radius:0;box-shadow:none}.woocommerce .select2-container .select2-selection--single:focus,.woocommerce select:focus,.woocommerce-page .select2-container .select2-selection--single:focus,.woocommerce-page select:focus{outline:0}button.pswp__button{box-shadow:none!important;background-image:url(../../../../../../../plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png)!important}button.pswp__button,button.pswp__button--arrow--left::before,button.pswp__button--arrow--right::before,button.pswp__button:hover{background-color:transparent!important}button.pswp__button--arrow--left,button.pswp__button--arrow--left:hover,button.pswp__button--arrow--right,button.pswp__button--arrow--right:hover{background-image:none!important}button.pswp__button--close:hover{background-position:100% -44px}button.pswp__button--zoom:hover{background-position:-88px 0}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 3.5em 1em 2em;margin:0 0 2em;position:relative;background-color:#f7f6f7;color:#515151;border-top:3px solid #a46497;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:' ';display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:'\e028';display:inline-block;position:absolute;top:1em;right:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:left}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-right:0!important;margin-right:0!important}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:'\e015';color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:'\e016';color:#b81c23}.woocommerce .woocommerce::after,.woocommerce .woocommerce::before,.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:' ';display:table}.woocommerce .woocommerce::after,.woocommerce-account .woocommerce::after{clear:both}.woocommerce .addresses .title::after,.woocommerce .addresses .title::before,.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:' ';display:table}.woocommerce .addresses .title::after,.woocommerce-account .addresses .title::after{clear:both}.woocommerce .addresses .title h3,.woocommerce-account .addresses .title h3{float:right}.woocommerce .addresses .title .edit,.woocommerce-account .addresses .title .edit{float:left;padding:.7em 1em}.woocommerce ol.commentlist.notes li.note p.meta,.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce ol.commentlist.notes li.note .description p:last-child,.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce ul.digital-downloads,.woocommerce-account ul.digital-downloads{margin-right:0;padding-right:0}.woocommerce ul.digital-downloads li,.woocommerce-account ul.digital-downloads li{list-style:none;margin-right:0;padding-right:0}.woocommerce ul.digital-downloads li::before,.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none}.woocommerce ul.digital-downloads li .count,.woocommerce-account ul.digital-downloads li .count{float:left}.woocommerce h2,.woocommerce-account h2{font-size:1.625rem}.woocommerce .woocommerce-Addresses .woocommerce-Address-title,.woocommerce .woocommerce-Addresses .woocommerce-column__title,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce .woocommerce-customer-details .woocommerce-Address-title,.woocommerce .woocommerce-customer-details .woocommerce-column__title,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title{background:#fbfbfb;padding:.5em;margin-bottom:0;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce .woocommerce-customer-details .woocommerce-column__title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title h3{margin-bottom:0}.woocommerce .woocommerce-Addresses address,.woocommerce .woocommerce-MyAccount-content address,.woocommerce .woocommerce-customer-details address,.woocommerce-account .woocommerce-Addresses address,.woocommerce-account .woocommerce-MyAccount-content address,.woocommerce-account .woocommerce-customer-details address{border:1px solid rgba(0,0,0,.1);padding:1em;border-radius:0}.cart-collaterals h2,.woocommerce-Address h3{font-size:1.2rem;padding:.7em 1em}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#add_payment_method table.cart td,#add_payment_method table.cart th,.woocommerce-cart table.cart td,.woocommerce-cart table.cart th,.woocommerce-checkout table.cart td,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:right;box-sizing:border-box;border:1px solid #d3ced2;padding:6px 6px 5px;margin:0 0 0 4px;outline:0;line-height:1}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle;line-height:1}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:' ';display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping_calculator .button,.woocommerce-cart .cart-collaterals .shipping_calculator .button,.woocommerce-checkout .cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}#add_payment_method .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping_calculator .shipping-calculator-button::after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#777;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:40%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-right:0;border-left:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#777}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#77a464}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #ebe9eb}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:right;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:right}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:right}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#777;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:right;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:right;padding:1em;border-bottom:1px solid #d3ced2;margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:right;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 0 0 1em}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px .5em 0 0;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-right:2px}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dfdcde;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c7c1c6;border-top-color:#bbb3b9}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 0 0 1em;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:left .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/visa.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/laser.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/diners.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/amex.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/discover.svg)}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#777;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:'';display:block;border:1em solid #dfdcde;border-left-color:transparent;border-right-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;right:0;margin:-1em 2em 0 0}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:left;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:52px;vertical-align:middle}.woocommerce-cart-form__cart-item td.product-remove{text-align:center}.woocommerce-cart-form__cart-item td.product-remove a.remove{display:inline-block;vertical-align:middle}.woocommerce-cart table.shop_table td,.woocommerce-cart table.shop_table th{border-left:0}.woocommerce-cart table.shop_table .woocommerce-Price-amount,.woocommerce-cart table.shop_table td.product-name{font-weight:700}.woocommerce-cart .cart-collaterals .cross-sells li.product{padding-bottom:1em}.woocommerce-cart .cart-collaterals .cart_totals,.woocommerce-cart .cart-collaterals .cross-sells{padding:0 20px;border-width:1px;border-style:solid;border-color:#ebebeb;border-radius:0;margin-bottom:2em}.woocommerce-cart .cart-collaterals .cart_totals .shop_table,.woocommerce-cart .cart-collaterals .cross-sells .shop_table{border-top:0;border-right:0;border-left:0;border-radius:0}.woocommerce-cart .cart-collaterals .cart_totals>h2,.woocommerce-cart .cart-collaterals .cross-sells>h2{margin:0 -20px 20px;background-color:#fbfbfb;border-bottom:1px solid #ebebeb}.woocommerce-cart .hentry,.woocommerce-cart ul.products{margin-bottom:0}.woocommerce-cart .hentry li.product,.woocommerce-cart ul.products li.product{margin-bottom:0}.woocommerce-cart table.cart td.actions .coupon{display:flex;align-items:center;margin:5px 0}.woocommerce-cart table.cart td.actions .coupon .input-text{padding:.5em .75em}.woocommerce-cart table.cart td.actions .button{padding:.5em 1em;line-height:1.5}.woocommerce-cart table.cart td.actions input.button{display:inline-block;width:auto}.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{font-size:1.1em;line-height:1.8em}.woocommerce-page.woocommerce-checkout form.checkout.woocommerce-checkout:after,.woocommerce.woocommerce-checkout form.checkout.woocommerce-checkout:after{content:"";clear:both;display:table}.woocommerce-page.woocommerce-checkout table.shop_table thead,.woocommerce.woocommerce-checkout table.shop_table thead{background:0 0}.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table th{padding:14px 12px}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table td{padding:10px 0 10px 10px;border-color:#ebebeb;opacity:.8}.woocommerce-page.woocommerce-checkout table.shop_table tfoot td,.woocommerce.woocommerce-checkout table.shop_table tfoot td{opacity:1}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table th{border-bottom-width:1px}.woocommerce-page.woocommerce-checkout #customer_details h3,.woocommerce.woocommerce-checkout #customer_details h3{font-size:1.2rem;padding:20px 0 14px;margin:0 0 20px;border-bottom:1px solid #ebebeb}.woocommerce-page.woocommerce-checkout form #order_review_heading,.woocommerce.woocommerce-checkout form #order_review_heading{border-width:2px 2px 0 2px;border-style:solid;font-size:1.2rem;margin:0;padding:1.5em 1.5em 1em;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review,.woocommerce.woocommerce-checkout form #order_review{padding:0 2em;border-width:0 2px 2px;border-style:solid;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review table,.woocommerce.woocommerce-checkout form #order_review table{border-width:0}.woocommerce-page.woocommerce-checkout form #order_review td,.woocommerce-page.woocommerce-checkout form #order_review th,.woocommerce.woocommerce-checkout form #order_review td,.woocommerce.woocommerce-checkout form #order_review th{border-top:0;border-left:0;padding-right:0;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form .form-row:last-child,.woocommerce.woocommerce-checkout form .form-row:last-child{margin-bottom:0}.woocommerce-page.woocommerce-checkout #payment,.woocommerce.woocommerce-checkout #payment{border-radius:0}.woocommerce-page.woocommerce-checkout #payment ul.payment_methods,.woocommerce.woocommerce-checkout #payment ul.payment_methods{padding:0;margin-bottom:1em;border-bottom:0}.woocommerce-page.woocommerce-checkout #payment div.payment_box,.woocommerce.woocommerce-checkout #payment div.payment_box{background-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.payment_box:before,.woocommerce.woocommerce-checkout #payment div.payment_box:before{border-bottom-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.form-row,.woocommerce.woocommerce-checkout #payment div.form-row{padding:0 0 2em}.woocommerce-page.woocommerce-checkout #payment #place_order,.woocommerce.woocommerce-checkout #payment #place_order{width:100%}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th{padding:.7em 1em;border-bottom-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th:last-child{border-left-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title{background:#fbfbfb;padding:1em;margin-bottom:0;font-size:1.3rem;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading,.woocommerce.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading{font-size:1.5rem;border-top:3px solid #ebebeb;padding-top:.5em}.woocommerce-page.woocommerce-checkout .woocommerce-order h3,.woocommerce.woocommerce-checkout .woocommerce-order h3{font-size:1.1rem}.woocommerce-page.woocommerce-checkout .woocommerce-order ul.order_details,.woocommerce.woocommerce-checkout .woocommerce-order ul.order_details{margin-bottom:2em}.woocommerce-page.woocommerce-checkout .woocommerce-customer-details address,.woocommerce.woocommerce-checkout .woocommerce-customer-details address{border-left-width:1px;border-bottom-width:1px;border-radius:0}.woocommerce form .form-row .required{text-decoration:none}.woocommerce form.checkout_coupon{margin:0;border:0;padding:0 0 2em}.woocommerce form.checkout_coupon .form-row{margin:0;padding:0;float:none;display:inline-block}.woocommerce form.checkout_coupon [name=coupon_code]{padding-top:9px;padding-bottom:9px}.woocommerce form.checkout_coupon .button{padding:.5em 1em;vertical-align:initial;line-height:1.35}.woocommerce form.checkout_coupon .button[name=apply_coupon]{padding:10px 40px}@media (max-width:420px){.woocommerce form.checkout_coupon .form-row-first,.woocommerce form.checkout_coupon .form-row-last{display:block;margin:0 auto;width:100%}.woocommerce form.checkout_coupon .form-row-first{margin-bottom:10px}.woocommerce form.checkout_coupon .button[name=apply_coupon]{width:100%;padding:10px 5px}}.checkout_coupon .input-text{padding:.5em .75em}.woocommerce-MyAccount-navigation-link{list-style:none;border:1px solid rgba(0,0,0,.1);border-bottom-width:0}.woocommerce-MyAccount-navigation-link:last-child{border-bottom-width:1px}.woocommerce-MyAccount-navigation-link.is-active a{background-color:#fbfbfb}.woocommerce-MyAccount-navigation-link a{display:block;padding:.5em 1em}.woocommerce-MyAccount-navigation>ul{margin:0}.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Button{margin-top:1em;margin-right:3px}#secondary .widget.woocommerce>li,#secondary .widget_layered_nav_filters>li{margin-bottom:0}#secondary .widget .select2-container .select2-selection--multiple .select2-selection__rendered{display:block;min-height:42px}#secondary .widget .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin-top:5px;margin-bottom:5px}#secondary .widget .select2-search__field{min-height:42px;margin:0}.woocommerce #secondary .woocommerce ul.cart_list,.woocommerce #secondary .woocommerce ul.product_list_widget{margin:0}.woocommerce .woocommerce ul.cart_list li a,.woocommerce .woocommerce ul.product_list_widget li a{font-weight:400}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce .widget_shopping_cart li,.woocommerce ul.product_list_widget .cart_list li,.woocommerce ul.product_list_widget li{padding:.6em 5em .6em 0;min-height:5em;position:relative;border-bottom:1px solid #e2e2e2;margin:0;line-height:1.5}.woocommerce .widget_shopping_cart .cart_list li:last-child,.woocommerce .widget_shopping_cart li:last-child,.woocommerce ul.product_list_widget .cart_list li:last-child,.woocommerce ul.product_list_widget li:last-child{border-bottom:none}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons{margin-bottom:0}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons a{display:inline-block;width:calc(50% - 5px);margin-left:5px;text-align:center}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons .checkout.wc-forward{margin-right:5px;margin-left:0}.woocommerce.widget_product_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.woocommerce.widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-left:4px;line-height:1.5;transition:all .2s linear}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{padding:5px 0;border-top:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2;margin-bottom:1.3em}.woocommerce ul.product_list_widget li img{position:absolute;right:0;width:4em;margin:0 0 .5em 0;top:50%;transform:translateY(-50%)}.woocommerce ul.product-categories>li{padding:2px 0}.woocommerce ul.product-categories>li ul li:before{content:"\e900";padding:0 5px 0 5px;display:inline-block;font-family:Astra;transform:rotate(90deg);font-size:11px;font-size:.7rem}.woocommerce ul.product-categories>li:first-child{border:none}.woocommerce .widget del{opacity:.5}.woocommerce .widget ins{background:inherit}.woocommerce .widget .amount,.woocommerce .widget ins{font-weight:700}.woocommerce .widget .star-rating{margin:5px 0}.woocommerce .widget_rating_filter ul li a{display:inline-flex;align-items:center}.woocommerce .price_slider_amount .price_label span{font-weight:700}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.2em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{top:-.4em;cursor:pointer}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:.9em!important;padding:8px 18px}.woocommerce .widget_price_filter .price_slider{margin-bottom:1.2em}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#ededed}.woocommerce .widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;margin-left:4px;line-height:1.5;padding:.5em 1.2em;font-size:12px!important;font-size:.8rem!important}.woocommerce .widget_product_tag_cloud .tagcloud a a.current-item,.woocommerce .widget_product_tag_cloud .tagcloud a a:focus,.woocommerce .widget_product_tag_cloud .tagcloud a a:hover{background-color:#fafafa}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding:.5em 5em .5em 1.8em}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;right:auto;left:0;top:.5em}.woocommerce-product-search{display:flex}.woocommerce-product-search .search-field{flex:auto;width:100%;border-top-left-radius:0;border-bottom-left-radius:0}.woocommerce-product-search input[type=submit]{padding:10px 15px;border-top-right-radius:0;border-bottom-right-radius:0}.widget_layered_nav_filters ul li.chosen{padding:0 .5em;margin-left:.5em;background:rgba(245,245,245,.75);border-radius:20px;font-size:.8em}.widget_layered_nav_filters ul li.chosen:hover{background-color:#f5f5f5}.widget_layered_nav_filters ul li.chosen a{display:block}.widget_layered_nav_filters ul li.chosen a::before{margin-left:.5em;color:#f11}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,.05)}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{text-align:center}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-main-header-bar-alignment{display:inline-block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-masthead-custom-menu-items{display:inline-block;float:left}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-break-point .header-main-layout-2 .main-header-container{display:flex}.rtl .woocommerce-pagination .page-numbers li:last-child .next{transform:rotateY(-180deg)}.rtl .woocommerce-pagination .page-numbers li:first-child .prev{transform:rotateY(180deg)}.ast-site-header-cart .widgettitle{display:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product{text-align:right;margin-bottom:2.5em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a{display:inline-block;position:relative}.wc-block-grid .wc-block-grid__products .wc-block-grid__product a img{width:100%;height:auto;display:block;margin:0 0 .8em 0;box-shadow:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title{margin-bottom:.5em;padding:0;font-size:1em;line-height:1.2;font-weight:inherit}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .star-rating{margin:0 0 .5em auto;backface-visibility:hidden}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link{position:relative;display:block}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{font-size:.7em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price del{display:initial}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3;font-size:100%;font-weight:700}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link.added{margin-bottom:0;transition:margin 0s}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;text-transform:capitalize;position:absolute;text-align:center;border-radius:100%;z-index:9;top:0;left:15px;right:auto;margin:-.5em 0 0 -.5em}.widget_product_categories .children{padding-right:20px}@supports (-moz-appearance:none){.sidebar-main .widget_product_search .search-field{width:60%}} \ No newline at end of file diff --git a/assets/css/minified/compatibility/woocommerce/woocommerce.min.css b/assets/css/minified/compatibility/woocommerce/woocommerce.min.css index 6fc1e19..52d2f1f 100644 --- a/assets/css/minified/compatibility/woocommerce/woocommerce.min.css +++ b/assets/css/minified/compatibility/woocommerce/woocommerce.min.css @@ -1 +1 @@ -@charset "UTF-8";@keyframes spin{100%{transform:rotate(360deg)}}@font-face{font-family:star;src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.svg#star) format("svg");font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce) format("svg");font-weight:400;font-style:normal}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#a46497;color:#fff;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fff;text-decoration:underline}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.clear{clear:both}.ast-site-header-cart,.woocommerce .ast-site-header-cart{position:relative;list-style-type:none;margin-left:0;padding-left:0;margin-bottom:0;order:1}.ast-site-header-cart:focus .widget_shopping_cart,.ast-site-header-cart:hover .widget_shopping_cart,.woocommerce .ast-site-header-cart:focus .widget_shopping_cart,.woocommerce .ast-site-header-cart:hover .widget_shopping_cart{right:0;left:auto;opacity:1;visibility:visible}.ast-site-header-cart .ast-shopping-cart-icon,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon{display:initial;vertical-align:middle}.ast-site-header-cart .ast-shopping-cart-icon:before,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon:before{content:"\e854";font-family:Astra;font-size:18px;font-size:1.2857rem}.ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul{text-align:left;width:auto;position:static;left:auto;top:auto;border-top:0}.ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message{text-align:left}.ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-site-header-cart .widget_shopping_cart{background-color:#fff;position:absolute;top:100%;width:280px;z-index:999999;font-size:.875em;left:-999em;display:block;line-height:1.618;box-shadow:0 2px 8px 1px rgba(0,0,0,.07);transition:all .3s ease;border:2px solid #e6e6e6;opacity:0;visibility:hidden}.ast-site-header-cart .widget_shopping_cart:after,.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{bottom:100%;left:auto;right:8px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:after{border-color:rgba(255,255,255,0);border-bottom-color:#fff;border-width:6px;margin-left:-6px;margin-bottom:-.3px}.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{border-color:rgba(230,230,230,0);border-bottom-color:#e6e6e6;border-width:9px;margin-left:-5px;right:5px}.ast-site-header-cart .widget_shopping_cart .product_list_widget,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget{padding:1em 1.5em;max-height:500px;max-height:50vh;overflow-y:auto}.ast-site-header-cart .widget_shopping_cart .product_list_widget li,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li{padding:.5em 2em .5em 5em;border-bottom:1px solid rgba(0,0,0,.05)}.ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child{border-bottom:0}.ast-site-header-cart .widget_shopping_cart .product_list_widget li img,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li img{max-width:4em;margin:0 0 .5em 0}.ast-site-header-cart .widget_shopping_cart p.buttons,.ast-site-header-cart .widget_shopping_cart p.total,.woocommerce .ast-site-header-cart .widget_shopping_cart p.buttons,.woocommerce .ast-site-header-cart .widget_shopping_cart p.total{padding:1em 1.5em;margin:0;text-align:center}.ast-site-header-cart .widget_shopping_cart .buttons .button,.ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward{display:block;margin-right:0;width:100%;margin-left:0}.ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message{margin:1.41575em}.ast-site-header-cart .widget_shopping_cart .cart_list a,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a{font-weight:400;padding:0;border-width:0}.ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{border-width:1px}.ast-above-header-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.ast-below-header .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{color:#ccc}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart{right:auto;left:0;transition:left 0s}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{left:15px;right:auto}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{left:11px;right:auto}.ast-cart-menu-wrap{display:inline-block;line-height:1}.ast-cart-menu-wrap .count{font-weight:700;position:relative;display:inline-block;vertical-align:middle;text-align:center;min-width:2.1em;min-height:2.1em;font-size:.86em;line-height:1.8;border-radius:0 0 .3em .3em;border-width:2px;border-style:solid;padding:0 .4em}.ast-cart-menu-wrap .count:after{bottom:100%;margin-bottom:0;height:.8em;width:.8em;left:50%;transform:translateX(-50%);top:-.6em;content:' ';position:absolute;pointer-events:none;border-width:2px;border-style:solid;border-top-left-radius:10em;border-top-right-radius:10em;border-bottom:0}.ast-woocommerce-cart-menu .main-header-menu .woocommerce-custom-menu-item li:hover>a.remove{color:#ccc}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:right}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:left}.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:flex;justify-content:center}.ast-woocommerce-cart-menu .header-main-layout-2 .site-branding{flex:0 0 100%}.ast-header-break-point .woocommerce-custom-menu-item .ast-cart-menu-wrap{width:2em;height:2em;font-size:1.4em;line-height:2;vertical-align:middle;text-align:right}.ast-header-break-point .ast-button-wrap .main-header-menu-toggle{font-size:1.4em}.ast-header-break-point .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left}.ast-header-break-point #ast-site-header-cart .widget_shopping_cart{display:none}.ast-header-break-point.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0}.ast-header-break-point.ast-woocommerce-cart-menu .header-main-layout-3 .ast-site-header-cart{padding:0 0 1em 1em}.ast-header-break-point.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item{margin-bottom:0;margin-top:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart a{border:none;display:inline-block}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce h2{margin-bottom:.7em}.woocommerce a.remove{display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:18px;width:24px;height:24px;text-align:center;line-height:21px;border-radius:100%;color:#ccc;text-decoration:none;border:1px solid #ccc}.woocommerce small.note{display:block;color:#777;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0;font-size:.92em;color:#777}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:' ';display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .woocommerce-breadcrumb a{color:#777}.woocommerce .quantity input[type=email],.woocommerce .quantity input[type=number],.woocommerce .quantity input[type=text]{padding:.3em}.woocommerce .quantity input[type=email]:focus,.woocommerce .quantity input[type=number]:focus,.woocommerce .quantity input[type=text]:focus{outline:0;border-color:#eaeaea}.woocommerce .quantity .qty{width:3.631em;text-align:center;min-height:35px}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price,.woocommerce div.product span.price{color:#77a464;font-size:1.5rem;font-weight:700;margin:0 0 .2em}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.5;font-weight:400;display:inline-block}.woocommerce div.product p.ast-stock-detail,.woocommerce div.product p.stock{font-size:1em}.woocommerce div.product p.ast-stock-detail .ast-stock-avail,.woocommerce div.product p.stock .ast-stock-avail{font-weight:700}.woocommerce div.product .stock{color:#77a464}.woocommerce div.product .out-of-stock{color:red}.woocommerce div.product .product_title{margin:0 0 .5em 0}.woocommerce div.product .product_meta{border-top:1px solid #ebebeb;padding-top:1em;font-size:.9em;margin:0 0 .8em}.woocommerce div.product .product_meta>span{display:block}.woocommerce div.product .woocommerce-product-rating{margin:0 0 .5em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{transform-style:preserve-3d;margin-bottom:1em}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795,-.035,0,1) .5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{position:absolute;top:.5em;right:.5em;font-size:2em;z-index:9;width:36px;height:36px;background:#fff;text-indent:-9999px;border-radius:100%;box-sizing:content-box;backface-visibility:hidden}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before{content:"";display:block;width:10px;height:10px;border:2px solid #000;border-radius:100%;position:absolute;top:9px;left:9px;box-sizing:content-box}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after{content:"";display:block;width:2px;height:8px;background:#000;border-radius:6px;position:absolute;top:19px;left:22px;transform:rotate(-45deg);box-sizing:content-box}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:left;margin:0;list-style:none}.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{width:32%;width:calc(33.33% - .7em);margin-right:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:left}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n){margin-right:0}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:24%;width:calc(25% - .75em);margin-right:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:left}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n){margin-right:0}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{width:18.5%;width:calc(20% - .8em);margin-right:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:left}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n){margin-right:0}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:right;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 0 0 2px}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce div.product div.social iframe{float:left;margin-top:3px}.woocommerce div.product .woocommerce-tabs{margin-bottom:2em;width:100%}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0;margin:0 0 1em;overflow:hidden;position:relative;border-top:1px solid rgba(0,0,0,.05)}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:0;background:0 0;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 1em 0 0;padding:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6a6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit;outline:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{content:' ';position:absolute;width:100%;height:3px;box-shadow:none;top:0;left:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{content:' ';position:absolute;bottom:-1px;width:5px;height:5px;border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:' ';width:100%;bottom:0;left:0;border-bottom:1px solid #d3ced2;z-index:1}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs.tabs::before{display:none;border:0}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 1.2em;padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes{border-style:solid}.woocommerce div.product .woocommerce-tabs .shop_attributes p{padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes th{border-left-width:1px;border-style:solid;padding-left:.9em}.woocommerce div.product .woocommerce-tabs .shop_attributes td{padding:.5em .5em .5em .9em;font-style:normal;border-style:solid}.woocommerce div.product.ast-woo-product-no-review #reviews #comments{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form_wrapper{width:100%;padding-left:0}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form{padding:1.5em 2em}.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-email{margin-bottom:1em}@media (min-width:1201px){.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{width:49%;display:inline-block}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author input,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email input{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author{float:left}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{float:right}}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:' ';display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin:0 0 1.2em}.woocommerce div.product form.cart .ast-woo-single-cart-button-wrap{display:flex;align-items:center;flex-wrap:wrap}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:' ';display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce div.product form.cart table{border-width:0 0 1px;margin:0 0 1.2em}.woocommerce div.product form.cart table td{padding-left:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{border-bottom:1px solid rgba(0,0,0,.1);position:relative;margin-bottom:1em;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;vertical-align:top;line-height:2em;padding-top:0;padding-bottom:0;padding-right:0;display:block}.woocommerce div.product form.cart .variations label{font-weight:700}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;width:100%;margin-right:0;padding-top:.5em;padding-bottom:.5em}.woocommerce div.product form.cart .variations td.label{vertical-align:middle;margin-top:8px;margin-bottom:1px}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em;position:static;display:inline-block;color:inherit;opacity:.6;font-size:11px;text-transform:uppercase}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:left}.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.woocommerce div.product form.cart .group_table tr:last-child td{border-bottom:0}.woocommerce div.product form.cart .group_table td.label{padding:.5em;font-size:.8rem;line-height:1.3;font-weight:700}.woocommerce div.product form.cart .group_table td{vertical-align:middle;padding-bottom:.5em;border-right:0;border-bottom:1px solid rgba(0,0,0,.1)}.woocommerce div.product form.cart .group_table td:first-child{text-align:left;width:4em}.woocommerce div.product form.cart .group_table td.price{padding-left:.8em;font-weight:700;font-size:.9rem}.woocommerce div.product form.cart .group_table td.price del{opacity:.5}.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce div.product form.cart p.stock{line-height:1.3;margin-bottom:.8em;font-size:.9em}.woocommerce div.product form.cart .single_variation_wrap{width:100%}.woocommerce div.product form.cart .single_variation_wrap p{margin-bottom:.8em}.woocommerce div.product form.cart .single_variation_wrap .single_variation{margin-bottom:1.2em;border-top:1px solid #ebebeb;padding-top:0;border-top:0}.woocommerce div.product span.onsale{min-height:3.5em;min-width:3.5em;line-height:3.5em}.woocommerce div.product .related.products,.woocommerce div.product .woocommerce-tabs{display:block}.woocommerce div.product .related.products ul.products{margin:0}.woocommerce div.product .related.products ul.products li.product{width:22.5%;width:calc(25% - 15px)}.woocommerce span.onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;position:absolute;text-align:center;top:.5em;left:.5em;margin:0;border-radius:100%;background-color:#77a464;color:#fff;-webkit-font-smoothing:antialiased;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:' ';display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{width:0}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;right:0;left:auto;margin:-.5em -.5em 0 0}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{margin-top:1em}.woocommerce ul.products li.product .price{color:#77a464;display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.5;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(132,132,132,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 2.5em}.woocommerce .woocommerce-ordering select{vertical-align:top;padding:.5em}.woocommerce nav.woocommerce-pagination{text-align:left}.woocommerce nav.woocommerce-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{margin:0 5px 5px 0;border:1px solid #d3ced2;padding:0;float:left;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.75em;display:block;min-width:2.5em}.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current{background:#ebe9eb;color:#8a7e88}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.5em .75em;font-weight:700;border-radius:3px;left:auto;color:#515151;background-color:#ebe9eb;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce #respond input#submit.loading,.woocommerce a.button.loading,.woocommerce button.button.loading,.woocommerce input.button.loading{opacity:.25;padding-right:2.618em}.woocommerce #respond input#submit.loading::after,.woocommerce a.button.loading::after,.woocommerce button.button.loading::after,.woocommerce input.button.loading::after{font-family:WooCommerce;content:'\e01c';vertical-align:top;-webkit-font-smoothing:antialiased;font-weight:400;position:absolute;top:auto;right:1em;animation:spin 2s linear infinite}.woocommerce #respond input#submit.added::after,.woocommerce a.button.added::after,.woocommerce button.button.added::after,.woocommerce input.button.added::after{font-family:WooCommerce;content:'\e017';margin-left:.53em;vertical-align:bottom}.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background-color:#dad8da;text-decoration:none;background-image:none;color:#515151}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color:#935386;color:#fff}.woocommerce #respond input#submit.alt.disabled,.woocommerce #respond input#submit.alt.disabled:hover,.woocommerce #respond input#submit.alt:disabled,.woocommerce #respond input#submit.alt:disabled:hover,.woocommerce #respond input#submit.alt:disabled[disabled],.woocommerce #respond input#submit.alt:disabled[disabled]:hover,.woocommerce a.button.alt.disabled,.woocommerce a.button.alt.disabled:hover,.woocommerce a.button.alt:disabled,.woocommerce a.button.alt:disabled:hover,.woocommerce a.button.alt:disabled[disabled],.woocommerce a.button.alt:disabled[disabled]:hover,.woocommerce button.button.alt.disabled,.woocommerce button.button.alt.disabled:hover,.woocommerce button.button.alt:disabled,.woocommerce button.button.alt:disabled:hover,.woocommerce button.button.alt:disabled[disabled],.woocommerce button.button.alt:disabled[disabled]:hover,.woocommerce input.button.alt.disabled,.woocommerce input.button.alt.disabled:hover,.woocommerce input.button.alt:disabled,.woocommerce input.button.alt:disabled:hover,.woocommerce input.button.alt:disabled[disabled],.woocommerce input.button.alt:disabled[disabled]:hover{background-color:#a46497;color:#fff}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit:disabled[disabled],.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce a.button:disabled[disabled],.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce button.button:disabled[disabled],.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit:disabled[disabled]:hover,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled:hover,.woocommerce a.button:disabled[disabled]:hover,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled:hover,.woocommerce button.button:disabled[disabled]:hover,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#ebe9eb}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding:.4em .4em 0;display:inline-block}.woocommerce #reviews h2{font-weight:400}.woocommerce #reviews h2 small{float:right;color:#777;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#777}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:' ';display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 1em;border:0;position:relative;background:0;border:0;border-bottom:1px solid #e2e2e2}.woocommerce #reviews #comments ol.commentlist li:last-child{border-bottom:0}.woocommerce #reviews #comments ol.commentlist li .meta{color:#777;font-size:.75em}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;height:3.6em;width:3.6em;border:none;background:0 0;margin:0;border-radius:100%;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:none;border-radius:4px;padding:0 1.5em;display:flex;flex-wrap:wrap}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1.7em}.woocommerce #reviews #comments ol.commentlist li .comment-text meta,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{order:1;width:100%;font-size:1em;margin-bottom:.2em}.woocommerce #reviews #comments ol.commentlist li .comment-text .description{font-style:italic;order:3;width:100%}.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating{order:2;margin-bottom:.5em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e4e1e3;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li::before{content:''}.woocommerce #reviews #review_form{border:2px solid #efefef;padding:1em 1.9em 2.3em}.woocommerce #reviews #review_form #respond p{margin:2px 0 6px}.woocommerce #reviews #review_form #respond p.form-submit{margin-top:1em}.woocommerce #reviews #review_form #respond p.comment-form-author,.woocommerce #reviews #review_form #respond p.comment-form-email{margin-bottom:1em}.woocommerce #reviews #review_form #respond p.comment-form-author label,.woocommerce #reviews #review_form #respond p.comment-form-email label{display:inline-block;min-width:100px}.woocommerce #reviews #review_form #respond #comment{height:90px}.woocommerce #reviews #review_form input{max-width:100%}.woocommerce .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:star}.woocommerce .star-rating::before{content:'\73\73\73\73\73';color:#d3ced2;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:'\53\53\53\53\53';top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:' ';display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating{display:block;margin:.5em auto 0;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;background:transparent none}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:' ';display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none}.woocommerce p.stars a::before{display:block;position:absolute;top:0;left:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:'\e021';text-indent:0}.woocommerce p.stars a:hover~a::before{content:'\e021'}.woocommerce p.stars:hover a::before{content:'\e020'}.woocommerce p.stars.selected a.active::before{content:'\e020'}.woocommerce p.stars.selected a.active~a::before{content:'\e021'}.woocommerce p.stars.selected a:not(.active)::before{content:'\e020'}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(even) td,.woocommerce table.shop_attributes tr:nth-child(even) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid rgba(0,0,0,.1);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px}.woocommerce table.shop_table td{border-top:1px solid rgba(0,0,0,.1);padding:6px 12px;vertical-align:middle}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid rgba(0,0,0,.1)}.woocommerce #customer_details,.woocommerce .woocommerce table.shop_table{margin-bottom:2em;border-radius:0}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.my_account_orders .order-actions{text-align:right}.woocommerce table.my_account_orders .order-actions .button{margin:.125em 0 .125em .25em}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:'\2193';display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:left;clear:both;margin-right:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:' ';display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:' ';display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:' ';display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-right:5px;margin-bottom:5px}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2;font-weight:700;font-size:13.5px;font-size:.9rem}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row select{cursor:pointer;margin:0}.woocommerce form .form-row .required{color:red;font-weight:700;border:0}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{box-sizing:border-box;width:100%;margin:0;outline:0;line-height:1}.woocommerce form .form-row textarea{height:4em;line-height:1.5;display:block;box-shadow:none}.woocommerce form .form-row .select2-container{width:100%;line-height:2em}.woocommerce form .form-row.woocommerce-invalid .select2-container,.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:#d65d67}.woocommerce form .form-row.woocommerce-validated .select2-container,.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:#69bf29}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid #d3ced2;padding:20px;margin:2em 0;text-align:left;border-radius:5px}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0;padding:.25em 0 .25em 22px;text-indent:-22px;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .5ex}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:' ';display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-right:1px dashed #d3ced2;padding-right:2em;margin-left:0;padding-left:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-right-width:2px;text-align:left;width:100%;border-radius:5px;padding:6px 12px}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{margin-bottom:0;padding-left:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:' ';display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:left;padding:0 1px 1px 0;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .widget_product_categories .product-categories .count{float:right}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:left}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:left;margin-left:.5em;margin-right:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#a46497;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#a46497}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#602053;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:' ';display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .show-on-hover{position:absolute;top:0;left:0;height:100%;right:0;bottom:0;padding:0;margin:0;opacity:0;filter:blur(0);transition:all .2s linear}.woocommerce li.product:hover .show-on-hover{opacity:1;transform:scale(1) translateZ(0) translateY(0);pointer-events:inherit}.woocommerce .ast-return-to-shop{display:inline-block;margin:5px 0;vertical-align:middle}.woocommerce .related.products h2,.woocommerce .up-sells h2,.woocommerce .woocommerce-tabs h2{font-size:1.5rem}.woocommerce .comment-reply-title{font-size:1.5rem;line-height:1.3}.woocommerce .select2-container .select2-selection--single{height:auto;padding:.75em}.woocommerce .select2-container .select2-selection--single .select2-selection__rendered{padding-left:0}.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:1.35}.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{top:50%;width:1.7em;transform:translateY(-50%)}.woocommerce .select2-results__option,.woocommerce .select2-search--dropdown .select2-search__field{padding:6px .75em}.woocommerce .widget_product_search button,.woocommerce-page .widget_product_search button{flex:0 0 auto;padding:10px 20px}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{text-align:left;margin-bottom:2.5em}.woocommerce ul.products li.product.product-category>a,.woocommerce-page ul.products li.product.product-category>a{display:inline-block;position:relative}.woocommerce ul.products li.product a img,.woocommerce-page ul.products li.product a img{margin-bottom:.8em}.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce-page ul.products li.product .woocommerce-loop-product__title{margin-bottom:.5em;padding:0;font-size:1em}.woocommerce ul.products li.product .ast-woo-product-category,.woocommerce-page ul.products li.product .ast-woo-product-category{font-size:.85em;margin-bottom:.5em;display:block;line-height:1.3;opacity:.6}.woocommerce ul.products li.product .star-rating,.woocommerce-page ul.products li.product .star-rating{margin:0 auto .5em 0;backface-visibility:hidden}.woocommerce ul.products li.product .ast-woo-shop-product-description p,.woocommerce-page ul.products li.product .ast-woo-shop-product-description p{margin-bottom:.5em}.woocommerce ul.products li.product .woocommerce-loop-product__link,.woocommerce-page ul.products li.product .woocommerce-loop-product__link{position:relative;display:block}.woocommerce ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.woocommerce ul.products li.product.product-category>a:hover .woocommerce-loop-category__title,.woocommerce-page ul.products li.product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{position:absolute;background-color:rgba(255,255,255,.88);transition:background .3s;text-align:center;left:1em;right:1em;padding:.5em 0 .7em}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{font-size:.7em}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{bottom:1em;text-transform:uppercase;font-weight:700}.woocommerce ul.products li.product .price,.woocommerce-page ul.products li.product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.woocommerce ul.products li.product .price del,.woocommerce-page ul.products li.product .price del{display:initial}.woocommerce ul.products li.product .button,.woocommerce-page ul.products li.product .button{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3}.woocommerce ul.products li.product .button.added,.woocommerce-page ul.products li.product .button.added{margin-bottom:0;transition:margin 0s}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.woocommerce .related.products li.product:last-child,.woocommerce-page .related.products li.product:last-child{margin-right:0}.woocommerce table.shop_table,.woocommerce-page table.shop_table{border:1px solid #ebebeb;border-radius:0}.woocommerce table.shop_table .product-thumbnail img,.woocommerce-page table.shop_table .product-thumbnail img{width:auto;max-width:70px}.woocommerce table.shop_table thead,.woocommerce-page table.shop_table thead{background-color:#fbfbfb}.woocommerce table.shop_table thead th,.woocommerce-page table.shop_table thead th{border-width:0}.woocommerce table.shop_table td,.woocommerce table.shop_table th,.woocommerce-page table.shop_table td,.woocommerce-page table.shop_table th{border-bottom-width:0;padding:.7em 1em}.woocommerce table.shop_table td,.woocommerce-page table.shop_table td{border-top:1px solid #ebebeb}.woocommerce table.shop_table .woocommerce-Price-amount,.woocommerce-page table.shop_table .woocommerce-Price-amount{font-weight:700}.woocommerce #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text{width:auto}.woocommerce #content table.cart td,.woocommerce-page #content table.cart td{min-height:3.25em}.woocommerce #content table.cart [name=coupon_code],.woocommerce-page #content table.cart [name=coupon_code]{max-height:35px}.woocommerce #content table.cart .button,.woocommerce-page #content table.cart .button{display:inline-block;width:auto}.woocommerce #content table.cart .button[name=apply_coupon],.woocommerce-page #content table.cart .button[name=apply_coupon]{padding:10px 40px}.ast-separate-container .ast-woocommerce-container{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-woocommerce-container{padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-woocommerce-container{padding:1.5em 2.14em}}@media (min-width:1201px){.ast-separate-container .ast-woocommerce-container{padding:5.34em 6.67em}}.ast-separate-container .ast-woocommerce-container .product{border-bottom:0}.ast-separate-container.single-product .ast-article-single{margin:0;padding:0;display:inline-block;width:100%}.pswp{z-index:999999}.woocommerce img.pswp__img,.woocommerce-page img.pswp__img{max-width:none}.woocommerce .pswp__caption__center,.woocommerce-page .pswp__caption__center{text-align:center}.woocommerce .pswp__bg,.woocommerce-page .pswp__bg{opacity:.7!important}.woocommerce .pswp__ui--fit .pswp__caption,.woocommerce .pswp__ui--fit .pswp__top-bar,.woocommerce-page .pswp__ui--fit .pswp__caption,.woocommerce-page .pswp__ui--fit .pswp__top-bar{background-color:transparent}.woocommerce form .form-row textarea,.woocommerce input[type=email],.woocommerce input[type=number],.woocommerce input[type=password],.woocommerce input[type=reset],.woocommerce input[type=search],.woocommerce input[type=tel],.woocommerce input[type=text],.woocommerce input[type=url],.woocommerce textarea,.woocommerce-page form .form-row textarea,.woocommerce-page input[type=email],.woocommerce-page input[type=number],.woocommerce-page input[type=password],.woocommerce-page input[type=reset],.woocommerce-page input[type=search],.woocommerce-page input[type=tel],.woocommerce-page input[type=text],.woocommerce-page input[type=url],.woocommerce-page textarea{border-color:#ddd;background:#fff;box-shadow:none;border-radius:0}.woocommerce form .form-row textarea:focus,.woocommerce input[type=email]:focus,.woocommerce input[type=number]:focus,.woocommerce input[type=password]:focus,.woocommerce input[type=reset]:focus,.woocommerce input[type=search]:focus,.woocommerce input[type=tel]:focus,.woocommerce input[type=text]:focus,.woocommerce input[type=url]:focus,.woocommerce textarea:focus,.woocommerce-page form .form-row textarea:focus,.woocommerce-page input[type=email]:focus,.woocommerce-page input[type=number]:focus,.woocommerce-page input[type=password]:focus,.woocommerce-page input[type=reset]:focus,.woocommerce-page input[type=search]:focus,.woocommerce-page input[type=tel]:focus,.woocommerce-page input[type=text]:focus,.woocommerce-page input[type=url]:focus,.woocommerce-page textarea:focus{box-shadow:none;border-color:#ddd}.woocommerce .select2-container .select2-selection--single,.woocommerce select,.woocommerce-page .select2-container .select2-selection--single,.woocommerce-page select{padding:.75em;border:1px solid #ddd;border-radius:0;box-shadow:none}.woocommerce .select2-container .select2-selection--single:focus,.woocommerce select:focus,.woocommerce-page .select2-container .select2-selection--single:focus,.woocommerce-page select:focus{outline:0}button.pswp__button{box-shadow:none!important;background-image:url(../../../../../../../plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png)!important}button.pswp__button,button.pswp__button--arrow--left::before,button.pswp__button--arrow--right::before,button.pswp__button:hover{background-color:transparent!important}button.pswp__button--arrow--left,button.pswp__button--arrow--left:hover,button.pswp__button--arrow--right,button.pswp__button--arrow--right:hover{background-image:none!important}button.pswp__button--close:hover{background-position:0 -44px}button.pswp__button--zoom:hover{background-position:-88px 0}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 2em 1em 3.5em;margin:0 0 2em;position:relative;background-color:#f7f6f7;color:#515151;border-top:3px solid #a46497;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:' ';display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:'\e028';display:inline-block;position:absolute;top:1em;left:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:right}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:'\e015';color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:'\e016';color:#b81c23}.woocommerce .woocommerce::after,.woocommerce .woocommerce::before,.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:' ';display:table}.woocommerce .woocommerce::after,.woocommerce-account .woocommerce::after{clear:both}.woocommerce .addresses .title::after,.woocommerce .addresses .title::before,.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:' ';display:table}.woocommerce .addresses .title::after,.woocommerce-account .addresses .title::after{clear:both}.woocommerce .addresses .title h3,.woocommerce-account .addresses .title h3{float:left}.woocommerce .addresses .title .edit,.woocommerce-account .addresses .title .edit{float:right;padding:.7em 1em}.woocommerce ol.commentlist.notes li.note p.meta,.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce ol.commentlist.notes li.note .description p:last-child,.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce ul.digital-downloads,.woocommerce-account ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li,.woocommerce-account ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li::before,.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}.woocommerce ul.digital-downloads li .count,.woocommerce-account ul.digital-downloads li .count{float:right}.woocommerce h2,.woocommerce-account h2{font-size:1.625rem}.woocommerce .woocommerce-Addresses .woocommerce-Address-title,.woocommerce .woocommerce-Addresses .woocommerce-column__title,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce .woocommerce-customer-details .woocommerce-Address-title,.woocommerce .woocommerce-customer-details .woocommerce-column__title,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title{background:#fbfbfb;padding:.5em;margin-bottom:0;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce .woocommerce-customer-details .woocommerce-column__title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title h3{margin-bottom:0}.woocommerce .woocommerce-Addresses address,.woocommerce .woocommerce-MyAccount-content address,.woocommerce .woocommerce-customer-details address,.woocommerce-account .woocommerce-Addresses address,.woocommerce-account .woocommerce-MyAccount-content address,.woocommerce-account .woocommerce-customer-details address{border:1px solid rgba(0,0,0,.1);padding:1em;border-radius:0}.cart-collaterals h2,.woocommerce-Address h3{font-size:1.2rem;padding:.7em 1em}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#add_payment_method table.cart td,#add_payment_method table.cart th,.woocommerce-cart table.cart td,.woocommerce-cart table.cart th,.woocommerce-checkout table.cart td,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:left;box-sizing:border-box;border:1px solid #d3ced2;padding:6px 6px 5px;margin:0 4px 0 0;outline:0;line-height:1}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle;line-height:1}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:' ';display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping_calculator .button,.woocommerce-cart .cart-collaterals .shipping_calculator .button,.woocommerce-checkout .cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}#add_payment_method .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping_calculator .shipping-calculator-button::after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#777;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:40%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-left:0;border-right:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#777}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#77a464}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #ebe9eb}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:left;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:left}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:left}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#777;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:left;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:left;padding:1em;border-bottom:1px solid #d3ced2;margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:left;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 1em 0 0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-left:2px}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dfdcde;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c7c1c6;border-top-color:#bbb3b9}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 1em 0 0;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/visa.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/laser.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/diners.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/amex.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/discover.svg)}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#777;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:'';display:block;border:1em solid #dfdcde;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;left:0;margin:-1em 0 0 2em}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:right;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:52px;vertical-align:middle}.woocommerce-cart-form__cart-item td.product-remove{text-align:center}.woocommerce-cart-form__cart-item td.product-remove a.remove{display:inline-block;vertical-align:middle}.woocommerce-cart table.shop_table td,.woocommerce-cart table.shop_table th{border-right:0}.woocommerce-cart table.shop_table .woocommerce-Price-amount,.woocommerce-cart table.shop_table td.product-name{font-weight:700}.woocommerce-cart .cart-collaterals .cross-sells li.product{padding-bottom:1em}.woocommerce-cart .cart-collaterals .cart_totals,.woocommerce-cart .cart-collaterals .cross-sells{padding:0 20px;border-width:1px;border-style:solid;border-color:#ebebeb;border-radius:0;margin-bottom:2em}.woocommerce-cart .cart-collaterals .cart_totals .shop_table,.woocommerce-cart .cart-collaterals .cross-sells .shop_table{border-top:0;border-left:0;border-right:0;border-radius:0}.woocommerce-cart .cart-collaterals .cart_totals>h2,.woocommerce-cart .cart-collaterals .cross-sells>h2{margin:0 -20px 20px;background-color:#fbfbfb;border-bottom:1px solid #ebebeb}.woocommerce-cart .hentry,.woocommerce-cart ul.products{margin-bottom:0}.woocommerce-cart .hentry li.product,.woocommerce-cart ul.products li.product{margin-bottom:0}.woocommerce-cart table.cart td.actions .coupon{display:flex;align-items:center;margin:5px 0}.woocommerce-cart table.cart td.actions .coupon .input-text{padding:.5em .75em}.woocommerce-cart table.cart td.actions .button{padding:.5em 1em;line-height:1.5}.woocommerce-cart table.cart td.actions input.button{display:inline-block;width:auto}.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{font-size:1.1em;line-height:1.8em}.woocommerce-page.woocommerce-checkout form.checkout.woocommerce-checkout:after,.woocommerce.woocommerce-checkout form.checkout.woocommerce-checkout:after{content:"";clear:both;display:table}.woocommerce-page.woocommerce-checkout table.shop_table thead,.woocommerce.woocommerce-checkout table.shop_table thead{background:0 0}.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table th{padding:14px 12px}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table td{padding:10px 10px 10px 0;border-color:#ebebeb;opacity:.8}.woocommerce-page.woocommerce-checkout table.shop_table tfoot td,.woocommerce.woocommerce-checkout table.shop_table tfoot td{opacity:1}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table th{border-bottom-width:1px}.woocommerce-page.woocommerce-checkout #customer_details h3,.woocommerce.woocommerce-checkout #customer_details h3{font-size:1.2rem;padding:20px 0 14px;margin:0 0 20px;border-bottom:1px solid #ebebeb}.woocommerce-page.woocommerce-checkout form #order_review_heading,.woocommerce.woocommerce-checkout form #order_review_heading{border-width:2px 2px 0 2px;border-style:solid;font-size:1.2rem;margin:0;padding:1.5em 1.5em 1em;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review,.woocommerce.woocommerce-checkout form #order_review{padding:0 2em;border-width:0 2px 2px;border-style:solid;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review table,.woocommerce.woocommerce-checkout form #order_review table{border-width:0}.woocommerce-page.woocommerce-checkout form #order_review td,.woocommerce-page.woocommerce-checkout form #order_review th,.woocommerce.woocommerce-checkout form #order_review td,.woocommerce.woocommerce-checkout form #order_review th{border-top:0;border-right:0;padding-left:0;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form .form-row:last-child,.woocommerce.woocommerce-checkout form .form-row:last-child{margin-bottom:0}.woocommerce-page.woocommerce-checkout #payment,.woocommerce.woocommerce-checkout #payment{border-radius:0}.woocommerce-page.woocommerce-checkout #payment ul.payment_methods,.woocommerce.woocommerce-checkout #payment ul.payment_methods{padding:0;margin-bottom:1em;border-bottom:0}.woocommerce-page.woocommerce-checkout #payment div.payment_box,.woocommerce.woocommerce-checkout #payment div.payment_box{background-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.payment_box:before,.woocommerce.woocommerce-checkout #payment div.payment_box:before{border-bottom-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.form-row,.woocommerce.woocommerce-checkout #payment div.form-row{padding:0 0 2em}.woocommerce-page.woocommerce-checkout #payment #place_order,.woocommerce.woocommerce-checkout #payment #place_order{width:100%}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th{padding:.7em 1em;border-bottom-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th:last-child{border-right-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title{background:#fbfbfb;padding:1em;margin-bottom:0;font-size:1.3rem;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading,.woocommerce.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading{font-size:1.5rem;border-top:3px solid #ebebeb;padding-top:.5em}.woocommerce-page.woocommerce-checkout .woocommerce-order h3,.woocommerce.woocommerce-checkout .woocommerce-order h3{font-size:1.1rem}.woocommerce-page.woocommerce-checkout .woocommerce-order ul.order_details,.woocommerce.woocommerce-checkout .woocommerce-order ul.order_details{margin-bottom:2em}.woocommerce-page.woocommerce-checkout .woocommerce-customer-details address,.woocommerce.woocommerce-checkout .woocommerce-customer-details address{border-right-width:1px;border-bottom-width:1px;border-radius:0}.woocommerce form .form-row .required{text-decoration:none}.woocommerce form.checkout_coupon{margin:0;border:0;padding:0 0 2em}.woocommerce form.checkout_coupon .form-row{margin:0;padding:0;float:none;display:inline-block}.woocommerce form.checkout_coupon [name=coupon_code]{padding-top:9px;padding-bottom:9px}.woocommerce form.checkout_coupon .button{padding:.5em 1em;vertical-align:initial;line-height:1.35}.woocommerce form.checkout_coupon .button[name=apply_coupon]{padding:10px 40px}@media (max-width:420px){.woocommerce form.checkout_coupon .form-row-first,.woocommerce form.checkout_coupon .form-row-last{display:block;margin:0 auto;width:100%}.woocommerce form.checkout_coupon .form-row-first{margin-bottom:10px}.woocommerce form.checkout_coupon .button[name=apply_coupon]{width:100%;padding:10px 5px}}.checkout_coupon .input-text{padding:.5em .75em}.woocommerce-MyAccount-navigation-link{list-style:none;border:1px solid rgba(0,0,0,.1);border-bottom-width:0}.woocommerce-MyAccount-navigation-link:last-child{border-bottom-width:1px}.woocommerce-MyAccount-navigation-link.is-active a{background-color:#fbfbfb}.woocommerce-MyAccount-navigation-link a{display:block;padding:.5em 1em}.woocommerce-MyAccount-navigation>ul{margin:0}.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Button{margin-top:1em;margin-left:3px}#secondary .widget.woocommerce>li,#secondary .widget_layered_nav_filters>li{margin-bottom:0}#secondary .widget .select2-container .select2-selection--multiple .select2-selection__rendered{display:block;min-height:42px}#secondary .widget .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin-top:5px;margin-bottom:5px}#secondary .widget .select2-search__field{min-height:42px;margin:0}.woocommerce #secondary .woocommerce ul.cart_list,.woocommerce #secondary .woocommerce ul.product_list_widget{margin:0}.woocommerce .woocommerce ul.cart_list li a,.woocommerce .woocommerce ul.product_list_widget li a{font-weight:400}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce .widget_shopping_cart li,.woocommerce ul.product_list_widget .cart_list li,.woocommerce ul.product_list_widget li{padding:.6em 0 .6em 5em;min-height:5em;position:relative;border-bottom:1px solid #e2e2e2;margin:0;line-height:1.5}.woocommerce .widget_shopping_cart .cart_list li:last-child,.woocommerce .widget_shopping_cart li:last-child,.woocommerce ul.product_list_widget .cart_list li:last-child,.woocommerce ul.product_list_widget li:last-child{border-bottom:none}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons{margin-bottom:0}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons a{display:inline-block;width:calc(50% - 5px);margin-right:5px;text-align:center}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons .checkout.wc-forward{margin-left:5px;margin-right:0}.woocommerce.widget_product_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.woocommerce.widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-right:4px;line-height:1.5;transition:all .2s linear}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{padding:5px 0;border-top:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2;margin-bottom:1.3em}.woocommerce ul.product_list_widget li img{position:absolute;left:0;width:4em;margin:0 0 .5em 0;top:50%;transform:translateY(-50%)}.woocommerce ul.product-categories>li{padding:2px 0}.woocommerce ul.product-categories>li ul li:before{content:"\e900";padding:0 5px 0 5px;display:inline-block;font-family:Astra;transform:rotate(-90deg);font-size:11px;font-size:.7rem}.woocommerce ul.product-categories>li:first-child{border:none}.woocommerce .widget del{opacity:.5}.woocommerce .widget ins{background:inherit}.woocommerce .widget .amount,.woocommerce .widget ins{font-weight:700}.woocommerce .widget .star-rating{margin:5px 0}.woocommerce .widget_rating_filter ul li a{display:inline-flex;align-items:center}.woocommerce .price_slider_amount .price_label span{font-weight:700}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.2em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{top:-.4em;cursor:pointer}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:.9em!important;padding:8px 18px}.woocommerce .widget_price_filter .price_slider{margin-bottom:1.2em}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#ededed}.woocommerce .widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;margin-right:4px;line-height:1.5;padding:.5em 1.2em;font-size:12px!important;font-size:.8rem!important}.woocommerce .widget_product_tag_cloud .tagcloud a a.current-item,.woocommerce .widget_product_tag_cloud .tagcloud a a:focus,.woocommerce .widget_product_tag_cloud .tagcloud a a:hover{background-color:#fafafa}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding:.5em 1.8em .5em 5em}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;left:auto;right:0;top:.5em}.woocommerce-product-search{display:flex}.woocommerce-product-search .search-field{flex:auto;width:100%;border-top-right-radius:0;border-bottom-right-radius:0}.woocommerce-product-search input[type=submit]{padding:10px 15px;border-top-left-radius:0;border-bottom-left-radius:0}.widget_layered_nav_filters ul li.chosen{padding:0 .5em;margin-right:.5em;background:rgba(245,245,245,.75);border-radius:20px;font-size:.8em}.widget_layered_nav_filters ul li.chosen:hover{background-color:#f5f5f5}.widget_layered_nav_filters ul li.chosen a{display:block}.widget_layered_nav_filters ul li.chosen a::before{margin-right:.5em;color:#f11}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,.05)}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{text-align:center}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-main-header-bar-alignment{display:inline-block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-masthead-custom-menu-items{display:inline-block;float:right}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-break-point .header-main-layout-2 .main-header-container{display:flex}.rtl .woocommerce-pagination .page-numbers li:last-child .next{transform:rotateY(180deg)}.rtl .woocommerce-pagination .page-numbers li:first-child .prev{transform:rotateY(-180deg)}.ast-site-header-cart .widgettitle{display:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product{text-align:left;margin-bottom:2.5em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a{display:inline-block;position:relative}.wc-block-grid .wc-block-grid__products .wc-block-grid__product a img{width:100%;height:auto;display:block;margin:0 0 .8em 0;box-shadow:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title{margin-bottom:.5em;padding:0;font-size:1em;line-height:1.2;font-weight:inherit}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .star-rating{margin:0 auto .5em 0;backface-visibility:hidden}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link{position:relative;display:block}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{font-size:.7em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price del{display:initial}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3;font-size:100%;font-weight:700}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link.added{margin-bottom:0;transition:margin 0s}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;text-transform:capitalize;position:absolute;text-align:center;border-radius:100%;z-index:9;top:0;right:15px;left:auto;margin:-.5em -.5em 0 0}.widget_product_categories .children{padding-left:20px} \ No newline at end of file +@charset "UTF-8";@keyframes spin{100%{transform:rotate(360deg)}}@font-face{font-family:star;src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/star.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/star.svg#star) format("svg");font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot);src:url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix) format("embedded-opentype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.woff) format("woff"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.ttf) format("truetype"),url(../../../../../../../plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce) format("svg");font-weight:400;font-style:normal}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#a46497;color:#fff;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fff;text-decoration:underline}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.clear{clear:both}.ast-site-header-cart,.woocommerce .ast-site-header-cart{position:relative;list-style-type:none;margin-left:0;padding-left:0;margin-bottom:0;order:1}.ast-site-header-cart:focus .widget_shopping_cart,.ast-site-header-cart:hover .widget_shopping_cart,.woocommerce .ast-site-header-cart:focus .widget_shopping_cart,.woocommerce .ast-site-header-cart:hover .widget_shopping_cart{right:0;left:auto;opacity:1;visibility:visible}.ast-site-header-cart .ast-shopping-cart-icon,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon{display:initial;vertical-align:middle}.ast-site-header-cart .ast-shopping-cart-icon:before,.woocommerce .ast-site-header-cart .ast-shopping-cart-icon:before{content:"\e854";font-family:Astra;font-size:18px;font-size:1.2857rem}.ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart_content>ul{text-align:left;width:auto;position:static;left:auto;top:auto;border-top:0}.ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .ast-site-header-cart-data .woocommerce-mini-cart__empty-message{text-align:left}.ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-site-header-cart .widget_shopping_cart{background-color:#fff;position:absolute;top:100%;width:280px;z-index:999999;font-size:.875em;left:-999em;display:block;line-height:1.618;box-shadow:0 2px 8px 1px rgba(0,0,0,.07);transition:all .3s ease;border:2px solid #e6e6e6;opacity:0;visibility:hidden}.ast-site-header-cart .widget_shopping_cart:after,.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{bottom:100%;left:auto;right:8px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-site-header-cart .widget_shopping_cart:after{border-color:rgba(255,255,255,0);border-bottom-color:#fff;border-width:6px;margin-left:-6px;margin-bottom:-.3px}.ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-site-header-cart .widget_shopping_cart:before{border-color:rgba(230,230,230,0);border-bottom-color:#e6e6e6;border-width:9px;margin-left:-5px;right:5px}.ast-site-header-cart .widget_shopping_cart .product_list_widget,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget{padding:1em 1.5em;max-height:500px;max-height:50vh;overflow-y:auto}.ast-site-header-cart .widget_shopping_cart .product_list_widget li,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li{padding:.5em 2em .5em 5em;border-bottom:1px solid rgba(0,0,0,.05)}.ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li:last-child{border-bottom:0}.ast-site-header-cart .widget_shopping_cart .product_list_widget li img,.woocommerce .ast-site-header-cart .widget_shopping_cart .product_list_widget li img{max-width:4em;margin:0 0 .5em 0}.ast-site-header-cart .widget_shopping_cart p.buttons,.ast-site-header-cart .widget_shopping_cart p.total,.woocommerce .ast-site-header-cart .widget_shopping_cart p.buttons,.woocommerce .ast-site-header-cart .widget_shopping_cart p.total{padding:1em 1.5em;margin:0;text-align:center}.ast-site-header-cart .widget_shopping_cart .buttons .button,.ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button,.woocommerce .ast-site-header-cart .widget_shopping_cart .buttons .button.wc-forward{display:block;margin-right:0;width:100%;margin-left:0}.ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message,.woocommerce .ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message{margin:1.41575em}.ast-site-header-cart .widget_shopping_cart .cart_list a,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a{font-weight:400;padding:0;border-width:0}.ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{border-width:1px}.ast-above-header-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.ast-below-header .ast-site-header-cart .widget_shopping_cart .cart_list a.remove,.main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart .cart_list a.remove{color:#ccc}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart{right:auto;left:0;transition:left 0s}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:after,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{left:15px;right:auto}.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart:before,.woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart:before{left:11px;right:auto}.ast-cart-menu-wrap{display:inline-block;line-height:1}.ast-cart-menu-wrap .count{font-weight:700;position:relative;display:inline-block;vertical-align:middle;text-align:center;min-width:2.1em;min-height:2.1em;font-size:.86em;line-height:1.8;border-radius:0 0 .3em .3em;border-width:2px;border-style:solid;padding:0 .4em}.ast-cart-menu-wrap .count:after{bottom:100%;margin-bottom:0;height:.8em;width:.8em;left:50%;transform:translateX(-50%);top:-.6em;content:' ';position:absolute;pointer-events:none;border-width:2px;border-style:solid;border-top-left-radius:10em;border-top-right-radius:10em;border-bottom:0}.ast-woocommerce-cart-menu .main-header-menu .woocommerce-custom-menu-item li:hover>a.remove{color:#ccc}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-1.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:right}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart{flex:1}.ast-woocommerce-cart-menu .header-main-layout-3.ast-no-menu-items .ast-site-header-cart .ast-site-header-cart-li{text-align:left}.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:flex;justify-content:center}.ast-woocommerce-cart-menu .header-main-layout-2 .site-branding{flex:0 0 100%}.ast-header-break-point .woocommerce-custom-menu-item .ast-cart-menu-wrap{width:2em;height:2em;font-size:1.4em;line-height:2;vertical-align:middle;text-align:right}.ast-header-break-point .ast-button-wrap .main-header-menu-toggle{font-size:1.4em}.ast-header-break-point .main-header-menu .woocommerce-custom-menu-item .ast-cart-menu-wrap{height:3em;line-height:3;text-align:left}.ast-header-break-point #ast-site-header-cart .widget_shopping_cart{display:none}.ast-header-break-point.ast-woocommerce-cart-menu .ast-site-header-cart{order:initial;line-height:3;padding:0 1em 1em 0}.ast-header-break-point.ast-woocommerce-cart-menu .header-main-layout-3 .ast-site-header-cart{padding:0 0 1em 1em}.ast-header-break-point.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item{margin-bottom:0;margin-top:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart{padding:0}.ast-header-break-point .ast-masthead-custom-menu-items.woocommerce-custom-menu-item .ast-site-header-cart a{border:none;display:inline-block}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:'';animation:spin 1s ease-in-out infinite;background:url(../../../../../../../plugins/woocommerce/assets/images/icons/loader.svg) center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce h2{margin-bottom:.7em}.woocommerce a.remove{display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:400;font-size:18px;width:24px;height:24px;text-align:center;line-height:21px;border-radius:100%;color:#ccc;text-decoration:none;border:1px solid #ccc}.woocommerce small.note{display:block;color:#777;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0;font-size:.92em;color:#777}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:' ';display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .woocommerce-breadcrumb a{color:#777}.woocommerce .quantity input[type=email],.woocommerce .quantity input[type=number],.woocommerce .quantity input[type=text]{padding:.3em}.woocommerce .quantity input[type=email]:focus,.woocommerce .quantity input[type=number]:focus,.woocommerce .quantity input[type=text]:focus{outline:0;border-color:#eaeaea}.woocommerce .quantity .qty{width:3.631em;text-align:center;min-height:35px}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price,.woocommerce div.product span.price{color:#77a464;font-size:1.5rem;font-weight:700;margin:0 0 .2em}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.5;font-weight:400;display:inline-block}.woocommerce div.product p.ast-stock-detail,.woocommerce div.product p.stock{font-size:1em}.woocommerce div.product p.ast-stock-detail .ast-stock-avail,.woocommerce div.product p.stock .ast-stock-avail{font-weight:700}.woocommerce div.product .stock{color:#77a464}.woocommerce div.product .out-of-stock{color:red}.woocommerce div.product .product_title{margin:0 0 .5em 0}.woocommerce div.product .product_meta{border-top:1px solid #ebebeb;padding-top:1em;font-size:.9em;margin:0 0 .8em}.woocommerce div.product .product_meta>span{display:block}.woocommerce div.product .woocommerce-product-rating{margin:0 0 .5em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{transform-style:preserve-3d;margin-bottom:1em}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795,-.035,0,1) .5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{position:absolute;top:.5em;right:.5em;font-size:2em;z-index:9;width:36px;height:36px;background:#fff;text-indent:-9999px;border-radius:100%;box-sizing:content-box;backface-visibility:hidden}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before{content:"";display:block;width:10px;height:10px;border:2px solid #000;border-radius:100%;position:absolute;top:9px;left:9px;box-sizing:content-box}.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after{content:"";display:block;width:2px;height:8px;background:#000;border-radius:6px;position:absolute;top:19px;left:22px;transform:rotate(-45deg);box-sizing:content-box}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:left;margin:0;list-style:none}.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{width:32%;width:calc(33.33% - .7em);margin-right:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:left}.woocommerce div.product div.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n){margin-right:0}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:24%;width:calc(25% - .75em);margin-right:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:left}.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n){margin-right:0}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li{width:18.5%;width:calc(20% - .8em);margin-right:1em;margin-bottom:1em}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:left}.woocommerce div.product div.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n){margin-right:0}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:right;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 0 0 2px}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce div.product div.social iframe{float:left;margin-top:3px}.woocommerce div.product .woocommerce-tabs{margin-bottom:2em;width:100%}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0;margin:0 0 1em;overflow:hidden;position:relative;border-top:1px solid rgba(0,0,0,.05)}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:0;background:0 0;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 1em 0 0;padding:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6a6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit;outline:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{content:' ';position:absolute;width:100%;height:3px;box-shadow:none;top:0;left:0;border-radius:0}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{content:' ';position:absolute;bottom:-1px;width:5px;height:5px;border:none;box-shadow:none}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:' ';width:100%;bottom:0;left:0;border-bottom:1px solid #d3ced2;z-index:1}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs.tabs::before{display:none;border:0}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 1.2em;padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes{border-style:solid}.woocommerce div.product .woocommerce-tabs .shop_attributes p{padding:0}.woocommerce div.product .woocommerce-tabs .shop_attributes th{border-left-width:1px;border-style:solid;padding-left:.9em}.woocommerce div.product .woocommerce-tabs .shop_attributes td{padding:.5em .5em .5em .9em;font-style:normal;border-style:solid}.woocommerce div.product.ast-woo-product-no-review #reviews #comments{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form_wrapper{width:100%;padding-left:0}.woocommerce div.product.ast-woo-product-no-review #reviews #review_form{padding:1.5em 2em}.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews #respond p.comment-form-email{margin-bottom:1em}@media (min-width:1201px){.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{width:49%;display:inline-block}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author input,.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email input{width:100%}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-author{float:left}.woocommerce div.product.ast-woo-product-no-review #reviews .comment-form-email{float:right}}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:' ';display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin:0 0 1.2em}.woocommerce div.product form.cart .ast-woo-single-cart-button-wrap{display:flex;align-items:center;flex-wrap:wrap}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:' ';display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce div.product form.cart table{border-width:0 0 1px;margin:0 0 1.2em}.woocommerce div.product form.cart table td{padding-left:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{border-bottom:1px solid rgba(0,0,0,.1);position:relative;margin-bottom:1em;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;vertical-align:top;line-height:2em;padding-top:0;padding-bottom:0;padding-right:0;display:block}.woocommerce div.product form.cart .variations label{font-weight:700}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;width:100%;margin-right:0;padding-top:.5em;padding-bottom:.5em}.woocommerce div.product form.cart .variations td.label{vertical-align:middle;margin-top:8px;margin-bottom:1px}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em;position:static;display:inline-block;color:inherit;opacity:.6;font-size:11px;text-transform:uppercase}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:left}.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.woocommerce div.product form.cart .group_table tr:last-child td{border-bottom:0}.woocommerce div.product form.cart .group_table td.label{padding:.5em;font-size:.8rem;line-height:1.3;font-weight:700}.woocommerce div.product form.cart .group_table td{vertical-align:middle;padding-bottom:.5em;border-right:0;border-bottom:1px solid rgba(0,0,0,.1)}.woocommerce div.product form.cart .group_table td:first-child{text-align:left;width:4em}.woocommerce div.product form.cart .group_table td.price{padding-left:.8em;font-weight:700;font-size:.9rem}.woocommerce div.product form.cart .group_table td.price del{opacity:.5}.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce div.product form.cart p.stock{line-height:1.3;margin-bottom:.8em;font-size:.9em}.woocommerce div.product form.cart .single_variation_wrap{width:100%}.woocommerce div.product form.cart .single_variation_wrap p{margin-bottom:.8em}.woocommerce div.product form.cart .single_variation_wrap .single_variation{margin-bottom:1.2em;border-top:1px solid #ebebeb;padding-top:0;border-top:0}.woocommerce div.product span.onsale{min-height:3.5em;min-width:3.5em;line-height:3.5em}.woocommerce div.product .related.products,.woocommerce div.product .woocommerce-tabs{display:block}.woocommerce div.product .related.products ul.products{margin:0}.woocommerce div.product .related.products ul.products li.product{width:22.5%;width:calc(25% - 15px)}.woocommerce span.onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;position:absolute;text-align:center;top:.5em;left:.5em;margin:0;border-radius:100%;background-color:#77a464;color:#fff;-webkit-font-smoothing:antialiased;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:' ';display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{width:0}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;right:0;left:auto;margin:-.5em -.5em 0 0}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{margin-top:1em}.woocommerce ul.products li.product .price{color:#77a464;display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.5;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(132,132,132,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 2.5em}.woocommerce .woocommerce-ordering select{vertical-align:top;padding:.5em}.woocommerce nav.woocommerce-pagination{text-align:left}.woocommerce nav.woocommerce-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{margin:0 5px 5px 0;border:1px solid #d3ced2;padding:0;float:left;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.75em;display:block;min-width:2.5em}.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current{background:#ebe9eb;color:#8a7e88}.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.5em .75em;font-weight:700;border-radius:3px;left:auto;color:#515151;background-color:#ebe9eb;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce #respond input#submit.loading,.woocommerce a.button.loading,.woocommerce button.button.loading,.woocommerce input.button.loading{opacity:.25;padding-right:2.618em}.woocommerce #respond input#submit.loading::after,.woocommerce a.button.loading::after,.woocommerce button.button.loading::after,.woocommerce input.button.loading::after{font-family:WooCommerce;content:'\e01c';vertical-align:top;-webkit-font-smoothing:antialiased;font-weight:400;position:absolute;top:auto;right:1em;animation:spin 2s linear infinite}.woocommerce #respond input#submit.added::after,.woocommerce a.button.added::after,.woocommerce button.button.added::after,.woocommerce input.button.added::after{font-family:WooCommerce;content:'\e017';margin-left:.53em;vertical-align:bottom}.woocommerce #respond input#submit:hover,.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background-color:#dad8da;text-decoration:none;background-image:none;color:#515151}.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce #respond input#submit.alt:hover,.woocommerce a.button.alt:hover,.woocommerce button.button.alt:hover,.woocommerce input.button.alt:hover{background-color:#935386;color:#fff}.woocommerce #respond input#submit.alt.disabled,.woocommerce #respond input#submit.alt.disabled:hover,.woocommerce #respond input#submit.alt:disabled,.woocommerce #respond input#submit.alt:disabled:hover,.woocommerce #respond input#submit.alt:disabled[disabled],.woocommerce #respond input#submit.alt:disabled[disabled]:hover,.woocommerce a.button.alt.disabled,.woocommerce a.button.alt.disabled:hover,.woocommerce a.button.alt:disabled,.woocommerce a.button.alt:disabled:hover,.woocommerce a.button.alt:disabled[disabled],.woocommerce a.button.alt:disabled[disabled]:hover,.woocommerce button.button.alt.disabled,.woocommerce button.button.alt.disabled:hover,.woocommerce button.button.alt:disabled,.woocommerce button.button.alt:disabled:hover,.woocommerce button.button.alt:disabled[disabled],.woocommerce button.button.alt:disabled[disabled]:hover,.woocommerce input.button.alt.disabled,.woocommerce input.button.alt.disabled:hover,.woocommerce input.button.alt:disabled,.woocommerce input.button.alt:disabled:hover,.woocommerce input.button.alt:disabled[disabled],.woocommerce input.button.alt:disabled[disabled]:hover{background-color:#a46497;color:#fff}.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled,.woocommerce #respond input#submit:disabled[disabled],.woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce a.button:disabled[disabled],.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce button.button:disabled[disabled],.woocommerce input.button.disabled,.woocommerce input.button:disabled,.woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce #respond input#submit.disabled:hover,.woocommerce #respond input#submit:disabled:hover,.woocommerce #respond input#submit:disabled[disabled]:hover,.woocommerce a.button.disabled:hover,.woocommerce a.button:disabled:hover,.woocommerce a.button:disabled[disabled]:hover,.woocommerce button.button.disabled:hover,.woocommerce button.button:disabled:hover,.woocommerce button.button:disabled[disabled]:hover,.woocommerce input.button.disabled:hover,.woocommerce input.button:disabled:hover,.woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#ebe9eb}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding:.4em .4em 0;display:inline-block}.woocommerce #reviews h2{font-weight:400}.woocommerce #reviews h2 small{float:right;color:#777;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#777}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:' ';display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 1em;border:0;position:relative;background:0;border:0;border-bottom:1px solid #e2e2e2}.woocommerce #reviews #comments ol.commentlist li:last-child{border-bottom:0}.woocommerce #reviews #comments ol.commentlist li .meta{color:#777;font-size:.75em}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;height:3.6em;width:3.6em;border:none;background:0 0;margin:0;border-radius:100%;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:none;border-radius:4px;padding:0 1.5em;display:flex;flex-wrap:wrap}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:' ';display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1.7em}.woocommerce #reviews #comments ol.commentlist li .comment-text meta,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{order:1;width:100%;font-size:1em;margin-bottom:.2em}.woocommerce #reviews #comments ol.commentlist li .comment-text .description{font-style:italic;order:3;width:100%}.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating{order:2;margin-bottom:.5em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e4e1e3;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li::before{content:''}.woocommerce #reviews #review_form{border:2px solid #efefef;padding:1em 1.9em 2.3em}.woocommerce #reviews #review_form #respond p{margin:2px 0 6px}.woocommerce #reviews #review_form #respond p.form-submit{margin-top:1em}.woocommerce #reviews #review_form #respond p.comment-form-author,.woocommerce #reviews #review_form #respond p.comment-form-email{margin-bottom:1em}.woocommerce #reviews #review_form #respond p.comment-form-author label,.woocommerce #reviews #review_form #respond p.comment-form-email label{display:inline-block;min-width:100px}.woocommerce #reviews #review_form #respond #comment{height:90px}.woocommerce #reviews #review_form input{max-width:100%}.woocommerce .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:star}.woocommerce .star-rating::before{content:'\73\73\73\73\73';color:#d3ced2;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:'\53\53\53\53\53';top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:' ';display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating{display:block;margin:.5em auto 0;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;background:transparent none}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:' ';display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none}.woocommerce p.stars a::before{display:block;position:absolute;top:0;left:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:'\e021';text-indent:0}.woocommerce p.stars a:hover~a::before{content:'\e021'}.woocommerce p.stars:hover a::before{content:'\e020'}.woocommerce p.stars.selected a.active::before{content:'\e020'}.woocommerce p.stars.selected a.active~a::before{content:'\e021'}.woocommerce p.stars.selected a:not(.active)::before{content:'\e020'}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(even) td,.woocommerce table.shop_attributes tr:nth-child(even) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid rgba(0,0,0,.1);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px}.woocommerce table.shop_table td{border-top:1px solid rgba(0,0,0,.1);padding:6px 12px;vertical-align:middle}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid rgba(0,0,0,.1)}.woocommerce #customer_details,.woocommerce .woocommerce table.shop_table{margin-bottom:2em;border-radius:0}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.my_account_orders .order-actions{text-align:right}.woocommerce table.my_account_orders .order-actions .button{margin:.125em 0 .125em .25em}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:'\2193';display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:left;clear:both;margin-right:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:' ';display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:' ';display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:' ';display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-right:5px;margin-bottom:5px}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2;font-weight:700;font-size:13.5px;font-size:.9rem}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row select{cursor:pointer;margin:0}.woocommerce form .form-row .required{color:red;font-weight:700;border:0}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{box-sizing:border-box;width:100%;margin:0;outline:0;line-height:1}.woocommerce form .form-row textarea{height:4em;line-height:1.5;display:block;box-shadow:none}.woocommerce form .form-row .select2-container{width:100%;line-height:2em}.woocommerce form .form-row.woocommerce-invalid .select2-container,.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:#d65d67}.woocommerce form .form-row.woocommerce-validated .select2-container,.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:#69bf29}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid #d3ced2;padding:20px;margin:2em 0;text-align:left;border-radius:5px}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0;padding:.25em 0 .25em 22px;text-indent:-22px;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .5ex}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:' ';display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-right:1px dashed #d3ced2;padding-right:2em;margin-left:0;padding-left:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-right-width:2px;text-align:left;width:100%;border-radius:5px;padding:6px 12px}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{margin-bottom:0;padding-left:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:' ';display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:left;padding:0 1px 1px 0;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .widget_product_categories .product-categories .count{float:right}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:left}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:left;margin-left:.5em;margin-right:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#a46497;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#a46497}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#602053;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:' ';display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none;color:#d65d67}.woocommerce .show-on-hover{position:absolute;top:0;left:0;height:100%;right:0;bottom:0;padding:0;margin:0;opacity:0;filter:blur(0);transition:all .2s linear}.woocommerce li.product:hover .show-on-hover{opacity:1;transform:scale(1) translateZ(0) translateY(0);pointer-events:inherit}.woocommerce .ast-return-to-shop{display:inline-block;margin:5px 0;vertical-align:middle}.woocommerce .related.products h2,.woocommerce .up-sells h2,.woocommerce .woocommerce-tabs h2{font-size:1.5rem}.woocommerce .comment-reply-title{font-size:1.5rem;line-height:1.3}.woocommerce .select2-container .select2-selection--single{height:auto;padding:.75em}.woocommerce .select2-container .select2-selection--single .select2-selection__rendered{padding-left:0}.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:1.35}.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{top:50%;width:1.7em;transform:translateY(-50%)}.woocommerce .select2-results__option,.woocommerce .select2-search--dropdown .select2-search__field{padding:6px .75em}.woocommerce .widget_product_search button,.woocommerce-page .widget_product_search button{flex:0 0 auto;padding:10px 20px}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{text-align:left;margin-bottom:2.5em}.woocommerce ul.products li.product.product-category>a,.woocommerce-page ul.products li.product.product-category>a{display:inline-block;position:relative}.woocommerce ul.products li.product a img,.woocommerce-page ul.products li.product a img{margin-bottom:.8em}.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce-page ul.products li.product .woocommerce-loop-product__title{margin-bottom:.5em;padding:0;font-size:1em}.woocommerce ul.products li.product .ast-woo-product-category,.woocommerce-page ul.products li.product .ast-woo-product-category{font-size:.85em;margin-bottom:.5em;display:block;line-height:1.3;opacity:.6}.woocommerce ul.products li.product .star-rating,.woocommerce-page ul.products li.product .star-rating{margin:0 auto .5em 0;backface-visibility:hidden}.woocommerce ul.products li.product .ast-woo-shop-product-description p,.woocommerce-page ul.products li.product .ast-woo-shop-product-description p{margin-bottom:.5em}.woocommerce ul.products li.product .woocommerce-loop-product__link,.woocommerce-page ul.products li.product .woocommerce-loop-product__link{position:relative;display:block}.woocommerce ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.woocommerce ul.products li.product.product-category>a:hover .woocommerce-loop-category__title,.woocommerce-page ul.products li.product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{position:absolute;background-color:rgba(255,255,255,.88);transition:background .3s;text-align:center;left:1em;right:1em;padding:.5em 0 .7em}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{font-size:.7em}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{bottom:1em;text-transform:uppercase;font-weight:700}.woocommerce ul.products li.product .price,.woocommerce-page ul.products li.product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.woocommerce ul.products li.product .price del,.woocommerce-page ul.products li.product .price del{display:initial}.woocommerce ul.products li.product .button,.woocommerce-page ul.products li.product .button{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3}.woocommerce ul.products li.product .button.added,.woocommerce-page ul.products li.product .button.added{margin-bottom:0;transition:margin 0s}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce-page ul.products li.product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.woocommerce ul.products li.product .woocommerce-loop-category__title .count,.woocommerce-page ul.products li.product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.woocommerce .related.products li.product:last-child,.woocommerce-page .related.products li.product:last-child{margin-right:0}.woocommerce table.shop_table,.woocommerce-page table.shop_table{border:1px solid #ebebeb;border-radius:0}.woocommerce table.shop_table .product-thumbnail img,.woocommerce-page table.shop_table .product-thumbnail img{width:auto;max-width:70px}.woocommerce table.shop_table thead,.woocommerce-page table.shop_table thead{background-color:#fbfbfb}.woocommerce table.shop_table thead th,.woocommerce-page table.shop_table thead th{border-width:0}.woocommerce table.shop_table td,.woocommerce table.shop_table th,.woocommerce-page table.shop_table td,.woocommerce-page table.shop_table th{border-bottom-width:0;padding:.7em 1em}.woocommerce table.shop_table td,.woocommerce-page table.shop_table td{border-top:1px solid #ebebeb}.woocommerce table.shop_table .woocommerce-Price-amount,.woocommerce-page table.shop_table .woocommerce-Price-amount{font-weight:700}.woocommerce #content table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text{width:auto}.woocommerce #content table.cart td,.woocommerce-page #content table.cart td{min-height:3.25em}.woocommerce #content table.cart [name=coupon_code],.woocommerce-page #content table.cart [name=coupon_code]{max-height:35px}.woocommerce #content table.cart .button,.woocommerce-page #content table.cart .button{display:inline-block;width:auto}.woocommerce #content table.cart .button[name=apply_coupon],.woocommerce-page #content table.cart .button[name=apply_coupon]{padding:10px 40px}.ast-separate-container .ast-woocommerce-container{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-woocommerce-container{padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-woocommerce-container{padding:1.5em 2.14em}}@media (min-width:1201px){.ast-separate-container .ast-woocommerce-container{padding:5.34em 6.67em}}.ast-separate-container .ast-woocommerce-container .product{border-bottom:0}.ast-separate-container.single-product .ast-article-single{margin:0;padding:0;display:inline-block;width:100%}.pswp{z-index:999999}.woocommerce img.pswp__img,.woocommerce-page img.pswp__img{max-width:none}.woocommerce .pswp__caption__center,.woocommerce-page .pswp__caption__center{text-align:center}.woocommerce .pswp__bg,.woocommerce-page .pswp__bg{opacity:.7!important}.woocommerce .pswp__ui--fit .pswp__caption,.woocommerce .pswp__ui--fit .pswp__top-bar,.woocommerce-page .pswp__ui--fit .pswp__caption,.woocommerce-page .pswp__ui--fit .pswp__top-bar{background-color:transparent}.woocommerce form .form-row textarea,.woocommerce input[type=email],.woocommerce input[type=number],.woocommerce input[type=password],.woocommerce input[type=reset],.woocommerce input[type=search],.woocommerce input[type=tel],.woocommerce input[type=text],.woocommerce input[type=url],.woocommerce textarea,.woocommerce-page form .form-row textarea,.woocommerce-page input[type=email],.woocommerce-page input[type=number],.woocommerce-page input[type=password],.woocommerce-page input[type=reset],.woocommerce-page input[type=search],.woocommerce-page input[type=tel],.woocommerce-page input[type=text],.woocommerce-page input[type=url],.woocommerce-page textarea{border-color:#ddd;background:#fff;box-shadow:none;border-radius:0}.woocommerce form .form-row textarea:focus,.woocommerce input[type=email]:focus,.woocommerce input[type=number]:focus,.woocommerce input[type=password]:focus,.woocommerce input[type=reset]:focus,.woocommerce input[type=search]:focus,.woocommerce input[type=tel]:focus,.woocommerce input[type=text]:focus,.woocommerce input[type=url]:focus,.woocommerce textarea:focus,.woocommerce-page form .form-row textarea:focus,.woocommerce-page input[type=email]:focus,.woocommerce-page input[type=number]:focus,.woocommerce-page input[type=password]:focus,.woocommerce-page input[type=reset]:focus,.woocommerce-page input[type=search]:focus,.woocommerce-page input[type=tel]:focus,.woocommerce-page input[type=text]:focus,.woocommerce-page input[type=url]:focus,.woocommerce-page textarea:focus{box-shadow:none;border-color:#ddd}.woocommerce .select2-container .select2-selection--single,.woocommerce select,.woocommerce-page .select2-container .select2-selection--single,.woocommerce-page select{padding:.75em;border:1px solid #ddd;border-radius:0;box-shadow:none}.woocommerce .select2-container .select2-selection--single:focus,.woocommerce select:focus,.woocommerce-page .select2-container .select2-selection--single:focus,.woocommerce-page select:focus{outline:0}button.pswp__button{box-shadow:none!important;background-image:url(../../../../../../../plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png)!important}button.pswp__button,button.pswp__button--arrow--left::before,button.pswp__button--arrow--right::before,button.pswp__button:hover{background-color:transparent!important}button.pswp__button--arrow--left,button.pswp__button--arrow--left:hover,button.pswp__button--arrow--right,button.pswp__button--arrow--right:hover{background-image:none!important}button.pswp__button--close:hover{background-position:0 -44px}button.pswp__button--zoom:hover{background-position:-88px 0}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 2em 1em 3.5em;margin:0 0 2em;position:relative;background-color:#f7f6f7;color:#515151;border-top:3px solid #a46497;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:' ';display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:'\e028';display:inline-block;position:absolute;top:1em;left:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:right}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:'\e015';color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:'\e016';color:#b81c23}.woocommerce .woocommerce::after,.woocommerce .woocommerce::before,.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:' ';display:table}.woocommerce .woocommerce::after,.woocommerce-account .woocommerce::after{clear:both}.woocommerce .addresses .title::after,.woocommerce .addresses .title::before,.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:' ';display:table}.woocommerce .addresses .title::after,.woocommerce-account .addresses .title::after{clear:both}.woocommerce .addresses .title h3,.woocommerce-account .addresses .title h3{float:left}.woocommerce .addresses .title .edit,.woocommerce-account .addresses .title .edit{float:right;padding:.7em 1em}.woocommerce ol.commentlist.notes li.note p.meta,.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce ol.commentlist.notes li.note .description p:last-child,.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce ul.digital-downloads,.woocommerce-account ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li,.woocommerce-account ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce ul.digital-downloads li::before,.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"";text-decoration:none}.woocommerce ul.digital-downloads li .count,.woocommerce-account ul.digital-downloads li .count{float:right}.woocommerce h2,.woocommerce-account h2{font-size:1.625rem}.woocommerce .woocommerce-Addresses .woocommerce-Address-title,.woocommerce .woocommerce-Addresses .woocommerce-column__title,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce .woocommerce-customer-details .woocommerce-Address-title,.woocommerce .woocommerce-customer-details .woocommerce-column__title,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title{background:#fbfbfb;padding:.5em;margin-bottom:0;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce .woocommerce-customer-details .woocommerce-column__title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3,.woocommerce-account .woocommerce-Addresses .woocommerce-column__title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-Address-title h3,.woocommerce-account .woocommerce-customer-details .woocommerce-column__title h3{margin-bottom:0}.woocommerce .woocommerce-Addresses address,.woocommerce .woocommerce-MyAccount-content address,.woocommerce .woocommerce-customer-details address,.woocommerce-account .woocommerce-Addresses address,.woocommerce-account .woocommerce-MyAccount-content address,.woocommerce-account .woocommerce-customer-details address{border:1px solid rgba(0,0,0,.1);padding:1em;border-radius:0}.cart-collaterals h2,.woocommerce-Address h3{font-size:1.2rem;padding:.7em 1em}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#add_payment_method table.cart td,#add_payment_method table.cart th,.woocommerce-cart table.cart td,.woocommerce-cart table.cart th,.woocommerce-checkout table.cart td,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:left;box-sizing:border-box;border:1px solid #d3ced2;padding:6px 6px 5px;margin:0 4px 0 0;outline:0;line-height:1}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle;line-height:1}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:' ';display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping_calculator .button,.woocommerce-cart .cart-collaterals .shipping_calculator .button,.woocommerce-checkout .cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}#add_payment_method .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping_calculator .shipping-calculator-button::after{font-family:WooCommerce;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"";text-decoration:none}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#777;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:40%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-left:0;border-right:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#777}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#77a464}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #ebe9eb}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:left;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:left}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:left}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#777;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:left;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:left;padding:1em;border-bottom:1px solid #d3ced2;margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:left;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 1em 0 0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-left:2px}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:' ';display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dfdcde;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c7c1c6;border-top-color:#bbb3b9}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#bbb3b9}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 1em 0 0;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/visa.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/laser.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/diners.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/amex.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(../../../../../../../plugins/woocommerce/assets/images/icons/credit-cards/discover.svg)}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#777;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:'';display:block;border:1em solid #dfdcde;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;left:0;margin:-1em 0 0 2em}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:right;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:52px;vertical-align:middle}.woocommerce-cart-form__cart-item td.product-remove{text-align:center}.woocommerce-cart-form__cart-item td.product-remove a.remove{display:inline-block;vertical-align:middle}.woocommerce-cart table.shop_table td,.woocommerce-cart table.shop_table th{border-right:0}.woocommerce-cart table.shop_table .woocommerce-Price-amount,.woocommerce-cart table.shop_table td.product-name{font-weight:700}.woocommerce-cart .cart-collaterals .cross-sells li.product{padding-bottom:1em}.woocommerce-cart .cart-collaterals .cart_totals,.woocommerce-cart .cart-collaterals .cross-sells{padding:0 20px;border-width:1px;border-style:solid;border-color:#ebebeb;border-radius:0;margin-bottom:2em}.woocommerce-cart .cart-collaterals .cart_totals .shop_table,.woocommerce-cart .cart-collaterals .cross-sells .shop_table{border-top:0;border-left:0;border-right:0;border-radius:0}.woocommerce-cart .cart-collaterals .cart_totals>h2,.woocommerce-cart .cart-collaterals .cross-sells>h2{margin:0 -20px 20px;background-color:#fbfbfb;border-bottom:1px solid #ebebeb}.woocommerce-cart .hentry,.woocommerce-cart ul.products{margin-bottom:0}.woocommerce-cart .hentry li.product,.woocommerce-cart ul.products li.product{margin-bottom:0}.woocommerce-cart table.cart td.actions .coupon{display:flex;align-items:center;margin:5px 0}.woocommerce-cart table.cart td.actions .coupon .input-text{padding:.5em .75em}.woocommerce-cart table.cart td.actions .button{padding:.5em 1em;line-height:1.5}.woocommerce-cart table.cart td.actions input.button{display:inline-block;width:auto}.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{font-size:1.1em;line-height:1.8em}.woocommerce-page.woocommerce-checkout form.checkout.woocommerce-checkout:after,.woocommerce.woocommerce-checkout form.checkout.woocommerce-checkout:after{content:"";clear:both;display:table}.woocommerce-page.woocommerce-checkout table.shop_table thead,.woocommerce.woocommerce-checkout table.shop_table thead{background:0 0}.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table th{padding:14px 12px}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table td{padding:10px 10px 10px 0;border-color:#ebebeb;opacity:.8}.woocommerce-page.woocommerce-checkout table.shop_table tfoot td,.woocommerce.woocommerce-checkout table.shop_table tfoot td{opacity:1}.woocommerce-page.woocommerce-checkout table.shop_table td,.woocommerce-page.woocommerce-checkout table.shop_table th,.woocommerce.woocommerce-checkout table.shop_table td,.woocommerce.woocommerce-checkout table.shop_table th{border-bottom-width:1px}.woocommerce-page.woocommerce-checkout #customer_details h3,.woocommerce.woocommerce-checkout #customer_details h3{font-size:1.2rem;padding:20px 0 14px;margin:0 0 20px;border-bottom:1px solid #ebebeb}.woocommerce-page.woocommerce-checkout form #order_review_heading,.woocommerce.woocommerce-checkout form #order_review_heading{border-width:2px 2px 0 2px;border-style:solid;font-size:1.2rem;margin:0;padding:1.5em 1.5em 1em;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review,.woocommerce.woocommerce-checkout form #order_review{padding:0 2em;border-width:0 2px 2px;border-style:solid;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form #order_review table,.woocommerce.woocommerce-checkout form #order_review table{border-width:0}.woocommerce-page.woocommerce-checkout form #order_review td,.woocommerce-page.woocommerce-checkout form #order_review th,.woocommerce.woocommerce-checkout form #order_review td,.woocommerce.woocommerce-checkout form #order_review th{border-top:0;border-right:0;padding-left:0;border-color:#ebebeb}.woocommerce-page.woocommerce-checkout form .form-row:last-child,.woocommerce.woocommerce-checkout form .form-row:last-child{margin-bottom:0}.woocommerce-page.woocommerce-checkout #payment,.woocommerce.woocommerce-checkout #payment{border-radius:0}.woocommerce-page.woocommerce-checkout #payment ul.payment_methods,.woocommerce.woocommerce-checkout #payment ul.payment_methods{padding:0;margin-bottom:1em;border-bottom:0}.woocommerce-page.woocommerce-checkout #payment div.payment_box,.woocommerce.woocommerce-checkout #payment div.payment_box{background-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.payment_box:before,.woocommerce.woocommerce-checkout #payment div.payment_box:before{border-bottom-color:#efefef}.woocommerce-page.woocommerce-checkout #payment div.form-row,.woocommerce.woocommerce-checkout #payment div.form-row{padding:0 0 2em}.woocommerce-page.woocommerce-checkout #payment #place_order,.woocommerce.woocommerce-checkout #payment #place_order{width:100%}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th{padding:.7em 1em;border-bottom-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce-page.woocommerce-checkout .woocommerce-order table.shop_table th:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table td:last-child,.woocommerce.woocommerce-checkout .woocommerce-order table.shop_table th:last-child{border-right-width:0}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce-page.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-column__title,.woocommerce.woocommerce-checkout .woocommerce-order h2.woocommerce-order-details__title{background:#fbfbfb;padding:1em;margin-bottom:0;font-size:1.3rem;border-width:1px 1px 0 1px;border-style:solid;border-color:#e5e5e5}.woocommerce-page.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading,.woocommerce.woocommerce-checkout .woocommerce-order h2.wc-bacs-bank-details-heading{font-size:1.5rem;border-top:3px solid #ebebeb;padding-top:.5em}.woocommerce-page.woocommerce-checkout .woocommerce-order h3,.woocommerce.woocommerce-checkout .woocommerce-order h3{font-size:1.1rem}.woocommerce-page.woocommerce-checkout .woocommerce-order ul.order_details,.woocommerce.woocommerce-checkout .woocommerce-order ul.order_details{margin-bottom:2em}.woocommerce-page.woocommerce-checkout .woocommerce-customer-details address,.woocommerce.woocommerce-checkout .woocommerce-customer-details address{border-right-width:1px;border-bottom-width:1px;border-radius:0}.woocommerce form .form-row .required{text-decoration:none}.woocommerce form.checkout_coupon{margin:0;border:0;padding:0 0 2em}.woocommerce form.checkout_coupon .form-row{margin:0;padding:0;float:none;display:inline-block}.woocommerce form.checkout_coupon [name=coupon_code]{padding-top:9px;padding-bottom:9px}.woocommerce form.checkout_coupon .button{padding:.5em 1em;vertical-align:initial;line-height:1.35}.woocommerce form.checkout_coupon .button[name=apply_coupon]{padding:10px 40px}@media (max-width:420px){.woocommerce form.checkout_coupon .form-row-first,.woocommerce form.checkout_coupon .form-row-last{display:block;margin:0 auto;width:100%}.woocommerce form.checkout_coupon .form-row-first{margin-bottom:10px}.woocommerce form.checkout_coupon .button[name=apply_coupon]{width:100%;padding:10px 5px}}.checkout_coupon .input-text{padding:.5em .75em}.woocommerce-MyAccount-navigation-link{list-style:none;border:1px solid rgba(0,0,0,.1);border-bottom-width:0}.woocommerce-MyAccount-navigation-link:last-child{border-bottom-width:1px}.woocommerce-MyAccount-navigation-link.is-active a{background-color:#fbfbfb}.woocommerce-MyAccount-navigation-link a{display:block;padding:.5em 1em}.woocommerce-MyAccount-navigation>ul{margin:0}.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Button{margin-top:1em;margin-left:3px}#secondary .widget.woocommerce>li,#secondary .widget_layered_nav_filters>li{margin-bottom:0}#secondary .widget .select2-container .select2-selection--multiple .select2-selection__rendered{display:block;min-height:42px}#secondary .widget .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin-top:5px;margin-bottom:5px}#secondary .widget .select2-search__field{min-height:42px;margin:0}.woocommerce #secondary .woocommerce ul.cart_list,.woocommerce #secondary .woocommerce ul.product_list_widget{margin:0}.woocommerce .woocommerce ul.cart_list li a,.woocommerce .woocommerce ul.product_list_widget li a{font-weight:400}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce .widget_shopping_cart li,.woocommerce ul.product_list_widget .cart_list li,.woocommerce ul.product_list_widget li{padding:.6em 0 .6em 5em;min-height:5em;position:relative;border-bottom:1px solid #e2e2e2;margin:0;line-height:1.5}.woocommerce .widget_shopping_cart .cart_list li:last-child,.woocommerce .widget_shopping_cart li:last-child,.woocommerce ul.product_list_widget .cart_list li:last-child,.woocommerce ul.product_list_widget li:last-child{border-bottom:none}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons{margin-bottom:0}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons a{display:inline-block;width:calc(50% - 5px);margin-right:5px;text-align:center}.woocommerce .widget_shopping_cart .woocommerce-mini-cart__buttons .checkout.wc-forward{margin-left:5px;margin-right:0}.woocommerce.widget_product_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.woocommerce.widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-right:4px;line-height:1.5;transition:all .2s linear}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{padding:5px 0;border-top:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2;margin-bottom:1.3em}.woocommerce ul.product_list_widget li img{position:absolute;left:0;width:4em;margin:0 0 .5em 0;top:50%;transform:translateY(-50%)}.woocommerce ul.product-categories>li{padding:2px 0}.woocommerce ul.product-categories>li ul li:before{content:"\e900";padding:0 5px 0 5px;display:inline-block;font-family:Astra;transform:rotate(-90deg);font-size:11px;font-size:.7rem}.woocommerce ul.product-categories>li:first-child{border:none}.woocommerce .widget del{opacity:.5}.woocommerce .widget ins{background:inherit}.woocommerce .widget .amount,.woocommerce .widget ins{font-weight:700}.woocommerce .widget .star-rating{margin:5px 0}.woocommerce .widget_rating_filter ul li a{display:inline-flex;align-items:center}.woocommerce .price_slider_amount .price_label span{font-weight:700}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.2em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{top:-.4em;cursor:pointer}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:.9em!important;padding:8px 18px}.woocommerce .widget_price_filter .price_slider{margin-bottom:1.2em}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#ededed}.woocommerce .widget_product_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;margin-right:4px;line-height:1.5;padding:.5em 1.2em;font-size:12px!important;font-size:.8rem!important}.woocommerce .widget_product_tag_cloud .tagcloud a a.current-item,.woocommerce .widget_product_tag_cloud .tagcloud a a:focus,.woocommerce .widget_product_tag_cloud .tagcloud a a:hover{background-color:#fafafa}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding:.5em 1.8em .5em 5em}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;left:auto;right:0;top:.5em}.woocommerce-product-search{display:flex}.woocommerce-product-search .search-field{flex:auto;width:100%;border-top-right-radius:0;border-bottom-right-radius:0}.woocommerce-product-search input[type=submit]{padding:10px 15px;border-top-left-radius:0;border-bottom-left-radius:0}.widget_layered_nav_filters ul li.chosen{padding:0 .5em;margin-right:.5em;background:rgba(245,245,245,.75);border-radius:20px;font-size:.8em}.widget_layered_nav_filters ul li.chosen:hover{background-color:#f5f5f5}.widget_layered_nav_filters ul li.chosen a{display:block}.widget_layered_nav_filters ul li.chosen a::before{margin-right:.5em;color:#f11}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,.05)}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu .header-main-layout-2 .main-header-container{display:block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{text-align:center}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-main-header-bar-alignment{display:inline-block}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-custom-item-outside .ast-masthead-custom-menu-items{display:inline-block;float:right}.ast-safari-browser-less-than-11.ast-woocommerce-cart-menu.ast-header-break-point .header-main-layout-2 .main-header-container{display:flex}.rtl .woocommerce-pagination .page-numbers li:last-child .next{transform:rotateY(180deg)}.rtl .woocommerce-pagination .page-numbers li:first-child .prev{transform:rotateY(-180deg)}.ast-site-header-cart .widgettitle{display:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product{text-align:left;margin-bottom:2.5em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a{display:inline-block;position:relative}.wc-block-grid .wc-block-grid__products .wc-block-grid__product a img{width:100%;height:auto;display:block;margin:0 0 .8em 0;box-shadow:none}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title{margin-bottom:.5em;padding:0;font-size:1em;line-height:1.2;font-weight:inherit}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .star-rating{margin:0 auto .5em 0;backface-visibility:hidden}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link{position:relative;display:block}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-product__link:hover .ast-shop-product-out-of-stock{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product.product-category>a:hover .woocommerce-loop-category__title{background-color:#fff}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{bottom:1.8em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{font-size:.7em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price{line-height:1.3;margin-bottom:0;font-weight:700;margin-bottom:.5em;font-size:.9em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .price del{display:initial}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link{margin-top:.5em;margin-bottom:.5em;white-space:normal;line-height:1.3;font-size:100%;font-weight:700}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link.added{margin-bottom:0;transition:margin 0s}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title{text-transform:uppercase;font-weight:700;line-height:1.5}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .woocommerce-loop-category__title .count{display:block;background:0 0;opacity:.5;font-size:.75em}.wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-onsale{min-width:3em;min-height:3em;line-height:3em;padding:0;font-size:1em;font-weight:400;text-transform:capitalize;position:absolute;text-align:center;border-radius:100%;z-index:9;top:0;right:15px;left:auto;margin:-.5em -.5em 0 0}.widget_product_categories .children{padding-left:20px}@supports (-moz-appearance:none){.sidebar-main .widget_product_search .search-field{width:60%}} \ No newline at end of file diff --git a/assets/css/minified/customizer-controls.min-rtl.css b/assets/css/minified/customizer-controls.min-rtl.css index f416afd..eb2d2f4 100644 --- a/assets/css/minified/customizer-controls.min-rtl.css +++ b/assets/css/minified/customizer-controls.min-rtl.css @@ -1 +1 @@ -.customize-control-title .dashicons-editor-help{position:relative;top:.1em}#customize-header-actions .spinner{margin-right:4px}.customize-control-slider input[type=range]{-webkit-appearance:none;transition:background .3s;background-color:rgba(0,0,0,.1);height:5px;width:calc(100% - 74px);padding:0}.customize-control-slider input[type=range]:focus{box-shadow:none;outline:0}.customize-control-slider input[type=range]:hover{background-color:rgba(0,0,0,.25)}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border-radius:50%;-webkit-border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-thumb{width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-ms-thumb{width:15px;height:15px;border-radius:50%;border:0;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-track{border:inherit;background:0 0}.customize-control-slider input[type=range]::-ms-track{border:inherit;color:transparent;background:0 0}.customize-control-slider input[type=range]::-ms-fill-lower,.customize-control-slider input[type=range]::-ms-fill-upper{background:0 0}.customize-control-slider input[type=range]::-ms-tooltip{display:none}.customize-control-slider .ast-range-value{display:inline-block;padding:0 5px;position:relative;top:1px}.customize-control-slider input#ast-range-value-input{width:42px;height:23px;font-size:13px}.customize-control-slider .ast-slider-reset{color:rgba(0,0,0,.2);float:left;transition:color .5s ease-in}.customize-control-slider .ast-slider-reset span{font-size:16px;line-height:22px;cursor:pointer}.customize-control-slider .ast-slider-reset span:hover{color:red}.control-section.ast-hide{display:none!important}.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight]{padding-left:5px}.customize-pane-child>li[id*="-text-transform"],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{padding-right:5px}.customize-control select.ast-responsive-select{height:30px}.customize-control input[type=number]{min-height:30px}.customize-control input[type=text].select2-search__field{line-height:1;border-radius:0}.customize-control input.ast-border-input,.customize-control input[type=number].ast-spacing-input{min-height:28px;border-radius:0}.customize-pane-child>li[id$="-content-layout"]>label,.customize-pane-child>li[id$="-sidebar-layout"]>label{-js-display:flex;display:flex}.customize-pane-child>li[id$="-content-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-sidebar-layout"]>label select{flex:1}.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label select{margin-right:10px}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id*="-text-transform"]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.control-section-astra-pro h3{margin:0;padding:1px 0;border:0;position:relative}.control-section-astra-pro h3 a{background:#fff;display:block;padding:11px 14px 12px 10px;text-decoration:none}.control-section-astra-pro h3 a:after{content:"\f345";position:absolute;top:11px;left:10px;z-index:1;float:left;border:none;background:0 0;font:normal 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rtl .control-section-astra-pro h3 a:after{content:"\f341"}.ast-hide{display:none!important}#customize-control-astra-settings-primary-submenu-item-border .ast-border-wrapper{width:100%}.actions .button.upload-button{text-transform:capitalize}.wp-picker-container .iris-square-handle{z-index:8}#customize-control-astra-settings-transparent-header-logo .attachment-media-view .button-add-media,#customize-control-custom_logo .attachment-media-view .button-add-media,#customize-control-site_icon .attachment-media-view .placeholder{text-transform:capitalize}.customize-control-ast-background .wp-picker-container .wp-picker-clear,.customize-control-ast-color .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-background .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-color .wp-picker-container .wp-picker-clear{margin-right:4px;min-height:30px}.customize-control-ast-background .wp-picker-container{display:block} \ No newline at end of file +.customize-control-title .dashicons-editor-help{position:relative;top:.1em}#customize-header-actions .spinner{margin-right:4px}.customize-control-slider input[type=range]{-webkit-appearance:none;transition:background .3s;background-color:rgba(0,0,0,.1);height:5px;width:calc(100% - 74px);padding:0}.customize-control-slider input[type=range]:focus{box-shadow:none;outline:0}.customize-control-slider input[type=range]:hover{background-color:rgba(0,0,0,.25)}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border-radius:50%;-webkit-border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-thumb{width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-ms-thumb{width:15px;height:15px;border-radius:50%;border:0;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-track{border:inherit;background:0 0}.customize-control-slider input[type=range]::-ms-track{border:inherit;color:transparent;background:0 0}.customize-control-slider input[type=range]::-ms-fill-lower,.customize-control-slider input[type=range]::-ms-fill-upper{background:0 0}.customize-control-slider input[type=range]::-ms-tooltip{display:none}.customize-control-slider .ast-range-value{display:inline-block;padding:0 5px;position:relative;top:1px}.customize-control-slider input#ast-range-value-input{width:42px;height:23px;font-size:13px}.customize-control-slider .ast-slider-reset{color:rgba(0,0,0,.2);float:left;transition:color .5s ease-in}.customize-control-slider .ast-slider-reset span{font-size:16px;line-height:22px;cursor:pointer}.customize-control-slider .ast-slider-reset span:hover{color:red}.control-section.ast-hide{display:none!important}.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight]{padding-left:5px}.customize-pane-child>li[id*="-text-transform"],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{padding-right:5px}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight]{padding-right:0}.rtl .customize-pane-child>li[id*="-text-transform"],.rtl .customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.rtl .customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{padding-left:0}.customize-control select.ast-responsive-select{height:30px}.customize-control input[type=number]{min-height:30px}.customize-control input[type=text].select2-search__field{line-height:1;border-radius:0}.customize-control input.ast-border-input,.customize-control input[type=number].ast-spacing-input{min-height:28px;border-radius:0}.customize-pane-child>li[id$="-content-layout"]>label,.customize-pane-child>li[id$="-sidebar-layout"]>label{-js-display:flex;display:flex}.customize-pane-child>li[id$="-content-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-sidebar-layout"]>label select{flex:1}.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label select{margin-right:10px}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id*="-text-transform"]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.control-section-astra-pro h3{margin:0;padding:1px 0;border:0;position:relative}.control-section-astra-pro h3 a{background:#fff;display:block;padding:11px 14px 12px 10px;text-decoration:none}.control-section-astra-pro h3 a:after{content:"\f345";position:absolute;top:11px;left:10px;z-index:1;float:left;border:none;background:0 0;font:normal 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rtl .control-section-astra-pro h3 a:after{content:"\f341"}.ast-hide{display:none!important}#customize-control-astra-settings-primary-submenu-item-border .ast-border-wrapper{width:100%}.actions .button.upload-button{text-transform:capitalize}.wp-picker-container .iris-square-handle{z-index:8}#customize-control-astra-settings-transparent-header-logo .attachment-media-view .button-add-media,#customize-control-custom_logo .attachment-media-view .button-add-media,#customize-control-site_icon .attachment-media-view .placeholder{text-transform:capitalize}.customize-control-ast-background .wp-picker-container .wp-picker-clear,.customize-control-ast-color .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-background .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-color .wp-picker-container .wp-picker-clear{margin-right:4px;min-height:30px}.customize-control-ast-background .wp-picker-container{display:block} \ No newline at end of file diff --git a/assets/css/minified/customizer-controls.min.css b/assets/css/minified/customizer-controls.min.css index 6011a05..40e485c 100644 --- a/assets/css/minified/customizer-controls.min.css +++ b/assets/css/minified/customizer-controls.min.css @@ -1 +1 @@ -.customize-control-title .dashicons-editor-help{position:relative;top:.1em}#customize-header-actions .spinner{margin-left:4px}.customize-control-slider input[type=range]{-webkit-appearance:none;transition:background .3s;background-color:rgba(0,0,0,.1);height:5px;width:calc(100% - 74px);padding:0}.customize-control-slider input[type=range]:focus{box-shadow:none;outline:0}.customize-control-slider input[type=range]:hover{background-color:rgba(0,0,0,.25)}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border-radius:50%;-webkit-border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-thumb{width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-ms-thumb{width:15px;height:15px;border-radius:50%;border:0;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-track{border:inherit;background:0 0}.customize-control-slider input[type=range]::-ms-track{border:inherit;color:transparent;background:0 0}.customize-control-slider input[type=range]::-ms-fill-lower,.customize-control-slider input[type=range]::-ms-fill-upper{background:0 0}.customize-control-slider input[type=range]::-ms-tooltip{display:none}.customize-control-slider .ast-range-value{display:inline-block;padding:0 5px;position:relative;top:1px}.customize-control-slider input#ast-range-value-input{width:42px;height:23px;font-size:13px}.customize-control-slider .ast-slider-reset{color:rgba(0,0,0,.2);float:right;transition:color .5s ease-in}.customize-control-slider .ast-slider-reset span{font-size:16px;line-height:22px;cursor:pointer}.customize-control-slider .ast-slider-reset span:hover{color:red}.control-section.ast-hide{display:none!important}.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight]{padding-right:5px}.customize-pane-child>li[id*="-text-transform"],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{padding-left:5px}.customize-control select.ast-responsive-select{height:30px}.customize-control input[type=number]{min-height:30px}.customize-control input[type=text].select2-search__field{line-height:1;border-radius:0}.customize-control input.ast-border-input,.customize-control input[type=number].ast-spacing-input{min-height:28px;border-radius:0}.customize-pane-child>li[id$="-content-layout"]>label,.customize-pane-child>li[id$="-sidebar-layout"]>label{-js-display:flex;display:flex}.customize-pane-child>li[id$="-content-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-sidebar-layout"]>label select{flex:1}.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label select{margin-left:10px}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id*="-text-transform"]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.control-section-astra-pro h3{margin:0;padding:1px 0;border:0;position:relative}.control-section-astra-pro h3 a{background:#fff;display:block;padding:11px 10px 12px 14px;text-decoration:none}.control-section-astra-pro h3 a:after{content:"\f345";position:absolute;top:11px;right:10px;z-index:1;float:right;border:none;background:0 0;font:normal 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rtl .control-section-astra-pro h3 a:after{content:"\f341"}.ast-hide{display:none!important}#customize-control-astra-settings-primary-submenu-item-border .ast-border-wrapper{width:100%}.actions .button.upload-button{text-transform:capitalize}.wp-picker-container .iris-square-handle{z-index:8}#customize-control-astra-settings-transparent-header-logo .attachment-media-view .button-add-media,#customize-control-custom_logo .attachment-media-view .button-add-media,#customize-control-site_icon .attachment-media-view .placeholder{text-transform:capitalize}.customize-control-ast-background .wp-picker-container .wp-picker-clear,.customize-control-ast-color .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-background .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-color .wp-picker-container .wp-picker-clear{margin-left:4px;min-height:30px}.customize-control-ast-background .wp-picker-container{display:block} \ No newline at end of file +.customize-control-title .dashicons-editor-help{position:relative;top:.1em}#customize-header-actions .spinner{margin-left:4px}.customize-control-slider input[type=range]{-webkit-appearance:none;transition:background .3s;background-color:rgba(0,0,0,.1);height:5px;width:calc(100% - 74px);padding:0}.customize-control-slider input[type=range]:focus{box-shadow:none;outline:0}.customize-control-slider input[type=range]:hover{background-color:rgba(0,0,0,.25)}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border-radius:50%;-webkit-border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-thumb{width:15px;height:15px;border:none;border-radius:50%;background-color:#3498d9}.customize-control-slider input[type=range]::-ms-thumb{width:15px;height:15px;border-radius:50%;border:0;background-color:#3498d9}.customize-control-slider input[type=range]::-moz-range-track{border:inherit;background:0 0}.customize-control-slider input[type=range]::-ms-track{border:inherit;color:transparent;background:0 0}.customize-control-slider input[type=range]::-ms-fill-lower,.customize-control-slider input[type=range]::-ms-fill-upper{background:0 0}.customize-control-slider input[type=range]::-ms-tooltip{display:none}.customize-control-slider .ast-range-value{display:inline-block;padding:0 5px;position:relative;top:1px}.customize-control-slider input#ast-range-value-input{width:42px;height:23px;font-size:13px}.customize-control-slider .ast-slider-reset{color:rgba(0,0,0,.2);float:right;transition:color .5s ease-in}.customize-control-slider .ast-slider-reset span{font-size:16px;line-height:22px;cursor:pointer}.customize-control-slider .ast-slider-reset span:hover{color:red}.control-section.ast-hide{display:none!important}.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight]{padding-right:5px}.customize-pane-child>li[id*="-text-transform"],.customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{padding-left:5px}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id=customize-control-astra-settings-body-font-weight],.customize-pane-child>li[id=customize-control-astra-settings-headings-font-weight]{padding-left:0}.rtl .customize-pane-child>li[id*="-text-transform"],.rtl .customize-pane-child>li[id=customize-control-astra-settings-body-text-transform],.rtl .customize-pane-child>li[id=customize-control-astra-settings-headings-text-transform]{padding-right:0}.customize-control select.ast-responsive-select{height:30px}.customize-control input[type=number]{min-height:30px}.customize-control input[type=text].select2-search__field{line-height:1;border-radius:0}.customize-control input.ast-border-input,.customize-control input[type=number].ast-spacing-input{min-height:28px;border-radius:0}.customize-pane-child>li[id$="-content-layout"]>label,.customize-pane-child>li[id$="-sidebar-layout"]>label{-js-display:flex;display:flex}.customize-pane-child>li[id$="-content-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label .customize-control-title,.customize-pane-child>li[id$="-sidebar-layout"]>label select{flex:1}.customize-pane-child>li[id$="-content-layout"]>label select,.customize-pane-child>li[id$="-sidebar-layout"]>label select{margin-left:10px}.customize-pane-child>li[id*="-font-weight"],.customize-pane-child>li[id*="-text-transform"]{width:50%;display:inline-block;box-sizing:border-box;clear:none}.control-section-astra-pro h3{margin:0;padding:1px 0;border:0;position:relative}.control-section-astra-pro h3 a{background:#fff;display:block;padding:11px 10px 12px 14px;text-decoration:none}.control-section-astra-pro h3 a:after{content:"\f345";position:absolute;top:11px;right:10px;z-index:1;float:right;border:none;background:0 0;font:normal 20px/1 dashicons;speak:none;display:block;padding:0;text-indent:0;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rtl .control-section-astra-pro h3 a:after{content:"\f341"}.ast-hide{display:none!important}#customize-control-astra-settings-primary-submenu-item-border .ast-border-wrapper{width:100%}.actions .button.upload-button{text-transform:capitalize}.wp-picker-container .iris-square-handle{z-index:8}#customize-control-astra-settings-transparent-header-logo .attachment-media-view .button-add-media,#customize-control-custom_logo .attachment-media-view .button-add-media,#customize-control-site_icon .attachment-media-view .placeholder{text-transform:capitalize}.customize-control-ast-background .wp-picker-container .wp-picker-clear,.customize-control-ast-color .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-background .wp-picker-container .wp-picker-clear,.customize-control-ast-responsive-color .wp-picker-container .wp-picker-clear{margin-left:4px;min-height:30px}.customize-control-ast-background .wp-picker-container{display:block} \ No newline at end of file diff --git a/assets/css/minified/editor-style.min-rtl.css b/assets/css/minified/editor-style.min-rtl.css index 5f43283..c06ea52 100644 --- a/assets/css/minified/editor-style.min-rtl.css +++ b/assets/css/minified/editor-style.min-rtl.css @@ -1,3 +1,3 @@ a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{border:0;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}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}a{background-color:transparent}a:active{outline:0}a,a:focus,a:hover,a:visited{text-decoration:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}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]{-webkit-appearance:button;cursor:pointer}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-appearance:textfield;box-sizing:content-box}#comments .submit,.search .search-submit{padding:10px 15px;border-radius:2px;line-height:1.85714285714286;border:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #eaeaea;margin:0 0;padding:.35em .625em .75em}legend{border:0;padding:0}fieldset legend{margin-bottom:1.5em;padding:0 .5em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) - */.ast-container{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-right:-20px;margin-left:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-right:20px;padding-left:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:right}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{left:auto}.ast-col-xs-pull-1{left:8.3333333333%}.ast-col-xs-pull-2{left:16.6666666667%}.ast-col-xs-pull-3{left:25%}.ast-col-xs-pull-4{left:33.3333333333%}.ast-col-xs-pull-5{left:41.6666666667%}.ast-col-xs-pull-6{left:50%}.ast-col-xs-pull-7{left:58.3333333333%}.ast-col-xs-pull-8{left:66.6666666667%}.ast-col-xs-pull-9{left:75%}.ast-col-xs-pull-10{left:83.3333333333%}.ast-col-xs-pull-11{left:91.6666666667%}.ast-col-xs-pull-12{left:100%}.ast-col-xs-push-0{right:auto}.ast-col-xs-push-1{right:8.3333333333%}.ast-col-xs-push-2{right:16.6666666667%}.ast-col-xs-push-3{right:25%}.ast-col-xs-push-4{right:33.3333333333%}.ast-col-xs-push-5{right:41.6666666667%}.ast-col-xs-push-6{right:50%}.ast-col-xs-push-7{right:58.3333333333%}.ast-col-xs-push-8{right:66.6666666667%}.ast-col-xs-push-9{right:75%}.ast-col-xs-push-10{right:83.3333333333%}.ast-col-xs-push-11{right:91.6666666667%}.ast-col-xs-push-12{right:100%}.ast-col-xs-offset-0{margin-right:0}.ast-col-xs-offset-1{margin-right:8.3333333333%}.ast-col-xs-offset-2{margin-right:16.6666666667%}.ast-col-xs-offset-3{margin-right:25%}.ast-col-xs-offset-4{margin-right:33.3333333333%}.ast-col-xs-offset-5{margin-right:41.6666666667%}.ast-col-xs-offset-6{margin-right:50%}.ast-col-xs-offset-7{margin-right:58.3333333333%}.ast-col-xs-offset-8{margin-right:66.6666666667%}.ast-col-xs-offset-9{margin-right:75%}.ast-col-xs-offset-10{margin-right:83.3333333333%}.ast-col-xs-offset-11{margin-right:91.6666666667%}.ast-col-xs-offset-12{margin-right:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:right}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{left:auto}.ast-col-sm-pull-1{left:8.3333333333%}.ast-col-sm-pull-2{left:16.6666666667%}.ast-col-sm-pull-3{left:25%}.ast-col-sm-pull-4{left:33.3333333333%}.ast-col-sm-pull-5{left:41.6666666667%}.ast-col-sm-pull-6{left:50%}.ast-col-sm-pull-7{left:58.3333333333%}.ast-col-sm-pull-8{left:66.6666666667%}.ast-col-sm-pull-9{left:75%}.ast-col-sm-pull-10{left:83.3333333333%}.ast-col-sm-pull-11{left:91.6666666667%}.ast-col-sm-pull-12{left:100%}.ast-col-sm-push-0{right:auto}.ast-col-sm-push-1{right:8.3333333333%}.ast-col-sm-push-2{right:16.6666666667%}.ast-col-sm-push-3{right:25%}.ast-col-sm-push-4{right:33.3333333333%}.ast-col-sm-push-5{right:41.6666666667%}.ast-col-sm-push-6{right:50%}.ast-col-sm-push-7{right:58.3333333333%}.ast-col-sm-push-8{right:66.6666666667%}.ast-col-sm-push-9{right:75%}.ast-col-sm-push-10{right:83.3333333333%}.ast-col-sm-push-11{right:91.6666666667%}.ast-col-sm-push-12{right:100%}.ast-col-sm-offset-0{margin-right:0}.ast-col-sm-offset-1{margin-right:8.3333333333%}.ast-col-sm-offset-2{margin-right:16.6666666667%}.ast-col-sm-offset-3{margin-right:25%}.ast-col-sm-offset-4{margin-right:33.3333333333%}.ast-col-sm-offset-5{margin-right:41.6666666667%}.ast-col-sm-offset-6{margin-right:50%}.ast-col-sm-offset-7{margin-right:58.3333333333%}.ast-col-sm-offset-8{margin-right:66.6666666667%}.ast-col-sm-offset-9{margin-right:75%}.ast-col-sm-offset-10{margin-right:83.3333333333%}.ast-col-sm-offset-11{margin-right:91.6666666667%}.ast-col-sm-offset-12{margin-right:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:right}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{left:auto}.ast-col-md-pull-1{left:8.3333333333%}.ast-col-md-pull-2{left:16.6666666667%}.ast-col-md-pull-3{left:25%}.ast-col-md-pull-4{left:33.3333333333%}.ast-col-md-pull-5{left:41.6666666667%}.ast-col-md-pull-6{left:50%}.ast-col-md-pull-7{left:58.3333333333%}.ast-col-md-pull-8{left:66.6666666667%}.ast-col-md-pull-9{left:75%}.ast-col-md-pull-10{left:83.3333333333%}.ast-col-md-pull-11{left:91.6666666667%}.ast-col-md-pull-12{left:100%}.ast-col-md-push-0{right:auto}.ast-col-md-push-1{right:8.3333333333%}.ast-col-md-push-2{right:16.6666666667%}.ast-col-md-push-3{right:25%}.ast-col-md-push-4{right:33.3333333333%}.ast-col-md-push-5{right:41.6666666667%}.ast-col-md-push-6{right:50%}.ast-col-md-push-7{right:58.3333333333%}.ast-col-md-push-8{right:66.6666666667%}.ast-col-md-push-9{right:75%}.ast-col-md-push-10{right:83.3333333333%}.ast-col-md-push-11{right:91.6666666667%}.ast-col-md-push-12{right:100%}.ast-col-md-offset-0{margin-right:0}.ast-col-md-offset-1{margin-right:8.3333333333%}.ast-col-md-offset-2{margin-right:16.6666666667%}.ast-col-md-offset-3{margin-right:25%}.ast-col-md-offset-4{margin-right:33.3333333333%}.ast-col-md-offset-5{margin-right:41.6666666667%}.ast-col-md-offset-6{margin-right:50%}.ast-col-md-offset-7{margin-right:58.3333333333%}.ast-col-md-offset-8{margin-right:66.6666666667%}.ast-col-md-offset-9{margin-right:75%}.ast-col-md-offset-10{margin-right:83.3333333333%}.ast-col-md-offset-11{margin-right:91.6666666667%}.ast-col-md-offset-12{margin-right:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:right}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{left:auto}.ast-col-lg-pull-1{left:8.3333333333%}.ast-col-lg-pull-2{left:16.6666666667%}.ast-col-lg-pull-3{left:25%}.ast-col-lg-pull-4{left:33.3333333333%}.ast-col-lg-pull-5{left:41.6666666667%}.ast-col-lg-pull-6{left:50%}.ast-col-lg-pull-7{left:58.3333333333%}.ast-col-lg-pull-8{left:66.6666666667%}.ast-col-lg-pull-9{left:75%}.ast-col-lg-pull-10{left:83.3333333333%}.ast-col-lg-pull-11{left:91.6666666667%}.ast-col-lg-pull-12{left:100%}.ast-col-lg-push-0{right:auto}.ast-col-lg-push-1{right:8.3333333333%}.ast-col-lg-push-2{right:16.6666666667%}.ast-col-lg-push-3{right:25%}.ast-col-lg-push-4{right:33.3333333333%}.ast-col-lg-push-5{right:41.6666666667%}.ast-col-lg-push-6{right:50%}.ast-col-lg-push-7{right:58.3333333333%}.ast-col-lg-push-8{right:66.6666666667%}.ast-col-lg-push-9{right:75%}.ast-col-lg-push-10{right:83.3333333333%}.ast-col-lg-push-11{right:91.6666666667%}.ast-col-lg-push-12{right:100%}.ast-col-lg-offset-0{margin-right:0}.ast-col-lg-offset-1{margin-right:8.3333333333%}.ast-col-lg-offset-2{margin-right:16.6666666667%}.ast-col-lg-offset-3{margin-right:25%}.ast-col-lg-offset-4{margin-right:33.3333333333%}.ast-col-lg-offset-5{margin-right:41.6666666667%}.ast-col-lg-offset-6{margin-right:50%}.ast-col-lg-offset-7{margin-right:58.3333333333%}.ast-col-lg-offset-8{margin-right:66.6666666667%}.ast-col-lg-offset-9{margin-right:75%}.ast-col-lg-offset-10{margin-right:83.3333333333%}.ast-col-lg-offset-11{margin-right:91.6666666667%}.ast-col-lg-offset-12{margin-right:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:right}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{left:auto}.ast-col-xl-pull-1{left:8.3333333333%}.ast-col-xl-pull-2{left:16.6666666667%}.ast-col-xl-pull-3{left:25%}.ast-col-xl-pull-4{left:33.3333333333%}.ast-col-xl-pull-5{left:41.6666666667%}.ast-col-xl-pull-6{left:50%}.ast-col-xl-pull-7{left:58.3333333333%}.ast-col-xl-pull-8{left:66.6666666667%}.ast-col-xl-pull-9{left:75%}.ast-col-xl-pull-10{left:83.3333333333%}.ast-col-xl-pull-11{left:91.6666666667%}.ast-col-xl-pull-12{left:100%}.ast-col-xl-push-0{right:auto}.ast-col-xl-push-1{right:8.3333333333%}.ast-col-xl-push-2{right:16.6666666667%}.ast-col-xl-push-3{right:25%}.ast-col-xl-push-4{right:33.3333333333%}.ast-col-xl-push-5{right:41.6666666667%}.ast-col-xl-push-6{right:50%}.ast-col-xl-push-7{right:58.3333333333%}.ast-col-xl-push-8{right:66.6666666667%}.ast-col-xl-push-9{right:75%}.ast-col-xl-push-10{right:83.3333333333%}.ast-col-xl-push-11{right:91.6666666667%}.ast-col-xl-push-12{right:100%}.ast-col-xl-offset-0{margin-right:0}.ast-col-xl-offset-1{margin-right:8.3333333333%}.ast-col-xl-offset-2{margin-right:16.6666666667%}.ast-col-xl-offset-3{margin-right:25%}.ast-col-xl-offset-4{margin-right:33.3333333333%}.ast-col-xl-offset-5{margin-right:41.6666666667%}.ast-col-xl-offset-6{margin-right:50%}.ast-col-xl-offset-7{margin-right:58.3333333333%}.ast-col-xl-offset-8{margin-right:66.6666666667%}.ast-col-xl-offset-9{margin-right:75%}.ast-col-xl-offset-10{margin-right:83.3333333333%}.ast-col-xl-offset-11{margin-right:91.6666666667%}.ast-col-xl-offset-12{margin-right:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-right:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 1px 0 0;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:right;border-width:0 0 1px 1px}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-right:3px;width:100%}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:right;margin-left:1.5em}.alignright{display:inline;float:left;margin-right:1.5em}.aligncenter{clear:both;text-align:center;display:block;margin-right:auto;margin-left:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-right:auto;margin-left:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 3em 1.5em 1em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-left:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-left:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;left:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;right:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;right:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.single .entry-content .gallery{margin-right:-10px;margin-left:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;right:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;right:0;width:100%;height:100%}body{margin:20px;vertical-align:baseline;color:#3a3a3a}a{color:#0274be}a:focus,a:hover{color:#3a3a3a}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.6}p{margin-bottom:1em}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{color:#3a3a3a}.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th{border-style:solid;border-color:rgba(0,0,0,.0980392)}.mce-item-table td,.mce-item-table th{border-width:0 0 1px 1px}.mce-item-table{border-left-width:0;border-bottom-width:0} \ No newline at end of file + */.ast-container{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-right:-20px;margin-left:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-right:20px;padding-left:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:right}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{left:auto}.ast-col-xs-pull-1{left:8.3333333333%}.ast-col-xs-pull-2{left:16.6666666667%}.ast-col-xs-pull-3{left:25%}.ast-col-xs-pull-4{left:33.3333333333%}.ast-col-xs-pull-5{left:41.6666666667%}.ast-col-xs-pull-6{left:50%}.ast-col-xs-pull-7{left:58.3333333333%}.ast-col-xs-pull-8{left:66.6666666667%}.ast-col-xs-pull-9{left:75%}.ast-col-xs-pull-10{left:83.3333333333%}.ast-col-xs-pull-11{left:91.6666666667%}.ast-col-xs-pull-12{left:100%}.ast-col-xs-push-0{right:auto}.ast-col-xs-push-1{right:8.3333333333%}.ast-col-xs-push-2{right:16.6666666667%}.ast-col-xs-push-3{right:25%}.ast-col-xs-push-4{right:33.3333333333%}.ast-col-xs-push-5{right:41.6666666667%}.ast-col-xs-push-6{right:50%}.ast-col-xs-push-7{right:58.3333333333%}.ast-col-xs-push-8{right:66.6666666667%}.ast-col-xs-push-9{right:75%}.ast-col-xs-push-10{right:83.3333333333%}.ast-col-xs-push-11{right:91.6666666667%}.ast-col-xs-push-12{right:100%}.ast-col-xs-offset-0{margin-right:0}.ast-col-xs-offset-1{margin-right:8.3333333333%}.ast-col-xs-offset-2{margin-right:16.6666666667%}.ast-col-xs-offset-3{margin-right:25%}.ast-col-xs-offset-4{margin-right:33.3333333333%}.ast-col-xs-offset-5{margin-right:41.6666666667%}.ast-col-xs-offset-6{margin-right:50%}.ast-col-xs-offset-7{margin-right:58.3333333333%}.ast-col-xs-offset-8{margin-right:66.6666666667%}.ast-col-xs-offset-9{margin-right:75%}.ast-col-xs-offset-10{margin-right:83.3333333333%}.ast-col-xs-offset-11{margin-right:91.6666666667%}.ast-col-xs-offset-12{margin-right:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:right}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{left:auto}.ast-col-sm-pull-1{left:8.3333333333%}.ast-col-sm-pull-2{left:16.6666666667%}.ast-col-sm-pull-3{left:25%}.ast-col-sm-pull-4{left:33.3333333333%}.ast-col-sm-pull-5{left:41.6666666667%}.ast-col-sm-pull-6{left:50%}.ast-col-sm-pull-7{left:58.3333333333%}.ast-col-sm-pull-8{left:66.6666666667%}.ast-col-sm-pull-9{left:75%}.ast-col-sm-pull-10{left:83.3333333333%}.ast-col-sm-pull-11{left:91.6666666667%}.ast-col-sm-pull-12{left:100%}.ast-col-sm-push-0{right:auto}.ast-col-sm-push-1{right:8.3333333333%}.ast-col-sm-push-2{right:16.6666666667%}.ast-col-sm-push-3{right:25%}.ast-col-sm-push-4{right:33.3333333333%}.ast-col-sm-push-5{right:41.6666666667%}.ast-col-sm-push-6{right:50%}.ast-col-sm-push-7{right:58.3333333333%}.ast-col-sm-push-8{right:66.6666666667%}.ast-col-sm-push-9{right:75%}.ast-col-sm-push-10{right:83.3333333333%}.ast-col-sm-push-11{right:91.6666666667%}.ast-col-sm-push-12{right:100%}.ast-col-sm-offset-0{margin-right:0}.ast-col-sm-offset-1{margin-right:8.3333333333%}.ast-col-sm-offset-2{margin-right:16.6666666667%}.ast-col-sm-offset-3{margin-right:25%}.ast-col-sm-offset-4{margin-right:33.3333333333%}.ast-col-sm-offset-5{margin-right:41.6666666667%}.ast-col-sm-offset-6{margin-right:50%}.ast-col-sm-offset-7{margin-right:58.3333333333%}.ast-col-sm-offset-8{margin-right:66.6666666667%}.ast-col-sm-offset-9{margin-right:75%}.ast-col-sm-offset-10{margin-right:83.3333333333%}.ast-col-sm-offset-11{margin-right:91.6666666667%}.ast-col-sm-offset-12{margin-right:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:right}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{left:auto}.ast-col-md-pull-1{left:8.3333333333%}.ast-col-md-pull-2{left:16.6666666667%}.ast-col-md-pull-3{left:25%}.ast-col-md-pull-4{left:33.3333333333%}.ast-col-md-pull-5{left:41.6666666667%}.ast-col-md-pull-6{left:50%}.ast-col-md-pull-7{left:58.3333333333%}.ast-col-md-pull-8{left:66.6666666667%}.ast-col-md-pull-9{left:75%}.ast-col-md-pull-10{left:83.3333333333%}.ast-col-md-pull-11{left:91.6666666667%}.ast-col-md-pull-12{left:100%}.ast-col-md-push-0{right:auto}.ast-col-md-push-1{right:8.3333333333%}.ast-col-md-push-2{right:16.6666666667%}.ast-col-md-push-3{right:25%}.ast-col-md-push-4{right:33.3333333333%}.ast-col-md-push-5{right:41.6666666667%}.ast-col-md-push-6{right:50%}.ast-col-md-push-7{right:58.3333333333%}.ast-col-md-push-8{right:66.6666666667%}.ast-col-md-push-9{right:75%}.ast-col-md-push-10{right:83.3333333333%}.ast-col-md-push-11{right:91.6666666667%}.ast-col-md-push-12{right:100%}.ast-col-md-offset-0{margin-right:0}.ast-col-md-offset-1{margin-right:8.3333333333%}.ast-col-md-offset-2{margin-right:16.6666666667%}.ast-col-md-offset-3{margin-right:25%}.ast-col-md-offset-4{margin-right:33.3333333333%}.ast-col-md-offset-5{margin-right:41.6666666667%}.ast-col-md-offset-6{margin-right:50%}.ast-col-md-offset-7{margin-right:58.3333333333%}.ast-col-md-offset-8{margin-right:66.6666666667%}.ast-col-md-offset-9{margin-right:75%}.ast-col-md-offset-10{margin-right:83.3333333333%}.ast-col-md-offset-11{margin-right:91.6666666667%}.ast-col-md-offset-12{margin-right:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:right}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{left:auto}.ast-col-lg-pull-1{left:8.3333333333%}.ast-col-lg-pull-2{left:16.6666666667%}.ast-col-lg-pull-3{left:25%}.ast-col-lg-pull-4{left:33.3333333333%}.ast-col-lg-pull-5{left:41.6666666667%}.ast-col-lg-pull-6{left:50%}.ast-col-lg-pull-7{left:58.3333333333%}.ast-col-lg-pull-8{left:66.6666666667%}.ast-col-lg-pull-9{left:75%}.ast-col-lg-pull-10{left:83.3333333333%}.ast-col-lg-pull-11{left:91.6666666667%}.ast-col-lg-pull-12{left:100%}.ast-col-lg-push-0{right:auto}.ast-col-lg-push-1{right:8.3333333333%}.ast-col-lg-push-2{right:16.6666666667%}.ast-col-lg-push-3{right:25%}.ast-col-lg-push-4{right:33.3333333333%}.ast-col-lg-push-5{right:41.6666666667%}.ast-col-lg-push-6{right:50%}.ast-col-lg-push-7{right:58.3333333333%}.ast-col-lg-push-8{right:66.6666666667%}.ast-col-lg-push-9{right:75%}.ast-col-lg-push-10{right:83.3333333333%}.ast-col-lg-push-11{right:91.6666666667%}.ast-col-lg-push-12{right:100%}.ast-col-lg-offset-0{margin-right:0}.ast-col-lg-offset-1{margin-right:8.3333333333%}.ast-col-lg-offset-2{margin-right:16.6666666667%}.ast-col-lg-offset-3{margin-right:25%}.ast-col-lg-offset-4{margin-right:33.3333333333%}.ast-col-lg-offset-5{margin-right:41.6666666667%}.ast-col-lg-offset-6{margin-right:50%}.ast-col-lg-offset-7{margin-right:58.3333333333%}.ast-col-lg-offset-8{margin-right:66.6666666667%}.ast-col-lg-offset-9{margin-right:75%}.ast-col-lg-offset-10{margin-right:83.3333333333%}.ast-col-lg-offset-11{margin-right:91.6666666667%}.ast-col-lg-offset-12{margin-right:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:right}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{left:auto}.ast-col-xl-pull-1{left:8.3333333333%}.ast-col-xl-pull-2{left:16.6666666667%}.ast-col-xl-pull-3{left:25%}.ast-col-xl-pull-4{left:33.3333333333%}.ast-col-xl-pull-5{left:41.6666666667%}.ast-col-xl-pull-6{left:50%}.ast-col-xl-pull-7{left:58.3333333333%}.ast-col-xl-pull-8{left:66.6666666667%}.ast-col-xl-pull-9{left:75%}.ast-col-xl-pull-10{left:83.3333333333%}.ast-col-xl-pull-11{left:91.6666666667%}.ast-col-xl-pull-12{left:100%}.ast-col-xl-push-0{right:auto}.ast-col-xl-push-1{right:8.3333333333%}.ast-col-xl-push-2{right:16.6666666667%}.ast-col-xl-push-3{right:25%}.ast-col-xl-push-4{right:33.3333333333%}.ast-col-xl-push-5{right:41.6666666667%}.ast-col-xl-push-6{right:50%}.ast-col-xl-push-7{right:58.3333333333%}.ast-col-xl-push-8{right:66.6666666667%}.ast-col-xl-push-9{right:75%}.ast-col-xl-push-10{right:83.3333333333%}.ast-col-xl-push-11{right:91.6666666667%}.ast-col-xl-push-12{right:100%}.ast-col-xl-offset-0{margin-right:0}.ast-col-xl-offset-1{margin-right:8.3333333333%}.ast-col-xl-offset-2{margin-right:16.6666666667%}.ast-col-xl-offset-3{margin-right:25%}.ast-col-xl-offset-4{margin-right:33.3333333333%}.ast-col-xl-offset-5{margin-right:41.6666666667%}.ast-col-xl-offset-6{margin-right:50%}.ast-col-xl-offset-7{margin-right:58.3333333333%}.ast-col-xl-offset-8{margin-right:66.6666666667%}.ast-col-xl-offset-9{margin-right:75%}.ast-col-xl-offset-10{margin-right:83.3333333333%}.ast-col-xl-offset-11{margin-right:91.6666666667%}.ast-col-xl-offset-12{margin-right:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-right:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 1px 0 0;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:right;border-width:0 0 1px 1px}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-right:3px;width:100%}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:right;margin-left:1.5em}.alignright{display:inline;float:left;margin-right:1.5em}.aligncenter{clear:both;text-align:center;display:block;margin-right:auto;margin-left:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-right:auto;margin-left:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 3em 1.5em 1em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative;z-index:3}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-left:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-left:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;left:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;right:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;right:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.single .entry-content .gallery{margin-right:-10px;margin-left:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;right:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;right:0;width:100%;height:100%}body{margin:20px;vertical-align:baseline;color:#3a3a3a}a{color:#0274be}a:focus,a:hover{color:#3a3a3a}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.6}p{margin-bottom:1em}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{color:#3a3a3a}.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th{border-style:solid;border-color:rgba(0,0,0,.0980392)}.mce-item-table td,.mce-item-table th{border-width:0 0 1px 1px}.mce-item-table{border-left-width:0;border-bottom-width:0} \ No newline at end of file diff --git a/assets/css/minified/editor-style.min.css b/assets/css/minified/editor-style.min.css index 0125dfd..6f26b1b 100644 --- a/assets/css/minified/editor-style.min.css +++ b/assets/css/minified/editor-style.min.css @@ -1,3 +1,3 @@ a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{border:0;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}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}a{background-color:transparent}a:active{outline:0}a,a:focus,a:hover,a:visited{text-decoration:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}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]{-webkit-appearance:button;cursor:pointer}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-appearance:textfield;box-sizing:content-box}#comments .submit,.search .search-submit{padding:10px 15px;border-radius:2px;line-height:1.85714285714286;border:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #eaeaea;margin:0 0;padding:.35em .625em .75em}legend{border:0;padding:0}fieldset legend{margin-bottom:1.5em;padding:0 .5em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) - */.ast-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-left:-20px;margin-right:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:left}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{right:auto}.ast-col-xs-pull-1{right:8.3333333333%}.ast-col-xs-pull-2{right:16.6666666667%}.ast-col-xs-pull-3{right:25%}.ast-col-xs-pull-4{right:33.3333333333%}.ast-col-xs-pull-5{right:41.6666666667%}.ast-col-xs-pull-6{right:50%}.ast-col-xs-pull-7{right:58.3333333333%}.ast-col-xs-pull-8{right:66.6666666667%}.ast-col-xs-pull-9{right:75%}.ast-col-xs-pull-10{right:83.3333333333%}.ast-col-xs-pull-11{right:91.6666666667%}.ast-col-xs-pull-12{right:100%}.ast-col-xs-push-0{left:auto}.ast-col-xs-push-1{left:8.3333333333%}.ast-col-xs-push-2{left:16.6666666667%}.ast-col-xs-push-3{left:25%}.ast-col-xs-push-4{left:33.3333333333%}.ast-col-xs-push-5{left:41.6666666667%}.ast-col-xs-push-6{left:50%}.ast-col-xs-push-7{left:58.3333333333%}.ast-col-xs-push-8{left:66.6666666667%}.ast-col-xs-push-9{left:75%}.ast-col-xs-push-10{left:83.3333333333%}.ast-col-xs-push-11{left:91.6666666667%}.ast-col-xs-push-12{left:100%}.ast-col-xs-offset-0{margin-left:0}.ast-col-xs-offset-1{margin-left:8.3333333333%}.ast-col-xs-offset-2{margin-left:16.6666666667%}.ast-col-xs-offset-3{margin-left:25%}.ast-col-xs-offset-4{margin-left:33.3333333333%}.ast-col-xs-offset-5{margin-left:41.6666666667%}.ast-col-xs-offset-6{margin-left:50%}.ast-col-xs-offset-7{margin-left:58.3333333333%}.ast-col-xs-offset-8{margin-left:66.6666666667%}.ast-col-xs-offset-9{margin-left:75%}.ast-col-xs-offset-10{margin-left:83.3333333333%}.ast-col-xs-offset-11{margin-left:91.6666666667%}.ast-col-xs-offset-12{margin-left:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:left}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{right:auto}.ast-col-sm-pull-1{right:8.3333333333%}.ast-col-sm-pull-2{right:16.6666666667%}.ast-col-sm-pull-3{right:25%}.ast-col-sm-pull-4{right:33.3333333333%}.ast-col-sm-pull-5{right:41.6666666667%}.ast-col-sm-pull-6{right:50%}.ast-col-sm-pull-7{right:58.3333333333%}.ast-col-sm-pull-8{right:66.6666666667%}.ast-col-sm-pull-9{right:75%}.ast-col-sm-pull-10{right:83.3333333333%}.ast-col-sm-pull-11{right:91.6666666667%}.ast-col-sm-pull-12{right:100%}.ast-col-sm-push-0{left:auto}.ast-col-sm-push-1{left:8.3333333333%}.ast-col-sm-push-2{left:16.6666666667%}.ast-col-sm-push-3{left:25%}.ast-col-sm-push-4{left:33.3333333333%}.ast-col-sm-push-5{left:41.6666666667%}.ast-col-sm-push-6{left:50%}.ast-col-sm-push-7{left:58.3333333333%}.ast-col-sm-push-8{left:66.6666666667%}.ast-col-sm-push-9{left:75%}.ast-col-sm-push-10{left:83.3333333333%}.ast-col-sm-push-11{left:91.6666666667%}.ast-col-sm-push-12{left:100%}.ast-col-sm-offset-0{margin-left:0}.ast-col-sm-offset-1{margin-left:8.3333333333%}.ast-col-sm-offset-2{margin-left:16.6666666667%}.ast-col-sm-offset-3{margin-left:25%}.ast-col-sm-offset-4{margin-left:33.3333333333%}.ast-col-sm-offset-5{margin-left:41.6666666667%}.ast-col-sm-offset-6{margin-left:50%}.ast-col-sm-offset-7{margin-left:58.3333333333%}.ast-col-sm-offset-8{margin-left:66.6666666667%}.ast-col-sm-offset-9{margin-left:75%}.ast-col-sm-offset-10{margin-left:83.3333333333%}.ast-col-sm-offset-11{margin-left:91.6666666667%}.ast-col-sm-offset-12{margin-left:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:left}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{right:auto}.ast-col-md-pull-1{right:8.3333333333%}.ast-col-md-pull-2{right:16.6666666667%}.ast-col-md-pull-3{right:25%}.ast-col-md-pull-4{right:33.3333333333%}.ast-col-md-pull-5{right:41.6666666667%}.ast-col-md-pull-6{right:50%}.ast-col-md-pull-7{right:58.3333333333%}.ast-col-md-pull-8{right:66.6666666667%}.ast-col-md-pull-9{right:75%}.ast-col-md-pull-10{right:83.3333333333%}.ast-col-md-pull-11{right:91.6666666667%}.ast-col-md-pull-12{right:100%}.ast-col-md-push-0{left:auto}.ast-col-md-push-1{left:8.3333333333%}.ast-col-md-push-2{left:16.6666666667%}.ast-col-md-push-3{left:25%}.ast-col-md-push-4{left:33.3333333333%}.ast-col-md-push-5{left:41.6666666667%}.ast-col-md-push-6{left:50%}.ast-col-md-push-7{left:58.3333333333%}.ast-col-md-push-8{left:66.6666666667%}.ast-col-md-push-9{left:75%}.ast-col-md-push-10{left:83.3333333333%}.ast-col-md-push-11{left:91.6666666667%}.ast-col-md-push-12{left:100%}.ast-col-md-offset-0{margin-left:0}.ast-col-md-offset-1{margin-left:8.3333333333%}.ast-col-md-offset-2{margin-left:16.6666666667%}.ast-col-md-offset-3{margin-left:25%}.ast-col-md-offset-4{margin-left:33.3333333333%}.ast-col-md-offset-5{margin-left:41.6666666667%}.ast-col-md-offset-6{margin-left:50%}.ast-col-md-offset-7{margin-left:58.3333333333%}.ast-col-md-offset-8{margin-left:66.6666666667%}.ast-col-md-offset-9{margin-left:75%}.ast-col-md-offset-10{margin-left:83.3333333333%}.ast-col-md-offset-11{margin-left:91.6666666667%}.ast-col-md-offset-12{margin-left:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:left}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{right:auto}.ast-col-lg-pull-1{right:8.3333333333%}.ast-col-lg-pull-2{right:16.6666666667%}.ast-col-lg-pull-3{right:25%}.ast-col-lg-pull-4{right:33.3333333333%}.ast-col-lg-pull-5{right:41.6666666667%}.ast-col-lg-pull-6{right:50%}.ast-col-lg-pull-7{right:58.3333333333%}.ast-col-lg-pull-8{right:66.6666666667%}.ast-col-lg-pull-9{right:75%}.ast-col-lg-pull-10{right:83.3333333333%}.ast-col-lg-pull-11{right:91.6666666667%}.ast-col-lg-pull-12{right:100%}.ast-col-lg-push-0{left:auto}.ast-col-lg-push-1{left:8.3333333333%}.ast-col-lg-push-2{left:16.6666666667%}.ast-col-lg-push-3{left:25%}.ast-col-lg-push-4{left:33.3333333333%}.ast-col-lg-push-5{left:41.6666666667%}.ast-col-lg-push-6{left:50%}.ast-col-lg-push-7{left:58.3333333333%}.ast-col-lg-push-8{left:66.6666666667%}.ast-col-lg-push-9{left:75%}.ast-col-lg-push-10{left:83.3333333333%}.ast-col-lg-push-11{left:91.6666666667%}.ast-col-lg-push-12{left:100%}.ast-col-lg-offset-0{margin-left:0}.ast-col-lg-offset-1{margin-left:8.3333333333%}.ast-col-lg-offset-2{margin-left:16.6666666667%}.ast-col-lg-offset-3{margin-left:25%}.ast-col-lg-offset-4{margin-left:33.3333333333%}.ast-col-lg-offset-5{margin-left:41.6666666667%}.ast-col-lg-offset-6{margin-left:50%}.ast-col-lg-offset-7{margin-left:58.3333333333%}.ast-col-lg-offset-8{margin-left:66.6666666667%}.ast-col-lg-offset-9{margin-left:75%}.ast-col-lg-offset-10{margin-left:83.3333333333%}.ast-col-lg-offset-11{margin-left:91.6666666667%}.ast-col-lg-offset-12{margin-left:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:left}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{right:auto}.ast-col-xl-pull-1{right:8.3333333333%}.ast-col-xl-pull-2{right:16.6666666667%}.ast-col-xl-pull-3{right:25%}.ast-col-xl-pull-4{right:33.3333333333%}.ast-col-xl-pull-5{right:41.6666666667%}.ast-col-xl-pull-6{right:50%}.ast-col-xl-pull-7{right:58.3333333333%}.ast-col-xl-pull-8{right:66.6666666667%}.ast-col-xl-pull-9{right:75%}.ast-col-xl-pull-10{right:83.3333333333%}.ast-col-xl-pull-11{right:91.6666666667%}.ast-col-xl-pull-12{right:100%}.ast-col-xl-push-0{left:auto}.ast-col-xl-push-1{left:8.3333333333%}.ast-col-xl-push-2{left:16.6666666667%}.ast-col-xl-push-3{left:25%}.ast-col-xl-push-4{left:33.3333333333%}.ast-col-xl-push-5{left:41.6666666667%}.ast-col-xl-push-6{left:50%}.ast-col-xl-push-7{left:58.3333333333%}.ast-col-xl-push-8{left:66.6666666667%}.ast-col-xl-push-9{left:75%}.ast-col-xl-push-10{left:83.3333333333%}.ast-col-xl-push-11{left:91.6666666667%}.ast-col-xl-push-12{left:100%}.ast-col-xl-offset-0{margin-left:0}.ast-col-xl-offset-1{margin-left:8.3333333333%}.ast-col-xl-offset-2{margin-left:16.6666666667%}.ast-col-xl-offset-3{margin-left:25%}.ast-col-xl-offset-4{margin-left:33.3333333333%}.ast-col-xl-offset-5{margin-left:41.6666666667%}.ast-col-xl-offset-6{margin-left:50%}.ast-col-xl-offset-7{margin-left:58.3333333333%}.ast-col-xl-offset-8{margin-left:66.6666666667%}.ast-col-xl-offset-9{margin-left:75%}.ast-col-xl-offset-10{margin-left:83.3333333333%}.ast-col-xl-offset-11{margin-left:91.6666666667%}.ast-col-xl-offset-12{margin-left:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:left;border-width:0 1px 1px 0}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-left:3px;width:100%}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;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;text-align:center;display:block;margin-left:auto;margin-right:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 1em 1.5em 3em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-right:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-right:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;right:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;left:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;left:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.single .entry-content .gallery{margin-left:-10px;margin-right:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;left:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;left:0;width:100%;height:100%}body{margin:20px;vertical-align:baseline;color:#3a3a3a}a{color:#0274be}a:focus,a:hover{color:#3a3a3a}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.6}p{margin-bottom:1em}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{color:#3a3a3a}.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th{border-style:solid;border-color:rgba(0,0,0,.0980392)}.mce-item-table td,.mce-item-table th{border-width:0 1px 1px 0}.mce-item-table{border-right-width:0;border-bottom-width:0} \ No newline at end of file + */.ast-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-left:-20px;margin-right:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:left}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{right:auto}.ast-col-xs-pull-1{right:8.3333333333%}.ast-col-xs-pull-2{right:16.6666666667%}.ast-col-xs-pull-3{right:25%}.ast-col-xs-pull-4{right:33.3333333333%}.ast-col-xs-pull-5{right:41.6666666667%}.ast-col-xs-pull-6{right:50%}.ast-col-xs-pull-7{right:58.3333333333%}.ast-col-xs-pull-8{right:66.6666666667%}.ast-col-xs-pull-9{right:75%}.ast-col-xs-pull-10{right:83.3333333333%}.ast-col-xs-pull-11{right:91.6666666667%}.ast-col-xs-pull-12{right:100%}.ast-col-xs-push-0{left:auto}.ast-col-xs-push-1{left:8.3333333333%}.ast-col-xs-push-2{left:16.6666666667%}.ast-col-xs-push-3{left:25%}.ast-col-xs-push-4{left:33.3333333333%}.ast-col-xs-push-5{left:41.6666666667%}.ast-col-xs-push-6{left:50%}.ast-col-xs-push-7{left:58.3333333333%}.ast-col-xs-push-8{left:66.6666666667%}.ast-col-xs-push-9{left:75%}.ast-col-xs-push-10{left:83.3333333333%}.ast-col-xs-push-11{left:91.6666666667%}.ast-col-xs-push-12{left:100%}.ast-col-xs-offset-0{margin-left:0}.ast-col-xs-offset-1{margin-left:8.3333333333%}.ast-col-xs-offset-2{margin-left:16.6666666667%}.ast-col-xs-offset-3{margin-left:25%}.ast-col-xs-offset-4{margin-left:33.3333333333%}.ast-col-xs-offset-5{margin-left:41.6666666667%}.ast-col-xs-offset-6{margin-left:50%}.ast-col-xs-offset-7{margin-left:58.3333333333%}.ast-col-xs-offset-8{margin-left:66.6666666667%}.ast-col-xs-offset-9{margin-left:75%}.ast-col-xs-offset-10{margin-left:83.3333333333%}.ast-col-xs-offset-11{margin-left:91.6666666667%}.ast-col-xs-offset-12{margin-left:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:left}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{right:auto}.ast-col-sm-pull-1{right:8.3333333333%}.ast-col-sm-pull-2{right:16.6666666667%}.ast-col-sm-pull-3{right:25%}.ast-col-sm-pull-4{right:33.3333333333%}.ast-col-sm-pull-5{right:41.6666666667%}.ast-col-sm-pull-6{right:50%}.ast-col-sm-pull-7{right:58.3333333333%}.ast-col-sm-pull-8{right:66.6666666667%}.ast-col-sm-pull-9{right:75%}.ast-col-sm-pull-10{right:83.3333333333%}.ast-col-sm-pull-11{right:91.6666666667%}.ast-col-sm-pull-12{right:100%}.ast-col-sm-push-0{left:auto}.ast-col-sm-push-1{left:8.3333333333%}.ast-col-sm-push-2{left:16.6666666667%}.ast-col-sm-push-3{left:25%}.ast-col-sm-push-4{left:33.3333333333%}.ast-col-sm-push-5{left:41.6666666667%}.ast-col-sm-push-6{left:50%}.ast-col-sm-push-7{left:58.3333333333%}.ast-col-sm-push-8{left:66.6666666667%}.ast-col-sm-push-9{left:75%}.ast-col-sm-push-10{left:83.3333333333%}.ast-col-sm-push-11{left:91.6666666667%}.ast-col-sm-push-12{left:100%}.ast-col-sm-offset-0{margin-left:0}.ast-col-sm-offset-1{margin-left:8.3333333333%}.ast-col-sm-offset-2{margin-left:16.6666666667%}.ast-col-sm-offset-3{margin-left:25%}.ast-col-sm-offset-4{margin-left:33.3333333333%}.ast-col-sm-offset-5{margin-left:41.6666666667%}.ast-col-sm-offset-6{margin-left:50%}.ast-col-sm-offset-7{margin-left:58.3333333333%}.ast-col-sm-offset-8{margin-left:66.6666666667%}.ast-col-sm-offset-9{margin-left:75%}.ast-col-sm-offset-10{margin-left:83.3333333333%}.ast-col-sm-offset-11{margin-left:91.6666666667%}.ast-col-sm-offset-12{margin-left:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:left}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{right:auto}.ast-col-md-pull-1{right:8.3333333333%}.ast-col-md-pull-2{right:16.6666666667%}.ast-col-md-pull-3{right:25%}.ast-col-md-pull-4{right:33.3333333333%}.ast-col-md-pull-5{right:41.6666666667%}.ast-col-md-pull-6{right:50%}.ast-col-md-pull-7{right:58.3333333333%}.ast-col-md-pull-8{right:66.6666666667%}.ast-col-md-pull-9{right:75%}.ast-col-md-pull-10{right:83.3333333333%}.ast-col-md-pull-11{right:91.6666666667%}.ast-col-md-pull-12{right:100%}.ast-col-md-push-0{left:auto}.ast-col-md-push-1{left:8.3333333333%}.ast-col-md-push-2{left:16.6666666667%}.ast-col-md-push-3{left:25%}.ast-col-md-push-4{left:33.3333333333%}.ast-col-md-push-5{left:41.6666666667%}.ast-col-md-push-6{left:50%}.ast-col-md-push-7{left:58.3333333333%}.ast-col-md-push-8{left:66.6666666667%}.ast-col-md-push-9{left:75%}.ast-col-md-push-10{left:83.3333333333%}.ast-col-md-push-11{left:91.6666666667%}.ast-col-md-push-12{left:100%}.ast-col-md-offset-0{margin-left:0}.ast-col-md-offset-1{margin-left:8.3333333333%}.ast-col-md-offset-2{margin-left:16.6666666667%}.ast-col-md-offset-3{margin-left:25%}.ast-col-md-offset-4{margin-left:33.3333333333%}.ast-col-md-offset-5{margin-left:41.6666666667%}.ast-col-md-offset-6{margin-left:50%}.ast-col-md-offset-7{margin-left:58.3333333333%}.ast-col-md-offset-8{margin-left:66.6666666667%}.ast-col-md-offset-9{margin-left:75%}.ast-col-md-offset-10{margin-left:83.3333333333%}.ast-col-md-offset-11{margin-left:91.6666666667%}.ast-col-md-offset-12{margin-left:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:left}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{right:auto}.ast-col-lg-pull-1{right:8.3333333333%}.ast-col-lg-pull-2{right:16.6666666667%}.ast-col-lg-pull-3{right:25%}.ast-col-lg-pull-4{right:33.3333333333%}.ast-col-lg-pull-5{right:41.6666666667%}.ast-col-lg-pull-6{right:50%}.ast-col-lg-pull-7{right:58.3333333333%}.ast-col-lg-pull-8{right:66.6666666667%}.ast-col-lg-pull-9{right:75%}.ast-col-lg-pull-10{right:83.3333333333%}.ast-col-lg-pull-11{right:91.6666666667%}.ast-col-lg-pull-12{right:100%}.ast-col-lg-push-0{left:auto}.ast-col-lg-push-1{left:8.3333333333%}.ast-col-lg-push-2{left:16.6666666667%}.ast-col-lg-push-3{left:25%}.ast-col-lg-push-4{left:33.3333333333%}.ast-col-lg-push-5{left:41.6666666667%}.ast-col-lg-push-6{left:50%}.ast-col-lg-push-7{left:58.3333333333%}.ast-col-lg-push-8{left:66.6666666667%}.ast-col-lg-push-9{left:75%}.ast-col-lg-push-10{left:83.3333333333%}.ast-col-lg-push-11{left:91.6666666667%}.ast-col-lg-push-12{left:100%}.ast-col-lg-offset-0{margin-left:0}.ast-col-lg-offset-1{margin-left:8.3333333333%}.ast-col-lg-offset-2{margin-left:16.6666666667%}.ast-col-lg-offset-3{margin-left:25%}.ast-col-lg-offset-4{margin-left:33.3333333333%}.ast-col-lg-offset-5{margin-left:41.6666666667%}.ast-col-lg-offset-6{margin-left:50%}.ast-col-lg-offset-7{margin-left:58.3333333333%}.ast-col-lg-offset-8{margin-left:66.6666666667%}.ast-col-lg-offset-9{margin-left:75%}.ast-col-lg-offset-10{margin-left:83.3333333333%}.ast-col-lg-offset-11{margin-left:91.6666666667%}.ast-col-lg-offset-12{margin-left:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:left}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{right:auto}.ast-col-xl-pull-1{right:8.3333333333%}.ast-col-xl-pull-2{right:16.6666666667%}.ast-col-xl-pull-3{right:25%}.ast-col-xl-pull-4{right:33.3333333333%}.ast-col-xl-pull-5{right:41.6666666667%}.ast-col-xl-pull-6{right:50%}.ast-col-xl-pull-7{right:58.3333333333%}.ast-col-xl-pull-8{right:66.6666666667%}.ast-col-xl-pull-9{right:75%}.ast-col-xl-pull-10{right:83.3333333333%}.ast-col-xl-pull-11{right:91.6666666667%}.ast-col-xl-pull-12{right:100%}.ast-col-xl-push-0{left:auto}.ast-col-xl-push-1{left:8.3333333333%}.ast-col-xl-push-2{left:16.6666666667%}.ast-col-xl-push-3{left:25%}.ast-col-xl-push-4{left:33.3333333333%}.ast-col-xl-push-5{left:41.6666666667%}.ast-col-xl-push-6{left:50%}.ast-col-xl-push-7{left:58.3333333333%}.ast-col-xl-push-8{left:66.6666666667%}.ast-col-xl-push-9{left:75%}.ast-col-xl-push-10{left:83.3333333333%}.ast-col-xl-push-11{left:91.6666666667%}.ast-col-xl-push-12{left:100%}.ast-col-xl-offset-0{margin-left:0}.ast-col-xl-offset-1{margin-left:8.3333333333%}.ast-col-xl-offset-2{margin-left:16.6666666667%}.ast-col-xl-offset-3{margin-left:25%}.ast-col-xl-offset-4{margin-left:33.3333333333%}.ast-col-xl-offset-5{margin-left:41.6666666667%}.ast-col-xl-offset-6{margin-left:50%}.ast-col-xl-offset-7{margin-left:58.3333333333%}.ast-col-xl-offset-8{margin-left:66.6666666667%}.ast-col-xl-offset-9{margin-left:75%}.ast-col-xl-offset-10{margin-left:83.3333333333%}.ast-col-xl-offset-11{margin-left:91.6666666667%}.ast-col-xl-offset-12{margin-left:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:left;border-width:0 1px 1px 0}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-left:3px;width:100%}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;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;text-align:center;display:block;margin-left:auto;margin-right:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 1em 1.5em 3em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative;z-index:3}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-right:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-right:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;right:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;left:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;left:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.single .entry-content .gallery{margin-left:-10px;margin-right:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;left:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;left:0;width:100%;height:100%}body{margin:20px;vertical-align:baseline;color:#3a3a3a}a{color:#0274be}a:focus,a:hover{color:#3a3a3a}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.6}p{margin-bottom:1em}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6,h1,h2,h3,h4,h5,h6{color:#3a3a3a}.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th{border-style:solid;border-color:rgba(0,0,0,.0980392)}.mce-item-table td,.mce-item-table th{border-width:0 1px 1px 0}.mce-item-table{border-right-width:0;border-bottom-width:0} \ No newline at end of file diff --git a/assets/css/minified/frontend.min.css b/assets/css/minified/frontend.min.css new file mode 100644 index 0000000..1109859 --- /dev/null +++ b/assets/css/minified/frontend.min.css @@ -0,0 +1,3 @@ +@charset "UTF-8";a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{border:0;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}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}a{background-color:transparent}a:active{outline:0}a,a:focus,a:hover,a:visited{text-decoration:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}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]{-webkit-appearance:button;cursor:pointer}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-appearance:textfield;box-sizing:content-box}#comments .submit,.search .search-submit{padding:10px 15px;border-radius:2px;line-height:1.85714285714286;border:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #eaeaea;margin:0 0;padding:.35em .625em .75em}legend{border:0;padding:0}fieldset legend{margin-bottom:1.5em;padding:0 .5em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! + * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) + */.ast-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-left:-20px;margin-right:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:left}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{right:auto}.ast-col-xs-pull-1{right:8.3333333333%}.ast-col-xs-pull-2{right:16.6666666667%}.ast-col-xs-pull-3{right:25%}.ast-col-xs-pull-4{right:33.3333333333%}.ast-col-xs-pull-5{right:41.6666666667%}.ast-col-xs-pull-6{right:50%}.ast-col-xs-pull-7{right:58.3333333333%}.ast-col-xs-pull-8{right:66.6666666667%}.ast-col-xs-pull-9{right:75%}.ast-col-xs-pull-10{right:83.3333333333%}.ast-col-xs-pull-11{right:91.6666666667%}.ast-col-xs-pull-12{right:100%}.ast-col-xs-push-0{left:auto}.ast-col-xs-push-1{left:8.3333333333%}.ast-col-xs-push-2{left:16.6666666667%}.ast-col-xs-push-3{left:25%}.ast-col-xs-push-4{left:33.3333333333%}.ast-col-xs-push-5{left:41.6666666667%}.ast-col-xs-push-6{left:50%}.ast-col-xs-push-7{left:58.3333333333%}.ast-col-xs-push-8{left:66.6666666667%}.ast-col-xs-push-9{left:75%}.ast-col-xs-push-10{left:83.3333333333%}.ast-col-xs-push-11{left:91.6666666667%}.ast-col-xs-push-12{left:100%}.ast-col-xs-offset-0{margin-left:0}.ast-col-xs-offset-1{margin-left:8.3333333333%}.ast-col-xs-offset-2{margin-left:16.6666666667%}.ast-col-xs-offset-3{margin-left:25%}.ast-col-xs-offset-4{margin-left:33.3333333333%}.ast-col-xs-offset-5{margin-left:41.6666666667%}.ast-col-xs-offset-6{margin-left:50%}.ast-col-xs-offset-7{margin-left:58.3333333333%}.ast-col-xs-offset-8{margin-left:66.6666666667%}.ast-col-xs-offset-9{margin-left:75%}.ast-col-xs-offset-10{margin-left:83.3333333333%}.ast-col-xs-offset-11{margin-left:91.6666666667%}.ast-col-xs-offset-12{margin-left:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:left}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{right:auto}.ast-col-sm-pull-1{right:8.3333333333%}.ast-col-sm-pull-2{right:16.6666666667%}.ast-col-sm-pull-3{right:25%}.ast-col-sm-pull-4{right:33.3333333333%}.ast-col-sm-pull-5{right:41.6666666667%}.ast-col-sm-pull-6{right:50%}.ast-col-sm-pull-7{right:58.3333333333%}.ast-col-sm-pull-8{right:66.6666666667%}.ast-col-sm-pull-9{right:75%}.ast-col-sm-pull-10{right:83.3333333333%}.ast-col-sm-pull-11{right:91.6666666667%}.ast-col-sm-pull-12{right:100%}.ast-col-sm-push-0{left:auto}.ast-col-sm-push-1{left:8.3333333333%}.ast-col-sm-push-2{left:16.6666666667%}.ast-col-sm-push-3{left:25%}.ast-col-sm-push-4{left:33.3333333333%}.ast-col-sm-push-5{left:41.6666666667%}.ast-col-sm-push-6{left:50%}.ast-col-sm-push-7{left:58.3333333333%}.ast-col-sm-push-8{left:66.6666666667%}.ast-col-sm-push-9{left:75%}.ast-col-sm-push-10{left:83.3333333333%}.ast-col-sm-push-11{left:91.6666666667%}.ast-col-sm-push-12{left:100%}.ast-col-sm-offset-0{margin-left:0}.ast-col-sm-offset-1{margin-left:8.3333333333%}.ast-col-sm-offset-2{margin-left:16.6666666667%}.ast-col-sm-offset-3{margin-left:25%}.ast-col-sm-offset-4{margin-left:33.3333333333%}.ast-col-sm-offset-5{margin-left:41.6666666667%}.ast-col-sm-offset-6{margin-left:50%}.ast-col-sm-offset-7{margin-left:58.3333333333%}.ast-col-sm-offset-8{margin-left:66.6666666667%}.ast-col-sm-offset-9{margin-left:75%}.ast-col-sm-offset-10{margin-left:83.3333333333%}.ast-col-sm-offset-11{margin-left:91.6666666667%}.ast-col-sm-offset-12{margin-left:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:left}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{right:auto}.ast-col-md-pull-1{right:8.3333333333%}.ast-col-md-pull-2{right:16.6666666667%}.ast-col-md-pull-3{right:25%}.ast-col-md-pull-4{right:33.3333333333%}.ast-col-md-pull-5{right:41.6666666667%}.ast-col-md-pull-6{right:50%}.ast-col-md-pull-7{right:58.3333333333%}.ast-col-md-pull-8{right:66.6666666667%}.ast-col-md-pull-9{right:75%}.ast-col-md-pull-10{right:83.3333333333%}.ast-col-md-pull-11{right:91.6666666667%}.ast-col-md-pull-12{right:100%}.ast-col-md-push-0{left:auto}.ast-col-md-push-1{left:8.3333333333%}.ast-col-md-push-2{left:16.6666666667%}.ast-col-md-push-3{left:25%}.ast-col-md-push-4{left:33.3333333333%}.ast-col-md-push-5{left:41.6666666667%}.ast-col-md-push-6{left:50%}.ast-col-md-push-7{left:58.3333333333%}.ast-col-md-push-8{left:66.6666666667%}.ast-col-md-push-9{left:75%}.ast-col-md-push-10{left:83.3333333333%}.ast-col-md-push-11{left:91.6666666667%}.ast-col-md-push-12{left:100%}.ast-col-md-offset-0{margin-left:0}.ast-col-md-offset-1{margin-left:8.3333333333%}.ast-col-md-offset-2{margin-left:16.6666666667%}.ast-col-md-offset-3{margin-left:25%}.ast-col-md-offset-4{margin-left:33.3333333333%}.ast-col-md-offset-5{margin-left:41.6666666667%}.ast-col-md-offset-6{margin-left:50%}.ast-col-md-offset-7{margin-left:58.3333333333%}.ast-col-md-offset-8{margin-left:66.6666666667%}.ast-col-md-offset-9{margin-left:75%}.ast-col-md-offset-10{margin-left:83.3333333333%}.ast-col-md-offset-11{margin-left:91.6666666667%}.ast-col-md-offset-12{margin-left:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:left}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{right:auto}.ast-col-lg-pull-1{right:8.3333333333%}.ast-col-lg-pull-2{right:16.6666666667%}.ast-col-lg-pull-3{right:25%}.ast-col-lg-pull-4{right:33.3333333333%}.ast-col-lg-pull-5{right:41.6666666667%}.ast-col-lg-pull-6{right:50%}.ast-col-lg-pull-7{right:58.3333333333%}.ast-col-lg-pull-8{right:66.6666666667%}.ast-col-lg-pull-9{right:75%}.ast-col-lg-pull-10{right:83.3333333333%}.ast-col-lg-pull-11{right:91.6666666667%}.ast-col-lg-pull-12{right:100%}.ast-col-lg-push-0{left:auto}.ast-col-lg-push-1{left:8.3333333333%}.ast-col-lg-push-2{left:16.6666666667%}.ast-col-lg-push-3{left:25%}.ast-col-lg-push-4{left:33.3333333333%}.ast-col-lg-push-5{left:41.6666666667%}.ast-col-lg-push-6{left:50%}.ast-col-lg-push-7{left:58.3333333333%}.ast-col-lg-push-8{left:66.6666666667%}.ast-col-lg-push-9{left:75%}.ast-col-lg-push-10{left:83.3333333333%}.ast-col-lg-push-11{left:91.6666666667%}.ast-col-lg-push-12{left:100%}.ast-col-lg-offset-0{margin-left:0}.ast-col-lg-offset-1{margin-left:8.3333333333%}.ast-col-lg-offset-2{margin-left:16.6666666667%}.ast-col-lg-offset-3{margin-left:25%}.ast-col-lg-offset-4{margin-left:33.3333333333%}.ast-col-lg-offset-5{margin-left:41.6666666667%}.ast-col-lg-offset-6{margin-left:50%}.ast-col-lg-offset-7{margin-left:58.3333333333%}.ast-col-lg-offset-8{margin-left:66.6666666667%}.ast-col-lg-offset-9{margin-left:75%}.ast-col-lg-offset-10{margin-left:83.3333333333%}.ast-col-lg-offset-11{margin-left:91.6666666667%}.ast-col-lg-offset-12{margin-left:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:left}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{right:auto}.ast-col-xl-pull-1{right:8.3333333333%}.ast-col-xl-pull-2{right:16.6666666667%}.ast-col-xl-pull-3{right:25%}.ast-col-xl-pull-4{right:33.3333333333%}.ast-col-xl-pull-5{right:41.6666666667%}.ast-col-xl-pull-6{right:50%}.ast-col-xl-pull-7{right:58.3333333333%}.ast-col-xl-pull-8{right:66.6666666667%}.ast-col-xl-pull-9{right:75%}.ast-col-xl-pull-10{right:83.3333333333%}.ast-col-xl-pull-11{right:91.6666666667%}.ast-col-xl-pull-12{right:100%}.ast-col-xl-push-0{left:auto}.ast-col-xl-push-1{left:8.3333333333%}.ast-col-xl-push-2{left:16.6666666667%}.ast-col-xl-push-3{left:25%}.ast-col-xl-push-4{left:33.3333333333%}.ast-col-xl-push-5{left:41.6666666667%}.ast-col-xl-push-6{left:50%}.ast-col-xl-push-7{left:58.3333333333%}.ast-col-xl-push-8{left:66.6666666667%}.ast-col-xl-push-9{left:75%}.ast-col-xl-push-10{left:83.3333333333%}.ast-col-xl-push-11{left:91.6666666667%}.ast-col-xl-push-12{left:100%}.ast-col-xl-offset-0{margin-left:0}.ast-col-xl-offset-1{margin-left:8.3333333333%}.ast-col-xl-offset-2{margin-left:16.6666666667%}.ast-col-xl-offset-3{margin-left:25%}.ast-col-xl-offset-4{margin-left:33.3333333333%}.ast-col-xl-offset-5{margin-left:41.6666666667%}.ast-col-xl-offset-6{margin-left:50%}.ast-col-xl-offset-7{margin-left:58.3333333333%}.ast-col-xl-offset-8{margin-left:66.6666666667%}.ast-col-xl-offset-9{margin-left:75%}.ast-col-xl-offset-10{margin-left:83.3333333333%}.ast-col-xl-offset-11{margin-left:91.6666666667%}.ast-col-xl-offset-12{margin-left:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:left;border-width:0 1px 1px 0}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-left:3px;width:100%}a{color:#4169e1}a:focus,a:hover{color:#191970}a:focus{outline:thin dotted}a:hover{outline:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;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;text-align:center;display:block;margin-left:auto;margin-right:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 1em 1.5em 3em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative;z-index:3}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-right:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-right:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;right:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;left:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;left:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.ast-social-icons{list-style-type:none;margin:0}.ast-social-icons li{display:inline-block;padding-right:15px}.ast-social-icons li:last-child{padding-right:0}.ast-social-icons a{display:block}.ast-social-icons i{font-style:normal;font-family:fontawesome;font-weight:400}.ast-social-icons i:before{font-weight:400}.single .entry-content .gallery{margin-left:-10px;margin-right:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;left:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;left:0;width:100%;height:100%}.ast-hidden{display:none!important}body{background-color:#fff}#page{display:block}#primary,#secondary{display:block;position:relative;float:left;width:100%}#primary{margin:4em 0}#secondary{margin:4em 0 2.5em;word-break:break-word;line-height:2}#secondary li{margin-bottom:.25em}#secondary li:last-child{margin-bottom:0}.ast-separate-container{background-color:#f5f5f5}.ast-separate-container #primary{padding:4em 0;margin:0;border:0}.ast-separate-container .site-main>.ast-row{margin-left:0;margin-right:0}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{background-color:#fff;border-bottom:1px solid #eee;margin:0;padding:5.34em 6.67em}.ast-separate-container .blog-layout-1{padding:0;border-bottom:0}.ast-separate-container .ast-article-single{border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{margin:0;padding:3.34em 2.4em}}.ast-page-builder-template .hentry{margin:0}.ast-page-builder-template .site-content>.ast-container{max-width:100%;padding:0}.ast-page-builder-template .site-content #primary{padding:0;margin:0}.ast-page-builder-template .no-results{text-align:center;margin:4em auto}.ast-page-builder-template .ast-pagination{padding:2em}.ast-page-builder-template .entry-header{margin-top:4em;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail{margin-top:0}.ast-page-builder-template .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}.ast-page-builder-template.ast-left-sidebar #secondary{padding-left:20px}.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px}.ast-page-builder-template.single .post-navigation{padding-bottom:2em}.ast-page-builder-template .ast-archive-description{margin-top:4em;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}@media (min-width:993px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{margin:4em 0;padding:0}.ast-right-sidebar #primary{padding-right:60px}.ast-right-sidebar #secondary{padding-left:60px}.ast-left-sidebar #primary{padding-left:60px}.ast-left-sidebar #secondary{padding-right:60px}}@media (max-width:992px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{padding-left:0;padding-right:0}.ast-right-sidebar #primary{padding-right:30px}.ast-right-sidebar #secondary{padding-left:30px}.ast-left-sidebar #primary{padding-left:30px}.ast-left-sidebar #secondary{padding-right:30px}}.astra-search-icon::before{content:"\e8b6";font-family:Astra;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ast-search-icon .astra-search-icon{font-size:1.3em}.main-navigation{-js-display:inline-flex;display:inline-flex;height:100%}.main-navigation ul{list-style:none;margin:0;padding-left:0;position:relative}.main-header-menu .menu-link,.main-header-menu>a{text-decoration:none;padding:0 1em;display:inline-block;transition:all .2s linear}.main-header-menu .menu-item{position:relative}.main-header-menu .menu-item.focus>.sub-menu,.main-header-menu .menu-item:hover>.sub-menu{right:auto;left:0}.main-header-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu:hover>.sub-menu{right:0;left:auto}@media (min-width:769px){.main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu{width:240px;background:#fff;left:-999em;position:absolute;top:100%;z-index:99999}@media (min-width:769px){.main-header-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .sub-menu .menu-item:hover>.sub-menu{left:100%;right:auto}.main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:-100%}.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu .menu-link{padding:.9em 1em;display:block;word-wrap:break-word}.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;right:1em;top:50%;transform:translate(0,-50%) rotate(270deg)}.main-header-menu .sub-menu .sub-menu{top:0}.submenu-with-border .sub-menu{border-width:1px;border-style:solid}.submenu-with-border .sub-menu .menu-link{border-width:0 0 1px;border-style:solid}.submenu-with-border .sub-menu .sub-menu{top:-1px}.ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link{border-bottom-width:0}.ast-header-break-point .main-navigation{padding-left:0}.ast-header-break-point .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before{content:"\e900";font-family:Astra;font-size:.65em;text-decoration:inherit;display:inline-block;transform:translate(0,-2px) rotateZ(270deg);margin-right:5px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link{padding-left:50px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px}.ast-header-break-point .ast-header-custom-item,.ast-header-break-point .main-header-menu{background-color:#f9f9f9}.ast-header-break-point .main-header-menu .sub-menu{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto}.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:0}.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:0}.ast-header-break-point .submenu-with-border .sub-menu{border:0}.ast-mobile-menu-buttons{display:none}.ast-button-wrap{display:inline-block}.ast-button-wrap button{box-shadow:none;border:none}.ast-button-wrap .menu-toggle{padding:0;width:2.2em;height:2.1em;font-size:1.5em;font-weight:400;border-radius:2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:2px;vertical-align:middle;line-height:1.85714285714286}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:0 .5em;width:auto;text-align:center}.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu{font-size:15px;font-size:1rem;font-weight:600}.ast-button-wrap .menu-toggle .menu-toggle-icon{font-style:normal;display:inline-block;vertical-align:middle;line-height:2.05}.ast-button-wrap .menu-toggle .menu-toggle-icon:before{content:"\e5d2";font-family:Astra;text-decoration:inherit}.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before{content:"\e5cd"}.ast-button-wrap .menu-toggle .mobile-menu-wrap{display:inline-block}.ast-button-wrap .menu-toggle:focus{outline:thin dotted}.main-header-bar-navigation{flex:1}.header-main-layout-1 .ast-main-header-bar-alignment{margin-left:auto}.header-main-layout-3 .ast-main-header-bar-alignment{margin-right:auto}#site-navigation{height:100%}.ast-header-break-point .user-select{clear:both}.ast-header-break-point .ast-mobile-menu-buttons{display:block;align-self:center}.ast-header-break-point .main-header-bar-navigation{flex:auto}.ast-header-break-point .ast-main-header-bar-alignment{display:block;width:100%;flex:auto;order:4}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-next,.comment-navigation .nav-previous,.post-navigation .nav-next,.post-navigation .nav-previous,.posts-navigation .nav-next,.posts-navigation .nav-previous{width:50%;display:inline-block}.comment-navigation .nav-next,.post-navigation .nav-next,.posts-navigation .nav-next{text-align:right}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.group-blog .byline,.single .byline{display:inline}.page-links{clear:both;margin-top:1em}.page-links a{display:inline-block}.page-links a .page-link{border-color:#eaeaea;background:0 0}.page-links .page-link{padding:0;margin:0 0 .3em .3em;border:2px solid #eaeaea;color:#000;background:0 0;font-size:.8em;width:2.5em;height:2.5em;line-height:calc(2.5em - 4px);display:inline-block;text-align:center;transition:all .2s linear}.page-links .page-link:focus,.page-links .page-link:hover{color:#000}@media (max-width:768px){.page-links .page-link{margin-bottom:6px}}.entry-content>:last-child,.entry-summary>:last-child,.page-content>:last-child{margin-bottom:0}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}.ast-no-sidebar .entry-content .alignfull{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);max-width:100vw;width:100vw}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .alignwide{margin-left:-100px;margin-right:-100px;max-width:unset;width:unset}.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-6.67em;margin-right:-6.67em;width:auto}@media (max-width:1200px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-2.4em;margin-right:-2.4em}}@media (max-width:768px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-2.14em;margin-right:-2.14em}}@media (max-width:544px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-1em;margin-right:-1em}}.ast-no-sidebar.ast-separate-container .entry-content .alignwide{margin-left:-20px;margin-right:-20px}.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.blocks-gallery-grid,.wp-block-gallery{margin:0}.wp-block-separator{max-width:100px}.wp-block-separator.is-style-wide{max-width:none}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:10px}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:10px}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{flex-basis:100%}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:0}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:0}}body{overflow-x:hidden}body .entry-content .wp-block-latest-posts{margin-left:0}body .entry-content .wp-block-latest-posts li{list-style:none}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts{margin-left:0}.ast-header-break-point .entry-content .alignwide{margin-left:auto;margin-right:auto}.entry-content .blocks-gallery-item img{margin-bottom:auto}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide{margin-left:0;margin-right:0}.widget-title{font-weight:400;margin-bottom:1em;line-height:1.5}.widget{margin:0 0 2.8em 0}.widget:last-child{margin-bottom:0}.widget select{max-width:100%}.widget ul{margin:0;list-style-type:none}.widget_nav_menu ul ul.sub-menu{margin-top:.25em}.widget_nav_menu ul ul.sub-menu li{padding-left:20px}.widget_nav_menu ul ul.sub-menu a:after{left:-20px}.widget_nav_menu ul ul.sub-menu ul a:after{left:-40px}.widget_nav_menu ul ul.sub-menu ul ul a:after{left:-60px}.widget_nav_menu li{transition:all .2s linear}.widget_search .search-form{position:relative;padding:0;background:initial;color:inherit}.widget_search .search-form:after{font-family:Astra;font-size:1.2em;font-weight:400;content:"\e8b6";position:absolute;top:50%;right:15px;transform:translate(0,-50%)}.widget_search .search-form>label{position:relative}.widget_search .search-form input[type=submit],.widget_search .search-form input[type=submit]:focus,.widget_search .search-form input[type=submit]:hover{padding:13px 20px;border-radius:2px;border:none;top:0;right:0;position:absolute;color:transparent;background:0 0;max-width:45px;z-index:2}.widget_search .search-form .search-field{background:#fafafa;border-width:1px;border-color:#eaeaea;border-radius:2px}.widget_search .search-field,.widget_search .search-field:focus{width:100%;padding:16px 45px 16px 15px}.widget_archive ul.children,.widget_categories ul.children,.widget_pages ul.children{position:relative;margin-top:5px;width:100%}.widget_archive ul.children li,.widget_categories ul.children li,.widget_pages ul.children li{padding-left:20px}.widget_archive li ul.children a:after,.widget_categories li ul.children a:after,.widget_pages li ul.children a:after{left:-20px}.widget_archive li ul.children ul a:after,.widget_categories li ul.children ul a:after,.widget_pages li ul.children ul a:after{left:-40px}.widget_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.widget_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-right:4px;line-height:1.5;transition:all .2s linear}.widget_calendar table,.widget_calendar td,.widget_calendar th{padding:0;text-align:center}.widget_calendar table,.widget_calendar th{border:none}.widget_calendar td{border-right:none;border-left:none}.widget_calendar caption{line-height:2.7em}.widget_calendar thead{line-height:2.5em}.widget_calendar thead a{color:#0274be;font-size:1rem;vertical-align:middle}.widget_calendar thead td{vertical-align:middle;font-weight:700}.widget_calendar thead>tr>th{line-height:2.5em;border-bottom:2px solid #eaeaea;border-top:2px solid #eaeaea}.widget_calendar tbody{line-height:2.1em;text-align:center}.widget_calendar tbody>tr>td{width:14.2857%}.widget_calendar tbody>tr:first-child>td{padding-top:3px}.widget_calendar #today{background:#0274be}.ast-separate-container.ast-two-container #secondary .widget{background-color:#fff;padding:2em;margin-bottom:2em}.ast-builder-grid-row{display:grid;grid-template-columns:auto auto;align-items:center;grid-column-gap:20px}.ast-builder-footer-grid-columns{grid-column-gap:50px}.ast-builder-grid-row.ast-grid-center-col-layout{grid-template-columns:1fr auto 1fr}.ast-builder-grid-row-6-equal .ast-builder-grid-row{grid-template-columns:repeat(6,1fr)}.ast-builder-grid-row-5-equal .ast-builder-grid-row{grid-template-columns:repeat(5,1fr)}.ast-builder-grid-row-4-equal .ast-builder-grid-row{grid-template-columns:repeat(4,1fr)}.ast-builder-grid-row-4-lheavy .ast-builder-grid-row{grid-template-columns:2fr 1fr 1fr 1fr}.ast-builder-grid-row-4-rheavy .ast-builder-grid-row{grid-template-columns:1fr 1fr 1fr 2fr}.ast-builder-grid-row-3-equal .ast-builder-grid-row{grid-template-columns:repeat(3,1fr)}.ast-builder-grid-row-3-lheavy .ast-builder-grid-row{grid-template-columns:2fr 1fr 1fr}.ast-builder-grid-row-3-rheavy .ast-builder-grid-row{grid-template-columns:1fr 1fr 2fr}.ast-builder-grid-row-3-cheavy .ast-builder-grid-row{grid-template-columns:1fr 2fr 1fr}.ast-builder-grid-row-3-cwide .ast-builder-grid-row{grid-template-columns:1fr 3fr 1fr}.ast-builder-grid-row-2-equal .ast-builder-grid-row{grid-template-columns:repeat(2,1fr)}.ast-builder-grid-row-2-lheavy .ast-builder-grid-row{grid-template-columns:2fr 1fr}.ast-builder-grid-row-2-rheavy .ast-builder-grid-row{grid-template-columns:1fr 2fr}.ast-builder-grid-row-2-full .ast-builder-grid-row{grid-template-columns:2fr}.ast-builder-grid-row-full .ast-builder-grid-row{grid-template-columns:1fr}.ast-builder-layout-element{align-items:center;-js-display:flex;display:flex;height:100%}.ast-builder-layout-element .ast-footer-social-wrap .ast-builder-social-element:first-child{margin-left:0}.ast-builder-layout-element .ast-footer-social-wrap .ast-builder-social-element:last-child{margin-right:0}.ast-builder-grid-row.ast-grid-center-col-layout-only{-js-display:flex;display:flex;height:100%;justify-content:center}.ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center{flex-grow:1}.site-header-section{-js-display:flex;display:flex;height:100%;min-height:0;align-items:center}.site-header-section .ast-main-header-bar-alignment{height:100%}.site-header-section>*{padding:0 10px}.site-header-section>div:first-child{padding-left:0}.site-header-section>div:last-child{padding-right:0}.site-header-section .ast-builder-menu{-js-display:flex;display:flex;align-items:center}.ast-builder-layout-element.ast-header-search{height:auto}.ast-grid-right-center-section{justify-content:flex-start;flex-grow:1}.ast-grid-right-section{justify-content:flex-end}.ast-grid-right-section .ast-site-identity>:first-child{text-align:right}.ast-grid-right-section .ast-grid-right-center-section .ast-site-identity>:first-child{text-align:left}.ast-grid-left-center-section{justify-content:flex-end;flex-grow:1}.ast-builder-html-element img.alignnone{display:inline-block}.ast-builder-html-element p:first-child{margin-top:0}.ast-builder-html-element p:last-child{margin-bottom:0}.ast-logo-title-inline .ast-site-identity{padding:1em 0;-js-display:inline-flex;display:inline-flex;vertical-align:middle;align-items:center}.ast-logo-title-inline .site-logo-img{padding-right:1em}.ast-grid-section-center{justify-content:center}.ast-grid-section-center .ast-site-identity>:first-child{text-align:center}.header-main-layout-2 .site-header-section-left .ast-site-identity{text-align:left}.ast-builder-social-element{-js-display:inline-flex;display:inline-flex;line-height:1;color:#3a3a3a;background:0 0;vertical-align:middle;transition:all 10ms;margin-left:6px;margin-right:6px;justify-content:center;align-items:center}.ast-builder-social-element:hover{color:#0274be}.ast-builder-social-element .social-item-label{padding-left:6px}.ahfb-svg-iconset{-js-display:inline-flex;display:inline-flex;align-self:center}.ahfb-svg-iconset svg{width:17px;height:17px;transition:none;-js-display:flex;display:flex}.ahfb-svg-iconset svg>*{transition:none}.social-show-label-true .ast-builder-social-element{width:auto;padding:0 .4em}.ast-header-social-wrap .ast-builder-social-element:first-child{margin-left:0}.ast-header-social-wrap .ast-builder-social-element:last-child{margin-right:0}[data-section*=section-fb-button-] .menu-link,[data-section*=section-hb-button-] .menu-link{display:none}.ast-footer-html-inner p{margin-bottom:0}.ast-builder-grid-row-container{display:grid;align-content:center}.site-header-focus-item .main-header-bar-navigation .menu-item-has-children>.menu-link:after{content:"\e900";display:inline-block;font-family:Astra;font-size:9px;font-size:.6rem;font-weight:700;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;line-height:normal}.ast-nav-menu .sub-menu{line-height:1.45}.ast-builder-menu .main-navigation{padding:0}.ast-builder-menu .main-navigation>ul{align-self:center}.site-footer-focus-item{width:100%}.ast-footer-copyright{width:100%}.ast-footer-social-wrap{width:100%}.footer-nav-wrap .astra-footer-vertical-menu{display:grid}#astra-footer-menu{margin:0;list-style:none;background:inherit}#astra-footer-menu>ul{margin:0;list-style:none;background:inherit}#ast-mobile-header{display:none}.ast-header-break-point #ast-desktop-header{display:none}.ast-header-break-point #ast-mobile-header{display:block}.ast-header-break-point .main-header-bar-navigation{line-height:3}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:0;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link,.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link,.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link{border:none}.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children>.ast-menu-toggle::before,.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children>.ast-menu-toggle::before,.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children>.ast-menu-toggle::before{font-size:.6rem}.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before,.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before,.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .ast-mobile-header-wrap .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-header-break-point .ast-nav-menu .sub-menu{line-height:3}.site-footer-section{justify-content:center}.site-footer-section>*{margin-bottom:10px}.site-footer-section>:last-child{margin-bottom:0}.site-primary-footer-wrap{padding-top:45px;padding-bottom:45px}.site-above-footer-wrap,.site-below-footer-wrap{padding-top:20px;padding-bottom:20px}[data-section=astra_customizer_mobile_header_button] .menu-link{display:none}.ast-mobile-popup-drawer{position:fixed;top:0;bottom:0;left:-99999rem;right:99999rem;transition:opacity .25s ease-in,left 0s .25s,right 0s .25s;opacity:0}.ast-mobile-popup-drawer .ast-mobile-popup-inner{width:100%;transform:translateX(100%);max-width:90%;right:0;top:0;overflow:auto;background:#fafafa;color:#3a3a3a;bottom:0;opacity:0;position:fixed;box-shadow:0 0 2rem 0 rgba(0,0,0,.1);-js-display:flex;display:flex;flex-direction:column;transition:transform .2s ease-in,opacity .2s ease-in}.ast-mobile-popup-drawer .ast-mobile-popup-overlay{background-color:rgba(0,0,0,.4);position:fixed;top:0;right:0;bottom:0;left:0;visibility:hidden;opacity:0;transition:opacity .2s ease-in-out}.ast-mobile-popup-drawer .ast-mobile-popup-header{-js-display:flex;display:flex;justify-content:flex-end;min-height:calc(1.2em + 24px)}.ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close{background:0 0;border:0;font-size:24px;line-height:1;padding:.6em;color:inherit;-js-display:flex;display:flex;box-shadow:none}.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-mobile-popup-drawer .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-mobile-popup-drawer.ast-mobile-popup-left .ast-mobile-popup-inner{transform:translateX(-100%);right:auto;left:0}.ast-mobile-popup-drawer.ast-mobile-popup-full-width .ast-mobile-popup-inner{max-width:none;transition:transform 0s ease-in,opacity .2s ease-in}.ast-mobile-popup-drawer.show{opacity:1;visibility:visible}.ast-mobile-popup-drawer.active{left:0;opacity:1;right:0;z-index:100000;transition:opacity .25s ease-out}.ast-mobile-popup-drawer.active .ast-mobile-popup-inner{opacity:1;visibility:visible;transform:translateX(0)}.ast-mobile-popup-drawer.active .ast-mobile-popup-overlay{opacity:1;cursor:pointer;visibility:visible}body.admin-bar .ast-mobile-popup-drawer{top:46px}body.admin-bar .ast-mobile-popup-drawer .ast-mobile-popup-inner{top:46px}body.admin-bar.ast-primary-sticky-header-active .ast-mobile-popup-drawer{top:0}body.admin-bar.ast-primary-sticky-header-active .ast-mobile-popup-drawer .ast-mobile-popup-inner{top:0}.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-popup-drawer .main-header-bar-navigation ul .menu-item .sub-menu .menu-link{padding-left:30px}.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-popup-drawer .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px}.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation{width:unset;margin:unset}.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link{padding-left:30px}.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px}.astra-hfb-header.ast-header-break-point .main-header-bar-navigation{width:100%;margin:0}.ast-mobile-popup-content>*{padding:10px 0;height:auto}.ast-off-canvas-active body.ast-main-header-nav-open{overflow:hidden}.ast-mobile-header-wrap .ast-mobile-header-content{display:none}.ast-mobile-header-wrap .menu-toggle.toggled .ast-mobile-svg{display:none}.ast-mobile-header-wrap .menu-toggle.toggled .ast-close-svg{display:block}.ast-mobile-header-wrap .menu-toggle .ast-close-svg{display:none}.ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon{-js-display:inline-flex;display:inline-flex;align-self:center}.ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap{-js-display:inline-flex;display:inline-flex;align-self:center;margin-left:.4em}.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle{-js-display:flex;display:flex;align-items:center;width:auto;height:auto}.ast-mobile-header-wrap .ast-builder-grid-row-container-inner{display:grid;align-items:center}.ast-off-canvas-active .ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content{display:none}.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content{display:none}.ast-main-header-nav-open .ast-mobile-header-wrap .ast-mobile-header-content{display:block}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:.5em}.ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding:.6em;padding-right:5.5em}.footer-social-inner-wrap.ast-social-color-type-official .ast-twitter,.footer-social-inner-wrap.ast-social-color-type-official .ast-twitter .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-twitter,.header-social-inner-wrap.ast-social-color-type-official .ast-twitter .social-item-label{background:0 0;color:#7acdee}.footer-social-inner-wrap.ast-social-color-type-official .ast-instagram,.footer-social-inner-wrap.ast-social-color-type-official .ast-instagram .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-instagram,.header-social-inner-wrap.ast-social-color-type-official .ast-instagram .social-item-label{background:0 0;color:#292929}.footer-social-inner-wrap.ast-social-color-type-official .ast-linkedin,.footer-social-inner-wrap.ast-social-color-type-official .ast-linkedin .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-linkedin,.header-social-inner-wrap.ast-social-color-type-official .ast-linkedin .social-item-label{background:0 0;color:#1c86c6}.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook_group,.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook_group .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-facebook_group,.header-social-inner-wrap.ast-social-color-type-official .ast-facebook_group .social-item-label{background:0 0;color:#3d87fb}.footer-social-inner-wrap.ast-social-color-type-official .ast-discord,.footer-social-inner-wrap.ast-social-color-type-official .ast-discord .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-discord,.header-social-inner-wrap.ast-social-color-type-official .ast-discord .social-item-label{background:0 0;color:#7187d4}.footer-social-inner-wrap.ast-social-color-type-official .ast-pinterest,.footer-social-inner-wrap.ast-social-color-type-official .ast-pinterest .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-pinterest,.header-social-inner-wrap.ast-social-color-type-official .ast-pinterest .social-item-label{background:0 0;color:#ea575a}.footer-social-inner-wrap.ast-social-color-type-official .ast-dribbble,.footer-social-inner-wrap.ast-social-color-type-official .ast-dribbble .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-dribbble,.header-social-inner-wrap.ast-social-color-type-official .ast-dribbble .social-item-label{background:0 0;color:#d77ea6}.footer-social-inner-wrap.ast-social-color-type-official .ast-behance,.footer-social-inner-wrap.ast-social-color-type-official .ast-behance .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-behance,.header-social-inner-wrap.ast-social-color-type-official .ast-behance .social-item-label{background:0 0;color:#1b64f6}.footer-social-inner-wrap.ast-social-color-type-official .ast-medium,.footer-social-inner-wrap.ast-social-color-type-official .ast-medium .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-medium,.header-social-inner-wrap.ast-social-color-type-official .ast-medium .social-item-label{background:0 0;color:#292929}.footer-social-inner-wrap.ast-social-color-type-official .ast-patreon,.footer-social-inner-wrap.ast-social-color-type-official .ast-patreon .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-patreon,.header-social-inner-wrap.ast-social-color-type-official .ast-patreon .social-item-label{background:0 0;color:#e65c4b}.footer-social-inner-wrap.ast-social-color-type-official .ast-vk,.footer-social-inner-wrap.ast-social-color-type-official .ast-vk .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-vk,.header-social-inner-wrap.ast-social-color-type-official .ast-vk .social-item-label{background:0 0;color:#5382b6}.footer-social-inner-wrap.ast-social-color-type-official .ast-reddit,.footer-social-inner-wrap.ast-social-color-type-official .ast-reddit .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-reddit,.header-social-inner-wrap.ast-social-color-type-official .ast-reddit .social-item-label{background:0 0;color:#fc471e}.footer-social-inner-wrap.ast-social-color-type-official .ast-youtube,.footer-social-inner-wrap.ast-social-color-type-official .ast-youtube .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-youtube,.header-social-inner-wrap.ast-social-color-type-official .ast-youtube .social-item-label{background:0 0;color:#e96651}.footer-social-inner-wrap.ast-social-color-type-official .ast-vimeo,.footer-social-inner-wrap.ast-social-color-type-official .ast-vimeo .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-vimeo,.header-social-inner-wrap.ast-social-color-type-official .ast-vimeo .social-item-label{background:0 0;color:#8ecfde}.footer-social-inner-wrap.ast-social-color-type-official .ast-rss,.footer-social-inner-wrap.ast-social-color-type-official .ast-rss .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-rss,.header-social-inner-wrap.ast-social-color-type-official .ast-rss .social-item-label{background:0 0;color:#f09124}.footer-social-inner-wrap.ast-social-color-type-official .ast-whatsapp,.footer-social-inner-wrap.ast-social-color-type-official .ast-whatsapp .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-whatsapp,.header-social-inner-wrap.ast-social-color-type-official .ast-whatsapp .social-item-label{background:0 0;color:#5bba67}.footer-social-inner-wrap.ast-social-color-type-official .ast-viber,.footer-social-inner-wrap.ast-social-color-type-official .ast-viber .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-viber,.header-social-inner-wrap.ast-social-color-type-official .ast-viber .social-item-label{background:0 0;color:#7f509e}.footer-social-inner-wrap.ast-social-color-type-official .ast-telegram,.footer-social-inner-wrap.ast-social-color-type-official .ast-telegram .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-telegram,.header-social-inner-wrap.ast-social-color-type-official .ast-telegram .social-item-label{background:0 0;color:#229cce}.footer-social-inner-wrap.ast-social-color-type-official .ast-xing,.footer-social-inner-wrap.ast-social-color-type-official .ast-xing .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-xing,.header-social-inner-wrap.ast-social-color-type-official .ast-xing .social-item-label{background:0 0;color:#0a5c5d}.footer-social-inner-wrap.ast-social-color-type-official .ast-weibo,.footer-social-inner-wrap.ast-social-color-type-official .ast-weibo .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-weibo,.header-social-inner-wrap.ast-social-color-type-official .ast-weibo .social-item-label{background:0 0;color:#e41c34}.footer-social-inner-wrap.ast-social-color-type-official .ast-tumblr,.footer-social-inner-wrap.ast-social-color-type-official .ast-tumblr .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-tumblr,.header-social-inner-wrap.ast-social-color-type-official .ast-tumblr .social-item-label{background:0 0;color:#314255}.footer-social-inner-wrap.ast-social-color-type-official .ast-qq,.footer-social-inner-wrap.ast-social-color-type-official .ast-qq .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-qq,.header-social-inner-wrap.ast-social-color-type-official .ast-qq .social-item-label{background:0 0;color:#487fc8}.footer-social-inner-wrap.ast-social-color-type-official .ast-wechat,.footer-social-inner-wrap.ast-social-color-type-official .ast-wechat .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-wechat,.header-social-inner-wrap.ast-social-color-type-official .ast-wechat .social-item-label{background:0 0;color:#2dc121}.footer-social-inner-wrap.ast-social-color-type-official .ast-phone,.footer-social-inner-wrap.ast-social-color-type-official .ast-phone .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-phone,.header-social-inner-wrap.ast-social-color-type-official .ast-phone .social-item-label{background:0 0;color:inherit}.footer-social-inner-wrap.ast-social-color-type-official .ast-strava,.footer-social-inner-wrap.ast-social-color-type-official .ast-strava .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-strava,.header-social-inner-wrap.ast-social-color-type-official .ast-strava .social-item-label{background:0 0;color:#2dc121}.footer-social-inner-wrap.ast-social-color-type-official .ast-email,.footer-social-inner-wrap.ast-social-color-type-official .ast-email .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-email,.header-social-inner-wrap.ast-social-color-type-official .ast-email .social-item-label{background:0 0;color:#ea4335}.footer-social-inner-wrap.ast-social-color-type-official .ast-github,.footer-social-inner-wrap.ast-social-color-type-official .ast-github .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-github,.header-social-inner-wrap.ast-social-color-type-official .ast-github .social-item-label{background:0 0;color:#24292e}.footer-social-inner-wrap.ast-social-color-type-official .ast-google_reviews,.footer-social-inner-wrap.ast-social-color-type-official .ast-google_reviews .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-google_reviews,.header-social-inner-wrap.ast-social-color-type-official .ast-google_reviews .social-item-label{background:0 0;color:#dc4e41}.footer-social-inner-wrap.ast-social-color-type-official .ast-wordpress,.footer-social-inner-wrap.ast-social-color-type-official .ast-wordpress .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-wordpress,.header-social-inner-wrap.ast-social-color-type-official .ast-wordpress .social-item-label{background:0 0;color:#464646}.footer-social-inner-wrap.ast-social-color-type-official .ast-yelp,.footer-social-inner-wrap.ast-social-color-type-official .ast-yelp .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-yelp,.header-social-inner-wrap.ast-social-color-type-official .ast-yelp .social-item-label{background:0 0;color:#af0606}.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook,.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-facebook,.header-social-inner-wrap.ast-social-color-type-official .ast-facebook .social-item-label{color:#557dbc;background:0 0}.footer-social-inner-wrap.ast-social-color-type-official .ast-imdb,.footer-social-inner-wrap.ast-social-color-type-official .ast-imdb .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-imdb,.header-social-inner-wrap.ast-social-color-type-official .ast-imdb .social-item-label{color:#000;background:#f5c518}.footer-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor,.footer-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor .social-item-label,.header-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor,.header-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor .social-item-label{color:#000;background:#00aa6c}.footer-social-inner-wrap.ast-social-color-type-official .ast-builder-social-element svg,.header-social-inner-wrap.ast-social-color-type-official .ast-builder-social-element svg{fill:currentColor}@media screen and (max-width:921px){.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{right:calc(20px - .907em)}}.ast-mobile-header-content .ast-search-menu-icon,.ast-mobile-header-content .ast-search-menu-icon.slide-search,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.slide-search{width:100%;margin-bottom:1em;margin-top:1em;position:relative;display:block;right:auto;transform:none}.ast-mobile-header-content .ast-search-icon,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-icon{display:none}.ast-mobile-header-content .ast-search-menu-icon .search-form,.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-form,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.slide-search .search-form{right:0;visibility:visible;opacity:1;position:relative;top:auto;transform:none;padding:0;display:block;overflow:hidden}.ast-mobile-header-content .ast-search-menu-icon .search-field,.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-field,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-right:5.5em}.ast-mobile-header-content .ast-search-menu-icon .search-submit,.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;right:0;padding:0 1em;border-radius:0}.ast-header-search .ast-search-menu-icon .search-form .search-field:-ms-input-placeholder{opacity:.5}.ast-header-search .ast-search-menu-icon .search-form .search-field::placeholder{opacity:.5}.site-header-section-left .ast-search-menu-icon.slide-search .search-form{padding-left:3em;padding-right:unset;left:-1em;right:unset}.site-header-section-left .ast-search-menu-icon.slide-search .search-form .search-field{margin-right:unset;margin-left:10px}.ast-above-header-bar.ast-header-sticked{z-index:9}.ast-mobile-header-content .ast-builder-layout-element:not(.ast-builder-menu),.ast-mobile-popup-content .ast-builder-layout-element:not(.ast-builder-menu){margin:15px 20px}@media (min-width:769px){.footer-nav-wrap .astra-footer-horizontal-menu li{margin:0}.footer-nav-wrap .astra-footer-horizontal-menu li:first-child a{padding-left:0}.footer-nav-wrap .astra-footer-horizontal-menu li:last-child a{padding-right:0}.footer-nav-wrap .astra-footer-horizontal-menu a{padding:0 .5em}}.site-header{z-index:99;position:relative}.main-header-container{position:relative}.main-header-bar-wrap{position:relative}.main-header-bar-wrap .nav-fallback-text{float:right}.main-header-bar{background-color:#fff;border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .main-header-bar{border:0}.ast-header-break-point .nav-fallback-text{float:none}.ast-header-break-point .main-header-bar{border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items{padding-left:20px;padding-right:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-header-custom-item .widget:last-child{margin-bottom:1em}.main-header-bar{margin-left:auto;margin-right:auto}.site-logo-img img{transition:all .2s linear}.ast-header-widget-area{line-height:1.65}.ast-header-widget-area .no-widget-text,.ast-header-widget-area .widget-title{margin-bottom:0}.ast-header-widget-area .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-widget-area .widget p{margin-bottom:0}.ast-header-widget-area .widget ul{position:static;border:0;width:auto}.ast-header-widget-area .widget ul a{border:0}.ast-header-widget-area .widget.widget_search .search-field,.ast-header-widget-area .widget.widget_search .search-field:focus{padding:10px 45px 10px 15px}.ast-header-widget-area .widget:last-child{margin-bottom:.5em;margin-right:0}.submenu-with-border .ast-header-widget-area .widget ul{position:static;border:0;width:auto}.submenu-with-border .ast-header-widget-area .widget ul a{border:0}.ast-header-break-point .ast-header-widget-area .widget{margin:.5em 0;display:block}.ast-header-custom-item .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-custom-item .widget p{margin-bottom:0}.ast-header-custom-item .widget li{width:auto}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .astra-megamenu .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .sub-menu{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-custom-item-inside .button-custom-menu-item .menu-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item{padding-left:0;padding-right:0;margin-top:0;margin-bottom:0}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link{display:block}.button-custom-menu-item .ast-custom-button-link .ast-custom-button{font-size:inherit;font-family:inherit;font-weight:inherit}.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover{transition:all .1s ease-in-out}.site-branding{line-height:1;align-self:center}.ast-menu-toggle{display:none;background:0 0;color:inherit;border-style:dotted;border-color:transparent}.ast-menu-toggle:focus,.ast-menu-toggle:hover{background:0 0;border-color:inherit;color:inherit}.ast-menu-toggle:focus{outline:thin dotted}.ast-main-header-nav-open .main-header-bar{padding-bottom:0}.main-header-bar{z-index:4;position:relative}.main-header-bar .main-header-bar-navigation{height:100%}.main-header-bar .main-header-bar-navigation:empty{padding:0}.main-header-bar .main-header-bar-navigation .sub-menu{line-height:1.45}.main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after{content:"\e900";display:inline-block;font-family:Astra;font-size:9px;font-size:.6rem;font-weight:700;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;line-height:normal}.main-header-bar .main-header-bar-navigation .ast-search-icon{display:block;z-index:4;position:relative}.main-header-bar .main-header-bar-navigation.toggle-on{padding-top:1em}.main-header-bar .ast-search-menu-icon .search-form{background-color:#fff}.ast-search-menu-icon.slide-search .search-form{-webkit-backface-visibility:visible;backface-visibility:visible;visibility:hidden;opacity:0;transition:all .2s;position:absolute;z-index:3;right:-1em;top:50%;transform:translateY(-50%)}.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form{visibility:visible;opacity:1}.ast-search-menu-icon .search-form{border:1px solid #e7e7e7;line-height:normal;padding:0 3em 0 0;border-radius:2px;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;color:inherit;background-color:#fff}.ast-search-menu-icon .astra-search-icon{-js-display:flex;display:flex;line-height:normal}.ast-search-menu-icon .astra-search-icon:focus{outline:0}.ast-search-menu-icon .search-field{border:none;background-color:transparent;transition:width .2s;border-radius:inherit;color:inherit;font-size:inherit;width:0;color:#757575}.ast-search-menu-icon .search-submit{display:none;background:0 0;border:none;font-size:1.3em;color:#757575}.ast-search-menu-icon.ast-dropdown-active{visibility:visible;opacity:1;position:relative}.ast-search-menu-icon.ast-dropdown-active .search-field{width:235px}.ast-search-icon{z-index:4;position:relative;line-height:normal}.custom-mobile-logo-link{display:none}.ast-site-identity{padding:1em 0}.ast-header-break-point .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;flex:1;align-self:center}.ast-header-break-point .ast-site-identity{width:100%}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.menu-link:after{display:none}.ast-header-break-point .main-header-bar{display:block;line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation{display:block;width:100%}.ast-header-break-point .main-navigation ul>.menu-item:first-child{border-top:0}.ast-header-break-point .main-navigation ul ul{left:auto;right:auto}.ast-header-break-point .main-navigation .stack-on-mobile li{width:100%}.ast-header-break-point .main-navigation .widget{margin-bottom:1em}.ast-header-break-point .main-navigation .widget li{width:auto}.ast-header-break-point .main-navigation .widget:last-child{margin-bottom:0}.ast-header-break-point .main-header-bar-navigation{width:calc(100% + 40px);margin:0 -20px}.ast-header-break-point .main-header-menu ul ul{top:0}.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link{display:none}.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block}.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg,.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link{display:block}.ast-header-break-point .ast-builder-menu{width:100%}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile{flex-wrap:unset}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded>.sub-menu{display:block;width:150px;position:absolute;right:auto;left:0}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded>.sub-menu .menu-item .ast-menu-toggle{padding:0;right:1em}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded>.sub-menu .menu-link{padding:.1em 1em}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded>.sub-menu>.menu-item>.sub-menu{left:100%;right:auto}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded>.sub-menu>.menu-item .ast-menu-toggle::before{transform:rotate(-90deg)}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded>.sub-menu>.menu-item.ast-submenu-expanded .ast-menu-toggle::before{transform:rotate(-270deg)}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item>.sub-menu>.menu-item .menu-link:before{content:none}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .ast-menu-toggle{right:-10px}.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.stack-on-mobile{flex-wrap:wrap}input[type=email],input[type=number],input[type=password],input[type=reset],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:#666;padding:.75em;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{background-color:#fff;border-color:#eaeaea;box-shadow:none}input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover{box-shadow:none}textarea{width:100%}input[type=search]:focus{outline:thin dotted}input[type=range]{-webkit-appearance:none;width:100%;margin:5.7px 0;padding:0;border:none}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;-webkit-appearance:none;margin-top:-5.7px}input[type=range]:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.2)}input[type=range]::-moz-range-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer}input[type=range]::-ms-track{width:100%;height:8.6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:rgba(199,199,199,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-fill-upper{background:rgba(255,255,255,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;height:8.6px}input[type=range]:focus::-ms-fill-lower{background:rgba(255,255,255,.2)}input[type=range]:focus::-ms-fill-upper{background:rgba(255,255,255,.2)}input[type=color]{border:none;width:100px;padding:0;height:30px;cursor:pointer}input[type=color]::-webkit-color-swatch-wrapper{padding:0;border:none}input[type=color]::-webkit-color-swatch{border:none}.page .entry-header{margin-bottom:1.5em}.search .entry-header{margin-bottom:1em}.ast-single-post .entry-header.ast-header-without-markup,.ast-single-post .entry-header.ast-no-title.ast-no-thumbnail{margin-bottom:0}.entry-header{margin-bottom:1em;word-wrap:break-word}.entry-header+.ast-blog-featured-section{margin-top:.5em}.entry-content{word-wrap:break-word}.entry-content p{margin-bottom:1.6em}.read-more{margin-bottom:0}.read-more .ast-right-arrow{font-size:1em}.ast-no-thumb .ast-blog-featured-section{margin-bottom:0}.ast-no-thumb .entry-header+.ast-blog-featured-section{margin-top:0}.ast-blog-featured-section{margin-bottom:1.5em}.ast-blog-featured-section .gallery{margin-bottom:0}.error404 .page-header{margin-bottom:1.5em}.error404 .page-header .page-title{margin-bottom:0}.archive .entry-title,.blog .entry-title,.search .entry-title{line-height:1.3}.archive .format-aside .entry-title,.archive .format-status .entry-title,.blog .format-aside .entry-title,.blog .format-status .entry-title{display:none}.page-title{margin-bottom:1em;font-weight:400}.entry-title{margin-bottom:.2em}.ast-article-post{margin-bottom:2.5em}.ast-article-post:last-child{margin-bottom:0;border-bottom:0}.search .site-content .content-area .search-form{margin-bottom:3em}.blog-layout-1 .post-thumb{padding-left:0;padding-right:0;position:relative}.blog .posted-on{z-index:1}.ast-blog-featured-section .posted-on{width:5.714285714em;height:5.714285714em;padding:.7em}.ast-blog-featured-section .posted-on .date-month,.ast-blog-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-blog-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-author-box img.avatar{border-radius:50%;margin:0 0 0 20px}.ast-archive-description{margin-bottom:2.5em;padding-bottom:1.3333em;border-bottom:1px solid #eee}.ast-archive-description .ast-archive-title{margin-bottom:4px;font-size:40px;font-size:2.85714rem;font-weight:300}.ast-archive-description p{margin-bottom:0;font-size:20px;font-size:1.42857rem;line-height:1.65;font-weight:300}.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{background-color:#eee;padding-bottom:0;border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-archive-description{margin:0;padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-archive-description{padding:2.14em}}@media (min-width:1201px){.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{margin:0;padding:5em 6.67em 3.33333em}}.single .entry-header{margin-bottom:2em}.single .post-navigation{margin:0;padding:2em 0 0;border-top:1px solid #eee}@media (max-width:768px){.single .post-navigation{padding-top:1.5em}}.single .post-navigation a{margin:2px;display:inline-block;text-align:center;color:#000}@media (min-width:421px){.single .post-navigation .nav-links{-js-display:flex;display:flex}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{flex:auto}}@media (max-width:420px){.single .post-navigation .ast-left-arrow,.single .post-navigation .ast-right-arrow{display:none}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{width:100%}.single .post-navigation .nav-next a,.single .post-navigation .nav-previous a{width:100%}.single .post-navigation .nav-previous{margin-bottom:1em}}.single.ast-page-builder-template .entry-header{padding-left:20px;padding-right:20px}.single .entry-header .ast-single-post-order+.post-thumb img{margin-top:2em;margin-bottom:0}.single .entry-header.ast-no-title .post-thumb+.ast-single-post-order{margin-top:0}.single .entry-header .post-thumb+.ast-single-post-order{margin-top:2em}.single .entry-header .post-thumb img{margin-top:0;margin-bottom:0}.page .has-post-thumbnail .post-thumb img{margin-bottom:1.5em}.post-password-form{text-align:center}@media (max-width:420px){.post-password-form input[type=password]{display:block;margin:10px auto}}.post-password-form input[type=submit]{padding:10px 20px;border-radius:2px}.ast-separate-container .post-navigation{border-top:0;padding-left:3.33333em;padding-right:3.33333em}@media (max-width:420px){.ast-separate-container .post-navigation{padding-left:0;padding-right:0}}@media (max-width:768px){.ast-separate-container .entry-header{margin-bottom:1em}}.ast-page-builder-template.single-post .site-content>.ast-container{max-width:100%}.comments-count-wrapper{padding:2em 0}.comments-count-wrapper .comments-title{font-weight:400;word-wrap:break-word}.ast-comment-list{margin:0;word-wrap:break-word;padding-bottom:.5em;list-style:none}.ast-comment-list li{list-style:none}.ast-comment-list li.depth-1 .ast-comment,.ast-comment-list li.depth-2 .ast-comment{border-bottom:1px solid #eee}.ast-comment-list .children{margin-left:2em}@media (max-width:992px){.ast-comment-list .children{margin-left:1em}}.ast-comment-list .comment-respond{padding:1em 0;border-bottom:1px solid #eee}.ast-comment-list .comment-respond .comment-reply-title{margin-top:0;padding-top:0}.ast-comment-list .comment-respond p{margin-bottom:.5em}.ast-comment-list #cancel-comment-reply-link{white-space:nowrap;font-size:15px;font-size:1rem;margin-left:1em}.ast-comment-list .ast-comment-edit-reply-wrap{-js-display:flex;display:flex;justify-content:flex-end}.ast-comment-list .ast-edit-link{flex:1}.ast-comment-list .comment-awaiting-moderation{margin-bottom:0}.ast-comment{padding:1em 0}.ast-comment-avatar-wrap{float:left;clear:right;margin-right:1.33333em}.ast-comment-avatar-wrap img{border-radius:50%}.ast-comment-meta-wrap{float:left;clear:right;padding:0 0 1.33333em}.ast-comment-content{clear:both}.ast-comment-cite-wrap{text-align:left}.ast-comment-cite-wrap cite{font-style:normal}.comment-reply-title{padding-top:1em;font-weight:400;line-height:1.65}.ast-comment-meta{margin-bottom:.5em}.ast-comment-time .reply,.ast-comment-time .timendate{margin-right:.5em}.comments-area{border-top:1px solid #eee;margin-top:2em}.comments-area .comment-form-comment{width:100%;border:none;margin:0;padding:0}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags{margin-bottom:1.5em}.comments-area .form-submit{margin-bottom:0}.comments-area .ast-comment-formwrap input[type=text],.comments-area textarea#comment{width:100%;border-radius:0;vertical-align:middle;margin-bottom:10px}.comments-area .no-comments{margin-top:.5em;margin-bottom:.5em}.comments-area p.logged-in-as{margin-bottom:1em}.comments-area #wp-comment-cookies-consent{margin-right:10px}.ast-separate-container .comments-count-wrapper{background-color:#fff;padding:2em 6.67em 0}@media (max-width:1200px){.ast-separate-container .comments-count-wrapper{padding:2em 3.34em}}.ast-separate-container .comments-area{border-top:0}.ast-separate-container .ast-comment-list{padding-bottom:0}.ast-separate-container .ast-comment-list li{background-color:#fff}.ast-separate-container .ast-comment-list li.depth-1{padding:4em 6.67em;margin-bottom:2em}@media (max-width:1200px){.ast-separate-container .ast-comment-list li.depth-1{padding:3em 3.34em}}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .children li{padding-bottom:0;padding-top:0;margin-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list .comment-respond{padding-top:0;padding-bottom:1em;background-color:transparent}.ast-separate-container .ast-comment-list .pingback p{margin-bottom:0}.ast-separate-container .ast-comment-list .bypostauthor{padding:2em;margin-bottom:1em}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor{background:0 0;margin-bottom:0;padding-right:0;padding-bottom:0;padding-top:0}.ast-separate-container .ast-comment-list .bypostauthor li{background:0 0;margin-bottom:0;padding:0 0 0 2em}.ast-separate-container .comment-respond{background-color:#fff;padding:4em 6.67em;border-bottom:0}@media (max-width:1200px){.ast-separate-container .comment-respond{padding:3em 2.34em}}.ast-separate-container .comment-reply-title{padding-top:0}.ast-page-builder-template .comments-area{padding-left:20px;padding-right:20px;margin-top:2em;margin-bottom:2em}.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers,.post-navigation a{padding:0 1.5em;height:2.33333em;line-height:calc(2.33333em - 3px)}.post-navigation a{background:0 0;font-size:16px;font-size:1.06666rem}.ast-pagination{display:inline-block;width:100%;padding-top:2em}@media (min-width:993px){.ast-pagination{padding-left:3.33333em;padding-right:3.33333em}}.ast-pagination .page-numbers{display:inline-block;width:2.33333em;height:2.33333em;font-size:16px;font-size:1.06666rem;line-height:calc(2.33333em - 3px);text-align:center}.ast-pagination .nav-links{display:inline-block;width:100%}@media (max-width:420px){.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers{width:100%;text-align:center;margin:0}}.ast-pagination .next.page-numbers,.ast-pagination .next.page-numbers:focus,.ast-pagination .next.page-numbers:visited,.ast-pagination .prev.page-numbers,.ast-pagination .prev.page-numbers:focus,.ast-pagination .prev.page-numbers:visited{display:inline-block;width:auto}@media (min-width:769px){.ast-pagination .next.page-numbers.next,.ast-pagination .next.page-numbers:focus.next,.ast-pagination .next.page-numbers:visited.next,.ast-pagination .prev.page-numbers.next,.ast-pagination .prev.page-numbers:focus.next,.ast-pagination .prev.page-numbers:visited.next{margin-right:0}}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers.dots:focus,.ast-pagination .next.page-numbers.dots:hover,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:focus.dots:focus,.ast-pagination .next.page-numbers:focus.dots:hover,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .next.page-numbers:visited.dots:focus,.ast-pagination .next.page-numbers:visited.dots:hover,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers.dots:focus,.ast-pagination .prev.page-numbers.dots:hover,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:focus.dots:focus,.ast-pagination .prev.page-numbers:focus.dots:hover,.ast-pagination .prev.page-numbers:visited.dots,.ast-pagination .prev.page-numbers:visited.dots:focus,.ast-pagination .prev.page-numbers:visited.dots:hover{border:2px solid #eaeaea;background:0 0}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:visited.dots{cursor:default}.ast-pagination .next.page-numbers{float:right;text-align:right}@media (max-width:768px){.ast-pagination .next.page-numbers .page-navigation{padding-right:0}}@media (max-width:768px){.ast-pagination .prev_next{display:inline-block;width:100%}}.ast-pagination .prev_next .next .ast-right-arrow,.ast-pagination .prev_next .prev .ast-left-arrow{font-size:1em;line-height:1em}@media (min-width:769px){.ast-pagination .prev_next{float:right}}.ast-404-layout-1{text-align:center;margin:4em auto}.ast-404-layout-1 .page-sub-title{font-size:1.5rem;font-weight:700}.ast-404-layout-1 .widget_search{padding-top:.5em}.ast-404-search{margin-top:1.5em}.ast-404-search .widget_search{max-width:370px;margin:0 auto}.ast-separate-container .error-404,.ast-separate-container .no-results{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:3.34em 2.4em}}@media (max-width:768px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 2.14em}}@media (max-width:544px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 1em}}@media (min-width:1201px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:5.34em 6.67em}}.blog-layout-1{width:100%;display:inline-block;padding-bottom:2em;vertical-align:middle;border-bottom:1px solid #eee}.blog-layout-1 .posted-on{left:0}.blog-layout-1 .post-content,.blog-layout-1 .post-thumb{padding-left:0;padding-right:0}.fl-builder-content{clear:both}.fl-theme-builder-archive .fl-post-column>.hentry,.fl-theme-builder-archive .fl-post-gallery-post.hentry{margin:0}.fl-theme-builder-archive h2.fl-post-feed-title{clear:initial}.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width{padding-left:0;padding-right:0}.js_active .vc_row{margin-left:auto;margin-right:auto}.js_active .ast-plain-container.ast-single-post #primary,.js_active .ast-plain-container.ast-single-post .hentry{margin:0;padding-top:0;padding-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:4em}.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:1.5em}}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post #secondary{margin-top:1.5em}}.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;left:0!important}.js_active .ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;left:0!important;padding-right:0!important;padding-left:0!important}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;left:0!important}.elementor-post.elementor-grid-item.hentry{margin-bottom:0}.elementor-element .elementor-wc-products .woocommerce[class*=columns-] ul.products li.product{width:auto;margin:0;float:none}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product{width:auto;margin:0;float:none}.ast-flex{-js-display:flex;display:flex;flex-wrap:wrap}.ast-flex-1{flex:1}.ast-flex-2{flex:2}.ast-flex-3{flex:3}.ast-flex-4{flex:4}.ast-flex-5{flex:5}.ast-inline-flex{-js-display:inline-flex;display:inline-flex;align-items:center;flex-wrap:wrap;align-content:center}.ast-flex-direction-row{flex-direction:row}.ast-flex-direction-row-reverse{flex-direction:row-reverse}.ast-flex-direction-column{flex-direction:column}.ast-flex-direction-column-reverse{flex-direction:column-reverse}.ast-flex-wrap-nowrap{flex-wrap:nowrap}.ast-flex-wrap-wrap{flex-wrap:wrap}.ast-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse}.ast-justify-content-flex-start{justify-content:flex-start}.ast-justify-content-flex-end{justify-content:flex-end}.ast-justify-content-center{justify-content:center}.ast-justify-content-space-between{justify-content:space-between}.ast-justify-content-space-around{justify-content:space-around}.ast-align-items-flex-start{align-items:flex-start}.ast-align-items-flex-end{align-items:flex-end}.ast-align-items-center{align-items:center}.ast-align-items-baseline{align-items:baseline}.ast-align-items-stretch{align-items:stretch}.ast-align-content-flex-start{align-content:flex-start}.ast-align-content-flex-end{align-content:flex-end}.ast-align-content-center{align-content:center}.ast-align-content-space-between{align-content:space-between}.ast-align-content-space-around{align-content:space-around}.ast-align-content-stretch{align-content:stretch}.ast-order-1{order:1}.ast-order-2{order:2}.ast-order-3{order:3}.ast-order-4{order:4}.ast-order-5{order:5}.ast-flex-grow-1{flex-grow:1}.ast-flex-grow-2{flex-grow:2}.ast-flex-grow-3{flex-grow:3}.ast-flex-grow-4{flex-grow:4}.ast-flex-grow-5{flex-grow:5}.ast-flex-shrink-1{flex-shrink:1}.ast-flex-shrink-2{flex-shrink:2}.ast-flex-shrink-3{flex-shrink:3}.ast-flex-shrink-4{flex-shrink:4}.ast-flex-shrink-5{flex-shrink:5}.ast-align-self-auto{align-self:auto}.ast-align-self-flex-start{align-self:flex-start}.ast-align-self-flex-end{align-self:flex-end}.ast-align-self-center{align-self:center}.ast-align-self-baseline{align-self:baseline}.ast-align-self-stretch{align-self:stretch} \ No newline at end of file diff --git a/assets/css/minified/style.min-rtl.css b/assets/css/minified/style.min-rtl.css index fd7cf5c..053134c 100644 --- a/assets/css/minified/style.min-rtl.css +++ b/assets/css/minified/style.min-rtl.css @@ -1,3 +1,3 @@ @charset "UTF-8";a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{border:0;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}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}a{background-color:transparent}a:active{outline:0}a,a:focus,a:hover,a:visited{text-decoration:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}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]{-webkit-appearance:button;cursor:pointer}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-appearance:textfield;box-sizing:content-box}#comments .submit,.search .search-submit{padding:10px 15px;border-radius:2px;line-height:1.85714285714286;border:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #eaeaea;margin:0 0;padding:.35em .625em .75em}legend{border:0;padding:0}fieldset legend{margin-bottom:1.5em;padding:0 .5em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) - */.ast-container{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-right:-20px;margin-left:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-right:20px;padding-left:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:right}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{left:auto}.ast-col-xs-pull-1{left:8.3333333333%}.ast-col-xs-pull-2{left:16.6666666667%}.ast-col-xs-pull-3{left:25%}.ast-col-xs-pull-4{left:33.3333333333%}.ast-col-xs-pull-5{left:41.6666666667%}.ast-col-xs-pull-6{left:50%}.ast-col-xs-pull-7{left:58.3333333333%}.ast-col-xs-pull-8{left:66.6666666667%}.ast-col-xs-pull-9{left:75%}.ast-col-xs-pull-10{left:83.3333333333%}.ast-col-xs-pull-11{left:91.6666666667%}.ast-col-xs-pull-12{left:100%}.ast-col-xs-push-0{right:auto}.ast-col-xs-push-1{right:8.3333333333%}.ast-col-xs-push-2{right:16.6666666667%}.ast-col-xs-push-3{right:25%}.ast-col-xs-push-4{right:33.3333333333%}.ast-col-xs-push-5{right:41.6666666667%}.ast-col-xs-push-6{right:50%}.ast-col-xs-push-7{right:58.3333333333%}.ast-col-xs-push-8{right:66.6666666667%}.ast-col-xs-push-9{right:75%}.ast-col-xs-push-10{right:83.3333333333%}.ast-col-xs-push-11{right:91.6666666667%}.ast-col-xs-push-12{right:100%}.ast-col-xs-offset-0{margin-right:0}.ast-col-xs-offset-1{margin-right:8.3333333333%}.ast-col-xs-offset-2{margin-right:16.6666666667%}.ast-col-xs-offset-3{margin-right:25%}.ast-col-xs-offset-4{margin-right:33.3333333333%}.ast-col-xs-offset-5{margin-right:41.6666666667%}.ast-col-xs-offset-6{margin-right:50%}.ast-col-xs-offset-7{margin-right:58.3333333333%}.ast-col-xs-offset-8{margin-right:66.6666666667%}.ast-col-xs-offset-9{margin-right:75%}.ast-col-xs-offset-10{margin-right:83.3333333333%}.ast-col-xs-offset-11{margin-right:91.6666666667%}.ast-col-xs-offset-12{margin-right:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:right}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{left:auto}.ast-col-sm-pull-1{left:8.3333333333%}.ast-col-sm-pull-2{left:16.6666666667%}.ast-col-sm-pull-3{left:25%}.ast-col-sm-pull-4{left:33.3333333333%}.ast-col-sm-pull-5{left:41.6666666667%}.ast-col-sm-pull-6{left:50%}.ast-col-sm-pull-7{left:58.3333333333%}.ast-col-sm-pull-8{left:66.6666666667%}.ast-col-sm-pull-9{left:75%}.ast-col-sm-pull-10{left:83.3333333333%}.ast-col-sm-pull-11{left:91.6666666667%}.ast-col-sm-pull-12{left:100%}.ast-col-sm-push-0{right:auto}.ast-col-sm-push-1{right:8.3333333333%}.ast-col-sm-push-2{right:16.6666666667%}.ast-col-sm-push-3{right:25%}.ast-col-sm-push-4{right:33.3333333333%}.ast-col-sm-push-5{right:41.6666666667%}.ast-col-sm-push-6{right:50%}.ast-col-sm-push-7{right:58.3333333333%}.ast-col-sm-push-8{right:66.6666666667%}.ast-col-sm-push-9{right:75%}.ast-col-sm-push-10{right:83.3333333333%}.ast-col-sm-push-11{right:91.6666666667%}.ast-col-sm-push-12{right:100%}.ast-col-sm-offset-0{margin-right:0}.ast-col-sm-offset-1{margin-right:8.3333333333%}.ast-col-sm-offset-2{margin-right:16.6666666667%}.ast-col-sm-offset-3{margin-right:25%}.ast-col-sm-offset-4{margin-right:33.3333333333%}.ast-col-sm-offset-5{margin-right:41.6666666667%}.ast-col-sm-offset-6{margin-right:50%}.ast-col-sm-offset-7{margin-right:58.3333333333%}.ast-col-sm-offset-8{margin-right:66.6666666667%}.ast-col-sm-offset-9{margin-right:75%}.ast-col-sm-offset-10{margin-right:83.3333333333%}.ast-col-sm-offset-11{margin-right:91.6666666667%}.ast-col-sm-offset-12{margin-right:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:right}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{left:auto}.ast-col-md-pull-1{left:8.3333333333%}.ast-col-md-pull-2{left:16.6666666667%}.ast-col-md-pull-3{left:25%}.ast-col-md-pull-4{left:33.3333333333%}.ast-col-md-pull-5{left:41.6666666667%}.ast-col-md-pull-6{left:50%}.ast-col-md-pull-7{left:58.3333333333%}.ast-col-md-pull-8{left:66.6666666667%}.ast-col-md-pull-9{left:75%}.ast-col-md-pull-10{left:83.3333333333%}.ast-col-md-pull-11{left:91.6666666667%}.ast-col-md-pull-12{left:100%}.ast-col-md-push-0{right:auto}.ast-col-md-push-1{right:8.3333333333%}.ast-col-md-push-2{right:16.6666666667%}.ast-col-md-push-3{right:25%}.ast-col-md-push-4{right:33.3333333333%}.ast-col-md-push-5{right:41.6666666667%}.ast-col-md-push-6{right:50%}.ast-col-md-push-7{right:58.3333333333%}.ast-col-md-push-8{right:66.6666666667%}.ast-col-md-push-9{right:75%}.ast-col-md-push-10{right:83.3333333333%}.ast-col-md-push-11{right:91.6666666667%}.ast-col-md-push-12{right:100%}.ast-col-md-offset-0{margin-right:0}.ast-col-md-offset-1{margin-right:8.3333333333%}.ast-col-md-offset-2{margin-right:16.6666666667%}.ast-col-md-offset-3{margin-right:25%}.ast-col-md-offset-4{margin-right:33.3333333333%}.ast-col-md-offset-5{margin-right:41.6666666667%}.ast-col-md-offset-6{margin-right:50%}.ast-col-md-offset-7{margin-right:58.3333333333%}.ast-col-md-offset-8{margin-right:66.6666666667%}.ast-col-md-offset-9{margin-right:75%}.ast-col-md-offset-10{margin-right:83.3333333333%}.ast-col-md-offset-11{margin-right:91.6666666667%}.ast-col-md-offset-12{margin-right:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:right}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{left:auto}.ast-col-lg-pull-1{left:8.3333333333%}.ast-col-lg-pull-2{left:16.6666666667%}.ast-col-lg-pull-3{left:25%}.ast-col-lg-pull-4{left:33.3333333333%}.ast-col-lg-pull-5{left:41.6666666667%}.ast-col-lg-pull-6{left:50%}.ast-col-lg-pull-7{left:58.3333333333%}.ast-col-lg-pull-8{left:66.6666666667%}.ast-col-lg-pull-9{left:75%}.ast-col-lg-pull-10{left:83.3333333333%}.ast-col-lg-pull-11{left:91.6666666667%}.ast-col-lg-pull-12{left:100%}.ast-col-lg-push-0{right:auto}.ast-col-lg-push-1{right:8.3333333333%}.ast-col-lg-push-2{right:16.6666666667%}.ast-col-lg-push-3{right:25%}.ast-col-lg-push-4{right:33.3333333333%}.ast-col-lg-push-5{right:41.6666666667%}.ast-col-lg-push-6{right:50%}.ast-col-lg-push-7{right:58.3333333333%}.ast-col-lg-push-8{right:66.6666666667%}.ast-col-lg-push-9{right:75%}.ast-col-lg-push-10{right:83.3333333333%}.ast-col-lg-push-11{right:91.6666666667%}.ast-col-lg-push-12{right:100%}.ast-col-lg-offset-0{margin-right:0}.ast-col-lg-offset-1{margin-right:8.3333333333%}.ast-col-lg-offset-2{margin-right:16.6666666667%}.ast-col-lg-offset-3{margin-right:25%}.ast-col-lg-offset-4{margin-right:33.3333333333%}.ast-col-lg-offset-5{margin-right:41.6666666667%}.ast-col-lg-offset-6{margin-right:50%}.ast-col-lg-offset-7{margin-right:58.3333333333%}.ast-col-lg-offset-8{margin-right:66.6666666667%}.ast-col-lg-offset-9{margin-right:75%}.ast-col-lg-offset-10{margin-right:83.3333333333%}.ast-col-lg-offset-11{margin-right:91.6666666667%}.ast-col-lg-offset-12{margin-right:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:right}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{left:auto}.ast-col-xl-pull-1{left:8.3333333333%}.ast-col-xl-pull-2{left:16.6666666667%}.ast-col-xl-pull-3{left:25%}.ast-col-xl-pull-4{left:33.3333333333%}.ast-col-xl-pull-5{left:41.6666666667%}.ast-col-xl-pull-6{left:50%}.ast-col-xl-pull-7{left:58.3333333333%}.ast-col-xl-pull-8{left:66.6666666667%}.ast-col-xl-pull-9{left:75%}.ast-col-xl-pull-10{left:83.3333333333%}.ast-col-xl-pull-11{left:91.6666666667%}.ast-col-xl-pull-12{left:100%}.ast-col-xl-push-0{right:auto}.ast-col-xl-push-1{right:8.3333333333%}.ast-col-xl-push-2{right:16.6666666667%}.ast-col-xl-push-3{right:25%}.ast-col-xl-push-4{right:33.3333333333%}.ast-col-xl-push-5{right:41.6666666667%}.ast-col-xl-push-6{right:50%}.ast-col-xl-push-7{right:58.3333333333%}.ast-col-xl-push-8{right:66.6666666667%}.ast-col-xl-push-9{right:75%}.ast-col-xl-push-10{right:83.3333333333%}.ast-col-xl-push-11{right:91.6666666667%}.ast-col-xl-push-12{right:100%}.ast-col-xl-offset-0{margin-right:0}.ast-col-xl-offset-1{margin-right:8.3333333333%}.ast-col-xl-offset-2{margin-right:16.6666666667%}.ast-col-xl-offset-3{margin-right:25%}.ast-col-xl-offset-4{margin-right:33.3333333333%}.ast-col-xl-offset-5{margin-right:41.6666666667%}.ast-col-xl-offset-6{margin-right:50%}.ast-col-xl-offset-7{margin-right:58.3333333333%}.ast-col-xl-offset-8{margin-right:66.6666666667%}.ast-col-xl-offset-9{margin-right:75%}.ast-col-xl-offset-10{margin-right:83.3333333333%}.ast-col-xl-offset-11{margin-right:91.6666666667%}.ast-col-xl-offset-12{margin-right:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-right:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 1px 0 0;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:right;border-width:0 0 1px 1px}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-right:3px;width:100%}a{color:#4169e1}a:focus,a:hover{color:#191970}a:focus{outline:thin dotted}a:hover{outline:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:right;margin-left:1.5em}.alignright{display:inline;float:left;margin-right:1.5em}.aligncenter{clear:both;text-align:center;display:block;margin-right:auto;margin-left:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-right:auto;margin-left:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 3em 1.5em 1em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-left:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-left:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;left:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;right:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;right:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.ast-social-icons{list-style-type:none;margin:0}.ast-social-icons li{display:inline-block;padding-left:15px}.ast-social-icons li:last-child{padding-left:0}.ast-social-icons a{display:block}.ast-social-icons i{font-style:normal;font-family:fontawesome;font-weight:400}.ast-social-icons i:before{font-weight:400}.single .entry-content .gallery{margin-right:-10px;margin-left:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;right:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;right:0;width:100%;height:100%}.ast-hidden{display:none!important}body{background-color:#fff}#page{display:block}#primary,#secondary{display:block;position:relative;float:right;width:100%}#primary{margin:4em 0}#secondary{margin:4em 0 2.5em;word-break:break-word;line-height:2}#secondary li{margin-bottom:.25em}#secondary li:last-child{margin-bottom:0}.ast-separate-container{background-color:#f5f5f5}.ast-separate-container #primary{padding:4em 0;margin:0;border:0}.ast-separate-container .site-main>.ast-row{margin-right:0;margin-left:0}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{background-color:#fff;border-bottom:1px solid #eee;margin:0;padding:5.34em 6.67em}.ast-separate-container .blog-layout-1{padding:0;border-bottom:0}.ast-separate-container .ast-article-single{border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{margin:0;padding:3.34em 2.4em}}.ast-page-builder-template .hentry{margin:0}.ast-page-builder-template .site-content>.ast-container{max-width:100%;padding:0}.ast-page-builder-template .site-content #primary{padding:0;margin:0}.ast-page-builder-template .no-results{text-align:center;margin:4em auto}.ast-page-builder-template .ast-pagination{padding:2em}.ast-page-builder-template .entry-header{margin-top:4em;margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail{margin-top:0}.ast-page-builder-template .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}.ast-page-builder-template.ast-left-sidebar #secondary{padding-right:20px}.ast-page-builder-template.ast-right-sidebar #secondary{padding-left:20px}.ast-page-builder-template.single .post-navigation{padding-bottom:2em}.ast-page-builder-template .ast-archive-description{margin-top:4em;margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}@media (min-width:993px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{margin:4em 0;padding:0}.ast-right-sidebar #primary{padding-left:60px}.ast-right-sidebar #secondary{padding-right:60px}.ast-left-sidebar #primary{padding-right:60px}.ast-left-sidebar #secondary{padding-left:60px}}@media (max-width:992px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{padding-right:0;padding-left:0}.ast-right-sidebar #primary{padding-left:30px}.ast-right-sidebar #secondary{padding-right:30px}.ast-left-sidebar #primary{padding-right:30px}.ast-left-sidebar #secondary{padding-left:30px}}.astra-search-icon::before{content:"\e8b6";font-family:Astra;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ast-search-icon .astra-search-icon{font-size:1.3em}.main-navigation{-js-display:inline-flex;display:inline-flex;height:100%}.main-navigation ul{list-style:none;margin:0;padding-right:0;position:relative}.main-header-menu .menu-link,.main-header-menu a{text-decoration:none;padding:0 1em;display:inline-block;transition:all .2s linear}.main-header-menu .menu-item{position:relative}.main-header-menu .menu-item.focus>.sub-menu,.main-header-menu .menu-item:hover>.sub-menu{left:auto;right:0}.main-header-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu:hover>.sub-menu{left:0;right:auto}@media (min-width:769px){.main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{right:-100%}.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu{right:-100%}}.main-header-menu .sub-menu{width:240px;background:#fff;right:-999em;position:absolute;top:100%;z-index:99999}@media (min-width:769px){.main-header-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .sub-menu .menu-item:hover>.sub-menu{right:100%;left:auto}.main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{right:-100%}.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{right:-100%}}.main-header-menu .sub-menu .menu-link{padding:.9em 1em;display:block;word-wrap:break-word}.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;left:1em;top:50%;transform:translate(0,-50%) rotate(-270deg)}.main-header-menu .sub-menu .sub-menu{top:0}.submenu-with-border .sub-menu{border-width:1px;border-style:solid}.submenu-with-border .sub-menu .menu-link{border-width:0 0 1px;border-style:solid}.submenu-with-border .sub-menu .sub-menu{top:-1px}.ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link{border-bottom-width:0}.ast-header-break-point .main-navigation{padding-right:0}.ast-header-break-point .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before{content:"\e900";font-family:Astra;font-size:.65em;text-decoration:inherit;display:inline-block;transform:translate(0,-2px) rotateZ(-270deg);margin-left:5px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link{padding-right:30px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-right:40px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link{padding-right:50px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-right:60px}.ast-header-break-point .ast-header-custom-item,.ast-header-break-point .main-header-menu{background-color:#f9f9f9}.ast-header-break-point .main-header-menu .sub-menu{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto}.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{right:0}.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{right:0}.ast-header-break-point .submenu-with-border .sub-menu{border:0}.ast-mobile-menu-buttons{display:none}.ast-button-wrap{display:inline-block}.ast-button-wrap button{box-shadow:none;border:none}.ast-button-wrap .menu-toggle{padding:0;width:2.2em;height:2.1em;font-size:1.5em;font-weight:400;border-radius:2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:2px;vertical-align:middle;line-height:1.85714285714286}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:0 .5em;width:auto;text-align:center}.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu{font-size:15px;font-size:1rem;font-weight:600}.ast-button-wrap .menu-toggle .menu-toggle-icon{font-style:normal;display:inline-block;vertical-align:middle;line-height:2.05}.ast-button-wrap .menu-toggle .menu-toggle-icon:before{content:"\e5d2";font-family:Astra;text-decoration:inherit}.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before{content:"\e5cd"}.ast-button-wrap .menu-toggle .mobile-menu-wrap{display:inline-block}.ast-button-wrap .menu-toggle:focus{outline:thin dotted}.main-header-bar-navigation{flex:1}.header-main-layout-1 .ast-main-header-bar-alignment{margin-right:auto}.header-main-layout-3 .ast-main-header-bar-alignment{margin-left:auto}#site-navigation{height:100%}.ast-header-break-point .user-select{clear:both}.ast-header-break-point .ast-mobile-menu-buttons{display:block;align-self:center}.ast-header-break-point .main-header-bar-navigation{flex:auto}.ast-header-break-point .ast-main-header-bar-alignment{display:block;width:100%;flex:auto;order:4}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-next,.comment-navigation .nav-previous,.post-navigation .nav-next,.post-navigation .nav-previous,.posts-navigation .nav-next,.posts-navigation .nav-previous{width:50%;display:inline-block}.comment-navigation .nav-next,.post-navigation .nav-next,.posts-navigation .nav-next{text-align:left}.main-header-bar{z-index:1}.header-main-layout-1.ast-primary-menu-disabled .ast-masthead-custom-menu-items{text-align:left}.header-main-layout-1 .main-header-bar-navigation{text-align:left}.header-main-layout-1 .main-header-bar-navigation .sub-menu{text-align:right}.header-main-layout-1 .main-navigation{padding-right:15px;vertical-align:top}.header-main-layout-1 .main-header-container{align-items:stretch}.header-main-layout-2 .main-header-container{display:block}.header-main-layout-2 .site-branding{text-align:center;padding-bottom:1em}.header-main-layout-2 .site-title{justify-content:center}.header-main-layout-2 .main-navigation ul{justify-content:center}.header-main-layout-2 .main-header-bar-navigation{text-align:center}.header-main-layout-2 .main-header-bar-navigation .sub-menu{text-align:right}.header-main-layout-2 .ast-header-custom-item{justify-content:center;line-height:1.85714285714286}.header-main-layout-2 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-2 .widget{text-align:center}.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{-js-display:flex;display:flex;justify-content:center}.ast-header-custom-item-outside .header-main-layout-2 .site-branding{flex:0 0 100%}.header-main-layout-3 .ast-site-identity{text-align:left}.header-main-layout-3 .main-header-container{flex-direction:row-reverse;align-items:stretch}.header-main-layout-3 .main-navigation{padding-left:15px}.header-main-layout-3 .main-navigation ul{justify-content:flex-start}.header-main-layout-3 .main-header-bar-navigation{text-align:right}.header-main-layout-3 .ast-header-custom-item{justify-content:flex-start}.header-main-layout-3 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-3 li .ast-search-icon{padding-right:.5em}.header-main-layout-3 .ast-search-menu-icon{right:0;left:0}.header-main-layout-3 li .ast-search-menu-icon{right:1em;left:0}.header-main-layout-3 .main-header-bar .ast-search-menu-icon .search-form{padding:0 3em 0 0}.header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:-1em;left:auto}.ast-header-break-point .header-main-layout-1 .site-branding{padding-left:1em}.ast-header-break-point .header-main-layout-1 .main-header-bar-navigation{text-align:right}.ast-header-break-point .header-main-layout-1 .main-navigation{padding-right:0}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .site-branding{padding-right:0;padding-left:0;padding-bottom:1em;flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items,.ast-header-break-point .ast-mobile-header-stack .ast-site-identity,.ast-header-break-point .ast-mobile-header-stack .site-branding,.ast-header-break-point .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-title{text-align:right}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{flex:1 1 100%;text-align:center;justify-content:center}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .main-header-container{flex-direction:initial}.ast-header-break-point .header-main-layout-2 .ast-mobile-menu-buttons{-js-display:flex;display:flex;justify-content:center}.ast-header-break-point .header-main-layout-2 .main-header-bar-navigation,.ast-header-break-point .header-main-layout-2 .widget{text-align:right}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-3 .main-header-bar .ast-search-icon{margin-left:auto;margin-right:1em}.ast-header-break-point .header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{left:auto;right:0}.ast-header-break-point .header-main-layout-3.ast-mobile-header-inline .ast-mobile-menu-buttons{justify-content:flex-start}.ast-header-break-point .header-main-layout-3 li .ast-search-menu-icon{right:0}.ast-header-break-point .header-main-layout-3 .site-branding{padding-right:1em;justify-content:flex-end}.ast-header-break-point .header-main-layout-3 .main-navigation{padding-left:0}.ast-logo-title-inline .ast-site-identity{-js-display:inline-flex;display:inline-flex;vertical-align:middle;align-items:center}.ast-logo-title-inline .site-logo-img{padding-left:1em}.ast-logo-title-inline.header-main-layout-2 .site-logo-img+.ast-site-title-wrap .site-title{justify-content:flex-start}@media (max-width:544px){.site-branding img,.site-header .site-logo-img .custom-logo-link img{max-width:100%}.ast-header-custom-item-outside .ast-mobile-header-stack .site-branding{padding-left:0}.ast-header-custom-item-outside .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center;text-align:center;padding-bottom:0}}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{text-align:right}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-title{justify-content:left}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:1em}.ast-header-break-point .ast-mobile-header-inline .main-header-container,.ast-header-break-point .ast-mobile-header-stack .main-header-container{-js-display:flex;display:flex}.site-header{z-index:99;position:relative}.main-header-container{position:relative}.main-header-bar-wrap{position:relative}.main-header-bar-wrap .nav-fallback-text{float:left}.main-header-bar{background-color:#fff;border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .main-header-bar{border:0}.ast-header-break-point .nav-fallback-text{float:none}.ast-header-break-point .main-header-bar{border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items{padding-right:20px;padding-left:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-header-custom-item .widget:last-child{margin-bottom:1em}.main-header-bar{margin-right:auto;margin-left:auto}.site-logo-img img{transition:all .2s linear}.ast-header-widget-area{line-height:1.65}.ast-header-widget-area .no-widget-text,.ast-header-widget-area .widget-title{margin-bottom:0}.ast-header-widget-area .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-widget-area .widget p{margin-bottom:0}.ast-header-widget-area .widget ul{position:static;border:0;width:auto}.ast-header-widget-area .widget ul a{border:0}.ast-header-widget-area .widget.widget_search .search-field,.ast-header-widget-area .widget.widget_search .search-field:focus{padding:10px 15px 10px 45px}.ast-header-widget-area .widget:last-child{margin-bottom:.5em;margin-left:0}.submenu-with-border .ast-header-widget-area .widget ul{position:static;border:0;width:auto}.submenu-with-border .ast-header-widget-area .widget ul a{border:0}.ast-header-break-point .ast-header-widget-area .widget{margin:.5em 0;display:block}.ast-header-custom-item .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-custom-item .widget p{margin-bottom:0}.ast-header-custom-item .widget li{width:auto}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .astra-megamenu .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .sub-menu{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-custom-item-inside .button-custom-menu-item .menu-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item{padding-right:0;padding-left:0;margin-top:0;margin-bottom:0}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link{display:block}.button-custom-menu-item .ast-custom-button-link .ast-custom-button{font-size:inherit;font-family:inherit;font-weight:inherit}.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover{transition:all .1s ease-in-out}.nav-style{display:block;padding:0 15px}.site-branding{line-height:1;align-self:center}.ast-no-menu-items .main-navigation{display:none}.ast-menu-toggle{display:none;background:0 0;color:inherit;border-style:dotted;border-color:transparent}.ast-menu-toggle:focus,.ast-menu-toggle:hover{background:0 0;border-color:inherit;color:inherit}.ast-menu-toggle:focus{outline:thin dotted}.socil-font{float:right;margin-left:10px}.ast-main-header-nav-open .main-header-bar{padding-bottom:0}.main-header-bar{z-index:4;position:relative;line-height:4}.main-header-bar .main-header-bar-navigation{height:100%}.main-header-bar .main-header-bar-navigation:empty{padding:0}.main-header-bar .main-header-bar-navigation .sub-menu{line-height:1.45}.main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after{content:"\e900";display:inline-block;font-family:Astra;font-size:9px;font-size:.6rem;font-weight:700;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:10px;line-height:normal}.main-header-bar .main-header-bar-navigation .ast-search-icon{display:block;z-index:4;position:relative}.main-header-bar .main-header-bar-navigation.toggle-on{padding-top:1em}.main-header-bar .ast-search-menu-icon .search-form{background-color:#fff}.ast-primary-menu-disabled .main-header-bar .main-header-bar-navigation.toggle-on{padding-top:0}.ast-flyout-menu-enable .main-header-bar .ast-masthead-custom-menu-items .ast-custom-button-link{border:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{visibility:visible;opacity:1;position:relative;left:auto;top:auto;transform:none}.ast-above-header-section .user-select .ast-dropdown-active .slide-search.astra-search-icon,.ast-masthead-custom-menu-items .ast-dropdown-active .slide-search.astra-search-icon,.below-header-user-select .ast-dropdown-active .slide-search.astra-search-icon{color:#757575}.ast-search-menu-icon.slide-search .search-form{-webkit-backface-visibility:visible;backface-visibility:visible;visibility:hidden;opacity:0;transition:all .2s;position:absolute;z-index:3;left:-1em;top:50%;transform:translateY(-50%)}.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form{visibility:visible;opacity:1}.ast-search-menu-icon .search-form{border:1px solid #e7e7e7;line-height:normal;padding:0 0 0 3em;border-radius:2px;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;color:inherit;background-color:#fff}.ast-search-menu-icon .astra-search-icon{-js-display:flex;display:flex;line-height:normal}.ast-search-menu-icon .astra-search-icon:focus{outline:0}.ast-search-menu-icon .search-field{border:none;background-color:transparent;transition:width .2s;border-radius:inherit;color:inherit;font-size:inherit;width:0;color:#757575}.ast-search-menu-icon .search-submit{display:none;background:0 0;border:none;font-size:1.3em;color:#757575}.ast-search-menu-icon.ast-dropdown-active{visibility:visible;opacity:1;position:relative}.ast-search-menu-icon.ast-dropdown-active .search-field{width:235px}li.ast-masthead-custom-menu-items{padding:0 1em}li.ast-masthead-custom-menu-items a{padding-right:0;padding-left:0;vertical-align:middle}li.ast-masthead-custom-menu-items a,li.ast-masthead-custom-menu-items a:focus,li.ast-masthead-custom-menu-items a:hover{background:0 0}li.ast-masthead-custom-menu-items .ast-search-icon .astra-search-icon{line-height:1}.ast-search-icon{z-index:4;position:relative;line-height:normal}.ast-primary-menu-disabled.ast-mobile-header-inline .ast-masthead-custom-menu-items{text-align:left}.ast-primary-menu-disabled .ast-masthead-custom-menu-items{flex:1}.ast-primary-menu-disabled.header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-primary-menu-disabled.header-main-layout-3 .ast-masthead-custom-menu-items{text-align:right}.ast-masthead-custom-menu-items{padding:0 1em}.search-custom-menu-item{position:relative}.custom-mobile-logo-link{display:none}.ast-site-identity{padding:1em 0}.ast-header-break-point .ast-mobile-header-stack .site-description{text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-description{text-align:right}.ast-header-break-point.ast-header-custom-item-outside .ast-primary-menu-disabled .ast-mobile-menu-buttons{display:none}.ast-header-break-point .ast-hide-custom-menu-mobile .ast-masthead-custom-menu-items{display:none}.ast-header-break-point .ast-mobile-header-inline .site-branding{text-align:right;padding-bottom:0}.ast-header-break-point .ast-mobile-header-inline.header-main-layout-3 .site-branding{text-align:left}.ast-header-break-point .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;flex:1;align-self:center}.ast-header-break-point ul li.ast-masthead-custom-menu-items a{padding:0;display:inline-block;width:auto;border:0}.ast-header-break-point li.ast-masthead-custom-menu-items{padding-right:20px;padding-left:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-site-identity{width:100%}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.menu-link:after{display:none}.ast-header-break-point .main-header-bar{display:block;line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation{line-height:3;display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;left:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point.ast-header-custom-item-inside .ast-search-menu-icon{position:relative;display:block;left:auto;transform:none}.ast-header-break-point .main-navigation{display:block;width:100%}.ast-header-break-point .main-navigation ul>.menu-item:first-child{border-top:0}.ast-header-break-point .main-navigation ul ul{right:auto;left:auto}.ast-header-break-point .main-navigation li{width:100%}.ast-header-break-point .main-navigation .widget{margin-bottom:1em}.ast-header-break-point .main-navigation .widget li{width:auto}.ast-header-break-point .main-navigation .widget:last-child{margin-bottom:0}.ast-header-break-point .main-header-bar-navigation{width:calc(100% + 40px);margin:0 -20px}.ast-header-break-point .main-header-menu ul ul{top:0}.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link{display:none}.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block}.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg,.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link{display:block}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-menu-buttons{order:2}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar-navigation{order:3}.ast-header-break-point.ast-header-custom-item-outside .ast-masthead-custom-menu-items{order:1}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-mobile-menu-buttons,.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{-js-display:flex;display:flex}.ast-header-break-point.ast-header-custom-item-outside.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:0}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-site-identity{width:100%}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-3 .ast-site-identity{width:auto}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-2 .site-branding{flex:1 1 auto}@media (max-width:544px){.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{width:100%}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center}.ast-header-break-point .ast-mobile-header-stack .main-header-bar-wrap .site-branding{flex:1 1 auto}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-2 .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-1 .site-branding{padding-bottom:0}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{padding:.8em 1em 0 1em;text-align:center;width:100%}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-masthead-custom-menu-items,.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-mobile-menu-buttons{padding-top:.8em}}.customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-display-site-title button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-astra-settings-display-site-tagline button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:none}.site-logo-img:hover .customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:none}.main-navigation:hover .customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:inline-block}.ast-primary-sticky-header-active .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{right:100px}.ast-primary-sticky-header-active.ast-full-width-header .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{right:5px}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav .customize-partial-edit-shortcut-button{top:15px}.ast-masthead-custom-menu-items.search-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{right:-30px;top:-7px;display:none}.ast-masthead-custom-menu-items.search-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.button-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{top:-14px;display:none}.ast-masthead-custom-menu-items.button-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.text-html-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{right:-30px;top:15px;display:none}.ast-masthead-custom-menu-items.text-html-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.widget-custom-menu-item{text-align:right}.ast-masthead-custom-menu-items.widget-custom-menu-item .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{right:-25px;top:-8px;display:none}.ast-masthead-custom-menu-items.widget-custom-menu-item:hover .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{top:-20px;right:-25px;display:none}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-below-header .below-header-user-select .ast-search-menu-icon,.ast-below-header .below-header-user-select .ast-site-header-cart,.ast-below-header .below-header-user-select.below-header-widget{text-align:right}.ast-below-header .customize-partial-edit-shortcut{top:1em}.ast-above-header-section .user-select .ast-search-menu-icon{text-align:right}.ast-above-header .customize-partial-edit-shortcut{top:.3em}.ast-above-header-section-1 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{right:-14px}.ast-above-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-1-search-box-type .customize-partial-edit-shortcut-button{right:-25px;top:-10px}.ast-above-header-section-1.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{right:-25px;top:-15px}.ast-above-header-section-1 .customize-partial-edit-shortcut-astra-settings-above-header-section-1-html .customize-partial-edit-shortcut-button{right:-25px}.ast-above-header-section-2 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{right:-14px}.ast-above-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;right:-25px}.ast-above-header-section-2.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-1.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{right:-14px}.below-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-1-search-box-type .customize-partial-edit-shortcut-button{top:-10px;right:-25px}.below-header-section-1 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-1 .customize-partial-edit-shortcut-astra-settings-below-header-section-1-html .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-2.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{right:-14px}.below-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;right:-25px}.below-header-section-2 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-2 .customize-partial-edit-shortcut-astra-settings-below-header-section-2-html .customize-partial-edit-shortcut-button{right:-25px}.customize-partial-edit-shortcut-astra-settings-above-header-layout .customize-partial-edit-shortcut-button,.customize-partial-edit-shortcut-astra-settings-below-header-layout .customize-partial-edit-shortcut-button{right:-60px}.ast-header-break-point .ast-mobile-menu-buttons{text-align:left;-js-display:flex;display:flex;justify-content:flex-end}.ast-header-break-point .ast-mobile-menu-buttons .ast-button-wrap .ast-mobile-menu-buttons-minimal{font-size:1.7em}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.group-blog .byline,.single .byline{display:inline}.page-links{clear:both;margin-top:1em}.page-links a{display:inline-block}.page-links a .page-link{border-color:#eaeaea;background:0 0}.page-links .page-link{padding:0;margin:0 .3em .3em 0;border:2px solid #eaeaea;color:#000;background:0 0;font-size:.8em;width:2.5em;height:2.5em;line-height:calc(2.5em - 4px);display:inline-block;text-align:center;transition:all .2s linear}.page-links .page-link:focus,.page-links .page-link:hover{color:#000}@media (max-width:768px){.page-links .page-link{margin-bottom:6px}}.entry-content>:last-child,.entry-summary>:last-child,.page-content>:last-child{margin-bottom:0}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}.ast-no-sidebar .entry-content .alignfull{margin-right:calc(-50vw + 50%);margin-left:calc(-50vw + 50%);max-width:100vw;width:100vw}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide{width:100%;margin-right:auto;margin-left:auto}.ast-no-sidebar .entry-content .alignwide{margin-right:-100px;margin-left:-100px;max-width:unset;width:unset}.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide{width:100%;margin-right:auto;margin-left:auto}.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{margin-right:auto;margin-left:auto;width:100%}.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-6.67em;margin-left:-6.67em;width:auto}@media (max-width:1200px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-2.4em;margin-left:-2.4em}}@media (max-width:768px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-2.14em;margin-left:-2.14em}}@media (max-width:544px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-1em;margin-left:-1em}}.ast-no-sidebar.ast-separate-container .entry-content .alignwide{margin-right:-20px;margin-left:-20px}.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide{margin-right:auto;margin-left:auto;width:100%}.blocks-gallery-grid,.wp-block-gallery{margin:0}.wp-block-separator{max-width:100px}.wp-block-separator.is-style-wide{max-width:none}.entry-content .has-2-columns .wp-block-column:first-child{padding-left:10px}.entry-content .has-2-columns .wp-block-column:last-child{padding-right:10px}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{flex-basis:100%}.entry-content .has-2-columns .wp-block-column:first-child{padding-left:0}.entry-content .has-2-columns .wp-block-column:last-child{padding-right:0}}body{overflow-x:hidden}body .entry-content .wp-block-latest-posts{margin-right:0}body .entry-content .wp-block-latest-posts li{list-style:none}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts{margin-right:0}.ast-header-break-point .entry-content .alignwide{margin-right:auto;margin-left:auto}.entry-content .blocks-gallery-item img{margin-bottom:auto}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide{margin-right:0;margin-left:0}.widget-title{font-weight:400;margin-bottom:1em;line-height:1.5}.widget{margin:0 0 2.8em 0}.widget:last-child{margin-bottom:0}.widget select{max-width:100%}.widget ul{margin:0;list-style-type:none}.widget_nav_menu ul ul.sub-menu{margin-top:.25em}.widget_nav_menu ul ul.sub-menu li{padding-right:20px}.widget_nav_menu ul ul.sub-menu a:after{right:-20px}.widget_nav_menu ul ul.sub-menu ul a:after{right:-40px}.widget_nav_menu ul ul.sub-menu ul ul a:after{right:-60px}.widget_nav_menu li{transition:all .2s linear}.widget_search .search-form{position:relative;padding:0;background:initial;color:inherit}.widget_search .search-form:after{font-family:Astra;font-size:1.2em;font-weight:400;content:"\e8b6";position:absolute;top:50%;left:15px;transform:translate(0,-50%)}.widget_search .search-form>label{position:relative}.widget_search .search-form input[type=submit],.widget_search .search-form input[type=submit]:focus,.widget_search .search-form input[type=submit]:hover{padding:13px 20px;border-radius:2px;border:none;top:0;left:0;position:absolute;color:transparent;background:0 0;max-width:45px;z-index:2}.widget_search .search-form .search-field{background:#fafafa;border-width:1px;border-color:#eaeaea;border-radius:2px}.widget_search .search-field,.widget_search .search-field:focus{width:100%;padding:16px 15px 16px 45px}.widget_archive ul.children,.widget_categories ul.children,.widget_pages ul.children{position:relative;margin-top:5px;width:100%}.widget_archive ul.children li,.widget_categories ul.children li,.widget_pages ul.children li{padding-right:20px}.widget_archive li ul.children a:after,.widget_categories li ul.children a:after,.widget_pages li ul.children a:after{right:-20px}.widget_archive li ul.children ul a:after,.widget_categories li ul.children ul a:after,.widget_pages li ul.children ul a:after{right:-40px}.widget_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.widget_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-left:4px;line-height:1.5;transition:all .2s linear}.widget_calendar table,.widget_calendar td,.widget_calendar th{padding:0;text-align:center}.widget_calendar table,.widget_calendar th{border:none}.widget_calendar td{border-left:none;border-right:none}.widget_calendar caption{line-height:2.7em}.widget_calendar thead{line-height:2.5em}.widget_calendar thead a{color:#0274be;font-size:1rem;vertical-align:middle}.widget_calendar thead td{vertical-align:middle;font-weight:700}.widget_calendar thead>tr>th{line-height:2.5em;border-bottom:2px solid #eaeaea;border-top:2px solid #eaeaea}.widget_calendar tbody{line-height:2.1em;text-align:center}.widget_calendar tbody>tr>td{width:14.2857%}.widget_calendar tbody>tr:first-child>td{padding-top:3px}.widget_calendar #today{background:#0274be}.ast-separate-container.ast-two-container #secondary .widget{background-color:#fff;padding:2em;margin-bottom:2em}.ast-footer-overlay{background-color:#3a3a3a;padding-top:2em;padding-bottom:2em}@media (min-width:769px){.ast-footer-overlay{padding-top:2.66666em;padding-bottom:2.66666em}}.ast-small-footer{line-height:1.85714285714286;position:relative}.ast-small-footer .nav-menu a{padding:0 .5em}.ast-small-footer .no-widget-text,.ast-small-footer .widget-title{margin-bottom:0}.ast-small-footer .widget{margin-bottom:1em}.ast-small-footer .widget ul{position:static;border:0;width:auto}.ast-small-footer .widget ul a{border:0}.ast-small-footer .widget:last-child{margin-bottom:0}@media (min-width:769px){.ast-small-footer .nav-menu li{margin:0}.ast-small-footer .nav-menu li:first-child a{padding-right:0}.ast-small-footer .nav-menu li:last-child a{padding-left:0}}.ast-footer-site-title .customize-partial-edit-shortcut-button{display:none}.footer-sml-layout-1{text-align:center}.footer-sml-layout-1 .ast-small-footer-section-2{margin-top:1em}.footer-sml-layout-2 .ast-small-footer-section-1,.footer-sml-layout-2 .ast-small-footer-section-2{text-align:center}@media (min-width:769px){.footer-sml-layout-2 .ast-small-footer-section-1{text-align:right}.footer-sml-layout-2 .ast-small-footer-section-1 .menu-item .menu-link{padding:0 0 0 1em}.footer-sml-layout-2 .ast-small-footer-section-2{text-align:left}.footer-sml-layout-2 .ast-small-footer-section-2 .menu-item .menu-link{padding:0 1em 0 0}}@media (max-width:768px){.ast-header-break-point .footer-sml-layout-2 .ast-small-footer-section-2{margin-top:1em}}@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0){.ast-small-footer-wrap .ast-row:before{display:block}}.site-footer{color:#fff}.site-footer .widget-title{color:#eaeaea}.site-footer a{color:#eaeaea}.site-footer a:focus,.site-footer a:hover{color:#fff}.site-footer ul{margin:0;list-style-type:none}.site-footer .nav-menu li{display:inline-block}.footer-adv-overlay{background-color:#3a3a3a;padding-top:70px;padding-bottom:70px}.footer-adv p:last-child{margin-bottom:0}.footer-adv .widget_calendar table{margin-bottom:0}@media all and (max-width:768px){.footer-adv-widget-1 .widget:last-child{margin:0 0 2.8em}}.footer-adv .ast-no-widget-row .widget-title{text-transform:capitalize}@media all and (max-width:768px){.footer-adv-layout-4 .footer-adv-widget-2 .widget:last-child,.footer-adv-layout-4 .footer-adv-widget-3 .widget:last-child{margin:0 0 2.8em}}input[type=email],input[type=number],input[type=password],input[type=reset],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:#666;padding:.75em;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{background-color:#fff;border-color:#eaeaea;box-shadow:none}input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover{box-shadow:none}textarea{width:100%}input[type=search]:focus{outline:thin dotted}input[type=range]{-webkit-appearance:none;width:100%;margin:5.7px 0;padding:0;border:none}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:8.6px;cursor:pointer;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;-webkit-appearance:none;margin-top:-5.7px}input[type=range]:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.2)}input[type=range]::-moz-range-track{width:100%;height:8.6px;cursor:pointer;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer}input[type=range]::-ms-track{width:100%;height:8.6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:rgba(199,199,199,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-fill-upper{background:rgba(255,255,255,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;height:8.6px}input[type=range]:focus::-ms-fill-lower{background:rgba(255,255,255,.2)}input[type=range]:focus::-ms-fill-upper{background:rgba(255,255,255,.2)}input[type=color]{border:none;width:100px;padding:0;height:30px;cursor:pointer}input[type=color]::-webkit-color-swatch-wrapper{padding:0;border:none}input[type=color]::-webkit-color-swatch{border:none}.page .entry-header{margin-bottom:1.5em}.search .entry-header{margin-bottom:1em}.ast-single-post .entry-header.ast-header-without-markup,.ast-single-post .entry-header.ast-no-title.ast-no-thumbnail{margin-bottom:0}.entry-header{margin-bottom:1em;word-wrap:break-word}.entry-header+.ast-blog-featured-section{margin-top:.5em}.entry-content{word-wrap:break-word}.entry-content p{margin-bottom:1.6em}.read-more{margin-bottom:0}.read-more .ast-right-arrow{font-size:1em}.ast-no-thumb .ast-blog-featured-section{margin-bottom:0}.ast-no-thumb .entry-header+.ast-blog-featured-section{margin-top:0}.ast-blog-featured-section{margin-bottom:1.5em}.ast-blog-featured-section .gallery{margin-bottom:0}.error404 .page-header{margin-bottom:1.5em}.error404 .page-header .page-title{margin-bottom:0}.archive .entry-title,.blog .entry-title,.search .entry-title{line-height:1.3}.archive .format-aside .entry-title,.archive .format-status .entry-title,.blog .format-aside .entry-title,.blog .format-status .entry-title{display:none}.page-title{margin-bottom:1em;font-weight:400}.entry-title{margin-bottom:.2em}.ast-article-post{margin-bottom:2.5em}.ast-article-post:last-child{margin-bottom:0;border-bottom:0}.search .site-content .content-area .search-form{margin-bottom:3em}.blog-layout-1 .post-thumb{padding-right:0;padding-left:0;position:relative}.blog .posted-on{z-index:1}.ast-blog-featured-section .posted-on{width:5.714285714em;height:5.714285714em;padding:.7em}.ast-blog-featured-section .posted-on .date-month,.ast-blog-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-blog-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-author-box img.avatar{border-radius:50%;margin:0 20px 0 0}.ast-archive-description{margin-bottom:2.5em;padding-bottom:1.3333em;border-bottom:1px solid #eee}.ast-archive-description .ast-archive-title{margin-bottom:4px;font-size:40px;font-size:2.85714rem;font-weight:300}.ast-archive-description p{margin-bottom:0;font-size:20px;font-size:1.42857rem;line-height:1.65;font-weight:300}.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{background-color:#eee;padding-bottom:0;border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-archive-description{margin:0;padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-archive-description{padding:2.14em}}@media (min-width:1201px){.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{margin:0;padding:5em 6.67em 3.33333em}}.single .entry-header{margin-bottom:2em}.single .post-navigation{margin:0;padding:2em 0 0;border-top:1px solid #eee}@media (max-width:768px){.single .post-navigation{padding-top:1.5em}}.single .post-navigation a{margin:2px;display:inline-block;text-align:center;color:#000}@media (min-width:421px){.single .post-navigation .nav-links{-js-display:flex;display:flex}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{flex:auto}}@media (max-width:420px){.single .post-navigation .ast-left-arrow,.single .post-navigation .ast-right-arrow{display:none}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{width:100%}.single .post-navigation .nav-next a,.single .post-navigation .nav-previous a{width:100%}.single .post-navigation .nav-previous{margin-bottom:1em}}.single.ast-page-builder-template .entry-header{padding-right:20px;padding-left:20px}.single .entry-header .ast-single-post-order+.post-thumb img{margin-top:2em;margin-bottom:0}.single .entry-header.ast-no-title .post-thumb+.ast-single-post-order{margin-top:0}.single .entry-header .post-thumb+.ast-single-post-order{margin-top:2em}.single .entry-header .post-thumb img{margin-top:0;margin-bottom:0}.page .has-post-thumbnail .post-thumb img{margin-bottom:1.5em}.post-password-form{text-align:center}@media (max-width:420px){.post-password-form input[type=password]{display:block;margin:10px auto}}.post-password-form input[type=submit]{padding:10px 20px;border-radius:2px}.ast-separate-container .post-navigation{border-top:0;padding-right:3.33333em;padding-left:3.33333em}@media (max-width:420px){.ast-separate-container .post-navigation{padding-right:0;padding-left:0}}@media (max-width:768px){.ast-separate-container .entry-header{margin-bottom:1em}}.ast-page-builder-template.single-post .site-content>.ast-container{max-width:100%}.comments-count-wrapper{padding:2em 0}.comments-count-wrapper .comments-title{font-weight:400;word-wrap:break-word}.ast-comment-list{margin:0;word-wrap:break-word;padding-bottom:.5em;list-style:none}.ast-comment-list li{list-style:none}.ast-comment-list li.depth-1 .ast-comment,.ast-comment-list li.depth-2 .ast-comment{border-bottom:1px solid #eee}.ast-comment-list .children{margin-right:2em}@media (max-width:992px){.ast-comment-list .children{margin-right:1em}}.ast-comment-list .comment-respond{padding:1em 0;border-bottom:1px solid #eee}.ast-comment-list .comment-respond .comment-reply-title{margin-top:0;padding-top:0}.ast-comment-list .comment-respond p{margin-bottom:.5em}.ast-comment-list #cancel-comment-reply-link{white-space:nowrap;font-size:15px;font-size:1rem;margin-right:1em}.ast-comment-list .ast-comment-edit-reply-wrap{-js-display:flex;display:flex;justify-content:flex-end}.ast-comment-list .ast-edit-link{flex:1}.ast-comment-list .comment-awaiting-moderation{margin-bottom:0}.ast-comment{padding:1em 0}.ast-comment-avatar-wrap{float:right;clear:left;margin-left:1.33333em}.ast-comment-avatar-wrap img{border-radius:50%}.ast-comment-meta-wrap{float:right;clear:left;padding:0 0 1.33333em}.ast-comment-content{clear:both}.ast-comment-cite-wrap{text-align:right}.ast-comment-cite-wrap cite{font-style:normal}.comment-reply-title{padding-top:1em;font-weight:400;line-height:1.65}.ast-comment-meta{margin-bottom:.5em}.ast-comment-time .reply,.ast-comment-time .timendate{margin-left:.5em}.comments-area{border-top:1px solid #eee;margin-top:2em}.comments-area .comment-form-comment{width:100%;border:none;margin:0;padding:0}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags{margin-bottom:1.5em}.comments-area .form-submit{margin-bottom:0}.comments-area .ast-comment-formwrap input[type=text],.comments-area textarea#comment{width:100%;border-radius:0;vertical-align:middle;margin-bottom:10px}.comments-area .no-comments{margin-top:.5em;margin-bottom:.5em}.comments-area p.logged-in-as{margin-bottom:1em}.comments-area #wp-comment-cookies-consent{margin-left:10px}.ast-separate-container .comments-count-wrapper{background-color:#fff;padding:2em 6.67em 0}@media (max-width:1200px){.ast-separate-container .comments-count-wrapper{padding:2em 3.34em}}.ast-separate-container .comments-area{border-top:0}.ast-separate-container .ast-comment-list{padding-bottom:0}.ast-separate-container .ast-comment-list li{background-color:#fff}.ast-separate-container .ast-comment-list li.depth-1{padding:4em 6.67em;margin-bottom:2em}@media (max-width:1200px){.ast-separate-container .ast-comment-list li.depth-1{padding:3em 3.34em}}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .children li{padding-bottom:0;padding-top:0;margin-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list .comment-respond{padding-top:0;padding-bottom:1em;background-color:transparent}.ast-separate-container .ast-comment-list .pingback p{margin-bottom:0}.ast-separate-container .ast-comment-list .bypostauthor{padding:2em;margin-bottom:1em}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor{background:0 0;margin-bottom:0;padding-left:0;padding-bottom:0;padding-top:0}.ast-separate-container .ast-comment-list .bypostauthor li{background:0 0;margin-bottom:0;padding:0 2em 0 0}.ast-separate-container .comment-respond{background-color:#fff;padding:4em 6.67em;border-bottom:0}@media (max-width:1200px){.ast-separate-container .comment-respond{padding:3em 2.34em}}.ast-separate-container .comment-reply-title{padding-top:0}.ast-page-builder-template .comments-area{padding-right:20px;padding-left:20px;margin-top:2em;margin-bottom:2em}.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers,.post-navigation a{padding:0 1.5em;height:2.33333em;line-height:calc(2.33333em - 3px)}.post-navigation a{background:0 0;font-size:16px;font-size:1.06666rem}.ast-pagination{display:inline-block;width:100%;padding-top:2em}@media (min-width:993px){.ast-pagination{padding-right:3.33333em;padding-left:3.33333em}}.ast-pagination .page-numbers{display:inline-block;width:2.33333em;height:2.33333em;font-size:16px;font-size:1.06666rem;line-height:calc(2.33333em - 3px);text-align:center}.ast-pagination .nav-links{display:inline-block;width:100%}@media (max-width:420px){.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers{width:100%;text-align:center;margin:0}}.ast-pagination .next.page-numbers,.ast-pagination .next.page-numbers:focus,.ast-pagination .next.page-numbers:visited,.ast-pagination .prev.page-numbers,.ast-pagination .prev.page-numbers:focus,.ast-pagination .prev.page-numbers:visited{display:inline-block;width:auto}@media (min-width:769px){.ast-pagination .next.page-numbers.next,.ast-pagination .next.page-numbers:focus.next,.ast-pagination .next.page-numbers:visited.next,.ast-pagination .prev.page-numbers.next,.ast-pagination .prev.page-numbers:focus.next,.ast-pagination .prev.page-numbers:visited.next{margin-left:0}}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers.dots:focus,.ast-pagination .next.page-numbers.dots:hover,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:focus.dots:focus,.ast-pagination .next.page-numbers:focus.dots:hover,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .next.page-numbers:visited.dots:focus,.ast-pagination .next.page-numbers:visited.dots:hover,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers.dots:focus,.ast-pagination .prev.page-numbers.dots:hover,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:focus.dots:focus,.ast-pagination .prev.page-numbers:focus.dots:hover,.ast-pagination .prev.page-numbers:visited.dots,.ast-pagination .prev.page-numbers:visited.dots:focus,.ast-pagination .prev.page-numbers:visited.dots:hover{border:2px solid #eaeaea;background:0 0}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:visited.dots{cursor:default}.ast-pagination .next.page-numbers{float:left;text-align:left}@media (max-width:768px){.ast-pagination .next.page-numbers .page-navigation{padding-left:0}}@media (max-width:768px){.ast-pagination .prev_next{display:inline-block;width:100%}}.ast-pagination .prev_next .next .ast-right-arrow,.ast-pagination .prev_next .prev .ast-left-arrow{font-size:1em;line-height:1em}@media (min-width:769px){.ast-pagination .prev_next{float:left}}.ast-404-layout-1{text-align:center;margin:4em auto}.ast-404-layout-1 .page-sub-title{font-size:1.5rem;font-weight:700}.ast-404-layout-1 .widget_search{padding-top:.5em}.ast-404-search{margin-top:1.5em}.ast-404-search .widget_search{max-width:370px;margin:0 auto}.ast-separate-container .error-404,.ast-separate-container .no-results{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:3.34em 2.4em}}@media (max-width:768px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 2.14em}}@media (max-width:544px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 1em}}@media (min-width:1201px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:5.34em 6.67em}}.blog-layout-1{width:100%;display:inline-block;padding-bottom:2em;vertical-align:middle;border-bottom:1px solid #eee}.blog-layout-1 .posted-on{right:0}.blog-layout-1 .post-content,.blog-layout-1 .post-thumb{padding-right:0;padding-left:0}.fl-builder-content{clear:both}.fl-theme-builder-archive .fl-post-column>.hentry,.fl-theme-builder-archive .fl-post-gallery-post.hentry{margin:0}.fl-theme-builder-archive h2.fl-post-feed-title{clear:initial}.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width{padding-right:0;padding-left:0}.js_active .vc_row{margin-right:auto;margin-left:auto}.js_active .ast-plain-container.ast-single-post #primary,.js_active .ast-plain-container.ast-single-post .hentry{margin:0;padding-top:0;padding-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:4em}.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:1.5em}}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post #secondary{margin-top:1.5em}}.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;right:0!important}.js_active .ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;right:0!important;padding-left:0!important;padding-right:0!important}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;right:0!important}.elementor-post.elementor-grid-item.hentry{margin-bottom:0}.elementor-element .elementor-wc-products .woocommerce[class*=columns-] ul.products li.product{width:auto;margin:0;float:none}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product{width:auto;margin:0;float:none}.ast-flex{-js-display:flex;display:flex;flex-wrap:wrap}.ast-flex-1{flex:1}.ast-flex-2{flex:2}.ast-flex-3{flex:3}.ast-flex-4{flex:4}.ast-flex-5{flex:5}.ast-inline-flex{-js-display:inline-flex;display:inline-flex;align-items:center;flex-wrap:wrap;align-content:center}.ast-flex-direction-row{flex-direction:row}.ast-flex-direction-row-reverse{flex-direction:row-reverse}.ast-flex-direction-column{flex-direction:column}.ast-flex-direction-column-reverse{flex-direction:column-reverse}.ast-flex-wrap-nowrap{flex-wrap:nowrap}.ast-flex-wrap-wrap{flex-wrap:wrap}.ast-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse}.ast-justify-content-flex-start{justify-content:flex-start}.ast-justify-content-flex-end{justify-content:flex-end}.ast-justify-content-center{justify-content:center}.ast-justify-content-space-between{justify-content:space-between}.ast-justify-content-space-around{justify-content:space-around}.ast-align-items-flex-start{align-items:flex-start}.ast-align-items-flex-end{align-items:flex-end}.ast-align-items-center{align-items:center}.ast-align-items-baseline{align-items:baseline}.ast-align-items-stretch{align-items:stretch}.ast-align-content-flex-start{align-content:flex-start}.ast-align-content-flex-end{align-content:flex-end}.ast-align-content-center{align-content:center}.ast-align-content-space-between{align-content:space-between}.ast-align-content-space-around{align-content:space-around}.ast-align-content-stretch{align-content:stretch}.ast-order-1{order:1}.ast-order-2{order:2}.ast-order-3{order:3}.ast-order-4{order:4}.ast-order-5{order:5}.ast-flex-grow-1{flex-grow:1}.ast-flex-grow-2{flex-grow:2}.ast-flex-grow-3{flex-grow:3}.ast-flex-grow-4{flex-grow:4}.ast-flex-grow-5{flex-grow:5}.ast-flex-shrink-1{flex-shrink:1}.ast-flex-shrink-2{flex-shrink:2}.ast-flex-shrink-3{flex-shrink:3}.ast-flex-shrink-4{flex-shrink:4}.ast-flex-shrink-5{flex-shrink:5}.ast-align-self-auto{align-self:auto}.ast-align-self-flex-start{align-self:flex-start}.ast-align-self-flex-end{align-self:flex-end}.ast-align-self-center{align-self:center}.ast-align-self-baseline{align-self:baseline}.ast-align-self-stretch{align-self:stretch} \ No newline at end of file + */.ast-container{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-right:-20px;margin-left:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-right:20px;padding-left:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:right}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{left:auto}.ast-col-xs-pull-1{left:8.3333333333%}.ast-col-xs-pull-2{left:16.6666666667%}.ast-col-xs-pull-3{left:25%}.ast-col-xs-pull-4{left:33.3333333333%}.ast-col-xs-pull-5{left:41.6666666667%}.ast-col-xs-pull-6{left:50%}.ast-col-xs-pull-7{left:58.3333333333%}.ast-col-xs-pull-8{left:66.6666666667%}.ast-col-xs-pull-9{left:75%}.ast-col-xs-pull-10{left:83.3333333333%}.ast-col-xs-pull-11{left:91.6666666667%}.ast-col-xs-pull-12{left:100%}.ast-col-xs-push-0{right:auto}.ast-col-xs-push-1{right:8.3333333333%}.ast-col-xs-push-2{right:16.6666666667%}.ast-col-xs-push-3{right:25%}.ast-col-xs-push-4{right:33.3333333333%}.ast-col-xs-push-5{right:41.6666666667%}.ast-col-xs-push-6{right:50%}.ast-col-xs-push-7{right:58.3333333333%}.ast-col-xs-push-8{right:66.6666666667%}.ast-col-xs-push-9{right:75%}.ast-col-xs-push-10{right:83.3333333333%}.ast-col-xs-push-11{right:91.6666666667%}.ast-col-xs-push-12{right:100%}.ast-col-xs-offset-0{margin-right:0}.ast-col-xs-offset-1{margin-right:8.3333333333%}.ast-col-xs-offset-2{margin-right:16.6666666667%}.ast-col-xs-offset-3{margin-right:25%}.ast-col-xs-offset-4{margin-right:33.3333333333%}.ast-col-xs-offset-5{margin-right:41.6666666667%}.ast-col-xs-offset-6{margin-right:50%}.ast-col-xs-offset-7{margin-right:58.3333333333%}.ast-col-xs-offset-8{margin-right:66.6666666667%}.ast-col-xs-offset-9{margin-right:75%}.ast-col-xs-offset-10{margin-right:83.3333333333%}.ast-col-xs-offset-11{margin-right:91.6666666667%}.ast-col-xs-offset-12{margin-right:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:right}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{left:auto}.ast-col-sm-pull-1{left:8.3333333333%}.ast-col-sm-pull-2{left:16.6666666667%}.ast-col-sm-pull-3{left:25%}.ast-col-sm-pull-4{left:33.3333333333%}.ast-col-sm-pull-5{left:41.6666666667%}.ast-col-sm-pull-6{left:50%}.ast-col-sm-pull-7{left:58.3333333333%}.ast-col-sm-pull-8{left:66.6666666667%}.ast-col-sm-pull-9{left:75%}.ast-col-sm-pull-10{left:83.3333333333%}.ast-col-sm-pull-11{left:91.6666666667%}.ast-col-sm-pull-12{left:100%}.ast-col-sm-push-0{right:auto}.ast-col-sm-push-1{right:8.3333333333%}.ast-col-sm-push-2{right:16.6666666667%}.ast-col-sm-push-3{right:25%}.ast-col-sm-push-4{right:33.3333333333%}.ast-col-sm-push-5{right:41.6666666667%}.ast-col-sm-push-6{right:50%}.ast-col-sm-push-7{right:58.3333333333%}.ast-col-sm-push-8{right:66.6666666667%}.ast-col-sm-push-9{right:75%}.ast-col-sm-push-10{right:83.3333333333%}.ast-col-sm-push-11{right:91.6666666667%}.ast-col-sm-push-12{right:100%}.ast-col-sm-offset-0{margin-right:0}.ast-col-sm-offset-1{margin-right:8.3333333333%}.ast-col-sm-offset-2{margin-right:16.6666666667%}.ast-col-sm-offset-3{margin-right:25%}.ast-col-sm-offset-4{margin-right:33.3333333333%}.ast-col-sm-offset-5{margin-right:41.6666666667%}.ast-col-sm-offset-6{margin-right:50%}.ast-col-sm-offset-7{margin-right:58.3333333333%}.ast-col-sm-offset-8{margin-right:66.6666666667%}.ast-col-sm-offset-9{margin-right:75%}.ast-col-sm-offset-10{margin-right:83.3333333333%}.ast-col-sm-offset-11{margin-right:91.6666666667%}.ast-col-sm-offset-12{margin-right:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:right}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{left:auto}.ast-col-md-pull-1{left:8.3333333333%}.ast-col-md-pull-2{left:16.6666666667%}.ast-col-md-pull-3{left:25%}.ast-col-md-pull-4{left:33.3333333333%}.ast-col-md-pull-5{left:41.6666666667%}.ast-col-md-pull-6{left:50%}.ast-col-md-pull-7{left:58.3333333333%}.ast-col-md-pull-8{left:66.6666666667%}.ast-col-md-pull-9{left:75%}.ast-col-md-pull-10{left:83.3333333333%}.ast-col-md-pull-11{left:91.6666666667%}.ast-col-md-pull-12{left:100%}.ast-col-md-push-0{right:auto}.ast-col-md-push-1{right:8.3333333333%}.ast-col-md-push-2{right:16.6666666667%}.ast-col-md-push-3{right:25%}.ast-col-md-push-4{right:33.3333333333%}.ast-col-md-push-5{right:41.6666666667%}.ast-col-md-push-6{right:50%}.ast-col-md-push-7{right:58.3333333333%}.ast-col-md-push-8{right:66.6666666667%}.ast-col-md-push-9{right:75%}.ast-col-md-push-10{right:83.3333333333%}.ast-col-md-push-11{right:91.6666666667%}.ast-col-md-push-12{right:100%}.ast-col-md-offset-0{margin-right:0}.ast-col-md-offset-1{margin-right:8.3333333333%}.ast-col-md-offset-2{margin-right:16.6666666667%}.ast-col-md-offset-3{margin-right:25%}.ast-col-md-offset-4{margin-right:33.3333333333%}.ast-col-md-offset-5{margin-right:41.6666666667%}.ast-col-md-offset-6{margin-right:50%}.ast-col-md-offset-7{margin-right:58.3333333333%}.ast-col-md-offset-8{margin-right:66.6666666667%}.ast-col-md-offset-9{margin-right:75%}.ast-col-md-offset-10{margin-right:83.3333333333%}.ast-col-md-offset-11{margin-right:91.6666666667%}.ast-col-md-offset-12{margin-right:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:right}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{left:auto}.ast-col-lg-pull-1{left:8.3333333333%}.ast-col-lg-pull-2{left:16.6666666667%}.ast-col-lg-pull-3{left:25%}.ast-col-lg-pull-4{left:33.3333333333%}.ast-col-lg-pull-5{left:41.6666666667%}.ast-col-lg-pull-6{left:50%}.ast-col-lg-pull-7{left:58.3333333333%}.ast-col-lg-pull-8{left:66.6666666667%}.ast-col-lg-pull-9{left:75%}.ast-col-lg-pull-10{left:83.3333333333%}.ast-col-lg-pull-11{left:91.6666666667%}.ast-col-lg-pull-12{left:100%}.ast-col-lg-push-0{right:auto}.ast-col-lg-push-1{right:8.3333333333%}.ast-col-lg-push-2{right:16.6666666667%}.ast-col-lg-push-3{right:25%}.ast-col-lg-push-4{right:33.3333333333%}.ast-col-lg-push-5{right:41.6666666667%}.ast-col-lg-push-6{right:50%}.ast-col-lg-push-7{right:58.3333333333%}.ast-col-lg-push-8{right:66.6666666667%}.ast-col-lg-push-9{right:75%}.ast-col-lg-push-10{right:83.3333333333%}.ast-col-lg-push-11{right:91.6666666667%}.ast-col-lg-push-12{right:100%}.ast-col-lg-offset-0{margin-right:0}.ast-col-lg-offset-1{margin-right:8.3333333333%}.ast-col-lg-offset-2{margin-right:16.6666666667%}.ast-col-lg-offset-3{margin-right:25%}.ast-col-lg-offset-4{margin-right:33.3333333333%}.ast-col-lg-offset-5{margin-right:41.6666666667%}.ast-col-lg-offset-6{margin-right:50%}.ast-col-lg-offset-7{margin-right:58.3333333333%}.ast-col-lg-offset-8{margin-right:66.6666666667%}.ast-col-lg-offset-9{margin-right:75%}.ast-col-lg-offset-10{margin-right:83.3333333333%}.ast-col-lg-offset-11{margin-right:91.6666666667%}.ast-col-lg-offset-12{margin-right:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:right}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{left:auto}.ast-col-xl-pull-1{left:8.3333333333%}.ast-col-xl-pull-2{left:16.6666666667%}.ast-col-xl-pull-3{left:25%}.ast-col-xl-pull-4{left:33.3333333333%}.ast-col-xl-pull-5{left:41.6666666667%}.ast-col-xl-pull-6{left:50%}.ast-col-xl-pull-7{left:58.3333333333%}.ast-col-xl-pull-8{left:66.6666666667%}.ast-col-xl-pull-9{left:75%}.ast-col-xl-pull-10{left:83.3333333333%}.ast-col-xl-pull-11{left:91.6666666667%}.ast-col-xl-pull-12{left:100%}.ast-col-xl-push-0{right:auto}.ast-col-xl-push-1{right:8.3333333333%}.ast-col-xl-push-2{right:16.6666666667%}.ast-col-xl-push-3{right:25%}.ast-col-xl-push-4{right:33.3333333333%}.ast-col-xl-push-5{right:41.6666666667%}.ast-col-xl-push-6{right:50%}.ast-col-xl-push-7{right:58.3333333333%}.ast-col-xl-push-8{right:66.6666666667%}.ast-col-xl-push-9{right:75%}.ast-col-xl-push-10{right:83.3333333333%}.ast-col-xl-push-11{right:91.6666666667%}.ast-col-xl-push-12{right:100%}.ast-col-xl-offset-0{margin-right:0}.ast-col-xl-offset-1{margin-right:8.3333333333%}.ast-col-xl-offset-2{margin-right:16.6666666667%}.ast-col-xl-offset-3{margin-right:25%}.ast-col-xl-offset-4{margin-right:33.3333333333%}.ast-col-xl-offset-5{margin-right:41.6666666667%}.ast-col-xl-offset-6{margin-right:50%}.ast-col-xl-offset-7{margin-right:58.3333333333%}.ast-col-xl-offset-8{margin-right:66.6666666667%}.ast-col-xl-offset-9{margin-right:75%}.ast-col-xl-offset-10{margin-right:83.3333333333%}.ast-col-xl-offset-11{margin-right:91.6666666667%}.ast-col-xl-offset-12{margin-right:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-right:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 3em 1.5em 0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-right:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 1px 0 0;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:right;border-width:0 0 1px 1px}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-right:3px;width:100%}a{color:#4169e1}a:focus,a:hover{color:#191970}a:focus{outline:thin dotted}a:hover{outline:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.alignleft{display:inline;float:right;margin-left:1.5em}.alignright{display:inline;float:left;margin-right:1.5em}.aligncenter{clear:both;text-align:center;display:block;margin-right:auto;margin-left:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-right:auto;margin-left:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 3em 1.5em 1em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative;z-index:3}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-left:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-left:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;left:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;right:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;right:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.ast-social-icons{list-style-type:none;margin:0}.ast-social-icons li{display:inline-block;padding-left:15px}.ast-social-icons li:last-child{padding-left:0}.ast-social-icons a{display:block}.ast-social-icons i{font-style:normal;font-family:fontawesome;font-weight:400}.ast-social-icons i:before{font-weight:400}.single .entry-content .gallery{margin-right:-10px;margin-left:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;right:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;right:0;width:100%;height:100%}.ast-hidden{display:none!important}body{background-color:#fff}#page{display:block}#primary,#secondary{display:block;position:relative;float:right;width:100%}#primary{margin:4em 0}#secondary{margin:4em 0 2.5em;word-break:break-word;line-height:2}#secondary li{margin-bottom:.25em}#secondary li:last-child{margin-bottom:0}.ast-separate-container{background-color:#f5f5f5}.ast-separate-container #primary{padding:4em 0;margin:0;border:0}.ast-separate-container .site-main>.ast-row{margin-right:0;margin-left:0}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{background-color:#fff;border-bottom:1px solid #eee;margin:0;padding:5.34em 6.67em}.ast-separate-container .blog-layout-1{padding:0;border-bottom:0}.ast-separate-container .ast-article-single{border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{margin:0;padding:3.34em 2.4em}}.ast-page-builder-template .hentry{margin:0}.ast-page-builder-template .site-content>.ast-container{max-width:100%;padding:0}.ast-page-builder-template .site-content #primary{padding:0;margin:0}.ast-page-builder-template .no-results{text-align:center;margin:4em auto}.ast-page-builder-template .ast-pagination{padding:2em}.ast-page-builder-template .entry-header{margin-top:4em;margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail{margin-top:0}.ast-page-builder-template .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}.ast-page-builder-template.ast-left-sidebar #secondary{padding-right:20px}.ast-page-builder-template.ast-right-sidebar #secondary{padding-left:20px}.ast-page-builder-template.single .post-navigation{padding-bottom:2em}.ast-page-builder-template .ast-archive-description{margin-top:4em;margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px}@media (min-width:993px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{margin:4em 0;padding:0}.ast-right-sidebar #primary{padding-left:60px}.ast-right-sidebar #secondary{padding-right:60px}.ast-left-sidebar #primary{padding-right:60px}.ast-left-sidebar #secondary{padding-left:60px}}@media (max-width:992px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{padding-right:0;padding-left:0}.ast-right-sidebar #primary{padding-left:30px}.ast-right-sidebar #secondary{padding-right:30px}.ast-left-sidebar #primary{padding-right:30px}.ast-left-sidebar #secondary{padding-left:30px}}.astra-search-icon::before{content:"\e8b6";font-family:Astra;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ast-search-icon .astra-search-icon{font-size:1.3em}.main-navigation{-js-display:inline-flex;display:inline-flex;height:100%}.main-navigation ul{list-style:none;margin:0;padding-right:0;position:relative}.main-header-menu .menu-link,.main-header-menu>a{text-decoration:none;padding:0 1em;display:inline-block;transition:all .2s linear}.main-header-menu .menu-item{position:relative}.main-header-menu .menu-item.focus>.sub-menu,.main-header-menu .menu-item:hover>.sub-menu{left:auto;right:0}.main-header-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu:hover>.sub-menu{left:0;right:auto}@media (min-width:769px){.main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{right:-100%}.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu{right:-100%}}.main-header-menu .sub-menu{width:240px;background:#fff;right:-999em;position:absolute;top:100%;z-index:99999}@media (min-width:769px){.main-header-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .sub-menu .menu-item:hover>.sub-menu{right:100%;left:auto}.main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{right:-100%}.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{right:-100%}}.main-header-menu .sub-menu .menu-link{padding:.9em 1em;display:block;word-wrap:break-word}.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;left:1em;top:50%;transform:translate(0,-50%) rotate(-270deg)}.main-header-menu .sub-menu .sub-menu{top:0}.submenu-with-border .sub-menu{border-width:1px;border-style:solid}.submenu-with-border .sub-menu .menu-link{border-width:0 0 1px;border-style:solid}.submenu-with-border .sub-menu .sub-menu{top:-1px}.ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link{border-bottom-width:0}.ast-header-break-point .main-navigation{padding-right:0}.ast-header-break-point .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before{content:"\e900";font-family:Astra;font-size:.65em;text-decoration:inherit;display:inline-block;transform:translate(0,-2px) rotateZ(-270deg);margin-left:5px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link{padding-right:30px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-right:40px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link{padding-right:50px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-right:60px}.ast-header-break-point .ast-header-custom-item,.ast-header-break-point .main-header-menu{background-color:#f9f9f9}.ast-header-break-point .main-header-menu .sub-menu{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto}.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{right:0}.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{right:0}.ast-header-break-point .submenu-with-border .sub-menu{border:0}.ast-mobile-menu-buttons{display:none}.ast-button-wrap{display:inline-block}.ast-button-wrap button{box-shadow:none;border:none}.ast-button-wrap .menu-toggle{padding:0;width:2.2em;height:2.1em;font-size:1.5em;font-weight:400;border-radius:2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:2px;vertical-align:middle;line-height:1.85714285714286}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:0 .5em;width:auto;text-align:center}.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu{font-size:15px;font-size:1rem;font-weight:600}.ast-button-wrap .menu-toggle .menu-toggle-icon{font-style:normal;display:inline-block;vertical-align:middle;line-height:2.05}.ast-button-wrap .menu-toggle .menu-toggle-icon:before{content:"\e5d2";font-family:Astra;text-decoration:inherit}.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before{content:"\e5cd"}.ast-button-wrap .menu-toggle .mobile-menu-wrap{display:inline-block}.ast-button-wrap .menu-toggle:focus{outline:thin dotted}.main-header-bar-navigation{flex:1}.header-main-layout-1 .ast-main-header-bar-alignment{margin-right:auto}.header-main-layout-3 .ast-main-header-bar-alignment{margin-left:auto}#site-navigation{height:100%}.ast-header-break-point .user-select{clear:both}.ast-header-break-point .ast-mobile-menu-buttons{display:block;align-self:center}.ast-header-break-point .main-header-bar-navigation{flex:auto}.ast-header-break-point .ast-main-header-bar-alignment{display:block;width:100%;flex:auto;order:4}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-next,.comment-navigation .nav-previous,.post-navigation .nav-next,.post-navigation .nav-previous,.posts-navigation .nav-next,.posts-navigation .nav-previous{width:50%;display:inline-block}.comment-navigation .nav-next,.post-navigation .nav-next,.posts-navigation .nav-next{text-align:left}.main-header-bar{z-index:1}.header-main-layout-1.ast-primary-menu-disabled .ast-masthead-custom-menu-items{text-align:left}.header-main-layout-1 .main-header-bar-navigation{text-align:left}.header-main-layout-1 .main-header-bar-navigation .sub-menu{text-align:right}.header-main-layout-1 .main-navigation{padding-right:15px;vertical-align:top}.header-main-layout-1 .main-header-container{align-items:stretch}.header-main-layout-2 .main-header-container{display:block}.header-main-layout-2 .site-branding{text-align:center;padding-bottom:1em}.header-main-layout-2 .site-title{justify-content:center}.header-main-layout-2 .main-navigation ul{justify-content:center}.header-main-layout-2 .main-header-bar-navigation{text-align:center}.header-main-layout-2 .main-header-bar-navigation .sub-menu{text-align:right}.header-main-layout-2 .ast-header-custom-item{justify-content:center;line-height:1.85714285714286}.header-main-layout-2 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-2 .widget{text-align:center}.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{-js-display:flex;display:flex;justify-content:center}.ast-header-custom-item-outside .header-main-layout-2 .site-branding{flex:0 0 100%}.header-main-layout-3 .ast-site-identity{text-align:left}.header-main-layout-3 .main-header-container{flex-direction:row-reverse;align-items:stretch}.header-main-layout-3 .main-navigation{padding-left:15px}.header-main-layout-3 .main-navigation ul{justify-content:flex-start}.header-main-layout-3 .main-header-bar-navigation{text-align:right}.header-main-layout-3 .ast-header-custom-item{justify-content:flex-start}.header-main-layout-3 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-3 li .ast-search-icon{padding-right:.5em}.header-main-layout-3 .ast-search-menu-icon{right:0;left:0}.header-main-layout-3 li .ast-search-menu-icon{right:1em;left:0}.header-main-layout-3 .main-header-bar .ast-search-menu-icon .search-form{padding:0 3em 0 0}.header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:-1em;left:auto}.ast-header-break-point .header-main-layout-1 .site-branding{padding-left:1em}.ast-header-break-point .header-main-layout-1 .main-header-bar-navigation{text-align:right}.ast-header-break-point .header-main-layout-1 .main-navigation{padding-right:0}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .site-branding{padding-right:0;padding-left:0;padding-bottom:1em;flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items,.ast-header-break-point .ast-mobile-header-stack .ast-site-identity,.ast-header-break-point .ast-mobile-header-stack .site-branding,.ast-header-break-point .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-title{text-align:right}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{flex:1 1 100%;text-align:center;justify-content:center}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .main-header-container{flex-direction:initial}.ast-header-break-point .header-main-layout-2 .ast-mobile-menu-buttons{-js-display:flex;display:flex;justify-content:center}.ast-header-break-point .header-main-layout-2 .main-header-bar-navigation,.ast-header-break-point .header-main-layout-2 .widget{text-align:right}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-3 .main-header-bar .ast-search-icon{margin-left:auto;margin-right:1em}.ast-header-break-point .header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{left:auto;right:0}.ast-header-break-point .header-main-layout-3.ast-mobile-header-inline .ast-mobile-menu-buttons{justify-content:flex-start}.ast-header-break-point .header-main-layout-3 li .ast-search-menu-icon{right:0}.ast-header-break-point .header-main-layout-3 .site-branding{padding-right:1em;justify-content:flex-end}.ast-header-break-point .header-main-layout-3 .main-navigation{padding-left:0}.ast-logo-title-inline .ast-site-identity{-js-display:inline-flex;display:inline-flex;vertical-align:middle;align-items:center}.ast-logo-title-inline .site-logo-img{padding-left:1em}.ast-logo-title-inline.header-main-layout-2 .site-logo-img+.ast-site-title-wrap .site-title{justify-content:flex-start}@media (max-width:544px){.site-branding img,.site-header .site-logo-img .custom-logo-link img{max-width:100%}.ast-header-custom-item-outside .ast-mobile-header-stack .site-branding{padding-left:0}.ast-header-custom-item-outside .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center;text-align:center;padding-bottom:0}}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{text-align:right}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-title{justify-content:left}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:1em}.ast-header-break-point .ast-mobile-header-inline .main-header-container,.ast-header-break-point .ast-mobile-header-stack .main-header-container{-js-display:flex;display:flex}.site-header{z-index:99;position:relative}.main-header-container{position:relative}.main-header-bar-wrap{position:relative}.main-header-bar-wrap .nav-fallback-text{float:left}.main-header-bar{background-color:#fff;border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .main-header-bar{border:0}.ast-header-break-point .nav-fallback-text{float:none}.ast-header-break-point .main-header-bar{border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items{padding-right:20px;padding-left:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-header-custom-item .widget:last-child{margin-bottom:1em}.main-header-bar{margin-right:auto;margin-left:auto}.site-logo-img img{transition:all .2s linear}.ast-header-widget-area{line-height:1.65}.ast-header-widget-area .no-widget-text,.ast-header-widget-area .widget-title{margin-bottom:0}.ast-header-widget-area .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-widget-area .widget p{margin-bottom:0}.ast-header-widget-area .widget ul{position:static;border:0;width:auto}.ast-header-widget-area .widget ul a{border:0}.ast-header-widget-area .widget.widget_search .search-field,.ast-header-widget-area .widget.widget_search .search-field:focus{padding:10px 15px 10px 45px}.ast-header-widget-area .widget:last-child{margin-bottom:.5em;margin-left:0}.submenu-with-border .ast-header-widget-area .widget ul{position:static;border:0;width:auto}.submenu-with-border .ast-header-widget-area .widget ul a{border:0}.ast-header-break-point .ast-header-widget-area .widget{margin:.5em 0;display:block}.ast-header-custom-item .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-custom-item .widget p{margin-bottom:0}.ast-header-custom-item .widget li{width:auto}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .astra-megamenu .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .sub-menu{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-custom-item-inside .button-custom-menu-item .menu-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item{padding-right:0;padding-left:0;margin-top:0;margin-bottom:0}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link{display:block}.button-custom-menu-item .ast-custom-button-link .ast-custom-button{font-size:inherit;font-family:inherit;font-weight:inherit}.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover{transition:all .1s ease-in-out}.nav-style{display:block;padding:0 15px}.site-branding{line-height:1;align-self:center}.ast-no-menu-items .main-navigation{display:none}.ast-menu-toggle{display:none;background:0 0;color:inherit;border-style:dotted;border-color:transparent}.ast-menu-toggle:focus,.ast-menu-toggle:hover{background:0 0;border-color:inherit;color:inherit}.ast-menu-toggle:focus{outline:thin dotted}.ast-main-header-nav-open .main-header-bar{padding-bottom:0}.main-header-bar{z-index:4;position:relative;line-height:4}.main-header-bar .main-header-bar-navigation{height:100%}.main-header-bar .main-header-bar-navigation:empty{padding:0}.main-header-bar .main-header-bar-navigation .sub-menu{line-height:1.45}.main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after{content:"\e900";display:inline-block;font-family:Astra;font-size:9px;font-size:.6rem;font-weight:700;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:10px;line-height:normal}.main-header-bar .main-header-bar-navigation .ast-search-icon{display:block;z-index:4;position:relative}.main-header-bar .main-header-bar-navigation.toggle-on{padding-top:1em}.main-header-bar .ast-search-menu-icon .search-form{background-color:#fff}.ast-primary-menu-disabled .main-header-bar .main-header-bar-navigation.toggle-on{padding-top:0}.ast-flyout-menu-enable .main-header-bar .ast-masthead-custom-menu-items .ast-custom-button-link{border:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{visibility:visible;opacity:1;position:relative;left:auto;top:auto;transform:none}.ast-above-header-section .user-select .ast-dropdown-active .slide-search.astra-search-icon,.ast-masthead-custom-menu-items .ast-dropdown-active .slide-search.astra-search-icon,.below-header-user-select .ast-dropdown-active .slide-search.astra-search-icon{color:#757575}.ast-search-menu-icon.slide-search .search-form{-webkit-backface-visibility:visible;backface-visibility:visible;visibility:hidden;opacity:0;transition:all .2s;position:absolute;z-index:3;left:-1em;top:50%;transform:translateY(-50%)}.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form{visibility:visible;opacity:1}.ast-search-menu-icon .search-form{border:1px solid #e7e7e7;line-height:normal;padding:0 0 0 3em;border-radius:2px;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;color:inherit;background-color:#fff}.ast-search-menu-icon .astra-search-icon{-js-display:flex;display:flex;line-height:normal}.ast-search-menu-icon .astra-search-icon:focus{outline:0}.ast-search-menu-icon .search-field{border:none;background-color:transparent;transition:width .2s;border-radius:inherit;color:inherit;font-size:inherit;width:0;color:#757575}.ast-search-menu-icon .search-submit{display:none;background:0 0;border:none;font-size:1.3em;color:#757575}.ast-search-menu-icon.ast-dropdown-active{visibility:visible;opacity:1;position:relative}.ast-search-menu-icon.ast-dropdown-active .search-field{width:235px}li.ast-masthead-custom-menu-items{padding:0 1em}li.ast-masthead-custom-menu-items a{padding-right:0;padding-left:0;vertical-align:middle}li.ast-masthead-custom-menu-items a,li.ast-masthead-custom-menu-items a:focus,li.ast-masthead-custom-menu-items a:hover{background:0 0}li.ast-masthead-custom-menu-items .ast-search-icon .astra-search-icon{line-height:1}.ast-search-icon{z-index:4;position:relative;line-height:normal}.ast-primary-menu-disabled.ast-mobile-header-inline .ast-masthead-custom-menu-items{text-align:left}.ast-primary-menu-disabled .ast-masthead-custom-menu-items{flex:1}.ast-primary-menu-disabled.header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-primary-menu-disabled.header-main-layout-3 .ast-masthead-custom-menu-items{text-align:right}.ast-masthead-custom-menu-items{padding:0 1em}.search-custom-menu-item{position:relative}.custom-mobile-logo-link{display:none}.ast-site-identity{padding:1em 0}.ast-header-break-point .ast-mobile-header-stack .site-description{text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-description{text-align:right}.ast-header-break-point.ast-header-custom-item-outside .ast-primary-menu-disabled .ast-mobile-menu-buttons{display:none}.ast-header-break-point .ast-hide-custom-menu-mobile .ast-masthead-custom-menu-items{display:none}.ast-header-break-point .ast-mobile-header-inline .site-branding{text-align:right;padding-bottom:0}.ast-header-break-point .ast-mobile-header-inline.header-main-layout-3 .site-branding{text-align:left}.ast-header-break-point .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;flex:1;align-self:center}.ast-header-break-point ul li.ast-masthead-custom-menu-items a{padding:0;display:inline-block;width:auto;border:0}.ast-header-break-point li.ast-masthead-custom-menu-items{padding-right:20px;padding-left:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-site-identity{width:100%}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.menu-link:after{display:none}.ast-header-break-point .main-header-bar{display:block;line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation{line-height:3;display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;left:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point.ast-header-custom-item-inside .ast-search-menu-icon{position:relative;display:block;left:auto;transform:none}.ast-header-break-point .main-navigation{display:block;width:100%}.ast-header-break-point .main-navigation ul>.menu-item:first-child{border-top:0}.ast-header-break-point .main-navigation ul ul{right:auto;left:auto}.ast-header-break-point .main-navigation li{width:100%}.ast-header-break-point .main-navigation .widget{margin-bottom:1em}.ast-header-break-point .main-navigation .widget li{width:auto}.ast-header-break-point .main-navigation .widget:last-child{margin-bottom:0}.ast-header-break-point .main-header-bar-navigation{width:calc(100% + 40px);margin:0 -20px}.ast-header-break-point .main-header-menu ul ul{top:0}.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link{display:none}.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block}.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg,.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link{display:block}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-menu-buttons{order:2}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar-navigation{order:3}.ast-header-break-point.ast-header-custom-item-outside .ast-masthead-custom-menu-items{order:1}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-mobile-menu-buttons,.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{-js-display:flex;display:flex}.ast-header-break-point.ast-header-custom-item-outside.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:0}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-site-identity{width:100%}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-3 .ast-site-identity{width:auto}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-2 .site-branding{flex:1 1 auto}@media (max-width:544px){.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{width:100%}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center}.ast-header-break-point .ast-mobile-header-stack .main-header-bar-wrap .site-branding{flex:1 1 auto}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-2 .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-1 .site-branding{padding-bottom:0}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{padding:.8em 1em 0 1em;text-align:center;width:100%}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-masthead-custom-menu-items,.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-mobile-menu-buttons{padding-top:.8em}}.customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-display-site-title button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-astra-settings-display-site-tagline button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:none}.site-logo-img:hover .customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:none}.main-navigation:hover .customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:inline-block}.ast-primary-sticky-header-active .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{right:100px}.ast-primary-sticky-header-active.ast-full-width-header .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{right:5px}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav .customize-partial-edit-shortcut-button{top:15px}.ast-masthead-custom-menu-items.search-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{right:-30px;top:-7px;display:none}.ast-masthead-custom-menu-items.search-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.button-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{top:-14px;display:none}.ast-masthead-custom-menu-items.button-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.text-html-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{right:-30px;top:15px;display:none}.ast-masthead-custom-menu-items.text-html-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.widget-custom-menu-item{text-align:right}.ast-masthead-custom-menu-items.widget-custom-menu-item .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{right:-25px;top:-8px;display:none}.ast-masthead-custom-menu-items.widget-custom-menu-item:hover .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{top:-20px;right:-25px;display:none}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-below-header .below-header-user-select .ast-search-menu-icon,.ast-below-header .below-header-user-select .ast-site-header-cart,.ast-below-header .below-header-user-select.below-header-widget{text-align:right}.ast-below-header .customize-partial-edit-shortcut{top:1em}.ast-above-header-section .user-select .ast-search-menu-icon{text-align:right}.ast-above-header .customize-partial-edit-shortcut{top:.3em}.ast-above-header-section-1 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{right:-14px}.ast-above-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-1-search-box-type .customize-partial-edit-shortcut-button{right:-25px;top:-10px}.ast-above-header-section-1.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{right:-25px;top:-15px}.ast-above-header-section-1 .customize-partial-edit-shortcut-astra-settings-above-header-section-1-html .customize-partial-edit-shortcut-button{right:-25px}.ast-above-header-section-2 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{right:-14px}.ast-above-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;right:-25px}.ast-above-header-section-2.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-1.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{right:-14px}.below-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-1-search-box-type .customize-partial-edit-shortcut-button{top:-10px;right:-25px}.below-header-section-1 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-1 .customize-partial-edit-shortcut-astra-settings-below-header-section-1-html .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-2.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{right:-14px}.below-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;right:-25px}.below-header-section-2 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{right:-25px}.below-header-section-2 .customize-partial-edit-shortcut-astra-settings-below-header-section-2-html .customize-partial-edit-shortcut-button{right:-25px}.customize-partial-edit-shortcut-astra-settings-above-header-layout .customize-partial-edit-shortcut-button,.customize-partial-edit-shortcut-astra-settings-below-header-layout .customize-partial-edit-shortcut-button{right:-60px}.ast-header-break-point .ast-mobile-menu-buttons{text-align:left;-js-display:flex;display:flex;justify-content:flex-end}.ast-header-break-point .ast-mobile-menu-buttons .ast-button-wrap .ast-mobile-menu-buttons-minimal{font-size:1.7em}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.group-blog .byline,.single .byline{display:inline}.page-links{clear:both;margin-top:1em}.page-links a{display:inline-block}.page-links a .page-link{border-color:#eaeaea;background:0 0}.page-links .page-link{padding:0;margin:0 .3em .3em 0;border:2px solid #eaeaea;color:#000;background:0 0;font-size:.8em;width:2.5em;height:2.5em;line-height:calc(2.5em - 4px);display:inline-block;text-align:center;transition:all .2s linear}.page-links .page-link:focus,.page-links .page-link:hover{color:#000}@media (max-width:768px){.page-links .page-link{margin-bottom:6px}}.entry-content>:last-child,.entry-summary>:last-child,.page-content>:last-child{margin-bottom:0}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}.ast-no-sidebar .entry-content .alignfull{margin-right:calc(-50vw + 50%);margin-left:calc(-50vw + 50%);max-width:100vw;width:100vw}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide{width:100%;margin-right:auto;margin-left:auto}.ast-no-sidebar .entry-content .alignwide{margin-right:-100px;margin-left:-100px;max-width:unset;width:unset}.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide{width:100%;margin-right:auto;margin-left:auto}.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{margin-right:auto;margin-left:auto;width:100%}.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-6.67em;margin-left:-6.67em;width:auto}@media (max-width:1200px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-2.4em;margin-left:-2.4em}}@media (max-width:768px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-2.14em;margin-left:-2.14em}}@media (max-width:544px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-right:-1em;margin-left:-1em}}.ast-no-sidebar.ast-separate-container .entry-content .alignwide{margin-right:-20px;margin-left:-20px}.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide{margin-right:auto;margin-left:auto;width:100%}.blocks-gallery-grid,.wp-block-gallery{margin:0}.wp-block-separator{max-width:100px}.wp-block-separator.is-style-wide{max-width:none}.entry-content .has-2-columns .wp-block-column:first-child{padding-left:10px}.entry-content .has-2-columns .wp-block-column:last-child{padding-right:10px}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{flex-basis:100%}.entry-content .has-2-columns .wp-block-column:first-child{padding-left:0}.entry-content .has-2-columns .wp-block-column:last-child{padding-right:0}}body{overflow-x:hidden}body .entry-content .wp-block-latest-posts{margin-right:0}body .entry-content .wp-block-latest-posts li{list-style:none}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts{margin-right:0}.ast-header-break-point .entry-content .alignwide{margin-right:auto;margin-left:auto}.entry-content .blocks-gallery-item img{margin-bottom:auto}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide{margin-right:0;margin-left:0}.widget-title{font-weight:400;margin-bottom:1em;line-height:1.5}.widget{margin:0 0 2.8em 0}.widget:last-child{margin-bottom:0}.widget select{max-width:100%}.widget ul{margin:0;list-style-type:none}.widget_nav_menu ul ul.sub-menu{margin-top:.25em}.widget_nav_menu ul ul.sub-menu li{padding-right:20px}.widget_nav_menu ul ul.sub-menu a:after{right:-20px}.widget_nav_menu ul ul.sub-menu ul a:after{right:-40px}.widget_nav_menu ul ul.sub-menu ul ul a:after{right:-60px}.widget_nav_menu li{transition:all .2s linear}.widget_search .search-form{position:relative;padding:0;background:initial;color:inherit}.widget_search .search-form:after{font-family:Astra;font-size:1.2em;font-weight:400;content:"\e8b6";position:absolute;top:50%;left:15px;transform:translate(0,-50%)}.widget_search .search-form>label{position:relative}.widget_search .search-form input[type=submit],.widget_search .search-form input[type=submit]:focus,.widget_search .search-form input[type=submit]:hover{padding:13px 20px;border-radius:2px;border:none;top:0;left:0;position:absolute;color:transparent;background:0 0;max-width:45px;z-index:2}.widget_search .search-form .search-field{background:#fafafa;border-width:1px;border-color:#eaeaea;border-radius:2px}.widget_search .search-field,.widget_search .search-field:focus{width:100%;padding:16px 15px 16px 45px}.widget_archive ul.children,.widget_categories ul.children,.widget_pages ul.children{position:relative;margin-top:5px;width:100%}.widget_archive ul.children li,.widget_categories ul.children li,.widget_pages ul.children li{padding-right:20px}.widget_archive li ul.children a:after,.widget_categories li ul.children a:after,.widget_pages li ul.children a:after{right:-20px}.widget_archive li ul.children ul a:after,.widget_categories li ul.children ul a:after,.widget_pages li ul.children ul a:after{right:-40px}.widget_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.widget_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-left:4px;line-height:1.5;transition:all .2s linear}.widget_calendar table,.widget_calendar td,.widget_calendar th{padding:0;text-align:center}.widget_calendar table,.widget_calendar th{border:none}.widget_calendar td{border-left:none;border-right:none}.widget_calendar caption{line-height:2.7em}.widget_calendar thead{line-height:2.5em}.widget_calendar thead a{color:#0274be;font-size:1rem;vertical-align:middle}.widget_calendar thead td{vertical-align:middle;font-weight:700}.widget_calendar thead>tr>th{line-height:2.5em;border-bottom:2px solid #eaeaea;border-top:2px solid #eaeaea}.widget_calendar tbody{line-height:2.1em;text-align:center}.widget_calendar tbody>tr>td{width:14.2857%}.widget_calendar tbody>tr:first-child>td{padding-top:3px}.widget_calendar #today{background:#0274be}.ast-separate-container.ast-two-container #secondary .widget{background-color:#fff;padding:2em;margin-bottom:2em}.ast-footer-overlay{background-color:#3a3a3a;padding-top:2em;padding-bottom:2em}@media (min-width:769px){.ast-footer-overlay{padding-top:2.66666em;padding-bottom:2.66666em}}.ast-small-footer{line-height:1.85714285714286;position:relative}.ast-small-footer .nav-menu a{padding:0 .5em}.ast-small-footer .no-widget-text,.ast-small-footer .widget-title{margin-bottom:0}.ast-small-footer .widget{margin-bottom:1em}.ast-small-footer .widget ul{position:static;border:0;width:auto}.ast-small-footer .widget ul a{border:0}.ast-small-footer .widget:last-child{margin-bottom:0}@media (min-width:769px){.ast-small-footer .nav-menu li{margin:0}.ast-small-footer .nav-menu li:first-child a{padding-right:0}.ast-small-footer .nav-menu li:last-child a{padding-left:0}}.ast-footer-site-title .customize-partial-edit-shortcut-button{display:none}.footer-sml-layout-1{text-align:center}.footer-sml-layout-1 .ast-small-footer-section-2{margin-top:1em}.footer-sml-layout-2 .ast-small-footer-section-1,.footer-sml-layout-2 .ast-small-footer-section-2{text-align:center}@media (min-width:769px){.footer-sml-layout-2 .ast-small-footer-section-1{text-align:right}.footer-sml-layout-2 .ast-small-footer-section-1 .menu-item .menu-link{padding:0 0 0 1em}.footer-sml-layout-2 .ast-small-footer-section-2{text-align:left}.footer-sml-layout-2 .ast-small-footer-section-2 .menu-item .menu-link{padding:0 1em 0 0}}@media (max-width:768px){.ast-header-break-point .footer-sml-layout-2 .ast-small-footer-section-2{margin-top:1em}}@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0){.ast-small-footer-wrap .ast-row:before{display:block}}.site-footer{color:#fff}.site-footer .widget-title{color:#eaeaea}.site-footer a{color:#eaeaea}.site-footer a:focus,.site-footer a:hover{color:#fff}.site-footer ul{margin:0;list-style-type:none}.site-footer .nav-menu li{display:inline-block}.footer-adv-overlay{background-color:#3a3a3a;padding-top:70px;padding-bottom:70px}.footer-adv p:last-child{margin-bottom:0}.footer-adv .widget_calendar table{margin-bottom:0}@media all and (max-width:768px){.footer-adv-widget-1 .widget:last-child{margin:0 0 2.8em}}.footer-adv .ast-no-widget-row .widget-title{text-transform:capitalize}@media all and (max-width:768px){.footer-adv-layout-4 .footer-adv-widget-2 .widget:last-child,.footer-adv-layout-4 .footer-adv-widget-3 .widget:last-child{margin:0 0 2.8em}}input[type=email],input[type=number],input[type=password],input[type=reset],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:#666;padding:.75em;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{background-color:#fff;border-color:#eaeaea;box-shadow:none}input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover{box-shadow:none}textarea{width:100%}input[type=search]:focus{outline:thin dotted}input[type=range]{-webkit-appearance:none;width:100%;margin:5.7px 0;padding:0;border:none}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:8.6px;cursor:pointer;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;-webkit-appearance:none;margin-top:-5.7px}input[type=range]:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.2)}input[type=range]::-moz-range-track{width:100%;height:8.6px;cursor:pointer;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer}input[type=range]::-ms-track{width:100%;height:8.6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:rgba(199,199,199,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-fill-upper{background:rgba(255,255,255,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:-2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;height:8.6px}input[type=range]:focus::-ms-fill-lower{background:rgba(255,255,255,.2)}input[type=range]:focus::-ms-fill-upper{background:rgba(255,255,255,.2)}input[type=color]{border:none;width:100px;padding:0;height:30px;cursor:pointer}input[type=color]::-webkit-color-swatch-wrapper{padding:0;border:none}input[type=color]::-webkit-color-swatch{border:none}.page .entry-header{margin-bottom:1.5em}.search .entry-header{margin-bottom:1em}.ast-single-post .entry-header.ast-header-without-markup,.ast-single-post .entry-header.ast-no-title.ast-no-thumbnail{margin-bottom:0}.entry-header{margin-bottom:1em;word-wrap:break-word}.entry-header+.ast-blog-featured-section{margin-top:.5em}.entry-content{word-wrap:break-word}.entry-content p{margin-bottom:1.6em}.read-more{margin-bottom:0}.read-more .ast-right-arrow{font-size:1em}.ast-no-thumb .ast-blog-featured-section{margin-bottom:0}.ast-no-thumb .entry-header+.ast-blog-featured-section{margin-top:0}.ast-blog-featured-section{margin-bottom:1.5em}.ast-blog-featured-section .gallery{margin-bottom:0}.error404 .page-header{margin-bottom:1.5em}.error404 .page-header .page-title{margin-bottom:0}.archive .entry-title,.blog .entry-title,.search .entry-title{line-height:1.3}.archive .format-aside .entry-title,.archive .format-status .entry-title,.blog .format-aside .entry-title,.blog .format-status .entry-title{display:none}.page-title{margin-bottom:1em;font-weight:400}.entry-title{margin-bottom:.2em}.ast-article-post{margin-bottom:2.5em}.ast-article-post:last-child{margin-bottom:0;border-bottom:0}.search .site-content .content-area .search-form{margin-bottom:3em}.blog-layout-1 .post-thumb{padding-right:0;padding-left:0;position:relative}.blog .posted-on{z-index:1}.ast-blog-featured-section .posted-on{width:5.714285714em;height:5.714285714em;padding:.7em}.ast-blog-featured-section .posted-on .date-month,.ast-blog-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-blog-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-author-box img.avatar{border-radius:50%;margin:0 20px 0 0}.ast-archive-description{margin-bottom:2.5em;padding-bottom:1.3333em;border-bottom:1px solid #eee}.ast-archive-description .ast-archive-title{margin-bottom:4px;font-size:40px;font-size:2.85714rem;font-weight:300}.ast-archive-description p{margin-bottom:0;font-size:20px;font-size:1.42857rem;line-height:1.65;font-weight:300}.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{background-color:#eee;padding-bottom:0;border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-archive-description{margin:0;padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-archive-description{padding:2.14em}}@media (min-width:1201px){.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{margin:0;padding:5em 6.67em 3.33333em}}.single .entry-header{margin-bottom:2em}.single .post-navigation{margin:0;padding:2em 0 0;border-top:1px solid #eee}@media (max-width:768px){.single .post-navigation{padding-top:1.5em}}.single .post-navigation a{margin:2px;display:inline-block;text-align:center;color:#000}@media (min-width:421px){.single .post-navigation .nav-links{-js-display:flex;display:flex}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{flex:auto}}@media (max-width:420px){.single .post-navigation .ast-left-arrow,.single .post-navigation .ast-right-arrow{display:none}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{width:100%}.single .post-navigation .nav-next a,.single .post-navigation .nav-previous a{width:100%}.single .post-navigation .nav-previous{margin-bottom:1em}}.single.ast-page-builder-template .entry-header{padding-right:20px;padding-left:20px}.single .entry-header .ast-single-post-order+.post-thumb img{margin-top:2em;margin-bottom:0}.single .entry-header.ast-no-title .post-thumb+.ast-single-post-order{margin-top:0}.single .entry-header .post-thumb+.ast-single-post-order{margin-top:2em}.single .entry-header .post-thumb img{margin-top:0;margin-bottom:0}.page .has-post-thumbnail .post-thumb img{margin-bottom:1.5em}.post-password-form{text-align:center}@media (max-width:420px){.post-password-form input[type=password]{display:block;margin:10px auto}}.post-password-form input[type=submit]{padding:10px 20px;border-radius:2px}.ast-separate-container .post-navigation{border-top:0;padding-right:3.33333em;padding-left:3.33333em}@media (max-width:420px){.ast-separate-container .post-navigation{padding-right:0;padding-left:0}}@media (max-width:768px){.ast-separate-container .entry-header{margin-bottom:1em}}.ast-page-builder-template.single-post .site-content>.ast-container{max-width:100%}.comments-count-wrapper{padding:2em 0}.comments-count-wrapper .comments-title{font-weight:400;word-wrap:break-word}.ast-comment-list{margin:0;word-wrap:break-word;padding-bottom:.5em;list-style:none}.ast-comment-list li{list-style:none}.ast-comment-list li.depth-1 .ast-comment,.ast-comment-list li.depth-2 .ast-comment{border-bottom:1px solid #eee}.ast-comment-list .children{margin-right:2em}@media (max-width:992px){.ast-comment-list .children{margin-right:1em}}.ast-comment-list .comment-respond{padding:1em 0;border-bottom:1px solid #eee}.ast-comment-list .comment-respond .comment-reply-title{margin-top:0;padding-top:0}.ast-comment-list .comment-respond p{margin-bottom:.5em}.ast-comment-list #cancel-comment-reply-link{white-space:nowrap;font-size:15px;font-size:1rem;margin-right:1em}.ast-comment-list .ast-comment-edit-reply-wrap{-js-display:flex;display:flex;justify-content:flex-end}.ast-comment-list .ast-edit-link{flex:1}.ast-comment-list .comment-awaiting-moderation{margin-bottom:0}.ast-comment{padding:1em 0}.ast-comment-avatar-wrap{float:right;clear:left;margin-left:1.33333em}.ast-comment-avatar-wrap img{border-radius:50%}.ast-comment-meta-wrap{float:right;clear:left;padding:0 0 1.33333em}.ast-comment-content{clear:both}.ast-comment-cite-wrap{text-align:right}.ast-comment-cite-wrap cite{font-style:normal}.comment-reply-title{padding-top:1em;font-weight:400;line-height:1.65}.ast-comment-meta{margin-bottom:.5em}.ast-comment-time .reply,.ast-comment-time .timendate{margin-left:.5em}.comments-area{border-top:1px solid #eee;margin-top:2em}.comments-area .comment-form-comment{width:100%;border:none;margin:0;padding:0}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags{margin-bottom:1.5em}.comments-area .form-submit{margin-bottom:0}.comments-area .ast-comment-formwrap input[type=text],.comments-area textarea#comment{width:100%;border-radius:0;vertical-align:middle;margin-bottom:10px}.comments-area .no-comments{margin-top:.5em;margin-bottom:.5em}.comments-area p.logged-in-as{margin-bottom:1em}.comments-area #wp-comment-cookies-consent{margin-left:10px}.ast-separate-container .comments-count-wrapper{background-color:#fff;padding:2em 6.67em 0}@media (max-width:1200px){.ast-separate-container .comments-count-wrapper{padding:2em 3.34em}}.ast-separate-container .comments-area{border-top:0}.ast-separate-container .ast-comment-list{padding-bottom:0}.ast-separate-container .ast-comment-list li{background-color:#fff}.ast-separate-container .ast-comment-list li.depth-1{padding:4em 6.67em;margin-bottom:2em}@media (max-width:1200px){.ast-separate-container .ast-comment-list li.depth-1{padding:3em 3.34em}}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .children li{padding-bottom:0;padding-top:0;margin-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list .comment-respond{padding-top:0;padding-bottom:1em;background-color:transparent}.ast-separate-container .ast-comment-list .pingback p{margin-bottom:0}.ast-separate-container .ast-comment-list .bypostauthor{padding:2em;margin-bottom:1em}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor{background:0 0;margin-bottom:0;padding-left:0;padding-bottom:0;padding-top:0}.ast-separate-container .ast-comment-list .bypostauthor li{background:0 0;margin-bottom:0;padding:0 2em 0 0}.ast-separate-container .comment-respond{background-color:#fff;padding:4em 6.67em;border-bottom:0}@media (max-width:1200px){.ast-separate-container .comment-respond{padding:3em 2.34em}}.ast-separate-container .comment-reply-title{padding-top:0}.ast-page-builder-template .comments-area{padding-right:20px;padding-left:20px;margin-top:2em;margin-bottom:2em}.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers,.post-navigation a{padding:0 1.5em;height:2.33333em;line-height:calc(2.33333em - 3px)}.post-navigation a{background:0 0;font-size:16px;font-size:1.06666rem}.ast-pagination{display:inline-block;width:100%;padding-top:2em}@media (min-width:993px){.ast-pagination{padding-right:3.33333em;padding-left:3.33333em}}.ast-pagination .page-numbers{display:inline-block;width:2.33333em;height:2.33333em;font-size:16px;font-size:1.06666rem;line-height:calc(2.33333em - 3px);text-align:center}.ast-pagination .nav-links{display:inline-block;width:100%}@media (max-width:420px){.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers{width:100%;text-align:center;margin:0}}.ast-pagination .next.page-numbers,.ast-pagination .next.page-numbers:focus,.ast-pagination .next.page-numbers:visited,.ast-pagination .prev.page-numbers,.ast-pagination .prev.page-numbers:focus,.ast-pagination .prev.page-numbers:visited{display:inline-block;width:auto}@media (min-width:769px){.ast-pagination .next.page-numbers.next,.ast-pagination .next.page-numbers:focus.next,.ast-pagination .next.page-numbers:visited.next,.ast-pagination .prev.page-numbers.next,.ast-pagination .prev.page-numbers:focus.next,.ast-pagination .prev.page-numbers:visited.next{margin-left:0}}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers.dots:focus,.ast-pagination .next.page-numbers.dots:hover,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:focus.dots:focus,.ast-pagination .next.page-numbers:focus.dots:hover,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .next.page-numbers:visited.dots:focus,.ast-pagination .next.page-numbers:visited.dots:hover,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers.dots:focus,.ast-pagination .prev.page-numbers.dots:hover,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:focus.dots:focus,.ast-pagination .prev.page-numbers:focus.dots:hover,.ast-pagination .prev.page-numbers:visited.dots,.ast-pagination .prev.page-numbers:visited.dots:focus,.ast-pagination .prev.page-numbers:visited.dots:hover{border:2px solid #eaeaea;background:0 0}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:visited.dots{cursor:default}.ast-pagination .next.page-numbers{float:left;text-align:left}@media (max-width:768px){.ast-pagination .next.page-numbers .page-navigation{padding-left:0}}@media (max-width:768px){.ast-pagination .prev_next{display:inline-block;width:100%}}.ast-pagination .prev_next .next .ast-right-arrow,.ast-pagination .prev_next .prev .ast-left-arrow{font-size:1em;line-height:1em}@media (min-width:769px){.ast-pagination .prev_next{float:left}}.ast-404-layout-1{text-align:center;margin:4em auto}.ast-404-layout-1 .page-sub-title{font-size:1.5rem;font-weight:700}.ast-404-layout-1 .widget_search{padding-top:.5em}.ast-404-search{margin-top:1.5em}.ast-404-search .widget_search{max-width:370px;margin:0 auto}.ast-separate-container .error-404,.ast-separate-container .no-results{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:3.34em 2.4em}}@media (max-width:768px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 2.14em}}@media (max-width:544px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 1em}}@media (min-width:1201px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:5.34em 6.67em}}.blog-layout-1{width:100%;display:inline-block;padding-bottom:2em;vertical-align:middle;border-bottom:1px solid #eee}.blog-layout-1 .posted-on{right:0}.blog-layout-1 .post-content,.blog-layout-1 .post-thumb{padding-right:0;padding-left:0}.fl-builder-content{clear:both}.fl-theme-builder-archive .fl-post-column>.hentry,.fl-theme-builder-archive .fl-post-gallery-post.hentry{margin:0}.fl-theme-builder-archive h2.fl-post-feed-title{clear:initial}.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width{padding-right:0;padding-left:0}.js_active .vc_row{margin-right:auto;margin-left:auto}.js_active .ast-plain-container.ast-single-post #primary,.js_active .ast-plain-container.ast-single-post .hentry{margin:0;padding-top:0;padding-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:4em}.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:1.5em}}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post #secondary{margin-top:1.5em}}.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;right:0!important}.js_active .ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;right:0!important;padding-left:0!important;padding-right:0!important}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;right:0!important}.elementor-post.elementor-grid-item.hentry{margin-bottom:0}.elementor-element .elementor-wc-products .woocommerce[class*=columns-] ul.products li.product{width:auto;margin:0;float:none}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product{width:auto;margin:0;float:none}.ast-flex{-js-display:flex;display:flex;flex-wrap:wrap}.ast-flex-1{flex:1}.ast-flex-2{flex:2}.ast-flex-3{flex:3}.ast-flex-4{flex:4}.ast-flex-5{flex:5}.ast-inline-flex{-js-display:inline-flex;display:inline-flex;align-items:center;flex-wrap:wrap;align-content:center}.ast-flex-direction-row{flex-direction:row}.ast-flex-direction-row-reverse{flex-direction:row-reverse}.ast-flex-direction-column{flex-direction:column}.ast-flex-direction-column-reverse{flex-direction:column-reverse}.ast-flex-wrap-nowrap{flex-wrap:nowrap}.ast-flex-wrap-wrap{flex-wrap:wrap}.ast-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse}.ast-justify-content-flex-start{justify-content:flex-start}.ast-justify-content-flex-end{justify-content:flex-end}.ast-justify-content-center{justify-content:center}.ast-justify-content-space-between{justify-content:space-between}.ast-justify-content-space-around{justify-content:space-around}.ast-align-items-flex-start{align-items:flex-start}.ast-align-items-flex-end{align-items:flex-end}.ast-align-items-center{align-items:center}.ast-align-items-baseline{align-items:baseline}.ast-align-items-stretch{align-items:stretch}.ast-align-content-flex-start{align-content:flex-start}.ast-align-content-flex-end{align-content:flex-end}.ast-align-content-center{align-content:center}.ast-align-content-space-between{align-content:space-between}.ast-align-content-space-around{align-content:space-around}.ast-align-content-stretch{align-content:stretch}.ast-order-1{order:1}.ast-order-2{order:2}.ast-order-3{order:3}.ast-order-4{order:4}.ast-order-5{order:5}.ast-flex-grow-1{flex-grow:1}.ast-flex-grow-2{flex-grow:2}.ast-flex-grow-3{flex-grow:3}.ast-flex-grow-4{flex-grow:4}.ast-flex-grow-5{flex-grow:5}.ast-flex-shrink-1{flex-shrink:1}.ast-flex-shrink-2{flex-shrink:2}.ast-flex-shrink-3{flex-shrink:3}.ast-flex-shrink-4{flex-shrink:4}.ast-flex-shrink-5{flex-shrink:5}.ast-align-self-auto{align-self:auto}.ast-align-self-flex-start{align-self:flex-start}.ast-align-self-flex-end{align-self:flex-end}.ast-align-self-center{align-self:center}.ast-align-self-baseline{align-self:baseline}.ast-align-self-stretch{align-self:stretch} \ No newline at end of file diff --git a/assets/css/minified/style.min.css b/assets/css/minified/style.min.css index 163ab91..4fcb61f 100644 --- a/assets/css/minified/style.min.css +++ b/assets/css/minified/style.min.css @@ -1,3 +1,3 @@ @charset "UTF-8";a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{border:0;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}html{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}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}a{background-color:transparent}a:active{outline:0}a,a:focus,a:hover,a:visited{text-decoration:none}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}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:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-size:1em}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]{-webkit-appearance:button;cursor:pointer}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-appearance:textfield;box-sizing:content-box}#comments .submit,.search .search-submit{padding:10px 15px;border-radius:2px;line-height:1.85714285714286;border:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #eaeaea;margin:0 0;padding:.35em .625em .75em}legend{border:0;padding:0}fieldset legend{margin-bottom:1.5em;padding:0 .5em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) - */.ast-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-left:-20px;margin-right:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:left}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{right:auto}.ast-col-xs-pull-1{right:8.3333333333%}.ast-col-xs-pull-2{right:16.6666666667%}.ast-col-xs-pull-3{right:25%}.ast-col-xs-pull-4{right:33.3333333333%}.ast-col-xs-pull-5{right:41.6666666667%}.ast-col-xs-pull-6{right:50%}.ast-col-xs-pull-7{right:58.3333333333%}.ast-col-xs-pull-8{right:66.6666666667%}.ast-col-xs-pull-9{right:75%}.ast-col-xs-pull-10{right:83.3333333333%}.ast-col-xs-pull-11{right:91.6666666667%}.ast-col-xs-pull-12{right:100%}.ast-col-xs-push-0{left:auto}.ast-col-xs-push-1{left:8.3333333333%}.ast-col-xs-push-2{left:16.6666666667%}.ast-col-xs-push-3{left:25%}.ast-col-xs-push-4{left:33.3333333333%}.ast-col-xs-push-5{left:41.6666666667%}.ast-col-xs-push-6{left:50%}.ast-col-xs-push-7{left:58.3333333333%}.ast-col-xs-push-8{left:66.6666666667%}.ast-col-xs-push-9{left:75%}.ast-col-xs-push-10{left:83.3333333333%}.ast-col-xs-push-11{left:91.6666666667%}.ast-col-xs-push-12{left:100%}.ast-col-xs-offset-0{margin-left:0}.ast-col-xs-offset-1{margin-left:8.3333333333%}.ast-col-xs-offset-2{margin-left:16.6666666667%}.ast-col-xs-offset-3{margin-left:25%}.ast-col-xs-offset-4{margin-left:33.3333333333%}.ast-col-xs-offset-5{margin-left:41.6666666667%}.ast-col-xs-offset-6{margin-left:50%}.ast-col-xs-offset-7{margin-left:58.3333333333%}.ast-col-xs-offset-8{margin-left:66.6666666667%}.ast-col-xs-offset-9{margin-left:75%}.ast-col-xs-offset-10{margin-left:83.3333333333%}.ast-col-xs-offset-11{margin-left:91.6666666667%}.ast-col-xs-offset-12{margin-left:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:left}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{right:auto}.ast-col-sm-pull-1{right:8.3333333333%}.ast-col-sm-pull-2{right:16.6666666667%}.ast-col-sm-pull-3{right:25%}.ast-col-sm-pull-4{right:33.3333333333%}.ast-col-sm-pull-5{right:41.6666666667%}.ast-col-sm-pull-6{right:50%}.ast-col-sm-pull-7{right:58.3333333333%}.ast-col-sm-pull-8{right:66.6666666667%}.ast-col-sm-pull-9{right:75%}.ast-col-sm-pull-10{right:83.3333333333%}.ast-col-sm-pull-11{right:91.6666666667%}.ast-col-sm-pull-12{right:100%}.ast-col-sm-push-0{left:auto}.ast-col-sm-push-1{left:8.3333333333%}.ast-col-sm-push-2{left:16.6666666667%}.ast-col-sm-push-3{left:25%}.ast-col-sm-push-4{left:33.3333333333%}.ast-col-sm-push-5{left:41.6666666667%}.ast-col-sm-push-6{left:50%}.ast-col-sm-push-7{left:58.3333333333%}.ast-col-sm-push-8{left:66.6666666667%}.ast-col-sm-push-9{left:75%}.ast-col-sm-push-10{left:83.3333333333%}.ast-col-sm-push-11{left:91.6666666667%}.ast-col-sm-push-12{left:100%}.ast-col-sm-offset-0{margin-left:0}.ast-col-sm-offset-1{margin-left:8.3333333333%}.ast-col-sm-offset-2{margin-left:16.6666666667%}.ast-col-sm-offset-3{margin-left:25%}.ast-col-sm-offset-4{margin-left:33.3333333333%}.ast-col-sm-offset-5{margin-left:41.6666666667%}.ast-col-sm-offset-6{margin-left:50%}.ast-col-sm-offset-7{margin-left:58.3333333333%}.ast-col-sm-offset-8{margin-left:66.6666666667%}.ast-col-sm-offset-9{margin-left:75%}.ast-col-sm-offset-10{margin-left:83.3333333333%}.ast-col-sm-offset-11{margin-left:91.6666666667%}.ast-col-sm-offset-12{margin-left:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:left}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{right:auto}.ast-col-md-pull-1{right:8.3333333333%}.ast-col-md-pull-2{right:16.6666666667%}.ast-col-md-pull-3{right:25%}.ast-col-md-pull-4{right:33.3333333333%}.ast-col-md-pull-5{right:41.6666666667%}.ast-col-md-pull-6{right:50%}.ast-col-md-pull-7{right:58.3333333333%}.ast-col-md-pull-8{right:66.6666666667%}.ast-col-md-pull-9{right:75%}.ast-col-md-pull-10{right:83.3333333333%}.ast-col-md-pull-11{right:91.6666666667%}.ast-col-md-pull-12{right:100%}.ast-col-md-push-0{left:auto}.ast-col-md-push-1{left:8.3333333333%}.ast-col-md-push-2{left:16.6666666667%}.ast-col-md-push-3{left:25%}.ast-col-md-push-4{left:33.3333333333%}.ast-col-md-push-5{left:41.6666666667%}.ast-col-md-push-6{left:50%}.ast-col-md-push-7{left:58.3333333333%}.ast-col-md-push-8{left:66.6666666667%}.ast-col-md-push-9{left:75%}.ast-col-md-push-10{left:83.3333333333%}.ast-col-md-push-11{left:91.6666666667%}.ast-col-md-push-12{left:100%}.ast-col-md-offset-0{margin-left:0}.ast-col-md-offset-1{margin-left:8.3333333333%}.ast-col-md-offset-2{margin-left:16.6666666667%}.ast-col-md-offset-3{margin-left:25%}.ast-col-md-offset-4{margin-left:33.3333333333%}.ast-col-md-offset-5{margin-left:41.6666666667%}.ast-col-md-offset-6{margin-left:50%}.ast-col-md-offset-7{margin-left:58.3333333333%}.ast-col-md-offset-8{margin-left:66.6666666667%}.ast-col-md-offset-9{margin-left:75%}.ast-col-md-offset-10{margin-left:83.3333333333%}.ast-col-md-offset-11{margin-left:91.6666666667%}.ast-col-md-offset-12{margin-left:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:left}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{right:auto}.ast-col-lg-pull-1{right:8.3333333333%}.ast-col-lg-pull-2{right:16.6666666667%}.ast-col-lg-pull-3{right:25%}.ast-col-lg-pull-4{right:33.3333333333%}.ast-col-lg-pull-5{right:41.6666666667%}.ast-col-lg-pull-6{right:50%}.ast-col-lg-pull-7{right:58.3333333333%}.ast-col-lg-pull-8{right:66.6666666667%}.ast-col-lg-pull-9{right:75%}.ast-col-lg-pull-10{right:83.3333333333%}.ast-col-lg-pull-11{right:91.6666666667%}.ast-col-lg-pull-12{right:100%}.ast-col-lg-push-0{left:auto}.ast-col-lg-push-1{left:8.3333333333%}.ast-col-lg-push-2{left:16.6666666667%}.ast-col-lg-push-3{left:25%}.ast-col-lg-push-4{left:33.3333333333%}.ast-col-lg-push-5{left:41.6666666667%}.ast-col-lg-push-6{left:50%}.ast-col-lg-push-7{left:58.3333333333%}.ast-col-lg-push-8{left:66.6666666667%}.ast-col-lg-push-9{left:75%}.ast-col-lg-push-10{left:83.3333333333%}.ast-col-lg-push-11{left:91.6666666667%}.ast-col-lg-push-12{left:100%}.ast-col-lg-offset-0{margin-left:0}.ast-col-lg-offset-1{margin-left:8.3333333333%}.ast-col-lg-offset-2{margin-left:16.6666666667%}.ast-col-lg-offset-3{margin-left:25%}.ast-col-lg-offset-4{margin-left:33.3333333333%}.ast-col-lg-offset-5{margin-left:41.6666666667%}.ast-col-lg-offset-6{margin-left:50%}.ast-col-lg-offset-7{margin-left:58.3333333333%}.ast-col-lg-offset-8{margin-left:66.6666666667%}.ast-col-lg-offset-9{margin-left:75%}.ast-col-lg-offset-10{margin-left:83.3333333333%}.ast-col-lg-offset-11{margin-left:91.6666666667%}.ast-col-lg-offset-12{margin-left:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:left}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{right:auto}.ast-col-xl-pull-1{right:8.3333333333%}.ast-col-xl-pull-2{right:16.6666666667%}.ast-col-xl-pull-3{right:25%}.ast-col-xl-pull-4{right:33.3333333333%}.ast-col-xl-pull-5{right:41.6666666667%}.ast-col-xl-pull-6{right:50%}.ast-col-xl-pull-7{right:58.3333333333%}.ast-col-xl-pull-8{right:66.6666666667%}.ast-col-xl-pull-9{right:75%}.ast-col-xl-pull-10{right:83.3333333333%}.ast-col-xl-pull-11{right:91.6666666667%}.ast-col-xl-pull-12{right:100%}.ast-col-xl-push-0{left:auto}.ast-col-xl-push-1{left:8.3333333333%}.ast-col-xl-push-2{left:16.6666666667%}.ast-col-xl-push-3{left:25%}.ast-col-xl-push-4{left:33.3333333333%}.ast-col-xl-push-5{left:41.6666666667%}.ast-col-xl-push-6{left:50%}.ast-col-xl-push-7{left:58.3333333333%}.ast-col-xl-push-8{left:66.6666666667%}.ast-col-xl-push-9{left:75%}.ast-col-xl-push-10{left:83.3333333333%}.ast-col-xl-push-11{left:91.6666666667%}.ast-col-xl-push-12{left:100%}.ast-col-xl-offset-0{margin-left:0}.ast-col-xl-offset-1{margin-left:8.3333333333%}.ast-col-xl-offset-2{margin-left:16.6666666667%}.ast-col-xl-offset-3{margin-left:25%}.ast-col-xl-offset-4{margin-left:33.3333333333%}.ast-col-xl-offset-5{margin-left:41.6666666667%}.ast-col-xl-offset-6{margin-left:50%}.ast-col-xl-offset-7{margin-left:58.3333333333%}.ast-col-xl-offset-8{margin-left:66.6666666667%}.ast-col-xl-offset-9{margin-left:75%}.ast-col-xl-offset-10{margin-left:83.3333333333%}.ast-col-xl-offset-11{margin-left:91.6666666667%}.ast-col-xl-offset-12{margin-left:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:left;border-width:0 1px 1px 0}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-left:3px;width:100%}a{color:#4169e1}a:focus,a:hover{color:#191970}a:focus{outline:thin dotted}a:hover{outline:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;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;text-align:center;display:block;margin-left:auto;margin-right:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 1em 1.5em 3em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-right:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-right:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;right:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;left:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;left:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.ast-social-icons{list-style-type:none;margin:0}.ast-social-icons li{display:inline-block;padding-right:15px}.ast-social-icons li:last-child{padding-right:0}.ast-social-icons a{display:block}.ast-social-icons i{font-style:normal;font-family:fontawesome;font-weight:400}.ast-social-icons i:before{font-weight:400}.single .entry-content .gallery{margin-left:-10px;margin-right:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;left:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;left:0;width:100%;height:100%}.ast-hidden{display:none!important}body{background-color:#fff}#page{display:block}#primary,#secondary{display:block;position:relative;float:left;width:100%}#primary{margin:4em 0}#secondary{margin:4em 0 2.5em;word-break:break-word;line-height:2}#secondary li{margin-bottom:.25em}#secondary li:last-child{margin-bottom:0}.ast-separate-container{background-color:#f5f5f5}.ast-separate-container #primary{padding:4em 0;margin:0;border:0}.ast-separate-container .site-main>.ast-row{margin-left:0;margin-right:0}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{background-color:#fff;border-bottom:1px solid #eee;margin:0;padding:5.34em 6.67em}.ast-separate-container .blog-layout-1{padding:0;border-bottom:0}.ast-separate-container .ast-article-single{border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{margin:0;padding:3.34em 2.4em}}.ast-page-builder-template .hentry{margin:0}.ast-page-builder-template .site-content>.ast-container{max-width:100%;padding:0}.ast-page-builder-template .site-content #primary{padding:0;margin:0}.ast-page-builder-template .no-results{text-align:center;margin:4em auto}.ast-page-builder-template .ast-pagination{padding:2em}.ast-page-builder-template .entry-header{margin-top:4em;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail{margin-top:0}.ast-page-builder-template .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}.ast-page-builder-template.ast-left-sidebar #secondary{padding-left:20px}.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px}.ast-page-builder-template.single .post-navigation{padding-bottom:2em}.ast-page-builder-template .ast-archive-description{margin-top:4em;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}@media (min-width:993px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{margin:4em 0;padding:0}.ast-right-sidebar #primary{padding-right:60px}.ast-right-sidebar #secondary{padding-left:60px}.ast-left-sidebar #primary{padding-left:60px}.ast-left-sidebar #secondary{padding-right:60px}}@media (max-width:992px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{padding-left:0;padding-right:0}.ast-right-sidebar #primary{padding-right:30px}.ast-right-sidebar #secondary{padding-left:30px}.ast-left-sidebar #primary{padding-left:30px}.ast-left-sidebar #secondary{padding-right:30px}}.astra-search-icon::before{content:"\e8b6";font-family:Astra;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ast-search-icon .astra-search-icon{font-size:1.3em}.main-navigation{-js-display:inline-flex;display:inline-flex;height:100%}.main-navigation ul{list-style:none;margin:0;padding-left:0;position:relative}.main-header-menu .menu-link,.main-header-menu a{text-decoration:none;padding:0 1em;display:inline-block;transition:all .2s linear}.main-header-menu .menu-item{position:relative}.main-header-menu .menu-item.focus>.sub-menu,.main-header-menu .menu-item:hover>.sub-menu{right:auto;left:0}.main-header-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu:hover>.sub-menu{right:0;left:auto}@media (min-width:769px){.main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu{width:240px;background:#fff;left:-999em;position:absolute;top:100%;z-index:99999}@media (min-width:769px){.main-header-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .sub-menu .menu-item:hover>.sub-menu{left:100%;right:auto}.main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:-100%}.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu .menu-link{padding:.9em 1em;display:block;word-wrap:break-word}.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;right:1em;top:50%;transform:translate(0,-50%) rotate(270deg)}.main-header-menu .sub-menu .sub-menu{top:0}.submenu-with-border .sub-menu{border-width:1px;border-style:solid}.submenu-with-border .sub-menu .menu-link{border-width:0 0 1px;border-style:solid}.submenu-with-border .sub-menu .sub-menu{top:-1px}.ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link{border-bottom-width:0}.ast-header-break-point .main-navigation{padding-left:0}.ast-header-break-point .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before{content:"\e900";font-family:Astra;font-size:.65em;text-decoration:inherit;display:inline-block;transform:translate(0,-2px) rotateZ(270deg);margin-right:5px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link{padding-left:50px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px}.ast-header-break-point .ast-header-custom-item,.ast-header-break-point .main-header-menu{background-color:#f9f9f9}.ast-header-break-point .main-header-menu .sub-menu{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto}.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:0}.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:0}.ast-header-break-point .submenu-with-border .sub-menu{border:0}.ast-mobile-menu-buttons{display:none}.ast-button-wrap{display:inline-block}.ast-button-wrap button{box-shadow:none;border:none}.ast-button-wrap .menu-toggle{padding:0;width:2.2em;height:2.1em;font-size:1.5em;font-weight:400;border-radius:2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:2px;vertical-align:middle;line-height:1.85714285714286}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:0 .5em;width:auto;text-align:center}.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu{font-size:15px;font-size:1rem;font-weight:600}.ast-button-wrap .menu-toggle .menu-toggle-icon{font-style:normal;display:inline-block;vertical-align:middle;line-height:2.05}.ast-button-wrap .menu-toggle .menu-toggle-icon:before{content:"\e5d2";font-family:Astra;text-decoration:inherit}.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before{content:"\e5cd"}.ast-button-wrap .menu-toggle .mobile-menu-wrap{display:inline-block}.ast-button-wrap .menu-toggle:focus{outline:thin dotted}.main-header-bar-navigation{flex:1}.header-main-layout-1 .ast-main-header-bar-alignment{margin-left:auto}.header-main-layout-3 .ast-main-header-bar-alignment{margin-right:auto}#site-navigation{height:100%}.ast-header-break-point .user-select{clear:both}.ast-header-break-point .ast-mobile-menu-buttons{display:block;align-self:center}.ast-header-break-point .main-header-bar-navigation{flex:auto}.ast-header-break-point .ast-main-header-bar-alignment{display:block;width:100%;flex:auto;order:4}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-next,.comment-navigation .nav-previous,.post-navigation .nav-next,.post-navigation .nav-previous,.posts-navigation .nav-next,.posts-navigation .nav-previous{width:50%;display:inline-block}.comment-navigation .nav-next,.post-navigation .nav-next,.posts-navigation .nav-next{text-align:right}.main-header-bar{z-index:1}.header-main-layout-1.ast-primary-menu-disabled .ast-masthead-custom-menu-items{text-align:right}.header-main-layout-1 .main-header-bar-navigation{text-align:right}.header-main-layout-1 .main-header-bar-navigation .sub-menu{text-align:left}.header-main-layout-1 .main-navigation{padding-left:15px;vertical-align:top}.header-main-layout-1 .main-header-container{align-items:stretch}.header-main-layout-2 .main-header-container{display:block}.header-main-layout-2 .site-branding{text-align:center;padding-bottom:1em}.header-main-layout-2 .site-title{justify-content:center}.header-main-layout-2 .main-navigation ul{justify-content:center}.header-main-layout-2 .main-header-bar-navigation{text-align:center}.header-main-layout-2 .main-header-bar-navigation .sub-menu{text-align:left}.header-main-layout-2 .ast-header-custom-item{justify-content:center;line-height:1.85714285714286}.header-main-layout-2 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-2 .widget{text-align:center}.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{-js-display:flex;display:flex;justify-content:center}.ast-header-custom-item-outside .header-main-layout-2 .site-branding{flex:0 0 100%}.header-main-layout-3 .ast-site-identity{text-align:right}.header-main-layout-3 .main-header-container{flex-direction:row-reverse;align-items:stretch}.header-main-layout-3 .main-navigation{padding-right:15px}.header-main-layout-3 .main-navigation ul{justify-content:flex-start}.header-main-layout-3 .main-header-bar-navigation{text-align:left}.header-main-layout-3 .ast-header-custom-item{justify-content:flex-start}.header-main-layout-3 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-3 li .ast-search-icon{padding-left:.5em}.header-main-layout-3 .ast-search-menu-icon{left:0;right:0}.header-main-layout-3 li .ast-search-menu-icon{left:1em;right:0}.header-main-layout-3 .main-header-bar .ast-search-menu-icon .search-form{padding:0 0 0 3em}.header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{left:-1em;right:auto}.ast-header-break-point .header-main-layout-1 .site-branding{padding-right:1em}.ast-header-break-point .header-main-layout-1 .main-header-bar-navigation{text-align:left}.ast-header-break-point .header-main-layout-1 .main-navigation{padding-left:0}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .site-branding{padding-left:0;padding-right:0;padding-bottom:1em;flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items,.ast-header-break-point .ast-mobile-header-stack .ast-site-identity,.ast-header-break-point .ast-mobile-header-stack .site-branding,.ast-header-break-point .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-title{text-align:left}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{flex:1 1 100%;text-align:center;justify-content:center}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .main-header-container{flex-direction:initial}.ast-header-break-point .header-main-layout-2 .ast-mobile-menu-buttons{-js-display:flex;display:flex;justify-content:center}.ast-header-break-point .header-main-layout-2 .main-header-bar-navigation,.ast-header-break-point .header-main-layout-2 .widget{text-align:left}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-3 .main-header-bar .ast-search-icon{margin-right:auto;margin-left:1em}.ast-header-break-point .header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:auto;left:0}.ast-header-break-point .header-main-layout-3.ast-mobile-header-inline .ast-mobile-menu-buttons{justify-content:flex-start}.ast-header-break-point .header-main-layout-3 li .ast-search-menu-icon{left:0}.ast-header-break-point .header-main-layout-3 .site-branding{padding-left:1em;justify-content:flex-end}.ast-header-break-point .header-main-layout-3 .main-navigation{padding-right:0}.ast-logo-title-inline .ast-site-identity{-js-display:inline-flex;display:inline-flex;vertical-align:middle;align-items:center}.ast-logo-title-inline .site-logo-img{padding-right:1em}.ast-logo-title-inline.header-main-layout-2 .site-logo-img+.ast-site-title-wrap .site-title{justify-content:flex-start}@media (max-width:544px){.site-branding img,.site-header .site-logo-img .custom-logo-link img{max-width:100%}.ast-header-custom-item-outside .ast-mobile-header-stack .site-branding{padding-right:0}.ast-header-custom-item-outside .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center;text-align:center;padding-bottom:0}}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{text-align:left}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-title{justify-content:left}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:1em}.ast-header-break-point .ast-mobile-header-inline .main-header-container,.ast-header-break-point .ast-mobile-header-stack .main-header-container{-js-display:flex;display:flex}.site-header{z-index:99;position:relative}.main-header-container{position:relative}.main-header-bar-wrap{position:relative}.main-header-bar-wrap .nav-fallback-text{float:right}.main-header-bar{background-color:#fff;border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .main-header-bar{border:0}.ast-header-break-point .nav-fallback-text{float:none}.ast-header-break-point .main-header-bar{border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items{padding-left:20px;padding-right:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-header-custom-item .widget:last-child{margin-bottom:1em}.main-header-bar{margin-left:auto;margin-right:auto}.site-logo-img img{transition:all .2s linear}.ast-header-widget-area{line-height:1.65}.ast-header-widget-area .no-widget-text,.ast-header-widget-area .widget-title{margin-bottom:0}.ast-header-widget-area .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-widget-area .widget p{margin-bottom:0}.ast-header-widget-area .widget ul{position:static;border:0;width:auto}.ast-header-widget-area .widget ul a{border:0}.ast-header-widget-area .widget.widget_search .search-field,.ast-header-widget-area .widget.widget_search .search-field:focus{padding:10px 45px 10px 15px}.ast-header-widget-area .widget:last-child{margin-bottom:.5em;margin-right:0}.submenu-with-border .ast-header-widget-area .widget ul{position:static;border:0;width:auto}.submenu-with-border .ast-header-widget-area .widget ul a{border:0}.ast-header-break-point .ast-header-widget-area .widget{margin:.5em 0;display:block}.ast-header-custom-item .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-custom-item .widget p{margin-bottom:0}.ast-header-custom-item .widget li{width:auto}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .astra-megamenu .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .sub-menu{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-custom-item-inside .button-custom-menu-item .menu-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item{padding-left:0;padding-right:0;margin-top:0;margin-bottom:0}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link{display:block}.button-custom-menu-item .ast-custom-button-link .ast-custom-button{font-size:inherit;font-family:inherit;font-weight:inherit}.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover{transition:all .1s ease-in-out}.nav-style{display:block;padding:0 15px}.site-branding{line-height:1;align-self:center}.ast-no-menu-items .main-navigation{display:none}.ast-menu-toggle{display:none;background:0 0;color:inherit;border-style:dotted;border-color:transparent}.ast-menu-toggle:focus,.ast-menu-toggle:hover{background:0 0;border-color:inherit;color:inherit}.ast-menu-toggle:focus{outline:thin dotted}.socil-font{float:left;margin-right:10px}.ast-main-header-nav-open .main-header-bar{padding-bottom:0}.main-header-bar{z-index:4;position:relative;line-height:4}.main-header-bar .main-header-bar-navigation{height:100%}.main-header-bar .main-header-bar-navigation:empty{padding:0}.main-header-bar .main-header-bar-navigation .sub-menu{line-height:1.45}.main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after{content:"\e900";display:inline-block;font-family:Astra;font-size:9px;font-size:.6rem;font-weight:700;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;line-height:normal}.main-header-bar .main-header-bar-navigation .ast-search-icon{display:block;z-index:4;position:relative}.main-header-bar .main-header-bar-navigation.toggle-on{padding-top:1em}.main-header-bar .ast-search-menu-icon .search-form{background-color:#fff}.ast-primary-menu-disabled .main-header-bar .main-header-bar-navigation.toggle-on{padding-top:0}.ast-flyout-menu-enable .main-header-bar .ast-masthead-custom-menu-items .ast-custom-button-link{border:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{visibility:visible;opacity:1;position:relative;right:auto;top:auto;transform:none}.ast-above-header-section .user-select .ast-dropdown-active .slide-search.astra-search-icon,.ast-masthead-custom-menu-items .ast-dropdown-active .slide-search.astra-search-icon,.below-header-user-select .ast-dropdown-active .slide-search.astra-search-icon{color:#757575}.ast-search-menu-icon.slide-search .search-form{-webkit-backface-visibility:visible;backface-visibility:visible;visibility:hidden;opacity:0;transition:all .2s;position:absolute;z-index:3;right:-1em;top:50%;transform:translateY(-50%)}.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form{visibility:visible;opacity:1}.ast-search-menu-icon .search-form{border:1px solid #e7e7e7;line-height:normal;padding:0 3em 0 0;border-radius:2px;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;color:inherit;background-color:#fff}.ast-search-menu-icon .astra-search-icon{-js-display:flex;display:flex;line-height:normal}.ast-search-menu-icon .astra-search-icon:focus{outline:0}.ast-search-menu-icon .search-field{border:none;background-color:transparent;transition:width .2s;border-radius:inherit;color:inherit;font-size:inherit;width:0;color:#757575}.ast-search-menu-icon .search-submit{display:none;background:0 0;border:none;font-size:1.3em;color:#757575}.ast-search-menu-icon.ast-dropdown-active{visibility:visible;opacity:1;position:relative}.ast-search-menu-icon.ast-dropdown-active .search-field{width:235px}li.ast-masthead-custom-menu-items{padding:0 1em}li.ast-masthead-custom-menu-items a{padding-left:0;padding-right:0;vertical-align:middle}li.ast-masthead-custom-menu-items a,li.ast-masthead-custom-menu-items a:focus,li.ast-masthead-custom-menu-items a:hover{background:0 0}li.ast-masthead-custom-menu-items .ast-search-icon .astra-search-icon{line-height:1}.ast-search-icon{z-index:4;position:relative;line-height:normal}.ast-primary-menu-disabled.ast-mobile-header-inline .ast-masthead-custom-menu-items{text-align:right}.ast-primary-menu-disabled .ast-masthead-custom-menu-items{flex:1}.ast-primary-menu-disabled.header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-primary-menu-disabled.header-main-layout-3 .ast-masthead-custom-menu-items{text-align:left}.ast-masthead-custom-menu-items{padding:0 1em}.search-custom-menu-item{position:relative}.custom-mobile-logo-link{display:none}.ast-site-identity{padding:1em 0}.ast-header-break-point .ast-mobile-header-stack .site-description{text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-description{text-align:left}.ast-header-break-point.ast-header-custom-item-outside .ast-primary-menu-disabled .ast-mobile-menu-buttons{display:none}.ast-header-break-point .ast-hide-custom-menu-mobile .ast-masthead-custom-menu-items{display:none}.ast-header-break-point .ast-mobile-header-inline .site-branding{text-align:left;padding-bottom:0}.ast-header-break-point .ast-mobile-header-inline.header-main-layout-3 .site-branding{text-align:right}.ast-header-break-point .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;flex:1;align-self:center}.ast-header-break-point ul li.ast-masthead-custom-menu-items a{padding:0;display:inline-block;width:auto;border:0}.ast-header-break-point li.ast-masthead-custom-menu-items{padding-left:20px;padding-right:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-site-identity{width:100%}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.menu-link:after{display:none}.ast-header-break-point .main-header-bar{display:block;line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation{line-height:3;display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point.ast-header-custom-item-inside .ast-search-menu-icon{position:relative;display:block;right:auto;transform:none}.ast-header-break-point .main-navigation{display:block;width:100%}.ast-header-break-point .main-navigation ul>.menu-item:first-child{border-top:0}.ast-header-break-point .main-navigation ul ul{left:auto;right:auto}.ast-header-break-point .main-navigation li{width:100%}.ast-header-break-point .main-navigation .widget{margin-bottom:1em}.ast-header-break-point .main-navigation .widget li{width:auto}.ast-header-break-point .main-navigation .widget:last-child{margin-bottom:0}.ast-header-break-point .main-header-bar-navigation{width:calc(100% + 40px);margin:0 -20px}.ast-header-break-point .main-header-menu ul ul{top:0}.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link{display:none}.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block}.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg,.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link{display:block}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-menu-buttons{order:2}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar-navigation{order:3}.ast-header-break-point.ast-header-custom-item-outside .ast-masthead-custom-menu-items{order:1}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-mobile-menu-buttons,.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{-js-display:flex;display:flex}.ast-header-break-point.ast-header-custom-item-outside.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:0}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-site-identity{width:100%}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-3 .ast-site-identity{width:auto}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-2 .site-branding{flex:1 1 auto}@media (max-width:544px){.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{width:100%}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center}.ast-header-break-point .ast-mobile-header-stack .main-header-bar-wrap .site-branding{flex:1 1 auto}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-2 .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-1 .site-branding{padding-bottom:0}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{padding:.8em 1em 0 1em;text-align:center;width:100%}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-masthead-custom-menu-items,.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-mobile-menu-buttons{padding-top:.8em}}.customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-display-site-title button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-astra-settings-display-site-tagline button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:none}.site-logo-img:hover .customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:none}.main-navigation:hover .customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:inline-block}.ast-primary-sticky-header-active .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{left:100px}.ast-primary-sticky-header-active.ast-full-width-header .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{left:5px}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav .customize-partial-edit-shortcut-button{top:15px}.ast-masthead-custom-menu-items.search-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{left:-30px;top:-7px;display:none}.ast-masthead-custom-menu-items.search-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.button-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{top:-14px;display:none}.ast-masthead-custom-menu-items.button-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.text-html-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{left:-30px;top:15px;display:none}.ast-masthead-custom-menu-items.text-html-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.widget-custom-menu-item{text-align:left}.ast-masthead-custom-menu-items.widget-custom-menu-item .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{left:-25px;top:-8px;display:none}.ast-masthead-custom-menu-items.widget-custom-menu-item:hover .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{top:-20px;left:-25px;display:none}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-below-header .below-header-user-select .ast-search-menu-icon,.ast-below-header .below-header-user-select .ast-site-header-cart,.ast-below-header .below-header-user-select.below-header-widget{text-align:left}.ast-below-header .customize-partial-edit-shortcut{top:1em}.ast-above-header-section .user-select .ast-search-menu-icon{text-align:left}.ast-above-header .customize-partial-edit-shortcut{top:.3em}.ast-above-header-section-1 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{left:-14px}.ast-above-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-1-search-box-type .customize-partial-edit-shortcut-button{left:-25px;top:-10px}.ast-above-header-section-1.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{left:-25px;top:-15px}.ast-above-header-section-1 .customize-partial-edit-shortcut-astra-settings-above-header-section-1-html .customize-partial-edit-shortcut-button{left:-25px}.ast-above-header-section-2 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{left:-14px}.ast-above-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;left:-25px}.ast-above-header-section-2.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-1.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{left:-14px}.below-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-1-search-box-type .customize-partial-edit-shortcut-button{top:-10px;left:-25px}.below-header-section-1 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-1 .customize-partial-edit-shortcut-astra-settings-below-header-section-1-html .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-2.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{left:-14px}.below-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;left:-25px}.below-header-section-2 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-2 .customize-partial-edit-shortcut-astra-settings-below-header-section-2-html .customize-partial-edit-shortcut-button{left:-25px}.customize-partial-edit-shortcut-astra-settings-above-header-layout .customize-partial-edit-shortcut-button,.customize-partial-edit-shortcut-astra-settings-below-header-layout .customize-partial-edit-shortcut-button{left:-60px}.ast-header-break-point .ast-mobile-menu-buttons{text-align:right;-js-display:flex;display:flex;justify-content:flex-end}.ast-header-break-point .ast-mobile-menu-buttons .ast-button-wrap .ast-mobile-menu-buttons-minimal{font-size:1.7em}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.group-blog .byline,.single .byline{display:inline}.page-links{clear:both;margin-top:1em}.page-links a{display:inline-block}.page-links a .page-link{border-color:#eaeaea;background:0 0}.page-links .page-link{padding:0;margin:0 0 .3em .3em;border:2px solid #eaeaea;color:#000;background:0 0;font-size:.8em;width:2.5em;height:2.5em;line-height:calc(2.5em - 4px);display:inline-block;text-align:center;transition:all .2s linear}.page-links .page-link:focus,.page-links .page-link:hover{color:#000}@media (max-width:768px){.page-links .page-link{margin-bottom:6px}}.entry-content>:last-child,.entry-summary>:last-child,.page-content>:last-child{margin-bottom:0}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}.ast-no-sidebar .entry-content .alignfull{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);max-width:100vw;width:100vw}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .alignwide{margin-left:-100px;margin-right:-100px;max-width:unset;width:unset}.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-6.67em;margin-right:-6.67em;width:auto}@media (max-width:1200px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-2.4em;margin-right:-2.4em}}@media (max-width:768px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-2.14em;margin-right:-2.14em}}@media (max-width:544px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-1em;margin-right:-1em}}.ast-no-sidebar.ast-separate-container .entry-content .alignwide{margin-left:-20px;margin-right:-20px}.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.blocks-gallery-grid,.wp-block-gallery{margin:0}.wp-block-separator{max-width:100px}.wp-block-separator.is-style-wide{max-width:none}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:10px}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:10px}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{flex-basis:100%}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:0}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:0}}body{overflow-x:hidden}body .entry-content .wp-block-latest-posts{margin-left:0}body .entry-content .wp-block-latest-posts li{list-style:none}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts{margin-left:0}.ast-header-break-point .entry-content .alignwide{margin-left:auto;margin-right:auto}.entry-content .blocks-gallery-item img{margin-bottom:auto}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide{margin-left:0;margin-right:0}.widget-title{font-weight:400;margin-bottom:1em;line-height:1.5}.widget{margin:0 0 2.8em 0}.widget:last-child{margin-bottom:0}.widget select{max-width:100%}.widget ul{margin:0;list-style-type:none}.widget_nav_menu ul ul.sub-menu{margin-top:.25em}.widget_nav_menu ul ul.sub-menu li{padding-left:20px}.widget_nav_menu ul ul.sub-menu a:after{left:-20px}.widget_nav_menu ul ul.sub-menu ul a:after{left:-40px}.widget_nav_menu ul ul.sub-menu ul ul a:after{left:-60px}.widget_nav_menu li{transition:all .2s linear}.widget_search .search-form{position:relative;padding:0;background:initial;color:inherit}.widget_search .search-form:after{font-family:Astra;font-size:1.2em;font-weight:400;content:"\e8b6";position:absolute;top:50%;right:15px;transform:translate(0,-50%)}.widget_search .search-form>label{position:relative}.widget_search .search-form input[type=submit],.widget_search .search-form input[type=submit]:focus,.widget_search .search-form input[type=submit]:hover{padding:13px 20px;border-radius:2px;border:none;top:0;right:0;position:absolute;color:transparent;background:0 0;max-width:45px;z-index:2}.widget_search .search-form .search-field{background:#fafafa;border-width:1px;border-color:#eaeaea;border-radius:2px}.widget_search .search-field,.widget_search .search-field:focus{width:100%;padding:16px 45px 16px 15px}.widget_archive ul.children,.widget_categories ul.children,.widget_pages ul.children{position:relative;margin-top:5px;width:100%}.widget_archive ul.children li,.widget_categories ul.children li,.widget_pages ul.children li{padding-left:20px}.widget_archive li ul.children a:after,.widget_categories li ul.children a:after,.widget_pages li ul.children a:after{left:-20px}.widget_archive li ul.children ul a:after,.widget_categories li ul.children ul a:after,.widget_pages li ul.children ul a:after{left:-40px}.widget_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.widget_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-right:4px;line-height:1.5;transition:all .2s linear}.widget_calendar table,.widget_calendar td,.widget_calendar th{padding:0;text-align:center}.widget_calendar table,.widget_calendar th{border:none}.widget_calendar td{border-right:none;border-left:none}.widget_calendar caption{line-height:2.7em}.widget_calendar thead{line-height:2.5em}.widget_calendar thead a{color:#0274be;font-size:1rem;vertical-align:middle}.widget_calendar thead td{vertical-align:middle;font-weight:700}.widget_calendar thead>tr>th{line-height:2.5em;border-bottom:2px solid #eaeaea;border-top:2px solid #eaeaea}.widget_calendar tbody{line-height:2.1em;text-align:center}.widget_calendar tbody>tr>td{width:14.2857%}.widget_calendar tbody>tr:first-child>td{padding-top:3px}.widget_calendar #today{background:#0274be}.ast-separate-container.ast-two-container #secondary .widget{background-color:#fff;padding:2em;margin-bottom:2em}.ast-footer-overlay{background-color:#3a3a3a;padding-top:2em;padding-bottom:2em}@media (min-width:769px){.ast-footer-overlay{padding-top:2.66666em;padding-bottom:2.66666em}}.ast-small-footer{line-height:1.85714285714286;position:relative}.ast-small-footer .nav-menu a{padding:0 .5em}.ast-small-footer .no-widget-text,.ast-small-footer .widget-title{margin-bottom:0}.ast-small-footer .widget{margin-bottom:1em}.ast-small-footer .widget ul{position:static;border:0;width:auto}.ast-small-footer .widget ul a{border:0}.ast-small-footer .widget:last-child{margin-bottom:0}@media (min-width:769px){.ast-small-footer .nav-menu li{margin:0}.ast-small-footer .nav-menu li:first-child a{padding-left:0}.ast-small-footer .nav-menu li:last-child a{padding-right:0}}.ast-footer-site-title .customize-partial-edit-shortcut-button{display:none}.footer-sml-layout-1{text-align:center}.footer-sml-layout-1 .ast-small-footer-section-2{margin-top:1em}.footer-sml-layout-2 .ast-small-footer-section-1,.footer-sml-layout-2 .ast-small-footer-section-2{text-align:center}@media (min-width:769px){.footer-sml-layout-2 .ast-small-footer-section-1{text-align:left}.footer-sml-layout-2 .ast-small-footer-section-1 .menu-item .menu-link{padding:0 1em 0 0}.footer-sml-layout-2 .ast-small-footer-section-2{text-align:right}.footer-sml-layout-2 .ast-small-footer-section-2 .menu-item .menu-link{padding:0 0 0 1em}}@media (max-width:768px){.ast-header-break-point .footer-sml-layout-2 .ast-small-footer-section-2{margin-top:1em}}@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0){.ast-small-footer-wrap .ast-row:before{display:block}}.site-footer{color:#fff}.site-footer .widget-title{color:#eaeaea}.site-footer a{color:#eaeaea}.site-footer a:focus,.site-footer a:hover{color:#fff}.site-footer ul{margin:0;list-style-type:none}.site-footer .nav-menu li{display:inline-block}.footer-adv-overlay{background-color:#3a3a3a;padding-top:70px;padding-bottom:70px}.footer-adv p:last-child{margin-bottom:0}.footer-adv .widget_calendar table{margin-bottom:0}@media all and (max-width:768px){.footer-adv-widget-1 .widget:last-child{margin:0 0 2.8em}}.footer-adv .ast-no-widget-row .widget-title{text-transform:capitalize}@media all and (max-width:768px){.footer-adv-layout-4 .footer-adv-widget-2 .widget:last-child,.footer-adv-layout-4 .footer-adv-widget-3 .widget:last-child{margin:0 0 2.8em}}input[type=email],input[type=number],input[type=password],input[type=reset],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:#666;padding:.75em;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{background-color:#fff;border-color:#eaeaea;box-shadow:none}input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover{box-shadow:none}textarea{width:100%}input[type=search]:focus{outline:thin dotted}input[type=range]{-webkit-appearance:none;width:100%;margin:5.7px 0;padding:0;border:none}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;-webkit-appearance:none;margin-top:-5.7px}input[type=range]:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.2)}input[type=range]::-moz-range-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer}input[type=range]::-ms-track{width:100%;height:8.6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:rgba(199,199,199,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-fill-upper{background:rgba(255,255,255,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;height:8.6px}input[type=range]:focus::-ms-fill-lower{background:rgba(255,255,255,.2)}input[type=range]:focus::-ms-fill-upper{background:rgba(255,255,255,.2)}input[type=color]{border:none;width:100px;padding:0;height:30px;cursor:pointer}input[type=color]::-webkit-color-swatch-wrapper{padding:0;border:none}input[type=color]::-webkit-color-swatch{border:none}.page .entry-header{margin-bottom:1.5em}.search .entry-header{margin-bottom:1em}.ast-single-post .entry-header.ast-header-without-markup,.ast-single-post .entry-header.ast-no-title.ast-no-thumbnail{margin-bottom:0}.entry-header{margin-bottom:1em;word-wrap:break-word}.entry-header+.ast-blog-featured-section{margin-top:.5em}.entry-content{word-wrap:break-word}.entry-content p{margin-bottom:1.6em}.read-more{margin-bottom:0}.read-more .ast-right-arrow{font-size:1em}.ast-no-thumb .ast-blog-featured-section{margin-bottom:0}.ast-no-thumb .entry-header+.ast-blog-featured-section{margin-top:0}.ast-blog-featured-section{margin-bottom:1.5em}.ast-blog-featured-section .gallery{margin-bottom:0}.error404 .page-header{margin-bottom:1.5em}.error404 .page-header .page-title{margin-bottom:0}.archive .entry-title,.blog .entry-title,.search .entry-title{line-height:1.3}.archive .format-aside .entry-title,.archive .format-status .entry-title,.blog .format-aside .entry-title,.blog .format-status .entry-title{display:none}.page-title{margin-bottom:1em;font-weight:400}.entry-title{margin-bottom:.2em}.ast-article-post{margin-bottom:2.5em}.ast-article-post:last-child{margin-bottom:0;border-bottom:0}.search .site-content .content-area .search-form{margin-bottom:3em}.blog-layout-1 .post-thumb{padding-left:0;padding-right:0;position:relative}.blog .posted-on{z-index:1}.ast-blog-featured-section .posted-on{width:5.714285714em;height:5.714285714em;padding:.7em}.ast-blog-featured-section .posted-on .date-month,.ast-blog-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-blog-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-author-box img.avatar{border-radius:50%;margin:0 0 0 20px}.ast-archive-description{margin-bottom:2.5em;padding-bottom:1.3333em;border-bottom:1px solid #eee}.ast-archive-description .ast-archive-title{margin-bottom:4px;font-size:40px;font-size:2.85714rem;font-weight:300}.ast-archive-description p{margin-bottom:0;font-size:20px;font-size:1.42857rem;line-height:1.65;font-weight:300}.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{background-color:#eee;padding-bottom:0;border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-archive-description{margin:0;padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-archive-description{padding:2.14em}}@media (min-width:1201px){.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{margin:0;padding:5em 6.67em 3.33333em}}.single .entry-header{margin-bottom:2em}.single .post-navigation{margin:0;padding:2em 0 0;border-top:1px solid #eee}@media (max-width:768px){.single .post-navigation{padding-top:1.5em}}.single .post-navigation a{margin:2px;display:inline-block;text-align:center;color:#000}@media (min-width:421px){.single .post-navigation .nav-links{-js-display:flex;display:flex}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{flex:auto}}@media (max-width:420px){.single .post-navigation .ast-left-arrow,.single .post-navigation .ast-right-arrow{display:none}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{width:100%}.single .post-navigation .nav-next a,.single .post-navigation .nav-previous a{width:100%}.single .post-navigation .nav-previous{margin-bottom:1em}}.single.ast-page-builder-template .entry-header{padding-left:20px;padding-right:20px}.single .entry-header .ast-single-post-order+.post-thumb img{margin-top:2em;margin-bottom:0}.single .entry-header.ast-no-title .post-thumb+.ast-single-post-order{margin-top:0}.single .entry-header .post-thumb+.ast-single-post-order{margin-top:2em}.single .entry-header .post-thumb img{margin-top:0;margin-bottom:0}.page .has-post-thumbnail .post-thumb img{margin-bottom:1.5em}.post-password-form{text-align:center}@media (max-width:420px){.post-password-form input[type=password]{display:block;margin:10px auto}}.post-password-form input[type=submit]{padding:10px 20px;border-radius:2px}.ast-separate-container .post-navigation{border-top:0;padding-left:3.33333em;padding-right:3.33333em}@media (max-width:420px){.ast-separate-container .post-navigation{padding-left:0;padding-right:0}}@media (max-width:768px){.ast-separate-container .entry-header{margin-bottom:1em}}.ast-page-builder-template.single-post .site-content>.ast-container{max-width:100%}.comments-count-wrapper{padding:2em 0}.comments-count-wrapper .comments-title{font-weight:400;word-wrap:break-word}.ast-comment-list{margin:0;word-wrap:break-word;padding-bottom:.5em;list-style:none}.ast-comment-list li{list-style:none}.ast-comment-list li.depth-1 .ast-comment,.ast-comment-list li.depth-2 .ast-comment{border-bottom:1px solid #eee}.ast-comment-list .children{margin-left:2em}@media (max-width:992px){.ast-comment-list .children{margin-left:1em}}.ast-comment-list .comment-respond{padding:1em 0;border-bottom:1px solid #eee}.ast-comment-list .comment-respond .comment-reply-title{margin-top:0;padding-top:0}.ast-comment-list .comment-respond p{margin-bottom:.5em}.ast-comment-list #cancel-comment-reply-link{white-space:nowrap;font-size:15px;font-size:1rem;margin-left:1em}.ast-comment-list .ast-comment-edit-reply-wrap{-js-display:flex;display:flex;justify-content:flex-end}.ast-comment-list .ast-edit-link{flex:1}.ast-comment-list .comment-awaiting-moderation{margin-bottom:0}.ast-comment{padding:1em 0}.ast-comment-avatar-wrap{float:left;clear:right;margin-right:1.33333em}.ast-comment-avatar-wrap img{border-radius:50%}.ast-comment-meta-wrap{float:left;clear:right;padding:0 0 1.33333em}.ast-comment-content{clear:both}.ast-comment-cite-wrap{text-align:left}.ast-comment-cite-wrap cite{font-style:normal}.comment-reply-title{padding-top:1em;font-weight:400;line-height:1.65}.ast-comment-meta{margin-bottom:.5em}.ast-comment-time .reply,.ast-comment-time .timendate{margin-right:.5em}.comments-area{border-top:1px solid #eee;margin-top:2em}.comments-area .comment-form-comment{width:100%;border:none;margin:0;padding:0}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags{margin-bottom:1.5em}.comments-area .form-submit{margin-bottom:0}.comments-area .ast-comment-formwrap input[type=text],.comments-area textarea#comment{width:100%;border-radius:0;vertical-align:middle;margin-bottom:10px}.comments-area .no-comments{margin-top:.5em;margin-bottom:.5em}.comments-area p.logged-in-as{margin-bottom:1em}.comments-area #wp-comment-cookies-consent{margin-right:10px}.ast-separate-container .comments-count-wrapper{background-color:#fff;padding:2em 6.67em 0}@media (max-width:1200px){.ast-separate-container .comments-count-wrapper{padding:2em 3.34em}}.ast-separate-container .comments-area{border-top:0}.ast-separate-container .ast-comment-list{padding-bottom:0}.ast-separate-container .ast-comment-list li{background-color:#fff}.ast-separate-container .ast-comment-list li.depth-1{padding:4em 6.67em;margin-bottom:2em}@media (max-width:1200px){.ast-separate-container .ast-comment-list li.depth-1{padding:3em 3.34em}}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .children li{padding-bottom:0;padding-top:0;margin-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list .comment-respond{padding-top:0;padding-bottom:1em;background-color:transparent}.ast-separate-container .ast-comment-list .pingback p{margin-bottom:0}.ast-separate-container .ast-comment-list .bypostauthor{padding:2em;margin-bottom:1em}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor{background:0 0;margin-bottom:0;padding-right:0;padding-bottom:0;padding-top:0}.ast-separate-container .ast-comment-list .bypostauthor li{background:0 0;margin-bottom:0;padding:0 0 0 2em}.ast-separate-container .comment-respond{background-color:#fff;padding:4em 6.67em;border-bottom:0}@media (max-width:1200px){.ast-separate-container .comment-respond{padding:3em 2.34em}}.ast-separate-container .comment-reply-title{padding-top:0}.ast-page-builder-template .comments-area{padding-left:20px;padding-right:20px;margin-top:2em;margin-bottom:2em}.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers,.post-navigation a{padding:0 1.5em;height:2.33333em;line-height:calc(2.33333em - 3px)}.post-navigation a{background:0 0;font-size:16px;font-size:1.06666rem}.ast-pagination{display:inline-block;width:100%;padding-top:2em}@media (min-width:993px){.ast-pagination{padding-left:3.33333em;padding-right:3.33333em}}.ast-pagination .page-numbers{display:inline-block;width:2.33333em;height:2.33333em;font-size:16px;font-size:1.06666rem;line-height:calc(2.33333em - 3px);text-align:center}.ast-pagination .nav-links{display:inline-block;width:100%}@media (max-width:420px){.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers{width:100%;text-align:center;margin:0}}.ast-pagination .next.page-numbers,.ast-pagination .next.page-numbers:focus,.ast-pagination .next.page-numbers:visited,.ast-pagination .prev.page-numbers,.ast-pagination .prev.page-numbers:focus,.ast-pagination .prev.page-numbers:visited{display:inline-block;width:auto}@media (min-width:769px){.ast-pagination .next.page-numbers.next,.ast-pagination .next.page-numbers:focus.next,.ast-pagination .next.page-numbers:visited.next,.ast-pagination .prev.page-numbers.next,.ast-pagination .prev.page-numbers:focus.next,.ast-pagination .prev.page-numbers:visited.next{margin-right:0}}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers.dots:focus,.ast-pagination .next.page-numbers.dots:hover,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:focus.dots:focus,.ast-pagination .next.page-numbers:focus.dots:hover,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .next.page-numbers:visited.dots:focus,.ast-pagination .next.page-numbers:visited.dots:hover,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers.dots:focus,.ast-pagination .prev.page-numbers.dots:hover,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:focus.dots:focus,.ast-pagination .prev.page-numbers:focus.dots:hover,.ast-pagination .prev.page-numbers:visited.dots,.ast-pagination .prev.page-numbers:visited.dots:focus,.ast-pagination .prev.page-numbers:visited.dots:hover{border:2px solid #eaeaea;background:0 0}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:visited.dots{cursor:default}.ast-pagination .next.page-numbers{float:right;text-align:right}@media (max-width:768px){.ast-pagination .next.page-numbers .page-navigation{padding-right:0}}@media (max-width:768px){.ast-pagination .prev_next{display:inline-block;width:100%}}.ast-pagination .prev_next .next .ast-right-arrow,.ast-pagination .prev_next .prev .ast-left-arrow{font-size:1em;line-height:1em}@media (min-width:769px){.ast-pagination .prev_next{float:right}}.ast-404-layout-1{text-align:center;margin:4em auto}.ast-404-layout-1 .page-sub-title{font-size:1.5rem;font-weight:700}.ast-404-layout-1 .widget_search{padding-top:.5em}.ast-404-search{margin-top:1.5em}.ast-404-search .widget_search{max-width:370px;margin:0 auto}.ast-separate-container .error-404,.ast-separate-container .no-results{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:3.34em 2.4em}}@media (max-width:768px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 2.14em}}@media (max-width:544px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 1em}}@media (min-width:1201px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:5.34em 6.67em}}.blog-layout-1{width:100%;display:inline-block;padding-bottom:2em;vertical-align:middle;border-bottom:1px solid #eee}.blog-layout-1 .posted-on{left:0}.blog-layout-1 .post-content,.blog-layout-1 .post-thumb{padding-left:0;padding-right:0}.fl-builder-content{clear:both}.fl-theme-builder-archive .fl-post-column>.hentry,.fl-theme-builder-archive .fl-post-gallery-post.hentry{margin:0}.fl-theme-builder-archive h2.fl-post-feed-title{clear:initial}.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width{padding-left:0;padding-right:0}.js_active .vc_row{margin-left:auto;margin-right:auto}.js_active .ast-plain-container.ast-single-post #primary,.js_active .ast-plain-container.ast-single-post .hentry{margin:0;padding-top:0;padding-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:4em}.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:1.5em}}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post #secondary{margin-top:1.5em}}.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;left:0!important}.js_active .ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;left:0!important;padding-right:0!important;padding-left:0!important}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;left:0!important}.elementor-post.elementor-grid-item.hentry{margin-bottom:0}.elementor-element .elementor-wc-products .woocommerce[class*=columns-] ul.products li.product{width:auto;margin:0;float:none}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product{width:auto;margin:0;float:none}.ast-flex{-js-display:flex;display:flex;flex-wrap:wrap}.ast-flex-1{flex:1}.ast-flex-2{flex:2}.ast-flex-3{flex:3}.ast-flex-4{flex:4}.ast-flex-5{flex:5}.ast-inline-flex{-js-display:inline-flex;display:inline-flex;align-items:center;flex-wrap:wrap;align-content:center}.ast-flex-direction-row{flex-direction:row}.ast-flex-direction-row-reverse{flex-direction:row-reverse}.ast-flex-direction-column{flex-direction:column}.ast-flex-direction-column-reverse{flex-direction:column-reverse}.ast-flex-wrap-nowrap{flex-wrap:nowrap}.ast-flex-wrap-wrap{flex-wrap:wrap}.ast-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse}.ast-justify-content-flex-start{justify-content:flex-start}.ast-justify-content-flex-end{justify-content:flex-end}.ast-justify-content-center{justify-content:center}.ast-justify-content-space-between{justify-content:space-between}.ast-justify-content-space-around{justify-content:space-around}.ast-align-items-flex-start{align-items:flex-start}.ast-align-items-flex-end{align-items:flex-end}.ast-align-items-center{align-items:center}.ast-align-items-baseline{align-items:baseline}.ast-align-items-stretch{align-items:stretch}.ast-align-content-flex-start{align-content:flex-start}.ast-align-content-flex-end{align-content:flex-end}.ast-align-content-center{align-content:center}.ast-align-content-space-between{align-content:space-between}.ast-align-content-space-around{align-content:space-around}.ast-align-content-stretch{align-content:stretch}.ast-order-1{order:1}.ast-order-2{order:2}.ast-order-3{order:3}.ast-order-4{order:4}.ast-order-5{order:5}.ast-flex-grow-1{flex-grow:1}.ast-flex-grow-2{flex-grow:2}.ast-flex-grow-3{flex-grow:3}.ast-flex-grow-4{flex-grow:4}.ast-flex-grow-5{flex-grow:5}.ast-flex-shrink-1{flex-shrink:1}.ast-flex-shrink-2{flex-shrink:2}.ast-flex-shrink-3{flex-shrink:3}.ast-flex-shrink-4{flex-shrink:4}.ast-flex-shrink-5{flex-shrink:5}.ast-align-self-auto{align-self:auto}.ast-align-self-flex-start{align-self:flex-start}.ast-align-self-flex-end{align-self:flex-end}.ast-align-self-center{align-self:center}.ast-align-self-baseline{align-self:baseline}.ast-align-self-stretch{align-self:stretch} \ No newline at end of file + */.ast-container{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container::after{content:"";display:table;clear:both}@media (min-width:544px){.ast-container{max-width:100%}}@media (min-width:768px){.ast-container{max-width:100%}}@media (min-width:992px){.ast-container{max-width:100%}}@media (min-width:1200px){.ast-container{max-width:100%}}.ast-container-fluid{margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-container-fluid::after{content:"";display:table;clear:both}.ast-row{margin-left:-20px;margin-right:-20px}.ast-row::after{content:"";display:table;clear:both}.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9,.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9,.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9,.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9,.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.ast-col-xs-1,.ast-col-xs-10,.ast-col-xs-11,.ast-col-xs-12,.ast-col-xs-2,.ast-col-xs-3,.ast-col-xs-4,.ast-col-xs-5,.ast-col-xs-6,.ast-col-xs-7,.ast-col-xs-8,.ast-col-xs-9{float:left}.ast-col-xs-1{width:8.3333333333%}.ast-col-xs-2{width:16.6666666667%}.ast-col-xs-3{width:25%}.ast-col-xs-4{width:33.3333333333%}.ast-col-xs-5{width:41.6666666667%}.ast-col-xs-6{width:50%}.ast-col-xs-7{width:58.3333333333%}.ast-col-xs-8{width:66.6666666667%}.ast-col-xs-9{width:75%}.ast-col-xs-10{width:83.3333333333%}.ast-col-xs-11{width:91.6666666667%}.ast-col-xs-12{width:100%}.ast-col-xs-pull-0{right:auto}.ast-col-xs-pull-1{right:8.3333333333%}.ast-col-xs-pull-2{right:16.6666666667%}.ast-col-xs-pull-3{right:25%}.ast-col-xs-pull-4{right:33.3333333333%}.ast-col-xs-pull-5{right:41.6666666667%}.ast-col-xs-pull-6{right:50%}.ast-col-xs-pull-7{right:58.3333333333%}.ast-col-xs-pull-8{right:66.6666666667%}.ast-col-xs-pull-9{right:75%}.ast-col-xs-pull-10{right:83.3333333333%}.ast-col-xs-pull-11{right:91.6666666667%}.ast-col-xs-pull-12{right:100%}.ast-col-xs-push-0{left:auto}.ast-col-xs-push-1{left:8.3333333333%}.ast-col-xs-push-2{left:16.6666666667%}.ast-col-xs-push-3{left:25%}.ast-col-xs-push-4{left:33.3333333333%}.ast-col-xs-push-5{left:41.6666666667%}.ast-col-xs-push-6{left:50%}.ast-col-xs-push-7{left:58.3333333333%}.ast-col-xs-push-8{left:66.6666666667%}.ast-col-xs-push-9{left:75%}.ast-col-xs-push-10{left:83.3333333333%}.ast-col-xs-push-11{left:91.6666666667%}.ast-col-xs-push-12{left:100%}.ast-col-xs-offset-0{margin-left:0}.ast-col-xs-offset-1{margin-left:8.3333333333%}.ast-col-xs-offset-2{margin-left:16.6666666667%}.ast-col-xs-offset-3{margin-left:25%}.ast-col-xs-offset-4{margin-left:33.3333333333%}.ast-col-xs-offset-5{margin-left:41.6666666667%}.ast-col-xs-offset-6{margin-left:50%}.ast-col-xs-offset-7{margin-left:58.3333333333%}.ast-col-xs-offset-8{margin-left:66.6666666667%}.ast-col-xs-offset-9{margin-left:75%}.ast-col-xs-offset-10{margin-left:83.3333333333%}.ast-col-xs-offset-11{margin-left:91.6666666667%}.ast-col-xs-offset-12{margin-left:100%}@media (min-width:544px){.ast-col-sm-1,.ast-col-sm-10,.ast-col-sm-11,.ast-col-sm-12,.ast-col-sm-2,.ast-col-sm-3,.ast-col-sm-4,.ast-col-sm-5,.ast-col-sm-6,.ast-col-sm-7,.ast-col-sm-8,.ast-col-sm-9{float:left}.ast-col-sm-1{width:8.3333333333%}.ast-col-sm-2{width:16.6666666667%}.ast-col-sm-3{width:25%}.ast-col-sm-4{width:33.3333333333%}.ast-col-sm-5{width:41.6666666667%}.ast-col-sm-6{width:50%}.ast-col-sm-7{width:58.3333333333%}.ast-col-sm-8{width:66.6666666667%}.ast-col-sm-9{width:75%}.ast-col-sm-10{width:83.3333333333%}.ast-col-sm-11{width:91.6666666667%}.ast-col-sm-12{width:100%}.ast-col-sm-pull-0{right:auto}.ast-col-sm-pull-1{right:8.3333333333%}.ast-col-sm-pull-2{right:16.6666666667%}.ast-col-sm-pull-3{right:25%}.ast-col-sm-pull-4{right:33.3333333333%}.ast-col-sm-pull-5{right:41.6666666667%}.ast-col-sm-pull-6{right:50%}.ast-col-sm-pull-7{right:58.3333333333%}.ast-col-sm-pull-8{right:66.6666666667%}.ast-col-sm-pull-9{right:75%}.ast-col-sm-pull-10{right:83.3333333333%}.ast-col-sm-pull-11{right:91.6666666667%}.ast-col-sm-pull-12{right:100%}.ast-col-sm-push-0{left:auto}.ast-col-sm-push-1{left:8.3333333333%}.ast-col-sm-push-2{left:16.6666666667%}.ast-col-sm-push-3{left:25%}.ast-col-sm-push-4{left:33.3333333333%}.ast-col-sm-push-5{left:41.6666666667%}.ast-col-sm-push-6{left:50%}.ast-col-sm-push-7{left:58.3333333333%}.ast-col-sm-push-8{left:66.6666666667%}.ast-col-sm-push-9{left:75%}.ast-col-sm-push-10{left:83.3333333333%}.ast-col-sm-push-11{left:91.6666666667%}.ast-col-sm-push-12{left:100%}.ast-col-sm-offset-0{margin-left:0}.ast-col-sm-offset-1{margin-left:8.3333333333%}.ast-col-sm-offset-2{margin-left:16.6666666667%}.ast-col-sm-offset-3{margin-left:25%}.ast-col-sm-offset-4{margin-left:33.3333333333%}.ast-col-sm-offset-5{margin-left:41.6666666667%}.ast-col-sm-offset-6{margin-left:50%}.ast-col-sm-offset-7{margin-left:58.3333333333%}.ast-col-sm-offset-8{margin-left:66.6666666667%}.ast-col-sm-offset-9{margin-left:75%}.ast-col-sm-offset-10{margin-left:83.3333333333%}.ast-col-sm-offset-11{margin-left:91.6666666667%}.ast-col-sm-offset-12{margin-left:100%}}@media (min-width:768px){.ast-col-md-1,.ast-col-md-10,.ast-col-md-11,.ast-col-md-12,.ast-col-md-2,.ast-col-md-3,.ast-col-md-4,.ast-col-md-5,.ast-col-md-6,.ast-col-md-7,.ast-col-md-8,.ast-col-md-9{float:left}.ast-col-md-1{width:8.3333333333%}.ast-col-md-2{width:16.6666666667%}.ast-col-md-3{width:25%}.ast-col-md-4{width:33.3333333333%}.ast-col-md-5{width:41.6666666667%}.ast-col-md-6{width:50%}.ast-col-md-7{width:58.3333333333%}.ast-col-md-8{width:66.6666666667%}.ast-col-md-9{width:75%}.ast-col-md-10{width:83.3333333333%}.ast-col-md-11{width:91.6666666667%}.ast-col-md-12{width:100%}.ast-col-md-pull-0{right:auto}.ast-col-md-pull-1{right:8.3333333333%}.ast-col-md-pull-2{right:16.6666666667%}.ast-col-md-pull-3{right:25%}.ast-col-md-pull-4{right:33.3333333333%}.ast-col-md-pull-5{right:41.6666666667%}.ast-col-md-pull-6{right:50%}.ast-col-md-pull-7{right:58.3333333333%}.ast-col-md-pull-8{right:66.6666666667%}.ast-col-md-pull-9{right:75%}.ast-col-md-pull-10{right:83.3333333333%}.ast-col-md-pull-11{right:91.6666666667%}.ast-col-md-pull-12{right:100%}.ast-col-md-push-0{left:auto}.ast-col-md-push-1{left:8.3333333333%}.ast-col-md-push-2{left:16.6666666667%}.ast-col-md-push-3{left:25%}.ast-col-md-push-4{left:33.3333333333%}.ast-col-md-push-5{left:41.6666666667%}.ast-col-md-push-6{left:50%}.ast-col-md-push-7{left:58.3333333333%}.ast-col-md-push-8{left:66.6666666667%}.ast-col-md-push-9{left:75%}.ast-col-md-push-10{left:83.3333333333%}.ast-col-md-push-11{left:91.6666666667%}.ast-col-md-push-12{left:100%}.ast-col-md-offset-0{margin-left:0}.ast-col-md-offset-1{margin-left:8.3333333333%}.ast-col-md-offset-2{margin-left:16.6666666667%}.ast-col-md-offset-3{margin-left:25%}.ast-col-md-offset-4{margin-left:33.3333333333%}.ast-col-md-offset-5{margin-left:41.6666666667%}.ast-col-md-offset-6{margin-left:50%}.ast-col-md-offset-7{margin-left:58.3333333333%}.ast-col-md-offset-8{margin-left:66.6666666667%}.ast-col-md-offset-9{margin-left:75%}.ast-col-md-offset-10{margin-left:83.3333333333%}.ast-col-md-offset-11{margin-left:91.6666666667%}.ast-col-md-offset-12{margin-left:100%}}@media (min-width:992px){.ast-col-lg-1,.ast-col-lg-10,.ast-col-lg-11,.ast-col-lg-12,.ast-col-lg-2,.ast-col-lg-3,.ast-col-lg-4,.ast-col-lg-5,.ast-col-lg-6,.ast-col-lg-7,.ast-col-lg-8,.ast-col-lg-9{float:left}.ast-col-lg-1{width:8.3333333333%}.ast-col-lg-2{width:16.6666666667%}.ast-col-lg-3{width:25%}.ast-col-lg-4{width:33.3333333333%}.ast-col-lg-5{width:41.6666666667%}.ast-col-lg-6{width:50%}.ast-col-lg-7{width:58.3333333333%}.ast-col-lg-8{width:66.6666666667%}.ast-col-lg-9{width:75%}.ast-col-lg-10{width:83.3333333333%}.ast-col-lg-11{width:91.6666666667%}.ast-col-lg-12{width:100%}.ast-col-lg-pull-0{right:auto}.ast-col-lg-pull-1{right:8.3333333333%}.ast-col-lg-pull-2{right:16.6666666667%}.ast-col-lg-pull-3{right:25%}.ast-col-lg-pull-4{right:33.3333333333%}.ast-col-lg-pull-5{right:41.6666666667%}.ast-col-lg-pull-6{right:50%}.ast-col-lg-pull-7{right:58.3333333333%}.ast-col-lg-pull-8{right:66.6666666667%}.ast-col-lg-pull-9{right:75%}.ast-col-lg-pull-10{right:83.3333333333%}.ast-col-lg-pull-11{right:91.6666666667%}.ast-col-lg-pull-12{right:100%}.ast-col-lg-push-0{left:auto}.ast-col-lg-push-1{left:8.3333333333%}.ast-col-lg-push-2{left:16.6666666667%}.ast-col-lg-push-3{left:25%}.ast-col-lg-push-4{left:33.3333333333%}.ast-col-lg-push-5{left:41.6666666667%}.ast-col-lg-push-6{left:50%}.ast-col-lg-push-7{left:58.3333333333%}.ast-col-lg-push-8{left:66.6666666667%}.ast-col-lg-push-9{left:75%}.ast-col-lg-push-10{left:83.3333333333%}.ast-col-lg-push-11{left:91.6666666667%}.ast-col-lg-push-12{left:100%}.ast-col-lg-offset-0{margin-left:0}.ast-col-lg-offset-1{margin-left:8.3333333333%}.ast-col-lg-offset-2{margin-left:16.6666666667%}.ast-col-lg-offset-3{margin-left:25%}.ast-col-lg-offset-4{margin-left:33.3333333333%}.ast-col-lg-offset-5{margin-left:41.6666666667%}.ast-col-lg-offset-6{margin-left:50%}.ast-col-lg-offset-7{margin-left:58.3333333333%}.ast-col-lg-offset-8{margin-left:66.6666666667%}.ast-col-lg-offset-9{margin-left:75%}.ast-col-lg-offset-10{margin-left:83.3333333333%}.ast-col-lg-offset-11{margin-left:91.6666666667%}.ast-col-lg-offset-12{margin-left:100%}}@media (min-width:1200px){.ast-col-xl-1,.ast-col-xl-10,.ast-col-xl-11,.ast-col-xl-12,.ast-col-xl-2,.ast-col-xl-3,.ast-col-xl-4,.ast-col-xl-5,.ast-col-xl-6,.ast-col-xl-7,.ast-col-xl-8,.ast-col-xl-9{float:left}.ast-col-xl-1{width:8.3333333333%}.ast-col-xl-2{width:16.6666666667%}.ast-col-xl-3{width:25%}.ast-col-xl-4{width:33.3333333333%}.ast-col-xl-5{width:41.6666666667%}.ast-col-xl-6{width:50%}.ast-col-xl-7{width:58.3333333333%}.ast-col-xl-8{width:66.6666666667%}.ast-col-xl-9{width:75%}.ast-col-xl-10{width:83.3333333333%}.ast-col-xl-11{width:91.6666666667%}.ast-col-xl-12{width:100%}.ast-col-xl-pull-0{right:auto}.ast-col-xl-pull-1{right:8.3333333333%}.ast-col-xl-pull-2{right:16.6666666667%}.ast-col-xl-pull-3{right:25%}.ast-col-xl-pull-4{right:33.3333333333%}.ast-col-xl-pull-5{right:41.6666666667%}.ast-col-xl-pull-6{right:50%}.ast-col-xl-pull-7{right:58.3333333333%}.ast-col-xl-pull-8{right:66.6666666667%}.ast-col-xl-pull-9{right:75%}.ast-col-xl-pull-10{right:83.3333333333%}.ast-col-xl-pull-11{right:91.6666666667%}.ast-col-xl-pull-12{right:100%}.ast-col-xl-push-0{left:auto}.ast-col-xl-push-1{left:8.3333333333%}.ast-col-xl-push-2{left:16.6666666667%}.ast-col-xl-push-3{left:25%}.ast-col-xl-push-4{left:33.3333333333%}.ast-col-xl-push-5{left:41.6666666667%}.ast-col-xl-push-6{left:50%}.ast-col-xl-push-7{left:58.3333333333%}.ast-col-xl-push-8{left:66.6666666667%}.ast-col-xl-push-9{left:75%}.ast-col-xl-push-10{left:83.3333333333%}.ast-col-xl-push-11{left:91.6666666667%}.ast-col-xl-push-12{left:100%}.ast-col-xl-offset-0{margin-left:0}.ast-col-xl-offset-1{margin-left:8.3333333333%}.ast-col-xl-offset-2{margin-left:16.6666666667%}.ast-col-xl-offset-3{margin-left:25%}.ast-col-xl-offset-4{margin-left:33.3333333333%}.ast-col-xl-offset-5{margin-left:41.6666666667%}.ast-col-xl-offset-6{margin-left:50%}.ast-col-xl-offset-7{margin-left:58.3333333333%}.ast-col-xl-offset-8{margin-left:66.6666666667%}.ast-col-xl-offset-9{margin-left:75%}.ast-col-xl-offset-10{margin-left:83.3333333333%}.ast-col-xl-offset-11{margin-left:91.6666666667%}.ast-col-xl-offset-12{margin-left:100%}}h1,h2,h3,h4,h5,h6{clear:both}.entry-content h1,h1{color:#808285;font-size:2em;line-height:1.2}.entry-content h2,h2{color:#808285;font-size:1.7em;line-height:1.3}.entry-content h3,h3{color:#808285;font-size:1.5em;line-height:1.4}.entry-content h4,h4{color:#808285;line-height:1.5;font-size:1.3em}.entry-content h5,h5{color:#808285;line-height:1.6;font-size:1.2em}.entry-content h6,h6{color:#808285;line-height:1.7;font-size:1.1em}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body{color:#808285;background:#fff;font-style:normal}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}blockquote,q{quotes:"" ""}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}address{margin:0 0 1.5em}abbr,acronym{border-bottom:1px dotted #666;cursor:help}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;margin-bottom:1.6em;overflow:auto;max-width:100%;padding:1.6em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}img{height:auto;max-width:100%}hr{background-color:#ccc;border:0;height:1px;margin-bottom:1.5em}.ast-button,.button,button,input,select,textarea{color:#808285;font-weight:400;font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}big{font-size:125%}ins,mark{background:0 0;text-decoration:none}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}th{font-weight:700}td,th{padding:8px;text-align:left;border-width:0 1px 1px 0}.ast-button,.button,button,input[type=button],input[type=reset],input[type=submit]{border:1px solid;border-color:#eaeaea;border-radius:2px;background:#e6e6e6;padding:.6em 1em .4em;color:#fff}.ast-button:focus,.ast-button:hover,.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#fff;border-color:#eaeaea}.ast-button:active,.ast-button:focus,.button:active,.button:focus,button:active,button:focus,input[type=button]:active,input[type=button]:focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit]:active,input[type=submit]:focus{border-color:#eaeaea;outline:0}input[type=email],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{color:#666;border:1px solid #ccc;border-radius:2px;-webkit-appearance:none}input[type=email]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,textarea:focus{color:#111}textarea{padding-left:3px;width:100%}a{color:#4169e1}a:focus,a:hover{color:#191970}a:focus{outline:thin dotted}a:hover{outline:0}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:12.25px;font-size:.875rem;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;text-align:center;display:block;margin-left:auto;margin-right:auto}#primary:after,#primary:before,#secondary:after,#secondary:before,.ast-container:after,.ast-container:before,.ast-row:after,.ast-row:before,.clear:after,.clear:before,.sidebar-main:after,.sidebar-main:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before,.site-main:after,.site-main:before{content:"";display:table}#primary:after,#secondary:after,.ast-container:after,.ast-row:after,.clear:after,.sidebar-main:after,.site-content:after,.site-footer:after,.site-header:after,.site-main:after{clear:both}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}::selection{color:#fff;background:#0274be}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:not(.logged-in){position:relative}#page{position:relative}a,a:focus{text-decoration:none}.secondary a *,.site-footer a *,.site-header a *,a{transition:all .2s linear}.capitalize{text-transform:uppercase}img{vertical-align:middle}.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6{margin-bottom:20px}p{margin-bottom:1.75em}blockquote{margin:1.5em 1em 1.5em 3em;padding:1.2em;font-size:1.1em;line-height:inherit;position:relative}.ast-button,.button,input[type=button],input[type=submit]{border-radius:0;padding:18px 30px;border:0;box-shadow:none;text-shadow:none}.ast-button:hover,.button:hover,input[type=button]:hover,input[type=submit]:hover{box-shadow:none}.ast-button:active,.ast-button:focus,.button:active,.button:focus,input[type=button]:active,input[type=button]:focus,input[type=submit]:active,input[type=submit]:focus{box-shadow:none}.site-title{font-weight:400}.site-description,.site-title{margin-bottom:0}.site-description a,.site-description:focus a,.site-description:hover a,.site-title a,.site-title:focus a,.site-title:hover a{transition:all .2s linear}.site-title a,.site-title a:focus,.site-title a:hover,.site-title a:visited{color:#222}.site-description a,.site-description a:focus,.site-description a:hover,.site-description a:visited{color:#999}.search-form .search-field{outline:0}.ast-search-menu-icon{position:relative;z-index:3}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon{margin-right:1em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon{display:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field,.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field{width:100%;padding-right:5.5em}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit{display:block;position:absolute;height:100%;top:0;right:0;padding:0 1em;border-radius:0}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{padding:0;display:block;overflow:hidden}.site .skip-link{background-color:#f1f1f1;box-shadow:0 0 1px 1px rgba(0,0,0,.2);color:#21759b;display:block;font-family:Montserrat,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;left:-9999em;outline:0;padding:15px 23px 14px;text-decoration:none;text-transform:none;top:-9999em}.site .skip-link:focus{clip:auto;height:auto;left:6px;top:7px;width:auto;z-index:100000;outline:thin dotted}.logged-in .site .skip-link{box-shadow:0 0 2px 2px rgba(0,0,0,.2);font-family:"Open Sans",sans-serif}.astra-icon-down_arrow::after{content:"\e900";font-family:Astra}.astra-icon-close::after{content:"\e5cd";font-family:Astra}.astra-icon-drag_handle::after{content:"\e25d";font-family:Astra}.astra-icon-format_align_justify::after{content:"\e235";font-family:Astra}.astra-icon-menu::after{content:"\e5d2";font-family:Astra}.astra-icon-reorder::after{content:"\e8fe";font-family:Astra}.astra-icon-search::after{content:"\e8b6";font-family:Astra}.astra-icon-zoom_in::after{content:"\e56b";font-family:Astra}.astra-icon-check-circle::after{content:"\e901";font-family:Astra}.astra-icon-shopping-cart::after{content:"\f07a";font-family:Astra}.astra-icon-shopping-bag::after{content:"\f290";font-family:Astra}.astra-icon-shopping-basket::after{content:"\f291";font-family:Astra}.astra-icon-circle-o::after{content:"\e903";font-family:Astra}.astra-icon-certificate::after{content:"\e902";font-family:Astra}input,select{line-height:1}.ast-button,.ast-custom-button,body,button,input[type=button],input[type=submit],textarea{line-height:1.85714285714286}.site-title a{line-height:1.2}.site-header .site-description{line-height:1.5}.ast-single-post .entry-title,.ast-single-post .entry-title a{line-height:1.2}.entry-title,.entry-title a{font-weight:400}.ast-social-icons{list-style-type:none;margin:0}.ast-social-icons li{display:inline-block;padding-right:15px}.ast-social-icons li:last-child{padding-right:0}.ast-social-icons a{display:block}.ast-social-icons i{font-style:normal;font-family:fontawesome;font-weight:400}.ast-social-icons i:before{font-weight:400}.single .entry-content .gallery{margin-left:-10px;margin-right:-10px}.gallery-caption{color:#000;padding:10px;border-radius:0 0 2px 2px;border:1px solid #eaeaea;border-top:none;font-size:.9em}.gallery-icon{border-bottom:0;border-radius:2px 2px 0 0;border:1px solid #eaeaea;overflow:hidden}.gallery-item{margin:0;padding:10px;border-radius:2px}.gallery-item:last-child{margin-bottom:2em}.elementor-image-gallery .gallery-icon{border:none}.ast-oembed-container{position:relative;padding-top:56.25%;height:0;overflow:hidden;max-width:100%;height:auto}.ast-oembed-container embed,.ast-oembed-container iframe,.ast-oembed-container object{position:absolute;top:0;left:0;width:100%;height:100%}body .ast-oembed-container *{position:absolute;top:0;left:0;width:100%;height:100%}.ast-hidden{display:none!important}body{background-color:#fff}#page{display:block}#primary,#secondary{display:block;position:relative;float:left;width:100%}#primary{margin:4em 0}#secondary{margin:4em 0 2.5em;word-break:break-word;line-height:2}#secondary li{margin-bottom:.25em}#secondary li:last-child{margin-bottom:0}.ast-separate-container{background-color:#f5f5f5}.ast-separate-container #primary{padding:4em 0;margin:0;border:0}.ast-separate-container .site-main>.ast-row{margin-left:0;margin-right:0}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{background-color:#fff;border-bottom:1px solid #eee;margin:0;padding:5.34em 6.67em}.ast-separate-container .blog-layout-1{padding:0;border-bottom:0}.ast-separate-container .ast-article-single{border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single{margin:0;padding:3.34em 2.4em}}.ast-page-builder-template .hentry{margin:0}.ast-page-builder-template .site-content>.ast-container{max-width:100%;padding:0}.ast-page-builder-template .site-content #primary{padding:0;margin:0}.ast-page-builder-template .no-results{text-align:center;margin:4em auto}.ast-page-builder-template .ast-pagination{padding:2em}.ast-page-builder-template .entry-header{margin-top:4em;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail{margin-top:0}.ast-page-builder-template .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}.ast-page-builder-template.ast-left-sidebar #secondary{padding-left:20px}.ast-page-builder-template.ast-right-sidebar #secondary{padding-right:20px}.ast-page-builder-template.single .post-navigation{padding-bottom:2em}.ast-page-builder-template .ast-archive-description{margin-top:4em;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}@media (min-width:993px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{margin:4em 0;padding:0}.ast-right-sidebar #primary{padding-right:60px}.ast-right-sidebar #secondary{padding-left:60px}.ast-left-sidebar #primary{padding-left:60px}.ast-left-sidebar #secondary{padding-right:60px}}@media (max-width:992px){.ast-separate-container #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary{padding-left:0;padding-right:0}.ast-right-sidebar #primary{padding-right:30px}.ast-right-sidebar #secondary{padding-left:30px}.ast-left-sidebar #primary{padding-left:30px}.ast-left-sidebar #secondary{padding-right:30px}}.astra-search-icon::before{content:"\e8b6";font-family:Astra;font-style:normal;font-weight:400;text-decoration:inherit;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ast-search-icon .astra-search-icon{font-size:1.3em}.main-navigation{-js-display:inline-flex;display:inline-flex;height:100%}.main-navigation ul{list-style:none;margin:0;padding-left:0;position:relative}.main-header-menu .menu-link,.main-header-menu>a{text-decoration:none;padding:0 1em;display:inline-block;transition:all .2s linear}.main-header-menu .menu-item{position:relative}.main-header-menu .menu-item.focus>.sub-menu,.main-header-menu .menu-item:hover>.sub-menu{right:auto;left:0}.main-header-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu:hover>.sub-menu{right:0;left:auto}@media (min-width:769px){.main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu{width:240px;background:#fff;left:-999em;position:absolute;top:100%;z-index:99999}@media (min-width:769px){.main-header-menu .sub-menu .menu-item.focus>.sub-menu,.main-header-menu .sub-menu .menu-item:hover>.sub-menu{left:100%;right:auto}.main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu,.main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:-100%}.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:-100%}}.main-header-menu .sub-menu .menu-link{padding:.9em 1em;display:block;word-wrap:break-word}.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;right:1em;top:50%;transform:translate(0,-50%) rotate(270deg)}.main-header-menu .sub-menu .sub-menu{top:0}.submenu-with-border .sub-menu{border-width:1px;border-style:solid}.submenu-with-border .sub-menu .menu-link{border-width:0 0 1px;border-style:solid}.submenu-with-border .sub-menu .sub-menu{top:-1px}.ast-desktop .submenu-with-border .sub-menu>.menu-item:last-child>.menu-link{border-bottom-width:0}.ast-header-break-point .main-navigation{padding-left:0}.ast-header-break-point .main-navigation ul .menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link{padding:0 20px;display:inline-block;width:100%;border-bottom-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before{content:"\e900";font-family:Astra;font-size:.65em;text-decoration:inherit;display:inline-block;transform:translate(0,-2px) rotateZ(270deg);margin-right:5px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link{padding-left:30px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link{padding-left:40px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link{padding-left:50px}.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link{padding-left:60px}.ast-header-break-point .ast-header-custom-item,.ast-header-break-point .main-header-menu{background-color:#f9f9f9}.ast-header-break-point .main-header-menu .sub-menu{background-color:#f9f9f9;position:static;opacity:1;visibility:visible;border:0;width:auto}.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus>.sub-menu,.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover>.sub-menu{left:0}.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus>.sub-menu,.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover>.sub-menu{left:0}.ast-header-break-point .submenu-with-border .sub-menu{border:0}.ast-mobile-menu-buttons{display:none}.ast-button-wrap{display:inline-block}.ast-button-wrap button{box-shadow:none;border:none}.ast-button-wrap .menu-toggle{padding:0;width:2.2em;height:2.1em;font-size:1.5em;font-weight:400;border-radius:2px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:2px;vertical-align:middle;line-height:1.85714285714286}.ast-button-wrap .menu-toggle.main-header-menu-toggle{padding:0 .5em;width:auto;text-align:center}.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu{font-size:15px;font-size:1rem;font-weight:600}.ast-button-wrap .menu-toggle .menu-toggle-icon{font-style:normal;display:inline-block;vertical-align:middle;line-height:2.05}.ast-button-wrap .menu-toggle .menu-toggle-icon:before{content:"\e5d2";font-family:Astra;text-decoration:inherit}.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before{content:"\e5cd"}.ast-button-wrap .menu-toggle .mobile-menu-wrap{display:inline-block}.ast-button-wrap .menu-toggle:focus{outline:thin dotted}.main-header-bar-navigation{flex:1}.header-main-layout-1 .ast-main-header-bar-alignment{margin-left:auto}.header-main-layout-3 .ast-main-header-bar-alignment{margin-right:auto}#site-navigation{height:100%}.ast-header-break-point .user-select{clear:both}.ast-header-break-point .ast-mobile-menu-buttons{display:block;align-self:center}.ast-header-break-point .main-header-bar-navigation{flex:auto}.ast-header-break-point .ast-main-header-bar-alignment{display:block;width:100%;flex:auto;order:4}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 1.5em;overflow:hidden}.comment-navigation .nav-next,.comment-navigation .nav-previous,.post-navigation .nav-next,.post-navigation .nav-previous,.posts-navigation .nav-next,.posts-navigation .nav-previous{width:50%;display:inline-block}.comment-navigation .nav-next,.post-navigation .nav-next,.posts-navigation .nav-next{text-align:right}.main-header-bar{z-index:1}.header-main-layout-1.ast-primary-menu-disabled .ast-masthead-custom-menu-items{text-align:right}.header-main-layout-1 .main-header-bar-navigation{text-align:right}.header-main-layout-1 .main-header-bar-navigation .sub-menu{text-align:left}.header-main-layout-1 .main-navigation{padding-left:15px;vertical-align:top}.header-main-layout-1 .main-header-container{align-items:stretch}.header-main-layout-2 .main-header-container{display:block}.header-main-layout-2 .site-branding{text-align:center;padding-bottom:1em}.header-main-layout-2 .site-title{justify-content:center}.header-main-layout-2 .main-navigation ul{justify-content:center}.header-main-layout-2 .main-header-bar-navigation{text-align:center}.header-main-layout-2 .main-header-bar-navigation .sub-menu{text-align:left}.header-main-layout-2 .ast-header-custom-item{justify-content:center;line-height:1.85714285714286}.header-main-layout-2 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-2 .widget{text-align:center}.ast-header-custom-item-outside .header-main-layout-2 .main-header-container{-js-display:flex;display:flex;justify-content:center}.ast-header-custom-item-outside .header-main-layout-2 .site-branding{flex:0 0 100%}.header-main-layout-3 .ast-site-identity{text-align:right}.header-main-layout-3 .main-header-container{flex-direction:row-reverse;align-items:stretch}.header-main-layout-3 .main-navigation{padding-right:15px}.header-main-layout-3 .main-navigation ul{justify-content:flex-start}.header-main-layout-3 .main-header-bar-navigation{text-align:left}.header-main-layout-3 .ast-header-custom-item{justify-content:flex-start}.header-main-layout-3 .ast-masthead-custom-menu-items{position:relative}.header-main-layout-3 li .ast-search-icon{padding-left:.5em}.header-main-layout-3 .ast-search-menu-icon{left:0;right:0}.header-main-layout-3 li .ast-search-menu-icon{left:1em;right:0}.header-main-layout-3 .main-header-bar .ast-search-menu-icon .search-form{padding:0 0 0 3em}.header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{left:-1em;right:auto}.ast-header-break-point .header-main-layout-1 .site-branding{padding-right:1em}.ast-header-break-point .header-main-layout-1 .main-header-bar-navigation{text-align:left}.ast-header-break-point .header-main-layout-1 .main-navigation{padding-left:0}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .site-branding{padding-left:0;padding-right:0;padding-bottom:1em;flex:1 1 100%}.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items,.ast-header-break-point .ast-mobile-header-stack .ast-site-identity,.ast-header-break-point .ast-mobile-header-stack .site-branding,.ast-header-break-point .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-title{text-align:left}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{flex:1 1 100%;text-align:center;justify-content:center}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .main-header-container{flex-direction:initial}.ast-header-break-point .header-main-layout-2 .ast-mobile-menu-buttons{-js-display:flex;display:flex;justify-content:center}.ast-header-break-point .header-main-layout-2 .main-header-bar-navigation,.ast-header-break-point .header-main-layout-2 .widget{text-align:left}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-3 .main-header-bar .ast-search-icon{margin-right:auto;margin-left:1em}.ast-header-break-point .header-main-layout-3 .main-header-bar .ast-search-menu-icon.slide-search .search-form{right:auto;left:0}.ast-header-break-point .header-main-layout-3.ast-mobile-header-inline .ast-mobile-menu-buttons{justify-content:flex-start}.ast-header-break-point .header-main-layout-3 li .ast-search-menu-icon{left:0}.ast-header-break-point .header-main-layout-3 .site-branding{padding-left:1em;justify-content:flex-end}.ast-header-break-point .header-main-layout-3 .main-navigation{padding-right:0}.ast-logo-title-inline .ast-site-identity{-js-display:inline-flex;display:inline-flex;vertical-align:middle;align-items:center}.ast-logo-title-inline .site-logo-img{padding-right:1em}.ast-logo-title-inline.header-main-layout-2 .site-logo-img+.ast-site-title-wrap .site-title{justify-content:flex-start}@media (max-width:544px){.site-branding img,.site-header .site-logo-img .custom-logo-link img{max-width:100%}.ast-header-custom-item-outside .ast-mobile-header-stack .site-branding{padding-right:0}.ast-header-custom-item-outside .ast-mobile-header-stack .site-title{justify-content:center;text-align:center}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center;text-align:center;padding-bottom:0}}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{text-align:left}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-title{justify-content:left}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:1em}.ast-header-break-point .ast-mobile-header-inline .main-header-container,.ast-header-break-point .ast-mobile-header-stack .main-header-container{-js-display:flex;display:flex}.site-header{z-index:99;position:relative}.main-header-container{position:relative}.main-header-bar-wrap{position:relative}.main-header-bar-wrap .nav-fallback-text{float:right}.main-header-bar{background-color:#fff;border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .main-header-bar{border:0}.ast-header-break-point .nav-fallback-text{float:none}.ast-header-break-point .main-header-bar{border-bottom-color:#eaeaea;border-bottom-style:solid}.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items{padding-left:20px;padding-right:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-header-custom-item .widget:last-child{margin-bottom:1em}.main-header-bar{margin-left:auto;margin-right:auto}.site-logo-img img{transition:all .2s linear}.ast-header-widget-area{line-height:1.65}.ast-header-widget-area .no-widget-text,.ast-header-widget-area .widget-title{margin-bottom:0}.ast-header-widget-area .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-widget-area .widget p{margin-bottom:0}.ast-header-widget-area .widget ul{position:static;border:0;width:auto}.ast-header-widget-area .widget ul a{border:0}.ast-header-widget-area .widget.widget_search .search-field,.ast-header-widget-area .widget.widget_search .search-field:focus{padding:10px 45px 10px 15px}.ast-header-widget-area .widget:last-child{margin-bottom:.5em;margin-right:0}.submenu-with-border .ast-header-widget-area .widget ul{position:static;border:0;width:auto}.submenu-with-border .ast-header-widget-area .widget ul a{border:0}.ast-header-break-point .ast-header-widget-area .widget{margin:.5em 0;display:block}.ast-header-custom-item .widget{margin:.5em;display:inline-block;vertical-align:middle}.ast-header-custom-item .widget p{margin-bottom:0}.ast-header-custom-item .widget li{width:auto}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .astra-megamenu .sub-menu{box-shadow:none}.ast-desktop .main-header-menu .sub-menu{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-desktop .main-header-menu .astra-full-megamenu-wrapper{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-custom-item-inside .button-custom-menu-item .menu-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item{padding-left:0;padding-right:0;margin-top:0;margin-bottom:0}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link{display:none}.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link{display:block}.button-custom-menu-item .ast-custom-button-link .ast-custom-button{font-size:inherit;font-family:inherit;font-weight:inherit}.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover{transition:all .1s ease-in-out}.nav-style{display:block;padding:0 15px}.site-branding{line-height:1;align-self:center}.ast-no-menu-items .main-navigation{display:none}.ast-menu-toggle{display:none;background:0 0;color:inherit;border-style:dotted;border-color:transparent}.ast-menu-toggle:focus,.ast-menu-toggle:hover{background:0 0;border-color:inherit;color:inherit}.ast-menu-toggle:focus{outline:thin dotted}.ast-main-header-nav-open .main-header-bar{padding-bottom:0}.main-header-bar{z-index:4;position:relative;line-height:4}.main-header-bar .main-header-bar-navigation{height:100%}.main-header-bar .main-header-bar-navigation:empty{padding:0}.main-header-bar .main-header-bar-navigation .sub-menu{line-height:1.45}.main-header-bar .main-header-bar-navigation .menu-item-has-children>.menu-link:after{content:"\e900";display:inline-block;font-family:Astra;font-size:9px;font-size:.6rem;font-weight:700;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;line-height:normal}.main-header-bar .main-header-bar-navigation .ast-search-icon{display:block;z-index:4;position:relative}.main-header-bar .main-header-bar-navigation.toggle-on{padding-top:1em}.main-header-bar .ast-search-menu-icon .search-form{background-color:#fff}.ast-primary-menu-disabled .main-header-bar .main-header-bar-navigation.toggle-on{padding-top:0}.ast-flyout-menu-enable .main-header-bar .ast-masthead-custom-menu-items .ast-custom-button-link{border:none}.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form{visibility:visible;opacity:1;position:relative;right:auto;top:auto;transform:none}.ast-above-header-section .user-select .ast-dropdown-active .slide-search.astra-search-icon,.ast-masthead-custom-menu-items .ast-dropdown-active .slide-search.astra-search-icon,.below-header-user-select .ast-dropdown-active .slide-search.astra-search-icon{color:#757575}.ast-search-menu-icon.slide-search .search-form{-webkit-backface-visibility:visible;backface-visibility:visible;visibility:hidden;opacity:0;transition:all .2s;position:absolute;z-index:3;right:-1em;top:50%;transform:translateY(-50%)}.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form{visibility:visible;opacity:1}.ast-search-menu-icon .search-form{border:1px solid #e7e7e7;line-height:normal;padding:0 3em 0 0;border-radius:2px;display:inline-block;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:relative;color:inherit;background-color:#fff}.ast-search-menu-icon .astra-search-icon{-js-display:flex;display:flex;line-height:normal}.ast-search-menu-icon .astra-search-icon:focus{outline:0}.ast-search-menu-icon .search-field{border:none;background-color:transparent;transition:width .2s;border-radius:inherit;color:inherit;font-size:inherit;width:0;color:#757575}.ast-search-menu-icon .search-submit{display:none;background:0 0;border:none;font-size:1.3em;color:#757575}.ast-search-menu-icon.ast-dropdown-active{visibility:visible;opacity:1;position:relative}.ast-search-menu-icon.ast-dropdown-active .search-field{width:235px}li.ast-masthead-custom-menu-items{padding:0 1em}li.ast-masthead-custom-menu-items a{padding-left:0;padding-right:0;vertical-align:middle}li.ast-masthead-custom-menu-items a,li.ast-masthead-custom-menu-items a:focus,li.ast-masthead-custom-menu-items a:hover{background:0 0}li.ast-masthead-custom-menu-items .ast-search-icon .astra-search-icon{line-height:1}.ast-search-icon{z-index:4;position:relative;line-height:normal}.ast-primary-menu-disabled.ast-mobile-header-inline .ast-masthead-custom-menu-items{text-align:right}.ast-primary-menu-disabled .ast-masthead-custom-menu-items{flex:1}.ast-primary-menu-disabled.header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-primary-menu-disabled.header-main-layout-3 .ast-masthead-custom-menu-items{text-align:left}.ast-masthead-custom-menu-items{padding:0 1em}.search-custom-menu-item{position:relative}.custom-mobile-logo-link{display:none}.ast-site-identity{padding:1em 0}.ast-header-break-point .ast-mobile-header-stack .site-description{text-align:center}.ast-header-break-point .ast-mobile-header-stack.ast-logo-title-inline .site-description{text-align:left}.ast-header-break-point.ast-header-custom-item-outside .ast-primary-menu-disabled .ast-mobile-menu-buttons{display:none}.ast-header-break-point .ast-hide-custom-menu-mobile .ast-masthead-custom-menu-items{display:none}.ast-header-break-point .ast-mobile-header-inline .site-branding{text-align:left;padding-bottom:0}.ast-header-break-point .ast-mobile-header-inline.header-main-layout-3 .site-branding{text-align:right}.ast-header-break-point .site-header .main-header-bar-wrap .site-branding{-js-display:flex;display:flex;flex:1;align-self:center}.ast-header-break-point ul li.ast-masthead-custom-menu-items a{padding:0;display:inline-block;width:auto;border:0}.ast-header-break-point li.ast-masthead-custom-menu-items{padding-left:20px;padding-right:20px;margin-bottom:1em;margin-top:1em}.ast-header-break-point .ast-site-identity{width:100%}.ast-header-break-point .main-header-bar-navigation .menu-item-has-children>.menu-link:after{display:none}.ast-header-break-point .main-header-bar{display:block;line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation{line-height:3;display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu{line-height:3}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu{display:none}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle{display:inline-block;position:absolute;font-size:inherit;top:-1px;right:20px;cursor:pointer;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding:0 .907em;font-weight:400;line-height:inherit;transition:all .2s}.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children>.ast-menu-toggle::before{font-weight:700;content:"\e900";font-family:Astra;text-decoration:inherit;display:inline-block}.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded>.ast-menu-toggle::before{transform:rotateX(180deg)}.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu{border-top-width:1px;border-style:solid;border-color:#eaeaea}.ast-header-break-point.ast-header-custom-item-inside .ast-search-menu-icon{position:relative;display:block;right:auto;transform:none}.ast-header-break-point .main-navigation{display:block;width:100%}.ast-header-break-point .main-navigation ul>.menu-item:first-child{border-top:0}.ast-header-break-point .main-navigation ul ul{left:auto;right:auto}.ast-header-break-point .main-navigation li{width:100%}.ast-header-break-point .main-navigation .widget{margin-bottom:1em}.ast-header-break-point .main-navigation .widget li{width:auto}.ast-header-break-point .main-navigation .widget:last-child{margin-bottom:0}.ast-header-break-point .main-header-bar-navigation{width:calc(100% + 40px);margin:0 -20px}.ast-header-break-point .main-header-menu ul ul{top:0}.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link{display:none}.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link{display:inline-block}.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg,.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link{display:block}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-menu-buttons{order:2}.ast-header-break-point.ast-header-custom-item-outside .main-header-bar-navigation{order:3}.ast-header-break-point.ast-header-custom-item-outside .ast-masthead-custom-menu-items{order:1}.ast-header-break-point.ast-header-custom-item-outside .header-main-layout-2 .ast-masthead-custom-menu-items{text-align:center}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-mobile-menu-buttons,.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .site-branding{-js-display:flex;display:flex}.ast-header-break-point.ast-header-custom-item-outside.ast-header-custom-item-outside .header-main-layout-2 .ast-mobile-menu-buttons{padding-bottom:0}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline .ast-site-identity{width:100%}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-3 .ast-site-identity{width:auto}.ast-header-break-point.ast-header-custom-item-outside .ast-mobile-header-inline.header-main-layout-2 .site-branding{flex:1 1 auto}@media (max-width:544px){.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{width:100%}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons,.ast-header-break-point .ast-mobile-header-stack .site-branding{justify-content:center}.ast-header-break-point .ast-mobile-header-stack .main-header-bar-wrap .site-branding{flex:1 1 auto}.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-2 .ast-mobile-menu-buttons{padding-top:.8em}.ast-header-break-point .ast-mobile-header-stack.header-main-layout-1 .site-branding{padding-bottom:0}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack .ast-masthead-custom-menu-items{padding:.8em 1em 0 1em;text-align:center;width:100%}.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-masthead-custom-menu-items,.ast-header-custom-item-outside.ast-header-break-point .ast-mobile-header-stack.header-main-layout-3 .ast-mobile-menu-buttons{padding-top:.8em}}.customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogname button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:none}.ast-site-title-wrap:hover .customize-partial-edit-shortcut-blogdescription button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-display-site-title button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-astra-settings-display-site-tagline button.customize-partial-edit-shortcut-button{display:none}.customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:none}.site-logo-img:hover .customize-partial-edit-shortcut-custom_logo button.customize-partial-edit-shortcut-button{display:inline-block}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:none}.main-navigation:hover .customize-partial-edit-shortcut-astra-settings-disable-primary-nav button.customize-partial-edit-shortcut-button{display:inline-block}.ast-primary-sticky-header-active .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{left:100px}.ast-primary-sticky-header-active.ast-full-width-header .customize-partial-edit-shortcut-astra-settings-header-main-stick .customize-partial-edit-shortcut-button{left:5px}.customize-partial-edit-shortcut-astra-settings-disable-primary-nav .customize-partial-edit-shortcut-button{top:15px}.ast-masthead-custom-menu-items.search-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{left:-30px;top:-7px;display:none}.ast-masthead-custom-menu-items.search-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.button-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{top:-14px;display:none}.ast-masthead-custom-menu-items.button-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-button-text .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.text-html-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{left:-30px;top:15px;display:none}.ast-masthead-custom-menu-items.text-html-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section-html .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.widget-custom-menu-item{text-align:left}.ast-masthead-custom-menu-items.widget-custom-menu-item .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{left:-25px;top:-8px;display:none}.ast-masthead-custom-menu-items.widget-custom-menu-item:hover .customize-partial-edit-shortcut .customize-partial-edit-shortcut-button{display:block}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{top:-20px;left:-25px;display:none}.ast-masthead-custom-menu-items.woocommerce-custom-menu-item:hover .customize-partial-edit-shortcut-astra-settings-header-main-rt-section .customize-partial-edit-shortcut-button{display:block}.ast-below-header .below-header-user-select .ast-search-menu-icon,.ast-below-header .below-header-user-select .ast-site-header-cart,.ast-below-header .below-header-user-select.below-header-widget{text-align:left}.ast-below-header .customize-partial-edit-shortcut{top:1em}.ast-above-header-section .user-select .ast-search-menu-icon{text-align:left}.ast-above-header .customize-partial-edit-shortcut{top:.3em}.ast-above-header-section-1 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{left:-14px}.ast-above-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-1-search-box-type .customize-partial-edit-shortcut-button{left:-25px;top:-10px}.ast-above-header-section-1.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-1 .customize-partial-edit-shortcut-button{left:-25px;top:-15px}.ast-above-header-section-1 .customize-partial-edit-shortcut-astra-settings-above-header-section-1-html .customize-partial-edit-shortcut-button{left:-25px}.ast-above-header-section-2 .ast-above-header-navigation .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{left:-14px}.ast-above-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-above-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;left:-25px}.ast-above-header-section-2.woocommerce-above-header .customize-partial-edit-shortcut-astra-settings-above-header-section-2 .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-1.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{left:-14px}.below-header-section-1 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-1-search-box-type .customize-partial-edit-shortcut-button{top:-10px;left:-25px}.below-header-section-1 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-1 .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-1 .customize-partial-edit-shortcut-astra-settings-below-header-section-1-html .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-2.ast-below-header-navigation .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{left:-14px}.below-header-section-2 .ast-search-menu-icon .customize-partial-edit-shortcut-astra-settings-below-header-section-2-search-box-type .customize-partial-edit-shortcut-button{top:-10px;left:-25px}.below-header-section-2 .ast-site-header-cart .customize-partial-edit-shortcut-astra-settings-below-header-section-2 .customize-partial-edit-shortcut-button{left:-25px}.below-header-section-2 .customize-partial-edit-shortcut-astra-settings-below-header-section-2-html .customize-partial-edit-shortcut-button{left:-25px}.customize-partial-edit-shortcut-astra-settings-above-header-layout .customize-partial-edit-shortcut-button,.customize-partial-edit-shortcut-astra-settings-below-header-layout .customize-partial-edit-shortcut-button{left:-60px}.ast-header-break-point .ast-mobile-menu-buttons{text-align:right;-js-display:flex;display:flex;justify-content:flex-end}.ast-header-break-point .ast-mobile-menu-buttons .ast-button-wrap .ast-mobile-menu-buttons-minimal{font-size:1.7em}.sticky{display:block}.hentry{margin:0 0 1.5em}.byline,.updated:not(.published){display:none}.group-blog .byline,.single .byline{display:inline}.page-links{clear:both;margin-top:1em}.page-links a{display:inline-block}.page-links a .page-link{border-color:#eaeaea;background:0 0}.page-links .page-link{padding:0;margin:0 0 .3em .3em;border:2px solid #eaeaea;color:#000;background:0 0;font-size:.8em;width:2.5em;height:2.5em;line-height:calc(2.5em - 4px);display:inline-block;text-align:center;transition:all .2s linear}.page-links .page-link:focus,.page-links .page-link:hover{color:#000}@media (max-width:768px){.page-links .page-link{margin-bottom:6px}}.entry-content>:last-child,.entry-summary>:last-child,.page-content>:last-child{margin-bottom:0}.comment-content a{word-wrap:break-word}.bypostauthor{display:block}.ast-no-sidebar .entry-content .alignfull{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);max-width:100vw;width:100vw}.ast-no-sidebar .entry-content .alignfull .alignfull,.ast-no-sidebar .entry-content .alignfull .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .alignwide{margin-left:-100px;margin-right:-100px;max-width:unset;width:unset}.ast-no-sidebar .entry-content .alignwide .alignfull,.ast-no-sidebar .entry-content .alignwide .alignwide{width:100%;margin-left:auto;margin-right:auto}.ast-no-sidebar .entry-content .wp-block-column .alignfull,.ast-no-sidebar .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-6.67em;margin-right:-6.67em;width:auto}@media (max-width:1200px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-2.4em;margin-right:-2.4em}}@media (max-width:768px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-2.14em;margin-right:-2.14em}}@media (max-width:544px){.ast-no-sidebar.ast-separate-container .entry-content .alignfull{margin-left:-1em;margin-right:-1em}}.ast-no-sidebar.ast-separate-container .entry-content .alignwide{margin-left:-20px;margin-right:-20px}.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull,.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide{margin-left:auto;margin-right:auto;width:100%}.blocks-gallery-grid,.wp-block-gallery{margin:0}.wp-block-separator{max-width:100px}.wp-block-separator.is-style-wide{max-width:none}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:10px}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:10px}@media (max-width:782px){.entry-content .wp-block-columns .wp-block-column{flex-basis:100%}.entry-content .has-2-columns .wp-block-column:first-child{padding-right:0}.entry-content .has-2-columns .wp-block-column:last-child{padding-left:0}}body{overflow-x:hidden}body .entry-content .wp-block-latest-posts{margin-left:0}body .entry-content .wp-block-latest-posts li{list-style:none}.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts{margin-left:0}.ast-header-break-point .entry-content .alignwide{margin-left:auto;margin-right:auto}.entry-content .blocks-gallery-item img{margin-bottom:auto}.wp-block-pullquote{border-top:4px solid #555d66;border-bottom:4px solid #555d66;color:#40464d}.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide{margin-left:0;margin-right:0}.widget-title{font-weight:400;margin-bottom:1em;line-height:1.5}.widget{margin:0 0 2.8em 0}.widget:last-child{margin-bottom:0}.widget select{max-width:100%}.widget ul{margin:0;list-style-type:none}.widget_nav_menu ul ul.sub-menu{margin-top:.25em}.widget_nav_menu ul ul.sub-menu li{padding-left:20px}.widget_nav_menu ul ul.sub-menu a:after{left:-20px}.widget_nav_menu ul ul.sub-menu ul a:after{left:-40px}.widget_nav_menu ul ul.sub-menu ul ul a:after{left:-60px}.widget_nav_menu li{transition:all .2s linear}.widget_search .search-form{position:relative;padding:0;background:initial;color:inherit}.widget_search .search-form:after{font-family:Astra;font-size:1.2em;font-weight:400;content:"\e8b6";position:absolute;top:50%;right:15px;transform:translate(0,-50%)}.widget_search .search-form>label{position:relative}.widget_search .search-form input[type=submit],.widget_search .search-form input[type=submit]:focus,.widget_search .search-form input[type=submit]:hover{padding:13px 20px;border-radius:2px;border:none;top:0;right:0;position:absolute;color:transparent;background:0 0;max-width:45px;z-index:2}.widget_search .search-form .search-field{background:#fafafa;border-width:1px;border-color:#eaeaea;border-radius:2px}.widget_search .search-field,.widget_search .search-field:focus{width:100%;padding:16px 45px 16px 15px}.widget_archive ul.children,.widget_categories ul.children,.widget_pages ul.children{position:relative;margin-top:5px;width:100%}.widget_archive ul.children li,.widget_categories ul.children li,.widget_pages ul.children li{padding-left:20px}.widget_archive li ul.children a:after,.widget_categories li ul.children a:after,.widget_pages li ul.children a:after{left:-20px}.widget_archive li ul.children ul a:after,.widget_categories li ul.children ul a:after,.widget_pages li ul.children ul a:after{left:-40px}.widget_tag_cloud .tagcloud{margin-top:10px;display:inline-block}.widget_tag_cloud .tagcloud a{border:1px solid #e2e2e2;padding:.5em .9em;display:inline-block;margin-bottom:4px;font-size:14px;margin-right:4px;line-height:1.5;transition:all .2s linear}.widget_calendar table,.widget_calendar td,.widget_calendar th{padding:0;text-align:center}.widget_calendar table,.widget_calendar th{border:none}.widget_calendar td{border-right:none;border-left:none}.widget_calendar caption{line-height:2.7em}.widget_calendar thead{line-height:2.5em}.widget_calendar thead a{color:#0274be;font-size:1rem;vertical-align:middle}.widget_calendar thead td{vertical-align:middle;font-weight:700}.widget_calendar thead>tr>th{line-height:2.5em;border-bottom:2px solid #eaeaea;border-top:2px solid #eaeaea}.widget_calendar tbody{line-height:2.1em;text-align:center}.widget_calendar tbody>tr>td{width:14.2857%}.widget_calendar tbody>tr:first-child>td{padding-top:3px}.widget_calendar #today{background:#0274be}.ast-separate-container.ast-two-container #secondary .widget{background-color:#fff;padding:2em;margin-bottom:2em}.ast-footer-overlay{background-color:#3a3a3a;padding-top:2em;padding-bottom:2em}@media (min-width:769px){.ast-footer-overlay{padding-top:2.66666em;padding-bottom:2.66666em}}.ast-small-footer{line-height:1.85714285714286;position:relative}.ast-small-footer .nav-menu a{padding:0 .5em}.ast-small-footer .no-widget-text,.ast-small-footer .widget-title{margin-bottom:0}.ast-small-footer .widget{margin-bottom:1em}.ast-small-footer .widget ul{position:static;border:0;width:auto}.ast-small-footer .widget ul a{border:0}.ast-small-footer .widget:last-child{margin-bottom:0}@media (min-width:769px){.ast-small-footer .nav-menu li{margin:0}.ast-small-footer .nav-menu li:first-child a{padding-left:0}.ast-small-footer .nav-menu li:last-child a{padding-right:0}}.ast-footer-site-title .customize-partial-edit-shortcut-button{display:none}.footer-sml-layout-1{text-align:center}.footer-sml-layout-1 .ast-small-footer-section-2{margin-top:1em}.footer-sml-layout-2 .ast-small-footer-section-1,.footer-sml-layout-2 .ast-small-footer-section-2{text-align:center}@media (min-width:769px){.footer-sml-layout-2 .ast-small-footer-section-1{text-align:left}.footer-sml-layout-2 .ast-small-footer-section-1 .menu-item .menu-link{padding:0 1em 0 0}.footer-sml-layout-2 .ast-small-footer-section-2{text-align:right}.footer-sml-layout-2 .ast-small-footer-section-2 .menu-item .menu-link{padding:0 0 0 1em}}@media (max-width:768px){.ast-header-break-point .footer-sml-layout-2 .ast-small-footer-section-2{margin-top:1em}}@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0){.ast-small-footer-wrap .ast-row:before{display:block}}.site-footer{color:#fff}.site-footer .widget-title{color:#eaeaea}.site-footer a{color:#eaeaea}.site-footer a:focus,.site-footer a:hover{color:#fff}.site-footer ul{margin:0;list-style-type:none}.site-footer .nav-menu li{display:inline-block}.footer-adv-overlay{background-color:#3a3a3a;padding-top:70px;padding-bottom:70px}.footer-adv p:last-child{margin-bottom:0}.footer-adv .widget_calendar table{margin-bottom:0}@media all and (max-width:768px){.footer-adv-widget-1 .widget:last-child{margin:0 0 2.8em}}.footer-adv .ast-no-widget-row .widget-title{text-transform:capitalize}@media all and (max-width:768px){.footer-adv-layout-4 .footer-adv-widget-2 .widget:last-child,.footer-adv-layout-4 .footer-adv-widget-3 .widget:last-child{margin:0 0 2.8em}}input[type=email],input[type=number],input[type=password],input[type=reset],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{color:#666;padding:.75em;height:auto;border-width:1px;border-style:solid;border-color:#eaeaea;border-radius:2px;background:#fafafa;box-shadow:none;box-sizing:border-box;transition:all .2s linear}input[type=email]:focus,input[type=password]:focus,input[type=reset]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{background-color:#fff;border-color:#eaeaea;box-shadow:none}input[type=button],input[type=button]:focus,input[type=button]:hover,input[type=reset],input[type=reset]:focus,input[type=reset]:hover,input[type=submit],input[type=submit]:focus,input[type=submit]:hover{box-shadow:none}textarea{width:100%}input[type=search]:focus{outline:thin dotted}input[type=range]{-webkit-appearance:none;width:100%;margin:5.7px 0;padding:0;border:none}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-webkit-slider-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;-webkit-appearance:none;margin-top:-5.7px}input[type=range]:focus::-webkit-slider-runnable-track{background:rgba(255,255,255,.2)}input[type=range]::-moz-range-track{width:100%;height:8.6px;cursor:pointer;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9;background:rgba(255,255,255,.2);border-radius:13.6px;border:0 solid #fff}input[type=range]::-moz-range-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer}input[type=range]::-ms-track{width:100%;height:8.6px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:rgba(199,199,199,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-fill-upper{background:rgba(255,255,255,.2);border:0 solid #fff;border-radius:27.2px;box-shadow:2.6px 2.6px .4px #ccc,0 0 2.6px #d9d9d9}input[type=range]::-ms-thumb{box-shadow:0 0 0 rgba(255,221,0,.37),0 0 0 rgba(255,224,26,.37);border:7.9px solid #0274be;height:20px;width:20px;border-radius:50px;background:#0274be;cursor:pointer;height:8.6px}input[type=range]:focus::-ms-fill-lower{background:rgba(255,255,255,.2)}input[type=range]:focus::-ms-fill-upper{background:rgba(255,255,255,.2)}input[type=color]{border:none;width:100px;padding:0;height:30px;cursor:pointer}input[type=color]::-webkit-color-swatch-wrapper{padding:0;border:none}input[type=color]::-webkit-color-swatch{border:none}.page .entry-header{margin-bottom:1.5em}.search .entry-header{margin-bottom:1em}.ast-single-post .entry-header.ast-header-without-markup,.ast-single-post .entry-header.ast-no-title.ast-no-thumbnail{margin-bottom:0}.entry-header{margin-bottom:1em;word-wrap:break-word}.entry-header+.ast-blog-featured-section{margin-top:.5em}.entry-content{word-wrap:break-word}.entry-content p{margin-bottom:1.6em}.read-more{margin-bottom:0}.read-more .ast-right-arrow{font-size:1em}.ast-no-thumb .ast-blog-featured-section{margin-bottom:0}.ast-no-thumb .entry-header+.ast-blog-featured-section{margin-top:0}.ast-blog-featured-section{margin-bottom:1.5em}.ast-blog-featured-section .gallery{margin-bottom:0}.error404 .page-header{margin-bottom:1.5em}.error404 .page-header .page-title{margin-bottom:0}.archive .entry-title,.blog .entry-title,.search .entry-title{line-height:1.3}.archive .format-aside .entry-title,.archive .format-status .entry-title,.blog .format-aside .entry-title,.blog .format-status .entry-title{display:none}.page-title{margin-bottom:1em;font-weight:400}.entry-title{margin-bottom:.2em}.ast-article-post{margin-bottom:2.5em}.ast-article-post:last-child{margin-bottom:0;border-bottom:0}.search .site-content .content-area .search-form{margin-bottom:3em}.blog-layout-1 .post-thumb{padding-left:0;padding-right:0;position:relative}.blog .posted-on{z-index:1}.ast-blog-featured-section .posted-on{width:5.714285714em;height:5.714285714em;padding:.7em}.ast-blog-featured-section .posted-on .date-month,.ast-blog-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-blog-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-author-box img.avatar{border-radius:50%;margin:0 0 0 20px}.ast-archive-description{margin-bottom:2.5em;padding-bottom:1.3333em;border-bottom:1px solid #eee}.ast-archive-description .ast-archive-title{margin-bottom:4px;font-size:40px;font-size:2.85714rem;font-weight:300}.ast-archive-description p{margin-bottom:0;font-size:20px;font-size:1.42857rem;line-height:1.65;font-weight:300}.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{background-color:#eee;padding-bottom:0;border-bottom:0}@media (max-width:1200px){.ast-separate-container .ast-archive-description{margin:0;padding:3.34em 2.4em}}@media (max-width:992px){.ast-separate-container .ast-archive-description{padding:2.14em}}@media (min-width:1201px){.ast-separate-container .ast-archive-description,.ast-separate-container .ast-author-box{margin:0;padding:5em 6.67em 3.33333em}}.single .entry-header{margin-bottom:2em}.single .post-navigation{margin:0;padding:2em 0 0;border-top:1px solid #eee}@media (max-width:768px){.single .post-navigation{padding-top:1.5em}}.single .post-navigation a{margin:2px;display:inline-block;text-align:center;color:#000}@media (min-width:421px){.single .post-navigation .nav-links{-js-display:flex;display:flex}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{flex:auto}}@media (max-width:420px){.single .post-navigation .ast-left-arrow,.single .post-navigation .ast-right-arrow{display:none}.single .post-navigation .nav-next,.single .post-navigation .nav-previous{width:100%}.single .post-navigation .nav-next a,.single .post-navigation .nav-previous a{width:100%}.single .post-navigation .nav-previous{margin-bottom:1em}}.single.ast-page-builder-template .entry-header{padding-left:20px;padding-right:20px}.single .entry-header .ast-single-post-order+.post-thumb img{margin-top:2em;margin-bottom:0}.single .entry-header.ast-no-title .post-thumb+.ast-single-post-order{margin-top:0}.single .entry-header .post-thumb+.ast-single-post-order{margin-top:2em}.single .entry-header .post-thumb img{margin-top:0;margin-bottom:0}.page .has-post-thumbnail .post-thumb img{margin-bottom:1.5em}.post-password-form{text-align:center}@media (max-width:420px){.post-password-form input[type=password]{display:block;margin:10px auto}}.post-password-form input[type=submit]{padding:10px 20px;border-radius:2px}.ast-separate-container .post-navigation{border-top:0;padding-left:3.33333em;padding-right:3.33333em}@media (max-width:420px){.ast-separate-container .post-navigation{padding-left:0;padding-right:0}}@media (max-width:768px){.ast-separate-container .entry-header{margin-bottom:1em}}.ast-page-builder-template.single-post .site-content>.ast-container{max-width:100%}.comments-count-wrapper{padding:2em 0}.comments-count-wrapper .comments-title{font-weight:400;word-wrap:break-word}.ast-comment-list{margin:0;word-wrap:break-word;padding-bottom:.5em;list-style:none}.ast-comment-list li{list-style:none}.ast-comment-list li.depth-1 .ast-comment,.ast-comment-list li.depth-2 .ast-comment{border-bottom:1px solid #eee}.ast-comment-list .children{margin-left:2em}@media (max-width:992px){.ast-comment-list .children{margin-left:1em}}.ast-comment-list .comment-respond{padding:1em 0;border-bottom:1px solid #eee}.ast-comment-list .comment-respond .comment-reply-title{margin-top:0;padding-top:0}.ast-comment-list .comment-respond p{margin-bottom:.5em}.ast-comment-list #cancel-comment-reply-link{white-space:nowrap;font-size:15px;font-size:1rem;margin-left:1em}.ast-comment-list .ast-comment-edit-reply-wrap{-js-display:flex;display:flex;justify-content:flex-end}.ast-comment-list .ast-edit-link{flex:1}.ast-comment-list .comment-awaiting-moderation{margin-bottom:0}.ast-comment{padding:1em 0}.ast-comment-avatar-wrap{float:left;clear:right;margin-right:1.33333em}.ast-comment-avatar-wrap img{border-radius:50%}.ast-comment-meta-wrap{float:left;clear:right;padding:0 0 1.33333em}.ast-comment-content{clear:both}.ast-comment-cite-wrap{text-align:left}.ast-comment-cite-wrap cite{font-style:normal}.comment-reply-title{padding-top:1em;font-weight:400;line-height:1.65}.ast-comment-meta{margin-bottom:.5em}.ast-comment-time .reply,.ast-comment-time .timendate{margin-right:.5em}.comments-area{border-top:1px solid #eee;margin-top:2em}.comments-area .comment-form-comment{width:100%;border:none;margin:0;padding:0}.comments-area .comment-notes,.comments-area .comment-textarea,.comments-area .form-allowed-tags{margin-bottom:1.5em}.comments-area .form-submit{margin-bottom:0}.comments-area .ast-comment-formwrap input[type=text],.comments-area textarea#comment{width:100%;border-radius:0;vertical-align:middle;margin-bottom:10px}.comments-area .no-comments{margin-top:.5em;margin-bottom:.5em}.comments-area p.logged-in-as{margin-bottom:1em}.comments-area #wp-comment-cookies-consent{margin-right:10px}.ast-separate-container .comments-count-wrapper{background-color:#fff;padding:2em 6.67em 0}@media (max-width:1200px){.ast-separate-container .comments-count-wrapper{padding:2em 3.34em}}.ast-separate-container .comments-area{border-top:0}.ast-separate-container .ast-comment-list{padding-bottom:0}.ast-separate-container .ast-comment-list li{background-color:#fff}.ast-separate-container .ast-comment-list li.depth-1{padding:4em 6.67em;margin-bottom:2em}@media (max-width:1200px){.ast-separate-container .ast-comment-list li.depth-1{padding:3em 3.34em}}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .children li{padding-bottom:0;padding-top:0;margin-bottom:0}.ast-separate-container .ast-comment-list li.depth-1 .ast-comment,.ast-separate-container .ast-comment-list li.depth-2 .ast-comment{border-bottom:0}.ast-separate-container .ast-comment-list .comment-respond{padding-top:0;padding-bottom:1em;background-color:transparent}.ast-separate-container .ast-comment-list .pingback p{margin-bottom:0}.ast-separate-container .ast-comment-list .bypostauthor{padding:2em;margin-bottom:1em}.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor{background:0 0;margin-bottom:0;padding-right:0;padding-bottom:0;padding-top:0}.ast-separate-container .ast-comment-list .bypostauthor li{background:0 0;margin-bottom:0;padding:0 0 0 2em}.ast-separate-container .comment-respond{background-color:#fff;padding:4em 6.67em;border-bottom:0}@media (max-width:1200px){.ast-separate-container .comment-respond{padding:3em 2.34em}}.ast-separate-container .comment-reply-title{padding-top:0}.ast-page-builder-template .comments-area{padding-left:20px;padding-right:20px;margin-top:2em;margin-bottom:2em}.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers,.post-navigation a{padding:0 1.5em;height:2.33333em;line-height:calc(2.33333em - 3px)}.post-navigation a{background:0 0;font-size:16px;font-size:1.06666rem}.ast-pagination{display:inline-block;width:100%;padding-top:2em}@media (min-width:993px){.ast-pagination{padding-left:3.33333em;padding-right:3.33333em}}.ast-pagination .page-numbers{display:inline-block;width:2.33333em;height:2.33333em;font-size:16px;font-size:1.06666rem;line-height:calc(2.33333em - 3px);text-align:center}.ast-pagination .nav-links{display:inline-block;width:100%}@media (max-width:420px){.ast-pagination .next.page-numbers,.ast-pagination .prev.page-numbers{width:100%;text-align:center;margin:0}}.ast-pagination .next.page-numbers,.ast-pagination .next.page-numbers:focus,.ast-pagination .next.page-numbers:visited,.ast-pagination .prev.page-numbers,.ast-pagination .prev.page-numbers:focus,.ast-pagination .prev.page-numbers:visited{display:inline-block;width:auto}@media (min-width:769px){.ast-pagination .next.page-numbers.next,.ast-pagination .next.page-numbers:focus.next,.ast-pagination .next.page-numbers:visited.next,.ast-pagination .prev.page-numbers.next,.ast-pagination .prev.page-numbers:focus.next,.ast-pagination .prev.page-numbers:visited.next{margin-right:0}}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers.dots:focus,.ast-pagination .next.page-numbers.dots:hover,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:focus.dots:focus,.ast-pagination .next.page-numbers:focus.dots:hover,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .next.page-numbers:visited.dots:focus,.ast-pagination .next.page-numbers:visited.dots:hover,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers.dots:focus,.ast-pagination .prev.page-numbers.dots:hover,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:focus.dots:focus,.ast-pagination .prev.page-numbers:focus.dots:hover,.ast-pagination .prev.page-numbers:visited.dots,.ast-pagination .prev.page-numbers:visited.dots:focus,.ast-pagination .prev.page-numbers:visited.dots:hover{border:2px solid #eaeaea;background:0 0}.ast-pagination .next.page-numbers.dots,.ast-pagination .next.page-numbers:focus.dots,.ast-pagination .next.page-numbers:visited.dots,.ast-pagination .prev.page-numbers.dots,.ast-pagination .prev.page-numbers:focus.dots,.ast-pagination .prev.page-numbers:visited.dots{cursor:default}.ast-pagination .next.page-numbers{float:right;text-align:right}@media (max-width:768px){.ast-pagination .next.page-numbers .page-navigation{padding-right:0}}@media (max-width:768px){.ast-pagination .prev_next{display:inline-block;width:100%}}.ast-pagination .prev_next .next .ast-right-arrow,.ast-pagination .prev_next .prev .ast-left-arrow{font-size:1em;line-height:1em}@media (min-width:769px){.ast-pagination .prev_next{float:right}}.ast-404-layout-1{text-align:center;margin:4em auto}.ast-404-layout-1 .page-sub-title{font-size:1.5rem;font-weight:700}.ast-404-layout-1 .widget_search{padding-top:.5em}.ast-404-search{margin-top:1.5em}.ast-404-search .widget_search{max-width:370px;margin:0 auto}.ast-separate-container .error-404,.ast-separate-container .no-results{background-color:#fff}@media (max-width:1200px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:3.34em 2.4em}}@media (max-width:768px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 2.14em}}@media (max-width:544px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{padding:1.5em 1em}}@media (min-width:1201px){.ast-separate-container .ast-404-layout-1,.ast-separate-container .no-results{margin:0;padding:5.34em 6.67em}}.blog-layout-1{width:100%;display:inline-block;padding-bottom:2em;vertical-align:middle;border-bottom:1px solid #eee}.blog-layout-1 .posted-on{left:0}.blog-layout-1 .post-content,.blog-layout-1 .post-thumb{padding-left:0;padding-right:0}.fl-builder-content{clear:both}.fl-theme-builder-archive .fl-post-column>.hentry,.fl-theme-builder-archive .fl-post-gallery-post.hentry{margin:0}.fl-theme-builder-archive h2.fl-post-feed-title{clear:initial}.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width{padding-left:0;padding-right:0}.js_active .vc_row{margin-left:auto;margin-right:auto}.js_active .ast-plain-container.ast-single-post #primary,.js_active .ast-plain-container.ast-single-post .hentry{margin:0;padding-top:0;padding-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:4em}.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup{margin-top:0;margin-bottom:0}.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta{margin-bottom:0}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post .entry-header{margin-top:1.5em}}@media (max-width:768px){.js_active .ast-plain-container.ast-single-post #secondary{margin-top:1.5em}}.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;left:0!important}.js_active .ast-left-sidebar .vc_row[data-vc-full-width],.js_active .ast-right-sidebar .vc_row[data-vc-full-width]{max-width:100%;left:0!important;padding-right:0!important;padding-left:0!important}.ast-left-sidebar .elementor-section.elementor-section-stretched,.ast-right-sidebar .elementor-section.elementor-section-stretched{max-width:100%;left:0!important}.elementor-post.elementor-grid-item.hentry{margin-bottom:0}.elementor-element .elementor-wc-products .woocommerce[class*=columns-] ul.products li.product{width:auto;margin:0;float:none}.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product{width:auto;margin:0;float:none}.ast-flex{-js-display:flex;display:flex;flex-wrap:wrap}.ast-flex-1{flex:1}.ast-flex-2{flex:2}.ast-flex-3{flex:3}.ast-flex-4{flex:4}.ast-flex-5{flex:5}.ast-inline-flex{-js-display:inline-flex;display:inline-flex;align-items:center;flex-wrap:wrap;align-content:center}.ast-flex-direction-row{flex-direction:row}.ast-flex-direction-row-reverse{flex-direction:row-reverse}.ast-flex-direction-column{flex-direction:column}.ast-flex-direction-column-reverse{flex-direction:column-reverse}.ast-flex-wrap-nowrap{flex-wrap:nowrap}.ast-flex-wrap-wrap{flex-wrap:wrap}.ast-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse}.ast-justify-content-flex-start{justify-content:flex-start}.ast-justify-content-flex-end{justify-content:flex-end}.ast-justify-content-center{justify-content:center}.ast-justify-content-space-between{justify-content:space-between}.ast-justify-content-space-around{justify-content:space-around}.ast-align-items-flex-start{align-items:flex-start}.ast-align-items-flex-end{align-items:flex-end}.ast-align-items-center{align-items:center}.ast-align-items-baseline{align-items:baseline}.ast-align-items-stretch{align-items:stretch}.ast-align-content-flex-start{align-content:flex-start}.ast-align-content-flex-end{align-content:flex-end}.ast-align-content-center{align-content:center}.ast-align-content-space-between{align-content:space-between}.ast-align-content-space-around{align-content:space-around}.ast-align-content-stretch{align-content:stretch}.ast-order-1{order:1}.ast-order-2{order:2}.ast-order-3{order:3}.ast-order-4{order:4}.ast-order-5{order:5}.ast-flex-grow-1{flex-grow:1}.ast-flex-grow-2{flex-grow:2}.ast-flex-grow-3{flex-grow:3}.ast-flex-grow-4{flex-grow:4}.ast-flex-grow-5{flex-grow:5}.ast-flex-shrink-1{flex-shrink:1}.ast-flex-shrink-2{flex-shrink:2}.ast-flex-shrink-3{flex-shrink:3}.ast-flex-shrink-4{flex-shrink:4}.ast-flex-shrink-5{flex-shrink:5}.ast-align-self-auto{align-self:auto}.ast-align-self-flex-start{align-self:flex-start}.ast-align-self-flex-end{align-self:flex-end}.ast-align-self-center{align-self:center}.ast-align-self-baseline{align-self:baseline}.ast-align-self-stretch{align-self:stretch} \ No newline at end of file diff --git a/assets/css/unminified/compatibility/woocommerce/woocommerce-rtl.css b/assets/css/unminified/compatibility/woocommerce/woocommerce-rtl.css index 9def59c..777b034 100644 --- a/assets/css/unminified/compatibility/woocommerce/woocommerce-rtl.css +++ b/assets/css/unminified/compatibility/woocommerce/woocommerce-rtl.css @@ -4479,11 +4479,11 @@ button.pswp__button--zoom:hover { * Woocommerce Pagination RTL */ .rtl .woocommerce-pagination .page-numbers li:last-child .next { - transform: rotateY(180deg); + transform: rotateY(-180deg); } .rtl .woocommerce-pagination .page-numbers li:first-child .prev { - transform: rotateY(-180deg); + transform: rotateY(180deg); } .ast-site-header-cart .widgettitle { @@ -4609,3 +4609,14 @@ button.pswp__button--zoom:hover { .widget_product_categories .children { padding-right: 20px; } + +/** + * Firefox browser compatibility for WooCommerce. + * + * 1. Product Search widget button misalign issue. + */ +@supports (-moz-appearance: none) { + .sidebar-main .widget_product_search .search-field { + width: 60%; + } +} diff --git a/assets/css/unminified/compatibility/woocommerce/woocommerce.css b/assets/css/unminified/compatibility/woocommerce/woocommerce.css index 80b0855..3a36d81 100644 --- a/assets/css/unminified/compatibility/woocommerce/woocommerce.css +++ b/assets/css/unminified/compatibility/woocommerce/woocommerce.css @@ -4610,3 +4610,14 @@ button.pswp__button--zoom:hover { .widget_product_categories .children { padding-left: 20px; } + +/** + * Firefox browser compatibility for WooCommerce. + * + * 1. Product Search widget button misalign issue. + */ +@supports (-moz-appearance: none) { + .sidebar-main .widget_product_search .search-field { + width: 60%; + } +} diff --git a/assets/css/unminified/customizer-controls-rtl.css b/assets/css/unminified/customizer-controls-rtl.css index a881af4..8fc3df3 100644 --- a/assets/css/unminified/customizer-controls-rtl.css +++ b/assets/css/unminified/customizer-controls-rtl.css @@ -123,6 +123,18 @@ padding-right: 5px; } +.customize-pane-child > li[id="customize-control-astra-settings-headings-font-weight"], +.customize-pane-child > li[id="customize-control-astra-settings-body-font-weight"], +.customize-pane-child > li[id*="-font-weight"] { + padding-right: 0; +} + +.rtl .customize-pane-child > li[id="customize-control-astra-settings-headings-text-transform"], +.rtl .customize-pane-child > li[id="customize-control-astra-settings-body-text-transform"], +.rtl .customize-pane-child > li[id*="-text-transform"] { + padding-left: 0; +} + /* WP Beta 5.3 compatibility CSS - Start */ .customize-control select.ast-responsive-select { @@ -244,4 +256,4 @@ .customize-control-ast-background .wp-picker-container { display: block; - } \ No newline at end of file + } diff --git a/assets/css/unminified/customizer-controls.css b/assets/css/unminified/customizer-controls.css index c41a50f..e35aff2 100644 --- a/assets/css/unminified/customizer-controls.css +++ b/assets/css/unminified/customizer-controls.css @@ -123,6 +123,18 @@ padding-left: 5px; } +.customize-pane-child > li[id="customize-control-astra-settings-headings-font-weight"], +.customize-pane-child > li[id="customize-control-astra-settings-body-font-weight"], +.customize-pane-child > li[id*="-font-weight"] { + padding-left: 0; +} + +.rtl .customize-pane-child > li[id="customize-control-astra-settings-headings-text-transform"], +.rtl .customize-pane-child > li[id="customize-control-astra-settings-body-text-transform"], +.rtl .customize-pane-child > li[id*="-text-transform"] { + padding-right: 0; +} + /* WP Beta 5.3 compatibility CSS - Start */ .customize-control select.ast-responsive-select { @@ -244,4 +256,4 @@ .customize-control-ast-background .wp-picker-container { display: block; - } \ No newline at end of file + } diff --git a/assets/css/unminified/editor-style-rtl.css b/assets/css/unminified/editor-style-rtl.css index dd869d5..1e1e699 100644 --- a/assets/css/unminified/editor-style-rtl.css +++ b/assets/css/unminified/editor-style-rtl.css @@ -1886,6 +1886,7 @@ input[type="submit"]:focus { .ast-search-menu-icon { position: relative; + z-index: 3; } .ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon { diff --git a/assets/css/unminified/editor-style.css b/assets/css/unminified/editor-style.css index d78fd23..2cdf9e3 100644 --- a/assets/css/unminified/editor-style.css +++ b/assets/css/unminified/editor-style.css @@ -1886,6 +1886,7 @@ input[type="submit"]:focus { .ast-search-menu-icon { position: relative; + z-index: 3; } .ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon { diff --git a/assets/css/unminified/frontend-rtl.css b/assets/css/unminified/frontend-rtl.css new file mode 100644 index 0000000..07578d5 --- /dev/null +++ b/assets/css/unminified/frontend-rtl.css @@ -0,0 +1,6223 @@ +@charset "UTF-8"; +/*-------------------------------------------------------------- +>>> TABLE OF CONTENTS: +---------------------------------------------------------------- +# Normalize +# Typography +# Elements +# Forms +# Navigation + ## Links + ## Menus +# Accessibility +# Alignments +# Clearings +# Widgets +# Content + ## Posts and pages + ## Asides + ## Comments +# Infinite scroll +# Media + ## Captions + ## Galleries +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +# Normalize +--------------------------------------------------------------*/ +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +font, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td { + border: 0; + font-size: 100%; + font-style: inherit; + font-weight: inherit; + margin: 0; + outline: 0; + padding: 0; + vertical-align: baseline; +} + +html { + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +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; +} + +a { + background-color: transparent; +} + +a:active { + outline: 0; +} + +a, +a:visited, +a:hover, +a:focus { + text-decoration: 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; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 0; +} + +hr { + box-sizing: content-box; + height: 0; +} + +pre { + overflow: auto; +} + +code, +kbd, +pre, +samp { + font-size: 1em; +} + +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"] { + -webkit-appearance: button; + cursor: pointer; +} + +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-appearance: textfield; + box-sizing: content-box; +} + +.search .search-submit, +#comments .submit { + padding: 10px 15px; + border-radius: 2px; + line-height: 1.85714285714286; + border: 0; +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +fieldset { + border: 1px solid #eaeaea; + margin: 0 0px; + padding: 0.35em 0.625em 0.75em; +} + +legend { + border: 0; + padding: 0; +} + +fieldset legend { + margin-bottom: 1.5em; + padding: 0 0.5em; +} + +textarea { + overflow: auto; +} + +optgroup { + font-weight: bold; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} + +/*-------------------------------------------------------------- +# Bootstrap Grid +--------------------------------------------------------------*/ +/*! + * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) + */ +.ast-container { + margin-right: auto; + margin-left: auto; + padding-right: 20px; + padding-left: 20px; +} + +.ast-container::after { + content: ""; + display: table; + clear: both; +} + +@media (min-width: 544px) { + .ast-container { + max-width: 100%; + } +} + +@media (min-width: 768px) { + .ast-container { + max-width: 100%; + } +} + +@media (min-width: 992px) { + .ast-container { + max-width: 100%; + } +} + +@media (min-width: 1200px) { + .ast-container { + max-width: 100%; + } +} + +.ast-container-fluid { + margin-right: auto; + margin-left: auto; + padding-right: 20px; + padding-left: 20px; +} + +.ast-container-fluid::after { + content: ""; + display: table; + clear: both; +} + +.ast-row { + margin-right: -20px; + margin-left: -20px; +} + +.ast-row::after { + content: ""; + display: table; + clear: both; +} + +.ast-col-xs-1, .ast-col-xs-2, .ast-col-xs-3, .ast-col-xs-4, .ast-col-xs-5, .ast-col-xs-6, .ast-col-xs-7, .ast-col-xs-8, .ast-col-xs-9, .ast-col-xs-10, .ast-col-xs-11, .ast-col-xs-12, .ast-col-sm-1, .ast-col-sm-2, .ast-col-sm-3, .ast-col-sm-4, .ast-col-sm-5, .ast-col-sm-6, .ast-col-sm-7, .ast-col-sm-8, .ast-col-sm-9, .ast-col-sm-10, .ast-col-sm-11, .ast-col-sm-12, .ast-col-md-1, .ast-col-md-2, .ast-col-md-3, .ast-col-md-4, .ast-col-md-5, .ast-col-md-6, .ast-col-md-7, .ast-col-md-8, .ast-col-md-9, .ast-col-md-10, .ast-col-md-11, .ast-col-md-12, .ast-col-lg-1, .ast-col-lg-2, .ast-col-lg-3, .ast-col-lg-4, .ast-col-lg-5, .ast-col-lg-6, .ast-col-lg-7, .ast-col-lg-8, .ast-col-lg-9, .ast-col-lg-10, .ast-col-lg-11, .ast-col-lg-12, .ast-col-xl-1, .ast-col-xl-2, .ast-col-xl-3, .ast-col-xl-4, .ast-col-xl-5, .ast-col-xl-6, .ast-col-xl-7, .ast-col-xl-8, .ast-col-xl-9, .ast-col-xl-10, .ast-col-xl-11, .ast-col-xl-12 { + position: relative; + min-height: 1px; + padding-right: 20px; + padding-left: 20px; +} + +.ast-col-xs-1, .ast-col-xs-2, .ast-col-xs-3, .ast-col-xs-4, .ast-col-xs-5, .ast-col-xs-6, .ast-col-xs-7, .ast-col-xs-8, .ast-col-xs-9, .ast-col-xs-10, .ast-col-xs-11, .ast-col-xs-12 { + float: right; +} + +.ast-col-xs-1 { + width: 8.3333333333%; +} + +.ast-col-xs-2 { + width: 16.6666666667%; +} + +.ast-col-xs-3 { + width: 25%; +} + +.ast-col-xs-4 { + width: 33.3333333333%; +} + +.ast-col-xs-5 { + width: 41.6666666667%; +} + +.ast-col-xs-6 { + width: 50%; +} + +.ast-col-xs-7 { + width: 58.3333333333%; +} + +.ast-col-xs-8 { + width: 66.6666666667%; +} + +.ast-col-xs-9 { + width: 75%; +} + +.ast-col-xs-10 { + width: 83.3333333333%; +} + +.ast-col-xs-11 { + width: 91.6666666667%; +} + +.ast-col-xs-12 { + width: 100%; +} + +.ast-col-xs-pull-0 { + left: auto; +} + +.ast-col-xs-pull-1 { + left: 8.3333333333%; +} + +.ast-col-xs-pull-2 { + left: 16.6666666667%; +} + +.ast-col-xs-pull-3 { + left: 25%; +} + +.ast-col-xs-pull-4 { + left: 33.3333333333%; +} + +.ast-col-xs-pull-5 { + left: 41.6666666667%; +} + +.ast-col-xs-pull-6 { + left: 50%; +} + +.ast-col-xs-pull-7 { + left: 58.3333333333%; +} + +.ast-col-xs-pull-8 { + left: 66.6666666667%; +} + +.ast-col-xs-pull-9 { + left: 75%; +} + +.ast-col-xs-pull-10 { + left: 83.3333333333%; +} + +.ast-col-xs-pull-11 { + left: 91.6666666667%; +} + +.ast-col-xs-pull-12 { + left: 100%; +} + +.ast-col-xs-push-0 { + right: auto; +} + +.ast-col-xs-push-1 { + right: 8.3333333333%; +} + +.ast-col-xs-push-2 { + right: 16.6666666667%; +} + +.ast-col-xs-push-3 { + right: 25%; +} + +.ast-col-xs-push-4 { + right: 33.3333333333%; +} + +.ast-col-xs-push-5 { + right: 41.6666666667%; +} + +.ast-col-xs-push-6 { + right: 50%; +} + +.ast-col-xs-push-7 { + right: 58.3333333333%; +} + +.ast-col-xs-push-8 { + right: 66.6666666667%; +} + +.ast-col-xs-push-9 { + right: 75%; +} + +.ast-col-xs-push-10 { + right: 83.3333333333%; +} + +.ast-col-xs-push-11 { + right: 91.6666666667%; +} + +.ast-col-xs-push-12 { + right: 100%; +} + +.ast-col-xs-offset-0 { + margin-right: 0%; +} + +.ast-col-xs-offset-1 { + margin-right: 8.3333333333%; +} + +.ast-col-xs-offset-2 { + margin-right: 16.6666666667%; +} + +.ast-col-xs-offset-3 { + margin-right: 25%; +} + +.ast-col-xs-offset-4 { + margin-right: 33.3333333333%; +} + +.ast-col-xs-offset-5 { + margin-right: 41.6666666667%; +} + +.ast-col-xs-offset-6 { + margin-right: 50%; +} + +.ast-col-xs-offset-7 { + margin-right: 58.3333333333%; +} + +.ast-col-xs-offset-8 { + margin-right: 66.6666666667%; +} + +.ast-col-xs-offset-9 { + margin-right: 75%; +} + +.ast-col-xs-offset-10 { + margin-right: 83.3333333333%; +} + +.ast-col-xs-offset-11 { + margin-right: 91.6666666667%; +} + +.ast-col-xs-offset-12 { + margin-right: 100%; +} + +@media (min-width: 544px) { + .ast-col-sm-1, .ast-col-sm-2, .ast-col-sm-3, .ast-col-sm-4, .ast-col-sm-5, .ast-col-sm-6, .ast-col-sm-7, .ast-col-sm-8, .ast-col-sm-9, .ast-col-sm-10, .ast-col-sm-11, .ast-col-sm-12 { + float: right; + } + .ast-col-sm-1 { + width: 8.3333333333%; + } + .ast-col-sm-2 { + width: 16.6666666667%; + } + .ast-col-sm-3 { + width: 25%; + } + .ast-col-sm-4 { + width: 33.3333333333%; + } + .ast-col-sm-5 { + width: 41.6666666667%; + } + .ast-col-sm-6 { + width: 50%; + } + .ast-col-sm-7 { + width: 58.3333333333%; + } + .ast-col-sm-8 { + width: 66.6666666667%; + } + .ast-col-sm-9 { + width: 75%; + } + .ast-col-sm-10 { + width: 83.3333333333%; + } + .ast-col-sm-11 { + width: 91.6666666667%; + } + .ast-col-sm-12 { + width: 100%; + } + .ast-col-sm-pull-0 { + left: auto; + } + .ast-col-sm-pull-1 { + left: 8.3333333333%; + } + .ast-col-sm-pull-2 { + left: 16.6666666667%; + } + .ast-col-sm-pull-3 { + left: 25%; + } + .ast-col-sm-pull-4 { + left: 33.3333333333%; + } + .ast-col-sm-pull-5 { + left: 41.6666666667%; + } + .ast-col-sm-pull-6 { + left: 50%; + } + .ast-col-sm-pull-7 { + left: 58.3333333333%; + } + .ast-col-sm-pull-8 { + left: 66.6666666667%; + } + .ast-col-sm-pull-9 { + left: 75%; + } + .ast-col-sm-pull-10 { + left: 83.3333333333%; + } + .ast-col-sm-pull-11 { + left: 91.6666666667%; + } + .ast-col-sm-pull-12 { + left: 100%; + } + .ast-col-sm-push-0 { + right: auto; + } + .ast-col-sm-push-1 { + right: 8.3333333333%; + } + .ast-col-sm-push-2 { + right: 16.6666666667%; + } + .ast-col-sm-push-3 { + right: 25%; + } + .ast-col-sm-push-4 { + right: 33.3333333333%; + } + .ast-col-sm-push-5 { + right: 41.6666666667%; + } + .ast-col-sm-push-6 { + right: 50%; + } + .ast-col-sm-push-7 { + right: 58.3333333333%; + } + .ast-col-sm-push-8 { + right: 66.6666666667%; + } + .ast-col-sm-push-9 { + right: 75%; + } + .ast-col-sm-push-10 { + right: 83.3333333333%; + } + .ast-col-sm-push-11 { + right: 91.6666666667%; + } + .ast-col-sm-push-12 { + right: 100%; + } + .ast-col-sm-offset-0 { + margin-right: 0%; + } + .ast-col-sm-offset-1 { + margin-right: 8.3333333333%; + } + .ast-col-sm-offset-2 { + margin-right: 16.6666666667%; + } + .ast-col-sm-offset-3 { + margin-right: 25%; + } + .ast-col-sm-offset-4 { + margin-right: 33.3333333333%; + } + .ast-col-sm-offset-5 { + margin-right: 41.6666666667%; + } + .ast-col-sm-offset-6 { + margin-right: 50%; + } + .ast-col-sm-offset-7 { + margin-right: 58.3333333333%; + } + .ast-col-sm-offset-8 { + margin-right: 66.6666666667%; + } + .ast-col-sm-offset-9 { + margin-right: 75%; + } + .ast-col-sm-offset-10 { + margin-right: 83.3333333333%; + } + .ast-col-sm-offset-11 { + margin-right: 91.6666666667%; + } + .ast-col-sm-offset-12 { + margin-right: 100%; + } +} + +@media (min-width: 768px) { + .ast-col-md-1, .ast-col-md-2, .ast-col-md-3, .ast-col-md-4, .ast-col-md-5, .ast-col-md-6, .ast-col-md-7, .ast-col-md-8, .ast-col-md-9, .ast-col-md-10, .ast-col-md-11, .ast-col-md-12 { + float: right; + } + .ast-col-md-1 { + width: 8.3333333333%; + } + .ast-col-md-2 { + width: 16.6666666667%; + } + .ast-col-md-3 { + width: 25%; + } + .ast-col-md-4 { + width: 33.3333333333%; + } + .ast-col-md-5 { + width: 41.6666666667%; + } + .ast-col-md-6 { + width: 50%; + } + .ast-col-md-7 { + width: 58.3333333333%; + } + .ast-col-md-8 { + width: 66.6666666667%; + } + .ast-col-md-9 { + width: 75%; + } + .ast-col-md-10 { + width: 83.3333333333%; + } + .ast-col-md-11 { + width: 91.6666666667%; + } + .ast-col-md-12 { + width: 100%; + } + .ast-col-md-pull-0 { + left: auto; + } + .ast-col-md-pull-1 { + left: 8.3333333333%; + } + .ast-col-md-pull-2 { + left: 16.6666666667%; + } + .ast-col-md-pull-3 { + left: 25%; + } + .ast-col-md-pull-4 { + left: 33.3333333333%; + } + .ast-col-md-pull-5 { + left: 41.6666666667%; + } + .ast-col-md-pull-6 { + left: 50%; + } + .ast-col-md-pull-7 { + left: 58.3333333333%; + } + .ast-col-md-pull-8 { + left: 66.6666666667%; + } + .ast-col-md-pull-9 { + left: 75%; + } + .ast-col-md-pull-10 { + left: 83.3333333333%; + } + .ast-col-md-pull-11 { + left: 91.6666666667%; + } + .ast-col-md-pull-12 { + left: 100%; + } + .ast-col-md-push-0 { + right: auto; + } + .ast-col-md-push-1 { + right: 8.3333333333%; + } + .ast-col-md-push-2 { + right: 16.6666666667%; + } + .ast-col-md-push-3 { + right: 25%; + } + .ast-col-md-push-4 { + right: 33.3333333333%; + } + .ast-col-md-push-5 { + right: 41.6666666667%; + } + .ast-col-md-push-6 { + right: 50%; + } + .ast-col-md-push-7 { + right: 58.3333333333%; + } + .ast-col-md-push-8 { + right: 66.6666666667%; + } + .ast-col-md-push-9 { + right: 75%; + } + .ast-col-md-push-10 { + right: 83.3333333333%; + } + .ast-col-md-push-11 { + right: 91.6666666667%; + } + .ast-col-md-push-12 { + right: 100%; + } + .ast-col-md-offset-0 { + margin-right: 0%; + } + .ast-col-md-offset-1 { + margin-right: 8.3333333333%; + } + .ast-col-md-offset-2 { + margin-right: 16.6666666667%; + } + .ast-col-md-offset-3 { + margin-right: 25%; + } + .ast-col-md-offset-4 { + margin-right: 33.3333333333%; + } + .ast-col-md-offset-5 { + margin-right: 41.6666666667%; + } + .ast-col-md-offset-6 { + margin-right: 50%; + } + .ast-col-md-offset-7 { + margin-right: 58.3333333333%; + } + .ast-col-md-offset-8 { + margin-right: 66.6666666667%; + } + .ast-col-md-offset-9 { + margin-right: 75%; + } + .ast-col-md-offset-10 { + margin-right: 83.3333333333%; + } + .ast-col-md-offset-11 { + margin-right: 91.6666666667%; + } + .ast-col-md-offset-12 { + margin-right: 100%; + } +} + +@media (min-width: 992px) { + .ast-col-lg-1, .ast-col-lg-2, .ast-col-lg-3, .ast-col-lg-4, .ast-col-lg-5, .ast-col-lg-6, .ast-col-lg-7, .ast-col-lg-8, .ast-col-lg-9, .ast-col-lg-10, .ast-col-lg-11, .ast-col-lg-12 { + float: right; + } + .ast-col-lg-1 { + width: 8.3333333333%; + } + .ast-col-lg-2 { + width: 16.6666666667%; + } + .ast-col-lg-3 { + width: 25%; + } + .ast-col-lg-4 { + width: 33.3333333333%; + } + .ast-col-lg-5 { + width: 41.6666666667%; + } + .ast-col-lg-6 { + width: 50%; + } + .ast-col-lg-7 { + width: 58.3333333333%; + } + .ast-col-lg-8 { + width: 66.6666666667%; + } + .ast-col-lg-9 { + width: 75%; + } + .ast-col-lg-10 { + width: 83.3333333333%; + } + .ast-col-lg-11 { + width: 91.6666666667%; + } + .ast-col-lg-12 { + width: 100%; + } + .ast-col-lg-pull-0 { + left: auto; + } + .ast-col-lg-pull-1 { + left: 8.3333333333%; + } + .ast-col-lg-pull-2 { + left: 16.6666666667%; + } + .ast-col-lg-pull-3 { + left: 25%; + } + .ast-col-lg-pull-4 { + left: 33.3333333333%; + } + .ast-col-lg-pull-5 { + left: 41.6666666667%; + } + .ast-col-lg-pull-6 { + left: 50%; + } + .ast-col-lg-pull-7 { + left: 58.3333333333%; + } + .ast-col-lg-pull-8 { + left: 66.6666666667%; + } + .ast-col-lg-pull-9 { + left: 75%; + } + .ast-col-lg-pull-10 { + left: 83.3333333333%; + } + .ast-col-lg-pull-11 { + left: 91.6666666667%; + } + .ast-col-lg-pull-12 { + left: 100%; + } + .ast-col-lg-push-0 { + right: auto; + } + .ast-col-lg-push-1 { + right: 8.3333333333%; + } + .ast-col-lg-push-2 { + right: 16.6666666667%; + } + .ast-col-lg-push-3 { + right: 25%; + } + .ast-col-lg-push-4 { + right: 33.3333333333%; + } + .ast-col-lg-push-5 { + right: 41.6666666667%; + } + .ast-col-lg-push-6 { + right: 50%; + } + .ast-col-lg-push-7 { + right: 58.3333333333%; + } + .ast-col-lg-push-8 { + right: 66.6666666667%; + } + .ast-col-lg-push-9 { + right: 75%; + } + .ast-col-lg-push-10 { + right: 83.3333333333%; + } + .ast-col-lg-push-11 { + right: 91.6666666667%; + } + .ast-col-lg-push-12 { + right: 100%; + } + .ast-col-lg-offset-0 { + margin-right: 0%; + } + .ast-col-lg-offset-1 { + margin-right: 8.3333333333%; + } + .ast-col-lg-offset-2 { + margin-right: 16.6666666667%; + } + .ast-col-lg-offset-3 { + margin-right: 25%; + } + .ast-col-lg-offset-4 { + margin-right: 33.3333333333%; + } + .ast-col-lg-offset-5 { + margin-right: 41.6666666667%; + } + .ast-col-lg-offset-6 { + margin-right: 50%; + } + .ast-col-lg-offset-7 { + margin-right: 58.3333333333%; + } + .ast-col-lg-offset-8 { + margin-right: 66.6666666667%; + } + .ast-col-lg-offset-9 { + margin-right: 75%; + } + .ast-col-lg-offset-10 { + margin-right: 83.3333333333%; + } + .ast-col-lg-offset-11 { + margin-right: 91.6666666667%; + } + .ast-col-lg-offset-12 { + margin-right: 100%; + } +} + +@media (min-width: 1200px) { + .ast-col-xl-1, .ast-col-xl-2, .ast-col-xl-3, .ast-col-xl-4, .ast-col-xl-5, .ast-col-xl-6, .ast-col-xl-7, .ast-col-xl-8, .ast-col-xl-9, .ast-col-xl-10, .ast-col-xl-11, .ast-col-xl-12 { + float: right; + } + .ast-col-xl-1 { + width: 8.3333333333%; + } + .ast-col-xl-2 { + width: 16.6666666667%; + } + .ast-col-xl-3 { + width: 25%; + } + .ast-col-xl-4 { + width: 33.3333333333%; + } + .ast-col-xl-5 { + width: 41.6666666667%; + } + .ast-col-xl-6 { + width: 50%; + } + .ast-col-xl-7 { + width: 58.3333333333%; + } + .ast-col-xl-8 { + width: 66.6666666667%; + } + .ast-col-xl-9 { + width: 75%; + } + .ast-col-xl-10 { + width: 83.3333333333%; + } + .ast-col-xl-11 { + width: 91.6666666667%; + } + .ast-col-xl-12 { + width: 100%; + } + .ast-col-xl-pull-0 { + left: auto; + } + .ast-col-xl-pull-1 { + left: 8.3333333333%; + } + .ast-col-xl-pull-2 { + left: 16.6666666667%; + } + .ast-col-xl-pull-3 { + left: 25%; + } + .ast-col-xl-pull-4 { + left: 33.3333333333%; + } + .ast-col-xl-pull-5 { + left: 41.6666666667%; + } + .ast-col-xl-pull-6 { + left: 50%; + } + .ast-col-xl-pull-7 { + left: 58.3333333333%; + } + .ast-col-xl-pull-8 { + left: 66.6666666667%; + } + .ast-col-xl-pull-9 { + left: 75%; + } + .ast-col-xl-pull-10 { + left: 83.3333333333%; + } + .ast-col-xl-pull-11 { + left: 91.6666666667%; + } + .ast-col-xl-pull-12 { + left: 100%; + } + .ast-col-xl-push-0 { + right: auto; + } + .ast-col-xl-push-1 { + right: 8.3333333333%; + } + .ast-col-xl-push-2 { + right: 16.6666666667%; + } + .ast-col-xl-push-3 { + right: 25%; + } + .ast-col-xl-push-4 { + right: 33.3333333333%; + } + .ast-col-xl-push-5 { + right: 41.6666666667%; + } + .ast-col-xl-push-6 { + right: 50%; + } + .ast-col-xl-push-7 { + right: 58.3333333333%; + } + .ast-col-xl-push-8 { + right: 66.6666666667%; + } + .ast-col-xl-push-9 { + right: 75%; + } + .ast-col-xl-push-10 { + right: 83.3333333333%; + } + .ast-col-xl-push-11 { + right: 91.6666666667%; + } + .ast-col-xl-push-12 { + right: 100%; + } + .ast-col-xl-offset-0 { + margin-right: 0%; + } + .ast-col-xl-offset-1 { + margin-right: 8.3333333333%; + } + .ast-col-xl-offset-2 { + margin-right: 16.6666666667%; + } + .ast-col-xl-offset-3 { + margin-right: 25%; + } + .ast-col-xl-offset-4 { + margin-right: 33.3333333333%; + } + .ast-col-xl-offset-5 { + margin-right: 41.6666666667%; + } + .ast-col-xl-offset-6 { + margin-right: 50%; + } + .ast-col-xl-offset-7 { + margin-right: 58.3333333333%; + } + .ast-col-xl-offset-8 { + margin-right: 66.6666666667%; + } + .ast-col-xl-offset-9 { + margin-right: 75%; + } + .ast-col-xl-offset-10 { + margin-right: 83.3333333333%; + } + .ast-col-xl-offset-11 { + margin-right: 91.6666666667%; + } + .ast-col-xl-offset-12 { + margin-right: 100%; + } +} + +/*-------------------------------------------------------------- +# Site Variables +--------------------------------------------------------------*/ +/*---------- Font Size ----------*/ +/*---------- Line Height ----------*/ +/*---------- Site Basic Structure ----------*/ +/*---------- z-index Structure ----------*/ +/*-------------------------------------------------------------- +# Mixins +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +# Typography +--------------------------------------------------------------*/ +h1, h2, h3, h4, h5, h6 { + clear: both; +} + +h1, +.entry-content h1 { + color: #808285; + font-size: 2em; + line-height: 1.2; +} + +h2, +.entry-content h2 { + color: #808285; + font-size: 1.7em; + line-height: 1.3; +} + +h3, +.entry-content h3 { + color: #808285; + font-size: 1.5em; + line-height: 1.4; +} + +h4, +.entry-content h4 { + color: #808285; + line-height: 1.5; + font-size: 1.3em; +} + +h5, +.entry-content h5 { + color: #808285; + line-height: 1.6; + font-size: 1.2em; +} + +h6, +.entry-content h6 { + color: #808285; + line-height: 1.7; + font-size: 1.1em; +} + +/*-------------------------------------------------------------- +# Elements +--------------------------------------------------------------*/ +html { + box-sizing: border-box; +} + +*, +*:before, +*:after { + /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ + box-sizing: inherit; +} + +body { + color: #808285; + background: #ffffff; + /* Fallback for when there is no custom background color defined. */ + font-style: normal; +} + +ul, ol { + margin: 0 3em 1.5em 0; +} + +ul { + list-style: disc; +} + +ol { + list-style: decimal; +} + +li > ul, +li > ol { + margin-bottom: 0; + margin-right: 1.5em; +} + +dt { + font-weight: bold; +} + +dd { + margin: 0 1.5em 1.5em; +} + +b, +strong { + font-weight: bold; +} + +dfn, +cite, +em, +i { + font-style: italic; +} + +blockquote, +q { + quotes: "" ""; +} + +blockquote:before, blockquote:after, +q:before, +q:after { + content: ""; +} + +blockquote { + border-right: 5px solid rgba(0, 0, 0, 0.05); + padding: 20px; + font-size: 1.2em; + font-style: italic; + margin: 0 0 1.5em; + position: relative; +} + +blockquote p:last-child { + margin: 0; +} + +address { + margin: 0 0 1.5em; +} + +abbr, +acronym { + border-bottom: 1px dotted #666; + cursor: help; +} + +pre { + background: #eee; + font-family: "Courier 10 Pitch", Courier, monospace; + margin-bottom: 1.6em; + overflow: auto; + max-width: 100%; + padding: 1.6em; +} + +code, +kbd, +tt, +var { + font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; +} + +img { + height: auto; + /* Make sure images are scaled correctly. */ + max-width: 100%; + /* Adhere to container width. */ +} + +hr { + background-color: #ccc; + border: 0; + height: 1px; + margin-bottom: 1.5em; +} + +.ast-button, +.button, +button, +input, +select, +textarea { + color: #808285; + font-weight: normal; + font-size: 100%; + /* Corrects font size not being inherited in all browsers */ + margin: 0; + /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ + vertical-align: baseline; + /* Improves appearance and consistency in all browsers */ +} + +button, +input { + line-height: normal; + /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */ +} + +big { + font-size: 125%; +} + +mark, +ins { + background: transparent; + text-decoration: none; +} + +ul, ol { + margin: 0 3em 1.5em 0; +} + +ul { + list-style: disc; +} + +ol { + list-style: decimal; +} + +li > ul, +li > ol { + margin-bottom: 0; + margin-right: 1.5em; +} + +dt { + font-weight: bold; +} + +dd { + margin: 0 1.5em 1.5em; +} + +table, th, td { + border: 1px solid rgba(0, 0, 0, 0.1); +} + +table { + border-collapse: separate; + border-spacing: 0; + border-width: 1px 1px 0 0; + margin: 0 0 1.5em; + width: 100%; +} + +th { + font-weight: bold; +} + +th, td { + padding: 8px; + text-align: right; + border-width: 0 0 1px 1px; +} + +/*-------------------------------------------------------------- +# Forms +--------------------------------------------------------------*/ +button, +.ast-button, +.button, +input[type="button"], +input[type="reset"], +input[type="submit"] { + border: 1px solid; + border-color: #eaeaea; + border-radius: 2px; + background: #e6e6e6; + padding: .6em 1em .4em; + color: #fff; +} + +button:hover, button:focus, +.ast-button:hover, +.ast-button:focus, +.button:hover, +.button:focus, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="reset"]:hover, +input[type="reset"]:focus, +input[type="submit"]:hover, +input[type="submit"]:focus { + color: #fff; + border-color: #eaeaea; +} + +button:active, button:focus, +.ast-button:active, +.ast-button:focus, +.button:active, +.button:focus, +input[type="button"]:active, +input[type="button"]:focus, +input[type="reset"]:active, +input[type="reset"]:focus, +input[type="submit"]:active, +input[type="submit"]:focus { + border-color: #eaeaea; + outline: none; +} + +input[type="text"], +input[type="email"], +input[type="url"], +input[type="password"], +input[type="search"], +input[type="tel"], +textarea { + color: #666; + border: 1px solid #ccc; + border-radius: 2px; + -webkit-appearance: none; +} + +input[type="text"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +textarea:focus { + color: #111; +} + +textarea { + padding-right: 3px; + width: 100%; +} + +/*-------------------------------------------------------------- +# Navigation +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Links +--------------------------------------------------------------*/ +a { + color: royalblue; +} + +a:hover, a:focus { + color: midnightblue; +} + +a:focus { + outline: thin dotted; +} + +a:hover { + outline: 0; +} + +/*-------------------------------------------------------------- +# Accessibility +--------------------------------------------------------------*/ +/* Text meant only for screen readers. */ +.screen-reader-text { + border: 0; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; + word-wrap: normal !important; +} + +.screen-reader-text:focus { + background-color: #f1f1f1; + border-radius: 2px; + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + clip: auto !important; + color: #21759b; + display: block; + font-size: 12.25px; + font-size: 0.875rem; + height: auto; + right: 5px; + line-height: normal; + padding: 15px 23px 14px; + text-decoration: none; + top: 5px; + width: auto; + z-index: 100000; + /* Above WP toolbar. */ +} + +.alignleft { + display: inline; + float: right; + margin-left: 1.5em; +} + +.alignright { + display: inline; + float: left; + margin-right: 1.5em; +} + +.aligncenter { + clear: both; + text-align: center; + display: block; + margin-right: auto; + margin-left: auto; +} + +.clear:before, +.clear:after, +.site-header:before, +.site-header:after, +.site-content:before, +.site-content:after, +#primary:before, +#primary:after, +.site-main:before, +.site-main:after, +#secondary:before, +#secondary:after, +.sidebar-main:before, +.sidebar-main:after, +.site-footer:before, +.site-footer:after, +.ast-row:before, +.ast-row:after, +.ast-container:before, +.ast-container:after { + content: ""; + display: table; +} + +.clear:after, +.site-header:after, +.site-content:after, +#primary:after, +.site-main:after, +#secondary:after, +.sidebar-main:after, +.site-footer:after, +.ast-row:after, +.ast-container:after { + clear: both; +} + +/*-------------------------------------------------------------- +# Media +--------------------------------------------------------------*/ +.page-content .wp-smiley, +.entry-content .wp-smiley, +.comment-content .wp-smiley { + border: none; + margin-bottom: 0; + margin-top: 0; + padding: 0; +} + +/* Make sure embeds and iframes fit their containers. */ +embed, +iframe, +object { + max-width: 100%; +} + +/*-------------------------------------------------------------- +## Captions +--------------------------------------------------------------*/ +.wp-caption { + margin-bottom: 1.5em; + max-width: 100%; +} + +.wp-caption img[class*="wp-image-"] { + display: block; + margin-right: auto; + margin-left: auto; +} + +.wp-caption .wp-caption-text { + margin: 0.8075em 0; +} + +.wp-caption-text { + text-align: center; +} + +/*-------------------------------------------------------------- +## Galleries +--------------------------------------------------------------*/ +.gallery-item { + display: inline-block; + text-align: center; + vertical-align: top; + width: 100%; +} + +.gallery-columns-2 .gallery-item { + max-width: 50%; +} + +.gallery-columns-3 .gallery-item { + max-width: 33.33%; +} + +.gallery-columns-4 .gallery-item { + max-width: 25%; +} + +.gallery-columns-5 .gallery-item { + max-width: 20%; +} + +.gallery-columns-6 .gallery-item { + max-width: 16.66%; +} + +.gallery-columns-7 .gallery-item { + max-width: 14.28%; +} + +.gallery-columns-8 .gallery-item { + max-width: 12.5%; +} + +.gallery-columns-9 .gallery-item { + max-width: 11.11%; +} + +.gallery-caption { + display: block; +} + +/*-------------------------------------------------------------- +# Content +--------------------------------------------------------------*/ +/*---------- Mixins ----------*/ +/*---------- Site Variables ----------*/ +/*---------- Media Query min-width Structure ----------*/ +/*---------- Media Query max-width Structure ----------*/ +/*---------- Break-point min-width Structure ----------*/ +/*---------- Break-point max-width Structure ----------*/ +/*---------- Site Normalize ----------*/ +::selection { + color: #fff; + background: #0274be; +} + +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +body:not(.logged-in) { + position: relative; +} + +#page { + position: relative; +} + +a, +a:focus { + text-decoration: none; +} + +a, +.site-header a *, +.site-footer a *, +.secondary a * { + transition: all 0.2s linear; +} + +.capitalize { + text-transform: uppercase; +} + +img { + vertical-align: middle; +} + +.entry-content h1, +.entry-content h2, +.entry-content h3, +.entry-content h4, +.entry-content h5, +.entry-content h6 { + margin-bottom: 20px; +} + +p { + margin-bottom: 1.75em; +} + +blockquote { + margin: 1.5em 3em 1.5em 1em; + padding: 1.2em; + font-size: 1.1em; + line-height: inherit; + position: relative; +} + +.ast-button, +.button, +input[type="button"], +input[type="submit"] { + border-radius: 0; + padding: 18px 30px; + border: 0; + box-shadow: none; + text-shadow: none; +} + +.ast-button:hover, +.button:hover, +input[type="button"]:hover, +input[type="submit"]:hover { + box-shadow: none; +} + +.ast-button:active, .ast-button:focus, +.button:active, +.button:focus, +input[type="button"]:active, +input[type="button"]:focus, +input[type="submit"]:active, +input[type="submit"]:focus { + box-shadow: none; +} + +.site-title { + font-weight: normal; +} + +.site-title, +.site-description { + margin-bottom: 0; +} + +.site-title a, +.site-title:hover a, +.site-title:focus a, +.site-description a, +.site-description:hover a, +.site-description:focus a { + transition: all 0.2s linear; +} + +.site-title a, +.site-title a:focus, +.site-title a:hover, +.site-title a:visited { + color: #222; +} + +.site-description a, +.site-description a:focus, +.site-description a:hover, +.site-description a:visited { + color: #999; +} + +.search-form .search-field { + outline: none; +} + +.ast-search-menu-icon { + position: relative; + z-index: 3; +} + +.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon { + margin-left: 1em; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon { + display: none; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field, +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field { + width: 100%; + padding-left: 5.5em; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit { + display: block; + position: absolute; + height: 100%; + top: 0; + left: 0; + padding: 0 1em; + border-radius: 0; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form { + padding: 0; + display: block; + overflow: hidden; +} + +/* must have higher specificity than alternative color schemes inline styles */ +.site .skip-link { + background-color: #f1f1f1; + box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2); + color: #21759b; + display: block; + font-family: Montserrat, "Helvetica Neue", sans-serif; + font-size: 14px; + font-weight: 700; + right: -9999em; + outline: none; + padding: 15px 23px 14px; + text-decoration: none; + text-transform: none; + top: -9999em; +} + +.site .skip-link:focus { + clip: auto; + height: auto; + right: 6px; + top: 7px; + width: auto; + z-index: 100000; + outline: thin dotted; +} + +.logged-in .site .skip-link { + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2); + font-family: "Open Sans", sans-serif; +} + +/* Default Astra Icons CSS */ +.astra-icon-down_arrow::after { + content: "\e900"; + font-family: Astra; +} + +.astra-icon-close::after { + content: "\e5cd"; + font-family: Astra; +} + +.astra-icon-drag_handle::after { + content: "\e25d"; + font-family: Astra; +} + +.astra-icon-format_align_justify::after { + content: "\e235"; + font-family: Astra; +} + +.astra-icon-menu::after { + content: "\e5d2"; + font-family: Astra; +} + +.astra-icon-reorder::after { + content: "\e8fe"; + font-family: Astra; +} + +.astra-icon-search::after { + content: "\e8b6"; + font-family: Astra; +} + +.astra-icon-zoom_in::after { + content: "\e56b"; + font-family: Astra; +} + +.astra-icon-check-circle::after { + content: "\e901"; + font-family: Astra; +} + +.astra-icon-shopping-cart::after { + content: "\f07a"; + font-family: Astra; +} + +.astra-icon-shopping-bag::after { + content: "\f290"; + font-family: Astra; +} + +.astra-icon-shopping-basket::after { + content: "\f291"; + font-family: Astra; +} + +.astra-icon-circle-o::after { + content: "\e903"; + font-family: Astra; +} + +.astra-icon-certificate::after { + content: "\e902"; + font-family: Astra; +} + +select, +input { + line-height: 1; +} + +body, +button, +input[type="button"], +input[type="submit"], +textarea, +.ast-button, +.ast-custom-button { + line-height: 1.85714285714286; +} + +.site-title a { + line-height: 1.2; +} + +.site-header .site-description { + line-height: 1.5; +} + +.ast-single-post .entry-title, +.ast-single-post .entry-title a { + line-height: 1.2; +} + +.entry-title, +.entry-title a { + font-weight: normal; +} + +/*---------- Elements ----------*/ +/** + * 2 - Social Follow + */ +.ast-social-icons { + list-style-type: none; + margin: 0; +} + +.ast-social-icons li { + display: inline-block; + padding-left: 15px; +} + +.ast-social-icons li:last-child { + padding-left: 0; +} + +.ast-social-icons a { + display: block; +} + +.ast-social-icons i { + font-style: normal; + font-family: fontawesome; + font-weight: normal; +} + +.ast-social-icons i:before { + font-weight: normal; +} + +/*---------- Media ----------*/ +.single .entry-content .gallery { + margin-right: -10px; + margin-left: -10px; +} + +.gallery-caption { + color: black; + padding: 10px; + border-radius: 0 0 2px 2px; + border: 1px solid #eaeaea; + border-top: none; + font-size: 0.9em; +} + +.gallery-icon { + border-bottom: 0; + border-radius: 2px 2px 0 0; + border: 1px solid #eaeaea; + overflow: hidden; +} + +.gallery-item { + margin: 0; + padding: 10px; + border-radius: 2px; +} + +.gallery-item:last-child { + margin-bottom: 2em; +} + +.elementor-image-gallery .gallery-icon { + border: none; +} + +/* Astra Respnosive oEmbed Video container */ +.ast-oembed-container { + position: relative; + padding-top: 56.25%; + height: 0; + overflow: hidden; + max-width: 100%; + height: auto; +} + +.ast-oembed-container iframe, .ast-oembed-container object, .ast-oembed-container embed { + position: absolute; + top: 0; + right: 0; + width: 100%; + height: 100%; +} + +body .ast-oembed-container * { + position: absolute; + top: 0; + right: 0; + width: 100%; + height: 100%; +} + +/*---------- Basic Layout ----------*/ +.ast-hidden { + display: none !important; +} + +body { + background-color: #ffffff; +} + +#page { + display: block; +} + +#primary, +#secondary { + display: block; + position: relative; + float: right; + width: 100%; +} + +#primary { + margin: 4em 0; +} + +#secondary { + margin: 4em 0 2.5em; + word-break: break-word; + line-height: 2; +} + +#secondary li { + margin-bottom: 0.25em; +} + +#secondary li:last-child { + margin-bottom: 0; +} + +.ast-separate-container { + background-color: #f5f5f5; +} + +.ast-separate-container #primary { + padding: 4em 0; + margin: 0; + border: 0; +} + +.ast-separate-container .site-main > .ast-row { + margin-right: 0; + margin-left: 0; +} + +.ast-separate-container .ast-article-post, +.ast-separate-container .ast-article-single { + background-color: #fff; + border-bottom: 1px solid #eeeeee; + margin: 0; + padding: 5.34em 6.67em; +} + +.ast-separate-container .blog-layout-1 { + padding: 0; + /*background-color: $color-background-content;*/ + border-bottom: 0; +} + +.ast-separate-container .ast-article-single { + border-bottom: 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-article-post, + .ast-separate-container .ast-article-single { + margin: 0; + padding: 3.34em 2.4em; + } +} + +.ast-page-builder-template .hentry { + margin: 0; +} + +.ast-page-builder-template .site-content > .ast-container { + max-width: 100%; + padding: 0; +} + +.ast-page-builder-template .site-content #primary { + padding: 0; + margin: 0; +} + +.ast-page-builder-template .no-results { + text-align: center; + margin: 4em auto; +} + +.ast-page-builder-template .ast-pagination { + padding: 2em; +} + +.ast-page-builder-template .entry-header { + margin-top: 4em; + margin-right: auto; + margin-left: auto; + padding-right: 20px; + padding-left: 20px; +} + +.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail { + margin-top: 0; +} + +.ast-page-builder-template .entry-header.ast-header-without-markup { + margin-top: 0; + margin-bottom: 0; +} + +.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta { + margin-bottom: 0; +} + +.ast-page-builder-template.ast-left-sidebar #secondary { + padding-right: 20px; +} + +.ast-page-builder-template.ast-right-sidebar #secondary { + padding-left: 20px; +} + +.ast-page-builder-template.single .post-navigation { + padding-bottom: 2em; +} + +.ast-page-builder-template .ast-archive-description { + margin-top: 4em; + margin-right: auto; + margin-left: auto; + padding-right: 20px; + padding-left: 20px; +} + +@media (min-width: 993px) { + .ast-separate-container.ast-right-sidebar #primary, + .ast-separate-container.ast-left-sidebar #primary, + .ast-separate-container #primary { + margin: 4em 0; + padding: 0; + } + .ast-right-sidebar #primary { + padding-left: 60px; + } + .ast-right-sidebar #secondary { + padding-right: 60px; + } + .ast-left-sidebar #primary { + padding-right: 60px; + } + .ast-left-sidebar #secondary { + padding-left: 60px; + } +} + +@media (max-width: 992px) { + .ast-separate-container.ast-right-sidebar #primary, + .ast-separate-container.ast-left-sidebar #primary, + .ast-separate-container #primary { + padding-right: 0; + padding-left: 0; + } + .ast-right-sidebar #primary { + padding-left: 30px; + } + .ast-right-sidebar #secondary { + padding-right: 30px; + } + .ast-left-sidebar #primary { + padding-right: 30px; + } + .ast-left-sidebar #secondary { + padding-left: 30px; + } +} + +/*---------- Navigation ----------*/ +/** + * Navigations + * + * @import + * 1 - Primary Menus + * 2 - Secondary Menus + * 3 - Header Top Menus + * + * Contents + * 1 - Toggle Button + * +*/ +/** + * @import + */ +/* 1 - Primary Menus */ +.astra-search-icon::before { + content: "\e8b6"; + font-family: 'Astra'; + font-style: normal; + font-weight: normal; + text-decoration: inherit; + text-align: center; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ast-search-icon .astra-search-icon { + font-size: 1.3em; +} + +.main-navigation { + -js-display: inline-flex; + display: inline-flex; + height: 100%; +} + +.main-navigation ul { + list-style: none; + margin: 0; + padding-right: 0; + position: relative; +} + +.main-header-menu .menu-link, +.main-header-menu > a { + text-decoration: none; + padding: 0 1em; + display: inline-block; + transition: all 0.2s linear; +} + +.main-header-menu .menu-item { + position: relative; +} + +.main-header-menu .menu-item:hover > .sub-menu, +.main-header-menu .menu-item.focus > .sub-menu { + left: auto; + right: 0; +} + +.main-header-menu .ast-left-align-sub-menu:hover > .sub-menu, +.main-header-menu .ast-left-align-sub-menu.focus > .sub-menu { + left: 0; + right: auto; +} + +@media (min-width: 769px) { + .main-header-menu .ast-sub-menu-goes-outside:hover > .sub-menu, + .main-header-menu .ast-sub-menu-goes-outside.focus > .sub-menu { + right: -100%; + } + .main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover > .sub-menu, + .main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus > .sub-menu { + right: -100%; + } +} + +.main-header-menu .sub-menu { + width: 240px; + background: #ffffff; + right: -999em; + position: absolute; + top: 100%; + z-index: 99999; +} + +@media (min-width: 769px) { + .main-header-menu .sub-menu .menu-item:hover > .sub-menu, + .main-header-menu .sub-menu .menu-item.focus > .sub-menu { + right: 100%; + left: auto; + } + .main-header-menu .sub-menu .ast-left-align-sub-menu:hover > .sub-menu, + .main-header-menu .sub-menu .ast-left-align-sub-menu.focus > .sub-menu, + .main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu, + .main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu { + right: -100%; + } + .main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover > .sub-menu, + .main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus > .sub-menu { + right: -100%; + } +} + +.main-header-menu .sub-menu .menu-link { + padding: 0.9em 1em; + display: block; + word-wrap: break-word; +} + +.main-header-menu .sub-menu .menu-item.menu-item-has-children > .menu-link:after { + position: absolute; + left: 1em; + top: 50%; + transform: translate(0, -50%) rotate(-270deg); +} + +.main-header-menu .sub-menu .sub-menu { + top: 0px; +} + +.submenu-with-border .sub-menu { + border-width: 1px; + border-style: solid; +} + +.submenu-with-border .sub-menu .menu-link { + border-width: 0 0 1px; + border-style: solid; +} + +.submenu-with-border .sub-menu .sub-menu { + top: -1px; +} + +/* Remove the last anchor border for desktop devices */ +.ast-desktop .submenu-with-border .sub-menu > .menu-item:last-child > .menu-link { + border-bottom-width: 0; +} + +.ast-header-break-point .main-navigation { + padding-right: 0; +} + +.ast-header-break-point .main-navigation ul .menu-item .menu-link { + padding: 0 20px; + display: inline-block; + width: 100%; + border-bottom-width: 1px; + border-style: solid; + border-color: #eaeaea; +} + +.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link { + padding: 0 20px; + display: inline-block; + width: 100%; + border-bottom-width: 1px; + border-style: solid; + border-color: #eaeaea; +} + +.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before { + content: "\e900"; + font-family: 'Astra'; + font-size: .65em; + text-decoration: inherit; + display: inline-block; + transform: translate(0, -2px) rotateZ(-270deg); + margin-left: 5px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link { + padding-right: 30px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link { + padding-right: 40px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link { + padding-right: 50px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link { + padding-right: 60px; +} + +.ast-header-break-point .ast-header-custom-item, +.ast-header-break-point .main-header-menu { + background-color: #f9f9f9; +} + +.ast-header-break-point .main-header-menu .sub-menu { + background-color: #f9f9f9; + position: static; + opacity: 1; + visibility: visible; + border: 0; + width: auto; +} + +.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover > .sub-menu, +.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus > .sub-menu { + right: 0; +} + +.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover > .sub-menu, +.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus > .sub-menu { + right: 0; +} + +.ast-header-break-point .submenu-with-border .sub-menu { + border: 0; +} + +/** + * Contents + */ +.ast-mobile-menu-buttons { + display: none; +} + +/* Toggle Button */ +.ast-button-wrap { + display: inline-block; +} + +.ast-button-wrap button { + box-shadow: none; + border: none; +} + +.ast-button-wrap .menu-toggle { + padding: 0; + width: 2.2em; + height: 2.1em; + font-size: 1.5em; + font-weight: normal; + border-radius: 2px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + border-radius: 2px; + vertical-align: middle; + line-height: 1.85714285714286; +} + +.ast-button-wrap .menu-toggle.main-header-menu-toggle { + padding: 0 .5em; + width: auto; + text-align: center; +} + +.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu { + font-size: 15px; + font-size: 1rem; + font-weight: 600; +} + +.ast-button-wrap .menu-toggle .menu-toggle-icon { + font-style: normal; + display: inline-block; + vertical-align: middle; + line-height: 2.05; +} + +.ast-button-wrap .menu-toggle .menu-toggle-icon:before { + content: "\e5d2"; + font-family: 'Astra'; + text-decoration: inherit; +} + +.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before { + content: "\e5cd"; +} + +.ast-button-wrap .menu-toggle .mobile-menu-wrap { + display: inline-block; +} + +.ast-button-wrap .menu-toggle:focus { + outline: thin dotted; +} + +.main-header-bar-navigation { + flex: 1; +} + +.header-main-layout-1 .ast-main-header-bar-alignment { + margin-right: auto; +} + +.header-main-layout-3 .ast-main-header-bar-alignment { + margin-left: auto; +} + +#site-navigation { + height: 100%; +} + +/* Responsive Screen */ +.ast-header-break-point .user-select { + clear: both; +} + +.ast-header-break-point .ast-mobile-menu-buttons { + display: block; + align-self: center; +} + +.ast-header-break-point .main-header-bar-navigation { + flex: auto; +} + +.ast-header-break-point .ast-main-header-bar-alignment { + display: block; + width: 100%; + flex: auto; + order: 4; +} + +/** + * Post/Page Navigation + */ +.site-main .comment-navigation, .site-main +.posts-navigation, .site-main +.post-navigation { + margin: 0 0 1.5em; + overflow: hidden; +} + +.comment-navigation .nav-previous, +.comment-navigation .nav-next, +.posts-navigation .nav-previous, +.posts-navigation .nav-next, +.post-navigation .nav-previous, +.post-navigation .nav-next { + width: 50%; + display: inline-block; +} + +.comment-navigation .nav-next, +.posts-navigation .nav-next, +.post-navigation .nav-next { + text-align: left; +} + +/*---------- Primary ----------*/ +.sticky { + display: block; +} + +.hentry { + margin: 0 0 1.5em; +} + +.byline, +.updated:not(.published) { + display: none; +} + +.single .byline, +.group-blog .byline { + display: inline; +} + +.page-links { + clear: both; + margin-top: 1em; +} + +.page-links a { + display: inline-block; +} + +.page-links a .page-link { + border-color: #eaeaea; + background: transparent; +} + +.page-links .page-link { + padding: 0; + margin: 0 .3em .3em 0; + border: 2px solid #eaeaea; + color: #000; + background: transparent; + font-size: 0.8em; + width: 2.5em; + height: 2.5em; + line-height: calc( 2.5em - 4px); + display: inline-block; + text-align: center; + transition: all 0.2s linear; +} + +.page-links .page-link:hover, .page-links .page-link:focus { + color: #000; +} + +@media (max-width: 768px) { + .page-links .page-link { + margin-bottom: 6px; + } +} + +.page-content > :last-child, +.entry-content > :last-child, +.entry-summary > :last-child { + margin-bottom: 0; +} + +.comment-content a { + word-wrap: break-word; +} + +.bypostauthor { + display: block; +} + +/* .alignwide & .alignfull CSS compatibility */ +.ast-no-sidebar { + /* Boxed & Content Boxed container alignment support */ +} + +.ast-no-sidebar .entry-content { + /* Alignment while using the column block */ +} + +.ast-no-sidebar .entry-content .alignfull { + margin-right: calc(-50vw + 50%); + margin-left: calc(-50vw + 50%); + max-width: 100vw; + width: 100vw; +} + +.ast-no-sidebar .entry-content .alignfull .alignfull, +.ast-no-sidebar .entry-content .alignfull .alignwide { + width: 100%; + margin-right: auto; + margin-left: auto; +} + +.ast-no-sidebar .entry-content .alignwide { + margin-right: -100px; + margin-left: -100px; + max-width: unset; + width: unset; +} + +.ast-no-sidebar .entry-content .alignwide .alignfull, +.ast-no-sidebar .entry-content .alignwide .alignwide { + width: 100%; + margin-right: auto; + margin-left: auto; +} + +.ast-no-sidebar .entry-content .wp-block-column .alignfull, +.ast-no-sidebar .entry-content .wp-block-column .alignwide { + margin-right: auto; + margin-left: auto; + width: 100%; +} + +.ast-no-sidebar.ast-separate-container .entry-content { + /* Alignment while using the column block */ +} + +.ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-right: -6.67em; + margin-left: -6.67em; + width: auto; +} + +@media (max-width: 1200px) { + .ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-right: -2.4em; + margin-left: -2.4em; + } +} + +@media (max-width: 768px) { + .ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-right: -2.14em; + margin-left: -2.14em; + } +} + +@media (max-width: 544px) { + .ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-right: -1em; + margin-left: -1em; + } +} + +.ast-no-sidebar.ast-separate-container .entry-content .alignwide { + margin-right: -20px; + margin-left: -20px; +} + +.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull, +.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide { + margin-right: auto; + margin-left: auto; + width: 100%; +} + +.wp-block-gallery, +.blocks-gallery-grid { + margin: 0; +} + +.wp-block-separator { + max-width: 100px; +} + +.wp-block-separator.is-style-wide { + max-width: none; +} + +.entry-content .has-2-columns .wp-block-column:first-child { + padding-left: 10px; +} + +.entry-content .has-2-columns .wp-block-column:last-child { + padding-right: 10px; +} + +@media (max-width: 782px) { + .entry-content .wp-block-columns .wp-block-column { + flex-basis: 100%; + } + .entry-content .has-2-columns .wp-block-column:first-child { + padding-left: 0; + } + .entry-content .has-2-columns .wp-block-column:last-child { + padding-right: 0; + } +} + +body { + overflow-x: hidden; +} + +body .entry-content .wp-block-latest-posts { + margin-right: 0; +} + +body .entry-content .wp-block-latest-posts li { + list-style: none; +} + +.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts { + margin-right: 0; +} + +.ast-header-break-point .entry-content .alignwide { + margin-right: auto; + margin-left: auto; +} + +.entry-content .blocks-gallery-item img { + margin-bottom: auto; +} + +.wp-block-pullquote { + border-top: 4px solid #555d66; + border-bottom: 4px solid #555d66; + color: #40464d; +} + +.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide { + margin-right: 0; + margin-left: 0; +} + +/*---------- Secondary ----------*/ +.widget-title { + font-weight: normal; + margin-bottom: 1em; + line-height: 1.5; +} + +.widget { + margin: 0 0 2.8em 0; +} + +.widget:last-child { + margin-bottom: 0; +} + +.widget select { + max-width: 100%; +} + +.widget ul { + margin: 0; + list-style-type: none; +} + +.widget_nav_menu ul ul.sub-menu { + margin-top: 0.25em; +} + +.widget_nav_menu ul ul.sub-menu li { + padding-right: 20px; +} + +.widget_nav_menu ul ul.sub-menu a:after { + right: -20px; +} + +.widget_nav_menu ul ul.sub-menu ul a:after { + right: -40px; +} + +.widget_nav_menu ul ul.sub-menu ul ul a:after { + right: -60px; +} + +.widget_nav_menu li { + transition: all 0.2s linear; +} + +/* Search widget. */ +.widget_search .search-form { + position: relative; + padding: 0; + background: initial; + color: inherit; +} + +.widget_search .search-form:after { + font-family: "Astra"; + font-size: 1.2em; + font-weight: normal; + content: "\e8b6"; + position: absolute; + top: 50%; + left: 15px; + transform: translate(0, -50%); +} + +.widget_search .search-form > label { + position: relative; +} + +.widget_search .search-form input[type="submit"], +.widget_search .search-form input[type="submit"]:hover, +.widget_search .search-form input[type="submit"]:focus { + padding: 13px 20px; + border-radius: 2px; + border: none; + top: 0px; + left: 0px; + position: absolute; + color: transparent; + background: transparent; + max-width: 45px; + z-index: 2; +} + +.widget_search .search-form .search-field { + background: #fafafa; + border-width: 1px; + border-color: #eaeaea; + border-radius: 2px; +} + +.widget_search .search-field, +.widget_search .search-field:focus { + width: 100%; + padding: 16px 15px 16px 45px; +} + +/* Widget - Archive */ +/* Widget - Categories */ +.widget_pages ul.children, +.widget_archive ul.children, +.widget_categories ul.children { + position: relative; + margin-top: 5px; + width: 100%; +} + +.widget_pages ul.children li, +.widget_archive ul.children li, +.widget_categories ul.children li { + padding-right: 20px; +} + +.widget_pages li ul.children a:after, +.widget_archive li ul.children a:after, +.widget_categories li ul.children a:after { + right: -20px; +} + +.widget_pages li ul.children ul a:after, +.widget_archive li ul.children ul a:after, +.widget_categories li ul.children ul a:after { + right: -40px; +} + +/* Tag Cloud */ +.widget_tag_cloud .tagcloud { + margin-top: 10px; + display: inline-block; +} + +.widget_tag_cloud .tagcloud a { + border: 1px solid #e2e2e2; + padding: 0.5em 0.9em; + display: inline-block; + margin-bottom: 4px; + font-size: 14px; + margin-left: 4px; + line-height: 1.5; + transition: all 0.2s linear; +} + +/* Calender */ +.widget_calendar table, +.widget_calendar th, +.widget_calendar td { + padding: 0; + text-align: center; +} + +.widget_calendar table, +.widget_calendar th { + border: none; +} + +.widget_calendar td { + border-left: none; + border-right: none; +} + +.widget_calendar caption { + line-height: 2.7em; +} + +.widget_calendar thead { + line-height: 2.5em; +} + +.widget_calendar thead a { + color: #0274be; + font-size: 1rem; + vertical-align: middle; +} + +.widget_calendar thead td { + vertical-align: middle; + font-weight: bold; +} + +.widget_calendar thead > tr > th { + line-height: 2.5em; + border-bottom: 2px solid #eaeaea; + border-top: 2px solid #eaeaea; +} + +.widget_calendar tbody { + line-height: 2.10em; + text-align: center; +} + +.widget_calendar tbody > tr > td { + width: 14.2857%; +} + +.widget_calendar tbody > tr:first-child > td { + padding-top: 3px; +} + +.widget_calendar #today { + background: #0274be; +} + +.ast-separate-container.ast-two-container #secondary .widget { + background-color: #fff; + padding: 2em; + margin-bottom: 2em; +} + +/*---------- Builder ----------*/ +/** + * AST HF Builder - Grid related CSS. + */ +.ast-builder-grid-row { + display: grid; + grid-template-columns: auto auto; + align-items: center; + grid-column-gap: 20px; +} + +.ast-builder-footer-grid-columns { + grid-column-gap: 50px; +} + +.ast-builder-grid-row.ast-grid-center-col-layout { + grid-template-columns: 1fr auto 1fr; +} + +.ast-builder-grid-row-6-equal .ast-builder-grid-row { + grid-template-columns: repeat(6, 1fr); +} + +.ast-builder-grid-row-5-equal .ast-builder-grid-row { + grid-template-columns: repeat(5, 1fr); +} + +.ast-builder-grid-row-4-equal .ast-builder-grid-row { + grid-template-columns: repeat(4, 1fr); +} + +.ast-builder-grid-row-4-lheavy .ast-builder-grid-row { + grid-template-columns: 2fr 1fr 1fr 1fr; +} + +.ast-builder-grid-row-4-rheavy .ast-builder-grid-row { + grid-template-columns: 1fr 1fr 1fr 2fr; +} + +.ast-builder-grid-row-3-equal .ast-builder-grid-row { + grid-template-columns: repeat(3, 1fr); +} + +.ast-builder-grid-row-3-lheavy .ast-builder-grid-row { + grid-template-columns: 2fr 1fr 1fr; +} + +.ast-builder-grid-row-3-rheavy .ast-builder-grid-row { + grid-template-columns: 1fr 1fr 2fr; +} + +.ast-builder-grid-row-3-cheavy .ast-builder-grid-row { + grid-template-columns: 1fr 2fr 1fr; +} + +.ast-builder-grid-row-3-cwide .ast-builder-grid-row { + grid-template-columns: 1fr 3fr 1fr; +} + +.ast-builder-grid-row-2-equal .ast-builder-grid-row { + grid-template-columns: repeat(2, 1fr); +} + +.ast-builder-grid-row-2-lheavy .ast-builder-grid-row { + grid-template-columns: 2fr 1fr; +} + +.ast-builder-grid-row-2-rheavy .ast-builder-grid-row { + grid-template-columns: 1fr 2fr; +} + +.ast-builder-grid-row-2-full .ast-builder-grid-row { + grid-template-columns: 2fr; +} + +.ast-builder-grid-row-full .ast-builder-grid-row { + grid-template-columns: 1fr; +} + +.ast-builder-layout-element { + align-items: center; + -js-display: flex; + display: flex; + height: 100%; +} + +.ast-builder-layout-element .ast-footer-social-wrap .ast-builder-social-element:first-child { + margin-right: 0; +} + +.ast-builder-layout-element .ast-footer-social-wrap .ast-builder-social-element:last-child { + margin-left: 0; +} + +.ast-builder-grid-row.ast-grid-center-col-layout-only { + -js-display: flex; + display: flex; + height: 100%; + justify-content: center; +} + +.ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center { + flex-grow: 1; +} + +.site-header-section { + -js-display: flex; + display: flex; + height: 100%; + min-height: 0; + align-items: center; +} + +.site-header-section .ast-main-header-bar-alignment { + height: 100%; +} + +.site-header-section > * { + padding: 0 10px; +} + +.site-header-section > div:first-child { + padding-right: 0; +} + +.site-header-section > div:last-child { + padding-left: 0; +} + +.site-header-section .ast-builder-menu { + -js-display: flex; + display: flex; + align-items: center; +} + +.ast-builder-layout-element.ast-header-search { + height: auto; +} + +.ast-grid-right-center-section { + justify-content: flex-start; + flex-grow: 1; +} + +.ast-grid-right-section { + justify-content: flex-end; +} + +.ast-grid-right-section .ast-site-identity > :first-child { + text-align: left; +} + +.ast-grid-right-section .ast-grid-right-center-section .ast-site-identity > :first-child { + text-align: right; +} + +.ast-grid-left-center-section { + justify-content: flex-end; + flex-grow: 1; +} + +/** + * AST HF Builder - Widgets related CSS. + * Text/HTML Widget. + */ +.ast-builder-html-element img.alignnone { + display: inline-block; +} + +.ast-builder-html-element p:first-child { + margin-top: 0; +} + +.ast-builder-html-element p:last-child { + margin-bottom: 0; +} + +/** + * AST HF Builder - Logo related CSS. + * Align center section's Site title & Tagline center align. + */ +.ast-logo-title-inline .ast-site-identity { + padding: 1em 0; + -js-display: inline-flex; + display: inline-flex; + vertical-align: middle; + align-items: center; +} + +.ast-logo-title-inline .site-logo-img { + padding-left: 1em; +} + +.ast-grid-section-center { + justify-content: center; +} + +.ast-grid-section-center .ast-site-identity > :first-child { + text-align: center; +} + +.header-main-layout-2 .site-header-section-left .ast-site-identity { + text-align: right; +} + +/** + * AST HF Builder - Widgets related CSS. + * Social Widget. + */ +.ast-builder-social-element { + -js-display: inline-flex; + display: inline-flex; + line-height: 1; + color: #3a3a3a; + background: transparent; + vertical-align: middle; + transition: all 0.01s; + margin-right: 6px; + margin-left: 6px; + justify-content: center; + align-items: center; +} + +.ast-builder-social-element:hover { + color: #0274be; +} + +.ast-builder-social-element .social-item-label { + padding-right: 6px; +} + +.ahfb-svg-iconset { + -js-display: inline-flex; + display: inline-flex; + align-self: center; +} + +.ahfb-svg-iconset svg { + width: 17px; + height: 17px; + transition: none; + -js-display: flex; + display: flex; +} + +.ahfb-svg-iconset svg > * { + transition: none; +} + +.social-show-label-true .ast-builder-social-element { + width: auto; + padding: 0 0.4em; +} + +.ast-header-social-wrap .ast-builder-social-element:first-child { + margin-right: 0; +} + +.ast-header-social-wrap .ast-builder-social-element:last-child { + margin-left: 0; +} + +/** + * AST HF Builder - Widgets related CSS. + * Button. + */ +[data-section*="section-hb-button-"] .menu-link, +[data-section*="section-fb-button-"] .menu-link { + display: none; +} + +.ast-footer-html-inner p { + margin-bottom: 0; +} + +.ast-builder-grid-row-container { + display: grid; + align-content: center; +} + +/** + * AST HF Builder - Widgets related CSS. + * Header Nav and Submenu compatibility CSS. + */ +.site-header-focus-item .main-header-bar-navigation .menu-item-has-children > .menu-link:after { + content: "\e900"; + display: inline-block; + font-family: 'Astra'; + font-size: 9px; + font-size: .6rem; + font-weight: bold; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + margin-right: 10px; + line-height: normal; +} + +.ast-nav-menu .sub-menu { + line-height: 1.45; +} + +.ast-builder-menu .main-navigation { + padding: 0; +} + +.ast-builder-menu .main-navigation > ul { + align-self: center; +} + +/** + * Astra HF Builder - Footer Components Compatibility CSS. + */ +.site-footer-focus-item { + width: 100%; +} + +.ast-footer-copyright { + width: 100%; +} + +.ast-footer-social-wrap { + width: 100%; +} + +.footer-nav-wrap .astra-footer-vertical-menu { + display: grid; +} + +#astra-footer-menu { + margin: 0; + list-style: none; + background: inherit; +} + +#astra-footer-menu > ul { + margin: 0; + list-style: none; + background: inherit; +} + +/** + * AST HF Builder - Responsive CSS. + * For desktop view. + */ +#ast-mobile-header { + display: none; +} + +.ast-header-break-point #ast-desktop-header { + display: none; +} + +.ast-header-break-point #ast-mobile-header { + display: block; +} + +.ast-header-break-point .main-header-bar-navigation { + line-height: 3; +} + +.ast-header-break-point .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle { + display: inline-block; + position: absolute; + font-size: inherit; + top: 0px; + left: 20px; + cursor: pointer; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + padding: 0 0.907em; + font-weight: normal; + line-height: inherit; + transition: all .2s; +} + +.ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu { + display: none; +} + +.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link, +.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link, +.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link { + border: none; +} + +.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children > .ast-menu-toggle::before { + font-size: .6rem; +} + +.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before { + transform: rotateX(180deg); +} + +.ast-header-break-point .ast-mobile-header-wrap .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before { + font-weight: bold; + content: "\e900"; + font-family: 'Astra'; + text-decoration: inherit; + display: inline-block; +} + +.ast-header-break-point .ast-nav-menu .sub-menu { + line-height: 3; +} + +.site-footer-section { + justify-content: center; +} + +.site-footer-section > * { + margin-bottom: 10px; +} + +.site-footer-section > *:last-child { + margin-bottom: 0; +} + +.site-primary-footer-wrap { + padding-top: 45px; + padding-bottom: 45px; +} + +.site-above-footer-wrap, +.site-below-footer-wrap { + padding-top: 20px; + padding-bottom: 20px; +} + +/* Mobile Off-canvas CSS */ +[data-section="astra_customizer_mobile_header_button"] .menu-link { + display: none; +} + +.ast-mobile-popup-drawer { + position: fixed; + top: 0; + bottom: 0; + right: -99999rem; + left: 99999rem; + transition: opacity 0.25s ease-in, right 0s 0.25s, left 0s 0.25s; + opacity: 0; +} + +.ast-mobile-popup-drawer .ast-mobile-popup-inner { + width: 100%; + transform: translateX(-100%); + max-width: 90%; + left: 0; + top: 0; + overflow: auto; + background: #fafafa; + color: #3a3a3a; + bottom: 0; + opacity: 0; + position: fixed; + box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); + -js-display: flex; + display: flex; + flex-direction: column; + transition: transform 0.2s ease-in, opacity 0.2s ease-in; +} + +.ast-mobile-popup-drawer .ast-mobile-popup-overlay { + background-color: rgba(0, 0, 0, 0.4); + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + visibility: hidden; + opacity: 0; + transition: opacity 0.2s ease-in-out; +} + +.ast-mobile-popup-drawer .ast-mobile-popup-header { + -js-display: flex; + display: flex; + justify-content: flex-end; + min-height: calc( 1.2em + 24px); +} + +.ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close { + background: transparent; + border: 0; + font-size: 24px; + line-height: 1; + padding: .6em; + color: inherit; + -js-display: flex; + display: flex; + box-shadow: none; +} + +.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before { + font-weight: bold; + content: "\e900"; + font-family: 'Astra'; + text-decoration: inherit; + display: inline-block; +} + +.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children .sub-menu { + display: none; +} + +.ast-mobile-popup-drawer .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before { + transform: rotateX(180deg); +} + +.ast-mobile-popup-drawer.ast-mobile-popup-left .ast-mobile-popup-inner { + transform: translateX(100%); + left: auto; + right: 0; +} + +.ast-mobile-popup-drawer.ast-mobile-popup-full-width .ast-mobile-popup-inner { + max-width: none; + transition: transform 0s ease-in, opacity 0.2s ease-in; +} + +.ast-mobile-popup-drawer.show { + opacity: 1; + visibility: visible; +} + +.ast-mobile-popup-drawer.active { + right: 0; + opacity: 1; + left: 0; + z-index: 100000; + transition: opacity 0.25s ease-out; +} + +.ast-mobile-popup-drawer.active .ast-mobile-popup-inner { + opacity: 1; + visibility: visible; + transform: translateX(0%); +} + +.ast-mobile-popup-drawer.active .ast-mobile-popup-overlay { + opacity: 1; + cursor: pointer; + visibility: visible; +} + +body.admin-bar .ast-mobile-popup-drawer { + top: 46px; +} + +body.admin-bar .ast-mobile-popup-drawer .ast-mobile-popup-inner { + top: 46px; +} + +body.admin-bar.ast-primary-sticky-header-active .ast-mobile-popup-drawer { + top: 0px; +} + +body.admin-bar.ast-primary-sticky-header-active .ast-mobile-popup-drawer .ast-mobile-popup-inner { + top: 0px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-popup-drawer .main-header-bar-navigation ul .menu-item .sub-menu .menu-link { + padding-right: 30px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-popup-drawer .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link { + padding-right: 40px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation { + width: unset; + margin: unset; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link { + padding-right: 30px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link { + padding-right: 40px; +} + +.astra-hfb-header.ast-header-break-point .main-header-bar-navigation { + width: 100%; + margin: 0; +} + +.ast-mobile-popup-content > * { + padding: 10px 0; + height: auto; +} + +.ast-off-canvas-active body.ast-main-header-nav-open { + overflow: hidden; +} + +.ast-mobile-header-wrap .ast-mobile-header-content { + display: none; +} + +.ast-mobile-header-wrap .menu-toggle.toggled .ast-mobile-svg { + display: none; +} + +.ast-mobile-header-wrap .menu-toggle.toggled .ast-close-svg { + display: block; +} + +.ast-mobile-header-wrap .menu-toggle .ast-close-svg { + display: none; +} + +.ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon { + -js-display: inline-flex; + display: inline-flex; + align-self: center; +} + +.ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap { + -js-display: inline-flex; + display: inline-flex; + align-self: center; + margin-right: 0.4em; +} + +.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle { + -js-display: flex; + display: flex; + align-items: center; + width: auto; + height: auto; +} + +.ast-mobile-header-wrap .ast-builder-grid-row-container-inner { + display: grid; + align-items: center; +} + +.ast-off-canvas-active .ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content { + display: none; +} + +.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content { + display: none; +} + +.ast-main-header-nav-open .ast-mobile-header-wrap .ast-mobile-header-content { + display: block; +} + +.ast-button-wrap .menu-toggle.main-header-menu-toggle { + padding: .5em; +} + +.ast-search-menu-icon.ast-inline-search .search-field { + width: 100%; + padding: 0.60em; + padding-left: 5.5em; +} + +/* Social Icons Official CSS */ +.header-social-inner-wrap.ast-social-color-type-official .ast-twitter, +.header-social-inner-wrap.ast-social-color-type-official .ast-twitter .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-twitter, +.footer-social-inner-wrap.ast-social-color-type-official .ast-twitter .social-item-label { + background: transparent; + color: #7acdee; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-instagram, +.header-social-inner-wrap.ast-social-color-type-official .ast-instagram .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-instagram, +.footer-social-inner-wrap.ast-social-color-type-official .ast-instagram .social-item-label { + background: transparent; + color: #292929; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-linkedin, +.header-social-inner-wrap.ast-social-color-type-official .ast-linkedin .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-linkedin, +.footer-social-inner-wrap.ast-social-color-type-official .ast-linkedin .social-item-label { + background: transparent; + color: #1c86c6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook_group, +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook_group .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook_group, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook_group .social-item-label { + background: transparent; + color: #3D87FB; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-discord, +.header-social-inner-wrap.ast-social-color-type-official .ast-discord .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-discord, +.footer-social-inner-wrap.ast-social-color-type-official .ast-discord .social-item-label { + background: transparent; + color: #7187D4; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-pinterest, +.header-social-inner-wrap.ast-social-color-type-official .ast-pinterest .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-pinterest, +.footer-social-inner-wrap.ast-social-color-type-official .ast-pinterest .social-item-label { + background: transparent; + color: #ea575a; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-dribbble, +.header-social-inner-wrap.ast-social-color-type-official .ast-dribbble .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-dribbble, +.footer-social-inner-wrap.ast-social-color-type-official .ast-dribbble .social-item-label { + background: transparent; + color: #d77ea6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-behance, +.header-social-inner-wrap.ast-social-color-type-official .ast-behance .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-behance, +.footer-social-inner-wrap.ast-social-color-type-official .ast-behance .social-item-label { + background: transparent; + color: #1B64F6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-medium, +.header-social-inner-wrap.ast-social-color-type-official .ast-medium .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-medium, +.footer-social-inner-wrap.ast-social-color-type-official .ast-medium .social-item-label { + background: transparent; + color: #292929; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-patreon, +.header-social-inner-wrap.ast-social-color-type-official .ast-patreon .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-patreon, +.footer-social-inner-wrap.ast-social-color-type-official .ast-patreon .social-item-label { + background: transparent; + color: #e65c4b; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-vk, +.header-social-inner-wrap.ast-social-color-type-official .ast-vk .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vk, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vk .social-item-label { + background: transparent; + color: #5382b6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-reddit, +.header-social-inner-wrap.ast-social-color-type-official .ast-reddit .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-reddit, +.footer-social-inner-wrap.ast-social-color-type-official .ast-reddit .social-item-label { + background: transparent; + color: #FC471E; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-youtube, +.header-social-inner-wrap.ast-social-color-type-official .ast-youtube .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-youtube, +.footer-social-inner-wrap.ast-social-color-type-official .ast-youtube .social-item-label { + background: transparent; + color: #e96651; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-vimeo, +.header-social-inner-wrap.ast-social-color-type-official .ast-vimeo .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vimeo, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vimeo .social-item-label { + background: transparent; + color: #8ecfde; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-rss, +.header-social-inner-wrap.ast-social-color-type-official .ast-rss .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-rss, +.footer-social-inner-wrap.ast-social-color-type-official .ast-rss .social-item-label { + background: transparent; + color: #f09124; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-whatsapp, +.header-social-inner-wrap.ast-social-color-type-official .ast-whatsapp .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-whatsapp, +.footer-social-inner-wrap.ast-social-color-type-official .ast-whatsapp .social-item-label { + background: transparent; + color: #5BBA67; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-viber, +.header-social-inner-wrap.ast-social-color-type-official .ast-viber .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-viber, +.footer-social-inner-wrap.ast-social-color-type-official .ast-viber .social-item-label { + background: transparent; + color: #7F509E; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-telegram, +.header-social-inner-wrap.ast-social-color-type-official .ast-telegram .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-telegram, +.footer-social-inner-wrap.ast-social-color-type-official .ast-telegram .social-item-label { + background: transparent; + color: #229CCE; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-xing, +.header-social-inner-wrap.ast-social-color-type-official .ast-xing .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-xing, +.footer-social-inner-wrap.ast-social-color-type-official .ast-xing .social-item-label { + background: transparent; + color: #0A5C5D; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-weibo, +.header-social-inner-wrap.ast-social-color-type-official .ast-weibo .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-weibo, +.footer-social-inner-wrap.ast-social-color-type-official .ast-weibo .social-item-label { + background: transparent; + color: #E41C34; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-tumblr, +.header-social-inner-wrap.ast-social-color-type-official .ast-tumblr .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-tumblr, +.footer-social-inner-wrap.ast-social-color-type-official .ast-tumblr .social-item-label { + background: transparent; + color: #314255; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-qq, +.header-social-inner-wrap.ast-social-color-type-official .ast-qq .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-qq, +.footer-social-inner-wrap.ast-social-color-type-official .ast-qq .social-item-label { + background: transparent; + color: #487FC8; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-wechat, +.header-social-inner-wrap.ast-social-color-type-official .ast-wechat .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wechat, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wechat .social-item-label { + background: transparent; + color: #2DC121; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-phone, +.header-social-inner-wrap.ast-social-color-type-official .ast-phone .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-phone, +.footer-social-inner-wrap.ast-social-color-type-official .ast-phone .social-item-label { + background: transparent; + color: inherit; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-strava, +.header-social-inner-wrap.ast-social-color-type-official .ast-strava .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-strava, +.footer-social-inner-wrap.ast-social-color-type-official .ast-strava .social-item-label { + background: transparent; + color: #2DC121; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-email, +.header-social-inner-wrap.ast-social-color-type-official .ast-email .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-email, +.footer-social-inner-wrap.ast-social-color-type-official .ast-email .social-item-label { + background: transparent; + color: #ea4335; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-github, +.header-social-inner-wrap.ast-social-color-type-official .ast-github .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-github, +.footer-social-inner-wrap.ast-social-color-type-official .ast-github .social-item-label { + background: transparent; + color: #24292e; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-google_reviews, +.header-social-inner-wrap.ast-social-color-type-official .ast-google_reviews .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-google_reviews, +.footer-social-inner-wrap.ast-social-color-type-official .ast-google_reviews .social-item-label { + background: transparent; + color: #dc4e41; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-wordpress, +.header-social-inner-wrap.ast-social-color-type-official .ast-wordpress .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wordpress, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wordpress .social-item-label { + background: transparent; + color: #464646; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-yelp, +.header-social-inner-wrap.ast-social-color-type-official .ast-yelp .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-yelp, +.footer-social-inner-wrap.ast-social-color-type-official .ast-yelp .social-item-label { + background: transparent; + color: #af0606; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook, +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook .social-item-label { + color: #557dbc; + background: transparent; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-imdb, +.header-social-inner-wrap.ast-social-color-type-official .ast-imdb .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-imdb, +.footer-social-inner-wrap.ast-social-color-type-official .ast-imdb .social-item-label { + color: #000000; + background: #F5C518; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor, +.header-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor, +.footer-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor .social-item-label { + color: #000000; + background: #00aa6c; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-builder-social-element svg, +.footer-social-inner-wrap.ast-social-color-type-official .ast-builder-social-element svg { + fill: currentColor; +} + +@media screen and (max-width: 921px) { + .ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle { + left: calc( 20px - 0.907em); + } +} + +/** Search CSS for New HFB Dropdown/Off-Canvas */ +.ast-mobile-header-content .ast-search-menu-icon, +.ast-mobile-header-content .ast-search-menu-icon.slide-search, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.slide-search { + width: 100%; + margin-bottom: 1em; + margin-top: 1em; + position: relative; + display: block; + left: auto; + transform: none; +} + +.ast-mobile-header-content .ast-search-icon, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-icon { + display: none; +} + +.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form, +.ast-mobile-header-content .ast-search-menu-icon .search-form, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.slide-search .search-form, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-form { + left: 0; + visibility: visible; + opacity: 1; + position: relative; + top: auto; + transform: none; + padding: 0; + display: block; + overflow: hidden; +} + +.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field, +.ast-mobile-header-content .ast-search-menu-icon .search-field, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.ast-inline-search .search-field, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-field { + width: 100%; + padding-left: 5.5em; +} + +.ast-mobile-header-content .ast-search-menu-icon .search-submit, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-submit { + display: block; + position: absolute; + height: 100%; + top: 0; + left: 0; + padding: 0 1em; + border-radius: 0; +} + +.ast-header-search .ast-search-menu-icon .search-form .search-field:-ms-input-placeholder { + opacity: 0.5; +} + +.ast-header-search .ast-search-menu-icon .search-form .search-field::placeholder { + opacity: 0.5; +} + +/** Search CSS for Left side rows */ +.site-header-section-left .ast-search-menu-icon.slide-search .search-form { + padding-right: 3em; + padding-left: unset; + right: -1em; + left: unset; +} + +.site-header-section-left .ast-search-menu-icon.slide-search .search-form .search-field { + margin-left: unset; + margin-right: 10px; +} + +/** Above header z-index for Sticky Above Header Submenu */ +.ast-above-header-bar.ast-header-sticked { + z-index: 9; +} + +/** Default Spacing for Mobile Header elements except Menu */ +.ast-mobile-popup-content .ast-builder-layout-element:not(.ast-builder-menu), +.ast-mobile-header-content .ast-builder-layout-element:not(.ast-builder-menu) { + margin: 15px 20px; +} + +/* Footer menu spacing between each menu items. */ +@media (min-width: 769px) { + .footer-nav-wrap .astra-footer-horizontal-menu li { + margin: 0; + } + .footer-nav-wrap .astra-footer-horizontal-menu li:first-child a { + padding-right: 0; + } + .footer-nav-wrap .astra-footer-horizontal-menu li:last-child a { + padding-left: 0; + } + .footer-nav-wrap .astra-footer-horizontal-menu a { + padding: 0 0.5em; + } +} + +/*---------- Header ----------*/ +/** + * Header + * + * @import + * 1 - Header Layout Common + * 2 - Header Main +*/ +/* 1 - Header Common */ +/** + * Header Common + * + * Contents + * 1 - Common + * 4 - Main Header Container + * 6 - all and (max-width: $mx-break-point) + * 7 - Auto Margin +*/ +/** + * 1 - Common + */ +.site-header { + z-index: 99; + position: relative; +} + +/** + * 4 - Main Header Container + */ +.main-header-container { + position: relative; +} + +.main-header-bar-wrap { + position: relative; +} + +.main-header-bar-wrap .nav-fallback-text { + float: left; +} + +.main-header-bar { + background-color: #fff; + border-bottom-color: #eaeaea; + border-bottom-style: solid; +} + +/** + * 6 - all and (max-width: $mx-break-point) + */ +.ast-header-break-point .main-header-bar { + border: 0; +} + +.ast-header-break-point .nav-fallback-text { + float: none; +} + +.ast-header-break-point .main-header-bar { + border-bottom-color: #eaeaea; + border-bottom-style: solid; +} + +.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items { + padding-right: 20px; + padding-left: 20px; + margin-bottom: 1em; + margin-top: 1em; +} + +.ast-header-break-point .ast-header-custom-item .widget:last-child { + margin-bottom: 1em; +} + +/** + * 7 - Auto Margin + */ +.main-header-bar { + margin-right: auto; + margin-left: auto; +} + +.site-logo-img img { + transition: all 0.2s linear; +} + +/** + * 8 - Header Widget Area + */ +.ast-header-widget-area { + line-height: 1.65; +} + +.ast-header-widget-area .widget-title, +.ast-header-widget-area .no-widget-text { + margin-bottom: 0; +} + +.ast-header-widget-area .widget { + margin: .5em; + display: inline-block; + vertical-align: middle; +} + +.ast-header-widget-area .widget p { + margin-bottom: 0; +} + +.ast-header-widget-area .widget ul { + position: static; + border: 0; + width: auto; +} + +.ast-header-widget-area .widget ul a { + border: 0; +} + +.ast-header-widget-area .widget.widget_search .search-field, +.ast-header-widget-area .widget.widget_search .search-field:focus { + padding: 10px 15px 10px 45px; +} + +.ast-header-widget-area .widget:last-child { + margin-bottom: 0.5em; + margin-left: 0; +} + +.submenu-with-border .ast-header-widget-area .widget ul { + position: static; + border: 0; + width: auto; +} + +.submenu-with-border .ast-header-widget-area .widget ul a { + border: 0; +} + +.ast-header-break-point .ast-header-widget-area .widget { + margin: .5em 0; + display: block; +} + +/** + * 9 - Header Widget Area + */ +.ast-header-custom-item .widget { + margin: 0.5em; + display: inline-block; + vertical-align: middle; +} + +.ast-header-custom-item .widget p { + margin-bottom: 0; +} + +.ast-header-custom-item .widget li { + width: auto; +} + +/** + * 10 - Submenu container box shadow + */ +.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu { + box-shadow: none; +} + +.ast-desktop .main-header-menu .astra-megamenu .sub-menu { + box-shadow: none; +} + +.ast-desktop .main-header-menu .sub-menu { + box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1); +} + +.ast-desktop .main-header-menu .astra-full-megamenu-wrapper { + box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1); +} + +.ast-header-custom-item-inside .button-custom-menu-item .menu-link { + display: none; +} + +.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item { + padding-right: 0; + padding-left: 0; + margin-top: 0; + margin-bottom: 0; +} + +.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link { + display: none; +} + +.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link { + display: block; +} + +.button-custom-menu-item .ast-custom-button-link .ast-custom-button { + font-size: inherit; + font-family: inherit; + font-weight: inherit; +} + +.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover { + transition: all 0.1s ease-in-out; +} + +/* 2 - Header Main */ +/** + * Header Sections + * + * All sections within the header. + * + * Contents + * 1 - Common + * 2 - Social Follow + * 3 - Site Logo + * 4 - Search Form + * + * # Responsive +*/ +/** + * 1 - Common + */ +.site-branding { + line-height: 1; + align-self: center; +} + +.ast-menu-toggle { + display: none; + background: transparent; + color: inherit; + border-style: dotted; + border-color: transparent; +} + +.ast-menu-toggle:focus, .ast-menu-toggle:hover { + background: transparent; + border-color: inherit; + color: inherit; +} + +.ast-menu-toggle:focus { + outline: thin dotted; +} + +/** + * 4 - Search Form & Main Header + */ +.ast-main-header-nav-open .main-header-bar { + padding-bottom: 0; +} + +.main-header-bar { + z-index: 4; + position: relative; +} + +.main-header-bar .main-header-bar-navigation { + height: 100%; +} + +.main-header-bar .main-header-bar-navigation:empty { + padding: 0; +} + +.main-header-bar .main-header-bar-navigation .sub-menu { + line-height: 1.45; +} + +.main-header-bar .main-header-bar-navigation .menu-item-has-children > .menu-link:after { + content: "\e900"; + display: inline-block; + font-family: 'Astra'; + font-size: 9px; + font-size: .6rem; + font-weight: bold; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + margin-right: 10px; + line-height: normal; +} + +.main-header-bar .main-header-bar-navigation .ast-search-icon { + display: block; + z-index: 4; + position: relative; +} + +.main-header-bar .main-header-bar-navigation.toggle-on { + padding-top: 1em; +} + +.main-header-bar .ast-search-menu-icon .search-form { + background-color: #ffffff; +} + +.ast-search-menu-icon.slide-search .search-form { + -webkit-backface-visibility: visible; + backface-visibility: visible; + visibility: hidden; + opacity: 0; + transition: all .2s; + position: absolute; + z-index: 3; + left: -1em; + top: 50%; + transform: translateY(-50%); +} + +.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form { + visibility: visible; + opacity: 1; +} + +.ast-search-menu-icon .search-form { + border: 1px solid #e7e7e7; + line-height: normal; + padding: 0 0 0 3em; + border-radius: 2px; + display: inline-block; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + position: relative; + color: inherit; + background-color: #fff; +} + +.ast-search-menu-icon .astra-search-icon { + -js-display: flex; + display: flex; + line-height: normal; +} + +.ast-search-menu-icon .astra-search-icon:focus { + outline: none; +} + +.ast-search-menu-icon .search-field { + border: none; + background-color: transparent; + transition: width .2s; + border-radius: inherit; + color: inherit; + font-size: inherit; + width: 0; + color: #757575; +} + +.ast-search-menu-icon .search-submit { + display: none; + background: none; + border: none; + font-size: 1.3em; + color: #757575; +} + +.ast-search-menu-icon.ast-dropdown-active { + visibility: visible; + opacity: 1; + position: relative; +} + +.ast-search-menu-icon.ast-dropdown-active .search-field { + width: 235px; +} + +.ast-search-icon { + z-index: 4; + position: relative; + line-height: normal; +} + +/* Hide Mobile logo. */ +.custom-mobile-logo-link { + display: none; +} + +.ast-site-identity { + padding: 1em 0; +} + +.ast-header-break-point .site-header .main-header-bar-wrap .site-branding { + -js-display: flex; + display: flex; + flex: 1; + align-self: center; +} + +.ast-header-break-point .ast-site-identity { + width: 100%; +} + +.ast-header-break-point .main-header-bar-navigation .menu-item-has-children > .menu-link:after { + display: none; +} + +.ast-header-break-point .main-header-bar { + display: block; + line-height: 3; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation { + line-height: 3; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu { + line-height: 3; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu { + display: none; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle { + display: inline-block; + position: absolute; + font-size: inherit; + top: -1px; + left: 20px; + cursor: pointer; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + padding: 0 0.907em; + font-weight: normal; + line-height: inherit; + transition: all .2s; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before { + font-weight: bold; + content: "\e900"; + font-family: 'Astra'; + text-decoration: inherit; + display: inline-block; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before { + transform: rotateX(180deg); +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu { + border-top-width: 1px; + border-style: solid; + border-color: #eaeaea; +} + +.ast-header-break-point .main-navigation { + display: block; + width: 100%; +} + +.ast-header-break-point .main-navigation ul > .menu-item:first-child { + border-top: 0; +} + +.ast-header-break-point .main-navigation ul ul { + right: auto; + left: auto; +} + +.ast-header-break-point .main-navigation .stack-on-mobile li { + width: 100%; +} + +.ast-header-break-point .main-navigation .widget { + margin-bottom: 1em; +} + +.ast-header-break-point .main-navigation .widget li { + width: auto; +} + +.ast-header-break-point .main-navigation .widget:last-child { + margin-bottom: 0; +} + +.ast-header-break-point .main-header-bar-navigation { + width: calc( 100% + 40px); + margin: 0 -20px; +} + +.ast-header-break-point .main-header-menu ul ul { + top: 0; +} + +.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link { + display: none; +} + +.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link { + display: inline-block; +} + +.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, +.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg { + display: block; +} + +.ast-header-break-point .ast-builder-menu { + width: 100%; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile { + flex-wrap: unset; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu { + display: block; + width: 150px; + position: absolute; + left: auto; + right: 0; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu .menu-item .ast-menu-toggle { + padding: 0; + left: 1em; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu .menu-link { + padding: .1em 1em; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu > .menu-item > .sub-menu { + right: 100%; + left: auto; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu > .menu-item .ast-menu-toggle::before { + transform: rotate(90deg); +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu > .menu-item.ast-submenu-expanded .ast-menu-toggle::before { + transform: rotate(270deg); +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item > .sub-menu > .menu-item .menu-link:before { + content: none; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .ast-menu-toggle { + left: -10px; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.stack-on-mobile { + flex-wrap: wrap; +} + +/*---------- Forms ----------*/ +/** + * Form Fields + * + * @import + * 1 - All fields common scss + * 2 - Field - Range + * 3 - Field - Color +*/ +/* 1 - All fields common scss */ +input[type="text"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="password"], +input[type="search"], +input[type=reset], +input[type=tel], +select, +textarea { + color: #666; + padding: 0.75em; + height: auto; + border-width: 1px; + border-style: solid; + border-color: #eaeaea; + border-radius: 2px; + background: #fafafa; + box-shadow: none; + box-sizing: border-box; + transition: all 0.2s linear; +} + +input[type="text"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +input[type="search"]:focus, +input[type=reset]:focus, +input[type=tel]:focus, +select:focus, +textarea:focus { + background-color: #fff; + border-color: #eaeaea; + box-shadow: none; +} + +input[type=reset], +input[type=reset]:hover, +input[type=reset]:focus, +input[type="submit"], +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="button"], +input[type="button"]:hover, +input[type="button"]:focus { + box-shadow: none; +} + +textarea { + width: 100%; +} + +input[type="search"]:focus { + outline: thin dotted; +} + +/* 2 - Field - Range */ +/* Range */ +input[type=range] { + -webkit-appearance: none; + width: 100%; + margin: 5.7px 0; + padding: 0; + border: none; +} + +input[type=range]:focus { + outline: none; +} + +input[type=range]::-webkit-slider-runnable-track { + width: 100%; + height: 8.6px; + cursor: pointer; + box-shadow: -2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; + background: rgba(255, 255, 255, 0.2); + border-radius: 13.6px; + border: 0px solid #ffffff; +} + +input[type=range]::-webkit-slider-thumb { + box-shadow: 0px 0px 0px rgba(255, 221, 0, 0.37), 0px 0px 0px rgba(255, 224, 26, 0.37); + border: 7.9px solid #0274be; + height: 20px; + width: 20px; + border-radius: 50px; + background: #0274be; + cursor: pointer; + -webkit-appearance: none; + margin-top: -5.7px; +} + +input[type=range]:focus::-webkit-slider-runnable-track { + background: rgba(255, 255, 255, 0.2); +} + +input[type=range]::-moz-range-track { + width: 100%; + height: 8.6px; + cursor: pointer; + box-shadow: -2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; + background: rgba(255, 255, 255, 0.2); + border-radius: 13.6px; + border: 0px solid #ffffff; +} + +input[type=range]::-moz-range-thumb { + box-shadow: 0px 0px 0px rgba(255, 221, 0, 0.37), 0px 0px 0px rgba(255, 224, 26, 0.37); + border: 7.9px solid #0274be; + height: 20px; + width: 20px; + border-radius: 50px; + background: #0274be; + cursor: pointer; +} + +input[type=range]::-ms-track { + width: 100%; + height: 8.6px; + cursor: pointer; + background: transparent; + border-color: transparent; + color: transparent; +} + +input[type=range]::-ms-fill-lower { + background: rgba(199, 199, 199, 0.2); + border: 0px solid #ffffff; + border-radius: 27.2px; + box-shadow: -2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; +} + +input[type=range]::-ms-fill-upper { + background: rgba(255, 255, 255, 0.2); + border: 0px solid #ffffff; + border-radius: 27.2px; + box-shadow: -2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; +} + +input[type=range]::-ms-thumb { + box-shadow: 0px 0px 0px rgba(255, 221, 0, 0.37), 0px 0px 0px rgba(255, 224, 26, 0.37); + border: 7.9px solid #0274be; + height: 20px; + width: 20px; + border-radius: 50px; + background: #0274be; + cursor: pointer; + height: 8.6px; +} + +input[type=range]:focus::-ms-fill-lower { + background: rgba(255, 255, 255, 0.2); +} + +input[type=range]:focus::-ms-fill-upper { + background: rgba(255, 255, 255, 0.2); +} + +/* 3 - Field - Color */ +/* Color */ +input[type="color"] { + border: none; + width: 100px; + padding: 0; + height: 30px; + cursor: pointer; +} + +input[type="color"]::-webkit-color-swatch-wrapper { + padding: 0; + border: none; +} + +input[type="color"]::-webkit-color-swatch { + border: none; +} + +/*---------- Blog ----------*/ +/*-------------------------------------------------------------- +## Blog Layouts +--------------------------------------------------------------*/ +/** + * Blog Common + */ +.page .entry-header { + margin-bottom: 1.5em; +} + +.search .entry-header { + margin-bottom: 1em; +} + +.ast-single-post .entry-header.ast-header-without-markup, .ast-single-post .entry-header.ast-no-title.ast-no-thumbnail { + margin-bottom: 0; +} + +.entry-header { + margin-bottom: 1em; + word-wrap: break-word; +} + +.entry-header + .ast-blog-featured-section { + margin-top: 0.5em; +} + +.entry-content { + word-wrap: break-word; +} + +.entry-content p { + margin-bottom: 1.6em; +} + +.read-more { + margin-bottom: 0; +} + +.read-more .ast-right-arrow { + font-size: 1em; +} + +.ast-no-thumb .ast-blog-featured-section { + margin-bottom: 0; +} + +.ast-no-thumb .entry-header + .ast-blog-featured-section { + margin-top: 0; +} + +.ast-blog-featured-section { + margin-bottom: 1.5em; +} + +.ast-blog-featured-section .gallery { + margin-bottom: 0; +} + +.error404 .page-header { + margin-bottom: 1.5em; +} + +.error404 .page-header .page-title { + margin-bottom: 0; +} + +.blog .entry-title, +.archive .entry-title, +.search .entry-title { + line-height: 1.3; +} + +.blog .format-status .entry-title, +.archive .format-status .entry-title, +.blog .format-aside .entry-title, +.archive .format-aside .entry-title { + display: none; +} + +.page-title { + margin-bottom: 1em; + font-weight: normal; +} + +.entry-title { + margin-bottom: 0.2em; +} + +.ast-article-post { + margin-bottom: 2.5em; +} + +.ast-article-post:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +.search .site-content .content-area .search-form { + margin-bottom: 3em; +} + +.blog-layout-1 { + /* 2 - Blog Thumbnail Styles */ +} + +.blog-layout-1 .post-thumb { + padding-right: 0; + padding-left: 0; + position: relative; +} + +.blog .posted-on { + z-index: 1; +} + +.ast-blog-featured-section .posted-on { + width: 5.714285714em; + height: 5.714285714em; + padding: 0.7em; +} + +.ast-blog-featured-section .posted-on .date-month, +.ast-blog-featured-section .posted-on .date-year { + font-size: 0.8571428571em; + line-height: 1em; +} + +.ast-blog-featured-section .posted-on .date-day { + font-size: 2.5em; + line-height: .9em; + font-weight: 900; + margin: .1em 0; +} + +/* ============================================================ + Archive Blogs +============================================================ */ +.ast-author-box img.avatar { + border-radius: 50%; + margin: 0 20px 0 0; +} + +.ast-archive-description { + margin-bottom: 2.5em; + padding-bottom: 1.3333em; + border-bottom: 1px solid #eeeeee; +} + +.ast-archive-description .ast-archive-title { + margin-bottom: 4px; + font-size: 40px; + font-size: 2.85714rem; + font-weight: 300; +} + +.ast-archive-description p { + margin-bottom: 0; + font-size: 20px; + font-size: 1.42857rem; + line-height: 1.65; + font-weight: 300; +} + +.ast-separate-container .ast-author-box, +.ast-separate-container .ast-archive-description { + background-color: #eee; + padding-bottom: 0; + border-bottom: 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-archive-description { + margin: 0; + padding: 3.34em 2.4em; + } +} + +@media (max-width: 992px) { + .ast-separate-container .ast-archive-description { + padding: 2.14em; + } +} + +@media (min-width: 1201px) { + .ast-separate-container .ast-author-box, + .ast-separate-container .ast-archive-description { + margin: 0; + padding: 5em 6.67em 3.33333em; + } +} + +/*-------------------------------------------------------------- +## Single Blog Post Layouts +--------------------------------------------------------------*/ +/*---------- Single Post Common Stylesheet ----------*/ +/** + * Common Stylesheet of Single Post + * + * Content + * 1 - Single Post Navigation Styles + * 2 - Single Post Article Header +*/ +.single { + /* 1 - Single Post Navigation Styles */ + /*Page builder single post meta*/ +} + +.single .entry-header { + margin-bottom: 2em; +} + +.single .post-navigation { + margin: 0; + padding: 2em 0 0; + border-top: 1px solid #eeeeee; +} + +@media (max-width: 768px) { + .single .post-navigation { + padding-top: 1.5em; + } +} + +.single .post-navigation a { + margin: 2px; + display: inline-block; + text-align: center; + color: #000; +} + +@media (min-width: 421px) { + .single .post-navigation .nav-links { + -js-display: flex; + display: flex; + } + .single .post-navigation .nav-previous, + .single .post-navigation .nav-next { + flex: auto; + } +} + +@media (max-width: 420px) { + .single .post-navigation .ast-left-arrow, + .single .post-navigation .ast-right-arrow { + display: none; + } + .single .post-navigation .nav-previous, + .single .post-navigation .nav-next { + width: 100%; + } + .single .post-navigation .nav-previous a, + .single .post-navigation .nav-next a { + width: 100%; + } + .single .post-navigation .nav-previous { + margin-bottom: 1em; + } +} + +.single.ast-page-builder-template .entry-header { + padding-right: 20px; + padding-left: 20px; +} + +/* 2 - Single Post Article Header */ +.single .entry-header .ast-single-post-order + .post-thumb img { + margin-top: 2em; + margin-bottom: 0; +} + +.single .entry-header.ast-no-title .post-thumb + .ast-single-post-order { + margin-top: 0; +} + +.single .entry-header .post-thumb + .ast-single-post-order { + margin-top: 2em; +} + +.single .entry-header .post-thumb img { + margin-top: 0; + margin-bottom: 0; +} + +.page .has-post-thumbnail .post-thumb img { + margin-bottom: 1.5em; +} + +.post-password-form { + text-align: center; +} + +@media (max-width: 420px) { + .post-password-form input[type="password"] { + display: block; + margin: 10px auto; + } +} + +.post-password-form input[type="submit"] { + padding: 10px 20px; + border-radius: 2px; +} + +.ast-separate-container .post-navigation { + border-top: 0; + padding-right: 3.33333em; + padding-left: 3.33333em; +} + +@media (max-width: 420px) { + .ast-separate-container .post-navigation { + padding-right: 0; + padding-left: 0; + } +} + +@media (max-width: 768px) { + .ast-separate-container .entry-header { + margin-bottom: 1em; + } +} + +.ast-page-builder-template.single-post .site-content > .ast-container { + max-width: 100%; +} + +/*---------- Single Post Comment Form Stylesheet ----------*/ +/** + * Comment Form Styles + * + * Content + * 1 - Textarea Styles + * 2 - Input Fields Styles + * 3 - Submit Button Styles + * 4 - Comment List Styles +*/ +.comments-count-wrapper { + padding: 2em 0; +} + +.comments-count-wrapper .comments-title { + font-weight: normal; + word-wrap: break-word; +} + +.ast-comment-list { + margin: 0; + word-wrap: break-word; + padding-bottom: 0.5em; + list-style: none; +} + +.ast-comment-list li { + list-style: none; +} + +.ast-comment-list li.depth-1 .ast-comment, +.ast-comment-list li.depth-2 .ast-comment { + border-bottom: 1px solid #eeeeee; +} + +.ast-comment-list .children { + margin-right: 2em; +} + +@media (max-width: 992px) { + .ast-comment-list .children { + margin-right: 1em; + } +} + +.ast-comment-list .comment-respond { + padding: 1em 0; + border-bottom: 1px solid #eeeeee; +} + +.ast-comment-list .comment-respond .comment-reply-title { + margin-top: 0; + padding-top: 0; +} + +.ast-comment-list .comment-respond p { + margin-bottom: .5em; +} + +.ast-comment-list #cancel-comment-reply-link { + white-space: nowrap; + font-size: 15px; + font-size: 1rem; + margin-right: 1em; +} + +.ast-comment-list .ast-comment-edit-reply-wrap { + -js-display: flex; + display: flex; + justify-content: flex-end; +} + +.ast-comment-list .ast-edit-link { + flex: 1; +} + +.ast-comment-list .comment-awaiting-moderation { + margin-bottom: 0; +} + +.ast-comment { + padding: 1em 0; +} + +.ast-comment-avatar-wrap { + float: right; + clear: left; + margin-left: 1.33333em; +} + +.ast-comment-avatar-wrap img { + border-radius: 50%; +} + +.ast-comment-meta-wrap { + float: right; + clear: left; + padding: 0 0 1.33333em; +} + +.ast-comment-content { + clear: both; +} + +.ast-comment-cite-wrap { + text-align: right; +} + +.ast-comment-cite-wrap cite { + font-style: normal; +} + +.comment-reply-title { + padding-top: 1em; + font-weight: normal; + line-height: 1.65; +} + +.ast-comment-meta { + margin-bottom: 0.5em; +} + +.ast-comment-time .timendate, +.ast-comment-time .reply { + margin-left: 0.5em; +} + +.comments-area { + border-top: 1px solid #eeeeee; + margin-top: 2em; + /* 1 - Textarea Styles */ + /* 2 - Input Fields Styles */ + /* 4 - Comment List Styles */ + /* Comment Cookie concent field aignment */ +} + +.comments-area .comment-form-comment { + width: 100%; + border: none; + margin: 0; + padding: 0; +} + +.comments-area .comment-notes, +.comments-area .comment-textarea, +.comments-area .form-allowed-tags { + margin-bottom: 1.5em; +} + +.comments-area .form-submit { + margin-bottom: 0; +} + +.comments-area textarea#comment, +.comments-area .ast-comment-formwrap input[type="text"] { + width: 100%; + border-radius: 0; + vertical-align: middle; + margin-bottom: 10px; +} + +.comments-area .no-comments { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.comments-area p.logged-in-as { + margin-bottom: 1em; +} + +.comments-area #wp-comment-cookies-consent { + margin-left: 10px; +} + +.ast-separate-container .comments-count-wrapper { + background-color: #fff; + padding: 2em 6.67em 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .comments-count-wrapper { + padding: 2em 3.34em; + } +} + +.ast-separate-container .comments-area { + border-top: 0; +} + +.ast-separate-container .ast-comment-list { + padding-bottom: 0; +} + +.ast-separate-container .ast-comment-list li { + background-color: #fff; +} + +.ast-separate-container .ast-comment-list li.depth-1 { + padding: 4em 6.67em; + margin-bottom: 2em; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-comment-list li.depth-1 { + padding: 3em 3.34em; + } +} + +.ast-separate-container .ast-comment-list li.depth-1 .ast-comment { + border-bottom: 0; +} + +.ast-separate-container .ast-comment-list li.depth-1 .children li { + padding-bottom: 0; + padding-top: 0; + margin-bottom: 0; +} + +.ast-separate-container .ast-comment-list li.depth-1 .ast-comment, +.ast-separate-container .ast-comment-list li.depth-2 .ast-comment { + border-bottom: 0; +} + +.ast-separate-container .ast-comment-list .comment-respond { + padding-top: 0; + padding-bottom: 1em; + background-color: transparent; +} + +.ast-separate-container .ast-comment-list .pingback p { + margin-bottom: 0; +} + +.ast-separate-container .ast-comment-list .bypostauthor { + padding: 2em; + margin-bottom: 1em; +} + +.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor { + background: transparent; + margin-bottom: 0; + padding-left: 0; + padding-bottom: 0; + padding-top: 0; +} + +.ast-separate-container .ast-comment-list .bypostauthor li { + background: transparent; + margin-bottom: 0; + padding: 0 2em 0 0; +} + +.ast-separate-container .comment-respond { + background-color: #fff; + padding: 4em 6.67em; + border-bottom: 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .comment-respond { + padding: 3em 2.34em; + } +} + +.ast-separate-container .comment-reply-title { + padding-top: 0; +} + +.ast-page-builder-template .comments-area { + padding-right: 20px; + padding-left: 20px; + margin-top: 2em; + margin-bottom: 2em; +} + +/*-------------------------------------------------------------- +## Blog Paginations +--------------------------------------------------------------*/ +/* ============================================================ + NEXT PAGINATION +============================================================ */ +.post-navigation a, +.ast-pagination .prev.page-numbers, +.ast-pagination .next.page-numbers { + padding: 0 1.5em; + height: 2.33333em; + line-height: calc(2.33333em - 3px); +} + +.post-navigation a { + background: transparent; + font-size: 16px; + font-size: 1.06666rem; +} + +.ast-pagination { + display: inline-block; + width: 100%; + padding-top: 2em; +} + +@media (min-width: 993px) { + .ast-pagination { + padding-right: 3.33333em; + padding-left: 3.33333em; + } +} + +.ast-pagination .page-numbers { + display: inline-block; + width: 2.33333em; + height: 2.33333em; + font-size: 16px; + font-size: 1.06666rem; + line-height: calc(2.33333em - 3px); + text-align: center; +} + +.ast-pagination .nav-links { + display: inline-block; + width: 100%; +} + +@media (max-width: 420px) { + .ast-pagination .prev.page-numbers, + .ast-pagination .next.page-numbers { + width: 100%; + text-align: center; + margin: 0; + } +} + +.ast-pagination .prev.page-numbers, +.ast-pagination .prev.page-numbers:visited, +.ast-pagination .prev.page-numbers:focus, +.ast-pagination .next.page-numbers, +.ast-pagination .next.page-numbers:visited, +.ast-pagination .next.page-numbers:focus { + display: inline-block; + width: auto; +} + +@media (min-width: 769px) { + .ast-pagination .prev.page-numbers.next, + .ast-pagination .prev.page-numbers:visited.next, + .ast-pagination .prev.page-numbers:focus.next, + .ast-pagination .next.page-numbers.next, + .ast-pagination .next.page-numbers:visited.next, + .ast-pagination .next.page-numbers:focus.next { + margin-left: 0; + } +} + +.ast-pagination .prev.page-numbers.dots, .ast-pagination .prev.page-numbers.dots:hover, .ast-pagination .prev.page-numbers.dots:focus, +.ast-pagination .prev.page-numbers:visited.dots, +.ast-pagination .prev.page-numbers:visited.dots:hover, +.ast-pagination .prev.page-numbers:visited.dots:focus, +.ast-pagination .prev.page-numbers:focus.dots, +.ast-pagination .prev.page-numbers:focus.dots:hover, +.ast-pagination .prev.page-numbers:focus.dots:focus, +.ast-pagination .next.page-numbers.dots, +.ast-pagination .next.page-numbers.dots:hover, +.ast-pagination .next.page-numbers.dots:focus, +.ast-pagination .next.page-numbers:visited.dots, +.ast-pagination .next.page-numbers:visited.dots:hover, +.ast-pagination .next.page-numbers:visited.dots:focus, +.ast-pagination .next.page-numbers:focus.dots, +.ast-pagination .next.page-numbers:focus.dots:hover, +.ast-pagination .next.page-numbers:focus.dots:focus { + border: 2px solid #eaeaea; + background: transparent; +} + +.ast-pagination .prev.page-numbers.dots, +.ast-pagination .prev.page-numbers:visited.dots, +.ast-pagination .prev.page-numbers:focus.dots, +.ast-pagination .next.page-numbers.dots, +.ast-pagination .next.page-numbers:visited.dots, +.ast-pagination .next.page-numbers:focus.dots { + cursor: default; +} + +.ast-pagination .next.page-numbers { + float: left; + text-align: left; +} + +@media (max-width: 768px) { + .ast-pagination .next.page-numbers .page-navigation { + padding-left: 0; + } +} + +@media (max-width: 768px) { + .ast-pagination .prev_next { + display: inline-block; + width: 100%; + } +} + +.ast-pagination .prev_next .next .ast-right-arrow, +.ast-pagination .prev_next .prev .ast-left-arrow { + font-size: 1em; + line-height: 1em; +} + +@media (min-width: 769px) { + .ast-pagination .prev_next { + float: left; + } +} + +/*---------- 404 ----------*/ +.ast-404-layout-1 { + text-align: center; + margin: 4em auto; +} + +.ast-404-layout-1 .page-sub-title { + font-size: 1.5rem; + font-weight: bold; +} + +.ast-404-layout-1 .widget_search { + padding-top: 0.5em; +} + +.ast-404-search { + margin-top: 1.5em; +} + +.ast-404-search .widget_search { + max-width: 370px; + margin: 0 auto; +} + +.ast-separate-container .error-404, +.ast-separate-container .no-results { + background-color: #fff; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + margin: 0; + padding: 3.34em 2.4em; + } +} + +@media (max-width: 768px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + padding: 1.5em 2.14em; + } +} + +@media (max-width: 544px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + padding: 1.5em 1em; + } +} + +@media (min-width: 1201px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + margin: 0; + padding: 5.34em 6.67em; + } +} + +/*---------- Blog Styles ----------*/ +/*---------- Media Query min-width Structure ----------*/ +/*---------- Media Query max-width Structure ----------*/ +/*---------- Break-point min-width Structure ----------*/ +/*---------- Break-point max-width Structure ----------*/ +.blog-layout-1 { + width: 100%; + display: inline-block; + padding-bottom: 2em; + vertical-align: middle; + border-bottom: 1px solid #eeeeee; +} + +.blog-layout-1 .posted-on { + right: 0; +} + +.blog-layout-1 .post-thumb, +.blog-layout-1 .post-content { + padding-right: 0; + padding-left: 0; +} + +/*---------- Page Builders ----------*/ +/** + * Astra Theme compatibility with Beaver Builder + */ +.fl-builder-content { + clear: both; +} + +.fl-theme-builder-archive .fl-post-gallery-post.hentry, +.fl-theme-builder-archive .fl-post-column > .hentry { + margin: 0; +} + +.fl-theme-builder-archive h2.fl-post-feed-title { + clear: initial; +} + +.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width { + padding-right: 0; + padding-left: 0; +} + +/** + * Astra Theme compatibility with Visual Composer + */ +.js_active .vc_row { + margin-right: auto; + margin-left: auto; +} + +.js_active .ast-plain-container.ast-single-post .hentry, +.js_active .ast-plain-container.ast-single-post #primary { + margin: 0; + padding-top: 0; + padding-bottom: 0; +} + +.js_active .ast-plain-container.ast-single-post .entry-header { + margin-top: 4em; +} + +.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup { + margin-top: 0; + margin-bottom: 0; +} + +.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta { + margin-bottom: 0; +} + +@media (max-width: 768px) { + .js_active .ast-plain-container.ast-single-post .entry-header { + margin-top: 1.5em; + } +} + +@media (max-width: 768px) { + .js_active .ast-plain-container.ast-single-post #secondary { + margin-top: 1.5em; + } +} + +.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width], .js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width], +.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width], +.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width] { + max-width: 100%; + right: 0 !important; +} + +.js_active .ast-left-sidebar .vc_row[data-vc-full-width], +.js_active .ast-right-sidebar .vc_row[data-vc-full-width] { + max-width: 100%; + right: 0 !important; + padding-left: 0 !important; + padding-right: 0 !important; +} + +/** + * Astra Theme compatibility with Elementor + */ +.ast-left-sidebar .elementor-section.elementor-section-stretched, +.ast-right-sidebar .elementor-section.elementor-section-stretched { + max-width: 100%; + right: 0 !important; +} + +.elementor-post.elementor-grid-item.hentry { + margin-bottom: 0; +} + +.elementor-element .elementor-wc-products .woocommerce[class*='columns-'] ul.products li.product { + width: auto; + margin: 0; + float: none; +} + +.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product { + width: auto; + margin: 0; + float: none; +} + +/** + * Flexbox Framework + * + * .ast - prefix + * + * Flex classes generated as {prefix} + {css property - css value} . + * + * E.g. Here '.ast' is a prefix. + * + * .ast-flex + * .ast-flex-1 + * .ast-flex-2 + * .ast-flex-3 + * .ast-flex-4 + * .ast-flex-5 + * .ast-inline-flex + * .ast-flex-direction-row + * .ast-flex-direction-row-reverse + * .ast-flex-direction-column + * .ast-flex-direction-column-reverse + * .ast-flex-wrap-nowrap + * .ast-flex-wrap-wrap + * .ast-flex-wrap-wrap-reverse + * .ast-justify-content-flex-start + * .ast-justify-content-flex-end + * .ast-justify-content-center + * .ast-justify-content-space-between + * .ast-justify-content-space-around + * .ast-align-items-flex-start + * .ast-align-items-flex-end + * .ast-align-items-center + * .ast-align-items-baseline + * .ast-align-items-stretch + * .ast-align-content-flex-start + * .ast-align-content-flex-end + * .ast-align-content-center + * .ast-align-content-space-between + * .ast-align-content-space-around + * .ast-align-content-stretch + * .ast-order-1 + * .ast-order-2 + * .ast-order-3 + * .ast-order-4 + * .ast-order-5 + * .ast-flex-grow-1 + * .ast-flex-grow-2 + * .ast-flex-grow-3 + * .ast-flex-grow-4 + * .ast-flex-grow-5 + * .ast-flex-shrink-grow-1 + * .ast-flex-shrink-grow-2 + * .ast-flex-shrink-grow-3 + * .ast-flex-shrink-grow-4 + * .ast-flex-shrink-grow-5 + * .ast-flex-basis-grow-1 + * .ast-flex-basis-grow-2 + * .ast-flex-basis-grow-3 + * .ast-flex-basis-grow-4 + * .ast-flex-basis-grow-5 + * .ast-align-self-auto + * .ast-align-self-flex-start + * .ast-align-self-flex-end + * .ast-align-self-center + * .ast-align-self-baseline + * .ast-align-self-stretch + */ +.ast { + /* + # LAYOUT + ———————————————- + display: flex | inline-flex; + ———————————————- + */ + /* + ————————————————————————– + # CONTAINER (for PARENT) + ————————————————————————– + + # FLOW + ————————————————————————– + flex-flow: <‘flex-direction’> || <‘flex-wrap’> + ————————————————————————– + + # DIRECTION + ————————————————————————– + flex-direction: row | row-reverse | column | column-reverse; + ————————————————————————– + */ + /* + # WRAP + ————————————————————————– + flex-wrap: nowrap | wrap | wrap-reverse; + ————————————————————————– + */ + /* + ————————————————————————– + # JUSTIFY CONTENT + ————————————————————————– + justify-content: flex-start | flex-end | center | space-between | space-around; + ————————————————————————– + */ + /* + ————————————————————————– + # ALIGN – ITEMS + ————————————————————————– + align-items: flex-start | flex-end | center | baseline | stretch; + ————————————————————————– + */ + /* + ————————————————————————– + # ALIGN – CONTENT + ————————————————————————– + align-content: flex-start | flex-end | center | space-between | space-around | stretch; + ————————————————————————– + */ + /* + ————————————————————————– + # ITEMS (for CHILDs) + ————————————————————————– + + # FLEX + ————————————————————————– + flex: none | [ <‘flex-grow’> <‘flex-shrink’>? || <‘flex-basis’> ] + ————————————————————————– + ————————————————————————– + + # ORDER + ————————————————————————– + order: ; + ————————————————————————– + */ + /* + ————————————————————————– + # GROW + ————————————————————————– + flex-grow: ; default 0 + ————————————————————————– + */ + /* + ————————————————————————– + # SHRINK + ————————————————————————– + flex-shrink: ; default 1 + ————————————————————————– + */ + /* + ————————————————————————– + # ALIGN SELF + ————————————————————————– + align-self: auto | flex-start | flex-end | center | baseline | stretch; + ————————————————————————– + */ + /* + ————————————————————————– + */ +} + +.ast-flex { + -js-display: flex; + display: flex; + flex-wrap: wrap; +} + +.ast-flex-1 { + flex: 1; +} + +.ast-flex-2 { + flex: 2; +} + +.ast-flex-3 { + flex: 3; +} + +.ast-flex-4 { + flex: 4; +} + +.ast-flex-5 { + flex: 5; +} + +.ast-inline-flex { + -js-display: inline-flex; + display: inline-flex; + align-items: center; + flex-wrap: wrap; + align-content: center; +} + +.ast-flex-direction-row { + flex-direction: row; +} + +.ast-flex-direction-row-reverse { + flex-direction: row-reverse; +} + +.ast-flex-direction-column { + flex-direction: column; +} + +.ast-flex-direction-column-reverse { + flex-direction: column-reverse; +} + +.ast-flex-wrap-nowrap { + flex-wrap: nowrap; +} + +.ast-flex-wrap-wrap { + flex-wrap: wrap; +} + +.ast-flex-wrap-wrap-reverse { + flex-wrap: wrap-reverse; +} + +.ast-justify-content-flex-start { + justify-content: flex-start; +} + +.ast-justify-content-flex-end { + justify-content: flex-end; +} + +.ast-justify-content-center { + justify-content: center; +} + +.ast-justify-content-space-between { + justify-content: space-between; +} + +.ast-justify-content-space-around { + justify-content: space-around; +} + +.ast-align-items-flex-start { + align-items: flex-start; +} + +.ast-align-items-flex-end { + align-items: flex-end; +} + +.ast-align-items-center { + align-items: center; +} + +.ast-align-items-baseline { + align-items: baseline; +} + +.ast-align-items-stretch { + align-items: stretch; +} + +.ast-align-content-flex-start { + align-content: flex-start; +} + +.ast-align-content-flex-end { + align-content: flex-end; +} + +.ast-align-content-center { + align-content: center; +} + +.ast-align-content-space-between { + align-content: space-between; +} + +.ast-align-content-space-around { + align-content: space-around; +} + +.ast-align-content-stretch { + align-content: stretch; +} + +.ast-order-1 { + order: 1; +} + +.ast-order-2 { + order: 2; +} + +.ast-order-3 { + order: 3; +} + +.ast-order-4 { + order: 4; +} + +.ast-order-5 { + order: 5; +} + +.ast-flex-grow-1 { + flex-grow: 1; +} + +.ast-flex-grow-2 { + flex-grow: 2; +} + +.ast-flex-grow-3 { + flex-grow: 3; +} + +.ast-flex-grow-4 { + flex-grow: 4; +} + +.ast-flex-grow-5 { + flex-grow: 5; +} + +.ast-flex-shrink-1 { + flex-shrink: 1; +} + +.ast-flex-shrink-2 { + flex-shrink: 2; +} + +.ast-flex-shrink-3 { + flex-shrink: 3; +} + +.ast-flex-shrink-4 { + flex-shrink: 4; +} + +.ast-flex-shrink-5 { + flex-shrink: 5; +} + +.ast-align-self-auto { + align-self: auto; +} + +.ast-align-self-flex-start { + align-self: flex-start; +} + +.ast-align-self-flex-end { + align-self: flex-end; +} + +.ast-align-self-center { + align-self: center; +} + +.ast-align-self-baseline { + align-self: baseline; +} + +.ast-align-self-stretch { + align-self: stretch; +} diff --git a/assets/css/unminified/frontend.css b/assets/css/unminified/frontend.css new file mode 100644 index 0000000..f1f82fe --- /dev/null +++ b/assets/css/unminified/frontend.css @@ -0,0 +1,6223 @@ +@charset "UTF-8"; +/*-------------------------------------------------------------- +>>> TABLE OF CONTENTS: +---------------------------------------------------------------- +# Normalize +# Typography +# Elements +# Forms +# Navigation + ## Links + ## Menus +# Accessibility +# Alignments +# Clearings +# Widgets +# Content + ## Posts and pages + ## Asides + ## Comments +# Infinite scroll +# Media + ## Captions + ## Galleries +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +# Normalize +--------------------------------------------------------------*/ +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +font, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td { + border: 0; + font-size: 100%; + font-style: inherit; + font-weight: inherit; + margin: 0; + outline: 0; + padding: 0; + vertical-align: baseline; +} + +html { + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +body { + margin: 0; +} + +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; +} + +a { + background-color: transparent; +} + +a:active { + outline: 0; +} + +a, +a:visited, +a:hover, +a:focus { + text-decoration: 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; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 0; +} + +hr { + box-sizing: content-box; + height: 0; +} + +pre { + overflow: auto; +} + +code, +kbd, +pre, +samp { + font-size: 1em; +} + +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"] { + -webkit-appearance: button; + cursor: pointer; +} + +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-appearance: textfield; + box-sizing: content-box; +} + +.search .search-submit, +#comments .submit { + padding: 10px 15px; + border-radius: 2px; + line-height: 1.85714285714286; + border: 0; +} + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +fieldset { + border: 1px solid #eaeaea; + margin: 0 0px; + padding: 0.35em 0.625em 0.75em; +} + +legend { + border: 0; + padding: 0; +} + +fieldset legend { + margin-bottom: 1.5em; + padding: 0 0.5em; +} + +textarea { + overflow: auto; +} + +optgroup { + font-weight: bold; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} + +/*-------------------------------------------------------------- +# Bootstrap Grid +--------------------------------------------------------------*/ +/*! + * Bootstrap v4.0.0-alpha.2 (https://getbootstrap.com) + */ +.ast-container { + margin-left: auto; + margin-right: auto; + padding-left: 20px; + padding-right: 20px; +} + +.ast-container::after { + content: ""; + display: table; + clear: both; +} + +@media (min-width: 544px) { + .ast-container { + max-width: 100%; + } +} + +@media (min-width: 768px) { + .ast-container { + max-width: 100%; + } +} + +@media (min-width: 992px) { + .ast-container { + max-width: 100%; + } +} + +@media (min-width: 1200px) { + .ast-container { + max-width: 100%; + } +} + +.ast-container-fluid { + margin-left: auto; + margin-right: auto; + padding-left: 20px; + padding-right: 20px; +} + +.ast-container-fluid::after { + content: ""; + display: table; + clear: both; +} + +.ast-row { + margin-left: -20px; + margin-right: -20px; +} + +.ast-row::after { + content: ""; + display: table; + clear: both; +} + +.ast-col-xs-1, .ast-col-xs-2, .ast-col-xs-3, .ast-col-xs-4, .ast-col-xs-5, .ast-col-xs-6, .ast-col-xs-7, .ast-col-xs-8, .ast-col-xs-9, .ast-col-xs-10, .ast-col-xs-11, .ast-col-xs-12, .ast-col-sm-1, .ast-col-sm-2, .ast-col-sm-3, .ast-col-sm-4, .ast-col-sm-5, .ast-col-sm-6, .ast-col-sm-7, .ast-col-sm-8, .ast-col-sm-9, .ast-col-sm-10, .ast-col-sm-11, .ast-col-sm-12, .ast-col-md-1, .ast-col-md-2, .ast-col-md-3, .ast-col-md-4, .ast-col-md-5, .ast-col-md-6, .ast-col-md-7, .ast-col-md-8, .ast-col-md-9, .ast-col-md-10, .ast-col-md-11, .ast-col-md-12, .ast-col-lg-1, .ast-col-lg-2, .ast-col-lg-3, .ast-col-lg-4, .ast-col-lg-5, .ast-col-lg-6, .ast-col-lg-7, .ast-col-lg-8, .ast-col-lg-9, .ast-col-lg-10, .ast-col-lg-11, .ast-col-lg-12, .ast-col-xl-1, .ast-col-xl-2, .ast-col-xl-3, .ast-col-xl-4, .ast-col-xl-5, .ast-col-xl-6, .ast-col-xl-7, .ast-col-xl-8, .ast-col-xl-9, .ast-col-xl-10, .ast-col-xl-11, .ast-col-xl-12 { + position: relative; + min-height: 1px; + padding-left: 20px; + padding-right: 20px; +} + +.ast-col-xs-1, .ast-col-xs-2, .ast-col-xs-3, .ast-col-xs-4, .ast-col-xs-5, .ast-col-xs-6, .ast-col-xs-7, .ast-col-xs-8, .ast-col-xs-9, .ast-col-xs-10, .ast-col-xs-11, .ast-col-xs-12 { + float: left; +} + +.ast-col-xs-1 { + width: 8.3333333333%; +} + +.ast-col-xs-2 { + width: 16.6666666667%; +} + +.ast-col-xs-3 { + width: 25%; +} + +.ast-col-xs-4 { + width: 33.3333333333%; +} + +.ast-col-xs-5 { + width: 41.6666666667%; +} + +.ast-col-xs-6 { + width: 50%; +} + +.ast-col-xs-7 { + width: 58.3333333333%; +} + +.ast-col-xs-8 { + width: 66.6666666667%; +} + +.ast-col-xs-9 { + width: 75%; +} + +.ast-col-xs-10 { + width: 83.3333333333%; +} + +.ast-col-xs-11 { + width: 91.6666666667%; +} + +.ast-col-xs-12 { + width: 100%; +} + +.ast-col-xs-pull-0 { + right: auto; +} + +.ast-col-xs-pull-1 { + right: 8.3333333333%; +} + +.ast-col-xs-pull-2 { + right: 16.6666666667%; +} + +.ast-col-xs-pull-3 { + right: 25%; +} + +.ast-col-xs-pull-4 { + right: 33.3333333333%; +} + +.ast-col-xs-pull-5 { + right: 41.6666666667%; +} + +.ast-col-xs-pull-6 { + right: 50%; +} + +.ast-col-xs-pull-7 { + right: 58.3333333333%; +} + +.ast-col-xs-pull-8 { + right: 66.6666666667%; +} + +.ast-col-xs-pull-9 { + right: 75%; +} + +.ast-col-xs-pull-10 { + right: 83.3333333333%; +} + +.ast-col-xs-pull-11 { + right: 91.6666666667%; +} + +.ast-col-xs-pull-12 { + right: 100%; +} + +.ast-col-xs-push-0 { + left: auto; +} + +.ast-col-xs-push-1 { + left: 8.3333333333%; +} + +.ast-col-xs-push-2 { + left: 16.6666666667%; +} + +.ast-col-xs-push-3 { + left: 25%; +} + +.ast-col-xs-push-4 { + left: 33.3333333333%; +} + +.ast-col-xs-push-5 { + left: 41.6666666667%; +} + +.ast-col-xs-push-6 { + left: 50%; +} + +.ast-col-xs-push-7 { + left: 58.3333333333%; +} + +.ast-col-xs-push-8 { + left: 66.6666666667%; +} + +.ast-col-xs-push-9 { + left: 75%; +} + +.ast-col-xs-push-10 { + left: 83.3333333333%; +} + +.ast-col-xs-push-11 { + left: 91.6666666667%; +} + +.ast-col-xs-push-12 { + left: 100%; +} + +.ast-col-xs-offset-0 { + margin-left: 0%; +} + +.ast-col-xs-offset-1 { + margin-left: 8.3333333333%; +} + +.ast-col-xs-offset-2 { + margin-left: 16.6666666667%; +} + +.ast-col-xs-offset-3 { + margin-left: 25%; +} + +.ast-col-xs-offset-4 { + margin-left: 33.3333333333%; +} + +.ast-col-xs-offset-5 { + margin-left: 41.6666666667%; +} + +.ast-col-xs-offset-6 { + margin-left: 50%; +} + +.ast-col-xs-offset-7 { + margin-left: 58.3333333333%; +} + +.ast-col-xs-offset-8 { + margin-left: 66.6666666667%; +} + +.ast-col-xs-offset-9 { + margin-left: 75%; +} + +.ast-col-xs-offset-10 { + margin-left: 83.3333333333%; +} + +.ast-col-xs-offset-11 { + margin-left: 91.6666666667%; +} + +.ast-col-xs-offset-12 { + margin-left: 100%; +} + +@media (min-width: 544px) { + .ast-col-sm-1, .ast-col-sm-2, .ast-col-sm-3, .ast-col-sm-4, .ast-col-sm-5, .ast-col-sm-6, .ast-col-sm-7, .ast-col-sm-8, .ast-col-sm-9, .ast-col-sm-10, .ast-col-sm-11, .ast-col-sm-12 { + float: left; + } + .ast-col-sm-1 { + width: 8.3333333333%; + } + .ast-col-sm-2 { + width: 16.6666666667%; + } + .ast-col-sm-3 { + width: 25%; + } + .ast-col-sm-4 { + width: 33.3333333333%; + } + .ast-col-sm-5 { + width: 41.6666666667%; + } + .ast-col-sm-6 { + width: 50%; + } + .ast-col-sm-7 { + width: 58.3333333333%; + } + .ast-col-sm-8 { + width: 66.6666666667%; + } + .ast-col-sm-9 { + width: 75%; + } + .ast-col-sm-10 { + width: 83.3333333333%; + } + .ast-col-sm-11 { + width: 91.6666666667%; + } + .ast-col-sm-12 { + width: 100%; + } + .ast-col-sm-pull-0 { + right: auto; + } + .ast-col-sm-pull-1 { + right: 8.3333333333%; + } + .ast-col-sm-pull-2 { + right: 16.6666666667%; + } + .ast-col-sm-pull-3 { + right: 25%; + } + .ast-col-sm-pull-4 { + right: 33.3333333333%; + } + .ast-col-sm-pull-5 { + right: 41.6666666667%; + } + .ast-col-sm-pull-6 { + right: 50%; + } + .ast-col-sm-pull-7 { + right: 58.3333333333%; + } + .ast-col-sm-pull-8 { + right: 66.6666666667%; + } + .ast-col-sm-pull-9 { + right: 75%; + } + .ast-col-sm-pull-10 { + right: 83.3333333333%; + } + .ast-col-sm-pull-11 { + right: 91.6666666667%; + } + .ast-col-sm-pull-12 { + right: 100%; + } + .ast-col-sm-push-0 { + left: auto; + } + .ast-col-sm-push-1 { + left: 8.3333333333%; + } + .ast-col-sm-push-2 { + left: 16.6666666667%; + } + .ast-col-sm-push-3 { + left: 25%; + } + .ast-col-sm-push-4 { + left: 33.3333333333%; + } + .ast-col-sm-push-5 { + left: 41.6666666667%; + } + .ast-col-sm-push-6 { + left: 50%; + } + .ast-col-sm-push-7 { + left: 58.3333333333%; + } + .ast-col-sm-push-8 { + left: 66.6666666667%; + } + .ast-col-sm-push-9 { + left: 75%; + } + .ast-col-sm-push-10 { + left: 83.3333333333%; + } + .ast-col-sm-push-11 { + left: 91.6666666667%; + } + .ast-col-sm-push-12 { + left: 100%; + } + .ast-col-sm-offset-0 { + margin-left: 0%; + } + .ast-col-sm-offset-1 { + margin-left: 8.3333333333%; + } + .ast-col-sm-offset-2 { + margin-left: 16.6666666667%; + } + .ast-col-sm-offset-3 { + margin-left: 25%; + } + .ast-col-sm-offset-4 { + margin-left: 33.3333333333%; + } + .ast-col-sm-offset-5 { + margin-left: 41.6666666667%; + } + .ast-col-sm-offset-6 { + margin-left: 50%; + } + .ast-col-sm-offset-7 { + margin-left: 58.3333333333%; + } + .ast-col-sm-offset-8 { + margin-left: 66.6666666667%; + } + .ast-col-sm-offset-9 { + margin-left: 75%; + } + .ast-col-sm-offset-10 { + margin-left: 83.3333333333%; + } + .ast-col-sm-offset-11 { + margin-left: 91.6666666667%; + } + .ast-col-sm-offset-12 { + margin-left: 100%; + } +} + +@media (min-width: 768px) { + .ast-col-md-1, .ast-col-md-2, .ast-col-md-3, .ast-col-md-4, .ast-col-md-5, .ast-col-md-6, .ast-col-md-7, .ast-col-md-8, .ast-col-md-9, .ast-col-md-10, .ast-col-md-11, .ast-col-md-12 { + float: left; + } + .ast-col-md-1 { + width: 8.3333333333%; + } + .ast-col-md-2 { + width: 16.6666666667%; + } + .ast-col-md-3 { + width: 25%; + } + .ast-col-md-4 { + width: 33.3333333333%; + } + .ast-col-md-5 { + width: 41.6666666667%; + } + .ast-col-md-6 { + width: 50%; + } + .ast-col-md-7 { + width: 58.3333333333%; + } + .ast-col-md-8 { + width: 66.6666666667%; + } + .ast-col-md-9 { + width: 75%; + } + .ast-col-md-10 { + width: 83.3333333333%; + } + .ast-col-md-11 { + width: 91.6666666667%; + } + .ast-col-md-12 { + width: 100%; + } + .ast-col-md-pull-0 { + right: auto; + } + .ast-col-md-pull-1 { + right: 8.3333333333%; + } + .ast-col-md-pull-2 { + right: 16.6666666667%; + } + .ast-col-md-pull-3 { + right: 25%; + } + .ast-col-md-pull-4 { + right: 33.3333333333%; + } + .ast-col-md-pull-5 { + right: 41.6666666667%; + } + .ast-col-md-pull-6 { + right: 50%; + } + .ast-col-md-pull-7 { + right: 58.3333333333%; + } + .ast-col-md-pull-8 { + right: 66.6666666667%; + } + .ast-col-md-pull-9 { + right: 75%; + } + .ast-col-md-pull-10 { + right: 83.3333333333%; + } + .ast-col-md-pull-11 { + right: 91.6666666667%; + } + .ast-col-md-pull-12 { + right: 100%; + } + .ast-col-md-push-0 { + left: auto; + } + .ast-col-md-push-1 { + left: 8.3333333333%; + } + .ast-col-md-push-2 { + left: 16.6666666667%; + } + .ast-col-md-push-3 { + left: 25%; + } + .ast-col-md-push-4 { + left: 33.3333333333%; + } + .ast-col-md-push-5 { + left: 41.6666666667%; + } + .ast-col-md-push-6 { + left: 50%; + } + .ast-col-md-push-7 { + left: 58.3333333333%; + } + .ast-col-md-push-8 { + left: 66.6666666667%; + } + .ast-col-md-push-9 { + left: 75%; + } + .ast-col-md-push-10 { + left: 83.3333333333%; + } + .ast-col-md-push-11 { + left: 91.6666666667%; + } + .ast-col-md-push-12 { + left: 100%; + } + .ast-col-md-offset-0 { + margin-left: 0%; + } + .ast-col-md-offset-1 { + margin-left: 8.3333333333%; + } + .ast-col-md-offset-2 { + margin-left: 16.6666666667%; + } + .ast-col-md-offset-3 { + margin-left: 25%; + } + .ast-col-md-offset-4 { + margin-left: 33.3333333333%; + } + .ast-col-md-offset-5 { + margin-left: 41.6666666667%; + } + .ast-col-md-offset-6 { + margin-left: 50%; + } + .ast-col-md-offset-7 { + margin-left: 58.3333333333%; + } + .ast-col-md-offset-8 { + margin-left: 66.6666666667%; + } + .ast-col-md-offset-9 { + margin-left: 75%; + } + .ast-col-md-offset-10 { + margin-left: 83.3333333333%; + } + .ast-col-md-offset-11 { + margin-left: 91.6666666667%; + } + .ast-col-md-offset-12 { + margin-left: 100%; + } +} + +@media (min-width: 992px) { + .ast-col-lg-1, .ast-col-lg-2, .ast-col-lg-3, .ast-col-lg-4, .ast-col-lg-5, .ast-col-lg-6, .ast-col-lg-7, .ast-col-lg-8, .ast-col-lg-9, .ast-col-lg-10, .ast-col-lg-11, .ast-col-lg-12 { + float: left; + } + .ast-col-lg-1 { + width: 8.3333333333%; + } + .ast-col-lg-2 { + width: 16.6666666667%; + } + .ast-col-lg-3 { + width: 25%; + } + .ast-col-lg-4 { + width: 33.3333333333%; + } + .ast-col-lg-5 { + width: 41.6666666667%; + } + .ast-col-lg-6 { + width: 50%; + } + .ast-col-lg-7 { + width: 58.3333333333%; + } + .ast-col-lg-8 { + width: 66.6666666667%; + } + .ast-col-lg-9 { + width: 75%; + } + .ast-col-lg-10 { + width: 83.3333333333%; + } + .ast-col-lg-11 { + width: 91.6666666667%; + } + .ast-col-lg-12 { + width: 100%; + } + .ast-col-lg-pull-0 { + right: auto; + } + .ast-col-lg-pull-1 { + right: 8.3333333333%; + } + .ast-col-lg-pull-2 { + right: 16.6666666667%; + } + .ast-col-lg-pull-3 { + right: 25%; + } + .ast-col-lg-pull-4 { + right: 33.3333333333%; + } + .ast-col-lg-pull-5 { + right: 41.6666666667%; + } + .ast-col-lg-pull-6 { + right: 50%; + } + .ast-col-lg-pull-7 { + right: 58.3333333333%; + } + .ast-col-lg-pull-8 { + right: 66.6666666667%; + } + .ast-col-lg-pull-9 { + right: 75%; + } + .ast-col-lg-pull-10 { + right: 83.3333333333%; + } + .ast-col-lg-pull-11 { + right: 91.6666666667%; + } + .ast-col-lg-pull-12 { + right: 100%; + } + .ast-col-lg-push-0 { + left: auto; + } + .ast-col-lg-push-1 { + left: 8.3333333333%; + } + .ast-col-lg-push-2 { + left: 16.6666666667%; + } + .ast-col-lg-push-3 { + left: 25%; + } + .ast-col-lg-push-4 { + left: 33.3333333333%; + } + .ast-col-lg-push-5 { + left: 41.6666666667%; + } + .ast-col-lg-push-6 { + left: 50%; + } + .ast-col-lg-push-7 { + left: 58.3333333333%; + } + .ast-col-lg-push-8 { + left: 66.6666666667%; + } + .ast-col-lg-push-9 { + left: 75%; + } + .ast-col-lg-push-10 { + left: 83.3333333333%; + } + .ast-col-lg-push-11 { + left: 91.6666666667%; + } + .ast-col-lg-push-12 { + left: 100%; + } + .ast-col-lg-offset-0 { + margin-left: 0%; + } + .ast-col-lg-offset-1 { + margin-left: 8.3333333333%; + } + .ast-col-lg-offset-2 { + margin-left: 16.6666666667%; + } + .ast-col-lg-offset-3 { + margin-left: 25%; + } + .ast-col-lg-offset-4 { + margin-left: 33.3333333333%; + } + .ast-col-lg-offset-5 { + margin-left: 41.6666666667%; + } + .ast-col-lg-offset-6 { + margin-left: 50%; + } + .ast-col-lg-offset-7 { + margin-left: 58.3333333333%; + } + .ast-col-lg-offset-8 { + margin-left: 66.6666666667%; + } + .ast-col-lg-offset-9 { + margin-left: 75%; + } + .ast-col-lg-offset-10 { + margin-left: 83.3333333333%; + } + .ast-col-lg-offset-11 { + margin-left: 91.6666666667%; + } + .ast-col-lg-offset-12 { + margin-left: 100%; + } +} + +@media (min-width: 1200px) { + .ast-col-xl-1, .ast-col-xl-2, .ast-col-xl-3, .ast-col-xl-4, .ast-col-xl-5, .ast-col-xl-6, .ast-col-xl-7, .ast-col-xl-8, .ast-col-xl-9, .ast-col-xl-10, .ast-col-xl-11, .ast-col-xl-12 { + float: left; + } + .ast-col-xl-1 { + width: 8.3333333333%; + } + .ast-col-xl-2 { + width: 16.6666666667%; + } + .ast-col-xl-3 { + width: 25%; + } + .ast-col-xl-4 { + width: 33.3333333333%; + } + .ast-col-xl-5 { + width: 41.6666666667%; + } + .ast-col-xl-6 { + width: 50%; + } + .ast-col-xl-7 { + width: 58.3333333333%; + } + .ast-col-xl-8 { + width: 66.6666666667%; + } + .ast-col-xl-9 { + width: 75%; + } + .ast-col-xl-10 { + width: 83.3333333333%; + } + .ast-col-xl-11 { + width: 91.6666666667%; + } + .ast-col-xl-12 { + width: 100%; + } + .ast-col-xl-pull-0 { + right: auto; + } + .ast-col-xl-pull-1 { + right: 8.3333333333%; + } + .ast-col-xl-pull-2 { + right: 16.6666666667%; + } + .ast-col-xl-pull-3 { + right: 25%; + } + .ast-col-xl-pull-4 { + right: 33.3333333333%; + } + .ast-col-xl-pull-5 { + right: 41.6666666667%; + } + .ast-col-xl-pull-6 { + right: 50%; + } + .ast-col-xl-pull-7 { + right: 58.3333333333%; + } + .ast-col-xl-pull-8 { + right: 66.6666666667%; + } + .ast-col-xl-pull-9 { + right: 75%; + } + .ast-col-xl-pull-10 { + right: 83.3333333333%; + } + .ast-col-xl-pull-11 { + right: 91.6666666667%; + } + .ast-col-xl-pull-12 { + right: 100%; + } + .ast-col-xl-push-0 { + left: auto; + } + .ast-col-xl-push-1 { + left: 8.3333333333%; + } + .ast-col-xl-push-2 { + left: 16.6666666667%; + } + .ast-col-xl-push-3 { + left: 25%; + } + .ast-col-xl-push-4 { + left: 33.3333333333%; + } + .ast-col-xl-push-5 { + left: 41.6666666667%; + } + .ast-col-xl-push-6 { + left: 50%; + } + .ast-col-xl-push-7 { + left: 58.3333333333%; + } + .ast-col-xl-push-8 { + left: 66.6666666667%; + } + .ast-col-xl-push-9 { + left: 75%; + } + .ast-col-xl-push-10 { + left: 83.3333333333%; + } + .ast-col-xl-push-11 { + left: 91.6666666667%; + } + .ast-col-xl-push-12 { + left: 100%; + } + .ast-col-xl-offset-0 { + margin-left: 0%; + } + .ast-col-xl-offset-1 { + margin-left: 8.3333333333%; + } + .ast-col-xl-offset-2 { + margin-left: 16.6666666667%; + } + .ast-col-xl-offset-3 { + margin-left: 25%; + } + .ast-col-xl-offset-4 { + margin-left: 33.3333333333%; + } + .ast-col-xl-offset-5 { + margin-left: 41.6666666667%; + } + .ast-col-xl-offset-6 { + margin-left: 50%; + } + .ast-col-xl-offset-7 { + margin-left: 58.3333333333%; + } + .ast-col-xl-offset-8 { + margin-left: 66.6666666667%; + } + .ast-col-xl-offset-9 { + margin-left: 75%; + } + .ast-col-xl-offset-10 { + margin-left: 83.3333333333%; + } + .ast-col-xl-offset-11 { + margin-left: 91.6666666667%; + } + .ast-col-xl-offset-12 { + margin-left: 100%; + } +} + +/*-------------------------------------------------------------- +# Site Variables +--------------------------------------------------------------*/ +/*---------- Font Size ----------*/ +/*---------- Line Height ----------*/ +/*---------- Site Basic Structure ----------*/ +/*---------- z-index Structure ----------*/ +/*-------------------------------------------------------------- +# Mixins +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +# Typography +--------------------------------------------------------------*/ +h1, h2, h3, h4, h5, h6 { + clear: both; +} + +h1, +.entry-content h1 { + color: #808285; + font-size: 2em; + line-height: 1.2; +} + +h2, +.entry-content h2 { + color: #808285; + font-size: 1.7em; + line-height: 1.3; +} + +h3, +.entry-content h3 { + color: #808285; + font-size: 1.5em; + line-height: 1.4; +} + +h4, +.entry-content h4 { + color: #808285; + line-height: 1.5; + font-size: 1.3em; +} + +h5, +.entry-content h5 { + color: #808285; + line-height: 1.6; + font-size: 1.2em; +} + +h6, +.entry-content h6 { + color: #808285; + line-height: 1.7; + font-size: 1.1em; +} + +/*-------------------------------------------------------------- +# Elements +--------------------------------------------------------------*/ +html { + box-sizing: border-box; +} + +*, +*:before, +*:after { + /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */ + box-sizing: inherit; +} + +body { + color: #808285; + background: #ffffff; + /* Fallback for when there is no custom background color defined. */ + font-style: normal; +} + +ul, ol { + margin: 0 0 1.5em 3em; +} + +ul { + list-style: disc; +} + +ol { + list-style: decimal; +} + +li > ul, +li > ol { + margin-bottom: 0; + margin-left: 1.5em; +} + +dt { + font-weight: bold; +} + +dd { + margin: 0 1.5em 1.5em; +} + +b, +strong { + font-weight: bold; +} + +dfn, +cite, +em, +i { + font-style: italic; +} + +blockquote, +q { + quotes: "" ""; +} + +blockquote:before, blockquote:after, +q:before, +q:after { + content: ""; +} + +blockquote { + border-left: 5px solid rgba(0, 0, 0, 0.05); + padding: 20px; + font-size: 1.2em; + font-style: italic; + margin: 0 0 1.5em; + position: relative; +} + +blockquote p:last-child { + margin: 0; +} + +address { + margin: 0 0 1.5em; +} + +abbr, +acronym { + border-bottom: 1px dotted #666; + cursor: help; +} + +pre { + background: #eee; + font-family: "Courier 10 Pitch", Courier, monospace; + margin-bottom: 1.6em; + overflow: auto; + max-width: 100%; + padding: 1.6em; +} + +code, +kbd, +tt, +var { + font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; +} + +img { + height: auto; + /* Make sure images are scaled correctly. */ + max-width: 100%; + /* Adhere to container width. */ +} + +hr { + background-color: #ccc; + border: 0; + height: 1px; + margin-bottom: 1.5em; +} + +.ast-button, +.button, +button, +input, +select, +textarea { + color: #808285; + font-weight: normal; + font-size: 100%; + /* Corrects font size not being inherited in all browsers */ + margin: 0; + /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ + vertical-align: baseline; + /* Improves appearance and consistency in all browsers */ +} + +button, +input { + line-height: normal; + /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */ +} + +big { + font-size: 125%; +} + +mark, +ins { + background: transparent; + text-decoration: none; +} + +ul, ol { + margin: 0 0 1.5em 3em; +} + +ul { + list-style: disc; +} + +ol { + list-style: decimal; +} + +li > ul, +li > ol { + margin-bottom: 0; + margin-left: 1.5em; +} + +dt { + font-weight: bold; +} + +dd { + margin: 0 1.5em 1.5em; +} + +table, th, td { + border: 1px solid rgba(0, 0, 0, 0.1); +} + +table { + border-collapse: separate; + border-spacing: 0; + border-width: 1px 0 0 1px; + margin: 0 0 1.5em; + width: 100%; +} + +th { + font-weight: bold; +} + +th, td { + padding: 8px; + text-align: left; + border-width: 0 1px 1px 0; +} + +/*-------------------------------------------------------------- +# Forms +--------------------------------------------------------------*/ +button, +.ast-button, +.button, +input[type="button"], +input[type="reset"], +input[type="submit"] { + border: 1px solid; + border-color: #eaeaea; + border-radius: 2px; + background: #e6e6e6; + padding: .6em 1em .4em; + color: #fff; +} + +button:hover, button:focus, +.ast-button:hover, +.ast-button:focus, +.button:hover, +.button:focus, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="reset"]:hover, +input[type="reset"]:focus, +input[type="submit"]:hover, +input[type="submit"]:focus { + color: #fff; + border-color: #eaeaea; +} + +button:active, button:focus, +.ast-button:active, +.ast-button:focus, +.button:active, +.button:focus, +input[type="button"]:active, +input[type="button"]:focus, +input[type="reset"]:active, +input[type="reset"]:focus, +input[type="submit"]:active, +input[type="submit"]:focus { + border-color: #eaeaea; + outline: none; +} + +input[type="text"], +input[type="email"], +input[type="url"], +input[type="password"], +input[type="search"], +input[type="tel"], +textarea { + color: #666; + border: 1px solid #ccc; + border-radius: 2px; + -webkit-appearance: none; +} + +input[type="text"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +textarea:focus { + color: #111; +} + +textarea { + padding-left: 3px; + width: 100%; +} + +/*-------------------------------------------------------------- +# Navigation +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Links +--------------------------------------------------------------*/ +a { + color: royalblue; +} + +a:hover, a:focus { + color: midnightblue; +} + +a:focus { + outline: thin dotted; +} + +a:hover { + outline: 0; +} + +/*-------------------------------------------------------------- +# Accessibility +--------------------------------------------------------------*/ +/* Text meant only for screen readers. */ +.screen-reader-text { + border: 0; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; + word-wrap: normal !important; +} + +.screen-reader-text:focus { + background-color: #f1f1f1; + border-radius: 2px; + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + clip: auto !important; + color: #21759b; + display: block; + font-size: 12.25px; + font-size: 0.875rem; + height: auto; + left: 5px; + line-height: normal; + padding: 15px 23px 14px; + text-decoration: none; + top: 5px; + width: auto; + z-index: 100000; + /* Above WP toolbar. */ +} + +.alignleft { + display: inline; + float: left; + margin-right: 1.5em; +} + +.alignright { + display: inline; + float: right; + margin-left: 1.5em; +} + +.aligncenter { + clear: both; + text-align: center; + display: block; + margin-left: auto; + margin-right: auto; +} + +.clear:before, +.clear:after, +.site-header:before, +.site-header:after, +.site-content:before, +.site-content:after, +#primary:before, +#primary:after, +.site-main:before, +.site-main:after, +#secondary:before, +#secondary:after, +.sidebar-main:before, +.sidebar-main:after, +.site-footer:before, +.site-footer:after, +.ast-row:before, +.ast-row:after, +.ast-container:before, +.ast-container:after { + content: ""; + display: table; +} + +.clear:after, +.site-header:after, +.site-content:after, +#primary:after, +.site-main:after, +#secondary:after, +.sidebar-main:after, +.site-footer:after, +.ast-row:after, +.ast-container:after { + clear: both; +} + +/*-------------------------------------------------------------- +# Media +--------------------------------------------------------------*/ +.page-content .wp-smiley, +.entry-content .wp-smiley, +.comment-content .wp-smiley { + border: none; + margin-bottom: 0; + margin-top: 0; + padding: 0; +} + +/* Make sure embeds and iframes fit their containers. */ +embed, +iframe, +object { + max-width: 100%; +} + +/*-------------------------------------------------------------- +## Captions +--------------------------------------------------------------*/ +.wp-caption { + margin-bottom: 1.5em; + max-width: 100%; +} + +.wp-caption img[class*="wp-image-"] { + display: block; + margin-left: auto; + margin-right: auto; +} + +.wp-caption .wp-caption-text { + margin: 0.8075em 0; +} + +.wp-caption-text { + text-align: center; +} + +/*-------------------------------------------------------------- +## Galleries +--------------------------------------------------------------*/ +.gallery-item { + display: inline-block; + text-align: center; + vertical-align: top; + width: 100%; +} + +.gallery-columns-2 .gallery-item { + max-width: 50%; +} + +.gallery-columns-3 .gallery-item { + max-width: 33.33%; +} + +.gallery-columns-4 .gallery-item { + max-width: 25%; +} + +.gallery-columns-5 .gallery-item { + max-width: 20%; +} + +.gallery-columns-6 .gallery-item { + max-width: 16.66%; +} + +.gallery-columns-7 .gallery-item { + max-width: 14.28%; +} + +.gallery-columns-8 .gallery-item { + max-width: 12.5%; +} + +.gallery-columns-9 .gallery-item { + max-width: 11.11%; +} + +.gallery-caption { + display: block; +} + +/*-------------------------------------------------------------- +# Content +--------------------------------------------------------------*/ +/*---------- Mixins ----------*/ +/*---------- Site Variables ----------*/ +/*---------- Media Query min-width Structure ----------*/ +/*---------- Media Query max-width Structure ----------*/ +/*---------- Break-point min-width Structure ----------*/ +/*---------- Break-point max-width Structure ----------*/ +/*---------- Site Normalize ----------*/ +::selection { + color: #fff; + background: #0274be; +} + +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +body:not(.logged-in) { + position: relative; +} + +#page { + position: relative; +} + +a, +a:focus { + text-decoration: none; +} + +a, +.site-header a *, +.site-footer a *, +.secondary a * { + transition: all 0.2s linear; +} + +.capitalize { + text-transform: uppercase; +} + +img { + vertical-align: middle; +} + +.entry-content h1, +.entry-content h2, +.entry-content h3, +.entry-content h4, +.entry-content h5, +.entry-content h6 { + margin-bottom: 20px; +} + +p { + margin-bottom: 1.75em; +} + +blockquote { + margin: 1.5em 1em 1.5em 3em; + padding: 1.2em; + font-size: 1.1em; + line-height: inherit; + position: relative; +} + +.ast-button, +.button, +input[type="button"], +input[type="submit"] { + border-radius: 0; + padding: 18px 30px; + border: 0; + box-shadow: none; + text-shadow: none; +} + +.ast-button:hover, +.button:hover, +input[type="button"]:hover, +input[type="submit"]:hover { + box-shadow: none; +} + +.ast-button:active, .ast-button:focus, +.button:active, +.button:focus, +input[type="button"]:active, +input[type="button"]:focus, +input[type="submit"]:active, +input[type="submit"]:focus { + box-shadow: none; +} + +.site-title { + font-weight: normal; +} + +.site-title, +.site-description { + margin-bottom: 0; +} + +.site-title a, +.site-title:hover a, +.site-title:focus a, +.site-description a, +.site-description:hover a, +.site-description:focus a { + transition: all 0.2s linear; +} + +.site-title a, +.site-title a:focus, +.site-title a:hover, +.site-title a:visited { + color: #222; +} + +.site-description a, +.site-description a:focus, +.site-description a:hover, +.site-description a:visited { + color: #999; +} + +.search-form .search-field { + outline: none; +} + +.ast-search-menu-icon { + position: relative; + z-index: 3; +} + +.ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon { + margin-right: 1em; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .main-header-bar-navigation .ast-search-icon { + display: none; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-field, +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon.ast-inline-search .search-field { + width: 100%; + padding-right: 5.5em; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-submit { + display: block; + position: absolute; + height: 100%; + top: 0; + right: 0; + padding: 0 1em; + border-radius: 0; +} + +.ast-header-break-point.ast-header-custom-item-inside .main-header-bar .ast-search-menu-icon .search-form { + padding: 0; + display: block; + overflow: hidden; +} + +/* must have higher specificity than alternative color schemes inline styles */ +.site .skip-link { + background-color: #f1f1f1; + box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2); + color: #21759b; + display: block; + font-family: Montserrat, "Helvetica Neue", sans-serif; + font-size: 14px; + font-weight: 700; + left: -9999em; + outline: none; + padding: 15px 23px 14px; + text-decoration: none; + text-transform: none; + top: -9999em; +} + +.site .skip-link:focus { + clip: auto; + height: auto; + left: 6px; + top: 7px; + width: auto; + z-index: 100000; + outline: thin dotted; +} + +.logged-in .site .skip-link { + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2); + font-family: "Open Sans", sans-serif; +} + +/* Default Astra Icons CSS */ +.astra-icon-down_arrow::after { + content: "\e900"; + font-family: Astra; +} + +.astra-icon-close::after { + content: "\e5cd"; + font-family: Astra; +} + +.astra-icon-drag_handle::after { + content: "\e25d"; + font-family: Astra; +} + +.astra-icon-format_align_justify::after { + content: "\e235"; + font-family: Astra; +} + +.astra-icon-menu::after { + content: "\e5d2"; + font-family: Astra; +} + +.astra-icon-reorder::after { + content: "\e8fe"; + font-family: Astra; +} + +.astra-icon-search::after { + content: "\e8b6"; + font-family: Astra; +} + +.astra-icon-zoom_in::after { + content: "\e56b"; + font-family: Astra; +} + +.astra-icon-check-circle::after { + content: "\e901"; + font-family: Astra; +} + +.astra-icon-shopping-cart::after { + content: "\f07a"; + font-family: Astra; +} + +.astra-icon-shopping-bag::after { + content: "\f290"; + font-family: Astra; +} + +.astra-icon-shopping-basket::after { + content: "\f291"; + font-family: Astra; +} + +.astra-icon-circle-o::after { + content: "\e903"; + font-family: Astra; +} + +.astra-icon-certificate::after { + content: "\e902"; + font-family: Astra; +} + +select, +input { + line-height: 1; +} + +body, +button, +input[type="button"], +input[type="submit"], +textarea, +.ast-button, +.ast-custom-button { + line-height: 1.85714285714286; +} + +.site-title a { + line-height: 1.2; +} + +.site-header .site-description { + line-height: 1.5; +} + +.ast-single-post .entry-title, +.ast-single-post .entry-title a { + line-height: 1.2; +} + +.entry-title, +.entry-title a { + font-weight: normal; +} + +/*---------- Elements ----------*/ +/** + * 2 - Social Follow + */ +.ast-social-icons { + list-style-type: none; + margin: 0; +} + +.ast-social-icons li { + display: inline-block; + padding-right: 15px; +} + +.ast-social-icons li:last-child { + padding-right: 0; +} + +.ast-social-icons a { + display: block; +} + +.ast-social-icons i { + font-style: normal; + font-family: fontawesome; + font-weight: normal; +} + +.ast-social-icons i:before { + font-weight: normal; +} + +/*---------- Media ----------*/ +.single .entry-content .gallery { + margin-left: -10px; + margin-right: -10px; +} + +.gallery-caption { + color: black; + padding: 10px; + border-radius: 0 0 2px 2px; + border: 1px solid #eaeaea; + border-top: none; + font-size: 0.9em; +} + +.gallery-icon { + border-bottom: 0; + border-radius: 2px 2px 0 0; + border: 1px solid #eaeaea; + overflow: hidden; +} + +.gallery-item { + margin: 0; + padding: 10px; + border-radius: 2px; +} + +.gallery-item:last-child { + margin-bottom: 2em; +} + +.elementor-image-gallery .gallery-icon { + border: none; +} + +/* Astra Respnosive oEmbed Video container */ +.ast-oembed-container { + position: relative; + padding-top: 56.25%; + height: 0; + overflow: hidden; + max-width: 100%; + height: auto; +} + +.ast-oembed-container iframe, .ast-oembed-container object, .ast-oembed-container embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +body .ast-oembed-container * { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/*---------- Basic Layout ----------*/ +.ast-hidden { + display: none !important; +} + +body { + background-color: #ffffff; +} + +#page { + display: block; +} + +#primary, +#secondary { + display: block; + position: relative; + float: left; + width: 100%; +} + +#primary { + margin: 4em 0; +} + +#secondary { + margin: 4em 0 2.5em; + word-break: break-word; + line-height: 2; +} + +#secondary li { + margin-bottom: 0.25em; +} + +#secondary li:last-child { + margin-bottom: 0; +} + +.ast-separate-container { + background-color: #f5f5f5; +} + +.ast-separate-container #primary { + padding: 4em 0; + margin: 0; + border: 0; +} + +.ast-separate-container .site-main > .ast-row { + margin-left: 0; + margin-right: 0; +} + +.ast-separate-container .ast-article-post, +.ast-separate-container .ast-article-single { + background-color: #fff; + border-bottom: 1px solid #eeeeee; + margin: 0; + padding: 5.34em 6.67em; +} + +.ast-separate-container .blog-layout-1 { + padding: 0; + /*background-color: $color-background-content;*/ + border-bottom: 0; +} + +.ast-separate-container .ast-article-single { + border-bottom: 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-article-post, + .ast-separate-container .ast-article-single { + margin: 0; + padding: 3.34em 2.4em; + } +} + +.ast-page-builder-template .hentry { + margin: 0; +} + +.ast-page-builder-template .site-content > .ast-container { + max-width: 100%; + padding: 0; +} + +.ast-page-builder-template .site-content #primary { + padding: 0; + margin: 0; +} + +.ast-page-builder-template .no-results { + text-align: center; + margin: 4em auto; +} + +.ast-page-builder-template .ast-pagination { + padding: 2em; +} + +.ast-page-builder-template .entry-header { + margin-top: 4em; + margin-left: auto; + margin-right: auto; + padding-left: 20px; + padding-right: 20px; +} + +.ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail { + margin-top: 0; +} + +.ast-page-builder-template .entry-header.ast-header-without-markup { + margin-top: 0; + margin-bottom: 0; +} + +.ast-page-builder-template .entry-header.ast-no-title.ast-no-meta { + margin-bottom: 0; +} + +.ast-page-builder-template.ast-left-sidebar #secondary { + padding-left: 20px; +} + +.ast-page-builder-template.ast-right-sidebar #secondary { + padding-right: 20px; +} + +.ast-page-builder-template.single .post-navigation { + padding-bottom: 2em; +} + +.ast-page-builder-template .ast-archive-description { + margin-top: 4em; + margin-left: auto; + margin-right: auto; + padding-left: 20px; + padding-right: 20px; +} + +@media (min-width: 993px) { + .ast-separate-container.ast-right-sidebar #primary, + .ast-separate-container.ast-left-sidebar #primary, + .ast-separate-container #primary { + margin: 4em 0; + padding: 0; + } + .ast-right-sidebar #primary { + padding-right: 60px; + } + .ast-right-sidebar #secondary { + padding-left: 60px; + } + .ast-left-sidebar #primary { + padding-left: 60px; + } + .ast-left-sidebar #secondary { + padding-right: 60px; + } +} + +@media (max-width: 992px) { + .ast-separate-container.ast-right-sidebar #primary, + .ast-separate-container.ast-left-sidebar #primary, + .ast-separate-container #primary { + padding-left: 0; + padding-right: 0; + } + .ast-right-sidebar #primary { + padding-right: 30px; + } + .ast-right-sidebar #secondary { + padding-left: 30px; + } + .ast-left-sidebar #primary { + padding-left: 30px; + } + .ast-left-sidebar #secondary { + padding-right: 30px; + } +} + +/*---------- Navigation ----------*/ +/** + * Navigations + * + * @import + * 1 - Primary Menus + * 2 - Secondary Menus + * 3 - Header Top Menus + * + * Contents + * 1 - Toggle Button + * +*/ +/** + * @import + */ +/* 1 - Primary Menus */ +.astra-search-icon::before { + content: "\e8b6"; + font-family: 'Astra'; + font-style: normal; + font-weight: normal; + text-decoration: inherit; + text-align: center; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ast-search-icon .astra-search-icon { + font-size: 1.3em; +} + +.main-navigation { + -js-display: inline-flex; + display: inline-flex; + height: 100%; +} + +.main-navigation ul { + list-style: none; + margin: 0; + padding-left: 0; + position: relative; +} + +.main-header-menu .menu-link, +.main-header-menu > a { + text-decoration: none; + padding: 0 1em; + display: inline-block; + transition: all 0.2s linear; +} + +.main-header-menu .menu-item { + position: relative; +} + +.main-header-menu .menu-item:hover > .sub-menu, +.main-header-menu .menu-item.focus > .sub-menu { + right: auto; + left: 0; +} + +.main-header-menu .ast-left-align-sub-menu:hover > .sub-menu, +.main-header-menu .ast-left-align-sub-menu.focus > .sub-menu { + right: 0; + left: auto; +} + +@media (min-width: 769px) { + .main-header-menu .ast-sub-menu-goes-outside:hover > .sub-menu, + .main-header-menu .ast-sub-menu-goes-outside.focus > .sub-menu { + left: -100%; + } + .main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item:hover > .sub-menu, + .main-header-menu .ast-left-align-sub-menu .sub-menu .menu-item.focus > .sub-menu { + left: -100%; + } +} + +.main-header-menu .sub-menu { + width: 240px; + background: #ffffff; + left: -999em; + position: absolute; + top: 100%; + z-index: 99999; +} + +@media (min-width: 769px) { + .main-header-menu .sub-menu .menu-item:hover > .sub-menu, + .main-header-menu .sub-menu .menu-item.focus > .sub-menu { + left: 100%; + right: auto; + } + .main-header-menu .sub-menu .ast-left-align-sub-menu:hover > .sub-menu, + .main-header-menu .sub-menu .ast-left-align-sub-menu.focus > .sub-menu, + .main-header-menu .sub-menu .ast-left-align-sub-menu:hover * .sub-menu, + .main-header-menu .sub-menu .ast-left-align-sub-menu:focus * .sub-menu { + left: -100%; + } + .main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside:hover > .sub-menu, + .main-header-menu .sub-menu .main-header-menu .ast-sub-menu-goes-outside.focus > .sub-menu { + left: -100%; + } +} + +.main-header-menu .sub-menu .menu-link { + padding: 0.9em 1em; + display: block; + word-wrap: break-word; +} + +.main-header-menu .sub-menu .menu-item.menu-item-has-children > .menu-link:after { + position: absolute; + right: 1em; + top: 50%; + transform: translate(0, -50%) rotate(270deg); +} + +.main-header-menu .sub-menu .sub-menu { + top: 0px; +} + +.submenu-with-border .sub-menu { + border-width: 1px; + border-style: solid; +} + +.submenu-with-border .sub-menu .menu-link { + border-width: 0 0 1px; + border-style: solid; +} + +.submenu-with-border .sub-menu .sub-menu { + top: -1px; +} + +/* Remove the last anchor border for desktop devices */ +.ast-desktop .submenu-with-border .sub-menu > .menu-item:last-child > .menu-link { + border-bottom-width: 0; +} + +.ast-header-break-point .main-navigation { + padding-left: 0; +} + +.ast-header-break-point .main-navigation ul .menu-item .menu-link { + padding: 0 20px; + display: inline-block; + width: 100%; + border-bottom-width: 1px; + border-style: solid; + border-color: #eaeaea; +} + +.ast-header-break-point .main-navigation ul .button-custom-menu-item .menu-link { + padding: 0 20px; + display: inline-block; + width: 100%; + border-bottom-width: 1px; + border-style: solid; + border-color: #eaeaea; +} + +.ast-header-break-point .main-navigation ul.sub-menu .menu-item .menu-link:before { + content: "\e900"; + font-family: 'Astra'; + font-size: .65em; + text-decoration: inherit; + display: inline-block; + transform: translate(0, -2px) rotateZ(270deg); + margin-right: 5px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-link { + padding-left: 30px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-link { + padding-left: 40px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-link { + padding-left: 50px; +} + +.ast-header-break-point .main-navigation .sub-menu .menu-item .menu-item .menu-item .menu-item .menu-link { + padding-left: 60px; +} + +.ast-header-break-point .ast-header-custom-item, +.ast-header-break-point .main-header-menu { + background-color: #f9f9f9; +} + +.ast-header-break-point .main-header-menu .sub-menu { + background-color: #f9f9f9; + position: static; + opacity: 1; + visibility: visible; + border: 0; + width: auto; +} + +.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu:hover > .sub-menu, +.ast-header-break-point .main-header-menu .sub-menu .ast-left-align-sub-menu.focus > .sub-menu { + left: 0; +} + +.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside:hover > .sub-menu, +.ast-header-break-point .main-header-menu .ast-sub-menu-goes-outside.focus > .sub-menu { + left: 0; +} + +.ast-header-break-point .submenu-with-border .sub-menu { + border: 0; +} + +/** + * Contents + */ +.ast-mobile-menu-buttons { + display: none; +} + +/* Toggle Button */ +.ast-button-wrap { + display: inline-block; +} + +.ast-button-wrap button { + box-shadow: none; + border: none; +} + +.ast-button-wrap .menu-toggle { + padding: 0; + width: 2.2em; + height: 2.1em; + font-size: 1.5em; + font-weight: normal; + border-radius: 2px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + border-radius: 2px; + vertical-align: middle; + line-height: 1.85714285714286; +} + +.ast-button-wrap .menu-toggle.main-header-menu-toggle { + padding: 0 .5em; + width: auto; + text-align: center; +} + +.ast-button-wrap .menu-toggle.main-header-menu-toggle .mobile-menu { + font-size: 15px; + font-size: 1rem; + font-weight: 600; +} + +.ast-button-wrap .menu-toggle .menu-toggle-icon { + font-style: normal; + display: inline-block; + vertical-align: middle; + line-height: 2.05; +} + +.ast-button-wrap .menu-toggle .menu-toggle-icon:before { + content: "\e5d2"; + font-family: 'Astra'; + text-decoration: inherit; +} + +.ast-button-wrap .menu-toggle.toggled .menu-toggle-icon:before { + content: "\e5cd"; +} + +.ast-button-wrap .menu-toggle .mobile-menu-wrap { + display: inline-block; +} + +.ast-button-wrap .menu-toggle:focus { + outline: thin dotted; +} + +.main-header-bar-navigation { + flex: 1; +} + +.header-main-layout-1 .ast-main-header-bar-alignment { + margin-left: auto; +} + +.header-main-layout-3 .ast-main-header-bar-alignment { + margin-right: auto; +} + +#site-navigation { + height: 100%; +} + +/* Responsive Screen */ +.ast-header-break-point .user-select { + clear: both; +} + +.ast-header-break-point .ast-mobile-menu-buttons { + display: block; + align-self: center; +} + +.ast-header-break-point .main-header-bar-navigation { + flex: auto; +} + +.ast-header-break-point .ast-main-header-bar-alignment { + display: block; + width: 100%; + flex: auto; + order: 4; +} + +/** + * Post/Page Navigation + */ +.site-main .comment-navigation, .site-main +.posts-navigation, .site-main +.post-navigation { + margin: 0 0 1.5em; + overflow: hidden; +} + +.comment-navigation .nav-previous, +.comment-navigation .nav-next, +.posts-navigation .nav-previous, +.posts-navigation .nav-next, +.post-navigation .nav-previous, +.post-navigation .nav-next { + width: 50%; + display: inline-block; +} + +.comment-navigation .nav-next, +.posts-navigation .nav-next, +.post-navigation .nav-next { + text-align: right; +} + +/*---------- Primary ----------*/ +.sticky { + display: block; +} + +.hentry { + margin: 0 0 1.5em; +} + +.byline, +.updated:not(.published) { + display: none; +} + +.single .byline, +.group-blog .byline { + display: inline; +} + +.page-links { + clear: both; + margin-top: 1em; +} + +.page-links a { + display: inline-block; +} + +.page-links a .page-link { + border-color: #eaeaea; + background: transparent; +} + +.page-links .page-link { + padding: 0; + margin: 0 0 .3em .3em; + border: 2px solid #eaeaea; + color: #000; + background: transparent; + font-size: 0.8em; + width: 2.5em; + height: 2.5em; + line-height: calc( 2.5em - 4px); + display: inline-block; + text-align: center; + transition: all 0.2s linear; +} + +.page-links .page-link:hover, .page-links .page-link:focus { + color: #000; +} + +@media (max-width: 768px) { + .page-links .page-link { + margin-bottom: 6px; + } +} + +.page-content > :last-child, +.entry-content > :last-child, +.entry-summary > :last-child { + margin-bottom: 0; +} + +.comment-content a { + word-wrap: break-word; +} + +.bypostauthor { + display: block; +} + +/* .alignwide & .alignfull CSS compatibility */ +.ast-no-sidebar { + /* Boxed & Content Boxed container alignment support */ +} + +.ast-no-sidebar .entry-content { + /* Alignment while using the column block */ +} + +.ast-no-sidebar .entry-content .alignfull { + margin-left: calc(-50vw + 50%); + margin-right: calc(-50vw + 50%); + max-width: 100vw; + width: 100vw; +} + +.ast-no-sidebar .entry-content .alignfull .alignfull, +.ast-no-sidebar .entry-content .alignfull .alignwide { + width: 100%; + margin-left: auto; + margin-right: auto; +} + +.ast-no-sidebar .entry-content .alignwide { + margin-left: -100px; + margin-right: -100px; + max-width: unset; + width: unset; +} + +.ast-no-sidebar .entry-content .alignwide .alignfull, +.ast-no-sidebar .entry-content .alignwide .alignwide { + width: 100%; + margin-left: auto; + margin-right: auto; +} + +.ast-no-sidebar .entry-content .wp-block-column .alignfull, +.ast-no-sidebar .entry-content .wp-block-column .alignwide { + margin-left: auto; + margin-right: auto; + width: 100%; +} + +.ast-no-sidebar.ast-separate-container .entry-content { + /* Alignment while using the column block */ +} + +.ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-left: -6.67em; + margin-right: -6.67em; + width: auto; +} + +@media (max-width: 1200px) { + .ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-left: -2.4em; + margin-right: -2.4em; + } +} + +@media (max-width: 768px) { + .ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-left: -2.14em; + margin-right: -2.14em; + } +} + +@media (max-width: 544px) { + .ast-no-sidebar.ast-separate-container .entry-content .alignfull { + margin-left: -1em; + margin-right: -1em; + } +} + +.ast-no-sidebar.ast-separate-container .entry-content .alignwide { + margin-left: -20px; + margin-right: -20px; +} + +.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignfull, +.ast-no-sidebar.ast-separate-container .entry-content .wp-block-column .alignwide { + margin-left: auto; + margin-right: auto; + width: 100%; +} + +.wp-block-gallery, +.blocks-gallery-grid { + margin: 0; +} + +.wp-block-separator { + max-width: 100px; +} + +.wp-block-separator.is-style-wide { + max-width: none; +} + +.entry-content .has-2-columns .wp-block-column:first-child { + padding-right: 10px; +} + +.entry-content .has-2-columns .wp-block-column:last-child { + padding-left: 10px; +} + +@media (max-width: 782px) { + .entry-content .wp-block-columns .wp-block-column { + flex-basis: 100%; + } + .entry-content .has-2-columns .wp-block-column:first-child { + padding-right: 0; + } + .entry-content .has-2-columns .wp-block-column:last-child { + padding-left: 0; + } +} + +body { + overflow-x: hidden; +} + +body .entry-content .wp-block-latest-posts { + margin-left: 0; +} + +body .entry-content .wp-block-latest-posts li { + list-style: none; +} + +.ast-no-sidebar .ast-container .entry-content .wp-block-latest-posts { + margin-left: 0; +} + +.ast-header-break-point .entry-content .alignwide { + margin-left: auto; + margin-right: auto; +} + +.entry-content .blocks-gallery-item img { + margin-bottom: auto; +} + +.wp-block-pullquote { + border-top: 4px solid #555d66; + border-bottom: 4px solid #555d66; + color: #40464d; +} + +.ast-page-builder-template.ast-no-sidebar .entry-content .alignwide { + margin-left: 0; + margin-right: 0; +} + +/*---------- Secondary ----------*/ +.widget-title { + font-weight: normal; + margin-bottom: 1em; + line-height: 1.5; +} + +.widget { + margin: 0 0 2.8em 0; +} + +.widget:last-child { + margin-bottom: 0; +} + +.widget select { + max-width: 100%; +} + +.widget ul { + margin: 0; + list-style-type: none; +} + +.widget_nav_menu ul ul.sub-menu { + margin-top: 0.25em; +} + +.widget_nav_menu ul ul.sub-menu li { + padding-left: 20px; +} + +.widget_nav_menu ul ul.sub-menu a:after { + left: -20px; +} + +.widget_nav_menu ul ul.sub-menu ul a:after { + left: -40px; +} + +.widget_nav_menu ul ul.sub-menu ul ul a:after { + left: -60px; +} + +.widget_nav_menu li { + transition: all 0.2s linear; +} + +/* Search widget. */ +.widget_search .search-form { + position: relative; + padding: 0; + background: initial; + color: inherit; +} + +.widget_search .search-form:after { + font-family: "Astra"; + font-size: 1.2em; + font-weight: normal; + content: "\e8b6"; + position: absolute; + top: 50%; + right: 15px; + transform: translate(0, -50%); +} + +.widget_search .search-form > label { + position: relative; +} + +.widget_search .search-form input[type="submit"], +.widget_search .search-form input[type="submit"]:hover, +.widget_search .search-form input[type="submit"]:focus { + padding: 13px 20px; + border-radius: 2px; + border: none; + top: 0px; + right: 0px; + position: absolute; + color: transparent; + background: transparent; + max-width: 45px; + z-index: 2; +} + +.widget_search .search-form .search-field { + background: #fafafa; + border-width: 1px; + border-color: #eaeaea; + border-radius: 2px; +} + +.widget_search .search-field, +.widget_search .search-field:focus { + width: 100%; + padding: 16px 45px 16px 15px; +} + +/* Widget - Archive */ +/* Widget - Categories */ +.widget_pages ul.children, +.widget_archive ul.children, +.widget_categories ul.children { + position: relative; + margin-top: 5px; + width: 100%; +} + +.widget_pages ul.children li, +.widget_archive ul.children li, +.widget_categories ul.children li { + padding-left: 20px; +} + +.widget_pages li ul.children a:after, +.widget_archive li ul.children a:after, +.widget_categories li ul.children a:after { + left: -20px; +} + +.widget_pages li ul.children ul a:after, +.widget_archive li ul.children ul a:after, +.widget_categories li ul.children ul a:after { + left: -40px; +} + +/* Tag Cloud */ +.widget_tag_cloud .tagcloud { + margin-top: 10px; + display: inline-block; +} + +.widget_tag_cloud .tagcloud a { + border: 1px solid #e2e2e2; + padding: 0.5em 0.9em; + display: inline-block; + margin-bottom: 4px; + font-size: 14px; + margin-right: 4px; + line-height: 1.5; + transition: all 0.2s linear; +} + +/* Calender */ +.widget_calendar table, +.widget_calendar th, +.widget_calendar td { + padding: 0; + text-align: center; +} + +.widget_calendar table, +.widget_calendar th { + border: none; +} + +.widget_calendar td { + border-right: none; + border-left: none; +} + +.widget_calendar caption { + line-height: 2.7em; +} + +.widget_calendar thead { + line-height: 2.5em; +} + +.widget_calendar thead a { + color: #0274be; + font-size: 1rem; + vertical-align: middle; +} + +.widget_calendar thead td { + vertical-align: middle; + font-weight: bold; +} + +.widget_calendar thead > tr > th { + line-height: 2.5em; + border-bottom: 2px solid #eaeaea; + border-top: 2px solid #eaeaea; +} + +.widget_calendar tbody { + line-height: 2.10em; + text-align: center; +} + +.widget_calendar tbody > tr > td { + width: 14.2857%; +} + +.widget_calendar tbody > tr:first-child > td { + padding-top: 3px; +} + +.widget_calendar #today { + background: #0274be; +} + +.ast-separate-container.ast-two-container #secondary .widget { + background-color: #fff; + padding: 2em; + margin-bottom: 2em; +} + +/*---------- Builder ----------*/ +/** + * AST HF Builder - Grid related CSS. + */ +.ast-builder-grid-row { + display: grid; + grid-template-columns: auto auto; + align-items: center; + grid-column-gap: 20px; +} + +.ast-builder-footer-grid-columns { + grid-column-gap: 50px; +} + +.ast-builder-grid-row.ast-grid-center-col-layout { + grid-template-columns: 1fr auto 1fr; +} + +.ast-builder-grid-row-6-equal .ast-builder-grid-row { + grid-template-columns: repeat(6, 1fr); +} + +.ast-builder-grid-row-5-equal .ast-builder-grid-row { + grid-template-columns: repeat(5, 1fr); +} + +.ast-builder-grid-row-4-equal .ast-builder-grid-row { + grid-template-columns: repeat(4, 1fr); +} + +.ast-builder-grid-row-4-lheavy .ast-builder-grid-row { + grid-template-columns: 2fr 1fr 1fr 1fr; +} + +.ast-builder-grid-row-4-rheavy .ast-builder-grid-row { + grid-template-columns: 1fr 1fr 1fr 2fr; +} + +.ast-builder-grid-row-3-equal .ast-builder-grid-row { + grid-template-columns: repeat(3, 1fr); +} + +.ast-builder-grid-row-3-lheavy .ast-builder-grid-row { + grid-template-columns: 2fr 1fr 1fr; +} + +.ast-builder-grid-row-3-rheavy .ast-builder-grid-row { + grid-template-columns: 1fr 1fr 2fr; +} + +.ast-builder-grid-row-3-cheavy .ast-builder-grid-row { + grid-template-columns: 1fr 2fr 1fr; +} + +.ast-builder-grid-row-3-cwide .ast-builder-grid-row { + grid-template-columns: 1fr 3fr 1fr; +} + +.ast-builder-grid-row-2-equal .ast-builder-grid-row { + grid-template-columns: repeat(2, 1fr); +} + +.ast-builder-grid-row-2-lheavy .ast-builder-grid-row { + grid-template-columns: 2fr 1fr; +} + +.ast-builder-grid-row-2-rheavy .ast-builder-grid-row { + grid-template-columns: 1fr 2fr; +} + +.ast-builder-grid-row-2-full .ast-builder-grid-row { + grid-template-columns: 2fr; +} + +.ast-builder-grid-row-full .ast-builder-grid-row { + grid-template-columns: 1fr; +} + +.ast-builder-layout-element { + align-items: center; + -js-display: flex; + display: flex; + height: 100%; +} + +.ast-builder-layout-element .ast-footer-social-wrap .ast-builder-social-element:first-child { + margin-left: 0; +} + +.ast-builder-layout-element .ast-footer-social-wrap .ast-builder-social-element:last-child { + margin-right: 0; +} + +.ast-builder-grid-row.ast-grid-center-col-layout-only { + -js-display: flex; + display: flex; + height: 100%; + justify-content: center; +} + +.ast-builder-grid-row.ast-grid-center-col-layout-only .ast-grid-section-center { + flex-grow: 1; +} + +.site-header-section { + -js-display: flex; + display: flex; + height: 100%; + min-height: 0; + align-items: center; +} + +.site-header-section .ast-main-header-bar-alignment { + height: 100%; +} + +.site-header-section > * { + padding: 0 10px; +} + +.site-header-section > div:first-child { + padding-left: 0; +} + +.site-header-section > div:last-child { + padding-right: 0; +} + +.site-header-section .ast-builder-menu { + -js-display: flex; + display: flex; + align-items: center; +} + +.ast-builder-layout-element.ast-header-search { + height: auto; +} + +.ast-grid-right-center-section { + justify-content: flex-start; + flex-grow: 1; +} + +.ast-grid-right-section { + justify-content: flex-end; +} + +.ast-grid-right-section .ast-site-identity > :first-child { + text-align: right; +} + +.ast-grid-right-section .ast-grid-right-center-section .ast-site-identity > :first-child { + text-align: left; +} + +.ast-grid-left-center-section { + justify-content: flex-end; + flex-grow: 1; +} + +/** + * AST HF Builder - Widgets related CSS. + * Text/HTML Widget. + */ +.ast-builder-html-element img.alignnone { + display: inline-block; +} + +.ast-builder-html-element p:first-child { + margin-top: 0; +} + +.ast-builder-html-element p:last-child { + margin-bottom: 0; +} + +/** + * AST HF Builder - Logo related CSS. + * Align center section's Site title & Tagline center align. + */ +.ast-logo-title-inline .ast-site-identity { + padding: 1em 0; + -js-display: inline-flex; + display: inline-flex; + vertical-align: middle; + align-items: center; +} + +.ast-logo-title-inline .site-logo-img { + padding-right: 1em; +} + +.ast-grid-section-center { + justify-content: center; +} + +.ast-grid-section-center .ast-site-identity > :first-child { + text-align: center; +} + +.header-main-layout-2 .site-header-section-left .ast-site-identity { + text-align: left; +} + +/** + * AST HF Builder - Widgets related CSS. + * Social Widget. + */ +.ast-builder-social-element { + -js-display: inline-flex; + display: inline-flex; + line-height: 1; + color: #3a3a3a; + background: transparent; + vertical-align: middle; + transition: all 0.01s; + margin-left: 6px; + margin-right: 6px; + justify-content: center; + align-items: center; +} + +.ast-builder-social-element:hover { + color: #0274be; +} + +.ast-builder-social-element .social-item-label { + padding-left: 6px; +} + +.ahfb-svg-iconset { + -js-display: inline-flex; + display: inline-flex; + align-self: center; +} + +.ahfb-svg-iconset svg { + width: 17px; + height: 17px; + transition: none; + -js-display: flex; + display: flex; +} + +.ahfb-svg-iconset svg > * { + transition: none; +} + +.social-show-label-true .ast-builder-social-element { + width: auto; + padding: 0 0.4em; +} + +.ast-header-social-wrap .ast-builder-social-element:first-child { + margin-left: 0; +} + +.ast-header-social-wrap .ast-builder-social-element:last-child { + margin-right: 0; +} + +/** + * AST HF Builder - Widgets related CSS. + * Button. + */ +[data-section*="section-hb-button-"] .menu-link, +[data-section*="section-fb-button-"] .menu-link { + display: none; +} + +.ast-footer-html-inner p { + margin-bottom: 0; +} + +.ast-builder-grid-row-container { + display: grid; + align-content: center; +} + +/** + * AST HF Builder - Widgets related CSS. + * Header Nav and Submenu compatibility CSS. + */ +.site-header-focus-item .main-header-bar-navigation .menu-item-has-children > .menu-link:after { + content: "\e900"; + display: inline-block; + font-family: 'Astra'; + font-size: 9px; + font-size: .6rem; + font-weight: bold; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + margin-left: 10px; + line-height: normal; +} + +.ast-nav-menu .sub-menu { + line-height: 1.45; +} + +.ast-builder-menu .main-navigation { + padding: 0; +} + +.ast-builder-menu .main-navigation > ul { + align-self: center; +} + +/** + * Astra HF Builder - Footer Components Compatibility CSS. + */ +.site-footer-focus-item { + width: 100%; +} + +.ast-footer-copyright { + width: 100%; +} + +.ast-footer-social-wrap { + width: 100%; +} + +.footer-nav-wrap .astra-footer-vertical-menu { + display: grid; +} + +#astra-footer-menu { + margin: 0; + list-style: none; + background: inherit; +} + +#astra-footer-menu > ul { + margin: 0; + list-style: none; + background: inherit; +} + +/** + * AST HF Builder - Responsive CSS. + * For desktop view. + */ +#ast-mobile-header { + display: none; +} + +.ast-header-break-point #ast-desktop-header { + display: none; +} + +.ast-header-break-point #ast-mobile-header { + display: block; +} + +.ast-header-break-point .main-header-bar-navigation { + line-height: 3; +} + +.ast-header-break-point .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle { + display: inline-block; + position: absolute; + font-size: inherit; + top: 0px; + right: 20px; + cursor: pointer; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + padding: 0 0.907em; + font-weight: normal; + line-height: inherit; + transition: all .2s; +} + +.ast-header-break-point .main-header-bar-navigation .menu-item-has-children .sub-menu { + display: none; +} + +.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link, +.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link, +.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item .menu-link { + border: none; +} + +.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .inline-on-mobile .menu-item-has-children > .ast-menu-toggle::before { + font-size: .6rem; +} + +.ast-header-break-point .ast-mobile-header-wrap .ast-above-header-wrap .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-main-header-wrap .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before, +.ast-header-break-point .ast-mobile-header-wrap .ast-below-header-wrap .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before { + transform: rotateX(180deg); +} + +.ast-header-break-point .ast-mobile-header-wrap .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before { + font-weight: bold; + content: "\e900"; + font-family: 'Astra'; + text-decoration: inherit; + display: inline-block; +} + +.ast-header-break-point .ast-nav-menu .sub-menu { + line-height: 3; +} + +.site-footer-section { + justify-content: center; +} + +.site-footer-section > * { + margin-bottom: 10px; +} + +.site-footer-section > *:last-child { + margin-bottom: 0; +} + +.site-primary-footer-wrap { + padding-top: 45px; + padding-bottom: 45px; +} + +.site-above-footer-wrap, +.site-below-footer-wrap { + padding-top: 20px; + padding-bottom: 20px; +} + +/* Mobile Off-canvas CSS */ +[data-section="astra_customizer_mobile_header_button"] .menu-link { + display: none; +} + +.ast-mobile-popup-drawer { + position: fixed; + top: 0; + bottom: 0; + left: -99999rem; + right: 99999rem; + transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s; + opacity: 0; +} + +.ast-mobile-popup-drawer .ast-mobile-popup-inner { + width: 100%; + transform: translateX(100%); + max-width: 90%; + right: 0; + top: 0; + overflow: auto; + background: #fafafa; + color: #3a3a3a; + bottom: 0; + opacity: 0; + position: fixed; + box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1); + -js-display: flex; + display: flex; + flex-direction: column; + transition: transform 0.2s ease-in, opacity 0.2s ease-in; +} + +.ast-mobile-popup-drawer .ast-mobile-popup-overlay { + background-color: rgba(0, 0, 0, 0.4); + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + visibility: hidden; + opacity: 0; + transition: opacity 0.2s ease-in-out; +} + +.ast-mobile-popup-drawer .ast-mobile-popup-header { + -js-display: flex; + display: flex; + justify-content: flex-end; + min-height: calc( 1.2em + 24px); +} + +.ast-mobile-popup-drawer .ast-mobile-popup-header .menu-toggle-close { + background: transparent; + border: 0; + font-size: 24px; + line-height: 1; + padding: .6em; + color: inherit; + -js-display: flex; + display: flex; + box-shadow: none; +} + +.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before { + font-weight: bold; + content: "\e900"; + font-family: 'Astra'; + text-decoration: inherit; + display: inline-block; +} + +.ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children .sub-menu { + display: none; +} + +.ast-mobile-popup-drawer .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before { + transform: rotateX(180deg); +} + +.ast-mobile-popup-drawer.ast-mobile-popup-left .ast-mobile-popup-inner { + transform: translateX(-100%); + right: auto; + left: 0; +} + +.ast-mobile-popup-drawer.ast-mobile-popup-full-width .ast-mobile-popup-inner { + max-width: none; + transition: transform 0s ease-in, opacity 0.2s ease-in; +} + +.ast-mobile-popup-drawer.show { + opacity: 1; + visibility: visible; +} + +.ast-mobile-popup-drawer.active { + left: 0; + opacity: 1; + right: 0; + z-index: 100000; + transition: opacity 0.25s ease-out; +} + +.ast-mobile-popup-drawer.active .ast-mobile-popup-inner { + opacity: 1; + visibility: visible; + transform: translateX(0%); +} + +.ast-mobile-popup-drawer.active .ast-mobile-popup-overlay { + opacity: 1; + cursor: pointer; + visibility: visible; +} + +body.admin-bar .ast-mobile-popup-drawer { + top: 46px; +} + +body.admin-bar .ast-mobile-popup-drawer .ast-mobile-popup-inner { + top: 46px; +} + +body.admin-bar.ast-primary-sticky-header-active .ast-mobile-popup-drawer { + top: 0px; +} + +body.admin-bar.ast-primary-sticky-header-active .ast-mobile-popup-drawer .ast-mobile-popup-inner { + top: 0px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-popup-drawer .main-header-bar-navigation ul .menu-item .sub-menu .menu-link { + padding-left: 30px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-popup-drawer .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link { + padding-left: 40px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation { + width: unset; + margin: unset; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation ul .sub-menu .menu-link { + padding-left: 30px; +} + +.astra-hfb-header.ast-default-menu-enable.ast-header-break-point .ast-mobile-header-wrap .ast-mobile-header-content .main-header-bar-navigation .sub-menu .menu-item .menu-item .menu-link { + padding-left: 40px; +} + +.astra-hfb-header.ast-header-break-point .main-header-bar-navigation { + width: 100%; + margin: 0; +} + +.ast-mobile-popup-content > * { + padding: 10px 0; + height: auto; +} + +.ast-off-canvas-active body.ast-main-header-nav-open { + overflow: hidden; +} + +.ast-mobile-header-wrap .ast-mobile-header-content { + display: none; +} + +.ast-mobile-header-wrap .menu-toggle.toggled .ast-mobile-svg { + display: none; +} + +.ast-mobile-header-wrap .menu-toggle.toggled .ast-close-svg { + display: block; +} + +.ast-mobile-header-wrap .menu-toggle .ast-close-svg { + display: none; +} + +.ast-mobile-header-wrap .menu-toggle .mobile-menu-toggle-icon { + -js-display: inline-flex; + display: inline-flex; + align-self: center; +} + +.ast-mobile-header-wrap .menu-toggle .mobile-menu-wrap { + -js-display: inline-flex; + display: inline-flex; + align-self: center; + margin-left: 0.4em; +} + +.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle { + -js-display: flex; + display: flex; + align-items: center; + width: auto; + height: auto; +} + +.ast-mobile-header-wrap .ast-builder-grid-row-container-inner { + display: grid; + align-items: center; +} + +.ast-off-canvas-active .ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content { + display: none; +} + +.ast-main-header-nav-open.ast-popup-nav-open .ast-mobile-header-wrap .ast-mobile-header-content { + display: none; +} + +.ast-main-header-nav-open .ast-mobile-header-wrap .ast-mobile-header-content { + display: block; +} + +.ast-button-wrap .menu-toggle.main-header-menu-toggle { + padding: .5em; +} + +.ast-search-menu-icon.ast-inline-search .search-field { + width: 100%; + padding: 0.60em; + padding-right: 5.5em; +} + +/* Social Icons Official CSS */ +.header-social-inner-wrap.ast-social-color-type-official .ast-twitter, +.header-social-inner-wrap.ast-social-color-type-official .ast-twitter .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-twitter, +.footer-social-inner-wrap.ast-social-color-type-official .ast-twitter .social-item-label { + background: transparent; + color: #7acdee; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-instagram, +.header-social-inner-wrap.ast-social-color-type-official .ast-instagram .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-instagram, +.footer-social-inner-wrap.ast-social-color-type-official .ast-instagram .social-item-label { + background: transparent; + color: #292929; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-linkedin, +.header-social-inner-wrap.ast-social-color-type-official .ast-linkedin .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-linkedin, +.footer-social-inner-wrap.ast-social-color-type-official .ast-linkedin .social-item-label { + background: transparent; + color: #1c86c6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook_group, +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook_group .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook_group, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook_group .social-item-label { + background: transparent; + color: #3D87FB; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-discord, +.header-social-inner-wrap.ast-social-color-type-official .ast-discord .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-discord, +.footer-social-inner-wrap.ast-social-color-type-official .ast-discord .social-item-label { + background: transparent; + color: #7187D4; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-pinterest, +.header-social-inner-wrap.ast-social-color-type-official .ast-pinterest .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-pinterest, +.footer-social-inner-wrap.ast-social-color-type-official .ast-pinterest .social-item-label { + background: transparent; + color: #ea575a; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-dribbble, +.header-social-inner-wrap.ast-social-color-type-official .ast-dribbble .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-dribbble, +.footer-social-inner-wrap.ast-social-color-type-official .ast-dribbble .social-item-label { + background: transparent; + color: #d77ea6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-behance, +.header-social-inner-wrap.ast-social-color-type-official .ast-behance .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-behance, +.footer-social-inner-wrap.ast-social-color-type-official .ast-behance .social-item-label { + background: transparent; + color: #1B64F6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-medium, +.header-social-inner-wrap.ast-social-color-type-official .ast-medium .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-medium, +.footer-social-inner-wrap.ast-social-color-type-official .ast-medium .social-item-label { + background: transparent; + color: #292929; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-patreon, +.header-social-inner-wrap.ast-social-color-type-official .ast-patreon .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-patreon, +.footer-social-inner-wrap.ast-social-color-type-official .ast-patreon .social-item-label { + background: transparent; + color: #e65c4b; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-vk, +.header-social-inner-wrap.ast-social-color-type-official .ast-vk .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vk, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vk .social-item-label { + background: transparent; + color: #5382b6; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-reddit, +.header-social-inner-wrap.ast-social-color-type-official .ast-reddit .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-reddit, +.footer-social-inner-wrap.ast-social-color-type-official .ast-reddit .social-item-label { + background: transparent; + color: #FC471E; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-youtube, +.header-social-inner-wrap.ast-social-color-type-official .ast-youtube .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-youtube, +.footer-social-inner-wrap.ast-social-color-type-official .ast-youtube .social-item-label { + background: transparent; + color: #e96651; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-vimeo, +.header-social-inner-wrap.ast-social-color-type-official .ast-vimeo .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vimeo, +.footer-social-inner-wrap.ast-social-color-type-official .ast-vimeo .social-item-label { + background: transparent; + color: #8ecfde; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-rss, +.header-social-inner-wrap.ast-social-color-type-official .ast-rss .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-rss, +.footer-social-inner-wrap.ast-social-color-type-official .ast-rss .social-item-label { + background: transparent; + color: #f09124; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-whatsapp, +.header-social-inner-wrap.ast-social-color-type-official .ast-whatsapp .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-whatsapp, +.footer-social-inner-wrap.ast-social-color-type-official .ast-whatsapp .social-item-label { + background: transparent; + color: #5BBA67; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-viber, +.header-social-inner-wrap.ast-social-color-type-official .ast-viber .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-viber, +.footer-social-inner-wrap.ast-social-color-type-official .ast-viber .social-item-label { + background: transparent; + color: #7F509E; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-telegram, +.header-social-inner-wrap.ast-social-color-type-official .ast-telegram .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-telegram, +.footer-social-inner-wrap.ast-social-color-type-official .ast-telegram .social-item-label { + background: transparent; + color: #229CCE; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-xing, +.header-social-inner-wrap.ast-social-color-type-official .ast-xing .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-xing, +.footer-social-inner-wrap.ast-social-color-type-official .ast-xing .social-item-label { + background: transparent; + color: #0A5C5D; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-weibo, +.header-social-inner-wrap.ast-social-color-type-official .ast-weibo .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-weibo, +.footer-social-inner-wrap.ast-social-color-type-official .ast-weibo .social-item-label { + background: transparent; + color: #E41C34; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-tumblr, +.header-social-inner-wrap.ast-social-color-type-official .ast-tumblr .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-tumblr, +.footer-social-inner-wrap.ast-social-color-type-official .ast-tumblr .social-item-label { + background: transparent; + color: #314255; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-qq, +.header-social-inner-wrap.ast-social-color-type-official .ast-qq .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-qq, +.footer-social-inner-wrap.ast-social-color-type-official .ast-qq .social-item-label { + background: transparent; + color: #487FC8; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-wechat, +.header-social-inner-wrap.ast-social-color-type-official .ast-wechat .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wechat, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wechat .social-item-label { + background: transparent; + color: #2DC121; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-phone, +.header-social-inner-wrap.ast-social-color-type-official .ast-phone .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-phone, +.footer-social-inner-wrap.ast-social-color-type-official .ast-phone .social-item-label { + background: transparent; + color: inherit; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-strava, +.header-social-inner-wrap.ast-social-color-type-official .ast-strava .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-strava, +.footer-social-inner-wrap.ast-social-color-type-official .ast-strava .social-item-label { + background: transparent; + color: #2DC121; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-email, +.header-social-inner-wrap.ast-social-color-type-official .ast-email .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-email, +.footer-social-inner-wrap.ast-social-color-type-official .ast-email .social-item-label { + background: transparent; + color: #ea4335; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-github, +.header-social-inner-wrap.ast-social-color-type-official .ast-github .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-github, +.footer-social-inner-wrap.ast-social-color-type-official .ast-github .social-item-label { + background: transparent; + color: #24292e; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-google_reviews, +.header-social-inner-wrap.ast-social-color-type-official .ast-google_reviews .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-google_reviews, +.footer-social-inner-wrap.ast-social-color-type-official .ast-google_reviews .social-item-label { + background: transparent; + color: #dc4e41; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-wordpress, +.header-social-inner-wrap.ast-social-color-type-official .ast-wordpress .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wordpress, +.footer-social-inner-wrap.ast-social-color-type-official .ast-wordpress .social-item-label { + background: transparent; + color: #464646; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-yelp, +.header-social-inner-wrap.ast-social-color-type-official .ast-yelp .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-yelp, +.footer-social-inner-wrap.ast-social-color-type-official .ast-yelp .social-item-label { + background: transparent; + color: #af0606; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook, +.header-social-inner-wrap.ast-social-color-type-official .ast-facebook .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook, +.footer-social-inner-wrap.ast-social-color-type-official .ast-facebook .social-item-label { + color: #557dbc; + background: transparent; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-imdb, +.header-social-inner-wrap.ast-social-color-type-official .ast-imdb .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-imdb, +.footer-social-inner-wrap.ast-social-color-type-official .ast-imdb .social-item-label { + color: #000000; + background: #F5C518; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor, +.header-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor .social-item-label, +.footer-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor, +.footer-social-inner-wrap.ast-social-color-type-official .ast-trip_advisor .social-item-label { + color: #000000; + background: #00aa6c; +} + +.header-social-inner-wrap.ast-social-color-type-official .ast-builder-social-element svg, +.footer-social-inner-wrap.ast-social-color-type-official .ast-builder-social-element svg { + fill: currentColor; +} + +@media screen and (max-width: 921px) { + .ast-mobile-popup-drawer .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle { + right: calc( 20px - 0.907em); + } +} + +/** Search CSS for New HFB Dropdown/Off-Canvas */ +.ast-mobile-header-content .ast-search-menu-icon, +.ast-mobile-header-content .ast-search-menu-icon.slide-search, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.slide-search { + width: 100%; + margin-bottom: 1em; + margin-top: 1em; + position: relative; + display: block; + right: auto; + transform: none; +} + +.ast-mobile-header-content .ast-search-icon, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-icon { + display: none; +} + +.ast-mobile-header-content .ast-search-menu-icon.slide-search .search-form, +.ast-mobile-header-content .ast-search-menu-icon .search-form, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.slide-search .search-form, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-form { + right: 0; + visibility: visible; + opacity: 1; + position: relative; + top: auto; + transform: none; + padding: 0; + display: block; + overflow: hidden; +} + +.ast-mobile-header-content .ast-search-menu-icon.ast-inline-search .search-field, +.ast-mobile-header-content .ast-search-menu-icon .search-field, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon.ast-inline-search .search-field, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-field { + width: 100%; + padding-right: 5.5em; +} + +.ast-mobile-header-content .ast-search-menu-icon .search-submit, +.ast-mobile-popup-drawer .ast-mobile-popup-content .ast-search-menu-icon .search-submit { + display: block; + position: absolute; + height: 100%; + top: 0; + right: 0; + padding: 0 1em; + border-radius: 0; +} + +.ast-header-search .ast-search-menu-icon .search-form .search-field:-ms-input-placeholder { + opacity: 0.5; +} + +.ast-header-search .ast-search-menu-icon .search-form .search-field::placeholder { + opacity: 0.5; +} + +/** Search CSS for Left side rows */ +.site-header-section-left .ast-search-menu-icon.slide-search .search-form { + padding-left: 3em; + padding-right: unset; + left: -1em; + right: unset; +} + +.site-header-section-left .ast-search-menu-icon.slide-search .search-form .search-field { + margin-right: unset; + margin-left: 10px; +} + +/** Above header z-index for Sticky Above Header Submenu */ +.ast-above-header-bar.ast-header-sticked { + z-index: 9; +} + +/** Default Spacing for Mobile Header elements except Menu */ +.ast-mobile-popup-content .ast-builder-layout-element:not(.ast-builder-menu), +.ast-mobile-header-content .ast-builder-layout-element:not(.ast-builder-menu) { + margin: 15px 20px; +} + +/* Footer menu spacing between each menu items. */ +@media (min-width: 769px) { + .footer-nav-wrap .astra-footer-horizontal-menu li { + margin: 0; + } + .footer-nav-wrap .astra-footer-horizontal-menu li:first-child a { + padding-left: 0; + } + .footer-nav-wrap .astra-footer-horizontal-menu li:last-child a { + padding-right: 0; + } + .footer-nav-wrap .astra-footer-horizontal-menu a { + padding: 0 0.5em; + } +} + +/*---------- Header ----------*/ +/** + * Header + * + * @import + * 1 - Header Layout Common + * 2 - Header Main +*/ +/* 1 - Header Common */ +/** + * Header Common + * + * Contents + * 1 - Common + * 4 - Main Header Container + * 6 - all and (max-width: $mx-break-point) + * 7 - Auto Margin +*/ +/** + * 1 - Common + */ +.site-header { + z-index: 99; + position: relative; +} + +/** + * 4 - Main Header Container + */ +.main-header-container { + position: relative; +} + +.main-header-bar-wrap { + position: relative; +} + +.main-header-bar-wrap .nav-fallback-text { + float: right; +} + +.main-header-bar { + background-color: #fff; + border-bottom-color: #eaeaea; + border-bottom-style: solid; +} + +/** + * 6 - all and (max-width: $mx-break-point) + */ +.ast-header-break-point .main-header-bar { + border: 0; +} + +.ast-header-break-point .nav-fallback-text { + float: none; +} + +.ast-header-break-point .main-header-bar { + border-bottom-color: #eaeaea; + border-bottom-style: solid; +} + +.ast-header-break-point .ast-header-custom-item .ast-masthead-custom-menu-items { + padding-left: 20px; + padding-right: 20px; + margin-bottom: 1em; + margin-top: 1em; +} + +.ast-header-break-point .ast-header-custom-item .widget:last-child { + margin-bottom: 1em; +} + +/** + * 7 - Auto Margin + */ +.main-header-bar { + margin-left: auto; + margin-right: auto; +} + +.site-logo-img img { + transition: all 0.2s linear; +} + +/** + * 8 - Header Widget Area + */ +.ast-header-widget-area { + line-height: 1.65; +} + +.ast-header-widget-area .widget-title, +.ast-header-widget-area .no-widget-text { + margin-bottom: 0; +} + +.ast-header-widget-area .widget { + margin: .5em; + display: inline-block; + vertical-align: middle; +} + +.ast-header-widget-area .widget p { + margin-bottom: 0; +} + +.ast-header-widget-area .widget ul { + position: static; + border: 0; + width: auto; +} + +.ast-header-widget-area .widget ul a { + border: 0; +} + +.ast-header-widget-area .widget.widget_search .search-field, +.ast-header-widget-area .widget.widget_search .search-field:focus { + padding: 10px 45px 10px 15px; +} + +.ast-header-widget-area .widget:last-child { + margin-bottom: 0.5em; + margin-right: 0; +} + +.submenu-with-border .ast-header-widget-area .widget ul { + position: static; + border: 0; + width: auto; +} + +.submenu-with-border .ast-header-widget-area .widget ul a { + border: 0; +} + +.ast-header-break-point .ast-header-widget-area .widget { + margin: .5em 0; + display: block; +} + +/** + * 9 - Header Widget Area + */ +.ast-header-custom-item .widget { + margin: 0.5em; + display: inline-block; + vertical-align: middle; +} + +.ast-header-custom-item .widget p { + margin-bottom: 0; +} + +.ast-header-custom-item .widget li { + width: auto; +} + +/** + * 10 - Submenu container box shadow + */ +.ast-desktop .main-header-menu .astra-full-megamenu-wrapper .sub-menu { + box-shadow: none; +} + +.ast-desktop .main-header-menu .astra-megamenu .sub-menu { + box-shadow: none; +} + +.ast-desktop .main-header-menu .sub-menu { + box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1); +} + +.ast-desktop .main-header-menu .astra-full-megamenu-wrapper { + box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1); +} + +.ast-header-custom-item-inside .button-custom-menu-item .menu-link { + display: none; +} + +.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item { + padding-left: 0; + padding-right: 0; + margin-top: 0; + margin-bottom: 0; +} + +.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .ast-custom-button-link { + display: none; +} + +.ast-header-custom-item-inside.ast-header-break-point .button-custom-menu-item .menu-link { + display: block; +} + +.button-custom-menu-item .ast-custom-button-link .ast-custom-button { + font-size: inherit; + font-family: inherit; + font-weight: inherit; +} + +.button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover { + transition: all 0.1s ease-in-out; +} + +/* 2 - Header Main */ +/** + * Header Sections + * + * All sections within the header. + * + * Contents + * 1 - Common + * 2 - Social Follow + * 3 - Site Logo + * 4 - Search Form + * + * # Responsive +*/ +/** + * 1 - Common + */ +.site-branding { + line-height: 1; + align-self: center; +} + +.ast-menu-toggle { + display: none; + background: transparent; + color: inherit; + border-style: dotted; + border-color: transparent; +} + +.ast-menu-toggle:focus, .ast-menu-toggle:hover { + background: transparent; + border-color: inherit; + color: inherit; +} + +.ast-menu-toggle:focus { + outline: thin dotted; +} + +/** + * 4 - Search Form & Main Header + */ +.ast-main-header-nav-open .main-header-bar { + padding-bottom: 0; +} + +.main-header-bar { + z-index: 4; + position: relative; +} + +.main-header-bar .main-header-bar-navigation { + height: 100%; +} + +.main-header-bar .main-header-bar-navigation:empty { + padding: 0; +} + +.main-header-bar .main-header-bar-navigation .sub-menu { + line-height: 1.45; +} + +.main-header-bar .main-header-bar-navigation .menu-item-has-children > .menu-link:after { + content: "\e900"; + display: inline-block; + font-family: 'Astra'; + font-size: 9px; + font-size: .6rem; + font-weight: bold; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + margin-left: 10px; + line-height: normal; +} + +.main-header-bar .main-header-bar-navigation .ast-search-icon { + display: block; + z-index: 4; + position: relative; +} + +.main-header-bar .main-header-bar-navigation.toggle-on { + padding-top: 1em; +} + +.main-header-bar .ast-search-menu-icon .search-form { + background-color: #ffffff; +} + +.ast-search-menu-icon.slide-search .search-form { + -webkit-backface-visibility: visible; + backface-visibility: visible; + visibility: hidden; + opacity: 0; + transition: all .2s; + position: absolute; + z-index: 3; + right: -1em; + top: 50%; + transform: translateY(-50%); +} + +.ast-search-menu-icon.ast-dropdown-active.slide-search .search-form { + visibility: visible; + opacity: 1; +} + +.ast-search-menu-icon .search-form { + border: 1px solid #e7e7e7; + line-height: normal; + padding: 0 3em 0 0; + border-radius: 2px; + display: inline-block; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + position: relative; + color: inherit; + background-color: #fff; +} + +.ast-search-menu-icon .astra-search-icon { + -js-display: flex; + display: flex; + line-height: normal; +} + +.ast-search-menu-icon .astra-search-icon:focus { + outline: none; +} + +.ast-search-menu-icon .search-field { + border: none; + background-color: transparent; + transition: width .2s; + border-radius: inherit; + color: inherit; + font-size: inherit; + width: 0; + color: #757575; +} + +.ast-search-menu-icon .search-submit { + display: none; + background: none; + border: none; + font-size: 1.3em; + color: #757575; +} + +.ast-search-menu-icon.ast-dropdown-active { + visibility: visible; + opacity: 1; + position: relative; +} + +.ast-search-menu-icon.ast-dropdown-active .search-field { + width: 235px; +} + +.ast-search-icon { + z-index: 4; + position: relative; + line-height: normal; +} + +/* Hide Mobile logo. */ +.custom-mobile-logo-link { + display: none; +} + +.ast-site-identity { + padding: 1em 0; +} + +.ast-header-break-point .site-header .main-header-bar-wrap .site-branding { + -js-display: flex; + display: flex; + flex: 1; + align-self: center; +} + +.ast-header-break-point .ast-site-identity { + width: 100%; +} + +.ast-header-break-point .main-header-bar-navigation .menu-item-has-children > .menu-link:after { + display: none; +} + +.ast-header-break-point .main-header-bar { + display: block; + line-height: 3; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation { + line-height: 3; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .sub-menu { + line-height: 3; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children .sub-menu { + display: none; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle { + display: inline-block; + position: absolute; + font-size: inherit; + top: -1px; + right: 20px; + cursor: pointer; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + padding: 0 0.907em; + font-weight: normal; + line-height: inherit; + transition: all .2s; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle::before { + font-weight: bold; + content: "\e900"; + font-family: 'Astra'; + text-decoration: inherit; + display: inline-block; +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .ast-submenu-expanded > .ast-menu-toggle::before { + transform: rotateX(180deg); +} + +.ast-header-break-point .main-header-bar .main-header-bar-navigation .main-header-menu { + border-top-width: 1px; + border-style: solid; + border-color: #eaeaea; +} + +.ast-header-break-point .main-navigation { + display: block; + width: 100%; +} + +.ast-header-break-point .main-navigation ul > .menu-item:first-child { + border-top: 0; +} + +.ast-header-break-point .main-navigation ul ul { + left: auto; + right: auto; +} + +.ast-header-break-point .main-navigation .stack-on-mobile li { + width: 100%; +} + +.ast-header-break-point .main-navigation .widget { + margin-bottom: 1em; +} + +.ast-header-break-point .main-navigation .widget li { + width: auto; +} + +.ast-header-break-point .main-navigation .widget:last-child { + margin-bottom: 0; +} + +.ast-header-break-point .main-header-bar-navigation { + width: calc( 100% + 40px); + margin: 0 -20px; +} + +.ast-header-break-point .main-header-menu ul ul { + top: 0; +} + +.ast-header-break-point .ast-has-mobile-header-logo .custom-logo-link { + display: none; +} + +.ast-header-break-point .ast-has-mobile-header-logo .custom-mobile-logo-link { + display: inline-block; +} + +.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .custom-logo-link, +.ast-header-break-point.ast-mobile-inherit-site-logo .ast-has-mobile-header-logo .astra-logo-svg { + display: block; +} + +.ast-header-break-point .ast-builder-menu { + width: 100%; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile { + flex-wrap: unset; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu { + display: block; + width: 150px; + position: absolute; + right: auto; + left: 0; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu .menu-item .ast-menu-toggle { + padding: 0; + right: 1em; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu .menu-link { + padding: .1em 1em; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu > .menu-item > .sub-menu { + left: 100%; + right: auto; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu > .menu-item .ast-menu-toggle::before { + transform: rotate(-90deg); +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item.ast-submenu-expanded > .sub-menu > .menu-item.ast-submenu-expanded .ast-menu-toggle::before { + transform: rotate(-270deg); +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .menu-item > .sub-menu > .menu-item .menu-link:before { + content: none; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.inline-on-mobile .ast-menu-toggle { + right: -10px; +} + +.ast-header-break-point .ast-mobile-header-wrap .site-container .ast-flex.stack-on-mobile { + flex-wrap: wrap; +} + +/*---------- Forms ----------*/ +/** + * Form Fields + * + * @import + * 1 - All fields common scss + * 2 - Field - Range + * 3 - Field - Color +*/ +/* 1 - All fields common scss */ +input[type="text"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="password"], +input[type="search"], +input[type=reset], +input[type=tel], +select, +textarea { + color: #666; + padding: 0.75em; + height: auto; + border-width: 1px; + border-style: solid; + border-color: #eaeaea; + border-radius: 2px; + background: #fafafa; + box-shadow: none; + box-sizing: border-box; + transition: all 0.2s linear; +} + +input[type="text"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +input[type="search"]:focus, +input[type=reset]:focus, +input[type=tel]:focus, +select:focus, +textarea:focus { + background-color: #fff; + border-color: #eaeaea; + box-shadow: none; +} + +input[type=reset], +input[type=reset]:hover, +input[type=reset]:focus, +input[type="submit"], +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="button"], +input[type="button"]:hover, +input[type="button"]:focus { + box-shadow: none; +} + +textarea { + width: 100%; +} + +input[type="search"]:focus { + outline: thin dotted; +} + +/* 2 - Field - Range */ +/* Range */ +input[type=range] { + -webkit-appearance: none; + width: 100%; + margin: 5.7px 0; + padding: 0; + border: none; +} + +input[type=range]:focus { + outline: none; +} + +input[type=range]::-webkit-slider-runnable-track { + width: 100%; + height: 8.6px; + cursor: pointer; + box-shadow: 2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; + background: rgba(255, 255, 255, 0.2); + border-radius: 13.6px; + border: 0px solid #ffffff; +} + +input[type=range]::-webkit-slider-thumb { + box-shadow: 0px 0px 0px rgba(255, 221, 0, 0.37), 0px 0px 0px rgba(255, 224, 26, 0.37); + border: 7.9px solid #0274be; + height: 20px; + width: 20px; + border-radius: 50px; + background: #0274be; + cursor: pointer; + -webkit-appearance: none; + margin-top: -5.7px; +} + +input[type=range]:focus::-webkit-slider-runnable-track { + background: rgba(255, 255, 255, 0.2); +} + +input[type=range]::-moz-range-track { + width: 100%; + height: 8.6px; + cursor: pointer; + box-shadow: 2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; + background: rgba(255, 255, 255, 0.2); + border-radius: 13.6px; + border: 0px solid #ffffff; +} + +input[type=range]::-moz-range-thumb { + box-shadow: 0px 0px 0px rgba(255, 221, 0, 0.37), 0px 0px 0px rgba(255, 224, 26, 0.37); + border: 7.9px solid #0274be; + height: 20px; + width: 20px; + border-radius: 50px; + background: #0274be; + cursor: pointer; +} + +input[type=range]::-ms-track { + width: 100%; + height: 8.6px; + cursor: pointer; + background: transparent; + border-color: transparent; + color: transparent; +} + +input[type=range]::-ms-fill-lower { + background: rgba(199, 199, 199, 0.2); + border: 0px solid #ffffff; + border-radius: 27.2px; + box-shadow: 2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; +} + +input[type=range]::-ms-fill-upper { + background: rgba(255, 255, 255, 0.2); + border: 0px solid #ffffff; + border-radius: 27.2px; + box-shadow: 2.6px 2.6px 0.4px #cccccc, 0px 0px 2.6px #d9d9d9; +} + +input[type=range]::-ms-thumb { + box-shadow: 0px 0px 0px rgba(255, 221, 0, 0.37), 0px 0px 0px rgba(255, 224, 26, 0.37); + border: 7.9px solid #0274be; + height: 20px; + width: 20px; + border-radius: 50px; + background: #0274be; + cursor: pointer; + height: 8.6px; +} + +input[type=range]:focus::-ms-fill-lower { + background: rgba(255, 255, 255, 0.2); +} + +input[type=range]:focus::-ms-fill-upper { + background: rgba(255, 255, 255, 0.2); +} + +/* 3 - Field - Color */ +/* Color */ +input[type="color"] { + border: none; + width: 100px; + padding: 0; + height: 30px; + cursor: pointer; +} + +input[type="color"]::-webkit-color-swatch-wrapper { + padding: 0; + border: none; +} + +input[type="color"]::-webkit-color-swatch { + border: none; +} + +/*---------- Blog ----------*/ +/*-------------------------------------------------------------- +## Blog Layouts +--------------------------------------------------------------*/ +/** + * Blog Common + */ +.page .entry-header { + margin-bottom: 1.5em; +} + +.search .entry-header { + margin-bottom: 1em; +} + +.ast-single-post .entry-header.ast-header-without-markup, .ast-single-post .entry-header.ast-no-title.ast-no-thumbnail { + margin-bottom: 0; +} + +.entry-header { + margin-bottom: 1em; + word-wrap: break-word; +} + +.entry-header + .ast-blog-featured-section { + margin-top: 0.5em; +} + +.entry-content { + word-wrap: break-word; +} + +.entry-content p { + margin-bottom: 1.6em; +} + +.read-more { + margin-bottom: 0; +} + +.read-more .ast-right-arrow { + font-size: 1em; +} + +.ast-no-thumb .ast-blog-featured-section { + margin-bottom: 0; +} + +.ast-no-thumb .entry-header + .ast-blog-featured-section { + margin-top: 0; +} + +.ast-blog-featured-section { + margin-bottom: 1.5em; +} + +.ast-blog-featured-section .gallery { + margin-bottom: 0; +} + +.error404 .page-header { + margin-bottom: 1.5em; +} + +.error404 .page-header .page-title { + margin-bottom: 0; +} + +.blog .entry-title, +.archive .entry-title, +.search .entry-title { + line-height: 1.3; +} + +.blog .format-status .entry-title, +.archive .format-status .entry-title, +.blog .format-aside .entry-title, +.archive .format-aside .entry-title { + display: none; +} + +.page-title { + margin-bottom: 1em; + font-weight: normal; +} + +.entry-title { + margin-bottom: 0.2em; +} + +.ast-article-post { + margin-bottom: 2.5em; +} + +.ast-article-post:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +.search .site-content .content-area .search-form { + margin-bottom: 3em; +} + +.blog-layout-1 { + /* 2 - Blog Thumbnail Styles */ +} + +.blog-layout-1 .post-thumb { + padding-left: 0; + padding-right: 0; + position: relative; +} + +.blog .posted-on { + z-index: 1; +} + +.ast-blog-featured-section .posted-on { + width: 5.714285714em; + height: 5.714285714em; + padding: 0.7em; +} + +.ast-blog-featured-section .posted-on .date-month, +.ast-blog-featured-section .posted-on .date-year { + font-size: 0.8571428571em; + line-height: 1em; +} + +.ast-blog-featured-section .posted-on .date-day { + font-size: 2.5em; + line-height: .9em; + font-weight: 900; + margin: .1em 0; +} + +/* ============================================================ + Archive Blogs +============================================================ */ +.ast-author-box img.avatar { + border-radius: 50%; + margin: 0 0 0 20px; +} + +.ast-archive-description { + margin-bottom: 2.5em; + padding-bottom: 1.3333em; + border-bottom: 1px solid #eeeeee; +} + +.ast-archive-description .ast-archive-title { + margin-bottom: 4px; + font-size: 40px; + font-size: 2.85714rem; + font-weight: 300; +} + +.ast-archive-description p { + margin-bottom: 0; + font-size: 20px; + font-size: 1.42857rem; + line-height: 1.65; + font-weight: 300; +} + +.ast-separate-container .ast-author-box, +.ast-separate-container .ast-archive-description { + background-color: #eee; + padding-bottom: 0; + border-bottom: 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-archive-description { + margin: 0; + padding: 3.34em 2.4em; + } +} + +@media (max-width: 992px) { + .ast-separate-container .ast-archive-description { + padding: 2.14em; + } +} + +@media (min-width: 1201px) { + .ast-separate-container .ast-author-box, + .ast-separate-container .ast-archive-description { + margin: 0; + padding: 5em 6.67em 3.33333em; + } +} + +/*-------------------------------------------------------------- +## Single Blog Post Layouts +--------------------------------------------------------------*/ +/*---------- Single Post Common Stylesheet ----------*/ +/** + * Common Stylesheet of Single Post + * + * Content + * 1 - Single Post Navigation Styles + * 2 - Single Post Article Header +*/ +.single { + /* 1 - Single Post Navigation Styles */ + /*Page builder single post meta*/ +} + +.single .entry-header { + margin-bottom: 2em; +} + +.single .post-navigation { + margin: 0; + padding: 2em 0 0; + border-top: 1px solid #eeeeee; +} + +@media (max-width: 768px) { + .single .post-navigation { + padding-top: 1.5em; + } +} + +.single .post-navigation a { + margin: 2px; + display: inline-block; + text-align: center; + color: #000; +} + +@media (min-width: 421px) { + .single .post-navigation .nav-links { + -js-display: flex; + display: flex; + } + .single .post-navigation .nav-previous, + .single .post-navigation .nav-next { + flex: auto; + } +} + +@media (max-width: 420px) { + .single .post-navigation .ast-left-arrow, + .single .post-navigation .ast-right-arrow { + display: none; + } + .single .post-navigation .nav-previous, + .single .post-navigation .nav-next { + width: 100%; + } + .single .post-navigation .nav-previous a, + .single .post-navigation .nav-next a { + width: 100%; + } + .single .post-navigation .nav-previous { + margin-bottom: 1em; + } +} + +.single.ast-page-builder-template .entry-header { + padding-left: 20px; + padding-right: 20px; +} + +/* 2 - Single Post Article Header */ +.single .entry-header .ast-single-post-order + .post-thumb img { + margin-top: 2em; + margin-bottom: 0; +} + +.single .entry-header.ast-no-title .post-thumb + .ast-single-post-order { + margin-top: 0; +} + +.single .entry-header .post-thumb + .ast-single-post-order { + margin-top: 2em; +} + +.single .entry-header .post-thumb img { + margin-top: 0; + margin-bottom: 0; +} + +.page .has-post-thumbnail .post-thumb img { + margin-bottom: 1.5em; +} + +.post-password-form { + text-align: center; +} + +@media (max-width: 420px) { + .post-password-form input[type="password"] { + display: block; + margin: 10px auto; + } +} + +.post-password-form input[type="submit"] { + padding: 10px 20px; + border-radius: 2px; +} + +.ast-separate-container .post-navigation { + border-top: 0; + padding-left: 3.33333em; + padding-right: 3.33333em; +} + +@media (max-width: 420px) { + .ast-separate-container .post-navigation { + padding-left: 0; + padding-right: 0; + } +} + +@media (max-width: 768px) { + .ast-separate-container .entry-header { + margin-bottom: 1em; + } +} + +.ast-page-builder-template.single-post .site-content > .ast-container { + max-width: 100%; +} + +/*---------- Single Post Comment Form Stylesheet ----------*/ +/** + * Comment Form Styles + * + * Content + * 1 - Textarea Styles + * 2 - Input Fields Styles + * 3 - Submit Button Styles + * 4 - Comment List Styles +*/ +.comments-count-wrapper { + padding: 2em 0; +} + +.comments-count-wrapper .comments-title { + font-weight: normal; + word-wrap: break-word; +} + +.ast-comment-list { + margin: 0; + word-wrap: break-word; + padding-bottom: 0.5em; + list-style: none; +} + +.ast-comment-list li { + list-style: none; +} + +.ast-comment-list li.depth-1 .ast-comment, +.ast-comment-list li.depth-2 .ast-comment { + border-bottom: 1px solid #eeeeee; +} + +.ast-comment-list .children { + margin-left: 2em; +} + +@media (max-width: 992px) { + .ast-comment-list .children { + margin-left: 1em; + } +} + +.ast-comment-list .comment-respond { + padding: 1em 0; + border-bottom: 1px solid #eeeeee; +} + +.ast-comment-list .comment-respond .comment-reply-title { + margin-top: 0; + padding-top: 0; +} + +.ast-comment-list .comment-respond p { + margin-bottom: .5em; +} + +.ast-comment-list #cancel-comment-reply-link { + white-space: nowrap; + font-size: 15px; + font-size: 1rem; + margin-left: 1em; +} + +.ast-comment-list .ast-comment-edit-reply-wrap { + -js-display: flex; + display: flex; + justify-content: flex-end; +} + +.ast-comment-list .ast-edit-link { + flex: 1; +} + +.ast-comment-list .comment-awaiting-moderation { + margin-bottom: 0; +} + +.ast-comment { + padding: 1em 0; +} + +.ast-comment-avatar-wrap { + float: left; + clear: right; + margin-right: 1.33333em; +} + +.ast-comment-avatar-wrap img { + border-radius: 50%; +} + +.ast-comment-meta-wrap { + float: left; + clear: right; + padding: 0 0 1.33333em; +} + +.ast-comment-content { + clear: both; +} + +.ast-comment-cite-wrap { + text-align: left; +} + +.ast-comment-cite-wrap cite { + font-style: normal; +} + +.comment-reply-title { + padding-top: 1em; + font-weight: normal; + line-height: 1.65; +} + +.ast-comment-meta { + margin-bottom: 0.5em; +} + +.ast-comment-time .timendate, +.ast-comment-time .reply { + margin-right: 0.5em; +} + +.comments-area { + border-top: 1px solid #eeeeee; + margin-top: 2em; + /* 1 - Textarea Styles */ + /* 2 - Input Fields Styles */ + /* 4 - Comment List Styles */ + /* Comment Cookie concent field aignment */ +} + +.comments-area .comment-form-comment { + width: 100%; + border: none; + margin: 0; + padding: 0; +} + +.comments-area .comment-notes, +.comments-area .comment-textarea, +.comments-area .form-allowed-tags { + margin-bottom: 1.5em; +} + +.comments-area .form-submit { + margin-bottom: 0; +} + +.comments-area textarea#comment, +.comments-area .ast-comment-formwrap input[type="text"] { + width: 100%; + border-radius: 0; + vertical-align: middle; + margin-bottom: 10px; +} + +.comments-area .no-comments { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.comments-area p.logged-in-as { + margin-bottom: 1em; +} + +.comments-area #wp-comment-cookies-consent { + margin-right: 10px; +} + +.ast-separate-container .comments-count-wrapper { + background-color: #fff; + padding: 2em 6.67em 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .comments-count-wrapper { + padding: 2em 3.34em; + } +} + +.ast-separate-container .comments-area { + border-top: 0; +} + +.ast-separate-container .ast-comment-list { + padding-bottom: 0; +} + +.ast-separate-container .ast-comment-list li { + background-color: #fff; +} + +.ast-separate-container .ast-comment-list li.depth-1 { + padding: 4em 6.67em; + margin-bottom: 2em; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-comment-list li.depth-1 { + padding: 3em 3.34em; + } +} + +.ast-separate-container .ast-comment-list li.depth-1 .ast-comment { + border-bottom: 0; +} + +.ast-separate-container .ast-comment-list li.depth-1 .children li { + padding-bottom: 0; + padding-top: 0; + margin-bottom: 0; +} + +.ast-separate-container .ast-comment-list li.depth-1 .ast-comment, +.ast-separate-container .ast-comment-list li.depth-2 .ast-comment { + border-bottom: 0; +} + +.ast-separate-container .ast-comment-list .comment-respond { + padding-top: 0; + padding-bottom: 1em; + background-color: transparent; +} + +.ast-separate-container .ast-comment-list .pingback p { + margin-bottom: 0; +} + +.ast-separate-container .ast-comment-list .bypostauthor { + padding: 2em; + margin-bottom: 1em; +} + +.ast-separate-container .ast-comment-list .bypostauthor .bypostauthor { + background: transparent; + margin-bottom: 0; + padding-right: 0; + padding-bottom: 0; + padding-top: 0; +} + +.ast-separate-container .ast-comment-list .bypostauthor li { + background: transparent; + margin-bottom: 0; + padding: 0 0 0 2em; +} + +.ast-separate-container .comment-respond { + background-color: #fff; + padding: 4em 6.67em; + border-bottom: 0; +} + +@media (max-width: 1200px) { + .ast-separate-container .comment-respond { + padding: 3em 2.34em; + } +} + +.ast-separate-container .comment-reply-title { + padding-top: 0; +} + +.ast-page-builder-template .comments-area { + padding-left: 20px; + padding-right: 20px; + margin-top: 2em; + margin-bottom: 2em; +} + +/*-------------------------------------------------------------- +## Blog Paginations +--------------------------------------------------------------*/ +/* ============================================================ + NEXT PAGINATION +============================================================ */ +.post-navigation a, +.ast-pagination .prev.page-numbers, +.ast-pagination .next.page-numbers { + padding: 0 1.5em; + height: 2.33333em; + line-height: calc(2.33333em - 3px); +} + +.post-navigation a { + background: transparent; + font-size: 16px; + font-size: 1.06666rem; +} + +.ast-pagination { + display: inline-block; + width: 100%; + padding-top: 2em; +} + +@media (min-width: 993px) { + .ast-pagination { + padding-left: 3.33333em; + padding-right: 3.33333em; + } +} + +.ast-pagination .page-numbers { + display: inline-block; + width: 2.33333em; + height: 2.33333em; + font-size: 16px; + font-size: 1.06666rem; + line-height: calc(2.33333em - 3px); + text-align: center; +} + +.ast-pagination .nav-links { + display: inline-block; + width: 100%; +} + +@media (max-width: 420px) { + .ast-pagination .prev.page-numbers, + .ast-pagination .next.page-numbers { + width: 100%; + text-align: center; + margin: 0; + } +} + +.ast-pagination .prev.page-numbers, +.ast-pagination .prev.page-numbers:visited, +.ast-pagination .prev.page-numbers:focus, +.ast-pagination .next.page-numbers, +.ast-pagination .next.page-numbers:visited, +.ast-pagination .next.page-numbers:focus { + display: inline-block; + width: auto; +} + +@media (min-width: 769px) { + .ast-pagination .prev.page-numbers.next, + .ast-pagination .prev.page-numbers:visited.next, + .ast-pagination .prev.page-numbers:focus.next, + .ast-pagination .next.page-numbers.next, + .ast-pagination .next.page-numbers:visited.next, + .ast-pagination .next.page-numbers:focus.next { + margin-right: 0; + } +} + +.ast-pagination .prev.page-numbers.dots, .ast-pagination .prev.page-numbers.dots:hover, .ast-pagination .prev.page-numbers.dots:focus, +.ast-pagination .prev.page-numbers:visited.dots, +.ast-pagination .prev.page-numbers:visited.dots:hover, +.ast-pagination .prev.page-numbers:visited.dots:focus, +.ast-pagination .prev.page-numbers:focus.dots, +.ast-pagination .prev.page-numbers:focus.dots:hover, +.ast-pagination .prev.page-numbers:focus.dots:focus, +.ast-pagination .next.page-numbers.dots, +.ast-pagination .next.page-numbers.dots:hover, +.ast-pagination .next.page-numbers.dots:focus, +.ast-pagination .next.page-numbers:visited.dots, +.ast-pagination .next.page-numbers:visited.dots:hover, +.ast-pagination .next.page-numbers:visited.dots:focus, +.ast-pagination .next.page-numbers:focus.dots, +.ast-pagination .next.page-numbers:focus.dots:hover, +.ast-pagination .next.page-numbers:focus.dots:focus { + border: 2px solid #eaeaea; + background: transparent; +} + +.ast-pagination .prev.page-numbers.dots, +.ast-pagination .prev.page-numbers:visited.dots, +.ast-pagination .prev.page-numbers:focus.dots, +.ast-pagination .next.page-numbers.dots, +.ast-pagination .next.page-numbers:visited.dots, +.ast-pagination .next.page-numbers:focus.dots { + cursor: default; +} + +.ast-pagination .next.page-numbers { + float: right; + text-align: right; +} + +@media (max-width: 768px) { + .ast-pagination .next.page-numbers .page-navigation { + padding-right: 0; + } +} + +@media (max-width: 768px) { + .ast-pagination .prev_next { + display: inline-block; + width: 100%; + } +} + +.ast-pagination .prev_next .next .ast-right-arrow, +.ast-pagination .prev_next .prev .ast-left-arrow { + font-size: 1em; + line-height: 1em; +} + +@media (min-width: 769px) { + .ast-pagination .prev_next { + float: right; + } +} + +/*---------- 404 ----------*/ +.ast-404-layout-1 { + text-align: center; + margin: 4em auto; +} + +.ast-404-layout-1 .page-sub-title { + font-size: 1.5rem; + font-weight: bold; +} + +.ast-404-layout-1 .widget_search { + padding-top: 0.5em; +} + +.ast-404-search { + margin-top: 1.5em; +} + +.ast-404-search .widget_search { + max-width: 370px; + margin: 0 auto; +} + +.ast-separate-container .error-404, +.ast-separate-container .no-results { + background-color: #fff; +} + +@media (max-width: 1200px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + margin: 0; + padding: 3.34em 2.4em; + } +} + +@media (max-width: 768px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + padding: 1.5em 2.14em; + } +} + +@media (max-width: 544px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + padding: 1.5em 1em; + } +} + +@media (min-width: 1201px) { + .ast-separate-container .ast-404-layout-1, + .ast-separate-container .no-results { + margin: 0; + padding: 5.34em 6.67em; + } +} + +/*---------- Blog Styles ----------*/ +/*---------- Media Query min-width Structure ----------*/ +/*---------- Media Query max-width Structure ----------*/ +/*---------- Break-point min-width Structure ----------*/ +/*---------- Break-point max-width Structure ----------*/ +.blog-layout-1 { + width: 100%; + display: inline-block; + padding-bottom: 2em; + vertical-align: middle; + border-bottom: 1px solid #eeeeee; +} + +.blog-layout-1 .posted-on { + left: 0; +} + +.blog-layout-1 .post-thumb, +.blog-layout-1 .post-content { + padding-left: 0; + padding-right: 0; +} + +/*---------- Page Builders ----------*/ +/** + * Astra Theme compatibility with Beaver Builder + */ +.fl-builder-content { + clear: both; +} + +.fl-theme-builder-archive .fl-post-gallery-post.hentry, +.fl-theme-builder-archive .fl-post-column > .hentry { + margin: 0; +} + +.fl-theme-builder-archive h2.fl-post-feed-title { + clear: initial; +} + +.ast-fluid-width-layout .fl-row-fixed-width .fl-row-fixed-width { + padding-left: 0; + padding-right: 0; +} + +/** + * Astra Theme compatibility with Visual Composer + */ +.js_active .vc_row { + margin-left: auto; + margin-right: auto; +} + +.js_active .ast-plain-container.ast-single-post .hentry, +.js_active .ast-plain-container.ast-single-post #primary { + margin: 0; + padding-top: 0; + padding-bottom: 0; +} + +.js_active .ast-plain-container.ast-single-post .entry-header { + margin-top: 4em; +} + +.js_active .ast-plain-container.ast-single-post .entry-header.ast-header-without-markup { + margin-top: 0; + margin-bottom: 0; +} + +.js_active .ast-plain-container.ast-single-post .entry-header.ast-no-title.ast-no-meta { + margin-bottom: 0; +} + +@media (max-width: 768px) { + .js_active .ast-plain-container.ast-single-post .entry-header { + margin-top: 1.5em; + } +} + +@media (max-width: 768px) { + .js_active .ast-plain-container.ast-single-post #secondary { + margin-top: 1.5em; + } +} + +.js_active .ast-plain-container.ast-left-sidebar .vc_row[data-vc-full-width], .js_active .ast-plain-container.ast-right-sidebar .vc_row[data-vc-full-width], +.js_active .ast-page-builder-template.ast-left-sidebar .vc_row[data-vc-full-width], +.js_active .ast-page-builder-template.ast-right-sidebar .vc_row[data-vc-full-width] { + max-width: 100%; + left: 0 !important; +} + +.js_active .ast-left-sidebar .vc_row[data-vc-full-width], +.js_active .ast-right-sidebar .vc_row[data-vc-full-width] { + max-width: 100%; + left: 0 !important; + padding-right: 0 !important; + padding-left: 0 !important; +} + +/** + * Astra Theme compatibility with Elementor + */ +.ast-left-sidebar .elementor-section.elementor-section-stretched, +.ast-right-sidebar .elementor-section.elementor-section-stretched { + max-width: 100%; + left: 0 !important; +} + +.elementor-post.elementor-grid-item.hentry { + margin-bottom: 0; +} + +.elementor-element .elementor-wc-products .woocommerce[class*='columns-'] ul.products li.product { + width: auto; + margin: 0; + float: none; +} + +.woocommerce div.product .elementor-element.elementor-products-grid .related.products ul.products li.product { + width: auto; + margin: 0; + float: none; +} + +/** + * Flexbox Framework + * + * .ast - prefix + * + * Flex classes generated as {prefix} + {css property - css value} . + * + * E.g. Here '.ast' is a prefix. + * + * .ast-flex + * .ast-flex-1 + * .ast-flex-2 + * .ast-flex-3 + * .ast-flex-4 + * .ast-flex-5 + * .ast-inline-flex + * .ast-flex-direction-row + * .ast-flex-direction-row-reverse + * .ast-flex-direction-column + * .ast-flex-direction-column-reverse + * .ast-flex-wrap-nowrap + * .ast-flex-wrap-wrap + * .ast-flex-wrap-wrap-reverse + * .ast-justify-content-flex-start + * .ast-justify-content-flex-end + * .ast-justify-content-center + * .ast-justify-content-space-between + * .ast-justify-content-space-around + * .ast-align-items-flex-start + * .ast-align-items-flex-end + * .ast-align-items-center + * .ast-align-items-baseline + * .ast-align-items-stretch + * .ast-align-content-flex-start + * .ast-align-content-flex-end + * .ast-align-content-center + * .ast-align-content-space-between + * .ast-align-content-space-around + * .ast-align-content-stretch + * .ast-order-1 + * .ast-order-2 + * .ast-order-3 + * .ast-order-4 + * .ast-order-5 + * .ast-flex-grow-1 + * .ast-flex-grow-2 + * .ast-flex-grow-3 + * .ast-flex-grow-4 + * .ast-flex-grow-5 + * .ast-flex-shrink-grow-1 + * .ast-flex-shrink-grow-2 + * .ast-flex-shrink-grow-3 + * .ast-flex-shrink-grow-4 + * .ast-flex-shrink-grow-5 + * .ast-flex-basis-grow-1 + * .ast-flex-basis-grow-2 + * .ast-flex-basis-grow-3 + * .ast-flex-basis-grow-4 + * .ast-flex-basis-grow-5 + * .ast-align-self-auto + * .ast-align-self-flex-start + * .ast-align-self-flex-end + * .ast-align-self-center + * .ast-align-self-baseline + * .ast-align-self-stretch + */ +.ast { + /* + # LAYOUT + ———————————————- + display: flex | inline-flex; + ———————————————- + */ + /* + ————————————————————————– + # CONTAINER (for PARENT) + ————————————————————————– + + # FLOW + ————————————————————————– + flex-flow: <‘flex-direction’> || <‘flex-wrap’> + ————————————————————————– + + # DIRECTION + ————————————————————————– + flex-direction: row | row-reverse | column | column-reverse; + ————————————————————————– + */ + /* + # WRAP + ————————————————————————– + flex-wrap: nowrap | wrap | wrap-reverse; + ————————————————————————– + */ + /* + ————————————————————————– + # JUSTIFY CONTENT + ————————————————————————– + justify-content: flex-start | flex-end | center | space-between | space-around; + ————————————————————————– + */ + /* + ————————————————————————– + # ALIGN – ITEMS + ————————————————————————– + align-items: flex-start | flex-end | center | baseline | stretch; + ————————————————————————– + */ + /* + ————————————————————————– + # ALIGN – CONTENT + ————————————————————————– + align-content: flex-start | flex-end | center | space-between | space-around | stretch; + ————————————————————————– + */ + /* + ————————————————————————– + # ITEMS (for CHILDs) + ————————————————————————– + + # FLEX + ————————————————————————– + flex: none | [ <‘flex-grow’> <‘flex-shrink’>? || <‘flex-basis’> ] + ————————————————————————– + ————————————————————————– + + # ORDER + ————————————————————————– + order: ; + ————————————————————————– + */ + /* + ————————————————————————– + # GROW + ————————————————————————– + flex-grow: ; default 0 + ————————————————————————– + */ + /* + ————————————————————————– + # SHRINK + ————————————————————————– + flex-shrink: ; default 1 + ————————————————————————– + */ + /* + ————————————————————————– + # ALIGN SELF + ————————————————————————– + align-self: auto | flex-start | flex-end | center | baseline | stretch; + ————————————————————————– + */ + /* + ————————————————————————– + */ +} + +.ast-flex { + -js-display: flex; + display: flex; + flex-wrap: wrap; +} + +.ast-flex-1 { + flex: 1; +} + +.ast-flex-2 { + flex: 2; +} + +.ast-flex-3 { + flex: 3; +} + +.ast-flex-4 { + flex: 4; +} + +.ast-flex-5 { + flex: 5; +} + +.ast-inline-flex { + -js-display: inline-flex; + display: inline-flex; + align-items: center; + flex-wrap: wrap; + align-content: center; +} + +.ast-flex-direction-row { + flex-direction: row; +} + +.ast-flex-direction-row-reverse { + flex-direction: row-reverse; +} + +.ast-flex-direction-column { + flex-direction: column; +} + +.ast-flex-direction-column-reverse { + flex-direction: column-reverse; +} + +.ast-flex-wrap-nowrap { + flex-wrap: nowrap; +} + +.ast-flex-wrap-wrap { + flex-wrap: wrap; +} + +.ast-flex-wrap-wrap-reverse { + flex-wrap: wrap-reverse; +} + +.ast-justify-content-flex-start { + justify-content: flex-start; +} + +.ast-justify-content-flex-end { + justify-content: flex-end; +} + +.ast-justify-content-center { + justify-content: center; +} + +.ast-justify-content-space-between { + justify-content: space-between; +} + +.ast-justify-content-space-around { + justify-content: space-around; +} + +.ast-align-items-flex-start { + align-items: flex-start; +} + +.ast-align-items-flex-end { + align-items: flex-end; +} + +.ast-align-items-center { + align-items: center; +} + +.ast-align-items-baseline { + align-items: baseline; +} + +.ast-align-items-stretch { + align-items: stretch; +} + +.ast-align-content-flex-start { + align-content: flex-start; +} + +.ast-align-content-flex-end { + align-content: flex-end; +} + +.ast-align-content-center { + align-content: center; +} + +.ast-align-content-space-between { + align-content: space-between; +} + +.ast-align-content-space-around { + align-content: space-around; +} + +.ast-align-content-stretch { + align-content: stretch; +} + +.ast-order-1 { + order: 1; +} + +.ast-order-2 { + order: 2; +} + +.ast-order-3 { + order: 3; +} + +.ast-order-4 { + order: 4; +} + +.ast-order-5 { + order: 5; +} + +.ast-flex-grow-1 { + flex-grow: 1; +} + +.ast-flex-grow-2 { + flex-grow: 2; +} + +.ast-flex-grow-3 { + flex-grow: 3; +} + +.ast-flex-grow-4 { + flex-grow: 4; +} + +.ast-flex-grow-5 { + flex-grow: 5; +} + +.ast-flex-shrink-1 { + flex-shrink: 1; +} + +.ast-flex-shrink-2 { + flex-shrink: 2; +} + +.ast-flex-shrink-3 { + flex-shrink: 3; +} + +.ast-flex-shrink-4 { + flex-shrink: 4; +} + +.ast-flex-shrink-5 { + flex-shrink: 5; +} + +.ast-align-self-auto { + align-self: auto; +} + +.ast-align-self-flex-start { + align-self: flex-start; +} + +.ast-align-self-flex-end { + align-self: flex-end; +} + +.ast-align-self-center { + align-self: center; +} + +.ast-align-self-baseline { + align-self: baseline; +} + +.ast-align-self-stretch { + align-self: stretch; +} diff --git a/assets/css/unminified/style-rtl.css b/assets/css/unminified/style-rtl.css index 01be839..e38c953 100644 --- a/assets/css/unminified/style-rtl.css +++ b/assets/css/unminified/style-rtl.css @@ -1912,6 +1912,7 @@ input[type="submit"]:focus { .ast-search-menu-icon { position: relative; + z-index: 3; } .ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon { @@ -2406,7 +2407,7 @@ body { } .main-header-menu .menu-link, -.main-header-menu a { +.main-header-menu > a { text-decoration: none; padding: 0 1em; display: inline-block; @@ -3258,11 +3259,6 @@ body { outline: thin dotted; } -.socil-font { - float: right; - margin-left: 10px; -} - /** * 4 - Search Form & Main Header */ diff --git a/assets/css/unminified/style.css b/assets/css/unminified/style.css index 1319b63..72fdb24 100644 --- a/assets/css/unminified/style.css +++ b/assets/css/unminified/style.css @@ -1912,6 +1912,7 @@ input[type="submit"]:focus { .ast-search-menu-icon { position: relative; + z-index: 3; } .ast-header-break-point.ast-header-custom-item-outside .main-header-bar .ast-search-icon { @@ -2406,7 +2407,7 @@ body { } .main-header-menu .menu-link, -.main-header-menu a { +.main-header-menu > a { text-decoration: none; padding: 0 1em; display: inline-block; @@ -3258,11 +3259,6 @@ body { outline: thin dotted; } -.socil-font { - float: left; - margin-right: 10px; -} - /** * 4 - Search Form & Main Header */ diff --git a/assets/fonts/google-fonts.json b/assets/fonts/google-fonts.json new file mode 100644 index 0000000..0fc46c4 --- /dev/null +++ b/assets/fonts/google-fonts.json @@ -0,0 +1,10466 @@ +[ + { + "ABeeZee": { + "variants": [ + "regular", + "italic" + ], + "category": "sans-serif" + } + }, + { + "Abel": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Abhaya Libre": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "serif" + } + }, + { + "Abril Fatface": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Aclonica": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Acme": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Actor": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Adamina": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Advent Pro": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Aguafina Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Akronim": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Aladin": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Alata": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Alatsi": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Aldrich": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Alef": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Alegreya": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Alegreya SC": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Alegreya Sans": { + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Alegreya Sans SC": { + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Aleo": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Alex Brush": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Alfa Slab One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Alice": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Alike": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Alike Angular": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Allan": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Allerta": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Allerta Stencil": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Allura": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Almarai": { + "variants": [ + "300", + "regular", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Almendra": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Almendra Display": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Almendra SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Amarante": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Amaranth": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Amatic SC": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Amethysta": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Amiko": { + "variants": [ + "regular", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Amiri": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Amita": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Anaheim": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Andada": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Andika": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Angkor": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Annie Use Your Telescope": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Anonymous Pro": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "Antic": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Antic Didone": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Antic Slab": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Anton": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Arapey": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Arbutus": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Arbutus Slab": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Architects Daughter": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Archivo": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Archivo Black": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Archivo Narrow": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Aref Ruqaa": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Arima Madurai": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Arimo": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Arizonia": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Armata": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Arsenal": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Artifika": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Arvo": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Arya": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Asap": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Asap Condensed": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Asar": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Asset": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Assistant": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Astloch": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Asul": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Athiti": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Atma": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "display" + } + }, + { + "Atomic Age": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Aubrey": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Audiowide": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Autour One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Average": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Average Sans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Averia Gruesa Libre": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Averia Libre": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Averia Sans Libre": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Averia Serif Libre": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "B612": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "B612 Mono": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "Bad Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Bahiana": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bahianita": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bai Jamjuree": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Baloo 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Bhai 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Bhaina 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Chettan 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Da 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Paaji 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Tamma 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Tammudu 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Baloo Thambi 2": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Balsamiq Sans": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Balthazar": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Bangers": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Barlow": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Barlow Condensed": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Barlow Semi Condensed": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Barriecito": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Barrio": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Basic": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Baskervville": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Battambang": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Baumans": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bayon": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Be Vietnam": { + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Bebas Neue": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Belgrano": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Bellefair": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Belleza": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Bellota": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Bellota Text": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "BenchNine": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Bentham": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Berkshire Swash": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Beth Ellen": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Bevan": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Big Shoulders Display": { + "variants": [ + "100", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Big Shoulders Inline Display": { + "variants": [ + "100", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Big Shoulders Inline Text": { + "variants": [ + "100", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Big Shoulders Stencil Display": { + "variants": [ + "100", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Big Shoulders Stencil Text": { + "variants": [ + "100", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Big Shoulders Text": { + "variants": [ + "100", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Bigelow Rules": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bigshot One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bilbo": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Bilbo Swash Caps": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "BioRhyme": { + "variants": [ + "200", + "300", + "regular", + "700", + "800" + ], + "category": "serif" + } + }, + { + "BioRhyme Expanded": { + "variants": [ + "200", + "300", + "regular", + "700", + "800" + ], + "category": "serif" + } + }, + { + "Biryani": { + "variants": [ + "200", + "300", + "regular", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Bitter": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Black And White Picture": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Black Han Sans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Black Ops One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Blinker": { + "variants": [ + "100", + "200", + "300", + "regular", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Bokor": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bonbon": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Boogaloo": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bowlby One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bowlby One SC": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Brawler": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Bree Serif": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Bubblegum Sans": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bubbler One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Buda": { + "variants": [ + "300" + ], + "category": "display" + } + }, + { + "Buenard": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Bungee": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bungee Hairline": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bungee Inline": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bungee Outline": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Bungee Shade": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Butcherman": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Butterfly Kids": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Cabin": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Cabin Condensed": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Cabin Sketch": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Caesar Dressing": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Cagliostro": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Cairo": { + "variants": [ + "200", + "300", + "regular", + "600", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Caladea": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Calistoga": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Calligraffitti": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Cambay": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Cambo": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Candal": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Cantarell": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Cantata One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Cantora One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Capriola": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Cardo": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "serif" + } + }, + { + "Carme": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Carrois Gothic": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Carrois Gothic SC": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Carter One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Castoro": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Catamaran": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Caudex": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Caveat": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "handwriting" + } + }, + { + "Caveat Brush": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Cedarville Cursive": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Ceviche One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Chakra Petch": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Changa": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Changa One": { + "variants": [ + "regular", + "italic" + ], + "category": "display" + } + }, + { + "Chango": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Charm": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Charmonman": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Chathura": { + "variants": [ + "100", + "300", + "regular", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Chau Philomene One": { + "variants": [ + "regular", + "italic" + ], + "category": "sans-serif" + } + }, + { + "Chela One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Chelsea Market": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Chenla": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Cherry Cream Soda": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Cherry Swash": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Chewy": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Chicle": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Chilanka": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Chivo": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Chonburi": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Cinzel": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "serif" + } + }, + { + "Cinzel Decorative": { + "variants": [ + "regular", + "700", + "900" + ], + "category": "display" + } + }, + { + "Clicker Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Coda": { + "variants": [ + "regular", + "800" + ], + "category": "display" + } + }, + { + "Coda Caption": { + "variants": [ + "800" + ], + "category": "sans-serif" + } + }, + { + "Codystar": { + "variants": [ + "300", + "regular" + ], + "category": "display" + } + }, + { + "Coiny": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Combo": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Comfortaa": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "display" + } + }, + { + "Comic Neue": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "handwriting" + } + }, + { + "Coming Soon": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Commissioner": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Concert One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Condiment": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Content": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Contrail One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Convergence": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Cookie": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Copse": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Corben": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Cormorant": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Cormorant Garamond": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Cormorant Infant": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Cormorant SC": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Cormorant Unicase": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Cormorant Upright": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Courgette": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Courier Prime": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "Cousine": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "Coustard": { + "variants": [ + "regular", + "900" + ], + "category": "serif" + } + }, + { + "Covered By Your Grace": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Crafty Girls": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Creepster": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Crete Round": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Crimson Pro": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Crimson Text": { + "variants": [ + "regular", + "italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Croissant One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Crushed": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Cuprum": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Cute Font": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Cutive": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Cutive Mono": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "DM Mono": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic" + ], + "category": "monospace" + } + }, + { + "DM Sans": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "DM Serif Display": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "DM Serif Text": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Damion": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Dancing Script": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "handwriting" + } + }, + { + "Dangrek": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Darker Grotesque": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "David Libre": { + "variants": [ + "regular", + "500", + "700" + ], + "category": "serif" + } + }, + { + "Dawning of a New Day": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Days One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Dekko": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Delius": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Delius Swash Caps": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Delius Unicase": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Della Respira": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Denk One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Devonshire": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Dhurjati": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Didact Gothic": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Diplomata": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Diplomata SC": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Do Hyeon": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Dokdo": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Domine": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Donegal One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Doppio One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Dorsa": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Dosis": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Dr Sugiyama": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Duru Sans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Dynalight": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "EB Garamond": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "category": "serif" + } + }, + { + "Eagle Lake": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "East Sea Dokdo": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Eater": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Economica": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Eczar": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "serif" + } + }, + { + "El Messiri": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Electrolize": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Elsie": { + "variants": [ + "regular", + "900" + ], + "category": "display" + } + }, + { + "Elsie Swash Caps": { + "variants": [ + "regular", + "900" + ], + "category": "display" + } + }, + { + "Emblema One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Emilys Candy": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Encode Sans": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Encode Sans Condensed": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Encode Sans Expanded": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Encode Sans Semi Condensed": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Encode Sans Semi Expanded": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Engagement": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Englebert": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Enriqueta": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Epilogue": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Erica One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Esteban": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Euphoria Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Ewert": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Exo": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Exo 2": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Expletus Sans": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Fahkwang": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Fanwood Text": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Farro": { + "variants": [ + "300", + "regular", + "500", + "700" + ], + "category": "sans-serif" + } + }, + { + "Farsan": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fascinate": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fascinate Inline": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Faster One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fasthand": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Fauna One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Faustina": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "serif" + } + }, + { + "Federant": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Federo": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Felipa": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Fenix": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Finger Paint": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fira Code": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "monospace" + } + }, + { + "Fira Mono": { + "variants": [ + "regular", + "500", + "700" + ], + "category": "monospace" + } + }, + { + "Fira Sans": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Fira Sans Condensed": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Fira Sans Extra Condensed": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Fjalla One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Fjord One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Flamenco": { + "variants": [ + "300", + "regular" + ], + "category": "display" + } + }, + { + "Flavors": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fondamento": { + "variants": [ + "regular", + "italic" + ], + "category": "handwriting" + } + }, + { + "Fontdiner Swanky": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Forum": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Francois One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Frank Ruhl Libre": { + "variants": [ + "300", + "regular", + "500", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Freckle Face": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fredericka the Great": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fredoka One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Freehand": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fresca": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Frijole": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fruktur": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Fugaz One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "GFS Didot": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "GFS Neohellenic": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Gabriela": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Gaegu": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Gafata": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Galada": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Galdeano": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Galindo": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Gamja Flower": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Gayathri": { + "variants": [ + "100", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Gelasio": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Gentium Basic": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Gentium Book Basic": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Geo": { + "variants": [ + "regular", + "italic" + ], + "category": "sans-serif" + } + }, + { + "Geostar": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Geostar Fill": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Germania One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Gidugu": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Gilda Display": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Girassol": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Give You Glory": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Glass Antiqua": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Glegoo": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Gloria Hallelujah": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Goblin One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Gochi Hand": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Goldman": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Gorditas": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Gothic A1": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Gotu": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Goudy Bookletter 1911": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Graduate": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Grand Hotel": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Grandstander": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "display" + } + }, + { + "Gravitas One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Great Vibes": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Grenze": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Grenze Gotisch": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Griffy": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Gruppo": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Gudea": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "sans-serif" + } + }, + { + "Gugi": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Gupter": { + "variants": [ + "regular", + "500", + "700" + ], + "category": "serif" + } + }, + { + "Gurajada": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Habibi": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Halant": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Hammersmith One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Hanalei": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Hanalei Fill": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Handlee": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Hanuman": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Happy Monkey": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Harmattan": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Headland One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Heebo": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Henny Penny": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Hepta Slab": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "serif" + } + }, + { + "Herr Von Muellerhoff": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Hi Melody": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Hind": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Hind Guntur": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Hind Madurai": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Hind Siliguri": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Hind Vadodara": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Holtwood One SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Homemade Apple": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Homenaje": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "IBM Plex Mono": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "IBM Plex Sans": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "IBM Plex Sans Condensed": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "IBM Plex Serif": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "IM Fell DW Pica": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "IM Fell DW Pica SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "IM Fell Double Pica": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "IM Fell Double Pica SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "IM Fell English": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "IM Fell English SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "IM Fell French Canon": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "IM Fell French Canon SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "IM Fell Great Primer": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "IM Fell Great Primer SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Ibarra Real Nova": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "serif" + } + }, + { + "Iceberg": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Iceland": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Imprima": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Inconsolata": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "monospace" + } + }, + { + "Inder": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Indie Flower": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Inika": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Inknut Antiqua": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "serif" + } + }, + { + "Inria Sans": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Inria Serif": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Inter": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Irish Grover": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Istok Web": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Italiana": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Italianno": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Itim": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Jacques Francois": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Jacques Francois Shadow": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Jaldi": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Jim Nightshade": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Jockey One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Jolly Lodger": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Jomhuria": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Jomolhari": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Josefin Sans": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Josefin Slab": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "serif" + } + }, + { + "Jost": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Joti One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Jua": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Judson": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "serif" + } + }, + { + "Julee": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Julius Sans One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Junge": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Jura": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Just Another Hand": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Just Me Again Down Here": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "K2D": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Kadwa": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Kalam": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Kameron": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Kanit": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Kantumruy": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Karla": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Karma": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Katibeh": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kaushan Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Kavivanar": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Kavoon": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kdam Thmor": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Keania One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kelly Slab": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kenia": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Khand": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Khmer": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Khula": { + "variants": [ + "300", + "regular", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Kirang Haerang": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kite One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Knewave": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "KoHo": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Kodchasan": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Kosugi": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Kosugi Maru": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Kotta One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Koulen": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kranky": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kreon": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Kristi": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Krona One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Krub": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Kufam": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "display" + } + }, + { + "Kulim Park": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Kumar One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kumar One Outline": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Kumbh Sans": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Kurale": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "La Belle Aurore": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Lacquer": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Laila": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Lakki Reddy": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Lalezar": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Lancelot": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Lateef": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Lato": { + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "League Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Leckerli One": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Ledger": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Lekton": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "sans-serif" + } + }, + { + "Lemon": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Lemonada": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "display" + } + }, + { + "Lexend Deca": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Lexend Exa": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Lexend Giga": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Lexend Mega": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Lexend Peta": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Lexend Tera": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Lexend Zetta": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Libre Barcode 128": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Barcode 128 Text": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Barcode 39": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Barcode 39 Extended": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Barcode 39 Extended Text": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Barcode 39 Text": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Barcode EAN13 Text": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Libre Baskerville": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "serif" + } + }, + { + "Libre Caslon Display": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Libre Caslon Text": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "serif" + } + }, + { + "Libre Franklin": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Life Savers": { + "variants": [ + "regular", + "700", + "800" + ], + "category": "display" + } + }, + { + "Lilita One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Lily Script One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Limelight": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Linden Hill": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Literata": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Liu Jian Mao Cao": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Livvic": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Lobster": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Lobster Two": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Londrina Outline": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Londrina Shadow": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Londrina Sketch": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Londrina Solid": { + "variants": [ + "100", + "300", + "regular", + "900" + ], + "category": "display" + } + }, + { + "Long Cang": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Lora": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "serif" + } + }, + { + "Love Ya Like A Sister": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Loved by the King": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Lovers Quarrel": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Luckiest Guy": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Lusitana": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Lustria": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "M PLUS 1p": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "M PLUS Rounded 1c": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Ma Shan Zheng": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Macondo": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Macondo Swash Caps": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Mada": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Magra": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Maiden Orange": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Maitree": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Major Mono Display": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "Mako": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Mali": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "handwriting" + } + }, + { + "Mallanna": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Mandali": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Manjari": { + "variants": [ + "100", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Manrope": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Mansalva": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Manuale": { + "variants": [ + "regular", + "500", + "600", + "700", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "serif" + } + }, + { + "Marcellus": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Marcellus SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Marck Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Margarine": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Markazi Text": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Marko One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Marmelad": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Martel": { + "variants": [ + "200", + "300", + "regular", + "600", + "700", + "800", + "900" + ], + "category": "serif" + } + }, + { + "Martel Sans": { + "variants": [ + "200", + "300", + "regular", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Marvel": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Mate": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Mate SC": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Maven Pro": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "McLaren": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Meddon": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "MedievalSharp": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Medula One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Meera Inimai": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Megrim": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Meie Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Merienda": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Merienda One": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Merriweather": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Merriweather Sans": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Metal": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Metal Mania": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Metamorphous": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Metrophobic": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Michroma": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Milonga": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Miltonian": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Miltonian Tattoo": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Mina": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Miniver": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Miriam Libre": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Mirza": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "display" + } + }, + { + "Miss Fajardose": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Mitr": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Modak": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Modern Antiqua": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Mogra": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Molengo": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Molle": { + "variants": [ + "italic" + ], + "category": "handwriting" + } + }, + { + "Monda": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Monofett": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Monoton": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Monsieur La Doulaise": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Montaga": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Montez": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Montserrat": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Montserrat Alternates": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Montserrat Subrayada": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Moul": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Moulpali": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Mountains of Christmas": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Mouse Memoirs": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Mr Bedfort": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Mr Dafoe": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Mr De Haviland": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Mrs Saint Delafield": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Mrs Sheppards": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Mukta": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Mukta Mahee": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Mukta Malar": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Mukta Vaani": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Mulish": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "MuseoModerno": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Mystery Quest": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "NTR": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Nanum Brush Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Nanum Gothic": { + "variants": [ + "regular", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Nanum Gothic Coding": { + "variants": [ + "regular", + "700" + ], + "category": "monospace" + } + }, + { + "Nanum Myeongjo": { + "variants": [ + "regular", + "700", + "800" + ], + "category": "serif" + } + }, + { + "Nanum Pen Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Nerko One": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Neucha": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Neuton": { + "variants": [ + "200", + "300", + "regular", + "italic", + "700", + "800" + ], + "category": "serif" + } + }, + { + "New Rocker": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "News Cycle": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Niconne": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Niramit": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Nixie One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nobile": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Nokora": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Norican": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Nosifer": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Notable": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Nothing You Could Do": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Noticia Text": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Noto Sans": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Noto Sans HK": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Noto Sans JP": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Noto Sans KR": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Noto Sans SC": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Noto Sans TC": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Noto Serif": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Noto Serif JP": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Noto Serif KR": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Noto Serif SC": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Noto Serif TC": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Nova Cut": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nova Flat": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nova Mono": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "Nova Oval": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nova Round": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nova Script": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nova Slim": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Nova Square": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Numans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Nunito": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Nunito Sans": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Odibee Sans": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Odor Mean Chey": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Offside": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Old Standard TT": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "serif" + } + }, + { + "Oldenburg": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Oleo Script": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Oleo Script Swash Caps": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Open Sans": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Open Sans Condensed": { + "variants": [ + "300", + "300italic", + "700" + ], + "category": "sans-serif" + } + }, + { + "Oranienbaum": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Orbitron": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Oregano": { + "variants": [ + "regular", + "italic" + ], + "category": "display" + } + }, + { + "Orienta": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Original Surfer": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Oswald": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Over the Rainbow": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Overlock": { + "variants": [ + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "display" + } + }, + { + "Overlock SC": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Overpass": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Overpass Mono": { + "variants": [ + "300", + "regular", + "600", + "700" + ], + "category": "monospace" + } + }, + { + "Ovo": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Oxanium": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "display" + } + }, + { + "Oxygen": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Oxygen Mono": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "PT Mono": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "PT Sans": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "PT Sans Caption": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "PT Sans Narrow": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "PT Serif": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "PT Serif Caption": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Pacifico": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Padauk": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Palanquin": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Palanquin Dark": { + "variants": [ + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Pangolin": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Paprika": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Parisienne": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Passero One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Passion One": { + "variants": [ + "regular", + "700", + "900" + ], + "category": "display" + } + }, + { + "Pathway Gothic One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Patrick Hand": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Patrick Hand SC": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Pattaya": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Patua One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Pavanam": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Paytone One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Peddana": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Peralta": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Permanent Marker": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Petit Formal Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Petrona": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Philosopher": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Piazzolla": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Piedra": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Pinyon Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Pirata One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Plaster": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Play": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Playball": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Playfair Display": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Playfair Display SC": { + "variants": [ + "regular", + "italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Podkova": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "serif" + } + }, + { + "Poiret One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Poller One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Poly": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Pompiere": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Pontano Sans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Poor Story": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Poppins": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Port Lligat Sans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Port Lligat Slab": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Pragati Narrow": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Prata": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Preahvihear": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Press Start 2P": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Pridi": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Princess Sofia": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Prociono": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Prompt": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Prosto One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Proza Libre": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Public Sans": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Puritan": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Purple Purse": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Quando": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Quantico": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Quattrocento": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Quattrocento Sans": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Questrial": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Quicksand": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Quintessential": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Qwigley": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Racing Sans One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Radley": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Rajdhani": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Rakkas": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Raleway": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Raleway Dots": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Ramabhadra": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Ramaraja": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Rambla": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Rammetto One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Ranchers": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Rancho": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Ranga": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Rasa": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "Rationale": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Ravi Prakash": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Recursive": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Red Hat Display": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Red Hat Text": { + "variants": [ + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Red Rose": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "display" + } + }, + { + "Redressed": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Reem Kufi": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Reenie Beanie": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Revalia": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Rhodium Libre": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Ribeye": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Ribeye Marrow": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Righteous": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Risque": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Roboto": { + "variants": [ + "100", + "100italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Roboto Condensed": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Roboto Mono": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "monospace" + } + }, + { + "Roboto Slab": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "serif" + } + }, + { + "Rochester": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Rock Salt": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Rokkitt": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "serif" + } + }, + { + "Romanesco": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Ropa Sans": { + "variants": [ + "regular", + "italic" + ], + "category": "sans-serif" + } + }, + { + "Rosario": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "300italic", + "italic", + "500italic", + "600italic", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Rosarivo": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Rouge Script": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Rowdies": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "display" + } + }, + { + "Rozha One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Rubik": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Rubik Mono One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Ruda": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Rufina": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Ruge Boogie": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Ruluko": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Rum Raisin": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Ruslan Display": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Russo One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Ruthie": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Rye": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sacramento": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Sahitya": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Sail": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Saira": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Saira Condensed": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Saira Extra Condensed": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Saira Semi Condensed": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Saira Stencil One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Salsa": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sanchez": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Sancreek": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sansita": { + "variants": [ + "regular", + "italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Sansita Swashed": { + "variants": [ + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "display" + } + }, + { + "Sarabun": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "sans-serif" + } + }, + { + "Sarala": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Sarina": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sarpanch": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Satisfy": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Sawarabi Gothic": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Sawarabi Mincho": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Scada": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Scheherazade": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Schoolbell": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Scope One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Seaweed Script": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Secular One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Sedgwick Ave": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Sedgwick Ave Display": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Sen": { + "variants": [ + "regular", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Sevillana": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Seymour One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Shadows Into Light": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Shadows Into Light Two": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Shanti": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Share": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "display" + } + }, + { + "Share Tech": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Share Tech Mono": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "Shojumaru": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Short Stack": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Shrikhand": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Siemreap": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sigmar One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Signika": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Signika Negative": { + "variants": [ + "300", + "regular", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Simonetta": { + "variants": [ + "regular", + "italic", + "900", + "900italic" + ], + "category": "display" + } + }, + { + "Single Day": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sintony": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Sirin Stencil": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Six Caps": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Skranji": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Slabo 13px": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Slabo 27px": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Slackey": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Smokum": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Smythe": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sniglet": { + "variants": [ + "regular", + "800" + ], + "category": "display" + } + }, + { + "Snippet": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Snowburst One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sofadi One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sofia": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Solway": { + "variants": [ + "300", + "regular", + "500", + "700", + "800" + ], + "category": "serif" + } + }, + { + "Song Myung": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Sonsie One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sora": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Sorts Mill Goudy": { + "variants": [ + "regular", + "italic" + ], + "category": "serif" + } + }, + { + "Source Code Pro": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "monospace" + } + }, + { + "Source Sans Pro": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Source Serif Pro": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Space Grotesk": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Space Mono": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "Spartan": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Special Elite": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Spectral": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "serif" + } + }, + { + "Spectral SC": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic" + ], + "category": "serif" + } + }, + { + "Spicy Rice": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Spinnaker": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Spirax": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Squada One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sree Krushnadevaraya": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Sriracha": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Srisakdi": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Staatliches": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Stalemate": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Stalinist One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Stardos Stencil": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Stint Ultra Condensed": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Stint Ultra Expanded": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Stoke": { + "variants": [ + "300", + "regular" + ], + "category": "serif" + } + }, + { + "Strait": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Stylish": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Sue Ellen Francisco": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Suez One": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Sulphur Point": { + "variants": [ + "300", + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Sumana": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Sunflower": { + "variants": [ + "300", + "500", + "700" + ], + "category": "sans-serif" + } + }, + { + "Sunshiney": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Supermercado One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Sura": { + "variants": [ + "regular", + "700" + ], + "category": "serif" + } + }, + { + "Suranna": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Suravaram": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Suwannaphum": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Swanky and Moo Moo": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Syncopate": { + "variants": [ + "regular", + "700" + ], + "category": "sans-serif" + } + }, + { + "Syne": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Syne Mono": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "Syne Tactile": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Tajawal": { + "variants": [ + "200", + "300", + "regular", + "500", + "700", + "800", + "900" + ], + "category": "sans-serif" + } + }, + { + "Tangerine": { + "variants": [ + "regular", + "700" + ], + "category": "handwriting" + } + }, + { + "Taprom": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Tauri": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Taviraj": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Teko": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Telex": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Tenali Ramakrishna": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Tenor Sans": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Text Me One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Texturina": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Thasadith": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "The Girl Next Door": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Tienne": { + "variants": [ + "regular", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Tillana": { + "variants": [ + "regular", + "500", + "600", + "700", + "800" + ], + "category": "handwriting" + } + }, + { + "Timmana": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Tinos": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Titan One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Titillium Web": { + "variants": [ + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "600", + "600italic", + "700", + "700italic", + "900" + ], + "category": "sans-serif" + } + }, + { + "Tomorrow": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Trade Winds": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Trirong": { + "variants": [ + "100", + "100italic", + "200", + "200italic", + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic", + "800", + "800italic", + "900", + "900italic" + ], + "category": "serif" + } + }, + { + "Trispace": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800" + ], + "category": "sans-serif" + } + }, + { + "Trocchi": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Trochut": { + "variants": [ + "regular", + "italic", + "700" + ], + "category": "display" + } + }, + { + "Trykker": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Tulpen One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Turret Road": { + "variants": [ + "200", + "300", + "regular", + "500", + "700", + "800" + ], + "category": "display" + } + }, + { + "Ubuntu": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "700", + "700italic" + ], + "category": "sans-serif" + } + }, + { + "Ubuntu Condensed": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Ubuntu Mono": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "monospace" + } + }, + { + "Ultra": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Uncial Antiqua": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Underdog": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Unica One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "UnifrakturCook": { + "variants": [ + "700" + ], + "category": "display" + } + }, + { + "UnifrakturMaguntia": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Unkempt": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + }, + { + "Unlock": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Unna": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "VT323": { + "variants": [ + "regular" + ], + "category": "monospace" + } + }, + { + "Vampiro One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Varela": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Varela Round": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Varta": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Vast Shadow": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Vesper Libre": { + "variants": [ + "regular", + "500", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Viaoda Libre": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Vibes": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Vibur": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Vidaloka": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Viga": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Voces": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Volkhov": { + "variants": [ + "regular", + "italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Vollkorn": { + "variants": [ + "regular", + "500", + "600", + "700", + "800", + "900", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "serif" + } + }, + { + "Vollkorn SC": { + "variants": [ + "regular", + "600", + "700", + "900" + ], + "category": "serif" + } + }, + { + "Voltaire": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Waiting for the Sunrise": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Wallpoet": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Walter Turncoat": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Warnes": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Wellfleet": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Wendy One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Wire One": { + "variants": [ + "regular" + ], + "category": "sans-serif" + } + }, + { + "Work Sans": { + "variants": [ + "100", + "200", + "300", + "regular", + "500", + "600", + "700", + "800", + "900", + "100italic", + "200italic", + "300italic", + "italic", + "500italic", + "600italic", + "700italic", + "800italic", + "900italic" + ], + "category": "sans-serif" + } + }, + { + "Xanh Mono": { + "variants": [ + "regular", + "italic" + ], + "category": "monospace" + } + }, + { + "Yanone Kaffeesatz": { + "variants": [ + "200", + "300", + "regular", + "500", + "600", + "700" + ], + "category": "sans-serif" + } + }, + { + "Yantramanav": { + "variants": [ + "100", + "300", + "regular", + "500", + "700", + "900" + ], + "category": "sans-serif" + } + }, + { + "Yatra One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Yellowtail": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Yeon Sung": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Yeseva One": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "Yesteryear": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Yrsa": { + "variants": [ + "300", + "regular", + "500", + "600", + "700" + ], + "category": "serif" + } + }, + { + "ZCOOL KuaiLe": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "ZCOOL QingKe HuangYou": { + "variants": [ + "regular" + ], + "category": "display" + } + }, + { + "ZCOOL XiaoWei": { + "variants": [ + "regular" + ], + "category": "serif" + } + }, + { + "Zeyada": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Zhi Mang Xing": { + "variants": [ + "regular" + ], + "category": "handwriting" + } + }, + { + "Zilla Slab": { + "variants": [ + "300", + "300italic", + "regular", + "italic", + "500", + "500italic", + "600", + "600italic", + "700", + "700italic" + ], + "category": "serif" + } + }, + { + "Zilla Slab Highlight": { + "variants": [ + "regular", + "700" + ], + "category": "display" + } + } +] \ No newline at end of file diff --git a/assets/js/minified/customizer-dependency.min.js b/assets/js/minified/customizer-dependency.min.js index f5561c9..d99154c 100644 --- a/assets/js/minified/customizer-dependency.min.js +++ b/assets/js/minified/customizer-dependency.min.js @@ -1 +1 @@ -!function(o){"use strict";var u=wp.customize,e={controls:{},init:function(){var i=this;i.handleDependency(),i.hideEmptySections(),u.bind("change",function(e,n){i.hasDependentControls(e.id)&&(i.handleDependency(),i.hideEmptySections())})},hasDependentControls:function(a){var s=!1;return o.each(astra.config,function(e,n){if(_.isUndefined(n.conditions)){var i=n[0];if(a==i)return void(s=!0)}else{var t=n.conditions;o.each(t,function(e,n){var i=n[0];a!=i||(s=!0)})}}),s},handleDependency:function(){var t=this,e=u.get();t.checked_controls={},_.each(e,function(e,n){var i=u.control(n);t.checkControlVisibility(i,n)})},checkControlVisibility:function(e,n){var i=u.get();if(!_.isUndefined(e)&&void 0!==astra.config[n]){var t=!1,a=astra.config[n],s=_.isUndefined(a.conditions)?a:a.conditions,o=_.isUndefined(a.operator)?"AND":a.operator;void 0!==s&&(t=this.checkDependency(s,i,o),(this.checked_controls[n]=t)?e.container.removeClass("ast-hide"):e.container.addClass("ast-hide"))}},checkDependency:function(e,r,d){var f=this,l=!0,h=!1,n=e[0];if(_.isString(n)){var i,t=e[1],a=e[2];if(!_.isUndefined(astra.config[n])){e=_.isUndefined(astra.config[n].conditions)?astra.config[n]:astra.config[n].conditions;var s=_.isUndefined(astra.config[n].operator)?"AND":astra.config[n].operator;if(!_.isUndefined(e))if(f.checkDependency(e,r,s))u.control(n).container.removeClass("ast-hide");else if(l=!(h=!0),"AND"==d)return}_.isUndefined(r[n])||h||!l||(i=r[n],l=f.compareValues(i,t,a))}else _.isArray(n)&&(o.each(e,function(e,n){var i=n[0],t=n[1],a=n[2],s=_.isUndefined(r[i])?"":r[i];if(void 0!==astra.config[i]){var o=_.isUndefined(astra.config[i].conditions)?astra.config[i]:astra.config[i].conditions,c=_.isUndefined(astra.config[i].operator)?"AND":astra.config[i].operator;if(!_.isUndefined(o))if(f.checkDependency(o,r,c))l=!0,u.control(i).container.removeClass("ast-hide");else if(l=!1,"AND"==d)return}else l=!0;if(l)if("AND"==d){if(!f.compareValues(s,t,a))return l=!1}else l=!!f.compareValues(s,t,a)&&(h=!0)}),h&&"OR"==d&&(l=!0));return l},hideEmptySections:function(){o("ul.accordion-section.control-section-ast_section").each(function(){var e=o(this).attr("id"),n=!1,i=o(this).find(" > .customize-control");0":t=i=":t=i<=e;break;case"!=":t=e!=i;break;case"empty":var a=_.clone(e);t=_.isObject(a)||_.isArray(a)?(_.each(a,function(e,n){_.isEmpty(e)&&delete a[n]}),!!_.isEmpty(a)):!(!_.isNull(a)&&""!=a);break;case"not_empty":a=_.clone(e);(_.isObject(a)||_.isArray(a))&&_.each(a,function(e,n){_.isEmpty(e)&&delete a[n]}),t=!_.isEmpty(a);break;case"contains":_.isArray(e)&&-1!==o.inArray(i,e)&&(t=!0);break;default:t=_.isArray(i)?!_.isEmpty(i)&&!_.isEmpty(e)&&_.contains(i,e):e==i}return t}};o(function(){e.init()})}(jQuery); \ No newline at end of file +!function(o){"use strict";function e(){n.handleDependency()}var h=wp.customize,n={controls:{},init:function(){var i=this;i.handleDependency(),i.hideEmptySections(),h.state("astra-customizer-tab").bind(e),h.bind("change",function(e,n){i.hasDependentControls(e.id)&&(i.handleDependency(),i.hideEmptySections())})},hasDependentControls:function(t){var a=!1;return o.each(astra.config,function(e,n){if(_.isUndefined(n.conditions)){var i=n[0];if(t==i)return void(a=!0)}else{n=n.conditions;o.each(n,function(e,n){n=n[0];t!=n||(a=!0)})}}),a},handleDependency:function(){var t=this,e=h.get();t.checked_controls={},_.each(e,function(e,n){var i=h.control(n);t.checkControlVisibility(i,n)})},checkControlVisibility:function(e,n){var i,t,a,s,o=h.get();_.isUndefined(e)||void 0!==astra.config[n]&&(t=!(i=!1),s=astra.config[n],a=_.isUndefined(s.conditions)?s:s.conditions,s=_.isUndefined(s.operator)?"AND":s.operator,void 0!==a&&(i=this.checkDependency(a,o,s),t=this.checkContext(n),this.checked_controls[n]=i&&t,i&&t?e.container.removeClass("ast-hide"):e.container.addClass("ast-hide")))},checkContext:function(e){if("undefined"!=typeof AstraBuilderCustomizerData){var n=AstraBuilderCustomizerData.contexts[e];if(void 0!==n){var i=h.state("astra-customizer-tab").get(),e=0;return e .customize-control");0":t=i=":t=i<=e;break;case"!=":t=e!=i;break;case"empty":var a=_.clone(e),t=_.isObject(a)||_.isArray(a)?(_.each(a,function(e,n){_.isEmpty(e)&&delete a[n]}),!!_.isEmpty(a)):!(!_.isNull(a)&&""!=a);break;case"not_empty":a=_.clone(e);(_.isObject(a)||_.isArray(a))&&_.each(a,function(e,n){_.isEmpty(e)&&delete a[n]}),t=!_.isEmpty(a);break;case"contains":_.isArray(e)&&-1!==o.inArray(i,e)&&(t=!0);break;default:t=_.isArray(i)?!_.isEmpty(i)&&!_.isEmpty(e)&&_.contains(i,e):e==i}return t}};o(function(){window.addEventListener("load",function(){n.init()})})}(jQuery); \ No newline at end of file diff --git a/assets/js/minified/customizer-preview.min.js b/assets/js/minified/customizer-preview.min.js index 5dbf2ac..33b83b2 100644 --- a/assets/js/minified/customizer-preview.min.js +++ b/assets/js/minified/customizer-preview.min.js @@ -1 +1 @@ -function astra_font_size_rem(t,e,o){var n="";if(""!=t){o=null!=typeof o?o:"desktop";if(n="font-size: "+t+"px;",e){var s=wp.customize("astra-settings[font-size-body]").get();s.desktop=""!=s.desktop?s.desktop:15,s.tablet=""!=s.tablet?s.tablet:s.desktop,s.mobile=""!=s.mobile?s.mobile:s.tablet,n+="font-size: "+t/s[o]+"rem;"}}return n}function astra_color_responsive_css(s,a,r,i){wp.customize(a,function(t){t.bind(function(t){if(t.desktop||t.mobile||t.tablet){a=(a=a.replace("[","-")).replace("]",""),jQuery("style#"+a+"-"+s).remove();var e="",o="",n="";""!=t.desktop&&(e=r+": "+t.desktop),""!=t.tablet&&(o=r+": "+t.tablet),""!=t.mobile&&(n=r+": "+t.mobile),jQuery("head").append('")}else wp.customize.preview.send("refresh"),jQuery("style#"+a+"-"+s).remove()})})}function astra_responsive_font_size(a,r){wp.customize(a,function(t){t.bind(function(t){if(t.desktop||t.mobile||t.tablet){a=(a=a.replace("[","-")).replace("]",""),jQuery("style#"+a+"-"+s).remove();var e="",o="",n="",s="font-size";""!=t.desktop&&(e="font-size: "+t.desktop+t["desktop-unit"]),""!=t.tablet&&(o="font-size: "+t.tablet+t["tablet-unit"]),""!=t.mobile&&(n="font-size: "+t.mobile+t["mobile-unit"]),"px"==t["desktop-unit"]&&(e=astra_font_size_rem(t.desktop,!0,"desktop")),jQuery("head").append('")}else jQuery("style#"+a).remove()})})}function astra_responsive_spacing(i,u,m,c){wp.customize(i,function(t){t.bind(function(o){var t="",n="padding";if(o.desktop.top||o.desktop.right||o.desktop.bottom||o.desktop.left||o.tablet.top||o.tablet.right||o.tablet.bottom||o.tablet.left||o.mobile.top||o.mobile.right||o.mobile.bottom||o.mobile.left){null!=typeof c&&(t=(t=c+"").replace(/,/g,"-")),null!=typeof m&&(n=m+""),i=(i=i.replace("[","-")).replace("]",""),jQuery("style#"+i+"-"+n+"-"+t).remove();var s="",a="",r="",e=null!=typeof c?c:["top","bottom","right","left"];jQuery.each(e,function(t,e){""!=o.desktop[e]&&(s+=n+"-"+e+": "+o.desktop[e]+o["desktop-unit"]+";")}),jQuery.each(e,function(t,e){""!=o.tablet[e]&&(a+=n+"-"+e+": "+o.tablet[e]+o["tablet-unit"]+";")}),jQuery.each(e,function(t,e){""!=o.mobile[e]&&(r+=n+"-"+e+": "+o.mobile[e]+o["mobile-unit"]+";")}),jQuery("head").append('")}else wp.customize.preview.send("refresh"),jQuery("style#"+i+"-"+n+"-"+t).remove()})})}function astra_css_font_size(o,n){wp.customize(o,function(t){t.bind(function(t){if(t){o=(o=o.replace("[","-")).replace("]",""),jQuery("style#"+o).remove();var e="font-size: "+t;(!isNaN(t)||0<=t.indexOf("px"))&&(e=astra_font_size_rem(t=t.replace("px",""),!0)),jQuery("head").append('")}else jQuery("style#"+o).remove()})})}function get_hexdec(t){var e=t.toString(16);return parseInt(e,16)}function astra_css(e,o,n,s){wp.customize(e,function(t){t.bind(function(t){e=(e=e.replace("[","-")).replace("]",""),t?(void 0!==s&&("url"===s?t="url("+t+")":t+=s),jQuery("style#"+e+"-"+o).remove(),jQuery("head").append('")):jQuery("style#"+e).remove()})})}function astra_add_dynamic_css(t,e){t=(t=t.replace("[","-")).replace("]",""),jQuery("style#"+t).remove(),jQuery("head").append('")}function astra_background_obj_css(t,e,o,n){var s="",a=e["background-image"],r=e["background-color"];""===r&&""===a?t.preview.send("refresh"):(""!==a&&""!==r?void 0!==r&&(s="background-image: linear-gradient(to right, "+r+", "+r+"), url("+a+");"):""!==a?s="background-image: url("+a+");":""!==r&&(s="background-color: "+r+";",s+="background-image: none;"),""!==a&&(s+="background-repeat: "+e["background-repeat"]+";",s+="background-position: "+e["background-position"]+";",s+="background-size: "+e["background-size"]+";",s+="background-attachment: "+e["background-attachment"]+";"),astra_add_dynamic_css(o,n.replace("{{css}}",s)))}function astra_apply_background_css(t,i,u){wp.customize(t,function(t){t.bind(function(t,e){var o=JSON.parse(t);if(bg_obj=o[i],""!==bg_obj&&void 0!==bg_obj){jQuery("style#"+i).remove();var n="",s=bg_obj["background-image"],a=bg_obj["background-color"];""!==s&&""!==a?void 0!==a&&(n="background-image: linear-gradient(to right, "+a+", "+a+"), url("+s+");"):""!==s?n="background-image: url("+s+");":""!==a&&(n="background-color: "+a+";"),""==s?n+="background-image: none;":(n+="background-repeat: "+bg_obj["background-repeat"]+";",n+="background-position: "+bg_obj["background-position"]+";",n+="background-size: "+bg_obj["background-size"]+";",n+="background-attachment: "+bg_obj["background-attachment"]+";");var r='";jQuery("head").append(r)}})})}function astra_generate_outside_font_family_css(a,r){wp.customize(a,function(t){t.bind(function(t,e){var o="font-family",n="";if(s=(s=t.split(",")[0]).replace(/'/g,""),a=(a=a.replace("[","-")).replace("]",""),jQuery("style#"+a+"-"+o).remove(),s in astraCustomizer.googleFonts){var s=s.split(" ").join("+");jQuery("link#"+a).remove(),n=''}jQuery("head").append('"+n)})})}function astra_generate_font_weight_css(e,o,n,s){wp.customize(o,function(t){t.bind(function(t){o=(o=o.replace("[","-")).replace("]",""),t?("undefined"!=typeof unit&&("url"===unit?t="url("+t+")":t+=unit),fontName=wp.customize._value[e]._value,fontName=fontName.split(","),fontName=fontName[0].replace(/'/g,""),jQuery("style#"+o+"-"+n).remove(),fontName in astraCustomizer.googleFonts&&(jQuery("#"+e).remove(),link=''),jQuery("head").append('"+link)):jQuery("style#"+o).remove()})})}function astra_apply_responsive_background_css(m,c,b,d,l){wp.customize(m,function(t){t.bind(function(t){if(d=d||"",l=(l=l||"")||"header",m=(m=m.replace("[","-")).replace("]",""),""!==t[b]&&void 0!==t[b]){var e="",o=t[b]["background-image"],n=t.tablet["background-image"],s=t.desktop["background-image"],a=t[b]["background-color"],r=!!t.tablet["background-image"],i=!!t.desktop["background-image"];if(""!==o&&""!==a&&void 0!==a?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+o+");":""!==o?e="background-image: url("+o+");":""!==a&&("mobile"===b?1==i&&1==r?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+n+");":1==i?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+s+");":1==r?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+n+");":(e="background-color: "+a+";",e+="background-image: none;"):"tablet"===b&&1==i?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+s+");":(e="background-color: "+a+";",e+="background-image: none;"),c.includes(d)||(c+=", "+d)),""!=o&&(e+="background-repeat: "+t[b]["background-repeat"]+";",e+="background-position: "+t[b]["background-position"]+";",e+="background-size: "+t[b]["background-size"]+";",e+="background-attachment: "+t[b]["background-attachment"]+";"),jQuery("style#"+m+"-"+b+"-"+l).remove(),"desktop"==b)var u='";if("tablet"==b)u='";if("mobile"==b)u='";jQuery("head").append(u)}})})}function getChangedKey(t,e){t=isJsonString(t)?JSON.parse(t):t,e=isJsonString(e)?JSON.parse(e):e;function o(t,e){var o=Object.prototype.toString.call(t);if(0<=["[object Array]","[object Object]"].indexOf(o)){if("string"==typeof getChangedKey(t,e))return!1}else{if(o!==Object.prototype.toString.call(e))return!1;if("[object Function]"===o){if(t.toString()!==e.toString())return!1}else if(t!==e)return!1}}for(var n in t){if(!e.hasOwnProperty(n)||!t.hasOwnProperty(n))return n;if(!1===o(t[n],e[n]))return n}return!0}function isJsonString(t){try{JSON.parse(t)}catch(t){return!1}return!0}!function(o){wp.customize("astra-settings[ast-header-responsive-logo-width]",function(t){t.bind(function(t){""!=t.desktop||""!=t.tablet||""!=t.mobile?(astra_add_dynamic_css("ast-header-responsive-logo-width","#masthead .site-logo-img .custom-logo-link img { max-width: "+t.desktop+"px;} .astra-logo-svg{width: "+t.desktop+"px;} @media( max-width: 768px ) { #masthead .site-logo-img .custom-logo-link img { max-width: "+t.tablet+"px;} .astra-logo-svg{width: "+t.tablet+"px; } } @media( max-width: 544px ) { .ast-header-break-point .site-branding img, .ast-header-break-point #masthead .site-logo-img .custom-logo-link img { max-width: "+t.mobile+"px;} .astra-logo-svg{width: "+t.mobile+"px; } }"),astra_add_dynamic_css("mobile-header-logo-width",".ast-header-break-point #masthead .site-logo-img .custom-mobile-logo-link img { max-width: "+t.tablet+"px; } @media( max-width: 768px ) { .ast-header-break-point #masthead .site-logo-img .custom-mobile-logo-link img { max-width: "+t.tablet+"px; } @media( max-width: 544px ) { .ast-header-break-point #masthead .site-logo-img .custom-mobile-logo-link img { max-width: "+t.mobile+"px; }")):wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[site-content-width]",function(t){t.bind(function(t){var e="@media (min-width: 554px) {";e+=".ast-container, .fl-builder #content .entry-header { max-width: "+(40+parseInt(t))+"px } ",e+="}",jQuery("body").hasClass("ast-page-builder-template")&&(e+="@media (min-width: 554px) {",e+=".ast-page-builder-template .comments-area { max-width: "+(40+parseInt(t))+"px } ",e+="}"),astra_add_dynamic_css("site-content-width",e)})}),wp.customize("astra-settings[header-main-menu-label]",function(t){t.bind(function(t){if(0'+t+" "),o("button.main-header-menu-toggle").html(e)}})}),astra_apply_responsive_background_css("astra-settings[site-layout-outside-bg-obj-responsive]","body, .ast-separate-container","desktop"),astra_apply_responsive_background_css("astra-settings[site-layout-outside-bg-obj-responsive]","body, .ast-separate-container","tablet"),astra_apply_responsive_background_css("astra-settings[site-layout-outside-bg-obj-responsive]","body, .ast-separate-container","mobile"),wp.customize("astra-settings[blog-max-width]",function(t){t.bind(function(t){var e="@media all and ( min-width: 921px ) {";jQuery("body").hasClass("ast-woo-shop-archive")||(e+=".blog .site-content > .ast-container,.archive .site-content > .ast-container{ max-width: "+parseInt(t)+"px } "),jQuery("body").hasClass("ast-fluid-width-layout")&&(e+=".blog .site-content > .ast-container,.archive .site-content > .ast-container{ padding-left:20px; padding-right:20px; } "),astra_add_dynamic_css("blog-max-width",e+="}")})}),wp.customize("astra-settings[blog-single-max-width]",function(t){t.bind(function(t){var e="@media all and ( min-width: 921px ) {";e+=".single-post .site-content > .ast-container{ max-width: "+(40+parseInt(t))+"px } ",jQuery("body").hasClass("ast-fluid-width-layout")&&(e+=".single-post .site-content > .ast-container{ padding-left:20px; padding-right:20px; } "),astra_add_dynamic_css("blog-single-max-width",e+="}")})}),wp.customize("astra-settings[edd-archive-max-width]",function(t){t.bind(function(t){astra_add_dynamic_css("edd-archive-max-width",".ast-edd-archive-page .site-content > .ast-container { max-width: "+parseInt(t)+"px } ")})}),wp.customize("astra-settings[site-sidebar-width]",function(t){t.bind(function(t){if(!jQuery("body").hasClass("ast-no-sidebar")&&15<=t&&t<=50){var e="@media (min-width: 769px) {";e+="#primary { width: "+(100-parseInt(t))+"% } ",e+="#secondary { width: "+t+"% } ",astra_add_dynamic_css("site-sidebar-width",e+="}")}})}),wp.customize("astra-settings[header-main-sep]",function(t){t.bind(function(t){var e="body.ast-header-break-point .main-header-bar { border-bottom-width: "+t+"px }";e+=".ast-desktop .main-header-bar {",e+="border-bottom-width: "+t+"px",astra_add_dynamic_css("header-main-sep",e+="}")})}),wp.customize("astra-settings[footer-sml-divider]",function(t){t.bind(function(t){jQuery(".ast-small-footer").css("border-top-width",t+"px")})}),wp.customize("astra-settings[footer-adv-border-width]",function(t){t.bind(function(t){jQuery(".footer-adv .footer-adv-overlay").css("border-top-width",t+"px")})}),wp.customize("astra-settings[footer-adv-border-color]",function(t){t.bind(function(t){jQuery(".footer-adv .footer-adv-overlay").css("border-top-color",t)})}),wp.customize("astra-settings[footer-sml-divider-color]",function(t){t.bind(function(t){jQuery(".ast-small-footer").css("border-top-color",t)})}),wp.customize("astra-settings[theme-button-border-group]",function(t){t.bind(function(t){var e='.menu-toggle,button,.ast-button,input#submit,input[type="button"],input[type="submit"],input[type="reset"] { border-radius: '+parseInt(t)+"px } ";jQuery("body").hasClass("woocommerce")&&(e+=".woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] { border-radius: "+parseInt(t)+"px } "),astra_add_dynamic_css("button-radius",e)})}),wp.customize("astra-settings[header-main-sep]",function(t){t.bind(function(t){var e=" body.ast-header-break-point .main-header-bar { border-bottom-width: "+t+"px } ";e+=".ast-desktop .main-header-bar {",e+="border-bottom-width: "+t+"px",astra_add_dynamic_css("header-main-sep",e+="}")})}),wp.customize("astra-settings[header-main-sep-color]",function(t){t.bind(function(t){if(""==t&&wp.customize.preview.send("refresh"),t){var e=" .ast-desktop .main-header-bar { border-bottom-color: "+t+"; } ";astra_add_dynamic_css("header-main-sep-color",e+=" body.ast-header-break-point .main-header-bar { border-bottom-color: "+t+"; } ")}})}),wp.customize("astra-settings[mobile-header-toggle-btn-style-color]",function(t){t.bind(function(t){if(""!=t){if(jQuery(".menu-toggle").hasClass("ast-mobile-menu-buttons-fill"))var e=".ast-header-break-point .ast-mobile-menu-buttons-fill.menu-toggle { background: "+t+"}";else if(jQuery(".menu-toggle").hasClass("ast-mobile-menu-buttons-outline"))e=".ast-header-break-point .ast-mobile-menu-buttons-outline.menu-toggle { border: 1px solid "+t+"; color: "+t+"}";else e=".ast-header-break-point .ast-mobile-menu-buttons-minimal.menu-toggle { color: "+t+"}";astra_add_dynamic_css("primary-toggle-button-color",e)}else wp.customize.preview.send("refresh")})}),astra_responsive_font_size("astra-settings[font-size-site-tagline]",".site-header .site-description"),astra_responsive_font_size("astra-settings[font-size-site-title]",".site-title"),astra_responsive_font_size("astra-settings[font-size-entry-title]",".ast-single-post .entry-title, .page-title"),astra_responsive_font_size("astra-settings[font-size-archive-summary-title]",".ast-archive-description .ast-archive-title"),astra_responsive_font_size("astra-settings[font-size-page-title]","body:not(.ast-single-post) .entry-title"),1==astraCustomizer.includeAnchorsInHeadindsCss?(astra_responsive_font_size("astra-settings[font-size-h1]","h1, .entry-content h1, .entry-content h1 a"),astra_responsive_font_size("astra-settings[font-size-h2]","h2, .entry-content h2, .entry-content h2 a"),astra_responsive_font_size("astra-settings[font-size-h3]","h3, .entry-content h3, .entry-content h3 a"),astra_responsive_font_size("astra-settings[font-size-h4]","h4, .entry-content h4, .entry-content h4 a"),astra_responsive_font_size("astra-settings[font-size-h5]","h5, .entry-content h5, .entry-content h5 a"),astra_responsive_font_size("astra-settings[font-size-h6]","h6, .entry-content h6, .entry-content h6 a")):(astra_responsive_font_size("astra-settings[font-size-h1]","h1, .entry-content h1"),astra_responsive_font_size("astra-settings[font-size-h2]","h2, .entry-content h2"),astra_responsive_font_size("astra-settings[font-size-h3]","h3, .entry-content h3"),astra_responsive_font_size("astra-settings[font-size-h4]","h4, .entry-content h4"),astra_responsive_font_size("astra-settings[font-size-h5]","h5, .entry-content h5"),astra_responsive_font_size("astra-settings[font-size-h6]","h6, .entry-content h6")),wp.customize("astra-settings[para-margin-bottom]",function(t){t.bind(function(t){""==t&&wp.customize.preview.send("refresh"),t&&astra_add_dynamic_css("para-margin-bottom"," p, .entry-content p { margin-bottom: "+t+"em; } ")})}),astraCustomizer.page_builder_button_style_css?1==astraCustomizer.includeAnchorsInHeadindsCss?("color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"typo"!=astraCustomizer.elementor_default_color_font_setting||astra_css("astra-settings[headings-line-height]","line-height",".elementor-widget-heading h1.elementor-heading-title, .elementor-widget-heading h2.elementor-heading-title, .elementor-widget-heading h3.elementor-heading-title, .elementor-widget-heading h4.elementor-heading-title, .elementor-widget-heading h5.elementor-heading-title, .elementor-widget-heading h6.elementor-heading-title"),astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a")):("color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"typo"!=astraCustomizer.elementor_default_color_font_setting||astra_css("astra-settings[headings-line-height]","line-height",".elementor-widget-heading h1.elementor-heading-title, .elementor-widget-heading h2.elementor-heading-title, .elementor-widget-heading h3.elementor-heading-title, .elementor-widget-heading h4.elementor-heading-title, .elementor-widget-heading h5.elementor-heading-title, .elementor-widget-heading h6.elementor-heading-title"),astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a")):1==astraCustomizer.includeAnchorsInHeadindsCss?astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a"):astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a"),1==astraCustomizer.includeAnchorsInHeadindsCss?(astra_generate_outside_font_family_css("astra-settings[headings-font-family]","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a"),astra_css("astra-settings[headings-font-weight]","font-weight","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a"),astra_css("astra-settings[headings-text-transform]","text-transform","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a")):(astra_generate_outside_font_family_css("astra-settings[headings-font-family]","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a"),astra_css("astra-settings[headings-font-weight]","font-weight","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a"),astra_css("astra-settings[headings-text-transform]","text-transform","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a")),astra_css("astra-settings[footer-color]","color",".ast-small-footer"),astra_css("astra-settings[footer-link-color]","color",".ast-small-footer a"),astra_css("astra-settings[footer-link-h-color]","color",".ast-small-footer a:hover"),wp.customize("astra-settings[footer-bg-obj]",function(t){t.bind(function(t){astra_background_obj_css(wp.customize,t,"footer-bg-obj"," .ast-small-footer > .ast-footer-overlay { {{css}} }")})}),astra_css("astra-settings[footer-adv-wgt-title-color]","color",".footer-adv .widget-title, .footer-adv .widget-title a"),astra_css("astra-settings[footer-adv-text-color]","color",".footer-adv"),astra_css("astra-settings[footer-adv-link-color]","color",".footer-adv a"),astra_css("astra-settings[footer-adv-link-h-color]","color",".footer-adv a:hover, .footer-adv .no-widget-text a:hover, .footer-adv a:focus, .footer-adv .no-widget-text a:focus"),wp.customize("astra-settings[footer-adv-bg-obj]",function(t){t.bind(function(t){astra_background_obj_css(wp.customize,t,"footer-adv-bg-obj"," .footer-adv-overlay { {{css}} }")})}),wp.customize("astra-settings[shop-archive-max-width]",function(t){t.bind(function(t){var e="@media all and ( min-width: 921px ) {";e+=".ast-woo-shop-archive .site-content > .ast-container{ max-width: "+parseInt(t)+"px } ",jQuery("body").hasClass("ast-fluid-width-layout")&&(e+=".ast-woo-shop-archive .site-content > .ast-container{ padding-left:20px; padding-right:20px; } "),astra_add_dynamic_css("shop-archive-max-width",e+="}")})}),wp.customize("astra-settings[mobile-header-toggle-btn-style]",function(t){t.bind(function(t){var e=o(document).find(".ast-mobile-menu-buttons .menu-toggle");e.removeClass("ast-mobile-menu-buttons-default ast-mobile-menu-buttons-fill ast-mobile-menu-buttons-outline"),e.removeClass("ast-mobile-menu-buttons-default ast-mobile-menu-buttons-fill ast-mobile-menu-buttons-minimal"),e.addClass("ast-mobile-menu-buttons-"+t)})}),wp.customize("astra-settings[mobile-header-toggle-btn-border-radius]",function(t){t.bind(function(t){astra_add_dynamic_css("mobile-header-toggle-btn-border-radius",".ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle { border-radius: "+parseInt(t)+"px } ")})}),wp.customize("astra-settings[primary-submenu-border]",function(t){t.bind(function(t){var e=wp.customize("astra-settings[primary-submenu-b-color]").get();if(""!=t.top||""!=t.right||""!=t.bottom||""!=t.left){var o=".ast-desktop .main-header-menu.submenu-with-border .sub-menu";o+="{",o+="border-top-width:"+t.top+"px;",o+="border-right-width:"+t.right+"px;",o+="border-left-width:"+t.left+"px;",o+="border-bottom-width:"+t.bottom+"px;",o+="border-color:"+e+";",o+="border-style: solid;",o+="}",o+=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu",o+="{",o+="top:-"+t.top+"px;",o+="}",o+="@media (min-width: 769px){",o+=".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu, .main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu",o+="{",o+="margin-left:-"+(+t.left+ +t.right)+"px;",o+="}",astra_add_dynamic_css("primary-submenu-border",o+="}")}else wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[primary-submenu-b-color]",function(t){t.bind(function(t){var e=wp.customize("astra-settings[primary-submenu-border]").get();if(""!=t){if(""!=e.top||""!=e.right||""!=e.bottom||""!=e.left){var o=".ast-desktop .main-header-menu.submenu-with-border .sub-menu";o+="{",o+="border-top-width:"+e.top+"px;",o+="border-right-width:"+e.right+"px;",o+="border-left-width:"+e.left+"px;",o+="border-bottom-width:"+e.bottom+"px;",o+="border-color:"+t+";",o+="border-style: solid;",o+="}",o+=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu",o+="{",o+="top:-"+e.top+"px;",o+="}",o+="@media (min-width: 769px){",o+=".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu, .main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu",o+="{",o+="margin-left:-"+(+e.left+ +e.right)+"px;",o+="}",astra_add_dynamic_css("primary-submenu-border-color",o+="}")}}else wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[primary-submenu-item-b-color]",function(t){t.bind(function(t){var e=wp.customize("astra-settings[primary-submenu-item-border]").get();if(""!=t){if(1==e){var o="";o+=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .menu-link",o+="{",o+="border-bottom-width:"+(!0===e?"1px;":"0px;"),o+="border-color:"+t+";",o+="border-style: solid;",astra_add_dynamic_css("primary-submenu-item-b-color",o+="}")}}else wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[primary-submenu-item-border]",function(t){t.bind(function(t){var e=wp.customize("astra-settings[primary-submenu-item-b-color]").get();if(!0===t){var o=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .menu-link";o+="{",o+="border-bottom-width:"+(!0===t?"1px;":"0px;"),o+="border-color:"+e+";",o+="border-style: solid;",astra_add_dynamic_css("primary-submenu-item-border",o+="}")}else wp.customize.preview.send("refresh")})}),astra_css("astra-settings[header-main-rt-section-button-text-color]","color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[header-main-rt-section-button-back-color]","background-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[header-main-rt-section-button-text-h-color]","color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover"),astra_css("astra-settings[header-main-rt-section-button-back-h-color]","background-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover"),astra_css("astra-settings[header-main-rt-section-button-border-radius]","border-radius",".main-header-bar .ast-container .button-custom-menu-item .ast-custom-button-link .ast-custom-button","px"),astra_css("astra-settings[header-main-rt-section-button-border-color]","border-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[header-main-rt-section-button-border-h-color]","border-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover"),astra_responsive_spacing("astra-settings[header-main-rt-section-button-padding]",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button","padding",["top","right","bottom","left"]),astra_generate_outside_font_family_css("astra-settings[primary-header-button-font-family]",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_responsive_font_size("astra-settings[primary-header-button-font-size]",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-font-weight]","font-weight",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-line-height]","line-height",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-text-transform]","text-transform",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-letter-spacing]","letter-spacing",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button","px"),wp.customize("astra-settings[header-main-rt-section-button-border-size]",function(t){t.bind(function(t){if(""!=t.top||""!=t.right||""!=t.bottom||""!=t.left){var e=".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button";e+="{",e+="border-top-width:"+t.top+"px;",e+="border-right-width:"+t.right+"px;",e+="border-left-width:"+t.left+"px;",e+="border-bottom-width:"+t.bottom+"px;",e+="border-style: solid;",astra_add_dynamic_css("header-main-rt-section-button-border-size",e+="}")}})});var t="",n="",e="";if(astraCustomizer.page_builder_button_style_css&&("color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"color"!=astraCustomizer.elementor_default_color_font_setting&&"font"!=astraCustomizer.elementor_default_color_font_setting||(n=", .elementor-button-wrapper .elementor-button, .elementor-button-wrapper .elementor-button:visited",e=t=", .elementor-button-wrapper .elementor-button.elementor-size-sm, .elementor-button-wrapper .elementor-button.elementor-size-xs, .elementor-button-wrapper .elementor-button.elementor-size-md, .elementor-button-wrapper .elementor-button.elementor-size-lg, .elementor-button-wrapper .elementor-button.elementor-size-xl, .elementor-button-wrapper .elementor-button")),astra_css("astra-settings[button-radius]","border-radius",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'+t,"px"),wp.customize("astra-settings[theme-button-border-group-border-size]",function(t){t.bind(function(t){if(""!=t.top||""!=t.right||""!=t.bottom||""!=t.left){var e='.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+n;e+="{",e+="border-top-width:"+t.top+"px;",e+="border-right-width:"+t.right+"px;",e+="border-left-width:"+t.left+"px;",e+="border-bottom-width:"+t.bottom+"px;",e+="border-style: solid;",astra_add_dynamic_css("theme-button-border-group-border-size",e+="}")}})}),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled], .wp-block-button .wp-block-button__link'+e,"padding",["top","bottom"]),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled], .wp-block-button .wp-block-button__link'+e,"padding",["left","right"]),wp.customize("astra-settings[transparent-header-button-border-group]",function(t){t.bind(function(t){var e=JSON.parse(t)["header-main-rt-trans-section-button-border-size"];if(""!=e.top||""!=e.right||""!=e.bottom||""!=e.left){var o=".ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button";o+="{",o+="border-top-width:"+e.top+"px;",o+="border-right-width:"+e.right+"px;",o+="border-left-width:"+e.left+"px;",o+="border-bottom-width:"+e.bottom+"px;",o+="border-style: solid;",astra_add_dynamic_css("header-main-rt-trans-section-button-border-size",o+="}")}})}),astra_generate_outside_font_family_css("astra-settings[font-family-site-title]",".site-title, .site-title a"),astra_css("astra-settings[font-weight-site-title]","font-weight",".site-title, .site-title a"),astra_responsive_font_size("astra-settings[font-size-site-title]",".site-title, .site-title a"),astra_css("astra-settings[line-height-site-title]","line-height",".site-title, .site-title a"),astra_css("astra-settings[text-transform-site-title]","text-transform",".site-title, .site-title a"),astra_generate_outside_font_family_css("astra-settings[font-family-site-tagline]",".site-header .site-description"),astra_css("astra-settings[font-weight-site-tagline]","font-weight",".site-header .site-description"),astra_responsive_font_size("astra-settings[font-size-site-tagline]",".site-header .site-description"),astra_css("astra-settings[line-height-site-tagline]","line-height",".site-header .site-description"),astra_css("astra-settings[text-transform-site-tagline]","text-transform",".site-header .site-description"),astraCustomizer.page_builder_button_style_css){var s="",a="",r="",i="",u="",m="";"color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"color"!=astraCustomizer.elementor_default_color_font_setting||(a=s=",.elementor-button-wrapper .elementor-button, .elementor-button-wrapper .elementor-button:visited",u=", .elementor-button-wrapper .elementor-button, .elementor-button-wrapper .elementor-button:visited",m=i=r=",.elementor-button-wrapper .elementor-button:hover, .elementor-button-wrapper .elementor-button:focus"),astra_css("astra-settings[button-color]","color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+s),astra_css("astra-settings[button-bg-color]","background-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+a),astra_css("astra-settings[button-h-color]","color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus'+r),astra_css("astra-settings[button-bg-h-color]","background-color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus'+i),astra_css("astra-settings[theme-button-border-group-border-color]","border-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+u),astra_css("astra-settings[theme-button-border-group-border-h-color]","border-color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus'+m)}else astra_css("astra-settings[button-color]","color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'),astra_css("astra-settings[button-bg-color]","background-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'),astra_css("astra-settings[button-bg-color]","border-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'),astra_css("astra-settings[button-h-color]","color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus'),astra_css("astra-settings[button-bg-h-color]","background-color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus'),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled]',"padding",["top","bottom"]),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled]',"padding",["left","right"])}(jQuery); \ No newline at end of file +function astra_font_size_rem(t,e,o){var n="";return""!=t&&(o=null!=typeof o?o:"desktop",n="font-size: "+t+"px;",e&&((e=wp.customize("astra-settings[font-size-body]").get()).desktop=""!=e.desktop?e.desktop:15,e.tablet=""!=e.tablet?e.tablet:e.desktop,e.mobile=""!=e.mobile?e.mobile:e.tablet,n+="font-size: "+t/e[o]+"rem;")),n}function astra_color_responsive_css(s,a,r,i){wp.customize(a,function(t){t.bind(function(t){var e,o,n;t.desktop||t.mobile||t.tablet?(a=(a=a.replace("[","-")).replace("]",""),jQuery("style#"+a+"-"+s).remove(),(n=o=e="")!=t.desktop&&(e=r+": "+t.desktop),""!=t.tablet&&(o=r+": "+t.tablet),""!=t.mobile&&(n=r+": "+t.mobile),jQuery("head").append('")):(wp.customize.preview.send("refresh"),jQuery("style#"+a+"-"+s).remove())})})}function astra_responsive_font_size(s,a){wp.customize(s,function(t){t.bind(function(t){var e,o,n;t.desktop||t.mobile||t.tablet?(s=(s=s.replace("[","-")).replace("]",""),jQuery("style#"+s+"-"+void 0).remove(),(n=o=e="")!=t.desktop&&(e="font-size: "+t.desktop+t["desktop-unit"]),""!=t.tablet&&(o="font-size: "+t.tablet+t["tablet-unit"]),""!=t.mobile&&(n="font-size: "+t.mobile+t["mobile-unit"]),"px"==t["desktop-unit"]&&(e=astra_font_size_rem(t.desktop,!0,"desktop")),jQuery("head").append('")):jQuery("style#"+s).remove()})})}function astra_responsive_spacing(i,u,m,c){wp.customize(i,function(t){t.bind(function(o){var n,s,a,t,e="",r="padding";o.desktop.top||o.desktop.right||o.desktop.bottom||o.desktop.left||o.tablet.top||o.tablet.right||o.tablet.bottom||o.tablet.left||o.mobile.top||o.mobile.right||o.mobile.bottom||o.mobile.left?(null!=typeof c&&(e=(e=c+"").replace(/,/g,"-")),null!=typeof m&&(r=m+""),i=(i=i.replace("[","-")).replace("]",""),jQuery("style#"+i+"-"+r+"-"+e).remove(),a=s=n="",t=null!=typeof c?c:["top","bottom","right","left"],jQuery.each(t,function(t,e){""!=o.desktop[e]&&(n+=r+"-"+e+": "+o.desktop[e]+o["desktop-unit"]+";")}),jQuery.each(t,function(t,e){""!=o.tablet[e]&&(s+=r+"-"+e+": "+o.tablet[e]+o["tablet-unit"]+";")}),jQuery.each(t,function(t,e){""!=o.mobile[e]&&(a+=r+"-"+e+": "+o.mobile[e]+o["mobile-unit"]+";")}),jQuery("head").append('")):(wp.customize.preview.send("refresh"),jQuery("style#"+i+"-"+r+"-"+e).remove())})})}function astra_css_font_size(o,n){wp.customize(o,function(t){t.bind(function(t){var e;t?(o=(o=o.replace("[","-")).replace("]",""),jQuery("style#"+o).remove(),e="font-size: "+t,(!isNaN(t)||0<=t.indexOf("px"))&&(e=astra_font_size_rem(t=t.replace("px",""),!0)),jQuery("head").append('")):jQuery("style#"+o).remove()})})}function get_hexdec(t){t=t.toString(16);return parseInt(t,16)}function astra_css(e,o,n,s){wp.customize(e,function(t){t.bind(function(t){e=(e=e.replace("[","-")).replace("]",""),t?(void 0!==s&&("url"===s?t="url("+t+")":t+=s),jQuery("style#"+e+"-"+o).remove(),jQuery("head").append('")):jQuery("style#"+e).remove()})})}function astra_add_dynamic_css(t,e){t=(t=t.replace("[","-")).replace("]",""),jQuery("style#"+t).remove(),jQuery("head").append('")}function astra_background_obj_css(t,e,o,n){var s="",a=e["background-image"],r=e["background-color"];""===r&&""===a?t.preview.send("refresh"):(void 0!==e["background-type"]&&""!==e["background-type"]&&("color"===e["background-type"]?""!==a&&""!==r&&void 0!==r&&"unset"!==r?s="background-image: linear-gradient(to right, "+r+", "+r+"), url("+a+");":void 0!==a&&""!==a&&"unset"!==a||(s="background-color: "+r+";"):"image"===e["background-type"]?(""===a||""===r||void 0===r||"unset"===r||r.includes("linear-gradient")||r.includes("radial-gradient")||(s="background-image: linear-gradient(to right, "+r+", "+r+"), url("+a+");"),(void 0===r||""===r||"unset"===r||r.includes("linear-gradient")||r.includes("radial-gradient"))&&""!==a&&(s="background-image: url("+a+");")):"gradient"===e["background-type"]&&""!==r&&"unset"!==r&&(s="background-image: "+r+";")),""!==a&&(s+="background-repeat: "+e["background-repeat"]+";",s+="background-position: "+e["background-position"]+";",s+="background-size: "+e["background-size"]+";",s+="background-attachment: "+e["background-attachment"]+";"),astra_add_dynamic_css(o,n.replace("{{css}}",s)))}function astra_generate_outside_font_family_css(a,r){wp.customize(a,function(t){t.bind(function(t,e){var o="font-family",n="",s=t.split(",")[0];s=s.replace(/'/g,""),a=(a=a.replace("[","-")).replace("]",""),jQuery("style#"+a+"-"+o).remove(),s in astraCustomizer.googleFonts&&(s=s.split(" ").join("+"),jQuery("link#"+a).remove(),n=''),jQuery("head").append('"+n)})})}function astra_generate_font_weight_css(e,o,n,s){wp.customize(o,function(t){t.bind(function(t){o=(o=o.replace("[","-")).replace("]",""),t?("undefined"!=typeof unit&&("url"===unit?t="url("+t+")":t+=unit),fontName=wp.customize._value[e]._value,fontName=fontName.split(","),fontName=fontName[0].replace(/'/g,""),jQuery("style#"+o+"-"+n).remove(),fontName in astraCustomizer.googleFonts&&(jQuery("#"+e).remove(),link=''),jQuery("head").append('"+link)):jQuery("style#"+o).remove()})})}function astra_apply_responsive_background_css(m,c,d,t,b){wp.customize(m,function(t){t.bind(function(t){var e,o,n,s,a,r,i,u;b=(b=b||"")||"header",m=(m=m.replace("[","-")).replace("]",""),""!==t[d]&&void 0!==t[d]&&(e="",o=t[d]["background-image"],n=t.tablet["background-image"],s=t.desktop["background-image"],a=t[d]["background-color"],r=!!t.tablet["background-image"],i=!!t.desktop["background-image"],void 0!==t[d]["background-type"]&&""!==t[d]["background-type"]&&("color"===t[d]["background-type"]?""!==o&&""!==a&&void 0!==a&&"unset"!==a?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+o+");":"mobile"===d?i?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+s+");":r?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+n+");":(e="background-color: "+a+";",e+="background-image: none;"):"tablet"===d?i?e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+s+");":(e="background-color: "+a+";",e+="background-image: none;"):void 0!==o&&""!==o||(e="background-color: "+a+";",e+="background-image: none;"):"image"===t[d]["background-type"]?(""===o||""===a||void 0===a||"unset"===a||a.includes("linear-gradient")||a.includes("radial-gradient")||(e="background-image: linear-gradient(to right, "+a+", "+a+"), url("+o+");"),(void 0===a||""===a||"unset"===a||a.includes("linear-gradient")||a.includes("radial-gradient"))&&""!==o&&(e="background-image: url("+o+");")):"gradient"===t[d]["background-type"]&&""!==a&&"unset"!==a&&(e="background-image: "+a+";")),""!==o&&(e+="background-repeat: "+t[d]["background-repeat"]+";",e+="background-position: "+t[d]["background-position"]+";",e+="background-size: "+t[d]["background-size"]+";",e+="background-attachment: "+t[d]["background-attachment"]+";"),jQuery("style#"+m+"-"+d+"-"+b).remove(),"desktop"==d&&(u='"),"tablet"==d&&(u='"),"mobile"==d&&(u='"),jQuery("head").append(u))})})}function getChangedKey(t,e){t=isJsonString(t)?JSON.parse(t):t,e=isJsonString(e)?JSON.parse(e):e;for(var o in t){if(!e.hasOwnProperty(o)||!t.hasOwnProperty(o))return o;if(!1===function(t,e){var o=Object.prototype.toString.call(t);if(0<=["[object Array]","[object Object]"].indexOf(o)){if("string"==typeof getChangedKey(t,e))return!1}else{if(o!==Object.prototype.toString.call(e))return!1;if("[object Function]"===o){if(t.toString()!==e.toString())return!1}else if(t!==e)return!1}}(t[o],e[o]))return o}return!0}function isJsonString(t){try{JSON.parse(t)}catch(t){return!1}return!0}!function(o){wp.customize("astra-settings[ast-header-responsive-logo-width]",function(t){t.bind(function(t){""!=t.desktop||""!=t.tablet||""!=t.mobile?(astra_add_dynamic_css("ast-header-responsive-logo-width","#masthead .site-logo-img .custom-logo-link img { max-width: "+t.desktop+"px;} .astra-logo-svg{width: "+t.desktop+"px;} @media( max-width: 768px ) { #masthead .site-logo-img .custom-logo-link img { max-width: "+t.tablet+"px;} .astra-logo-svg{width: "+t.tablet+"px; } } @media( max-width: 544px ) { .ast-header-break-point .site-branding img, .ast-header-break-point #masthead .site-logo-img .custom-logo-link img { max-width: "+t.mobile+"px;} .astra-logo-svg{width: "+t.mobile+"px; } }"),astra_add_dynamic_css("mobile-header-logo-width",".ast-header-break-point #masthead .site-logo-img .custom-mobile-logo-link img { max-width: "+t.tablet+"px; } @media( max-width: 768px ) { .ast-header-break-point #masthead .site-logo-img .custom-mobile-logo-link img { max-width: "+t.tablet+"px; } @media( max-width: 544px ) { .ast-header-break-point #masthead .site-logo-img .custom-mobile-logo-link img { max-width: "+t.mobile+"px; }")):wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[site-content-width]",function(t){t.bind(function(t){var e="@media (min-width: 554px) {";e+=".ast-container, .fl-builder #content .entry-header { max-width: "+(40+parseInt(t))+"px } ",e+="}",jQuery("body").hasClass("ast-page-builder-template")&&(e+="@media (min-width: 554px) {",e+=".ast-page-builder-template .comments-area { max-width: "+(40+parseInt(t))+"px } ",e+="}"),astra_add_dynamic_css("site-content-width",e)})}),wp.customize("astra-settings[header-main-menu-label]",function(t){t.bind(function(t){var e;0'+t+" "),o("button.main-header-menu-toggle").html(e))})}),astra_apply_responsive_background_css("astra-settings[site-layout-outside-bg-obj-responsive]","body, .ast-separate-container","desktop"),astra_apply_responsive_background_css("astra-settings[site-layout-outside-bg-obj-responsive]","body, .ast-separate-container","tablet"),astra_apply_responsive_background_css("astra-settings[site-layout-outside-bg-obj-responsive]","body, .ast-separate-container","mobile"),wp.customize("astra-settings[blog-max-width]",function(t){t.bind(function(t){var e="@media all and ( min-width: 921px ) {";jQuery("body").hasClass("ast-woo-shop-archive")||(e+=".blog .site-content > .ast-container,.archive .site-content > .ast-container{ max-width: "+parseInt(t)+"px } "),jQuery("body").hasClass("ast-fluid-width-layout")&&(e+=".blog .site-content > .ast-container,.archive .site-content > .ast-container{ padding-left:20px; padding-right:20px; } "),astra_add_dynamic_css("blog-max-width",e+="}")})}),wp.customize("astra-settings[blog-single-max-width]",function(t){t.bind(function(t){var e="@media all and ( min-width: 921px ) {";e+=".single-post .site-content > .ast-container{ max-width: "+(40+parseInt(t))+"px } ",jQuery("body").hasClass("ast-fluid-width-layout")&&(e+=".single-post .site-content > .ast-container{ padding-left:20px; padding-right:20px; } "),astra_add_dynamic_css("blog-single-max-width",e+="}")})}),wp.customize("astra-settings[edd-archive-max-width]",function(t){t.bind(function(t){astra_add_dynamic_css("edd-archive-max-width",".ast-edd-archive-page .site-content > .ast-container { max-width: "+parseInt(t)+"px } ")})}),wp.customize("astra-settings[site-sidebar-width]",function(t){t.bind(function(t){var e;!jQuery("body").hasClass("ast-no-sidebar")&&15<=t&&t<=50&&(e="@media (min-width: 769px) {",e+="#primary { width: "+(100-parseInt(t))+"% } ",e+="#secondary { width: "+t+"% } ",astra_add_dynamic_css("site-sidebar-width",e+="}"))})}),wp.customize("astra-settings[header-main-sep]",function(t){t.bind(function(t){var e="body.ast-header-break-point .main-header-bar { border-bottom-width: "+t+"px }";e+=".ast-desktop .main-header-bar {",e+="border-bottom-width: "+t+"px",astra_add_dynamic_css("header-main-sep",e+="}")})}),wp.customize("astra-settings[footer-sml-divider]",function(t){t.bind(function(t){jQuery(".ast-small-footer").css("border-top-width",t+"px")})}),wp.customize("astra-settings[footer-adv-border-width]",function(t){t.bind(function(t){jQuery(".footer-adv .footer-adv-overlay").css("border-top-width",t+"px")})}),wp.customize("astra-settings[footer-adv-border-color]",function(t){t.bind(function(t){jQuery(".footer-adv .footer-adv-overlay").css("border-top-color",t)})}),wp.customize("astra-settings[footer-sml-divider-color]",function(t){t.bind(function(t){jQuery(".ast-small-footer").css("border-top-color",t)})}),wp.customize("astra-settings[theme-button-border-group]",function(t){t.bind(function(t){var e='.menu-toggle,button,.ast-button,input#submit,input[type="button"],input[type="submit"],input[type="reset"] { border-radius: '+parseInt(t)+"px } ";jQuery("body").hasClass("woocommerce")&&(e+=".woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] { border-radius: "+parseInt(t)+"px } "),astra_add_dynamic_css("button-radius",e)})}),wp.customize("astra-settings[header-main-sep]",function(t){t.bind(function(t){var e=" body.ast-header-break-point .main-header-bar { border-bottom-width: "+t+"px } ";e+=".ast-desktop .main-header-bar {",e+="border-bottom-width: "+t+"px",astra_add_dynamic_css("header-main-sep",e+="}")})}),wp.customize("astra-settings[header-main-sep-color]",function(t){t.bind(function(t){var e;""==t&&wp.customize.preview.send("refresh"),t&&(e=" .ast-desktop .main-header-bar { border-bottom-color: "+t+"; } ",astra_add_dynamic_css("header-main-sep-color",e+=" body.ast-header-break-point .main-header-bar { border-bottom-color: "+t+"; } "))})}),wp.customize("astra-settings[mobile-header-toggle-btn-style-color]",function(t){t.bind(function(t){""!=t?astra_add_dynamic_css("primary-toggle-button-color",jQuery(".menu-toggle").hasClass("ast-mobile-menu-buttons-fill")?".ast-header-break-point .ast-mobile-menu-buttons-fill.menu-toggle { background: "+t+"}":jQuery(".menu-toggle").hasClass("ast-mobile-menu-buttons-outline")?".ast-header-break-point .ast-mobile-menu-buttons-outline.menu-toggle { border: 1px solid "+t+"; color: "+t+"}":".ast-header-break-point .ast-mobile-menu-buttons-minimal.menu-toggle { color: "+t+"}"):wp.customize.preview.send("refresh")})}),astra_responsive_font_size("astra-settings[font-size-site-tagline]",".site-header .site-description"),astra_responsive_font_size("astra-settings[font-size-site-title]",".site-title"),astra_responsive_font_size("astra-settings[font-size-entry-title]",".ast-single-post .entry-title, .page-title"),astra_responsive_font_size("astra-settings[font-size-archive-summary-title]",".ast-archive-description .ast-archive-title"),astra_responsive_font_size("astra-settings[font-size-page-title]","body:not(.ast-single-post) .entry-title"),1==astraCustomizer.includeAnchorsInHeadindsCss?(astra_responsive_font_size("astra-settings[font-size-h1]","h1, .entry-content h1, .entry-content h1 a"),astra_responsive_font_size("astra-settings[font-size-h2]","h2, .entry-content h2, .entry-content h2 a"),astra_responsive_font_size("astra-settings[font-size-h3]","h3, .entry-content h3, .entry-content h3 a"),astra_responsive_font_size("astra-settings[font-size-h4]","h4, .entry-content h4, .entry-content h4 a"),astra_responsive_font_size("astra-settings[font-size-h5]","h5, .entry-content h5, .entry-content h5 a"),astra_responsive_font_size("astra-settings[font-size-h6]","h6, .entry-content h6, .entry-content h6 a")):(astra_responsive_font_size("astra-settings[font-size-h1]","h1, .entry-content h1"),astra_responsive_font_size("astra-settings[font-size-h2]","h2, .entry-content h2"),astra_responsive_font_size("astra-settings[font-size-h3]","h3, .entry-content h3"),astra_responsive_font_size("astra-settings[font-size-h4]","h4, .entry-content h4"),astra_responsive_font_size("astra-settings[font-size-h5]","h5, .entry-content h5"),astra_responsive_font_size("astra-settings[font-size-h6]","h6, .entry-content h6")),wp.customize("astra-settings[para-margin-bottom]",function(t){t.bind(function(t){""==t&&wp.customize.preview.send("refresh"),t&&astra_add_dynamic_css("para-margin-bottom"," p, .entry-content p { margin-bottom: "+t+"em; } ")})}),astraCustomizer.page_builder_button_style_css?1==astraCustomizer.includeAnchorsInHeadindsCss?("color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"typo"!=astraCustomizer.elementor_default_color_font_setting||astra_css("astra-settings[headings-line-height]","line-height",".elementor-widget-heading h1.elementor-heading-title, .elementor-widget-heading h2.elementor-heading-title, .elementor-widget-heading h3.elementor-heading-title, .elementor-widget-heading h4.elementor-heading-title, .elementor-widget-heading h5.elementor-heading-title, .elementor-widget-heading h6.elementor-heading-title"),astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a")):("color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"typo"!=astraCustomizer.elementor_default_color_font_setting||astra_css("astra-settings[headings-line-height]","line-height",".elementor-widget-heading h1.elementor-heading-title, .elementor-widget-heading h2.elementor-heading-title, .elementor-widget-heading h3.elementor-heading-title, .elementor-widget-heading h4.elementor-heading-title, .elementor-widget-heading h5.elementor-heading-title, .elementor-widget-heading h6.elementor-heading-title"),astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a")):1==astraCustomizer.includeAnchorsInHeadindsCss?astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a"):astra_css("astra-settings[headings-line-height]","line-height","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a"),1==astraCustomizer.includeAnchorsInHeadindsCss?(astra_generate_outside_font_family_css("astra-settings[headings-font-family]","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a"),astra_css("astra-settings[headings-font-weight]","font-weight","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a"),astra_css("astra-settings[headings-text-transform]","text-transform","h1, .entry-content h1, .entry-content h1 a, h2, .entry-content h2, .entry-content h2 a, h3, .entry-content h3, .entry-content h3 a, h4, .entry-content h4, .entry-content h4 a, h5, .entry-content h5, .entry-content h5 a, h6, .entry-content h6, .entry-content h6 a, .site-title, .site-title a")):(astra_generate_outside_font_family_css("astra-settings[headings-font-family]","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a"),astra_css("astra-settings[headings-font-weight]","font-weight","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a"),astra_css("astra-settings[headings-text-transform]","text-transform","h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3, h4, .entry-content h4, h5, .entry-content h5, h6, .entry-content h6, .site-title, .site-title a")),astra_css("astra-settings[footer-color]","color",".ast-small-footer"),astra_css("astra-settings[footer-link-color]","color",".ast-small-footer a"),astra_css("astra-settings[footer-link-h-color]","color",".ast-small-footer a:hover"),wp.customize("astra-settings[footer-bg-obj]",function(t){t.bind(function(t){astra_background_obj_css(wp.customize,t,"footer-bg-obj"," .ast-small-footer > .ast-footer-overlay { {{css}} }")})}),astra_css("astra-settings[footer-adv-wgt-title-color]","color",".footer-adv .widget-title, .footer-adv .widget-title a"),astra_css("astra-settings[footer-adv-text-color]","color",".footer-adv"),astra_css("astra-settings[footer-adv-link-color]","color",".footer-adv a"),astra_css("astra-settings[footer-adv-link-h-color]","color",".footer-adv a:hover, .footer-adv .no-widget-text a:hover, .footer-adv a:focus, .footer-adv .no-widget-text a:focus"),wp.customize("astra-settings[footer-adv-bg-obj]",function(t){t.bind(function(t){astra_background_obj_css(wp.customize,t,"footer-adv-bg-obj"," .footer-adv-overlay { {{css}} }")})}),wp.customize("astra-settings[shop-archive-max-width]",function(t){t.bind(function(t){var e="@media all and ( min-width: 921px ) {";e+=".ast-woo-shop-archive .site-content > .ast-container{ max-width: "+parseInt(t)+"px } ",jQuery("body").hasClass("ast-fluid-width-layout")&&(e+=".ast-woo-shop-archive .site-content > .ast-container{ padding-left:20px; padding-right:20px; } "),astra_add_dynamic_css("shop-archive-max-width",e+="}")})}),wp.customize("astra-settings[mobile-header-toggle-btn-style]",function(t){t.bind(function(t){var e=o(document).find(".ast-mobile-menu-buttons .menu-toggle");e.removeClass("ast-mobile-menu-buttons-default ast-mobile-menu-buttons-fill ast-mobile-menu-buttons-outline"),e.removeClass("ast-mobile-menu-buttons-default ast-mobile-menu-buttons-fill ast-mobile-menu-buttons-minimal"),e.addClass("ast-mobile-menu-buttons-"+t)})}),wp.customize("astra-settings[mobile-header-toggle-btn-border-radius]",function(t){t.bind(function(t){astra_add_dynamic_css("mobile-header-toggle-btn-border-radius",".ast-header-break-point .main-header-bar .ast-button-wrap .menu-toggle { border-radius: "+parseInt(t)+"px } ")})}),wp.customize("astra-settings[primary-submenu-border]",function(t){t.bind(function(t){var e,o=wp.customize("astra-settings[primary-submenu-b-color]").get();""!=t.top||""!=t.right||""!=t.bottom||""!=t.left?(e=".ast-desktop .main-header-menu.submenu-with-border .sub-menu",e+="{",e+="border-top-width:"+t.top+"px;",e+="border-right-width:"+t.right+"px;",e+="border-left-width:"+t.left+"px;",e+="border-bottom-width:"+t.bottom+"px;",e+="border-color:"+o+";",e+="border-style: solid;",e+="}",e+=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu",e+="{",e+="top:-"+t.top+"px;",e+="}",e+="@media (min-width: 769px){",e+=".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu, .main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu",e+="{",e+="margin-left:-"+(+t.left+ +t.right)+"px;",e+="}",astra_add_dynamic_css("primary-submenu-border",e+="}")):wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[primary-submenu-b-color]",function(t){t.bind(function(t){var e,o=wp.customize("astra-settings[primary-submenu-border]").get();""!=t?""==o.top&&""==o.right&&""==o.bottom&&""==o.left||(e=".ast-desktop .main-header-menu.submenu-with-border .sub-menu",e+="{",e+="border-top-width:"+o.top+"px;",e+="border-right-width:"+o.right+"px;",e+="border-left-width:"+o.left+"px;",e+="border-bottom-width:"+o.bottom+"px;",e+="border-color:"+t+";",e+="border-style: solid;",e+="}",e+=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .sub-menu",e+="{",e+="top:-"+o.top+"px;",e+="}",e+="@media (min-width: 769px){",e+=".main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu:hover > .sub-menu, .main-header-menu .sub-menu .menu-item.ast-left-align-sub-menu.focus > .sub-menu",e+="{",e+="margin-left:-"+(+o.left+ +o.right)+"px;",e+="}",astra_add_dynamic_css("primary-submenu-border-color",e+="}")):wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[primary-submenu-item-b-color]",function(t){t.bind(function(t){var e,o=wp.customize("astra-settings[primary-submenu-item-border]").get();""!=t?1==o&&(e="",e+=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .menu-link",e+="{",e+="border-bottom-width:"+(!0===o?"1px;":"0px;"),e+="border-color:"+t+";",e+="border-style: solid;",astra_add_dynamic_css("primary-submenu-item-b-color",e+="}")):wp.customize.preview.send("refresh")})}),wp.customize("astra-settings[primary-submenu-item-border]",function(t){t.bind(function(t){var e,o=wp.customize("astra-settings[primary-submenu-item-b-color]").get();!0===t?(e=".ast-desktop .main-header-menu.submenu-with-border .sub-menu .menu-link",e+="{",e+="border-bottom-width:"+(!0===t?"1px;":"0px;"),e+="border-color:"+o+";",e+="border-style: solid;",astra_add_dynamic_css("primary-submenu-item-border",e+="}")):wp.customize.preview.send("refresh")})}),astra_css("astra-settings[header-main-rt-section-button-text-color]","color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[header-main-rt-section-button-back-color]","background-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[header-main-rt-section-button-text-h-color]","color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover"),astra_css("astra-settings[header-main-rt-section-button-back-h-color]","background-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover"),astra_css("astra-settings[header-main-rt-section-button-border-radius]","border-radius",".main-header-bar .ast-container .button-custom-menu-item .ast-custom-button-link .ast-custom-button","px"),astra_css("astra-settings[header-main-rt-section-button-border-color]","border-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[header-main-rt-section-button-border-h-color]","border-color",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button:hover"),astra_responsive_spacing("astra-settings[header-main-rt-section-button-padding]",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button","padding",["top","right","bottom","left"]),astra_generate_outside_font_family_css("astra-settings[primary-header-button-font-family]",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_responsive_font_size("astra-settings[primary-header-button-font-size]",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-font-weight]","font-weight",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-line-height]","line-height",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-text-transform]","text-transform",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button"),astra_css("astra-settings[primary-header-button-letter-spacing]","letter-spacing",".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button, .ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button","px"),wp.customize("astra-settings[header-main-rt-section-button-border-size]",function(t){t.bind(function(t){var e;""==t.top&&""==t.right&&""==t.bottom&&""==t.left||(e=".main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button",e+="{",e+="border-top-width:"+t.top+"px;",e+="border-right-width:"+t.right+"px;",e+="border-left-width:"+t.left+"px;",e+="border-bottom-width:"+t.bottom+"px;",e+="border-style: solid;",astra_add_dynamic_css("header-main-rt-section-button-border-size",e+="}"))})});var t,e,n,s,a="",r="",i="";astraCustomizer.page_builder_button_style_css&&("color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"color"!=astraCustomizer.elementor_default_color_font_setting&&"font"!=astraCustomizer.elementor_default_color_font_setting||(r=", .elementor-button-wrapper .elementor-button, .elementor-button-wrapper .elementor-button:visited",i=a=", .elementor-button-wrapper .elementor-button.elementor-size-sm, .elementor-button-wrapper .elementor-button.elementor-size-xs, .elementor-button-wrapper .elementor-button.elementor-size-md, .elementor-button-wrapper .elementor-button.elementor-size-lg, .elementor-button-wrapper .elementor-button.elementor-size-xl, .elementor-button-wrapper .elementor-button")),astra_css("astra-settings[button-radius]","border-radius",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'+a,"px"),wp.customize("astra-settings[theme-button-border-group-border-size]",function(t){t.bind(function(t){var e;""==t.top&&""==t.right&&""==t.bottom&&""==t.left||(e='.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+r,e+="{",e+="border-top-width:"+t.top+"px;",e+="border-right-width:"+t.right+"px;",e+="border-left-width:"+t.left+"px;",e+="border-bottom-width:"+t.bottom+"px;",e+="border-style: solid;",astra_add_dynamic_css("theme-button-border-group-border-size",e+="}"))})}),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled], .wp-block-button .wp-block-button__link'+i,"padding",["top","bottom"]),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled], .wp-block-button .wp-block-button__link'+i,"padding",["left","right"]),wp.customize("astra-settings[transparent-header-button-border-group]",function(t){t.bind(function(t){var e=JSON.parse(t)["header-main-rt-trans-section-button-border-size"];""==e.top&&""==e.right&&""==e.bottom&&""==e.left||(t=".ast-theme-transparent-header .main-header-bar .button-custom-menu-item .ast-custom-button-link .ast-custom-button",t+="{",t+="border-top-width:"+e.top+"px;",t+="border-right-width:"+e.right+"px;",t+="border-left-width:"+e.left+"px;",t+="border-bottom-width:"+e.bottom+"px;",t+="border-style: solid;",astra_add_dynamic_css("header-main-rt-trans-section-button-border-size",t+="}"))})}),astra_generate_outside_font_family_css("astra-settings[font-family-site-title]",".site-title, .site-title a"),astra_css("astra-settings[font-weight-site-title]","font-weight",".site-title, .site-title a"),astra_responsive_font_size("astra-settings[font-size-site-title]",".site-title, .site-title a"),astra_css("astra-settings[line-height-site-title]","line-height",".site-title, .site-title a"),astra_css("astra-settings[text-transform-site-title]","text-transform",".site-title, .site-title a"),astra_generate_outside_font_family_css("astra-settings[font-family-site-tagline]",".site-header .site-description"),astra_css("astra-settings[font-weight-site-tagline]","font-weight",".site-header .site-description"),astra_responsive_font_size("astra-settings[font-size-site-tagline]",".site-header .site-description"),astra_css("astra-settings[line-height-site-tagline]","line-height",".site-header .site-description"),astra_css("astra-settings[text-transform-site-tagline]","text-transform",".site-header .site-description"),astraCustomizer.page_builder_button_style_css?(i=a=s=n=e=t="","color-typo"!=astraCustomizer.elementor_default_color_font_setting&&"color"!=astraCustomizer.elementor_default_color_font_setting||(e=t=",.elementor-button-wrapper .elementor-button, .elementor-button-wrapper .elementor-button:visited",a=", .elementor-button-wrapper .elementor-button, .elementor-button-wrapper .elementor-button:visited",i=s=n=",.elementor-button-wrapper .elementor-button:hover, .elementor-button-wrapper .elementor-button:focus"),astra_css("astra-settings[button-color]","color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+t),astra_css("astra-settings[button-bg-color]","background-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+e),astra_css("astra-settings[button-h-color]","color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus'+n),astra_css("astra-settings[button-bg-h-color]","background-color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus'+s),astra_css("astra-settings[theme-button-border-group-border-color]","border-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .wp-block-button .wp-block-button__link'+a),astra_css("astra-settings[theme-button-border-group-border-h-color]","border-color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus'+i)):(astra_css("astra-settings[button-color]","color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'),astra_css("astra-settings[button-bg-color]","background-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'),astra_css("astra-settings[button-bg-color]","border-color",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"]'),astra_css("astra-settings[button-h-color]","color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus'),astra_css("astra-settings[button-bg-h-color]","background-color",'button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus'),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled]',"padding",["top","bottom"]),astra_responsive_spacing("astra-settings[theme-button-padding]",'.menu-toggle, button, .ast-button, .button, input#submit, input[type="button"], input[type="submit"], input[type="reset"], .woocommerce a.button, .woocommerce button.button, .woocommerce .product a.button, .woocommerce .woocommerce-message a.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button,.woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled]',"padding",["left","right"])),wp.customize.bind("preview-ready",function(){wp.customize.selectiveRefresh.bind("render-partials-response",function(t){return!(t.contents.hasOwnProperty("astra-settings[footer-desktop-items]")||!t.contents.hasOwnProperty("astra-settings[header-desktop-items]")&&!t.contents.hasOwnProperty("astra-settings[header-mobile-items]"))&&void setTimeout(function(){document.dispatchEvent(new CustomEvent("astLayoutWidthChanged",{detail:{response:t}}))},10)}),wp.customize.selectiveRefresh.bind("partial-content-rendered",function(t){return!t.partial.id.includes("footer")&&(sessionStorage.setItem("astPartialContentRendered",!0),void document.dispatchEvent(new CustomEvent("astPartialContentRendered",{detail:{response:t}})))}),wp.customize.preview.bind("astPreviewDeviceChanged",function(t){document.dispatchEvent(new CustomEvent("astPreviewDeviceChanged",{detail:t}))})})}(jQuery); \ No newline at end of file diff --git a/assets/js/minified/extend-customizer.min.js b/assets/js/minified/extend-customizer.min.js index e51b7fe..5b7a9a3 100644 --- a/assets/js/minified/extend-customizer.min.js +++ b/assets/js/minified/extend-customizer.min.js @@ -1 +1 @@ -!function(a){var i=wp.customize;i.bind("pane-contents-reflowed",function(){var e=[];i.section.each(function(t){"ast_section"===t.params.type&&void 0!==t.params.section&&e.push(t)}),e.sort(i.utils.prioritySort).reverse(),a.each(e,function(t,e){a("#sub-accordion-section-"+e.params.section).children(".section-meta").after(e.headContainer)});var n=[];i.panel.each(function(t){"ast_panel"===t.params.type&&void 0!==t.params.panel&&n.push(t)}),n.sort(i.utils.prioritySort).reverse(),a.each(n,function(t,e){a("#sub-accordion-panel-"+e.params.panel).children(".panel-meta").after(e.headContainer)})});var t=wp.customize.Panel.prototype.embed,s=wp.customize.Panel.prototype.isContextuallyActive,e=wp.customize.Panel.prototype.attachEvents;wp.customize.Panel=wp.customize.Panel.extend({attachEvents:function(){if("ast_panel"===this.params.type&&void 0!==this.params.panel){e.call(this);var n=this;n.expanded.bind(function(t){var e=i.panel(n.params.panel);t?e.contentContainer.addClass("current-panel-parent"):e.contentContainer.removeClass("current-panel-parent")}),n.container.find(".customize-panel-back").off("click keydown").on("click keydown",function(t){i.utils.isKeydownButNotEnterEvent(t)||(t.preventDefault(),n.expanded()&&i.panel(n.params.panel).expand())})}else e.call(this)},embed:function(){if("ast_panel"===this.params.type&&void 0!==this.params.panel){t.call(this);a("#sub-accordion-panel-"+this.params.panel).append(this.headContainer)}else t.call(this)},isContextuallyActive:function(){if("ast_panel"!==this.params.type)return s.call(this);var e=this,n=this._children("panel","section");i.panel.each(function(t){t.params.panel&&t.params.panel===e.id&&n.push(t)}),n.sort(i.utils.prioritySort);var a=0;return _(n).each(function(t){t.active()&&t.isContextuallyActive()&&(a+=1)}),0!==a}});var n=wp.customize.Section.prototype.embed,o=wp.customize.Section.prototype.isContextuallyActive,c=wp.customize.Section.prototype.attachEvents;wp.customize.Section=wp.customize.Section.extend({attachEvents:function(){if("ast_section"===this.params.type&&void 0!==this.params.section){c.call(this);var n=this;n.expanded.bind(function(t){var e=i.section(n.params.section);t?e.contentContainer.addClass("current-section-parent"):e.contentContainer.removeClass("current-section-parent")}),n.container.find(".customize-section-back").off("click keydown").on("click keydown",function(t){i.utils.isKeydownButNotEnterEvent(t)||(t.preventDefault(),n.expanded()&&i.section(n.params.section).expand())})}else c.call(this)},embed:function(){if("ast_section"===this.params.type&&void 0!==this.params.section){n.call(this);a("#sub-accordion-section-"+this.params.section).append(this.headContainer)}else n.call(this)},isContextuallyActive:function(){if("ast_section"!==this.params.type)return o.call(this);var e=this,n=this._children("section","control");i.section.each(function(t){t.params.section&&t.params.section===e.id&&n.push(t)}),n.sort(i.utils.prioritySort);var a=0;return _(n).each(function(t){void 0!==t.isContextuallyActive?t.active()&&t.isContextuallyActive()&&(a+=1):t.active()&&(a+=1)}),0!==a}})}(jQuery); \ No newline at end of file +!function(a){var i=wp.customize;i.bind("pane-contents-reflowed",function(){var e=[];i.section.each(function(t){"ast_section"===t.params.type&&void 0!==t.params.section&&e.push(t)}),e.sort(i.utils.prioritySort).reverse(),a.each(e,function(t,e){a("#sub-accordion-section-"+e.params.section).children(".section-meta").after(e.headContainer)});var n=[];i.panel.each(function(t){"ast_panel"===t.params.type&&void 0!==t.params.panel&&n.push(t)}),n.sort(i.utils.prioritySort).reverse(),a.each(n,function(t,e){a("#sub-accordion-panel-"+e.params.panel).children(".panel-meta").after(e.headContainer)})});var t=wp.customize.Panel.prototype.embed,s=wp.customize.Panel.prototype.isContextuallyActive,e=wp.customize.Panel.prototype.attachEvents;wp.customize.Panel=wp.customize.Panel.extend({attachEvents:function(){var n;"ast_panel"===this.params.type&&void 0!==this.params.panel?(e.call(this),(n=this).expanded.bind(function(t){var e=i.panel(n.params.panel);t?e.contentContainer.addClass("current-panel-parent"):e.contentContainer.removeClass("current-panel-parent")}),n.container.find(".customize-panel-back").off("click keydown").on("click keydown",function(t){i.utils.isKeydownButNotEnterEvent(t)||(t.preventDefault(),n.expanded()&&i.panel(n.params.panel).expand())})):e.call(this)},embed:function(){"ast_panel"===this.params.type&&void 0!==this.params.panel?(t.call(this),a("#sub-accordion-panel-"+this.params.panel).append(this.headContainer)):t.call(this)},isContextuallyActive:function(){if("ast_panel"!==this.params.type)return s.call(this);var e=this,n=this._children("panel","section");i.panel.each(function(t){t.params.panel&&t.params.panel===e.id&&n.push(t)}),n.sort(i.utils.prioritySort);var a=0;return _(n).each(function(t){t.active()&&t.isContextuallyActive()&&(a+=1)}),0!==a}});var n=wp.customize.Section.prototype.embed,o=wp.customize.Section.prototype.isContextuallyActive,c=wp.customize.Section.prototype.attachEvents;wp.customize.Section=wp.customize.Section.extend({attachEvents:function(){var n;"ast_section"===this.params.type&&void 0!==this.params.section?(c.call(this),(n=this).expanded.bind(function(t){var e=i.section(n.params.section);t?e.contentContainer.addClass("current-section-parent"):e.contentContainer.removeClass("current-section-parent")}),n.container.find(".customize-section-back").off("click keydown").on("click keydown",function(t){i.utils.isKeydownButNotEnterEvent(t)||(t.preventDefault(),n.expanded()&&i.section(n.params.section).expand())})):c.call(this)},embed:function(){"ast_section"===this.params.type&&void 0!==this.params.section?(n.call(this),a("#sub-accordion-section-"+this.params.section).append(this.headContainer)):n.call(this)},isContextuallyActive:function(){if("ast_section"!==this.params.type)return o.call(this);var e=this,n=this._children("section","control");i.section.each(function(t){t.params.section&&t.params.section===e.id&&n.push(t)}),n.sort(i.utils.prioritySort);var a=0;return _(n).each(function(t){void 0!==t.isContextuallyActive?t.active()&&t.isContextuallyActive()&&(a+=1):t.active()&&(a+=1)}),0!==a}})}(jQuery); \ No newline at end of file diff --git a/assets/js/minified/flexibility.min.js b/assets/js/minified/flexibility.min.js index 97b547a..8a2b30a 100644 --- a/assets/js/minified/flexibility.min.js +++ b/assets/js/minified/flexibility.min.js @@ -1 +1 @@ -!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).flexibility=e()}}(function(){return function o(f,i,s){function a(r,e){if(!i[r]){if(!f[r]){var t="function"==typeof require&&require;if(!e&&t)return t(r,!0);if(c)return c(r,!0);var l=new Error("Cannot find module '"+r+"'");throw l.code="MODULE_NOT_FOUND",l}var n=i[r]={exports:{}};f[r][0].call(n.exports,function(e){var t=f[r][1][e];return a(t||e)},n,n.exports,o,f,i,s)}return i[r].exports}for(var c="function"==typeof require&&require,e=0;e=t.main+r.flexStyle.mainOuter?(t.main+=r.flexStyle.mainOuter,t.cross=Math.max(t.cross,r.flexStyle.crossOuter)):e.lines.push(t={main:r.flexStyle.mainOuter,cross:r.flexStyle.crossOuter,children:[]}),t.children.push(r);e.flexStyle.mainLines=n(e.lines,function(e,t){return Math.max(e,t.main)},0),e.flexStyle.crossLines=n(e.lines,function(e,t){return e+t.cross},0),"auto"===e.flexStyle.main&&(e.flexStyle.main=Math.max(e.flexStyle.mainOffset,e.flexStyle.mainLines+e.flexStyle.mainInnerBefore+e.flexStyle.mainInnerAfter+e.flexStyle.mainBorderBefore+e.flexStyle.mainBorderAfter)),"auto"===e.flexStyle.cross&&(e.flexStyle.cross=Math.max(e.flexStyle.crossOffset,e.flexStyle.crossLines+e.flexStyle.crossInnerBefore+e.flexStyle.crossInnerAfter+e.flexStyle.crossBorderBefore+e.flexStyle.crossBorderAfter)),e.flexStyle.crossSpace=e.flexStyle.cross-e.flexStyle.crossInnerBefore-e.flexStyle.crossInnerAfter-e.flexStyle.crossBorderBefore-e.flexStyle.crossBorderAfter-e.flexStyle.crossLines,e.flexStyle.mainOuter=e.flexStyle.main+e.flexStyle.mainBefore+e.flexStyle.mainAfter,e.flexStyle.crossOuter=e.flexStyle.cross+e.flexStyle.crossBefore+e.flexStyle.crossAfter}},{"../reduce":12}],7:[function(n,e,t){e.exports=function(e){for(var t,r=-1;t=e.children[++r];)n("./flex-direction")(t,e.style.flexDirection);n("./flex-direction")(e,e.style.flexDirection),n("./order")(e),n("./flexbox-lines")(e),n("./align-content")(e),r=-1;for(var l;l=e.lines[++r];)l.mainSpace=e.flexStyle.main-e.flexStyle.mainInnerBefore-e.flexStyle.mainInnerAfter-e.flexStyle.mainBorderBefore-e.flexStyle.mainBorderAfter-l.main,n("./flex-grow")(l),n("./flex-shrink")(l),n("./margin-main")(l),n("./margin-cross")(l),n("./justify-content")(l,e.style.justifyContent,e);n("./align-items")(e)}},{"./align-content":1,"./align-items":2,"./flex-direction":3,"./flex-grow":4,"./flex-shrink":5,"./flexbox-lines":6,"./justify-content":8,"./margin-cross":9,"./margin-main":10,"./order":11}],8:[function(e,t,r){t.exports=function(e,t,r){var l,n,o,f=r.flexStyle.mainInnerBefore,i=-1;if("flex-end"===t)for(l=e.mainSpace,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter;else if("center"===t)for(l=e.mainSpace/2,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter;else if("space-between"===t)for(n=e.mainSpace/(e.children.length-1),l=0,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter+n;else if("space-around"===t)for(l=(n=2*e.mainSpace/(2*e.children.length))/2,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter+n;else for(l=0,l+=f;o=e.children[++i];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter}},{}],9:[function(e,t,r){t.exports=function(e){for(var t,r=-1;t=e.children[++r];){var l=0;"auto"===t.flexStyle.crossBefore&&++l,"auto"===t.flexStyle.crossAfter&&++l;var n=e.cross-t.flexStyle.crossOuter;"auto"===t.flexStyle.crossBefore&&(t.flexStyle.crossBefore=n/l),"auto"===t.flexStyle.crossAfter&&(t.flexStyle.crossAfter=n/l),"auto"===t.flexStyle.cross?t.flexStyle.crossOuter=t.flexStyle.crossOffset+t.flexStyle.crossBefore+t.flexStyle.crossAfter:t.flexStyle.crossOuter=t.flexStyle.cross+t.flexStyle.crossBefore+t.flexStyle.crossAfter}}},{}],10:[function(e,t,r){t.exports=function(e){for(var t,r=0,l=-1;t=e.children[++l];)"auto"===t.flexStyle.mainBefore&&++r,"auto"===t.flexStyle.mainAfter&&++r;if(0=t.main+r.flexStyle.mainOuter?(t.main+=r.flexStyle.mainOuter,t.cross=Math.max(t.cross,r.flexStyle.crossOuter)):e.lines.push(t={main:r.flexStyle.mainOuter,cross:r.flexStyle.crossOuter,children:[]}),t.children.push(r);e.flexStyle.mainLines=n(e.lines,function(e,t){return Math.max(e,t.main)},0),e.flexStyle.crossLines=n(e.lines,function(e,t){return e+t.cross},0),"auto"===e.flexStyle.main&&(e.flexStyle.main=Math.max(e.flexStyle.mainOffset,e.flexStyle.mainLines+e.flexStyle.mainInnerBefore+e.flexStyle.mainInnerAfter+e.flexStyle.mainBorderBefore+e.flexStyle.mainBorderAfter)),"auto"===e.flexStyle.cross&&(e.flexStyle.cross=Math.max(e.flexStyle.crossOffset,e.flexStyle.crossLines+e.flexStyle.crossInnerBefore+e.flexStyle.crossInnerAfter+e.flexStyle.crossBorderBefore+e.flexStyle.crossBorderAfter)),e.flexStyle.crossSpace=e.flexStyle.cross-e.flexStyle.crossInnerBefore-e.flexStyle.crossInnerAfter-e.flexStyle.crossBorderBefore-e.flexStyle.crossBorderAfter-e.flexStyle.crossLines,e.flexStyle.mainOuter=e.flexStyle.main+e.flexStyle.mainBefore+e.flexStyle.mainAfter,e.flexStyle.crossOuter=e.flexStyle.cross+e.flexStyle.crossBefore+e.flexStyle.crossAfter}},{"../reduce":12}],7:[function(n,e,t){e.exports=function(e){for(var t,r,l=-1;t=e.children[++l];)n("./flex-direction")(t,e.style.flexDirection);for(n("./flex-direction")(e,e.style.flexDirection),n("./order")(e),n("./flexbox-lines")(e),n("./align-content")(e),l=-1;r=e.lines[++l];)r.mainSpace=e.flexStyle.main-e.flexStyle.mainInnerBefore-e.flexStyle.mainInnerAfter-e.flexStyle.mainBorderBefore-e.flexStyle.mainBorderAfter-r.main,n("./flex-grow")(r),n("./flex-shrink")(r),n("./margin-main")(r),n("./margin-cross")(r),n("./justify-content")(r,e.style.justifyContent,e);n("./align-items")(e)}},{"./align-content":1,"./align-items":2,"./flex-direction":3,"./flex-grow":4,"./flex-shrink":5,"./flexbox-lines":6,"./justify-content":8,"./margin-cross":9,"./margin-main":10,"./order":11}],8:[function(e,t,r){t.exports=function(e,t,r){var l,n,o,r=r.flexStyle.mainInnerBefore,f=-1;if("flex-end"===t)for(l=e.mainSpace,l+=r;o=e.children[++f];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter;else if("center"===t)for(l=e.mainSpace/2,l+=r;o=e.children[++f];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter;else if("space-between"===t)for(n=e.mainSpace/(e.children.length-1),l=0,l+=r;o=e.children[++f];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter+n;else if("space-around"===t)for(l=(n=2*e.mainSpace/(2*e.children.length))/2,l+=r;o=e.children[++f];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter+n;else for(l=0,l+=r;o=e.children[++f];)o.flexStyle.mainStart=l,l+=o.flexStyle.mainOuter}},{}],9:[function(e,t,r){t.exports=function(e){for(var t,r=-1;t=e.children[++r];){var l=0;"auto"===t.flexStyle.crossBefore&&++l,"auto"===t.flexStyle.crossAfter&&++l;var n=e.cross-t.flexStyle.crossOuter;"auto"===t.flexStyle.crossBefore&&(t.flexStyle.crossBefore=n/l),"auto"===t.flexStyle.crossAfter&&(t.flexStyle.crossAfter=n/l),"auto"===t.flexStyle.cross?t.flexStyle.crossOuter=t.flexStyle.crossOffset+t.flexStyle.crossBefore+t.flexStyle.crossAfter:t.flexStyle.crossOuter=t.flexStyle.cross+t.flexStyle.crossBefore+t.flexStyle.crossAfter}}},{}],10:[function(e,t,r){t.exports=function(e){for(var t,r=0,l=-1;t=e.children[++l];)"auto"===t.flexStyle.mainBefore&&++r,"auto"===t.flexStyle.mainAfter&&++r;if(0 .menu-link, .ast-header-break-point .ast-builder-menu .ast-menu-toggle"):e[a].querySelectorAll("ul.main-header-menu .ast-menu-toggle")).length)for(var n=0;n #ast-mobile-header .main-header-bar-navigation");r=document.querySelectorAll("#masthead > #ast-mobile-header .main-header-menu-toggle");e="0";if(null!==this.closest("#ast-fixed-header")&&(t=document.querySelectorAll("#ast-fixed-header > #ast-mobile-header .main-header-bar-navigation"),r=document.querySelectorAll("#ast-fixed-header .main-header-menu-toggle"),e="0"),void 0===t[e])return!1;for(var a=t[e].querySelectorAll(".menu-item-has-children"),n=0;n #ast-desktop-header"),s=main_header_masthead.querySelector("#masthead > #ast-mobile-header");if(t<=a){if("mobile"===L)return;e&&b&&(s&&main_header_masthead.removeChild(s),main_header_masthead.appendChild(b)),e&&n&&(b=n.cloneNode(!0)),L="mobile",n&&main_header_masthead.removeChild(n)}else{if("desktop"===L)return;e&&b&&(n&&main_header_masthead.removeChild(n),main_header_masthead.appendChild(b)),e&&s&&(b=s.cloneNode(!0)),L="desktop",s&&main_header_masthead.removeChild(s)}}}window.addEventListener("load",function(){E(!0)}),document.addEventListener("astPartialContentRendered",function(){E()}),window.addEventListener("resize",function(){clearTimeout(y),y=setTimeout(function(){E(!0),d(),document.dispatchEvent(new CustomEvent("astLayoutWidthChanged",{detail:{response:""}}))},50)})}(); \ No newline at end of file diff --git a/assets/js/minified/navigation.min.js b/assets/js/minified/navigation.min.js index 7fb45b8..4f490fa 100644 --- a/assets/js/minified/navigation.min.js +++ b/assets/js/minified/navigation.min.js @@ -1 +1 @@ -var astraGetParents=function(e,t){Element.prototype.matches||(Element.prototype.matches=Element.prototype.matchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector||Element.prototype.oMatchesSelector||Element.prototype.webkitMatchesSelector||function(e){for(var t=(this.document||this.ownerDocument).querySelectorAll(e),a=t.length;0<=--a&&t.item(a)!==this;);return-1 .menu-link, .ast-header-break-point ul.main-header-menu .ast-menu-toggle");else a=e[t].querySelectorAll("ul.main-header-menu .ast-menu-toggle");if(0 .menu-link, .ast-header-break-point ul.main-header-menu .ast-menu-toggle"):e[a].querySelectorAll("ul.main-header-menu .ast-menu-toggle")).length)for(var n=0;n .menu-link, .ast-header-break-point ul.main-header-menu .ast-menu-toggle");else a=e[t].querySelectorAll("ul.main-header-menu .ast-menu-toggle");if(0 .menu-link, .ast-header-break-point ul.main-header-menu .ast-menu-toggle"):e[a].querySelectorAll("ul.main-header-menu .ast-menu-toggle")).length)for(var n=0;n').after(o.button):(o.wrappingLabel.wrap('