PATH:
home
/
ediuae
/
pearlandpetalbeautyspa.com
/
8f1b7c
header.php 0000644 00000000727 15156752224 0006524 0 ustar 00 <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo('charset'); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body id="blog" <?php body_class(); ?>> <?php wp_body_open(); ?> <div class="page-wrap"> <?php do_action('envo_royal_page_area'); ?> functions.php 0000644 00000033620 15156752224 0007302 0 ustar 00 <?php /** * The current version of the theme. */ $the_theme = wp_get_theme(); define('ENVO_ROYAL_VERSION', $the_theme->get( 'Version' )); add_action('after_setup_theme', 'envo_royal_setup'); if (!function_exists('envo_royal_setup')) : /** * Global functions */ function envo_royal_setup() { // Theme lang. load_theme_textdomain('envo-royal', get_template_directory() . '/languages'); // Add Title Tag Support. add_theme_support('title-tag'); $menus = array('main_menu' => esc_html__('Main Menu', 'envo-royal')); if (class_exists('WooCommerce') && get_theme_mod('header_layout', 'woonav') == 'woonav') { $woo_menus = array( 'main_menu_right' => esc_html__('Menu Right', 'envo-royal'), 'main_menu_cats' => esc_html__('Categories Menu', 'envo-royal'), ); } else { $woo_menus = array(); // not displayed if Woo not installed } $all_menus = array_merge($menus, $woo_menus); // Register Menus. register_nav_menus($all_menus); add_theme_support('post-thumbnails'); set_post_thumbnail_size(300, 300, true); add_image_size('envo-royal-img', 650, 430, true); // Add Custom Background Support. $args = array( 'default-color' => 'ffffff', ); add_theme_support('custom-background', $args); add_theme_support('custom-logo', array( 'height' => 60, 'width' => 200, 'flex-height' => true, 'flex-width' => true, 'header-text' => array('site-title', 'site-description'), )); // Adds RSS feed links to for posts and comments. add_theme_support('automatic-feed-links'); /* * Let WordPress manage the document title. */ add_theme_support('title-tag'); // Set the default content width. $GLOBALS['content_width'] = 1140; add_theme_support('custom-header', apply_filters('envo_royal_custom_header_args', array( 'default-image' => get_parent_theme_file_uri( '/assets/img/header.webp' ), 'width' => 2000, 'height' => 1200, 'default-text-color' => 'fff', 'flex-height' => true, 'video' => false, 'wp-head-callback' => 'envo_royal_header_style', ))); // WooCommerce support. add_theme_support('woocommerce'); add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); add_theme_support('html5', array('search-form')); add_theme_support('align-wide'); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style(array('assets/css/bootstrap.css', envo_royal_fonts_url(), 'assets/css/editor-style.css')); /** * Customizer options */ require_once( trailingslashit(get_template_directory()) . 'extra/customizer.php' ); require_once( trailingslashit(get_template_directory()) . 'extra/customizer-recommend.php' ); } endif; /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function envo_royal_pingback_header() { if (is_singular() && pings_open()) { printf('<link rel="pingback" href="%s">' . "\n", esc_url(get_bloginfo('pingback_url'))); } } add_action('wp_head', 'envo_royal_pingback_header'); /** * Set Content Width */ function envo_royal_content_width() { $content_width = $GLOBALS['content_width']; if (is_active_sidebar('envo-royal-right-sidebar')) { $content_width = 847; } else { $content_width = 1140; } /** * Filter content width of the theme. */ $GLOBALS['content_width'] = apply_filters('envo_royal_content_width', $content_width); } add_action('template_redirect', 'envo_royal_content_width', 0); /** * Register custom fonts. */ function envo_royal_fonts_url() { $fonts_url = ''; /** * Translators: If there are characters in your language that are not * supported by Montserrat, translate this to 'off'. Do not translate * into your own language. */ $font = get_theme_mod('main_typographydesktop', ''); if ('' == $font) { $font_families = array(); $font_families[] = 'Montserrat:300,400,500,600,700,800'; $query_args = array( 'family' => urlencode(implode('|', $font_families)), 'subset' => urlencode('cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese'), ); $fonts_url = add_query_arg($query_args, 'https://fonts.googleapis.com/css'); } return esc_url_raw($fonts_url); } /** * Add preconnect for Google Fonts. */ function envo_royal_resource_hints($urls, $relation_type) { if (wp_style_is('envo-royal-fonts', 'queue') && 'preconnect' === $relation_type) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } return $urls; } add_filter('wp_resource_hints', 'envo_royal_resource_hints', 10, 2); if (!function_exists('envo_royal_header_style')) : /** * Styles the header image and text displayed on the blog. */ function envo_royal_header_style() { $header_image = get_header_image(); $header_text_color = get_header_textcolor(); if (get_theme_support('custom-header', 'default-text-color') !== $header_text_color || !empty($header_image)) { ?> <style type="text/css" id="envo-royal-header-css"> <?php // Has the text been hidden? if ('blank' === $header_text_color) : ?> .site-title, .site-description { position: absolute; clip: rect(1px, 1px, 1px, 1px); } <?php endif; ?> </style> <?php } } endif; // envo_royal_header_style /** * Enqueue Styles (normal style.css and bootstrap.css) */ function envo_royal_theme_stylesheets() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style('envo-royal-fonts', envo_royal_fonts_url(), array(), null); wp_enqueue_style('bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.css', array(), '3.3.7'); wp_enqueue_style('hc-offcanvas-nav', get_template_directory_uri() . '/assets/css/hc-offcanvas-nav.min.css', array(), ENVO_ROYAL_VERSION); // Theme stylesheet. wp_enqueue_style('envo-royal-stylesheet', get_stylesheet_uri(), array('bootstrap'), ENVO_ROYAL_VERSION); // WooCommerce stylesheet. if (class_exists('WooCommerce')) { wp_enqueue_style('envo-royal-woo-stylesheet', get_template_directory_uri() . '/assets/css/woocommerce.css', array('envo-royal-stylesheet', 'woocommerce-general'), ENVO_ROYAL_VERSION); } // Load Line Awesome css. wp_enqueue_style('line-awesome', get_template_directory_uri() . '/assets/css/line-awesome.min.css', array(), '1.3.0'); } add_action('wp_enqueue_scripts', 'envo_royal_theme_stylesheets'); /** * Register jquery */ function envo_royal_theme_js() { wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/js/bootstrap.min.js', array('jquery'), '3.3.7', true); wp_enqueue_script('hc-offcanvas-nav', get_template_directory_uri() . '/assets/js/hc-offcanvas-nav.min.js', array('jquery'), ENVO_ROYAL_VERSION, true); wp_enqueue_script('envo-royal-theme-js', get_template_directory_uri() . '/assets/js/customscript.js', array('jquery'), ENVO_ROYAL_VERSION, true); } add_action('wp_enqueue_scripts', 'envo_royal_theme_js'); if (!function_exists('envo_royal_is_pro_activated')) { /** * Query PRO activation */ function envo_royal_is_pro_activated() { return defined('ENVO_ROYAL_PRO_CURRENT_VERSION') ? true : false; } } if ( !function_exists( 'envo_extra_is_activated' ) ) { /** * Query Envo extra activation */ function envo_extra_is_activated() { return defined( 'ENVO_EXTRA_CURRENT_VERSION' ) ? true : false; } } /** * Register Custom Navigation Walker include custom menu widget to use walkerclass */ require_once( trailingslashit(get_template_directory()) . 'extra/wp_bootstrap_navwalker.php' ); /** * Register Theme Info Page */ if ( is_admin() ) { require_once( trailingslashit( get_template_directory() ) . 'extra/envo-royal-dashboard.php' ); require_once( trailingslashit( get_template_directory() ) . 'extra/envo-royal-plugin-install.php' ); } require_once( trailingslashit(get_template_directory()) . 'extra/extra.php' ); if (class_exists('WooCommerce')) { /** * WooCommerce options */ require_once( trailingslashit(get_template_directory()) . 'extra/woocommerce.php' ); } add_action('widgets_init', 'envo_royal_widgets_init'); /** * Register the Sidebar(s) */ function envo_royal_widgets_init() { register_sidebar( array( 'name' => esc_html__('Sidebar', 'envo-royal'), 'id' => 'envo-royal-right-sidebar', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="widget-title"><h3>', 'after_title' => '</h3></div>', ) ); register_sidebar( array( 'name' => esc_html__('Top Bar Section', 'envo-royal'), 'id' => 'envo-royal-top-bar-area', 'before_widget' => '<div id="%1$s" class="widget %2$s col-sm-4">', 'after_widget' => '</div>', 'before_title' => '<div class="widget-title"><h3>', 'after_title' => '</h3></div>', ) ); if (get_theme_mod( 'header_layout', 'busnav' ) != 'busnav') { register_sidebar( array( 'name' => esc_html__('Header Section', 'envo-royal'), 'id' => 'envo-royal-header-area', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<div class="widget-title"><h3>', 'after_title' => '</h3></div>', ) ); } register_sidebar( array( 'name' => esc_html__('Footer Section', 'envo-royal'), 'id' => 'envo-royal-footer-area', 'before_widget' => '<div id="%1$s" class="widget %2$s col-md-3">', 'after_widget' => '</div>', 'before_title' => '<div class="widget-title"><h3>', 'after_title' => '</h3></div>', ) ); } if (!function_exists('envo_royal_main_content_width_columns')) { /** * Set the content width based on enabled sidebar */ function envo_royal_main_content_width_columns() { $columns = '12'; $hide_sidebar = get_post_meta( get_the_ID(), 'envo_extra_hide_sidebar', true ); if (is_active_sidebar('envo-royal-right-sidebar') && is_singular() && $hide_sidebar == 'on' ) { $columns = '12'; } elseif (is_active_sidebar('envo-royal-right-sidebar')) { $columns = $columns - 3; } echo absint($columns); } } if (!function_exists('envo_royal_featured_image')) : /** * Generate featured image. */ add_action('envo_royal_archive_image', 'envo_royal_featured_image', 10); function envo_royal_featured_image() { if ( is_singular( ) ) { envo_royal_thumb_img('full', '', false, true); } else { envo_royal_thumb_img('envo-royal-img'); } } endif; if (!function_exists('envo_royal_excerpt_length')) : /** * Excerpt limit. */ function envo_royal_excerpt_length($length) { $num = get_theme_mod('blog_posts_excerpt_number_words', 35); return absint($num); } add_filter('excerpt_length', 'envo_royal_excerpt_length', 999); endif; if (!function_exists('envo_royal_excerpt_more')) : /** * Excerpt more. */ function envo_royal_excerpt_more($more) { return '…'; } add_filter('excerpt_more', 'envo_royal_excerpt_more'); endif; if (!function_exists('envo_royal_thumb_img')) : /** * Returns featured image. */ function envo_royal_thumb_img($img = 'full', $col = '', $link = true, $single = false) { if (( has_post_thumbnail() && $link == true)) { ?> <div class="news-thumb <?php echo esc_attr($col); ?>"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> <?php the_post_thumbnail($img); ?> </a> </div><!-- .news-thumb --> <?php } elseif (has_post_thumbnail()) { ?> <div class="news-thumb <?php echo esc_attr($col); ?>"> <?php the_post_thumbnail($img); ?> </div><!-- .news-thumb --> <?php } } endif; if (!function_exists('wp_body_open')) : /** * Fire the wp_body_open action. * * Added for backwards compatibility to support pre 5.2.0 WordPress versions. * */ function wp_body_open() { /** * Triggered after the opening <body> tag. * */ do_action('wp_body_open'); } endif; /** * Skip to content link */ function envo_royal_skip_link() { echo '<a class="skip-link screen-reader-text" href="#site-content">' . esc_html__('Skip to the content', 'envo-royal') . '</a>'; } add_action('wp_body_open', 'envo_royal_skip_link', 5); function envo_royal_second_menu() { $class = ''; if (class_exists('WooCommerce')) { $class .= 'search-on '; } if (has_nav_menu('main_menu_cats') && get_theme_mod('category_menu_on_off', 'block') == 'block' ) { $class .= 'menu-cats-on '; } if (has_nav_menu('main_menu_right')) { $class .= 'menu-right-on '; } echo esc_html($class); } /** * Check Elementor plugin */ function envo_royal_check_for_elementor() { require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); return is_plugin_active( 'elementor/elementor.php' ); } single.php 0000644 00000001626 15156752224 0006554 0 ustar 00 <?php get_header(); ?> <!-- start content container --> <div class="row single-post"> <article class="col-md-<?php envo_royal_main_content_width_columns(); ?>"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div <?php post_class( 'single-post-content' ); ?>> <?php do_action( 'envo_royal_single_before' ); $contents = get_theme_mod( 'single_layout', array( 'content', 'cats_tags', 'nav' ) ); // Loop parts. foreach ( $contents as $content ) { do_action( 'envo_royal_single_' . $content ); } do_action( 'envo_royal_single_after' ); ?> </div> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </article> <?php do_action( 'envo_royal_sidebar' ); ?> </div> <!-- end content container --> <?php get_footer(); template-parts/template-page-builders.php 0000644 00000000437 15156752225 0014571 0 ustar 00 <?php /** * * Template name: Page Builders * */ get_header(); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div <?php post_class(); ?>> <?php the_content(); ?> </div> <?php endwhile; else : get_template_part( 'content', 'none' ); endif; get_footer(); template-parts/template-no-sidebar.php 0000644 00000001107 15156752225 0014064 0 ustar 00 <?php /** * * Template name: No Sidebar * */ get_header(); ?> <!-- start page content container --> <div class="row single-page"> <article class="col-md-12"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div <?php post_class(); ?>> <?php do_action( 'envo_royal_page_content' ); ?> </div> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </article> </div> <!-- end page content container --> <?php get_footer(); rtl.css 0000644 00000100714 15156752225 0006074 0 ustar 00 html { direction: rtl; } body { direction: rtl; } .flip.text-left { text-align: right; } .flip.text-right { text-align: left; } .list-unstyled { padding-right: 0; padding-left: initial; } .list-inline { padding-right: 0; padding-left: initial; margin-right: -5px; margin-left: 0; } dd { margin-right: 0; margin-left: initial; } @media (min-width: 768px) { .dl-horizontal dt { float: right; clear: right; text-align: left; } .dl-horizontal dd { margin-right: 180px; margin-left: 0; } } blockquote { border-right: 5px solid #eeeeee; border-left: 0; } .blockquote-reverse, blockquote.pull-left { padding-left: 15px; padding-right: 0; border-left: 5px solid #eeeeee; border-right: 0; text-align: left; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: right; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { left: 100%; right: auto; } .col-xs-pull-11 { left: 91.66666667%; right: auto; } .col-xs-pull-10 { left: 83.33333333%; right: auto; } .col-xs-pull-9 { left: 75%; right: auto; } .col-xs-pull-8 { left: 66.66666667%; right: auto; } .col-xs-pull-7 { left: 58.33333333%; right: auto; } .col-xs-pull-6 { left: 50%; right: auto; } .col-xs-pull-5 { left: 41.66666667%; right: auto; } .col-xs-pull-4 { left: 33.33333333%; right: auto; } .col-xs-pull-3 { left: 25%; right: auto; } .col-xs-pull-2 { left: 16.66666667%; right: auto; } .col-xs-pull-1 { left: 8.33333333%; right: auto; } .col-xs-pull-0 { left: auto; right: auto; } .col-xs-push-12 { right: 100%; left: 0; } .col-xs-push-11 { right: 91.66666667%; left: 0; } .col-xs-push-10 { right: 83.33333333%; left: 0; } .col-xs-push-9 { right: 75%; left: 0; } .col-xs-push-8 { right: 66.66666667%; left: 0; } .col-xs-push-7 { right: 58.33333333%; left: 0; } .col-xs-push-6 { right: 50%; left: 0; } .col-xs-push-5 { right: 41.66666667%; left: 0; } .col-xs-push-4 { right: 33.33333333%; left: 0; } .col-xs-push-3 { right: 25%; left: 0; } .col-xs-push-2 { right: 16.66666667%; left: 0; } .col-xs-push-1 { right: 8.33333333%; left: 0; } .col-xs-push-0 { right: auto; left: 0; } .col-xs-offset-12 { margin-right: 100%; margin-left: 0; } .col-xs-offset-11 { margin-right: 91.66666667%; margin-left: 0; } .col-xs-offset-10 { margin-right: 83.33333333%; margin-left: 0; } .col-xs-offset-9 { margin-right: 75%; margin-left: 0; } .col-xs-offset-8 { margin-right: 66.66666667%; margin-left: 0; } .col-xs-offset-7 { margin-right: 58.33333333%; margin-left: 0; } .col-xs-offset-6 { margin-right: 50%; margin-left: 0; } .col-xs-offset-5 { margin-right: 41.66666667%; margin-left: 0; } .col-xs-offset-4 { margin-right: 33.33333333%; margin-left: 0; } .col-xs-offset-3 { margin-right: 25%; margin-left: 0; } .col-xs-offset-2 { margin-right: 16.66666667%; margin-left: 0; } .col-xs-offset-1 { margin-right: 8.33333333%; margin-left: 0; } .col-xs-offset-0 { margin-right: 0%; margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: right; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { left: 100%; right: auto; } .col-sm-pull-11 { left: 91.66666667%; right: auto; } .col-sm-pull-10 { left: 83.33333333%; right: auto; } .col-sm-pull-9 { left: 75%; right: auto; } .col-sm-pull-8 { left: 66.66666667%; right: auto; } .col-sm-pull-7 { left: 58.33333333%; right: auto; } .col-sm-pull-6 { left: 50%; right: auto; } .col-sm-pull-5 { left: 41.66666667%; right: auto; } .col-sm-pull-4 { left: 33.33333333%; right: auto; } .col-sm-pull-3 { left: 25%; right: auto; } .col-sm-pull-2 { left: 16.66666667%; right: auto; } .col-sm-pull-1 { left: 8.33333333%; right: auto; } .col-sm-pull-0 { left: auto; right: auto; } .col-sm-push-12 { right: 100%; left: 0; } .col-sm-push-11 { right: 91.66666667%; left: 0; } .col-sm-push-10 { right: 83.33333333%; left: 0; } .col-sm-push-9 { right: 75%; left: 0; } .col-sm-push-8 { right: 66.66666667%; left: 0; } .col-sm-push-7 { right: 58.33333333%; left: 0; } .col-sm-push-6 { right: 50%; left: 0; } .col-sm-push-5 { right: 41.66666667%; left: 0; } .col-sm-push-4 { right: 33.33333333%; left: 0; } .col-sm-push-3 { right: 25%; left: 0; } .col-sm-push-2 { right: 16.66666667%; left: 0; } .col-sm-push-1 { right: 8.33333333%; left: 0; } .col-sm-push-0 { right: auto; left: 0; } .col-sm-offset-12 { margin-right: 100%; margin-left: 0; } .col-sm-offset-11 { margin-right: 91.66666667%; margin-left: 0; } .col-sm-offset-10 { margin-right: 83.33333333%; margin-left: 0; } .col-sm-offset-9 { margin-right: 75%; margin-left: 0; } .col-sm-offset-8 { margin-right: 66.66666667%; margin-left: 0; } .col-sm-offset-7 { margin-right: 58.33333333%; margin-left: 0; } .col-sm-offset-6 { margin-right: 50%; margin-left: 0; } .col-sm-offset-5 { margin-right: 41.66666667%; margin-left: 0; } .col-sm-offset-4 { margin-right: 33.33333333%; margin-left: 0; } .col-sm-offset-3 { margin-right: 25%; margin-left: 0; } .col-sm-offset-2 { margin-right: 16.66666667%; margin-left: 0; } .col-sm-offset-1 { margin-right: 8.33333333%; margin-left: 0; } .col-sm-offset-0 { margin-right: 0%; margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: right; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { left: 100%; right: auto; } .col-md-pull-11 { left: 91.66666667%; right: auto; } .col-md-pull-10 { left: 83.33333333%; right: auto; } .col-md-pull-9 { left: 75%; right: auto; } .col-md-pull-8 { left: 66.66666667%; right: auto; } .col-md-pull-7 { left: 58.33333333%; right: auto; } .col-md-pull-6 { left: 50%; right: auto; } .col-md-pull-5 { left: 41.66666667%; right: auto; } .col-md-pull-4 { left: 33.33333333%; right: auto; } .col-md-pull-3 { left: 25%; right: auto; } .col-md-pull-2 { left: 16.66666667%; right: auto; } .col-md-pull-1 { left: 8.33333333%; right: auto; } .col-md-pull-0 { left: auto; right: auto; } .col-md-push-12 { right: 100%; left: 0; } .col-md-push-11 { right: 91.66666667%; left: 0; } .col-md-push-10 { right: 83.33333333%; left: 0; } .col-md-push-9 { right: 75%; left: 0; } .col-md-push-8 { right: 66.66666667%; left: 0; } .col-md-push-7 { right: 58.33333333%; left: 0; } .col-md-push-6 { right: 50%; left: 0; } .col-md-push-5 { right: 41.66666667%; left: 0; } .col-md-push-4 { right: 33.33333333%; left: 0; } .col-md-push-3 { right: 25%; left: 0; } .col-md-push-2 { right: 16.66666667%; left: 0; } .col-md-push-1 { right: 8.33333333%; left: 0; } .col-md-push-0 { right: auto; left: 0; } .col-md-offset-12 { margin-right: 100%; margin-left: 0; } .col-md-offset-11 { margin-right: 91.66666667%; margin-left: 0; } .col-md-offset-10 { margin-right: 83.33333333%; margin-left: 0; } .col-md-offset-9 { margin-right: 75%; margin-left: 0; } .col-md-offset-8 { margin-right: 66.66666667%; margin-left: 0; } .col-md-offset-7 { margin-right: 58.33333333%; margin-left: 0; } .col-md-offset-6 { margin-right: 50%; margin-left: 0; } .col-md-offset-5 { margin-right: 41.66666667%; margin-left: 0; } .col-md-offset-4 { margin-right: 33.33333333%; margin-left: 0; } .col-md-offset-3 { margin-right: 25%; margin-left: 0; } .col-md-offset-2 { margin-right: 16.66666667%; margin-left: 0; } .col-md-offset-1 { margin-right: 8.33333333%; margin-left: 0; } .col-md-offset-0 { margin-right: 0%; margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: right; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { left: 100%; right: auto; } .col-lg-pull-11 { left: 91.66666667%; right: auto; } .col-lg-pull-10 { left: 83.33333333%; right: auto; } .col-lg-pull-9 { left: 75%; right: auto; } .col-lg-pull-8 { left: 66.66666667%; right: auto; } .col-lg-pull-7 { left: 58.33333333%; right: auto; } .col-lg-pull-6 { left: 50%; right: auto; } .col-lg-pull-5 { left: 41.66666667%; right: auto; } .col-lg-pull-4 { left: 33.33333333%; right: auto; } .col-lg-pull-3 { left: 25%; right: auto; } .col-lg-pull-2 { left: 16.66666667%; right: auto; } .col-lg-pull-1 { left: 8.33333333%; right: auto; } .col-lg-pull-0 { left: auto; right: auto; } .col-lg-push-12 { right: 100%; left: 0; } .col-lg-push-11 { right: 91.66666667%; left: 0; } .col-lg-push-10 { right: 83.33333333%; left: 0; } .col-lg-push-9 { right: 75%; left: 0; } .col-lg-push-8 { right: 66.66666667%; left: 0; } .col-lg-push-7 { right: 58.33333333%; left: 0; } .col-lg-push-6 { right: 50%; left: 0; } .col-lg-push-5 { right: 41.66666667%; left: 0; } .col-lg-push-4 { right: 33.33333333%; left: 0; } .col-lg-push-3 { right: 25%; left: 0; } .col-lg-push-2 { right: 16.66666667%; left: 0; } .col-lg-push-1 { right: 8.33333333%; left: 0; } .col-lg-push-0 { right: auto; left: 0; } .col-lg-offset-12 { margin-right: 100%; margin-left: 0; } .col-lg-offset-11 { margin-right: 91.66666667%; margin-left: 0; } .col-lg-offset-10 { margin-right: 83.33333333%; margin-left: 0; } .col-lg-offset-9 { margin-right: 75%; margin-left: 0; } .col-lg-offset-8 { margin-right: 66.66666667%; margin-left: 0; } .col-lg-offset-7 { margin-right: 58.33333333%; margin-left: 0; } .col-lg-offset-6 { margin-right: 50%; margin-left: 0; } .col-lg-offset-5 { margin-right: 41.66666667%; margin-left: 0; } .col-lg-offset-4 { margin-right: 33.33333333%; margin-left: 0; } .col-lg-offset-3 { margin-right: 25%; margin-left: 0; } .col-lg-offset-2 { margin-right: 16.66666667%; margin-left: 0; } .col-lg-offset-1 { margin-right: 8.33333333%; margin-left: 0; } .col-lg-offset-0 { margin-right: 0%; margin-left: 0; } } caption { text-align: right; } th { text-align: right; } @media screen and (max-width: 767px) { .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-right: 0; border-left: initial; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-left: 0; border-right: initial; } } .radio label, .checkbox label { padding-right: 20px; padding-left: initial; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { margin-right: -20px; margin-left: auto; } .radio-inline, .checkbox-inline { padding-right: 20px; padding-left: 0; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-right: 10px; margin-left: 0; } .has-feedback .form-control { padding-left: 42.5px; padding-right: 12px; } .form-control-feedback { left: 0; right: auto; } @media (min-width: 768px) { .form-inline label { padding-right: 0; padding-left: initial; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { margin-right: 0; margin-left: auto; } } @media (min-width: 768px) { .form-horizontal .control-label { text-align: left; } } .form-horizontal .has-feedback .form-control-feedback { left: 15px; right: auto; } .caret { margin-right: 2px; margin-left: 0; } .dropdown-menu { right: 0; left: auto; float: left; text-align: right; } .dropdown-menu.pull-right { left: 0; right: auto; float: right; } .dropdown-menu-right { left: auto; right: 0; } .dropdown-menu-left { left: 0; right: auto; } @media (min-width: 768px) { .navbar-right .dropdown-menu { left: auto; right: 0; } .navbar-right .dropdown-menu-left { left: 0; right: auto; } li li ul.dropdown-menu { left: 0; right: 100%; width: fit-content; } .dropdown-menu > li > a { border-bottom: 0; padding: 5px 10px 5px 20px; } } .btn-group > .btn, .btn-group-vertical > .btn { float: right; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-right: -1px; margin-left: 0px; } .btn-toolbar { margin-right: -5px; margin-left: 0px; } .btn-toolbar .btn-group, .btn-toolbar .input-group { float: right; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-right: 5px; margin-left: 0px; } .btn-group > .btn:first-child { margin-right: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 4px; border-bottom-left-radius: 4px; border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group { float: right; } .btn-group.btn-group-justified > .btn, .btn-group.btn-group-justified > .btn-group { float: none; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle { border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn-group:last-child > .btn:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn .caret { margin-right: 0; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-right: 0; } .input-group .form-control { float: right; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 4px; border-top-right-radius: 4px; border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group-addon:first-child { border-left: 0px; border-right: 1px solid; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-left-radius: 4px; border-top-left-radius: 4px; border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:last-child { border-left-width: 1px; border-left-style: solid; border-right: 0px; } .input-group-btn > .btn + .btn { margin-right: -1px; margin-left: auto; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-left: -1px; margin-right: auto; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { margin-right: -1px; margin-left: auto; } .nav { padding-right: 0; padding-left: initial; } .nav-tabs > li { float: right; } .nav-tabs > li > a { margin-left: auto; margin-right: -2px; border-radius: 4px 4px 0 0; } .nav-pills > li { float: right; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-right: 2px; margin-left: auto; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-right: 0; margin-left: auto; } .nav-justified > .dropdown .dropdown-menu { right: auto; } .nav-tabs-justified > li > a { margin-left: 0; margin-right: auto; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-radius: 4px 4px 0 0; } } @media (min-width: 768px) { .navbar-header { float: right; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; } .navbar-brand { float: right; } #site-navigation .navbar-brand { float: left; margin-right: 0; margin-left: -50px; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-right: 0; margin-left: auto; } } .navbar-toggle { float: left; margin-left: 15px; margin-right: auto; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 25px 5px 15px; } } @media (min-width: 768px) { .navbar-nav { float: right; } .navbar-right { float: left !important; } .navbar-left { float: right !important; } } @media (min-width: 768px) { .navbar-left.flip { float: right !important; } .navbar-right:last-child { margin-left: -15px; margin-right: auto; } .navbar-right.flip { float: left !important; margin-left: -15px; margin-right: auto; } .navbar-right .dropdown-menu { left: 0; right: auto; } } @media (min-width: 768px) { .navbar-text { float: right; } .navbar-text.navbar-right:last-child { margin-left: 0; margin-right: auto; } } .pagination { padding-right: 0; } .pagination > li > a, .pagination > li > span { float: right; margin-right: -1px; margin-left: 0px; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-bottom-right-radius: 4px; border-top-right-radius: 4px; border-bottom-left-radius: 0; border-top-left-radius: 0; } .pagination > li:last-child > a, .pagination > li:last-child > span { margin-right: -1px; border-bottom-left-radius: 4px; border-top-left-radius: 4px; border-bottom-right-radius: 0; border-top-right-radius: 0; } .pager { padding-right: 0; padding-left: initial; } .pager .next > a, .pager .next > span { float: left; } .pager .previous > a, .pager .previous > span { float: right; } .nav-pills > li > a > .badge { margin-left: 0px; margin-right: 3px; } .list-group-item > .badge { float: left; } .list-group-item > .badge + .badge { margin-left: 5px; margin-right: auto; } .alert-dismissable, .alert-dismissible { padding-left: 35px; padding-right: 15px; } .alert-dismissable .close, .alert-dismissible .close { right: auto; left: -21px; } .progress-bar { float: right; } .media > .pull-left { margin-right: 10px; } .media > .pull-left.flip { margin-right: 0; margin-left: 10px; } .media > .pull-right { margin-left: 10px; } .media > .pull-right.flip { margin-left: 0; margin-right: 10px; } .media-right, .media > .pull-right { padding-right: 10px; padding-left: initial; } .media-left, .media > .pull-left { padding-left: 10px; padding-right: initial; } .media-list { padding-right: 0; padding-left: initial; list-style: none; } .list-group { padding-right: 0; padding-left: initial; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-right-radius: 3px; border-top-left-radius: 0; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-left-radius: 3px; border-top-right-radius: 0; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; border-top-right-radius: 0; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; border-top-left-radius: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-right: 0; border-left: none; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: none; border-left: 0; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object { right: 0; left: auto; } .close { float: left; } .pull-right.flip { float: left !important; } .pull-left.flip { float: right !important; } .text-left { text-align: right; } .text-right { text-align: left; } .comments-meta { right: 0; left: auto; } .navbar li.fa:before { right: 10px; left: auto; } .navbar li.fa > a, #top-navigation.navbar li.fa > a { padding-right: 35px !important; padding-left: 15px !important; } span.space-right { float: right; margin-right: 0; margin-left: 15px; } .cat-links, .tags-links { float: right; } span.author-meta { display: inline-block; } .author-meta-by { float: right; margin-left: 5px; } span.comments-meta i { margin-left: 0; margin-right: 5px; } #searchsubmit { left: 2px; right: auto; } @media (min-width: 768px) { .dropdown-submenu>.dropdown-menu { left: auto !important; right: 100%; } .header-cart.float-cart, .header-my-account.float-login a, .header-wishlist.float-wishlist a { right: auto; left: 6px; } li.menu-item-has-children>a:before { margin-left: 0; margin-right: 10px; right: auto; left: 2px; } li.menu-item-has-children>a.dropdown-item:before { right: auto; left: 6px; } .top-bar-section .widget:nth-child(3n) { text-align: left; } li.menu-item-has-children > a { padding-right: 15px; padding-left: 25px; } ul li ul li.menu-item-has-children>a:before { content: "\f104"; } } @media (max-width: 767px) { .brand-absolute { right: auto; left: 20px; } .open-panel { right: auto; left: 26px; } .mobile-heading { float: right; } .navbar-header { padding-right: 0; padding-left: 0; left: 2px; } .mm li:after { right: auto; left: calc(var(--mm-item-height)/ 2); -webkit-transform: rotate(225deg) translate(0,-50%); -ms-transform: rotate(225deg) translate(0,-50%); transform: rotate(225deg) translate(0,-50%); top: 18px; } .mm a:not(:last-child) { border-left-width: 1px; } .mm li:before { left: 0; right: var(--mm-item-indent); border-top-width: 1px; } .envo-categories-menu.nav.navbar-nav { margin: 7.5px 0px !important; } .menu-item .menu-description { left: auto; float: right; top: 1px; } .header-right.col-md-3 { padding-left: 20px; } } .site-branding-text { text-align: right; float: right; } .mobile-cart .header-cart, .mobile-account .header-my-account, .mobile-wishlist .header-wishlist, .mobile-compare .header-compare { float: left; right: auto; left: 30px; } .header-cart, .header-my-account, .header-wishlist, .header-compare { float: left; } .header-my-account { padding-left: 15px; right: auto; float: left; } .cart-contents span.count { right: auto; left: 12px; } .amount-cart:before { border-bottom: 5px solid transparent; border-top: 5px solid transparent; border-right: none; border-left: 7px solid #09aafa; top: calc(50% - 5px); right: auto; left: 100%; } .header-cart-block:hover ul.site-header-cart { right: auto; left: -10px; } .float-cart .header-cart-block:hover ul.site-header-cart { right: auto; left: 0px; } select.header-search-select { float: right; border-left: none; } button.header-search-button { right: auto; left: 0; } .header-search-form { padding-right: 0; float: right; } .navbar-nav.envo-categories-menu .menu-item { float: none; } li.menu-item-has-children a.envo-categories-menu-first:before { right: 0; left: auto; margin-right: 10px; } .single-product div.product form.cart .plus, .single-product div.product form.cart .minus { float: right; } .woocommerce div.product form.cart .button { margin-right: 10px; } .search-submit, .woocommerce-product-search button { position: absolute; top: 2px; right: auto; left: 2px; bottom: 2px; line-height: 18px; } .widget-title { text-align: right; } .widget ul { padding-right: 0; } .widget li > ul { padding-right: 15px; padding-left: 0; } .woocommerce-perpage { float: left; } .author-meta a { margin-right: 4px; margin-left: 15px; } .posted-date, .comments-meta { margin-right: auto; margin-left: 15px; } .single-product div.product form.cart .plus { margin-right: auto; margin-left: 10px; } assets/fonts/la-brands-400.ttf 0000644 00000460650 15156752225 0012107 0 ustar 00 � 0GSUB �%z 8 TOS/2F�Z� � Vcmapʘ�5 l �glyf�� ,x �headc#C� � 6hhea� � $hmtx� �� � �loca�'� %� �maxp�� namek\�� I �post| &m K� � ��� ���� � �2I_<� ����� �� � 0 >