Changeset 251024
- Timestamp:
- 12/04/2024 04:22:20 AM (12 months ago)
- Location:
- home-construction-builder/1.0.7
- Files:
-
- 15 edited
- 1 copied
-
. (copied) (copied from home-construction-builder/1.0.6)
-
classes/body-classes.php (modified) (1 diff)
-
custom_css.php (modified) (2 diffs)
-
inc/customizer/custom-addon.php (modified) (3 diffs)
-
inc/customizer/default.php (modified) (1 diff)
-
inc/customizer/header-button.php (modified) (2 diffs)
-
inc/customizer/layout-setting.php (modified) (2 diffs)
-
languages/home-construction-builder.pot (modified) (10 diffs)
-
lib/custom/css/customizer.css (modified) (1 diff)
-
lib/custom/js/theme-custom-script.js (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
rtl.css (modified) (92 diffs)
-
sidebar.php (modified) (1 diff)
-
singular.php (modified) (1 diff)
-
style.css (modified) (4 diffs)
-
template-parts/header/header-layout.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
home-construction-builder/1.0.7/classes/body-classes.php
r248156 r251024 8 8 9 9 function home_construction_builder_body_classes($home_construction_builder_classes) { 10 11 10 $home_construction_builder_default = home_construction_builder_get_default_theme_options(); 12 11 global $post; 12 13 13 // Adds a class of hfeed to non-singular pages. 14 if ( !is_singular()) {14 if (!is_singular()) { 15 15 $home_construction_builder_classes[] = 'hfeed'; 16 16 } 17 17 18 18 // Adds a class of no-sidebar when there is no sidebar present. 19 if ( !is_active_sidebar( 'sidebar-1' )) {19 if (!is_active_sidebar('sidebar-1')) { 20 20 $home_construction_builder_classes[] = 'no-sidebar'; 21 21 } 22 23 $home_construction_builder_global_sidebar_layout = esc_html( get_theme_mod( 'home_construction_builder_global_sidebar_layout',$home_construction_builder_default['home_construction_builder_global_sidebar_layout'] ) ); 24 25 if ( is_active_sidebar( 'sidebar-1' ) ) { 26 if( is_single() || is_page() ){ 27 $home_construction_builder_post_sidebar = esc_html( get_post_meta( $post->ID, 'home_construction_builder_post_sidebar_option', true ) ); 28 if (empty($home_construction_builder_post_sidebar) || ($home_construction_builder_post_sidebar == 'global-sidebar')) { 29 $home_construction_builder_classes[] = esc_attr( $home_construction_builder_global_sidebar_layout ); 30 } else{ 31 $home_construction_builder_classes[] = esc_attr( $home_construction_builder_post_sidebar ); 32 } 33 }else{ 34 $home_construction_builder_classes[] = esc_attr( $home_construction_builder_global_sidebar_layout ); 35 } 36 22 23 $home_construction_builder_global_sidebar_layout = esc_html(get_theme_mod('home_construction_builder_global_sidebar_layout', $home_construction_builder_default['home_construction_builder_global_sidebar_layout'])); 24 $home_construction_builder_page_sidebar_layout = esc_html(get_theme_mod('home_construction_builder_page_sidebar_layout', $home_construction_builder_global_sidebar_layout)); 25 $home_construction_builder_post_sidebar_layout = esc_html(get_theme_mod('home_construction_builder_post_sidebar_layout', $home_construction_builder_global_sidebar_layout)); 26 27 if (is_page()) { 28 $home_construction_builder_classes[] = $home_construction_builder_page_sidebar_layout; 29 } elseif (is_single()) { 30 $home_construction_builder_classes[] = $home_construction_builder_post_sidebar_layout; 31 } else { 32 $home_construction_builder_classes[] = $home_construction_builder_global_sidebar_layout; 37 33 } 38 34 39 35 return $home_construction_builder_classes; 40 36 } 41 37 42 38 endif; 43 39 -
home-construction-builder/1.0.7/custom_css.php
r248156 r251024 18 18 } 19 19 20 $home_construction_builder_theme_breadcrumb_options_alignment = get_theme_mod('home_construction_builder_theme_breadcrumb_options_alignment', 'Left'); 20 $home_construction_builder_theme_breadcrumb_enable = get_theme_mod('home_construction_builder_theme_breadcrumb_enable',true); 21 if($home_construction_builder_theme_breadcrumb_enable != true){ 22 $home_construction_builder_custom_css .='nav.breadcrumb-trail.breadcrumbs,nav.woocommerce-breadcrumb{'; 23 $home_construction_builder_custom_css .='display: none;'; 24 $home_construction_builder_custom_css .='}'; 25 } 26 27 $home_construction_builder_theme_breadcrumb_options_alignment = get_theme_mod('home_construction_builder_theme_breadcrumb_options_alignment', 'Left'); 21 28 if ($home_construction_builder_theme_breadcrumb_options_alignment == 'Center') { 22 $home_construction_builder_custom_css .= '.breadcrumbs ul {';29 $home_construction_builder_custom_css .= '.breadcrumbs ul,nav.woocommerce-breadcrumb{'; 23 30 $home_construction_builder_custom_css .= 'text-align: center !important;'; 24 31 $home_construction_builder_custom_css .= '}'; 25 32 } else if ($home_construction_builder_theme_breadcrumb_options_alignment == 'Right') { 26 $home_construction_builder_custom_css .= '.breadcrumbs ul {';33 $home_construction_builder_custom_css .= '.breadcrumbs ul,nav.woocommerce-breadcrumb{'; 27 34 $home_construction_builder_custom_css .= 'text-align: Right !important;'; 28 35 $home_construction_builder_custom_css .= '}'; 29 36 } else if ($home_construction_builder_theme_breadcrumb_options_alignment == 'Left') { 30 $home_construction_builder_custom_css .= '.breadcrumbs ul {';37 $home_construction_builder_custom_css .= '.breadcrumbs ul,nav.woocommerce-breadcrumb{'; 31 38 $home_construction_builder_custom_css .= 'text-align: Left !important;'; 39 $home_construction_builder_custom_css .= '}'; 40 } 41 42 $home_construction_builder_single_page_content_alignment = get_theme_mod('home_construction_builder_single_page_content_alignment', 'left'); 43 if ($home_construction_builder_single_page_content_alignment == 'left') { 44 $home_construction_builder_custom_css .= '#single-page .type-page,section.theme-custom-block.theme-error-sectiontheme-error-section.error-block-middle,section.theme-custom-block.theme-error-section.error-block-heading .theme-area-header{'; 45 $home_construction_builder_custom_css .= 'text-align: left !important;'; 46 $home_construction_builder_custom_css .= '}'; 47 } else if ($home_construction_builder_single_page_content_alignment == 'center') { 48 $home_construction_builder_custom_css .= '#single-page .type-page,section.theme-custom-block.theme-error-sectiontheme-error-section.error-block-middle,section.theme-custom-block.theme-error-section.error-block-heading .theme-area-header{'; 49 $home_construction_builder_custom_css .= 'text-align: center !important;'; 50 $home_construction_builder_custom_css .= '}'; 51 } else if ($home_construction_builder_single_page_content_alignment == 'right') { 52 $home_construction_builder_custom_css .= '#single-page .type-page,section.theme-custom-block.theme-error-sectiontheme-error-section.error-block-middle,section.theme-custom-block.theme-error-section.error-block-heading .theme-area-header{'; 53 $home_construction_builder_custom_css .= 'text-align: right !important;'; 54 $home_construction_builder_custom_css .= '}'; 55 } 56 57 $home_construction_builder_single_post_content_alignment = get_theme_mod('home_construction_builder_single_post_content_alignment', 'left'); 58 if ($home_construction_builder_single_post_content_alignment == 'left') { 59 $home_construction_builder_custom_css .= '#single-page .type-post,#single-page .type-post .entry-meta,#single-page .type-post .is-layout-flex{'; 60 $home_construction_builder_custom_css .= 'text-align: left !important;justify-content: left;'; 61 $home_construction_builder_custom_css .= '}'; 62 } else if ($home_construction_builder_single_post_content_alignment == 'center') { 63 $home_construction_builder_custom_css .= '#single-page .type-post,#single-page .type-post .entry-meta,#single-page .type-post .is-layout-flex{'; 64 $home_construction_builder_custom_css .= 'text-align: center !important;justify-content: center;'; 65 $home_construction_builder_custom_css .= '}'; 66 } else if ($home_construction_builder_single_post_content_alignment == 'right') { 67 $home_construction_builder_custom_css .= '#single-page .type-post,#single-page .type-post .entry-meta,#single-page .type-post .is-layout-flex{'; 68 $home_construction_builder_custom_css .= 'text-align: right !important;justify-content: right;'; 32 69 $home_construction_builder_custom_css .= '}'; 33 70 } … … 45 82 $home_construction_builder_custom_css .= '.site-navigation .primary-menu > li a{'; 46 83 $home_construction_builder_custom_css .= 'text-transform: lowercase !important;'; 47 $home_construction_builder_custom_css .= '}';48 }49 50 51 $home_construction_builder_single_page_content_alignment = get_theme_mod('home_construction_builder_single_page_content_alignment', 'left');52 if ($home_construction_builder_single_page_content_alignment == 'left') {53 $home_construction_builder_custom_css .= '#single-page .type-page{';54 $home_construction_builder_custom_css .= 'text-align: left !important;';55 $home_construction_builder_custom_css .= '}';56 } else if ($home_construction_builder_single_page_content_alignment == 'center') {57 $home_construction_builder_custom_css .= '#single-page .type-page{';58 $home_construction_builder_custom_css .= 'text-align: center !important;';59 $home_construction_builder_custom_css .= '}';60 } else if ($home_construction_builder_single_page_content_alignment == 'right') {61 $home_construction_builder_custom_css .= '#single-page .type-page{';62 $home_construction_builder_custom_css .= 'text-align: right !important;';63 84 $home_construction_builder_custom_css .= '}'; 64 85 } -
home-construction-builder/1.0.7/inc/customizer/custom-addon.php
r248156 r251024 12 12 'capability' => 'edit_theme_options', 13 13 'panel' => 'home_construction_builder_theme_addons_panel', 14 ) 15 ); 16 17 $wp_customize->add_setting('home_construction_builder_theme_loader', 18 array( 19 'default' => $home_construction_builder_default['home_construction_builder_theme_loader'], 20 'capability' => 'edit_theme_options', 21 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox', 22 ) 23 ); 24 $wp_customize->add_control('home_construction_builder_theme_loader', 25 array( 26 'label' => esc_html__('Enable Preloader', 'home-construction-builder'), 27 'section' => 'home_construction_builder_theme_pagination_options', 28 'type' => 'checkbox', 14 29 ) 15 30 ); … … 70 85 'Left' => esc_html__( 'Left', 'home-construction-builder' ), 71 86 ), 87 ) 88 ); 89 90 $wp_customize->add_setting('home_construction_builder_theme_breadcrumb_enable', 91 array( 92 'default' => $home_construction_builder_default['home_construction_builder_theme_breadcrumb_enable'], 93 'capability' => 'edit_theme_options', 94 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox', 95 ) 96 ); 97 $wp_customize->add_control('home_construction_builder_theme_breadcrumb_enable', 98 array( 99 'label' => esc_html__('Enable Breadcrumb', 'home-construction-builder'), 100 'section' => 'home_construction_builder_theme_pagination_options', 101 'type' => 'checkbox', 72 102 ) 73 103 ); … … 132 162 ) 133 163 ); 164 165 $wp_customize->add_setting( 'home_construction_builder_single_post_content_alignment', 166 array( 167 'default' => $home_construction_builder_default['home_construction_builder_single_post_content_alignment'], 168 'capability' => 'edit_theme_options', 169 'sanitize_callback' => 'home_construction_builder_sanitize_page_content_alignment', 170 ) 171 ); 172 $wp_customize->add_control( 'home_construction_builder_single_post_content_alignment', 173 array( 174 'label' => esc_html__( 'Single Post Content Alignment', 'home-construction-builder' ), 175 'section' => 'home_construction_builder_theme_pagination_options', 176 'type' => 'select', 177 'choices' => array( 178 'left' => esc_html__( 'Left', 'home-construction-builder' ), 179 'center' => esc_html__( 'Center', 'home-construction-builder' ), 180 'right' => esc_html__( 'Right', 'home-construction-builder' ), 181 ), 182 ) 183 ); -
home-construction-builder/1.0.7/inc/customizer/default.php
r248156 r251024 38 38 $home_construction_builder_defaults['home_construction_builder_per_columns'] = 3; 39 39 $home_construction_builder_defaults['home_construction_builder_product_per_page'] = 9; 40 $home_construction_builder_defaults['home_construction_builder_sticky'] = 0; 41 $home_construction_builder_defaults['home_construction_builder_theme_breadcrumb_enable'] = 1; 42 $home_construction_builder_defaults['home_construction_builder_single_post_content_alignment'] = 'left'; 40 43 41 44 //Slider -
home-construction-builder/1.0.7/inc/customizer/header-button.php
r234252 r251024 16 16 'panel' => 'home_construction_builder_theme_option_panel', 17 17 ) 18 ); 19 20 $wp_customize->add_setting('home_construction_builder_sticky', 21 array( 22 'default' => $home_construction_builder_default['home_construction_builder_sticky'], 23 'capability' => 'edit_theme_options', 24 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox', 25 ) 26 ); 27 $wp_customize->add_control('home_construction_builder_sticky', 28 array( 29 'label' => esc_html__('Enable Sticky Header', 'home-construction-builder'), 30 'section' => 'home_construction_builder_button_header_setting', 31 'type' => 'checkbox', 32 ) 18 33 ); 19 34 … … 118 133 ); 119 134 120 $wp_customize->add_setting('home_construction_builder_theme_loader',121 array(122 'default' => $home_construction_builder_default['home_construction_builder_theme_loader'],123 'capability' => 'edit_theme_options',124 'sanitize_callback' => 'home_construction_builder_sanitize_checkbox',125 )126 );127 $wp_customize->add_control('home_construction_builder_theme_loader',128 array(129 'label' => esc_html__('Enable Preloader', 'home-construction-builder'),130 'section' => 'home_construction_builder_button_header_setting',131 'type' => 'checkbox',132 )133 );134 135 135 $wp_customize->add_setting( 'home_construction_builder_header_layout_button', 136 136 array( -
home-construction-builder/1.0.7/inc/customizer/layout-setting.php
r233437 r251024 11 11 $wp_customize->add_section( 'home_construction_builder_layout_setting', 12 12 array( 13 'title' => esc_html__( ' Global LayoutSettings', 'home-construction-builder' ),13 'title' => esc_html__( 'Sidebar Settings', 'home-construction-builder' ), 14 14 'priority' => 20, 15 15 'capability' => 'edit_theme_options', … … 37 37 ) 38 38 ); 39 40 $wp_customize->add_setting('home_construction_builder_page_sidebar_layout', array( 41 'default' => $home_construction_builder_default['home_construction_builder_global_sidebar_layout'], 42 'capability' => 'edit_theme_options', 43 'sanitize_callback' => 'home_construction_builder_sanitize_sidebar_option', 44 )); 45 46 $wp_customize->add_control('home_construction_builder_page_sidebar_layout', array( 47 'label' => esc_html__('Single Page Sidebar Layout', 'home-construction-builder'), 48 'section' => 'home_construction_builder_layout_setting', 49 'type' => 'select', 50 'choices' => array( 51 'right-sidebar' => esc_html__('Right Sidebar', 'home-construction-builder'), 52 'left-sidebar' => esc_html__('Left Sidebar', 'home-construction-builder'), 53 'no-sidebar' => esc_html__('No Sidebar', 'home-construction-builder'), 54 ), 55 )); 56 57 $wp_customize->add_setting('home_construction_builder_post_sidebar_layout', array( 58 'default' => $home_construction_builder_default['home_construction_builder_global_sidebar_layout'], 59 'capability' => 'edit_theme_options', 60 'sanitize_callback' => 'home_construction_builder_sanitize_sidebar_option', 61 )); 62 63 $wp_customize->add_control('home_construction_builder_post_sidebar_layout', array( 64 'label' => esc_html__('Single Post Sidebar Layout', 'home-construction-builder'), 65 'section' => 'home_construction_builder_layout_setting', 66 'type' => 'select', 67 'choices' => array( 68 'right-sidebar' => esc_html__('Right Sidebar', 'home-construction-builder'), 69 'left-sidebar' => esc_html__('Left Sidebar', 'home-construction-builder'), 70 'no-sidebar' => esc_html__('No Sidebar', 'home-construction-builder'), 71 ), 72 )); -
home-construction-builder/1.0.7/languages/home-construction-builder.pot
r248156 r251024 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Home Construction Builder 1.0. 6\n"5 "Project-Id-Version: Home Construction Builder 1.0.7\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/home-construction-builder\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-11- 08T05:46:40+00:00\n"12 "POT-Creation-Date: 2024-11-19T06:06:40+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 27 27 #. Description of the theme 28 28 #: style.css 29 msgid "Home Construction Builder is crafted for construction companies and home builders aiming to showcase their expertise in residential projects. It boasts a professional design that emphasizes clarity and functionality, ideal for highlighting services like new home construction, residential builders, custom home builders, construction companies, home renovation, house builders, remodeling contractors, building contractors, general contractors, construction services, home improvement, residential construction, property developers, building firms, new home construction, home design and build renovations, and remodeling. With its clean layout and intuitive navigation, the theme ensures visitors can easily explore project portfolios, services offered, and client testimonials. The Home Construction Builder WordPress Theme supports showcasing architectural designs and construction project management capabilities, making it suitable for general contractors and building contractors alike. It caters to modern trends in green building and sustainable construction, appealing to clients interested in energy-efficient or modular homes. Whether focusing on kitchen remodeling, bathroom renovations, or room additions, the Home Construction Builder WordPress Theme provides a platform to detail services and display completed projects effectively.Its responsive design ensures compatibility across devices, while customization options allow for branding with company colors and logos. The theme integrates seamlessly with plugins for photo galleries, project timelines, and contact forms, enhancing user engagement and lead generation. For construction companies seeking to establish an online presence or expand their client base, this theme offers the tools to attract potential customers and showcase past successes in home construction and renovation projects."29 msgid "Home Construction Builder is crafted for construction companies and home builders aiming to showcase their expertise in residential projects. It boasts a professional design that emphasizes clarity and functionality, ideal for highlighting services like new home construction, residential builders, custom home builders, construction companies, home renovation, house builders, remodeling contractors, building contractors, general contractors, construction services, home improvement, residential construction, property developers, building firms, new home construction, home design and build renovations, and remodeling. With its clean layout and intuitive navigation, the theme ensures visitors can easily explore project portfolios, services offered, and client testimonials.The Home Construction Builder WordPress Theme supports showcasing architectural designs and construction project management capabilities, making it suitable for general contractors and building contractors alike. It caters to modern trends in green building and sustainable construction, appealing to clients interested in energy-efficient or modular homes. Whether focusing on kitchen remodeling, bathroom renovations, or room additions, the Home Construction Builder WordPress Theme provides a platform to detail services and display completed projects effectively.Its responsive design ensures compatibility across devices, while customization options allow for branding with company colors and logos. The theme integrates seamlessly with plugins for photo galleries, project timelines, and contact forms, enhancing user engagement and lead generation. For construction companies seeking to establish an online presence or expand their client base, this theme offers the tools to attract potential customers and showcase past successes in home construction and renovation projects." 30 30 msgstr "" 31 31 … … 140 140 141 141 #: inc/custom-functions.php:243 142 #: template-parts/header/header-layout.php:10 3142 #: template-parts/header/header-layout.php:108 143 143 msgid "Horizontal" 144 144 msgstr "" … … 177 177 178 178 #: inc/custom-functions.php:441 179 #: inc/customizer/default.php:4 6179 #: inc/customizer/default.php:49 180 180 msgid "Discover More" 181 181 msgstr "" … … 230 230 msgstr "" 231 231 232 #: inc/customizer/custom-addon.php:29 232 #: inc/customizer/custom-addon.php:26 233 msgid "Enable Preloader" 234 msgstr "" 235 236 #: inc/customizer/custom-addon.php:44 233 237 msgid "Enable Pagination" 234 238 msgstr "" 235 239 236 #: inc/customizer/custom-addon.php: 45240 #: inc/customizer/custom-addon.php:60 237 241 msgid "Pagination Style" 238 242 msgstr "" 239 243 240 #: inc/customizer/custom-addon.php: 49244 #: inc/customizer/custom-addon.php:64 241 245 msgid "Numeric (Page Numbers)" 242 246 msgstr "" 243 247 244 #: inc/customizer/custom-addon.php: 50248 #: inc/customizer/custom-addon.php:65 245 249 msgid "Newer/Older (Previous/Next)" 246 250 msgstr "" 247 251 248 #: inc/customizer/custom-addon.php: 64252 #: inc/customizer/custom-addon.php:79 249 253 msgid "Pagination Alignment" 250 254 msgstr "" 251 255 252 #: inc/customizer/custom-addon.php:68 253 #: inc/customizer/custom-addon.php:88 254 #: inc/customizer/custom-addon.php:129 256 #: inc/customizer/custom-addon.php:83 257 #: inc/customizer/custom-addon.php:118 258 #: inc/customizer/custom-addon.php:159 259 #: inc/customizer/custom-addon.php:179 255 260 #: inc/customizer/footer.php:68 256 261 msgid "Center" 257 262 msgstr "" 258 263 259 #: inc/customizer/custom-addon.php:69 260 #: inc/customizer/custom-addon.php:89 261 #: inc/customizer/custom-addon.php:130 264 #: inc/customizer/custom-addon.php:84 265 #: inc/customizer/custom-addon.php:119 266 #: inc/customizer/custom-addon.php:160 267 #: inc/customizer/custom-addon.php:180 262 268 #: inc/customizer/footer.php:69 263 269 msgid "Right" 264 270 msgstr "" 265 271 266 #: inc/customizer/custom-addon.php:70 267 #: inc/customizer/custom-addon.php:90 268 #: inc/customizer/custom-addon.php:128 272 #: inc/customizer/custom-addon.php:85 273 #: inc/customizer/custom-addon.php:120 274 #: inc/customizer/custom-addon.php:158 275 #: inc/customizer/custom-addon.php:178 269 276 #: inc/customizer/footer.php:67 270 277 msgid "Left" 271 278 msgstr "" 272 279 273 #: inc/customizer/custom-addon.php:84 280 #: inc/customizer/custom-addon.php:99 281 msgid "Enable Breadcrumb" 282 msgstr "" 283 284 #: inc/customizer/custom-addon.php:114 274 285 msgid "Breadcrumb Alignment" 275 286 msgstr "" 276 287 277 #: inc/customizer/custom-addon.php:1 04288 #: inc/customizer/custom-addon.php:134 278 289 msgid "Breadcrumb Font Size" 279 290 msgstr "" 280 291 281 #: inc/customizer/custom-addon.php:1 24292 #: inc/customizer/custom-addon.php:154 282 293 msgid "Single Page Content Alignment" 294 msgstr "" 295 296 #: inc/customizer/custom-addon.php:174 297 msgid "Single Post Content Alignment" 283 298 msgstr "" 284 299 … … 343 358 msgstr "" 344 359 345 #: inc/customizer/default.php:4 3360 #: inc/customizer/default.php:46 346 361 msgid "Great Experience In Building" 347 362 msgstr "" 348 363 349 #: inc/customizer/default.php:4 4364 #: inc/customizer/default.php:47 350 365 msgid "The Best Solution Industry Business" 351 366 msgstr "" 352 367 353 #: inc/customizer/default.php:5 5368 #: inc/customizer/default.php:58 354 369 msgid "All rights reserved." 355 370 msgstr "" 356 371 357 #: inc/customizer/default.php:7 0372 #: inc/customizer/default.php:73 358 373 msgid "To The Top" 359 374 msgstr "" 360 375 361 #: inc/customizer/default.php:7 6376 #: inc/customizer/default.php:79 362 377 msgid "About Us" 363 378 msgstr "" 364 379 365 #: inc/customizer/default.php: 77380 #: inc/customizer/default.php:80 366 381 msgid "Beauty and comfort in every room" 367 382 msgstr "" 368 383 369 #: inc/customizer/default.php: 78384 #: inc/customizer/default.php:81 370 385 msgid "RENOVATION" 371 386 msgstr "" 372 387 373 #: inc/customizer/default.php: 79388 #: inc/customizer/default.php:82 374 389 msgid "Per ea dolor qualisque, sed at tale impedit consetetur. Has malorum offendit id, ex pri invidunt referrentur, eam et populo utroque fuisset. Reque aeterno fabel. Has malorum offendit id, ex pri invidunt referrentur." 375 390 msgstr "" 376 391 377 #: inc/customizer/default.php:8 0392 #: inc/customizer/default.php:83 378 393 msgid "Painting" 379 394 msgstr "" 380 395 381 #: inc/customizer/default.php:8 1396 #: inc/customizer/default.php:84 382 397 msgid "Roofing" 383 398 msgstr "" 384 399 385 #: inc/customizer/default.php:8 2400 #: inc/customizer/default.php:85 386 401 msgid "Interior Renovation" 387 402 msgstr "" 388 403 389 #: inc/customizer/default.php:8 3404 #: inc/customizer/default.php:86 390 405 #: template-parts/content.php:89 391 406 msgid "Read More" 392 407 msgstr "" 393 408 394 #: inc/customizer/default.php: 97409 #: inc/customizer/default.php:100 395 410 msgid "#" 396 411 msgstr "" … … 469 484 470 485 #: inc/customizer/header-button.php:29 486 msgid "Enable Sticky Header" 487 msgstr "" 488 489 #: inc/customizer/header-button.php:44 471 490 msgid "Email Id" 472 491 msgstr "" 473 492 474 #: inc/customizer/header-button.php: 44493 #: inc/customizer/header-button.php:59 475 494 msgid "Phone Number" 476 495 msgstr "" 477 496 478 #: inc/customizer/header-button.php: 59497 #: inc/customizer/header-button.php:74 479 498 msgid "Address" 480 499 msgstr "" 481 500 482 #: inc/customizer/header-button.php: 74501 #: inc/customizer/header-button.php:89 483 502 msgid "Enable Search" 484 503 msgstr "" 485 504 486 #: inc/customizer/header-button.php: 89505 #: inc/customizer/header-button.php:104 487 506 msgid "Menu Font Size" 488 507 msgstr "" 489 508 490 #: inc/customizer/header-button.php:1 09509 #: inc/customizer/header-button.php:124 491 510 msgid "Menu Text Transform" 492 511 msgstr "" 493 512 494 #: inc/customizer/header-button.php:1 13513 #: inc/customizer/header-button.php:128 495 514 msgid "Capitalize" 496 515 msgstr "" 497 516 498 #: inc/customizer/header-button.php:1 14517 #: inc/customizer/header-button.php:129 499 518 msgid "Uppercase" 500 519 msgstr "" 501 520 502 #: inc/customizer/header-button.php:1 15521 #: inc/customizer/header-button.php:130 503 522 msgid "Lowercase" 504 msgstr ""505 506 #: inc/customizer/header-button.php:129507 msgid "Enable Preloader"508 523 msgstr "" 509 524 … … 585 600 586 601 #: inc/customizer/layout-setting.php:13 587 msgid " Global LayoutSettings"602 msgid "Sidebar Settings" 588 603 msgstr "" 589 604 … … 593 608 594 609 #: inc/customizer/layout-setting.php:33 610 #: inc/customizer/layout-setting.php:51 611 #: inc/customizer/layout-setting.php:68 595 612 msgid "Right Sidebar" 596 613 msgstr "" 597 614 598 615 #: inc/customizer/layout-setting.php:34 616 #: inc/customizer/layout-setting.php:52 617 #: inc/customizer/layout-setting.php:69 599 618 msgid "Left Sidebar" 600 619 msgstr "" 601 620 602 621 #: inc/customizer/layout-setting.php:35 622 #: inc/customizer/layout-setting.php:53 623 #: inc/customizer/layout-setting.php:70 603 624 msgid "No Sidebar" 625 msgstr "" 626 627 #: inc/customizer/layout-setting.php:47 628 msgid "Single Page Sidebar Layout" 629 msgstr "" 630 631 #: inc/customizer/layout-setting.php:64 632 msgid "Single Post Sidebar Layout" 604 633 msgstr "" 605 634 -
home-construction-builder/1.0.7/lib/custom/css/customizer.css
r233437 r251024 351 351 background: #2497E3; 352 352 } 353 354 li#accordion-section-theme_upsell.cannot-expand .accordion-section-title:after,li#accordion-section-doc_section.cannot-expand .accordion-section-title:after{ 355 display: none; 356 } 357 #customize-theme-controls .customize-pane-parent{ 358 overflow: hidden; 359 } -
home-construction-builder/1.0.7/lib/custom/js/theme-custom-script.js
r233437 r251024 141 141 jQuery(".preloader").delay(2000).fadeOut("slow"); 142 142 }); 143 144 //Sticky 145 jQuery(window).scroll(function() { 146 var data_sticky = jQuery('#center-header').attr('data-sticky'); 147 148 if (data_sticky == "true") { 149 if (jQuery(this).scrollTop() > 1){ 150 jQuery('.Stickyy').addClass("stick_head"); 151 } else { 152 jQuery('.Stickyy').removeClass("stick_head"); 153 } 154 } 155 }); -
home-construction-builder/1.0.7/readme.txt
r248156 r251024 2 2 Contributors: omegathemes 3 3 Requires at least: 5.5 4 Tested up to: 6. 64 Tested up to: 6.7 5 5 Requires PHP: 7.2 6 Stable tag: 1.0. 66 Stable tag: 1.0.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 10 10 == Description == 11 11 12 Home Construction Builder is crafted for construction companies and home builders aiming to showcase their expertise in residential projects. It boasts a professional design that emphasizes clarity and functionality, ideal for highlighting services like new home construction, residential builders, custom home builders, construction companies, home renovation, house builders, remodeling contractors, building contractors, general contractors, construction services, home improvement, residential construction, property developers, building firms, new home construction, home design and build renovations, and remodeling. With its clean layout and intuitive navigation, the theme ensures visitors can easily explore project portfolios, services offered, and client testimonials. The Home Construction Builder WordPress Theme supports showcasing architectural designs and construction project management capabilities, making it suitable for general contractors and building contractors alike. It caters to modern trends in green building and sustainable construction, appealing to clients interested in energy-efficient or modular homes. Whether focusing on kitchen remodeling, bathroom renovations, or room additions, the Home Construction Builder WordPress Theme provides a platform to detail services and display completed projects effectively.Its responsive design ensures compatibility across devices, while customization options allow for branding with company colors and logos. The theme integrates seamlessly with plugins for photo galleries, project timelines, and contact forms, enhancing user engagement and lead generation. For construction companies seeking to establish an online presence or expand their client base, this theme offers the tools to attract potential customers and showcase past successes in home construction and renovation projects.12 Home Construction Builder is crafted for construction companies and home builders aiming to showcase their expertise in residential projects. It boasts a professional design that emphasizes clarity and functionality, ideal for highlighting services like new home construction, residential builders, custom home builders, construction companies, home renovation, house builders, remodeling contractors, building contractors, general contractors, construction services, home improvement, residential construction, property developers, building firms, new home construction, home design and build renovations, and remodeling. With its clean layout and intuitive navigation, the theme ensures visitors can easily explore project portfolios, services offered, and client testimonials.The Home Construction Builder WordPress Theme supports showcasing architectural designs and construction project management capabilities, making it suitable for general contractors and building contractors alike. It caters to modern trends in green building and sustainable construction, appealing to clients interested in energy-efficient or modular homes. Whether focusing on kitchen remodeling, bathroom renovations, or room additions, the Home Construction Builder WordPress Theme provides a platform to detail services and display completed projects effectively.Its responsive design ensures compatibility across devices, while customization options allow for branding with company colors and logos. The theme integrates seamlessly with plugins for photo galleries, project timelines, and contact forms, enhancing user engagement and lead generation. For construction companies seeking to establish an online presence or expand their client base, this theme offers the tools to attract potential customers and showcase past successes in home construction and renovation projects. 13 13 14 14 == Copyright == … … 124 124 * Added Default Image on Blog Posts. 125 125 * Done Prefixing. 126 127 = 1.0.7 = 128 * Updated Customizer CSS & Checkout Page CSS. 129 * Updated Breadcrumb Alignment Setting. 130 * Updated WordPress Version. 131 * Updated Description. 132 * Added Single Post Content Alignment Setting. 133 * Added Breadcrumb Enable/Disable Setting. 134 * Added Sidebar Position Settings. 135 * Added Sticky Header Setting. -
home-construction-builder/1.0.7/rtl.css
r248156 r251024 12 12 line-height: 1.15; 13 13 -webkit-text-size-adjust: 100%; 14 } 15 body { 14 } 15 16 body { 16 17 border: none; 17 18 margin: 0; 18 19 padding: 0; 19 } 20 h1 { 20 } 21 22 h1 { 21 23 font-size: 2em; 22 24 margin: 0.67em 0; 23 } 24 hr { 25 } 26 27 hr { 25 28 box-sizing: content-box; 26 29 height: 0; 27 30 overflow: visible; 28 } 29 pre { 31 } 32 33 pre { 30 34 font-family: var(--font-main); 31 35 font-size: 1em; 32 } 33 a { 36 } 37 38 a { 34 39 background-color: transparent; 35 } 36 abbr[title] { 40 } 41 42 abbr[title] { 37 43 border-bottom: none; 38 44 text-decoration: underline; 39 45 text-decoration: underline dotted; 40 } 41 b, 42 strong { 46 } 47 48 b, 49 strong { 43 50 font-weight: bolder; 44 } 45 code, 46 kbd, 47 samp { 51 } 52 53 code, 54 kbd, 55 samp { 48 56 font-family: var(--font-main); 49 57 font-size: 1em; 50 } 51 small { 58 } 59 60 small { 52 61 font-size: 85%; 53 } 54 img { 62 } 63 64 img { 55 65 border-style: none; 56 } 57 button, 58 input, 59 optgroup, 60 select, 61 textarea { 66 } 67 68 button, 69 input, 70 optgroup, 71 select, 72 textarea { 62 73 font-size: 100%; 63 74 line-height: 1.15; 64 75 margin: 0; 65 } 66 button, 67 input { 76 } 77 78 button, 79 input { 68 80 overflow: visible; 69 81 font-family: var(--font-main); 70 } 71 button, 72 select { 82 } 83 84 button, 85 select { 73 86 text-transform: none; 74 }75 76 button,77 [type="button"],78 [type="reset"],79 [type="submit"] {87 } 88 89 button, 90 [type="button"], 91 [type="reset"], 92 [type="submit"] { 80 93 -webkit-appearance: button; 81 } 82 button::-moz-focus-inner, 83 [type="button"]::-moz-focus-inner, 84 [type="reset"]::-moz-focus-inner, 85 [type="submit"]::-moz-focus-inner { 94 } 95 96 button::-moz-focus-inner, 97 [type="button"]::-moz-focus-inner, 98 [type="reset"]::-moz-focus-inner, 99 [type="submit"]::-moz-focus-inner { 86 100 border-style: none; 87 101 padding: 0; 88 } 89 button:-moz-focusring, 90 [type="button"]:-moz-focusring, 91 [type="reset"]:-moz-focusring, 92 [type="submit"]:-moz-focusring { 102 } 103 104 button:-moz-focusring, 105 [type="button"]:-moz-focusring, 106 [type="reset"]:-moz-focusring, 107 [type="submit"]:-moz-focusring { 93 108 outline: 1px dotted ButtonText; 94 } 95 fieldset { 109 } 110 111 fieldset { 96 112 padding: 0.35em 0.75em 0.625em; 97 } 98 legend { 113 } 114 115 legend { 99 116 box-sizing: border-box; 100 117 color: inherit; 101 118 display: table; 102 119 max-width: 100%; 103 padding: 0; /* 3 */ 120 padding: 0; 121 /* 3 */ 104 122 white-space: normal; 105 } 106 progress { 123 } 124 125 progress { 107 126 vertical-align: baseline; 108 } 109 textarea { 127 } 128 129 textarea { 110 130 overflow: auto; 111 } 112 [type="checkbox"], 113 [type="radio"] { 131 } 132 133 [type="checkbox"], 134 [type="radio"] { 114 135 box-sizing: border-box; 115 136 padding: 0; 116 } 117 [type="number"]::-webkit-inner-spin-button, 118 [type="number"]::-webkit-outer-spin-button { 137 } 138 139 [type="number"]::-webkit-inner-spin-button, 140 [type="number"]::-webkit-outer-spin-button { 119 141 height: auto; 120 } 121 [type="search"] { 142 } 143 144 [type="search"] { 122 145 -webkit-appearance: textfield; 123 146 outline-offset: -2px; 124 } 125 [type="search"]::-webkit-search-decoration { 147 } 148 149 [type="search"]::-webkit-search-decoration { 126 150 -webkit-appearance: none; 127 } 128 ::-webkit-file-upload-button { 151 } 152 153 ::-webkit-file-upload-button { 129 154 -webkit-appearance: button; 130 155 font: inherit; 131 } 132 details { 156 } 157 158 details { 133 159 display: block; 134 } 135 summary { 160 } 161 162 summary { 136 163 display: list-item; 137 } 138 template { 164 } 165 166 template { 139 167 display: none; 140 } 141 [hidden] { 168 } 169 170 [hidden] { 142 171 display: none; 143 } 144 /*-------------------------------------------------------------- 145 # Typography 146 --------------------------------------------------------------*/ 147 html { 148 font-size: 62.5%; /* 1rem = 10px */ 149 } 150 body, 151 button, 152 input, 153 select, 154 optgroup, 155 textarea { 172 } 173 174 175 /*-------------------------------------------------------------- 176 # Typography 177 --------------------------------------------------------------*/ 178 179 html { 180 font-size: 62.5%; 181 /* 1rem = 10px */ 182 } 183 184 body, 185 button, 186 input, 187 select, 188 optgroup, 189 textarea { 156 190 font-weight: 400; 157 191 font-size: 1.8rem; 158 192 line-height: 1.6; 159 193 -webkit-font-smoothing: antialiased; 160 } 161 body { 162 font-family: var(--font-main); 194 } 195 196 body { 197 font-family: var(--font-main); 163 198 color: #666B6E; 164 }165 166 h1,167 h2,168 h3,169 h4,170 h5,171 h6 {199 } 200 201 h1, 202 h2, 203 h3, 204 h4, 205 h5, 206 h6 { 172 207 line-height: 1.2; 173 208 clear: both; 174 209 font-weight: bold; 175 210 font-family: var(--font-head); 176 } 177 h1, 178 h2 { 211 } 212 213 h1, 214 h2 { 179 215 margin: 0 0 2rem; 180 216 color: #000000; 181 } 182 h3, 183 h4, 184 h5, 185 h6 { 217 } 218 219 h3, 220 h4, 221 h5, 222 h6 { 186 223 margin: 0 0 1.5rem; 187 224 color: #000000; 188 } 189 .entry-title { 225 } 226 227 .entry-title { 190 228 font-weight: bold; 191 } 192 .entry-title a { 193 background-image: linear-gradient(180deg, transparent 94%, #000 0); 229 } 230 231 .entry-title a { 232 background-image: linear-gradient(-180deg, transparent 94%, #000 0); 194 233 background-size: 0% 100%; 195 234 background-repeat: no-repeat; … … 197 236 -moz-transition: background-size 0.4s ease; 198 237 transition: background-size 0.4s ease; 199 } 200 .entry-title a:hover { 238 } 239 240 .entry-title a:hover { 201 241 text-decoration: none; 202 242 background-size: 100% 100%; 203 } 204 .entry-title-large { 243 } 244 245 .entry-title-large { 205 246 font-size: 5.4rem; 206 } 207 .entry-title-big { 247 } 248 249 .entry-title-big { 208 250 font-size: 4.2rem; 209 } 210 .entry-title-medium { 251 } 252 253 .entry-title-medium { 211 254 font-size: 2.2rem; 212 } 213 .entry-title-small { 255 } 256 257 .entry-title-small { 214 258 font-size: 1.6rem; 215 } 216 @media (max-width: 991px) { 259 } 260 261 @media (max-width: 991px) { 217 262 .entry-title-big { 218 font-size: 2.7rem; 219 } 220 } 221 p { 263 font-size: 2.7rem; 264 } 265 } 266 267 p { 222 268 margin-bottom: 1.5em; 223 269 margin-top: 0; 224 } 225 dfn, 226 cite, 227 em, 228 i { 270 } 271 272 dfn, 273 cite, 274 em, 275 i { 229 276 font-style: italic; 230 } 231 blockquote { 277 } 278 279 blockquote { 232 280 margin: 0 1.5em; 233 } 234 address { 281 } 282 283 address { 235 284 margin: 0 0 1.5em; 236 } 237 pre { 285 } 286 287 pre { 238 288 background: #eee; 239 289 font-size: 15px; … … 244 294 overflow: auto; 245 295 padding: 1.6em; 246 } 247 code, 248 kbd, 249 tt, 250 var { 296 } 297 298 code, 299 kbd, 300 tt, 301 var { 251 302 font-family: var(--font-main); 252 303 font-size: 15px; 253 304 font-size: 0.9375rem; 254 } 255 abbr, 256 acronym { 305 } 306 307 abbr, 308 acronym { 257 309 border-bottom: 1px dotted #666; 258 310 cursor: help; 259 } 260 /*mark, 261 ins { 262 background: #fff9c0; 263 text-decoration: none; 264 }*/ 265 big { 311 } 312 313 314 /*mark, 315 ins { 316 background: #fff9c0; 317 text-decoration: none; 318 }*/ 319 320 big { 266 321 font-size: 125%; 267 } 268 ::-moz-selection { 322 } 323 324 ::-moz-selection { 269 325 background: #070707; 270 326 color: #fff; 271 } 272 ::selection { 327 } 328 329 ::selection { 273 330 background: #070707; 274 331 color: #fff; 275 } 276 /*-------------------------------------------------------------- 277 # Elements 278 --------------------------------------------------------------*/ 279 html { 332 } 333 334 335 /*-------------------------------------------------------------- 336 # Elements 337 --------------------------------------------------------------*/ 338 339 html { 280 340 box-sizing: border-box; 281 } 282 *, 283 ::after, 284 ::before { 341 } 342 343 *, 344 ::after, 345 ::before { 285 346 -webkit-box-sizing: border-box; 286 347 -moz-box-sizing: border-box; 287 348 box-sizing: border-box; 288 } 289 body { 349 } 350 351 body { 290 352 background: #ffffff; 291 } 292 .body-scroll-locked { 353 } 354 355 .body-scroll-locked { 293 356 overflow: hidden; 294 } 295 hr { 357 } 358 359 hr { 296 360 background-color: #ccc; 297 361 border: 0; 298 362 height: 1px; 299 363 margin-bottom: 1.5em; 300 } 301 ul, 302 ol { 364 } 365 366 ul, 367 ol { 303 368 margin-top: 0; 304 369 margin-bottom: 1rem; 305 } 306 ul { 370 } 371 372 ul { 307 373 list-style: disc; 308 } 309 ol { 374 } 375 376 ol { 310 377 list-style: decimal; 311 } 312 li > ul, 313 li > ol { 378 } 379 380 li > ul, 381 li > ol { 314 382 margin-bottom: 0; 315 margin-left: 1.5em; 316 } 317 dt { 383 margin-right: 1.5em; 384 } 385 386 dt { 318 387 font-weight: bold; 319 } 320 dd { 388 } 389 390 dd { 321 391 margin: 0 1.5em 1.5em; 322 } 323 img { 392 } 393 394 img { 324 395 height: auto; 325 396 max-width: 100%; 326 397 vertical-align: top; 327 } 328 figure { 398 } 399 400 figure { 329 401 margin: 1em 0; 330 } 331 table { 402 } 403 404 table { 332 405 margin: 0 0 1.5em; 333 406 width: 100%; 334 } 335 .data-bg { 407 } 408 409 .data-bg { 336 410 background-color: #bdbbb9; 337 411 background-size: cover; … … 341 415 overflow: hidden; 342 416 width: 100%; 343 } 344 .data-bg-fixed { 417 } 418 419 .data-bg-fixed { 345 420 background-attachment: fixed; 346 } 347 .data-bg-large { 421 } 422 423 .data-bg-large { 348 424 height: 600px; 349 } 350 .data-bg-big { 425 } 426 427 .data-bg-big { 351 428 height: 350px; 352 } 353 .data-bg-medium { 429 } 430 431 .data-bg-medium { 354 432 height: 340px; 355 } 356 .data-bg-small { 433 } 434 435 .data-bg-small { 357 436 height: 240px; 358 } 359 .data-bg-xsmall { 437 } 438 439 .data-bg-xsmall { 360 440 height: 140px; 361 } 362 .data-bg-thumbnail { 441 } 442 443 .data-bg-thumbnail { 363 444 height: 100px; 364 } 365 @media (max-width: 991px) { 445 } 446 447 @media (max-width: 991px) { 366 448 .data-bg-large { 367 height: 500px;449 height: 500px; 368 450 } 369 451 .data-bg-big { 370 height: 350px; 371 } 372 } 373 374 /*----------------------------------------------------*/ 375 376 figure.wp-block-gallery.columns-3 { 377 padding-right: 10%; 378 } 379 /* Gallery */ 380 381 .wp-block-gallery { 452 height: 350px; 453 } 454 } 455 456 457 /*----------------------------------------------------*/ 458 459 figure.wp-block-gallery.columns-3 { 460 padding-left: 10%; 461 } 462 463 464 /* Gallery */ 465 466 .wp-block-gallery { 382 467 margin-bottom: 28px; 383 margin- left: 0;384 }385 386 .wp-block-gallery figcaption {468 margin-right: 0; 469 } 470 471 .wp-block-gallery figcaption { 387 472 font-style: italic; 388 }389 390 .wp-block-gallery.aligncenter {473 } 474 475 .wp-block-gallery.aligncenter { 391 476 display: flex; 392 477 margin: 0 -8px; 393 }394 395 figure.wp-block-gallery.columns-3{396 padding- right: 15%;397 }398 399 figure.wp-block-gallery.columns-2{400 padding- right: 1%;401 }402 403 ul.blocks-gallery-grid {478 } 479 480 figure.wp-block-gallery.columns-3 { 481 padding-left: 15%; 482 } 483 484 figure.wp-block-gallery.columns-2 { 485 padding-left: 1%; 486 } 487 488 ul.blocks-gallery-grid { 404 489 width: 70%; 405 } 406 407 h2.entry-title.entry-title-medium, h1.entry-title.entry-title-large span { 490 } 491 492 h2.entry-title.entry-title-medium, 493 h1.entry-title.entry-title-large span { 408 494 word-wrap: break-word; 409 }410 411 .wp-block-button__link{495 } 496 497 .wp-block-button__link { 412 498 border-radius: 30px; 413 } 414 /*-------------------------------------------------------------- 415 # Forms 416 --------------------------------------------------------------*/ 417 fieldset { 499 } 500 501 502 /*-------------------------------------------------------------- 503 # Forms 504 --------------------------------------------------------------*/ 505 506 fieldset { 418 507 border: 0.2rem solid #e1e1e3; 419 508 margin-bottom: 3rem; 420 509 margin-top: 3rem; 421 510 padding: 2rem; 422 } 423 fieldset > *:first-child { 511 } 512 513 fieldset > *:first-child { 424 514 margin-top: 0; 425 } 426 fieldset > *:last-child { 515 } 516 517 fieldset > *:last-child { 427 518 margin-bottom: 0; 428 } 429 form { 519 } 520 521 form { 430 522 margin-bottom: 3rem; 431 523 margin-top: 3rem; 432 } 433 form > *:first-child { 524 } 525 526 form > *:first-child { 434 527 margin-top: 0; 435 } 436 form > *:last-child { 528 } 529 530 form > *:last-child { 437 531 margin-bottom: 0; 438 } 439 legend { 532 } 533 534 legend { 440 535 font-size: 0.85em; 441 536 font-weight: 700; 442 537 padding: 0 1rem; 443 } 444 label { 538 } 539 540 label { 445 541 display: block; 446 542 font-size: 1.5rem; 447 543 font-weight: 600; 448 544 margin: 0 0 0.5rem 0; 449 } 450 label.inline, 451 input[type="checkbox"] + label { 545 } 546 547 label.inline, 548 input[type="checkbox"] + label { 452 549 display: inline; 453 550 font-weight: 400; 454 margin-left: 0.5rem; 455 } 456 input, 457 textarea, 458 button, 459 .select { 551 margin-right: 0.5rem; 552 } 553 554 input, 555 textarea, 556 button, 557 .select { 460 558 line-height: 1; 461 } 462 input, 463 textarea, 464 .select { 559 } 560 561 input, 562 textarea, 563 .select { 465 564 border-color: #000; 466 } 467 input[type="text"], 468 input[type="password"], 469 input[type="email"], 470 input[type="url"], 471 input[type="date"], 472 input[type="month"], 473 input[type="time"], 474 input[type="datetime"], 475 input[type="datetime-local"], 476 input[type="week"], 477 input[type="number"], 478 input[type="search"], 479 input[type="tel"], 480 input[type="color"], 481 textarea { 565 } 566 567 input[type="text"], 568 input[type="password"], 569 input[type="email"], 570 input[type="url"], 571 input[type="date"], 572 input[type="month"], 573 input[type="time"], 574 input[type="datetime"], 575 input[type="datetime-local"], 576 input[type="week"], 577 input[type="number"], 578 input[type="search"], 579 input[type="tel"], 580 input[type="color"], 581 textarea { 482 582 -webkit-appearance: none; 483 583 -moz-appearance: none; … … 494 594 padding: 1.5rem 1.8rem; 495 595 width: 100%; 496 } 497 input[type="text"]:hover, 498 input[type="text"]:focus, 499 input[type="password"]:hover, 500 input[type="password"]:focus, 501 input[type="email"]:hover, 502 input[type="email"]:focus, 503 input[type="url"]:hover, 504 input[type="url"]:focus, 505 input[type="date"]:hover, 506 input[type="date"]:focus, 507 input[type="month"]:hover, 508 input[type="month"]:focus, 509 input[type="time"]:hover, 510 input[type="time"]:focus, 511 input[type="datetime"]:hover, 512 input[type="datetime"]:focus, 513 input[type="datetime-local"]:hover, 514 input[type="datetime-local"]:focus, 515 input[type="week"]:hover, 516 input[type="week"]:focus, 517 input[type="number"]:hover, 518 input[type="number"]:focus, 519 input[type="search"]:hover, 520 input[type="search"]:focus, 521 input[type="tel"]:hover, 522 input[type="tel"]:focus, 523 input[type="color"]:hover, 524 input[type="color"]:focus, 525 textarea:hover, 526 textarea:focus { 596 } 597 598 input[type="text"]:hover, 599 input[type="text"]:focus, 600 input[type="password"]:hover, 601 input[type="password"]:focus, 602 input[type="email"]:hover, 603 input[type="email"]:focus, 604 input[type="url"]:hover, 605 input[type="url"]:focus, 606 input[type="date"]:hover, 607 input[type="date"]:focus, 608 input[type="month"]:hover, 609 input[type="month"]:focus, 610 input[type="time"]:hover, 611 input[type="time"]:focus, 612 input[type="datetime"]:hover, 613 input[type="datetime"]:focus, 614 input[type="datetime-local"]:hover, 615 input[type="datetime-local"]:focus, 616 input[type="week"]:hover, 617 input[type="week"]:focus, 618 input[type="number"]:hover, 619 input[type="number"]:focus, 620 input[type="search"]:hover, 621 input[type="search"]:focus, 622 input[type="tel"]:hover, 623 input[type="tel"]:focus, 624 input[type="color"]:hover, 625 input[type="color"]:focus, 626 textarea:hover, 627 textarea:focus { 527 628 border-color: var(--global-color); 528 } 529 textarea { 629 } 630 631 textarea { 530 632 height: 12rem; 531 633 line-height: 1.5; 532 634 width: 100%; 533 } 534 select { 635 } 636 637 select { 535 638 font-size: inherit; 536 } 537 input::-webkit-input-placeholder { 639 } 640 641 input::-webkit-input-placeholder { 538 642 line-height: normal; 539 } 540 input:-ms-input-placeholder { 643 } 644 645 input:-ms-input-placeholder { 541 646 line-height: normal; 542 } 543 input::-moz-placeholder { 647 } 648 649 input::-moz-placeholder { 544 650 line-height: normal; 545 } 546 input[type="search"]::-webkit-search-decoration, 547 input[type="search"]::-webkit-search-cancel-button, 548 input[type="search"]::-webkit-search-results-button, 549 input[type="search"]::-webkit-search-results-decoration { 651 } 652 653 input[type="search"]::-webkit-search-decoration, 654 input[type="search"]::-webkit-search-cancel-button, 655 input[type="search"]::-webkit-search-results-button, 656 input[type="search"]::-webkit-search-results-decoration { 550 657 display: none; 551 658 opacity: 0; 552 659 visibility: hidden; 553 } 554 button, 555 .button, 556 .wp-block-search__button, 557 .wp-block-button__link, 558 .wp-block-file .wp-block-file__button, 559 input[type="button"], 560 input[type="reset"], 561 input[type="submit"], 562 .woocommerce ul.products li.product .button,a.added_to_cart.wc-forward { 660 } 661 662 button, 663 .button, 664 .wp-block-search__button, 665 .wp-block-button__link, 666 .wp-block-file .wp-block-file__button, 667 input[type="button"], 668 input[type="reset"], 669 input[type="submit"], 670 .woocommerce ul.products li.product .button, 671 a.added_to_cart.wc-forward { 563 672 -webkit-appearance: none; 564 673 -moz-appearance: none; … … 574 683 border-radius: 0px; 575 684 border: solid 1px #000; 576 } 577 button{ 685 } 686 687 button { 578 688 padding: 17px 18px; 579 } 580 .wp-block-search__button:hover{ 689 } 690 691 .wp-block-search__button:hover { 581 692 color: #ffffff; 582 } 583 .wp-block-button.is-style-outline .wp-block-button__link{ 693 } 694 695 .wp-block-button.is-style-outline .wp-block-button__link { 584 696 border: solid 2px var(--global-color); 585 697 color: var(--global-color) !important; 586 } 587 .wp-block-button.is-style-squared .wp-block-button__link{ 698 } 699 700 .wp-block-button.is-style-squared .wp-block-button__link { 588 701 border-radius: 0; 589 } 590 button:hover, 591 .button:hover, 592 .wp-block-search__button:hover, 593 .wp-block-button__link:hover, 594 .wp-block-file__button:hover, 595 input[type="button"]:hover, 596 input[type="reset"]:hover, 597 input[type="submit"]:hover, 598 button:focus, 599 .button:focus, 600 .wp-block-search__button:focus, 601 .wp-block-button__link:focus, 602 .wp-block-file__button:focus, 603 input[type="button"]:focus, 604 input[type="reset"]:focus, 605 input[type="submit"]:focus { 702 } 703 704 button:hover, 705 .button:hover, 706 .wp-block-search__button:hover, 707 .wp-block-button__link:hover, 708 .wp-block-file__button:hover, 709 input[type="button"]:hover, 710 input[type="reset"]:hover, 711 input[type="submit"]:hover, 712 button:focus, 713 .button:focus, 714 .wp-block-search__button:focus, 715 .wp-block-button__link:focus, 716 .wp-block-file__button:focus, 717 input[type="button"]:focus, 718 input[type="reset"]:focus, 719 input[type="submit"]:focus { 606 720 text-decoration: none; 607 721 border-color: var(--global-color); 608 722 background-color: var(--global-color); 609 } 610 button:focus, 611 .button:focus, 612 .wp-block-search__button:focus, 613 .wp-block-button__link:focus, 614 .wp-block-file__button:focus, 615 input[type="button"]:focus, 616 input[type="reset"]:focus, 617 input[type="submit"]:focus { 723 } 724 725 button:focus, 726 .button:focus, 727 .wp-block-search__button:focus, 728 .wp-block-button__link:focus, 729 .wp-block-file__button:focus, 730 input[type="button"]:focus, 731 input[type="reset"]:focus, 732 input[type="submit"]:focus { 618 733 outline: 2px solid; 619 } 620 button:hover, 621 .button:hover, 622 .wp-block-search__button:hover, 623 .wp-block-button__link:hover, 624 .wp-block-file__button:hover, 625 input[type="button"]:hover, 626 input[type="reset"]:hover, 627 input[type="submit"]:hover, 628 button:active, 629 .button:active, 630 .wp-block-search__button:active, 631 .wp-block-button__link:active, 632 .wp-block-file__button:active, 633 input[type="button"]:active, 634 input[type="reset"]:active, 635 input[type="submit"]:active { 734 } 735 736 button:hover, 737 .button:hover, 738 .wp-block-search__button:hover, 739 .wp-block-button__link:hover, 740 .wp-block-file__button:hover, 741 input[type="button"]:hover, 742 input[type="reset"]:hover, 743 input[type="submit"]:hover, 744 button:active, 745 .button:active, 746 .wp-block-search__button:active, 747 .wp-block-button__link:active, 748 .wp-block-file__button:active, 749 input[type="button"]:active, 750 input[type="reset"]:active, 751 input[type="submit"]:active { 636 752 outline: none; 637 } 638 .post-password-form { 753 } 754 755 .post-password-form { 639 756 padding: 40px; 640 757 background: #f8f9fa; 641 } 642 .post-password-form label { 758 } 759 760 .post-password-form label { 643 761 margin-bottom: 0; 644 762 -webkit-box-flex: 1; 645 763 -ms-flex: 1; 646 764 flex: 1; 647 } 648 .post-password-form input[type="password"] { 765 } 766 767 .post-password-form input[type="password"] { 649 768 min-height: 40px; 650 } 651 .post-password-form input[type="submit"] { 769 } 770 771 .post-password-form input[type="submit"] { 652 772 padding: 0 2rem; 653 773 min-height: 40px; 654 774 height: 100%; 655 775 border-radius: 0; 656 } 657 .post-password-form > p:first-child { 776 } 777 778 .post-password-form > p:first-child { 658 779 font-size: 1.25rem; 659 780 margin-bottom: 2rem; 660 } 661 .post-password-form > p:last-child { 781 } 782 783 .post-password-form > p:last-child { 662 784 display: -webkit-box; 663 785 display: -ms-flexbox; … … 667 789 align-items: flex-end; 668 790 margin-bottom: 0; 669 }670 671 h3.entry-title.entry-title-small {791 } 792 793 h3.entry-title.entry-title-small { 672 794 font-size: 18px; 673 795 font-weight: 500; 674 796 color: #CC913F; 675 } 676 .btn-fancy { 797 } 798 799 .btn-fancy { 677 800 position: relative; 678 801 display: inline-block; … … 687 810 transition: color 0.4s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out; 688 811 padding: 9px; 689 } 690 .btn-fancy svg{ 812 } 813 814 .btn-fancy svg { 691 815 fill: #000; 692 } 693 .btn-fancy span { 816 } 817 818 .btn-fancy span { 694 819 background: #fff; 695 820 padding: 5px 10px; 696 margin- left: 10px;821 margin-right: 10px; 697 822 border-radius: 7px; 698 } 699 .btn-fancy-primary { 823 } 824 825 .btn-fancy-primary { 700 826 background-color: #000; 701 827 color: #ffffff; 702 } 703 .btn-fancy-secondary { 828 } 829 830 .btn-fancy-secondary { 704 831 background-color: #fff; 705 832 color: #000; 706 } 707 .btn-fancy-primary:hover, 708 .btn-fancy-primary:focus { 833 } 834 835 .btn-fancy-primary:hover, 836 .btn-fancy-primary:focus { 709 837 background-color: #000; 710 838 color: #fff; 711 } 712 .btn-fancy-secondary:hover, 713 .btn-fancy-secondary:focus { 839 } 840 841 .btn-fancy-secondary:hover, 842 .btn-fancy-secondary:focus { 714 843 background-color: #000; 715 844 color: #fff; 716 } 717 .topbar-info-icon svg polyline, 718 .topbar-info-icon svg line { 845 } 846 847 .topbar-info-icon svg polyline, 848 .topbar-info-icon svg line { 719 849 fill: none; 720 850 stroke: currentColor; … … 723 853 stroke-dashoffset: 0; 724 854 transition: stroke-dashoffset 0.8s cubic-bezier(0.39, 0.58, 0.57, 1); 725 } 726 .theme-btn-link { 855 } 856 857 .theme-btn-link { 727 858 font-size: 1.6rem; 728 } 729 .theme-btn-link:hover .topbar-info-icon svg polyline, 730 .theme-btn-link:hover .topbar-info-icon svg line, 731 .theme-btn-link:focus .topbar-info-icon svg polyline, 732 .theme-btn-link:focus .topbar-info-icon svg line { 859 } 860 861 .theme-btn-link:hover .topbar-info-icon svg polyline, 862 .theme-btn-link:hover .topbar-info-icon svg line, 863 .theme-btn-link:focus .topbar-info-icon svg polyline, 864 .theme-btn-link:focus .topbar-info-icon svg line { 733 865 stroke-dashoffset: 80; 734 } 735 736 /*-------------------------------------------------------------- 737 # woocommerce 738 --------------------------------------------------------------*/ 739 740 .woocommerce span.onsale{ 866 } 867 868 869 /*-------------------------------------------------------------- 870 # woocommerce 871 --------------------------------------------------------------*/ 872 873 .woocommerce span.onsale { 741 874 background-color: var(--global-color); 742 }743 744 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button{875 } 876 877 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button { 745 878 background-color: var(--global-color); 746 879 color: #fff; 747 } 748 749 .woocommerce ul.products li.product .price,.woocommerce div.product p.price, .woocommerce div.product span.price{ 880 } 881 882 .woocommerce ul.products li.product .price, 883 .woocommerce div.product p.price, 884 .woocommerce div.product span.price { 750 885 color: var(--global-color); 751 }752 753 754 .woocommerce ul.products li.product .button,755 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,756 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,757 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,758 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,759 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,760 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,761 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,762 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button,763 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,764 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,765 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,766 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,767 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,768 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,769 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,770 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,a.added_to_cart.wc-forward {886 } 887 888 .woocommerce ul.products li.product .button, 889 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 890 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 891 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 892 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 893 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 894 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, 895 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 896 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button, 897 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, 898 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, 899 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, 900 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, 901 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, 902 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, 903 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, 904 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt, 905 a.added_to_cart.wc-forward { 771 906 color: #000; 772 907 display: block; 773 908 font-size: 15px; 774 909 font-weight: 600; 775 } 776 777 .woocommerce ul.products li.product .button:hover, 778 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, 779 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, 780 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 781 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, 782 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, 783 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, 784 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, 785 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover, 786 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, 787 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, 788 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, 789 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, 790 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, 791 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, 792 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, 793 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover 794 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 795 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover{ 910 } 911 912 .woocommerce ul.products li.product .button:hover, 913 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, 914 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, 915 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 916 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, 917 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, 918 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, 919 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, 920 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover, 921 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, 922 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, 923 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, 924 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, 925 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, 926 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, 927 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, 928 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 929 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover { 796 930 color: #000; 797 } 798 799 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover{ 931 } 932 933 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, 934 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover { 800 935 color: #ffffff; 801 } 802 h2.woocommerce-loop-product__title, .woocommerce ul.products li.product .price{ 936 } 937 938 h2.woocommerce-loop-product__title, 939 .woocommerce ul.products li.product .price { 803 940 text-align: center; 804 } 805 a.added_to_cart.wc-forward { 941 } 942 943 a.added_to_cart.wc-forward { 806 944 padding: 5px 20px; 807 945 border-radius: 5px; … … 811 949 color: #000 !important; 812 950 border: 2px solid #000; 813 } 814 .woocommerce-cart table.cart td.actions .coupon .input-text{ 951 } 952 953 .woocommerce-cart table.cart td.actions .coupon .input-text { 815 954 font-size: 14px; 816 } 817 .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text{ 955 } 956 957 .woocommerce table.cart td.actions .input-text, 958 .woocommerce-page #content table.cart td.actions .input-text, 959 .woocommerce-page table.cart td.actions .input-text { 818 960 width: 118px; 819 } 820 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button{ 961 } 962 963 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button { 821 964 color: #fff !important; 822 } 823 #customer_details input[type="text"]{ 965 } 966 967 #customer_details input[type="text"] { 824 968 padding: 0.5rem 1.8rem; 825 } 826 .woocommerce .quantity .qty { 969 } 970 971 .woocommerce .quantity .qty { 827 972 width: 80px; 828 } 829 .quantity input[type="number"]{ 973 } 974 975 .quantity input[type="number"] { 830 976 padding: 2px; 831 } 832 nav.woocommerce-MyAccount-navigation ul { 977 } 978 979 nav.woocommerce-MyAccount-navigation ul { 833 980 list-style: none; 834 981 padding: 0; 835 } 836 nav.woocommerce-MyAccount-navigation ul li { 982 } 983 984 nav.woocommerce-MyAccount-navigation ul li { 837 985 border: solid 2px #e5e5e5; 838 986 padding: 10px; … … 840 988 box-shadow: 0px 0px 0 0 #e5e5e5; 841 989 font-weight: 500; 842 } 843 .woocommerce .star-rating { 990 } 991 992 .woocommerce .star-rating { 844 993 margin: 0 auto 10px !important; 845 } 846 847 .woocommerce .star-rating span, .woocommerce p.stars a{ 994 } 995 996 .woocommerce .star-rating span, 997 .woocommerce p.stars a { 848 998 color: #ffcc05; 849 }850 851 .woocommerce nav.woocommerce-pagination ul li span.current{999 } 1000 1001 .woocommerce nav.woocommerce-pagination ul li span.current { 852 1002 background: var(--global-color); 853 1003 color: #222; 854 } 855 856 .wp-block-woocommerce-cart .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .wc-block-components-totals-coupon__button{ 857 background: var(--global-color); 858 color: #fff !important; 859 text-decoration: none !important; 860 border-radius: 10px; 861 border: none !important; 862 padding: 10px; 863 border: 2px solid transparent; 864 width: 50%; 865 } 866 .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover{ 867 border: 2px solid var(--global-color); 868 background: var(--global-color); 869 color: #fff !important; 870 } 871 button:hover, .button:hover, .wp-block-search__button:hover, .wp-block-button__link:hover, .wp-block-file__button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, button:focus, .button:focus, .wp-block-search__button:focus, .wp-block-button__link:focus, .wp-block-file__button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus{ 1004 } 1005 1006 .wp-block-woocommerce-cart .wc-block-cart__submit-button, 1007 .wc-block-components-checkout-place-order-button, 1008 .wc-block-components-totals-coupon__button { 1009 background: var(--global-color); 1010 color: #fff !important; 1011 text-decoration: none !important; 1012 border-radius: 10px; 1013 border: none !important; 1014 padding: 10px; 1015 border: 2px solid transparent; 1016 width: 50%; 1017 } 1018 1019 .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover { 1020 border: 2px solid var(--global-color); 1021 background: var(--global-color); 1022 color: #fff !important; 1023 } 1024 1025 button:hover, 1026 .button:hover, 1027 .wp-block-search__button:hover, 1028 .wp-block-button__link:hover, 1029 .wp-block-file__button:hover, 1030 input[type="button"]:hover, 1031 input[type="reset"]:hover, 1032 input[type="submit"]:hover, 1033 button:focus, 1034 .button:focus, 1035 .wp-block-search__button:focus, 1036 .wp-block-button__link:focus, 1037 .wp-block-file__button:focus, 1038 input[type="button"]:focus, 1039 input[type="reset"]:focus, 1040 input[type="submit"]:focus { 872 1041 color: #ffffff; 873 } 874 .wp-block-woocommerce-cart .wc-block-cart-items,.wp-block-woocommerce-cart-order-summary-block{ 875 border: 1px solid #dee2e6!important; 876 padding: 10px; 877 border-radius: 10px; 878 } 879 .wp-block-woocommerce-cart .wc-block-cart-items__header-image, .wc-block-cart-items__header-total{ 880 padding: 10px !important; 881 } 882 .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container{ 883 margin-top: 20px; 884 } 885 .wp-block-woocommerce-cart .wc-block-components-product-badge{ 886 background: #e5a500; 887 color: #fff !important; 888 padding: 10px !important; 889 margin-bottom: 5px; 890 margin-top:5px ; 891 } 892 a.wc-block-components-product-name, .wc-block-components-product-name{ 893 font-size: 22px !important; 894 color: #000 !important; 895 text-decoration: none !important; 896 } 897 .wc-block-components-order-summary-item__quantity{ 898 background: var(--global-color) !important; 899 color: #fff !important; 900 border: none !important; 901 box-shadow: none !important; 902 } 903 904 .wc-block-components-sidebar-layout .wc-block-components-main { 905 padding-right:0% !important; 906 width: 100% !important; 907 } 908 .wc-block-components-sidebar{ 1042 } 1043 1044 .wp-block-woocommerce-cart .wc-block-cart-items, 1045 .wp-block-woocommerce-cart-order-summary-block { 1046 border: 1px solid #dee2e6!important; 1047 padding: 10px; 1048 border-radius: 10px; 1049 } 1050 1051 .wp-block-woocommerce-cart .wc-block-cart-items__header-image, 1052 .wc-block-cart-items__header-total { 1053 padding: 10px !important; 1054 } 1055 1056 .wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit-container { 1057 margin-top: 20px; 1058 } 1059 1060 .wp-block-woocommerce-cart .wc-block-components-product-badge { 1061 background: #e5a500; 1062 color: #fff !important; 1063 padding: 10px !important; 1064 margin-bottom: 5px; 1065 margin-top: 5px; 1066 } 1067 1068 a.wc-block-components-product-name, 1069 .wc-block-components-product-name { 1070 font-size: 22px !important; 1071 color: #000 !important; 1072 text-decoration: none !important; 1073 } 1074 1075 .wc-block-components-order-summary-item__quantity { 1076 background: var(--global-color) !important; 1077 color: #fff !important; 1078 border: none !important; 1079 box-shadow: none !important; 1080 } 1081 1082 .wc-block-components-sidebar-layout .wc-block-components-main { 1083 padding-left: 0% !important; 909 1084 width: 100% !important; 910 } 911 .wp-block-woocommerce-cart.alignwide{ 912 margin-right: auto !important; 913 margin-left: auto !important; 914 } 915 .wc-block-components-totals-footer-item .wc-block-components-totals-item__value, 916 .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, 917 .wc-block-components-totals-item__label,.wc-block-components-totals-item__value, 918 .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, 919 .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount, 920 .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input, 921 .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button, 922 .wc-block-components-quantity-selector,table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link, 923 .wc-block-components-product-price__value.is-discounted,del.wc-block-components-product-price__regular { 924 color: #000 !important; 925 } 926 .wc-block-components-totals-wrapper:after{ 927 border-color: #000 !important; 928 } 929 tbody.wc-block-cart-items{ 930 border: 1px solid #000; 931 border-radius: 30px; 932 } 933 .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, button.wc-block-cart-item__remove-link{ 934 font-size: 14px !important; 935 } 936 .is-medium table.wc-block-cart-items .wc-block-cart-items__row{ 1085 } 1086 1087 .wc-block-components-sidebar { 1088 width: 100% !important; 1089 } 1090 1091 .wp-block-woocommerce-cart.alignwide { 1092 margin-left: auto !important; 1093 margin-right: auto !important; 1094 } 1095 1096 .wc-block-components-totals-footer-item .wc-block-components-totals-item__value, 1097 .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, 1098 .wc-block-components-totals-item__label, 1099 .wc-block-components-totals-item__value, 1100 .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, 1101 .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount, 1102 .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input, 1103 .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button, 1104 .wc-block-components-quantity-selector, 1105 table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link, 1106 .wc-block-components-product-price__value.is-discounted, 1107 del.wc-block-components-product-price__regular { 1108 color: #000 !important; 1109 } 1110 1111 .wc-block-components-totals-wrapper:after { 1112 border-color: #000 !important; 1113 } 1114 1115 tbody.wc-block-cart-items { 1116 border: 1px solid #000; 1117 border-radius: 30px; 1118 } 1119 1120 .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, 1121 button.wc-block-cart-item__remove-link { 1122 font-size: 14px !important; 1123 } 1124 1125 .is-medium table.wc-block-cart-items .wc-block-cart-items__row { 937 1126 grid-template-columns: 270px 47px !important; 938 1127 padding: 16px 16px !important; 939 } 940 .wp-block-woocommerce-cart .wc-block-components-product-badge{ 941 display: none; 942 } 943 .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover{ 944 border: unset !important; 945 } 946 a.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained { 1128 } 1129 1130 .wp-block-woocommerce-cart .wc-block-components-product-badge { 1131 display: none; 1132 } 1133 1134 .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover { 1135 border: unset !important; 1136 } 1137 1138 a.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained { 947 1139 text-decoration: none; 948 } 949 .wc-block-components-text-input input[type=text]{ 1140 } 1141 1142 .wc-block-components-text-input input[type=text] { 950 1143 padding: 14px !important; 951 }952 953 .woocommerce span.onsale{1144 } 1145 1146 .woocommerce span.onsale { 954 1147 background-color: var(--global-color); 955 } 956 957 .woocommerce div.product p.price, .woocommerce div.product span.price{ 1148 } 1149 1150 .woocommerce div.product p.price, 1151 .woocommerce div.product span.price { 958 1152 color: var(--global-color); 959 } 960 .products button,.products .button,.products .wp-block-search__button,.products .wp-block-button__link,.products .wp-block-file .wp-block-file__button,.products input[type="button"],.products input[type="reset"],.products input[type="submit"],.products .woocommerce ul.products li.product .button,.products a.added_to_cart.wc-forward{ 1153 } 1154 1155 .products button, 1156 .products .button, 1157 .products .wp-block-search__button, 1158 .products .wp-block-button__link, 1159 .products .wp-block-file .wp-block-file__button, 1160 .products input[type="button"], 1161 .products input[type="reset"], 1162 .products input[type="submit"], 1163 .products .woocommerce ul.products li.product .button, 1164 .products a.added_to_cart.wc-forward { 961 1165 padding: 10px 25px !important; 962 }963 964 .tinv-wraper.woocommerce.tinv-wishlist.tinvwl-after-add-to-cart.tinvwl-loop-button-wrapper.tinvwl-woocommerce_after_shop_loop_item {1166 } 1167 1168 .tinv-wraper.woocommerce.tinv-wishlist.tinvwl-after-add-to-cart.tinvwl-loop-button-wrapper.tinvwl-woocommerce_after_shop_loop_item { 965 1169 text-align: center; 966 } 967 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button{ 1170 } 1171 1172 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, 1173 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, 1174 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, 1175 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, 1176 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, 1177 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, 1178 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, 1179 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt, 1180 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 1181 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 1182 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 1183 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 1184 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 1185 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, 1186 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 1187 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button { 968 1188 background-color: #fff; 969 color: #000 ;1189 color: #000 !important; 970 1190 border: solid 2px #000; 971 } 972 973 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover{ 1191 } 1192 1193 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, 1194 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, 1195 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, 1196 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, 1197 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, 1198 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, 1199 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, 1200 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover, 1201 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, 1202 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, 1203 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 1204 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, 1205 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, 1206 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, 1207 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, 1208 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover { 974 1209 background-color: var(--global-color); 975 } 976 977 /*-------------------------------------------------------------- 978 # Header 979 --------------------------------------------------------------*/ 980 981 #top-header { 1210 } 1211 1212 1213 /*-------------------------------------------------------------- 1214 # Header 1215 --------------------------------------------------------------*/ 1216 1217 #top-header { 982 1218 background: var(--secondary-color); 983 } 984 #top-header svg{ 1219 } 1220 1221 #top-header svg { 985 1222 fill: #ffffff; 986 margin-right: 10px; 987 } 988 #center-header .social-area svg { 1223 margin-left: 10px; 1224 } 1225 1226 #center-header .social-area svg { 989 1227 fill: #ffffff; 990 1228 font-size: 15px; 991 } 992 #top-header span, #top-header span a, #top-header .social-area a { 1229 } 1230 1231 #top-header span, 1232 #top-header span a, 1233 #top-header .social-area a { 993 1234 color: #ffffff; 994 1235 font-size: 14px; 995 1236 font-weight: 500; 996 } 997 .wrapper.headers-top{ 1237 } 1238 1239 .wrapper.headers-top { 998 1240 background: var(--global-color); 999 1241 padding-top: 10px; 1000 1242 padding-bottom: 10px; 1001 } 1002 .header-box{ 1243 } 1244 1245 .header-box { 1003 1246 background: #ffffff; 1004 } 1005 .header-button span a { 1247 } 1248 1249 .header-button span a { 1006 1250 background: var(--secondary-color); 1007 1251 padding: 10px 30px; … … 1010 1254 color: #000000; 1011 1255 font-weight: 600; 1012 } 1013 .woo-box { 1256 } 1257 1258 .woo-box { 1014 1259 width: 3%; 1015 1260 justify-content: flex-end; 1016 1261 display: flex; 1017 1262 align-items: center; 1018 } 1019 .header-menu { 1263 } 1264 1265 .header-menu { 1020 1266 width: 65%; 1021 } 1022 .header-logo { 1267 } 1268 1269 .header-logo { 1023 1270 width: 17%; 1024 } 1025 .theme-header-areas.header-areas-right.header-button { 1271 } 1272 1273 .theme-header-areas.header-areas-right.header-button { 1026 1274 width: 15%; 1027 1275 text-align: end; 1028 } 1029 .header-titles .custom-logo-name { 1276 } 1277 1278 .header-titles .custom-logo-name { 1030 1279 display: block; 1031 1280 font-size: 25px; … … 1035 1284 color: #000000; 1036 1285 letter-spacing: 1px; 1037 } 1038 .site-description span { 1286 } 1287 1288 .site-description span { 1039 1289 color: #142257; 1040 1290 font-weight: 700; 1041 1291 font-size: 13px; 1042 } 1043 1044 .header-titles .custom-logo-name, .site-description { 1292 } 1293 1294 .header-titles .custom-logo-name, 1295 .site-description { 1045 1296 color: var(--global-color); 1046 1297 font-family: var(--font-head); 1047 1298 text-transform: uppercase; 1048 } 1049 .header-search a { 1050 cursor: pointer; 1051 position: relative; 1052 } 1053 1054 /* Search Style */ 1055 #search { 1299 } 1300 1301 .header-search a { 1302 cursor: pointer; 1303 position: relative; 1304 } 1305 1306 1307 /* Search Style */ 1308 1309 #search { 1056 1310 position: fixed; 1057 1311 top: 0px; 1058 left: 0px;1312 right: 0px; 1059 1313 width: 100%; 1060 1314 height: 100%; … … 1069 1323 -ms-transform: translate(0px, -100%) scale(0, 0); 1070 1324 -o-transform: translate(0px, -100%) scale(0, 0); 1071 transform: translate(0px, -100%) scale(0, 0); 1325 transform: translate(0px, -100%) scale(0, 0); 1072 1326 opacity: 0; 1073 1327 display: none; 1074 } 1075 #search.open { 1328 } 1329 1330 #search.open { 1076 1331 -webkit-transform: translate(0px, 0px) scale(1, 1); 1077 1332 -moz-transform: translate(0px, 0px) scale(1, 1); 1078 1333 -ms-transform: translate(0px, 0px) scale(1, 1); 1079 1334 -o-transform: translate(0px, 0px) scale(1, 1); 1080 transform: translate(0px, 0px) scale(1, 1); 1335 transform: translate(0px, 0px) scale(1, 1); 1081 1336 opacity: 1; 1082 1337 z-index: 106; 1083 1338 display: block; 1084 } 1085 #search .search-form .search-submit{ 1339 } 1340 1341 #search .search-form .search-submit { 1086 1342 display: none; 1087 } 1088 #search input[type="search"] { 1343 } 1344 1345 #search input[type="search"] { 1089 1346 position: absolute; 1090 1347 top: 50%; 1091 left: 0;1348 right: 0; 1092 1349 margin-top: -51px; 1093 1350 width: 60%; 1094 margin- left: 20%;1351 margin-right: 20%; 1095 1352 color: rgb(255, 255, 255); 1096 1353 background: transparent; 1097 1354 border-top: 1px solid rgba(255, 255, 255, .8); 1098 1355 border-bottom: 2px solid rgba(255, 255, 255, .5); 1356 border-right: 0px solid transparent; 1099 1357 border-left: 0px solid transparent; 1100 border-right: 0px solid transparent;1101 1358 font-size: 40px; 1102 1359 font-weight: 300; … … 1105 1362 padding: 10px; 1106 1363 font-family: var(--font-main); 1107 } 1108 #search .close { 1364 } 1365 1366 #search .close { 1109 1367 position: fixed; 1110 1368 top: 15px; 1111 right: 15px;1369 left: 15px; 1112 1370 opacity: 1; 1113 1371 font-size: 27px; 1114 1372 color: #fff; 1115 } 1116 #search .close:hover{ 1117 color: #FFE52C; 1118 cursor: pointer; 1119 } 1120 .header-center { 1373 } 1374 1375 #search .close:hover { 1376 color: #FFE52C; 1377 cursor: pointer; 1378 } 1379 1380 .header-center { 1121 1381 display: flex; 1122 1382 align-items: center; 1123 1383 padding-top: 15px; 1124 1384 padding-bottom: 15px; 1125 } 1126 .header-search a svg { 1385 } 1386 1387 .header-search a svg { 1127 1388 fill: #3B4052 !important; 1128 1389 margin: 0px !important; 1129 } 1130 .site-navigation li.current_page_item > a, .site-navigation .current-menu-item > a{ 1390 } 1391 1392 .site-navigation li.current_page_item > a, 1393 .site-navigation .current-menu-item > a { 1131 1394 color: #ffffff; 1132 }1133 1134 .toggle-menu {1395 } 1396 1397 .toggle-menu { 1135 1398 width: 30px; 1136 1399 height: 17px; … … 1138 1401 position: relative; 1139 1402 top: 0px; 1140 float: right;1403 float: left; 1141 1404 z-index: 1000; 1142 } 1143 .toggle-menu.active i { 1144 left: 80px; 1405 } 1406 1407 .toggle-menu.active i { 1408 right: 80px; 1145 1409 top: 10px !important; 1146 1410 background: #000; 1147 } 1148 .toggle-menu i { 1149 position: absolute; 1150 display: block; 1151 height: 2px; 1152 background: #ffffff; 1153 width: 30px; 1154 left: 0px; 1155 -webkit-transition: all .3s; 1156 transition: all .3s; 1157 } 1158 1159 .toggle-menu i:nth-child(1) { 1411 } 1412 1413 .toggle-menu i { 1414 position: absolute; 1415 display: block; 1416 height: 2px; 1417 background: #ffffff; 1418 width: 30px; 1419 right: 0px; 1420 -webkit-transition: all .3s; 1421 transition: all .3s; 1422 } 1423 1424 .toggle-menu i:nth-child(1) { 1160 1425 top: 0px; 1161 }1162 1163 .toggle-menu i:nth-child(2) {1426 } 1427 1428 .toggle-menu i:nth-child(2) { 1164 1429 top: 6px; 1165 }1166 1167 .toggle-menu i:nth-child(3) {1430 } 1431 1432 .toggle-menu i:nth-child(3) { 1168 1433 top: 12px; 1169 } 1170 .menu-drawer .most-sidebar-box { 1434 } 1435 1436 .menu-drawer .most-sidebar-box { 1171 1437 width: 100%; 1172 } 1173 .toggle-menu.active i:nth-child(1) { 1174 top: 25px; 1175 -webkit-transform: rotateZ(45deg); 1176 transform: rotateZ(45deg); 1177 } 1178 1179 .toggle-menu.active i:nth-child(2) { 1180 background: transparent; 1181 } 1182 1183 .toggle-menu.active i:nth-child(3) { 1184 top: 25px; 1185 -webkit-transform: rotateZ(-45deg); 1186 transform: rotateZ(-45deg); 1187 } 1188 .menu-drawer { 1438 } 1439 1440 .toggle-menu.active i:nth-child(1) { 1441 top: 25px; 1442 -webkit-transform: rotateZ(-45deg); 1443 transform: rotateZ(-45deg); 1444 } 1445 1446 .toggle-menu.active i:nth-child(2) { 1447 background: transparent; 1448 } 1449 1450 .toggle-menu.active i:nth-child(3) { 1451 top: 25px; 1452 -webkit-transform: rotateZ(45deg); 1453 transform: rotateZ(45deg); 1454 } 1455 1456 .menu-drawer { 1189 1457 overflow-y: scroll; 1190 } 1191 .menu-drawer .widget-area-wrapper .widget { 1192 margin-left: 0px !important; 1193 } 1194 .menu-drawer { 1458 } 1459 1460 .menu-drawer .widget-area-wrapper .widget { 1461 margin-right: 0px !important; 1462 } 1463 1464 .menu-drawer { 1195 1465 width: 400px; 1196 1466 background-color: #ffccbc; … … 1198 1468 position: fixed; 1199 1469 display: none; 1200 right: -550px;1470 left: -550px; 1201 1471 top: 32px; 1202 transition: right linear .10s;1472 transition: left linear .10s; 1203 1473 padding: 50px; 1204 1474 z-index: 9; 1205 } 1206 .open { 1207 right: 0px; 1208 display: block; 1209 transition: right linear .10s; 1210 } 1211 .menu-drawer .header-logo { 1475 } 1476 1477 .open { 1478 left: 0px; 1479 display: block; 1480 transition: left linear .10s; 1481 } 1482 1483 .menu-drawer .header-logo { 1212 1484 width: 100%; 1213 1485 text-align: center; 1214 1486 margin-bottom: 30px; 1215 } 1216 .menu-drawer { 1217 li { 1218 font-weight: bold; 1219 margin-bottom: 30px; 1220 font-size: 50px; 1221 text-align: center; 1222 a { 1223 text-decoration: none; 1224 color: #555; 1225 &:hover { 1226 color: #0094FC; 1487 } 1488 1489 .menu-drawer { 1490 li { 1491 font-weight: bold; 1492 margin-bottom: 30px; 1493 font-size: 50px; 1494 text-align: center; 1495 a { 1496 text-decoration: none; 1497 color: #555; 1498 &:hover { 1499 color: #0094FC; 1500 } 1227 1501 } 1228 1502 } 1229 1503 } 1230 } 1231 header#site-header span.cart_no,header#site-header a.wishlist_view{ 1504 1505 header#site-header span.cart_no, 1506 header#site-header a.wishlist_view { 1232 1507 position: relative; 1233 } 1234 header#site-header span.cart_no a, header#site-header a.wishlist_view { 1508 } 1509 1510 header#site-header span.cart_no a, 1511 header#site-header a.wishlist_view { 1235 1512 display: flex; 1236 1513 align-items: center; 1237 } 1238 header#site-header span.cart-value,header#site-header span.wishlist-counter { 1514 } 1515 1516 header#site-header span.cart-value, 1517 header#site-header span.wishlist-counter { 1239 1518 position: absolute; 1240 1519 width: 15px; 1241 1520 font-size: 10px; 1242 right: 0px;1521 left: 0px; 1243 1522 background: var(--global-color); 1244 1523 text-align: center; … … 1248 1527 height: 15px; 1249 1528 top: -3px; 1250 } 1251 header#site-header { 1529 } 1530 1531 header#site-header { 1252 1532 color: #000; 1253 1533 background: #EEEDE9; 1254 } 1255 section#center-header { 1534 } 1535 1536 section#center-header { 1256 1537 position: relative; 1257 1538 width: 100%; 1258 background: #FFFAF5;1539 background: #FFFAF5; 1259 1540 z-index: 9; 1260 } 1261 section#center-header .header-wrapper{ 1541 } 1542 1543 section#center-header .header-wrapper { 1262 1544 align-items: normal; 1263 } 1264 .site-logo .custom-logo-link{ 1545 } 1546 1547 .site-logo .custom-logo-link { 1265 1548 margin: 0 auto; 1266 } 1267 section.logo-box:after { 1549 } 1550 1551 section.logo-box:after { 1268 1552 content: ""; 1269 1553 margin: 0 auto; 1270 1554 z-index: -1 !important; 1271 1555 position: absolute; 1556 left: 0px; 1272 1557 right: 0px; 1273 left: 0px;1274 1558 z-index: 0; 1275 1559 width: 22%; … … 1278 1562 background: #C1C7CD; 1279 1563 clip-path: polygon(0 0, 100% 0%, 85% 100%, 15% 100%); 1280 } 1281 img.custom-logo { 1564 } 1565 1566 img.custom-logo { 1282 1567 width: 150px; 1283 1568 height: 80px; 1284 1569 object-fit: cover; 1285 } 1286 section.logo-box{ 1570 } 1571 1572 section.logo-box { 1287 1573 position: relative; 1288 } 1289 1290 1291 li.page_item.page-item-174.page_item_has_children.current_page_item{ 1292 1293 } 1294 1295 1296 @media (max-width: 767px) { 1574 } 1575 1576 li.page_item.page-item-174.page_item_has_children.current_page_item {} 1577 1578 @media (max-width: 767px) { 1297 1579 .header-titles .custom-logo-name { 1298 font-size: 2.8rem; 1299 } 1300 .shop-heading h4:before,.shop-heading h4:after{ 1301 display: none; 1302 } 1303 } 1304 .header-navigation-wrapper { 1580 font-size: 2.8rem; 1581 } 1582 .shop-heading h4:before, 1583 .shop-heading h4:after { 1584 display: none; 1585 } 1586 } 1587 1588 .header-navigation-wrapper { 1305 1589 position: relative; 1306 } 1307 .header-navbar { 1590 } 1591 1592 .header-navbar { 1308 1593 align-items: center; 1309 1594 background: transparent; … … 1313 1598 border-top: solid 1px #ededed; 1314 1599 border-bottom: solid 1px #ededed; 1315 } 1316 .header-wrapper { 1600 } 1601 1602 .header-wrapper { 1317 1603 display: flex; 1318 1604 flex-wrap: inherit; 1319 1605 align-items: center; 1320 1606 justify-content: space-between; 1321 } 1322 .header-wrapper .header-areas-left, 1323 .header-wrapper .header-areas-center, 1324 .header-wrapper .header-areas-right { 1607 } 1608 1609 .header-wrapper .header-areas-left, 1610 .header-wrapper .header-areas-center, 1611 .header-wrapper .header-areas-right { 1325 1612 display: flex; 1326 1613 align-items: center; 1327 } 1328 .header-wrapper .header-areas-left { 1614 } 1615 1616 .header-wrapper .header-areas-left { 1329 1617 justify-content: flex-start; 1330 } 1331 .header-wrapper .header-areas-center { 1618 } 1619 1620 .header-wrapper .header-areas-center { 1332 1621 justify-content: center; 1333 1622 flex-grow: 1; 1334 } 1335 .header-wrapper .header-areas-center .site-description { 1623 } 1624 1625 .header-wrapper .header-areas-center .site-description { 1336 1626 text-align: center; 1337 } 1338 .header-wrapper .header-areas-right { 1627 } 1628 1629 .header-wrapper .header-areas-right { 1339 1630 justify-content: flex-end; 1340 } 1341 .main-nav-controls, 1342 .navbar-controls { 1631 } 1632 1633 .main-nav-controls, 1634 .navbar-controls { 1343 1635 display: flex; 1344 } 1345 .main-nav-controls { 1636 } 1637 1638 .main-nav-controls { 1346 1639 align-items: center; 1347 } 1348 .navbar-controls { 1640 } 1641 1642 .navbar-controls { 1349 1643 flex-shrink: 0; 1350 1644 align-items: center; 1351 1645 justify-content: center; 1352 1646 overflow: hidden; 1353 } 1354 .navbar-control { 1647 } 1648 1649 .navbar-control { 1355 1650 background: transparent; 1356 1651 border-color: transparent; … … 1367 1662 letter-spacing: .1em; 1368 1663 font-size: 12px; 1369 } 1370 .navbar-control .svg-icon { 1664 } 1665 1666 .navbar-control .svg-icon { 1371 1667 display: inline-block; 1372 1668 vertical-align: middle; 1373 } 1374 .main-nav-controls .navbar-control { 1375 margin: 0 1.25rem 0 auto; 1376 } 1377 .navbar-control:hover, 1378 .navbar-control:focus, 1379 .navbar-control:active { 1669 } 1670 1671 .main-nav-controls .navbar-control { 1672 margin: 0 auto 0 1.25rem; 1673 } 1674 1675 .navbar-control:hover, 1676 .navbar-control:focus, 1677 .navbar-control:active { 1380 1678 outline: none; 1381 1679 border-color: transparent; 1382 } 1383 .navbar-control-trigger:focus { 1680 } 1681 1682 .navbar-control-trigger:focus { 1384 1683 outline: none; 1385 } 1386 .navbar-control:focus-visible > .navbar-control-trigger { 1684 } 1685 1686 .navbar-control:focus-visible > .navbar-control-trigger { 1387 1687 outline: 2px solid; 1388 }1389 1390 .header-searchbar-inner {1688 } 1689 1690 .header-searchbar-inner { 1391 1691 transform: translateY(-100%); 1392 1692 transition: transform 0.15s linear, box-shadow 0.15s linear; 1393 } 1394 .header-searchbar-active .header-searchbar-inner { 1693 } 1694 1695 .header-searchbar-active .header-searchbar-inner { 1395 1696 box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.08); 1396 1697 transform: translateY(0); 1397 1698 transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear; 1398 } 1399 1400 /*-------------------------------------------------------------- 1401 # Slider Settings Css 1402 --------------------------------------------------------------*/ 1403 .slider-box { 1699 } 1700 1701 1702 /*-------------------------------------------------------------- 1703 # Slider Settings Css 1704 --------------------------------------------------------------*/ 1705 1706 .slider-box { 1404 1707 height: 600px; 1405 1708 position: relative; 1406 1709 background-size: cover !important; 1407 } 1408 .slider-box:before{ 1710 } 1711 1712 .slider-box:before { 1409 1713 content: ""; 1410 1714 width: 100%; … … 1413 1717 position: absolute; 1414 1718 top: 0px; 1415 left: 0px; 1416 } 1417 .image-main-box { 1719 right: 0px; 1720 } 1721 1722 .image-main-box { 1418 1723 justify-content: flex-end; 1419 1724 display: flex; 1420 1725 margin-top: 35px; 1421 } 1422 .banner-img { 1726 } 1727 1728 .banner-img { 1423 1729 height: 400px; 1424 1730 clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 58%); … … 1426 1732 background-size: cover; 1427 1733 object-fit: cover; 1428 } 1429 span.third_word_span { 1734 } 1735 1736 span.third_word_span { 1430 1737 color: var(--global-color); 1431 } 1432 .slider-main { 1738 } 1739 1740 .slider-main { 1433 1741 display: flex; 1434 1742 gap: 20px; 1435 } 1436 .slide-heading-main { 1743 } 1744 1745 .slide-heading-main { 1437 1746 width: 100%; 1438 1747 position: relative; 1439 1748 z-index: 1; 1440 } 1441 .main-banner-box { 1749 } 1750 1751 .main-banner-box { 1442 1752 position: absolute; 1443 1753 width: 100%; 1444 1754 z-index: 2; 1445 1755 bottom: 0px; 1446 } 1447 .image-main-box:after { 1756 } 1757 1758 .image-main-box:after { 1448 1759 height: 400px; 1449 1760 clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0 100%, 0 28%); … … 1454 1765 top: 0px; 1455 1766 z-index: -1; 1456 right: 0px; 1457 } 1458 .slider-box:after { 1767 left: 0px; 1768 } 1769 1770 .slider-box:after { 1459 1771 height: 60px; 1460 1772 width: 280px; … … 1465 1777 bottom: 0px; 1466 1778 z-index: 2; 1467 left: 0px; 1468 } 1469 .main-carousel-caption .post-content { 1779 right: 0px; 1780 } 1781 1782 .main-carousel-caption .post-content { 1470 1783 position: absolute; 1471 right: 30%;1472 left: 27%;1784 left: 30%; 1785 right: 27%; 1473 1786 top: 35px; 1474 } 1475 .slide-heading-main .entry-header h3 { 1787 } 1788 1789 .slide-heading-main .entry-header h3 { 1476 1790 font-size: 16px; 1477 1791 font-weight: 700; 1478 1792 color: #000000; 1479 } 1480 .slide-heading-main a.btn-fancy.btn-fancy-primary { 1793 } 1794 1795 .slide-heading-main a.btn-fancy.btn-fancy-primary { 1481 1796 background: var(--secondary-color); 1482 1797 font-size: 14px; … … 1485 1800 padding: 10px 25px; 1486 1801 border-radius: 0px; 1487 }1488 1489 .swiper-slide .post-content h2 a {1802 } 1803 1804 .swiper-slide .post-content h2 a { 1490 1805 color: #000000 !important; 1491 1806 text-decoration: none; … … 1493 1808 letter-spacing: 1px; 1494 1809 font-weight: 800; 1495 } 1496 .slide-heading-main .entry-header svg{ 1497 margin-right: 5px; 1498 } 1499 .page-template-frontpage-php .main-header,.page-template-frontpage .main-header{ 1810 } 1811 1812 .slide-heading-main .entry-header svg { 1813 margin-left: 5px; 1814 } 1815 1816 .page-template-frontpage-php .main-header, 1817 .page-template-frontpage .main-header { 1500 1818 position: absolute; 1501 } 1502 .main-header{ 1819 } 1820 1821 .main-header { 1503 1822 position: relative; 1504 1823 width: 100%; 1505 } 1506 1507 .left-box ,.right-box{ 1824 } 1825 1826 .left-box, 1827 .right-box { 1508 1828 width: 50%; 1509 } 1510 .slide-heading-main h4.slide-title { 1829 } 1830 1831 .slide-heading-main h4.slide-title { 1511 1832 color: var(--global-color); 1512 1833 font-size: 20px; … … 1514 1835 font-weight: 600; 1515 1836 letter-spacing: 2px; 1516 } 1517 .slide-heading-main p.slide-content { 1837 } 1838 1839 .slide-heading-main p.slide-content { 1518 1840 color: #1D1D1D; 1519 1841 font-size: 20px; … … 1522 1844 margin-bottom: 10px; 1523 1845 font-style: italic; 1524 } 1525 .slide-heading-main span.slide-button a { 1846 } 1847 1848 .slide-heading-main span.slide-button a { 1526 1849 font-size: 20px; 1527 1850 color: var(--global-color); 1528 1851 font-weight: 600; 1529 } 1530 .slide-heading-main span.slide-button a svg { 1852 } 1853 1854 .slide-heading-main span.slide-button a svg { 1531 1855 fill: #000; 1532 margin- left: 15px;1856 margin-right: 15px; 1533 1857 top: 4px; 1534 1858 position: relative; 1535 } 1536 .imagebox1 .entry-thumbnail img { 1859 } 1860 1861 .imagebox1 .entry-thumbnail img { 1537 1862 height: 420px; 1538 1863 width: 600px; … … 1540 1865 margin: 0px 0px; 1541 1866 object-fit: cover; 1542 left: 0px;1867 right: 0px; 1543 1868 z-index: 2; 1544 } 1545 1546 /*-------------------------------------------------------------- 1547 # About Us Settings Css 1548 --------------------------------------------------------------*/ 1549 p.list-sub-title { 1869 } 1870 1871 1872 /*-------------------------------------------------------------- 1873 # About Us Settings Css 1874 --------------------------------------------------------------*/ 1875 1876 p.list-sub-title { 1550 1877 font-size: 15px; 1551 1878 font-weight: 400; 1552 1879 color: #000000; 1553 } 1554 h2.slider-heading .last_word_span{ 1880 } 1881 1882 h2.slider-heading .last_word_span { 1555 1883 color: var(--global-color); 1556 } 1557 .most-sidebar-box:before { 1884 } 1885 1886 .most-sidebar-box:before { 1558 1887 content: ""; 1559 1888 position: absolute; 1560 1889 top: -28px; 1890 left: -23px; 1891 width: 72px; 1892 z-index: -1; 1893 height: 100px; 1894 background: url(assets/images/about-small.png); 1895 background-repeat: no-repeat; 1896 } 1897 1898 .most-sidebar-box:after { 1899 content: ""; 1900 position: absolute; 1901 bottom: -28px; 1561 1902 right: -23px; 1562 1903 width: 72px; … … 1565 1906 background: url(assets/images/about-small.png); 1566 1907 background-repeat: no-repeat; 1567 }1568 .most-sidebar-box:after { 1569 content: "";1908 } 1909 1910 .most-sidebar-box h3 { 1570 1911 position: absolute; 1571 bottom: -28px; 1572 left: -23px; 1573 width: 72px; 1574 z-index: -1; 1575 height: 100px; 1576 background: url(assets/images/about-small.png); 1577 background-repeat: no-repeat; 1578 } 1579 1580 .most-sidebar-box h3 { 1581 position: absolute; 1582 transform: rotate(270deg); 1583 left: -58%; 1912 transform: rotate(-270deg); 1913 right: -58%; 1584 1914 top: 40%; 1585 1915 font-size: 64px; … … 1587 1917 color: #ffffff; 1588 1918 -webkit-text-stroke: 1px #e3e3e3; 1589 } 1590 .about-box .header-areas-box h6 { 1919 } 1920 1921 .about-box .header-areas-box h6 { 1591 1922 color: #263238; 1592 1923 font-weight: 600; 1593 1924 font-size: 16px; 1594 1925 margin: 0px; 1595 } 1596 .about-btn a.btn-fancy.btn-fancy-primary { 1926 } 1927 1928 .about-btn a.btn-fancy.btn-fancy-primary { 1597 1929 background: var(--secondary-color); 1598 1930 font-size: 14px; … … 1601 1933 padding: 10px 45px; 1602 1934 border-radius: 0px; 1603 } 1604 .abt-left-img { 1935 } 1936 1937 .abt-left-img { 1605 1938 width: 19%; 1606 } 1607 .about-wrapper { 1939 } 1940 1941 .about-wrapper { 1608 1942 display: flex; 1609 1943 flex-wrap: inherit; … … 1611 1945 gap: 20px; 1612 1946 margin-bottom: 25px; 1613 } 1614 .abt-left-img img { 1947 } 1948 1949 .abt-left-img img { 1615 1950 width: 170px; 1616 1951 height: 100px; 1617 1952 object-fit: cover; 1618 } 1619 .about-single-box svg{ 1953 } 1954 1955 .about-single-box svg { 1620 1956 fill: var(--global-color); 1621 } 1622 .about-single-box { 1957 } 1958 1959 .about-single-box { 1623 1960 display: flex; 1624 1961 margin-bottom: 10px; 1625 1962 gap: 10px; 1626 } 1627 .about-box span.about-icon { 1963 } 1964 1965 .about-box span.about-icon { 1628 1966 padding: 14px 15px; 1629 1967 background: #0E1B48; 1630 1968 width: 50px; 1631 margin- right: 15px;1969 margin-left: 15px; 1632 1970 text-align: center; 1633 1971 height: 50px; 1634 1972 border-radius: 30px; 1635 } 1636 .about-box span.about-icon{ 1973 } 1974 1975 .about-box span.about-icon { 1637 1976 fill: #ffffff; 1638 } 1639 .list-heading-main h4.list-title:before { 1977 } 1978 1979 .list-heading-main h4.list-title:before { 1640 1980 height: 20px; 1641 1981 width: 12px; 1642 1982 content: ""; 1643 1983 background: #000; 1644 transform: rotateZ( 45deg);1984 transform: rotateZ(-45deg); 1645 1985 position: absolute; 1646 1986 bottom: 0px; 1647 1987 z-index: 2; 1648 left: 0px; 1649 } 1650 .list-heading-main h4.list-title:after { 1988 right: 0px; 1989 } 1990 1991 .list-heading-main h4.list-title:after { 1651 1992 height: 20px; 1652 1993 width: 12px; 1653 1994 content: ""; 1654 1995 background: var(--global-color); 1655 transform: rotateZ( 45deg);1996 transform: rotateZ(-45deg); 1656 1997 position: absolute; 1657 1998 bottom: 0px; 1658 1999 z-index: 2; 1659 2000 z-index: 1; 1660 left: 9px; 1661 } 1662 .list-heading-main h4.list-title { 2001 right: 9px; 2002 } 2003 2004 .list-heading-main h4.list-title { 1663 2005 color: var(--global-color); 1664 2006 font-weight: 700; 1665 2007 position: relative; 1666 padding- left: 45px;2008 padding-right: 45px; 1667 2009 font-size: 15px; 1668 2010 text-transform: uppercase; 1669 } 1670 .most-read-div h3.list-title { 2011 } 2012 2013 .most-read-div h3.list-title { 1671 2014 font-size: 22px; 1672 2015 font-weight: 500; 1673 2016 color: #000000; 1674 2017 margin-bottom: 8px; 1675 } 1676 .most-read{ 2018 } 2019 2020 .most-read { 1677 2021 margin-top: 50px; 1678 2022 margin-bottom: 50px; 1679 2023 position: relative; 1680 } 1681 .most-read-div { 2024 } 2025 2026 .most-read-div { 1682 2027 display: flex; 1683 } 1684 .blog-main-box { 2028 } 2029 2030 .blog-main-box { 1685 2031 width: 70%; 1686 padding-left: 55px; 1687 } 1688 .most-sidebar-box img { 2032 padding-right: 55px; 2033 } 2034 2035 .most-sidebar-box img { 1689 2036 position: relative; 1690 2037 height: 400px; … … 1692 2039 clip-path: polygon(32% 0, 100% 0, 100% 68%, 68% 100%, 0 100%, 0 32%); 1693 2040 object-fit: cover; 1694 } 1695 .blog-main-box p.list-content, .blog-main-box p.list-content1 { 2041 } 2042 2043 .blog-main-box p.list-content, 2044 .blog-main-box p.list-content1 { 1696 2045 font-size: 14px; 1697 2046 font-weight: 500; 1698 2047 color: #4E5054; 1699 } 1700 .blog-main-box h3.list-sub-title { 2048 } 2049 2050 .blog-main-box h3.list-sub-title { 1701 2051 font-size: 30px; 1702 2052 font-weight: 700; 1703 2053 color: #000000; 1704 } 1705 .most-sidebar-box { 2054 } 2055 2056 .most-sidebar-box { 1706 2057 width: 30%; 1707 2058 position: relative; 1708 2059 text-align: center; 1709 } 1710 .most-sidebar-box h4.list-title { 2060 } 2061 2062 .most-sidebar-box h4.list-title { 1711 2063 font-size: 13px; 1712 2064 font-weight: 700; … … 1719 2071 padding: 15px 30px; 1720 2072 border-radius: 12px; 1721 } 1722 .main-blog-box { 2073 } 2074 2075 .main-blog-box { 1723 2076 display: flex; 1724 2077 gap: 30px; 1725 } 1726 .blog-box ,.middle-blog-box{ 2078 } 2079 2080 .blog-box, 2081 .middle-blog-box { 1727 2082 width: 50%; 1728 } 1729 .blog-box .entry-thumbnail .featured-image { 2083 } 2084 2085 .blog-box .entry-thumbnail .featured-image { 1730 2086 height: 450px; 1731 2087 border-radius: 22px; 1732 } 1733 .blog-box .theme-article-post{ 2088 } 2089 2090 .blog-box .theme-article-post { 1734 2091 margin-bottom: 20px; 1735 2092 position: relative; 1736 } 1737 .blog-box .entry-thumbnail{ 2093 } 2094 2095 .blog-box .entry-thumbnail { 1738 2096 position: relative; 1739 } 1740 .blog-box .post-content { 2097 } 2098 2099 .blog-box .post-content { 1741 2100 position: absolute; 1742 2101 bottom: 0px; 1743 2102 width: 100%; 1744 2103 padding: 10px 25px; 1745 } 1746 .middle-blog-box .entry-thumbnail .featured-image { 2104 } 2105 2106 .middle-blog-box .entry-thumbnail .featured-image { 1747 2107 height: 80px; 1748 2108 border-radius: 12px; 1749 } 1750 .middle-blog-box .entry-thumbnail { 2109 } 2110 2111 .middle-blog-box .entry-thumbnail { 1751 2112 width: 25%; 1752 } 1753 .middle-blog-box .post-content { 2113 } 2114 2115 .middle-blog-box .post-content { 1754 2116 position: relative; 1755 2117 width: 75%; 1756 padding-left: 25px !important; 1757 } 1758 .middle-blog-box .theme-article-post { 2118 padding-right: 25px !important; 2119 } 2120 2121 .middle-blog-box .theme-article-post { 1759 2122 display: flex; 1760 2123 margin-bottom: 25px; 1761 2124 align-items: center; 1762 } 1763 .blog-box .entry-thumbnail .data-bg { 2125 } 2126 2127 .blog-box .entry-thumbnail .data-bg { 1764 2128 background-color: #000; 1765 } 1766 .blog-box .meta-box span { 2129 } 2130 2131 .blog-box .meta-box span { 1767 2132 color: #ffffff; 1768 2133 font-size: 14px; 1769 } 1770 .blog-box .meta-box span a{ 2134 } 2135 2136 .blog-box .meta-box span a { 1771 2137 color: #ffffff; 1772 } 1773 .blog-box .post-content h2 a { 2138 } 2139 2140 .blog-box .post-content h2 a { 1774 2141 color: #ffffff; 1775 2142 font-size: 17px; 1776 2143 font-weight: 600; 1777 } 1778 .blog-box .meta-box,.middle-blog-box .meta-box{ 2144 } 2145 2146 .blog-box .meta-box, 2147 .middle-blog-box .meta-box { 1779 2148 margin: 0px; 1780 } 1781 .blog-box .theme-article-post .entry-title{ 2149 } 2150 2151 .blog-box .theme-article-post .entry-title { 1782 2152 margin-bottom: 0px; 1783 } 1784 .middle-blog-box .post-content h2 a { 2153 } 2154 2155 .middle-blog-box .post-content h2 a { 1785 2156 color: #000000; 1786 2157 font-size: 17px; 1787 2158 font-weight: 500; 1788 } 1789 .most-sidebar-box .widget-area{ 2159 } 2160 2161 .most-sidebar-box .widget-area { 1790 2162 max-width: 100% !important; 1791 2163 border: none !important; 1792 } 1793 .most-sidebar-box h3.widget-title:before { 2164 } 2165 2166 .most-sidebar-box h3.widget-title:before { 1794 2167 content: ''; 1795 2168 border: 5px solid #fff; … … 1797 2170 height: 100%; 1798 2171 position: absolute; 2172 right: 0; 1799 2173 left: 0; 1800 right: 0;1801 2174 top: 0; 1802 2175 bottom: 0; 1803 2176 border-radius: 10px; 1804 } 1805 .most-sidebar-box h3.widget-title { 2177 } 2178 2179 .most-sidebar-box h3.widget-title { 1806 2180 background: #FF5722; 1807 2181 border-radius: 10px; … … 1814 2188 border: 1px solid #FF5722; 1815 2189 margin-bottom: 20px; 1816 } 1817 .most-sidebar-box .widget-area-wrapper .widget { 2190 } 2191 2192 .most-sidebar-box .widget-area-wrapper .widget { 1818 2193 border: 1px solid #A1A1A1; 1819 2194 padding: 15px; 1820 2195 border-radius: 10px; 1821 } 1822 .most-sidebar-box .widget-area-wrapper .widget:last-child{ 2196 } 2197 2198 .most-sidebar-box .widget-area-wrapper .widget:last-child { 1823 2199 border-bottom: 1px solid #A1A1A1; 1824 } 1825 .most-sidebar-box .widget-area-wrapper{ 2200 } 2201 2202 .most-sidebar-box .widget-area-wrapper { 1826 2203 padding-top: 0px; 1827 } 1828 .blog-box .meta-box ul.post-categories { 1829 padding:0px; 1830 } 1831 .blog-box .meta-box ul.post-categories li { 2204 } 2205 2206 .blog-box .meta-box ul.post-categories { 2207 padding: 0px; 2208 } 2209 2210 .blog-box .meta-box ul.post-categories li { 1832 2211 list-style: none; 1833 2212 display: inline; 1834 margin-right: 10px; 1835 } 1836 .blog-box span.middle-cat { 2213 margin-left: 10px; 2214 } 2215 2216 .blog-box span.middle-cat { 1837 2217 display: inline-flex; 1838 } 1839 .middle-blog-box .meta-box ul.post-categories { 1840 padding:0px; 1841 } 1842 .middle-blog-box .meta-box ul.post-categories li { 2218 } 2219 2220 .middle-blog-box .meta-box ul.post-categories { 2221 padding: 0px; 2222 } 2223 2224 .middle-blog-box .meta-box ul.post-categories li { 1843 2225 list-style: none; 1844 2226 display: inline; 1845 margin-right: 10px; 1846 } 1847 .middle-blog-box span.middle-cat { 2227 margin-left: 10px; 2228 } 2229 2230 .middle-blog-box span.middle-cat { 1848 2231 display: inline-flex; 1849 } 1850 1851 /*-------------------------------------------------------------- 1852 ## Sections Media 1853 --------------------------------------------------------------*/ 1854 @media only screen and (min-width: 320px) and (max-width: 767px) { 1855 .most-sidebar-box h3{ 1856 display: none; 2232 } 2233 2234 2235 /*-------------------------------------------------------------- 2236 ## Sections Media 2237 --------------------------------------------------------------*/ 2238 2239 @media only screen and (min-width: 320px) and (max-width: 767px) { 2240 .most-sidebar-box h3 { 2241 display: none; 1857 2242 } 1858 2243 .most-sidebar-box img { 1859 position: relative; 1860 height: 300px; 1861 } 1862 .slider-box:after,.image-main-box:after{ 1863 display: none; 2244 position: relative; 2245 height: 300px; 2246 } 2247 .slider-box:after, 2248 .image-main-box:after { 2249 display: none; 1864 2250 } 1865 2251 .banner-img { 1866 height: 182px;1867 clip-path: none;1868 width: 250px;1869 margin: 0 auto;2252 height: 182px; 2253 clip-path: none; 2254 width: 250px; 2255 margin: 0 auto; 1870 2256 } 1871 2257 .swiper-slide .post-content h2 a { 1872 font-size: 25px;2258 font-size: 25px; 1873 2259 } 1874 2260 .main-carousel-caption .post-content { 1875 right: 0; 1876 position: relative; 1877 left: 0; 1878 padding-bottom: 20px; 1879 } 1880 .slider-box,.slider-box:before{ 1881 height: 450px; 2261 left: 0; 2262 position: relative; 2263 right: 0; 2264 padding-bottom: 20px; 2265 } 2266 .slider-box, 2267 .slider-box:before { 2268 height: 450px; 1882 2269 } 1883 2270 .main-banner-box { 1884 position: absolute;1885 width: 100%;1886 z-index: 2;1887 top: 0px;2271 position: absolute; 2272 width: 100%; 2273 z-index: 2; 2274 top: 0px; 1888 2275 } 1889 2276 .most-sidebar-box { 1890 width: 100%;1891 display: block;1892 margin-bottom: 40px;1893 } 1894 .list-heading-main h4.list-title {1895 display: inline-block;2277 width: 100%; 2278 display: block; 2279 margin-bottom: 40px; 2280 } 2281 .list-heading-main h4.list-title { 2282 display: inline-block; 1896 2283 } 1897 2284 .blog-main-box h3.list-sub-title { 1898 font-size: 25px;1899 } 1900 .about-wrapper {1901 display: block;1902 } 1903 .abt-left-img {1904 width: 100%;1905 text-align: center;1906 margin-bottom: 20px;1907 } 1908 .about-btn {1909 text-align: center;1910 } 1911 .about-single-box {1912 justify-content: center;1913 } 1914 .abt-left-img img {1915 margin:0 auto;2285 font-size: 25px; 2286 } 2287 .about-wrapper { 2288 display: block; 2289 } 2290 .abt-left-img { 2291 width: 100%; 2292 text-align: center; 2293 margin-bottom: 20px; 2294 } 2295 .about-btn { 2296 text-align: center; 2297 } 2298 .about-single-box { 2299 justify-content: center; 2300 } 2301 .abt-left-img img { 2302 margin: 0 auto; 1916 2303 } 1917 2304 .most-read-div { 1918 align-items: center;2305 align-items: center; 1919 2306 } 1920 2307 .slider-main { 1921 display: flex; 1922 gap: 20px; 1923 margin: 0px 30px; 1924 } 1925 } 1926 @media screen and (min-width: 576px) and (max-width: 767px){ 1927 .slider-box, .slider-box:before{ 1928 height: 350px; 1929 } 1930 .list-heading-main{ 1931 text-align: center; 1932 } 1933 .most-sidebar-box{ 1934 width: 50%; 1935 } 1936 } 1937 @media screen and (min-width: 768px) and (max-width: 991px){ 2308 display: flex; 2309 gap: 20px; 2310 margin: 0px 30px; 2311 } 2312 } 2313 2314 @media screen and (min-width: 576px) and (max-width: 767px) { 2315 .slider-box, 2316 .slider-box:before { 2317 height: 350px; 2318 } 2319 .list-heading-main { 2320 text-align: center; 2321 } 2322 .most-sidebar-box { 2323 width: 50%; 2324 } 2325 } 2326 2327 @media screen and (min-width: 768px) and (max-width: 991px) { 1938 2328 .banner-img { 1939 height: 350px;1940 width: 400px;2329 height: 350px; 2330 width: 400px; 1941 2331 } 1942 2332 .theme-main-carousel .entry-content { 1943 display: none;2333 display: none; 1944 2334 } 1945 2335 .image-main-box:after { 1946 height: 189px;1947 clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0 98%, 0 52%);1948 width: 304px;2336 height: 189px; 2337 clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0 98%, 0 52%); 2338 width: 304px; 1949 2339 } 1950 2340 .main-carousel-caption .post-content { 1951 position: absolute;1952 right: 10%;1953 left: 9%;1954 top: 35px;1955 } 1956 .most-sidebar-box {1957 width: 40%;1958 } 1959 .most-sidebar-box h3 {1960 display: none;1961 } 1962 .blog-main-box {1963 width: 60%;2341 position: absolute; 2342 left: 10%; 2343 right: 9%; 2344 top: 35px; 2345 } 2346 .most-sidebar-box { 2347 width: 40%; 2348 } 2349 .most-sidebar-box h3 { 2350 display: none; 2351 } 2352 .blog-main-box { 2353 width: 60%; 1964 2354 } 1965 2355 .abt-left-img { 1966 width: 35%; 1967 } 1968 } 1969 @media screen and (min-width: 992px) and (max-width: 1199px){ 2356 width: 35%; 2357 } 2358 } 2359 2360 @media screen and (min-width: 992px) and (max-width: 1199px) { 1970 2361 .main-carousel-caption .post-content { 1971 left: 7%;2362 right: 7%; 1972 2363 } 1973 2364 .banner-img { 1974 height: 325px;1975 clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 58%);1976 width: 460px;2365 height: 325px; 2366 clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 58%); 2367 width: 460px; 1977 2368 } 1978 2369 .image-main-box:after { 1979 clip-path: polygon(35% 0%, 100% 0, 100% 100%, 0 100%, 0 28%); 1980 width: 380px; 1981 } 1982 } 1983 1984 @media only screen and (max-width: 1320px) { 1985 .most-sidebar-box h3{ 1986 display: none; 1987 } 1988 } 1989 1990 1991 /*-------------------------------------------------------------- 1992 ## Links 1993 --------------------------------------------------------------*/ 1994 a { 2370 clip-path: polygon(35% 0%, 100% 0, 100% 100%, 0 100%, 0 28%); 2371 width: 380px; 2372 } 2373 } 2374 2375 @media only screen and (max-width: 1320px) { 2376 .most-sidebar-box h3 { 2377 display: none; 2378 } 2379 } 2380 2381 2382 /*-------------------------------------------------------------- 2383 ## Links 2384 --------------------------------------------------------------*/ 2385 2386 a { 1995 2387 color: #000; 1996 2388 text-decoration: none; 1997 } 1998 a:hover, 1999 a:focus { 2389 } 2390 2391 a:hover, 2392 a:focus { 2000 2393 color: #2c4692; 2001 } 2002 a:hover, 2003 a:focus, 2004 a:active { 2394 } 2395 2396 a:hover, 2397 a:focus, 2398 a:active { 2005 2399 outline: none; 2006 } 2007 a:focus-visible { 2400 } 2401 2402 a:focus-visible { 2008 2403 outline: 2px solid; 2009 } 2010 #top-header a:focus-visible,#top-header .toggle-menu i:focus-visible { 2404 } 2405 2406 #top-header a:focus-visible, 2407 #top-header .toggle-menu i:focus-visible { 2011 2408 outline: 2px solid #ffffff !important; 2012 } 2013 .entry-content a:not(.more-link):not(.button):not(.wp-block-button__link), 2014 .entry-summary a:not(.more-link):not(.button), 2015 .widget_text a:not(.more-link):not(.button),.comment-content a,.theme-custom-block a { 2409 } 2410 2411 .entry-content a:not(.more-link):not(.button):not(.wp-block-button__link), 2412 .entry-summary a:not(.more-link):not(.button), 2413 .widget_text a:not(.more-link):not(.button), 2414 .comment-content a, 2415 .theme-custom-block a { 2016 2416 text-decoration: underline; 2017 } 2018 .entry-content p{ 2417 } 2418 2419 .entry-content p { 2019 2420 word-wrap: break-word; 2020 } 2021 .wp-block-button__link{ 2421 } 2422 2423 .wp-block-button__link { 2022 2424 border-radius: 30px; 2023 2425 margin-bottom: 15px; 2024 } 2025 /*-------------------------------------------------------------- 2026 ## Menus 2027 --------------------------------------------------------------*/ 2028 .site-navigation .current_page_item >a, .site-navigation .current-menu-item>a, .site-navigation .current_page_ancestor>a, .site-navigation .current-menu-ancestor>a { 2426 } 2427 2428 2429 /*-------------------------------------------------------------- 2430 ## Menus 2431 --------------------------------------------------------------*/ 2432 2433 .site-navigation .current_page_item >a, 2434 .site-navigation .current-menu-item>a, 2435 .site-navigation .current_page_ancestor>a, 2436 .site-navigation .current-menu-ancestor>a { 2029 2437 color: var(--global-color) !important; 2030 } 2031 ul.sub-menu .current_page_item >a{ 2032 color:#000 !important; 2033 } 2034 span.navbar-control-trigger{ 2438 } 2439 2440 ul.sub-menu .current_page_item >a { 2441 color: #000 !important; 2442 } 2443 2444 span.navbar-control-trigger { 2035 2445 color: #000000; 2036 } 2037 button.navbar-control.navbar-control-offcanvas{ 2446 } 2447 2448 button.navbar-control.navbar-control-offcanvas { 2038 2449 margin-bottom: 10px; 2039 2450 margin-top: 10px; 2040 } 2041 .single-post .header-layout { 2451 } 2452 2453 .single-post .header-layout { 2042 2454 border-bottom: 1px solid #efece2; 2043 } 2044 .site-navigation .primary-menu { 2455 } 2456 2457 .site-navigation .primary-menu { 2045 2458 display: flex; 2046 2459 flex-wrap: wrap; … … 2048 2461 margin: 0 auto; 2049 2462 padding: 0; 2050 justify-content: left; 2051 } 2052 .site-navigation .primary-menu .brand-home { 2463 justify-content: right; 2464 } 2465 2466 .site-navigation .primary-menu .brand-home { 2053 2467 color: #fff; 2054 } 2055 .site-navigation .primary-menu .brand-home a { 2468 } 2469 2470 .site-navigation .primary-menu .brand-home a { 2056 2471 color: inherit; 2057 2472 font-size: 1px; 2058 2473 line-height: 1px; 2059 } 2060 .site-navigation .primary-menu { 2474 } 2475 2476 .site-navigation .primary-menu { 2061 2477 display: flex; 2062 2478 flex-wrap: wrap; … … 2064 2480 margin: 0 auto; 2065 2481 padding: 0; 2066 } 2067 .theme-menu, 2068 .theme-menu ul { 2482 } 2483 2484 .theme-menu, 2485 .theme-menu ul { 2069 2486 list-style: none; 2070 2487 margin: 0; 2071 2488 padding: 0; 2072 } 2073 .theme-menu a, 2074 .responsive-content-menu a { 2489 } 2490 2491 .theme-menu a, 2492 .responsive-content-menu a { 2075 2493 color: inherit; 2076 } 2077 .site-navigation .primary-menu .icon { 2494 } 2495 2496 .site-navigation .primary-menu .icon { 2078 2497 pointer-events: none; 2498 margin-right: 5px; 2499 } 2500 2501 .rtl .site-navigation .primary-menu .icon { 2502 margin-right: 0; 2079 2503 margin-left: 5px; 2080 } 2081 .rtl .site-navigation .primary-menu .icon { 2082 margin-left: 0; 2083 margin-right: 5px; 2084 } 2085 .site-navigation .primary-menu .icon .svg-icon { 2504 } 2505 2506 .site-navigation .primary-menu .icon .svg-icon { 2086 2507 height: 1rem; 2087 2508 width: 1rem; 2088 } 2089 .site-navigation .primary-menu > li { 2509 } 2510 2511 .site-navigation .primary-menu > li { 2090 2512 margin: 0 1rem; 2091 2513 padding: 1.5rem 0; 2092 } 2093 .header-layout .site-navigation .primary-menu > li:last-child { 2514 } 2515 2516 .header-layout .site-navigation .primary-menu > li:last-child { 2517 margin-left: 0; 2518 } 2519 2520 .rtl .header-layout .site-navigation .primary-menu > li:last-child { 2521 margin-left: 1rem; 2094 2522 margin-right: 0; 2095 } 2096 .rtl .header-layout .site-navigation .primary-menu > li:last-child { 2097 margin-right: 1rem; 2098 margin-left: 0; 2099 } 2100 .site-navigation .primary-menu > li > a,.link-icon-wrapper a { 2523 } 2524 2525 .site-navigation .primary-menu > li > a, 2526 .link-icon-wrapper a { 2101 2527 line-height: 1; 2102 2528 font-size: 14px; 2103 2529 font-weight: 500; 2104 2530 position: relative; 2105 } 2106 .link-icon-wrapper svg.svg-icon { 2531 } 2532 2533 .link-icon-wrapper svg.svg-icon { 2107 2534 width: 15px; 2108 2535 top: 3px; 2109 2536 height: 15px; 2110 margin- left: 0px;2537 margin-right: 0px; 2111 2538 position: relative; 2112 } 2113 .site-navigation .primary-menu > li:hover > a::before, 2114 .site-navigation .primary-menu > li:focus > a::before { 2539 } 2540 2541 .site-navigation .primary-menu > li:hover > a::before, 2542 .site-navigation .primary-menu > li:focus > a::before { 2115 2543 width: 100%; 2116 left: 0; 2117 } 2118 .site-navigation .primary-menu > li.active > a::before { 2544 right: 0; 2545 } 2546 2547 .site-navigation .primary-menu > li.active > a::before { 2119 2548 width: 100%; 2120 left: 0; 2121 } 2122 .site-navigation .primary-menu > li:not(.megamenu-has-children), 2123 .site-navigation .primary-menu > li:not(.megamenu-has-children) .dropdown-menu li { 2549 right: 0; 2550 } 2551 2552 .site-navigation .primary-menu > li:not(.megamenu-has-children), 2553 .site-navigation .primary-menu > li:not(.megamenu-has-children) .dropdown-menu li { 2124 2554 position: relative; 2125 } 2126 .site-navigation .primary-menu a { 2555 } 2556 2557 .site-navigation .primary-menu a { 2127 2558 display: inline-block; 2128 2559 text-decoration: none; 2129 2560 word-break: normal; 2130 2561 word-wrap: normal; 2131 } 2132 .site-navigation .primary-menu > li a { 2562 } 2563 2564 .site-navigation .primary-menu > li a { 2133 2565 color: #000000; 2134 2566 font-size: 14px; 2135 2567 font-weight: 500; 2136 } 2137 /* SUB MENU */ 2138 .site-navigation .primary-menu ul { 2568 } 2569 2570 2571 /* SUB MENU */ 2572 2573 .site-navigation .primary-menu ul { 2139 2574 background: var(--global-color); 2140 2575 color: #fff; … … 2143 2578 margin: 0 auto; 2144 2579 position: absolute; 2145 left: -99999rem;2580 right: -99999rem; 2146 2581 top: 100%; 2147 transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;2582 transition: opacity 0.15s linear, transform 0.15s linear, left 0s 0.15s; 2148 2583 transform: translateY(0.6rem); 2149 2584 width: 30rem; 2150 2585 z-index: 9999; 2151 } 2152 .site-navigation .primary-menu li.menu-item-has-children:hover > ul, 2153 .site-navigation .primary-menu li.menu-item-has-children:focus > ul, 2154 .site-navigation .primary-menu li.page_item_has_children:hover > ul, 2155 .site-navigation .primary-menu li.page_item_has_children:focus > ul { 2156 left: 0; 2586 } 2587 2588 .site-navigation .primary-menu li.menu-item-has-children:hover > ul, 2589 .site-navigation .primary-menu li.menu-item-has-children:focus > ul, 2590 .site-navigation .primary-menu li.page_item_has_children:hover > ul, 2591 .site-navigation .primary-menu li.page_item_has_children:focus > ul { 2592 right: 0; 2157 2593 opacity: 1; 2158 2594 transform: translateY(0); 2159 2595 transition: opacity 0.15s linear, transform 0.15s linear; 2160 } 2161 .site-navigation .primary-menu li.menu-item-has-children:focus-within > ul, 2162 .site-navigation .primary-menu li.page_item_has_children:focus-within > ul { 2163 left: 0; 2596 } 2597 2598 .site-navigation .primary-menu li.menu-item-has-children:focus-within > ul, 2599 .site-navigation .primary-menu li.page_item_has_children:focus-within > ul { 2600 right: 0; 2164 2601 opacity: 1; 2165 2602 transform: translateY(0); 2166 2603 transition: opacity 0.15s linear, transform 0.15s linear; 2167 } 2168 .site-navigation .primary-menu ul::after { 2604 } 2605 2606 .site-navigation .primary-menu ul::after { 2169 2607 content: ""; 2170 2608 display: block; 2171 2609 position: absolute; 2172 2610 bottom: 100%; 2173 } 2174 .site-navigation .primary-menu ul::before { 2611 } 2612 2613 .site-navigation .primary-menu ul::before { 2175 2614 height: 2rem; 2615 right: 0; 2176 2616 left: 0; 2177 right: 0;2178 } 2179 .site-navigation .primary-menu ul a {2617 } 2618 2619 .site-navigation .primary-menu ul a { 2180 2620 background: transparent; 2181 2621 border: none; … … 2184 2624 transition: background-color 0.15s linear; 2185 2625 width: 90%; 2186 } 2187 .site-navigation .primary-menu ul li.menu-item-has-children > a { 2188 padding-right: 3rem; 2189 } 2190 .site-navigation .primary-menu ul li.menu-item-has-children .icon { 2626 } 2627 2628 .site-navigation .primary-menu ul li.menu-item-has-children > a { 2629 padding-left: 3rem; 2630 } 2631 2632 .site-navigation .primary-menu ul li.menu-item-has-children .icon { 2191 2633 position: absolute; 2192 right: 1.5rem;2634 left: 1.5rem; 2193 2635 top: calc(50% - 0.5rem); 2194 } 2195 /* DEEP DOWN */ 2196 .site-navigation .primary-menu ul ul { 2636 } 2637 2638 2639 /* DEEP DOWN */ 2640 2641 .site-navigation .primary-menu ul ul { 2197 2642 top: 0; 2198 } 2199 .site-navigation .primary-menu ul li.menu-item-has-children:hover > ul, 2200 .site-navigation .primary-menu ul li.menu-item-has-children:focus > ul, 2201 .site-navigation .primary-menu ul li.page_item_has_children:hover > ul, 2202 .site-navigation .primary-menu ul li.page_item_has_children:focus > ul { 2203 left: calc(100% + 2rem); 2204 } 2205 .site-navigation .primary-menu ul li.menu-item-has-children:focus-within > ul, 2206 .site-navigation .primary-menu ul li.page_item_has_children:focus-within > ul { 2207 left: calc(100% + 2rem); 2208 } 2209 .site-navigation .primary-menu ul ul::before { 2643 } 2644 2645 .site-navigation .primary-menu ul li.menu-item-has-children:hover > ul, 2646 .site-navigation .primary-menu ul li.menu-item-has-children:focus > ul, 2647 .site-navigation .primary-menu ul li.page_item_has_children:hover > ul, 2648 .site-navigation .primary-menu ul li.page_item_has_children:focus > ul { 2649 right: calc(100% + 2rem); 2650 } 2651 2652 .site-navigation .primary-menu ul li.menu-item-has-children:focus-within > ul, 2653 .site-navigation .primary-menu ul li.page_item_has_children:focus-within > ul { 2654 right: calc(100% + 2rem); 2655 } 2656 2657 .site-navigation .primary-menu ul ul::before { 2210 2658 position: absolute; 2211 2659 content: ''; 2212 2660 bottom: 0; 2213 2661 height: 5.6rem; 2214 right: auto;2215 left: -2rem;2662 left: auto; 2663 right: -2rem; 2216 2664 top: 0; 2217 2665 width: 2rem; 2218 } 2219 .site-navigation .primary-menu ul ul::after { 2666 } 2667 2668 .site-navigation .primary-menu ul ul::after { 2220 2669 border: 0.8rem solid transparent; 2221 2670 border-bottom-color: transparent; 2222 border- right-color: #000;2671 border-left-color: #000; 2223 2672 bottom: auto; 2224 left: -1.6rem;2673 right: -1.6rem; 2225 2674 top: 2rem; 2226 } 2227 .rtl .site-navigation .primary-menu ul ul::after { 2228 transform: rotate(180deg); 2229 } 2230 /* 2231 * Enable nav submenu expansion with tapping on arrows on large-viewport 2232 * touch interfaces (e.g. tablets or laptops with touch screens). 2233 * These rules are supported by all browsers (>IE11) and when JS is disabled. 2234 */ 2235 @media (any-pointer: coarse) { 2675 } 2676 2677 .rtl .site-navigation .primary-menu ul ul::after { 2678 transform: rotate(-180deg); 2679 } 2680 2681 2682 /* 2683 * Enable nav submenu expansion with tapping on arrows on large-viewport 2684 * touch interfaces (e.g. tablets or laptops with touch screens). 2685 * These rules are supported by all browsers (>IE11) and when JS is disabled. 2686 */ 2687 2688 @media (any-pointer: coarse) { 2236 2689 .site-navigation .primary-menu > li.menu-item-has-children > a { 2237 padding-right: 0;2238 margin-right: 2rem;2690 padding-left: 0; 2691 margin-left: 2rem; 2239 2692 } 2240 2693 .site-navigation .primary-menu ul li.menu-item-has-children > a { 2241 margin-right: 4.5rem; 2242 padding-right: 0; 2243 width: unset; 2244 } 2245 } 2246 /* Repeat previous rules for IE11 (when JS enabled for polyfill). */ 2247 body.touch-enabled .primary-menu > li.menu-item-has-children > a { 2248 padding-right: 0; 2249 margin-right: 2rem; 2250 } 2251 body.touch-enabled .primary-menu ul li.menu-item-has-children > a { 2252 margin-right: 4.5rem; 2253 padding-right: 0; 2694 margin-left: 4.5rem; 2695 padding-left: 0; 2696 width: unset; 2697 } 2698 } 2699 2700 2701 /* Repeat previous rules for IE11 (when JS enabled for polyfill). */ 2702 2703 body.touch-enabled .primary-menu > li.menu-item-has-children > a { 2704 padding-left: 0; 2705 margin-left: 2rem; 2706 } 2707 2708 body.touch-enabled .primary-menu ul li.menu-item-has-children > a { 2709 margin-left: 4.5rem; 2710 padding-left: 0; 2254 2711 width: unset; 2255 } 2256 @media screen and (max-width: 991px) { 2712 } 2713 2714 @media screen and (max-width: 991px) { 2257 2715 .site-navigation .primary-menu-wrapper { 2258 display: none; 2259 opacity: 0; 2260 visibility: hidden; 2261 } 2262 .wrapper, .wrapper-fluid { 2263 width: auto !important; 2264 margin-right: 15px !important; 2265 margin-left: 15px !important; 2266 } 2267 } 2268 .menu-description { 2716 display: none; 2717 opacity: 0; 2718 visibility: hidden; 2719 } 2720 .wrapper, 2721 .wrapper-fluid { 2722 width: auto !important; 2723 margin-left: 15px !important; 2724 margin-right: 15px !important; 2725 } 2726 } 2727 2728 .menu-description { 2269 2729 background-color: #000; 2270 2730 color: #fff; … … 2274 2734 position: absolute; 2275 2735 top: -20px; 2276 left: calc(100% - 20px);2736 right: calc(100% - 20px); 2277 2737 padding: 2px 5px; 2278 2738 line-height: 10px; 2279 2739 white-space: nowrap; 2280 2740 z-index: 1; 2281 } 2282 .menu-description:after { 2741 } 2742 2743 .menu-description:after { 2283 2744 position: absolute; 2284 2745 content: ''; 2285 2746 width: 0; 2286 2747 height: 0; 2287 border- left: 0px solid transparent;2288 border- right: 5px solid transparent;2748 border-right: 0px solid transparent; 2749 border-left: 5px solid transparent; 2289 2750 border-top: 5px solid; 2290 2751 border-top-color: #000; 2291 left: 3px;2752 right: 3px; 2292 2753 bottom: -4px; 2293 } 2294 .navbar-control-offcanvas { 2754 } 2755 2756 .navbar-control-offcanvas { 2295 2757 display: none; 2296 2758 opacity: 0; 2297 2759 visibility: hidden; 2298 } 2299 @media (max-width: 991px) { 2760 } 2761 2762 @media (max-width: 991px) { 2300 2763 .navbar-control-offcanvas { 2301 display: block;2302 opacity: 1;2303 visibility: visible;2764 display: block; 2765 opacity: 1; 2766 visibility: visible; 2304 2767 } 2305 2768 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle .svg-icon { 2306 height: 1.9rem !important; 2307 } 2308 } 2309 #offcanvas-menu { 2769 height: 1.9rem !important; 2770 } 2771 } 2772 2773 #offcanvas-menu { 2310 2774 background: rgba(0, 0, 0, 0.42); 2311 2775 position: fixed; 2312 2776 top: 0; 2313 2777 height: 100%; 2314 right: -100%;2778 left: -100%; 2315 2779 width: 100%; 2316 2780 z-index: 1000; 2317 2781 justify-content: flex-end; 2318 -webkit-transition: right 0.5s; 2319 -moz-transition: right 0.5s; 2320 -ms-transition: right 0.5s; 2321 -o-transition: right 0.5s; 2322 transition: right 0.5s; 2323 } 2324 #offcanvas-menu .offcanvas-wraper { 2782 -webkit-transition: left 0.5s; 2783 -moz-transition: left 0.5s; 2784 -ms-transition: left 0.5s; 2785 -o-transition: left 0.5s; 2786 transition: left 0.5s; 2787 } 2788 2789 #offcanvas-menu .offcanvas-wraper { 2325 2790 height: 100%; 2326 2791 padding: 20px 100px; … … 2332 2797 -ms-overflow-style: none; 2333 2798 box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .1); 2334 } 2335 #offcanvas-menu .offcanvas-wraper::-webkit-scrollbar { 2799 } 2800 2801 #offcanvas-menu .offcanvas-wraper::-webkit-scrollbar { 2336 2802 width: 0; 2337 2803 height: 0; 2338 } 2339 @media screen and (max-width: 991px) { 2804 } 2805 2806 @media screen and (max-width: 991px) { 2340 2807 #offcanvas-menu .offcanvas-wraper { 2341 -ms-flex: 0 0 80%; 2342 flex: 0 0 80%; 2343 max-width: 80%; 2344 padding: 20px; 2345 } 2346 } 2347 @media screen and (max-width: 767px) { 2808 -ms-flex: 0 0 80%; 2809 flex: 0 0 80%; 2810 max-width: 80%; 2811 padding: 20px; 2812 } 2813 } 2814 2815 @media screen and (max-width: 767px) { 2348 2816 #offcanvas-menu .offcanvas-wraper { 2349 -ms-flex: 0 0 100%; 2350 flex: 0 0 100%; 2351 max-width: 100%; 2352 } 2353 } 2354 #offcanvas-menu .close-offcanvas-menu { 2355 text-align: right; 2817 -ms-flex: 0 0 100%; 2818 flex: 0 0 100%; 2819 max-width: 100%; 2820 } 2821 } 2822 2823 #offcanvas-menu .close-offcanvas-menu { 2824 text-align: left; 2356 2825 cursor: pointer; 2357 } 2358 #offcanvas-menu .close-offcanvas-menu .offcanvas-close { 2826 } 2827 2828 #offcanvas-menu .close-offcanvas-menu .offcanvas-close { 2359 2829 font-size: 14px; 2360 2830 font-weight: 700; … … 2363 2833 display: flex; 2364 2834 justify-content: space-between; 2365 } 2366 .admin-bar #offcanvas-menu .close-offcanvas-menu .offcanvas-close { 2835 } 2836 2837 .admin-bar #offcanvas-menu .close-offcanvas-menu .offcanvas-close { 2367 2838 margin-top: 40px; 2368 } 2369 .responsive-date-clock .responsive-content-date, 2370 .responsive-date-clock .theme-topbar-clock { 2371 text-align: left; 2372 } 2373 .responsive-date-clock .theme-topbar-icon, 2374 .responsive-date-clock .theme-topbar-label { 2839 } 2840 2841 .responsive-date-clock .responsive-content-date, 2842 .responsive-date-clock .theme-topbar-clock { 2843 text-align: right; 2844 } 2845 2846 .responsive-date-clock .theme-topbar-icon, 2847 .responsive-date-clock .theme-topbar-label { 2375 2848 display: inline-block; 2376 2849 vertical-align: middle; 2377 } 2378 .offcanvas-wraper > * { 2379 -webkit-transform: translateX(30px); 2380 -ms-transform: translateX(30px); 2381 transform: translateX(30px); 2850 } 2851 2852 .offcanvas-wraper > * { 2853 -webkit-transform: translateX(-30px); 2854 -ms-transform: translateX(-30px); 2855 transform: translateX(-30px); 2382 2856 opacity: 0; 2383 2857 transition: transform 0.4s ease-out, opacity 0.4s ease-out; 2384 2858 will-change: transform, opacity; 2385 } 2386 .offcanvas-menu-active .offcanvas-wraper > * { 2859 } 2860 2861 .offcanvas-menu-active .offcanvas-wraper > * { 2387 2862 -webkit-transform: translateX(0); 2388 2863 -ms-transform: translateX(0); 2389 2864 transform: translateX(0); 2390 2865 opacity: 1; 2391 } 2392 .offcanvas-menu-active .offcanvas-wraper .offcanvas-branding { 2866 } 2867 2868 .offcanvas-menu-active .offcanvas-wraper .offcanvas-branding { 2393 2869 transition-delay: 0.3s; 2394 } 2395 .offcanvas-menu-active .offcanvas-wraper .offcanvas-main-navigation { 2870 } 2871 2872 .offcanvas-menu-active .offcanvas-wraper .offcanvas-main-navigation { 2396 2873 transition-delay: 0.6s; 2397 } 2398 .offcanvas-menu-active .offcanvas-wraper .offcanvas-social-navigation { 2874 } 2875 2876 .offcanvas-menu-active .offcanvas-wraper .offcanvas-social-navigation { 2399 2877 transition-delay: 0.9s; 2400 } 2401 #offcanvas-menu.offcanvas-menu-active { 2878 } 2879 2880 #offcanvas-menu.offcanvas-menu-active { 2402 2881 display: -ms-flexbox; 2403 2882 display: flex; 2404 right: 0; 2405 } 2406 .offcanvas-main-navigation { 2883 left: 0; 2884 } 2885 2886 .offcanvas-main-navigation { 2407 2887 width: 100%; 2408 } 2409 .offcanvas-item { 2888 } 2889 2890 .offcanvas-item { 2410 2891 margin-bottom: 15px; 2411 } 2412 .offcanvas-main-navigation li, 2413 .responsive-content-menu li { 2892 } 2893 2894 .offcanvas-main-navigation li, 2895 .responsive-content-menu li { 2414 2896 border-bottom: 1px solid; 2415 2897 position: relative; 2416 } 2417 .offcanvas-main-navigation li:last-child, 2418 .responsive-content-menu li:last-child { 2898 } 2899 2900 .offcanvas-main-navigation li:last-child, 2901 .responsive-content-menu li:last-child { 2419 2902 border-bottom: none; 2420 } 2421 .offcanvas-main-navigation a, 2422 .responsive-content-menu a { 2903 } 2904 2905 .offcanvas-main-navigation a, 2906 .responsive-content-menu a { 2423 2907 display: block; 2424 2908 font-size: 18px; … … 2427 2911 position: relative; 2428 2912 width: 100%; 2429 } 2430 .offcanvas-main-navigation .sub-menu { 2913 } 2914 2915 .offcanvas-main-navigation .sub-menu { 2431 2916 border-top: 1px solid; 2432 2917 display: none; … … 2434 2919 margin: 0 auto; 2435 2920 padding: 0; 2436 } 2437 .offcanvas-main-navigation .sub-menu.submenu-toggle-active { 2921 } 2922 2923 .offcanvas-main-navigation .sub-menu.submenu-toggle-active { 2438 2924 display: block; 2439 } 2440 .offcanvas-main-navigation .submenu-wrapper { 2925 } 2926 2927 .offcanvas-main-navigation .submenu-wrapper { 2441 2928 display: flex; 2442 2929 justify-content: space-between; 2443 2930 width: 100%; 2444 } 2445 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle { 2931 } 2932 2933 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle { 2446 2934 border-style: solid; 2447 border-width: 0 0 0 1px; 2935 border-width: 0 1px 0 0; 2936 padding-right: 3rem; 2448 2937 padding-left: 3rem; 2449 padding-right: 3rem;2450 } 2451 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle .svg-icon {2938 } 2939 2940 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle .svg-icon { 2452 2941 height: .9rem; 2453 2942 transition: transform .15s linear; 2454 2943 width: 1.8rem; 2455 } 2456 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle.button-toggle-active .svg-icon { 2457 transform: rotate(180deg); 2458 } 2459 .social-menu ul { 2944 } 2945 2946 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle.button-toggle-active .svg-icon { 2947 transform: rotate(-180deg); 2948 } 2949 2950 .social-menu ul { 2460 2951 list-style: none; 2461 2952 margin: 0 auto; 2462 2953 padding: 0; 2463 } 2464 .social-menu li { 2954 } 2955 2956 .social-menu li { 2465 2957 display: inline-block; 2466 2958 line-height: 1; 2467 2959 vertical-align: middle; 2468 } 2469 .social-menu li a .svg-icon { 2470 margin-left: 0.2rem; 2960 } 2961 2962 .social-menu li a .svg-icon { 2963 margin-right: 0.2rem; 2471 2964 width: 1.6rem; 2472 2965 height: 1.6rem; 2473 } 2474 .social-menu ul li a[href*="youtube.com"] .svg-icon { 2966 } 2967 2968 .social-menu ul li a[href*="youtube.com"] .svg-icon { 2475 2969 width: 1.9rem; 2476 2970 height: 1.9rem; 2477 } 2478 /*-------------------------------------------------------------- 2479 # Accessibility 2480 --------------------------------------------------------------*/ 2481 .screen-reader-text { 2971 } 2972 2973 2974 /*-------------------------------------------------------------- 2975 # Accessibility 2976 --------------------------------------------------------------*/ 2977 2978 .screen-reader-text { 2482 2979 border: 0; 2483 2980 clip: rect(1px, 1px, 1px, 1px); … … 2490 2987 width: 1px; 2491 2988 word-wrap: normal !important; 2492 } 2493 .screen-reader-text:focus { 2989 } 2990 2991 .screen-reader-text:focus { 2494 2992 background-color: #f1f1f1; 2495 2993 border-radius: 3px; … … 2503 3001 font-weight: bold; 2504 3002 height: auto; 2505 left: 5px;3003 right: 5px; 2506 3004 line-height: normal; 2507 3005 padding: 15px 23px 14px; … … 2510 3008 width: auto; 2511 3009 z-index: 100000; 2512 } 2513 .skip-link { 3010 } 3011 3012 .skip-link { 2514 3013 font-size: 16px !important; 2515 } 2516 #content[tabindex="-1"]:focus { 3014 } 3015 3016 #content[tabindex="-1"]:focus { 2517 3017 outline: 0; 2518 } 2519 @media (prefers-reduced-motion: reduce) { 3018 } 3019 3020 @media (prefers-reduced-motion: reduce) { 2520 3021 * { 2521 animation-duration: 0s !important; 2522 transition-duration: 0s !important; 2523 } 2524 } 2525 /*-------------------------------------------------------------- 2526 # Alignments 2527 --------------------------------------------------------------*/ 2528 .alignleft { 3022 animation-duration: 0s !important; 3023 transition-duration: 0s !important; 3024 } 3025 } 3026 3027 3028 /*-------------------------------------------------------------- 3029 # Alignments 3030 --------------------------------------------------------------*/ 3031 3032 .alignleft { 3033 display: inline; 3034 float: right; 3035 margin-left: 1.5em; 3036 } 3037 3038 .alignright { 2529 3039 display: inline; 2530 3040 float: left; 2531 3041 margin-right: 1.5em; 2532 } 2533 .alignright { 2534 display: inline; 2535 float: right; 2536 margin-left: 1.5em; 2537 } 2538 .aligncenter { 3042 } 3043 3044 .aligncenter { 2539 3045 clear: both; 2540 3046 display: block; 3047 margin-right: auto; 2541 3048 margin-left: auto; 2542 margin-right: auto; 2543 } 2544 /*-------------------------------------------------------------- 2545 # Clearings 2546 --------------------------------------------------------------*/ 2547 .clear:before, 2548 .clear:after, 2549 .entry-content:before, 2550 .entry-content:after, 2551 .comment-content:before, 2552 .comment-content:after, 2553 .site-header:before, 2554 .site-header:after, 2555 .site-content:before, 2556 .site-content:after, 2557 .widget:before, 2558 .widget:after, 2559 .site-footer:before, 2560 .site-footer:after { 3049 } 3050 3051 3052 /*-------------------------------------------------------------- 3053 # Clearings 3054 --------------------------------------------------------------*/ 3055 3056 .clear:before, 3057 .clear:after, 3058 .entry-content:before, 3059 .entry-content:after, 3060 .comment-content:before, 3061 .comment-content:after, 3062 .site-header:before, 3063 .site-header:after, 3064 .site-content:before, 3065 .site-content:after, 3066 .widget:before, 3067 .widget:after, 3068 .site-footer:before, 3069 .site-footer:after { 2561 3070 content: ""; 2562 3071 display: table; 2563 3072 table-layout: fixed; 2564 } 2565 .clear:after, 2566 .entry-content:after, 2567 .comment-content:after, 2568 .site-header:after, 2569 .site-content:after, 2570 .widget:after, 2571 .site-footer:after { 3073 } 3074 3075 .clear:after, 3076 .entry-content:after, 3077 .comment-content:after, 3078 .site-header:after, 3079 .site-content:after, 3080 .widget:after, 3081 .site-footer:after { 2572 3082 clear: both; 2573 } 2574 /*-------------------------------------------------------------- 2575 # Widgets 2576 --------------------------------------------------------------*/ 2577 .widget { 3083 } 3084 3085 3086 /*-------------------------------------------------------------- 3087 # Widgets 3088 --------------------------------------------------------------*/ 3089 3090 .widget { 2578 3091 margin: 0 0 3rem; 2579 3092 padding-bottom: 3rem; 2580 } 2581 .widget:last-child { 3093 } 3094 3095 .widget:last-child { 2582 3096 margin: 0; 2583 } 2584 .widget select { 3097 } 3098 3099 .widget select { 2585 3100 max-width: 100%; 2586 } 2587 .widget ul, 2588 .widget ol { 3101 } 3102 3103 .widget ul, 3104 .widget ol { 3105 padding-right: 0; 2589 3106 padding-left: 0; 2590 padding-right: 0;2591 3107 list-style: none; 2592 3108 margin-bottom: 0; 2593 } 2594 .widget .button { 3109 } 3110 3111 .widget .button { 2595 3112 padding-top: 0.5rem; 2596 3113 padding-bottom: 0.5rem; 2597 } 2598 /*-------------------------------------------------------------- 2599 ## Widgets 2600 --------------------------------------------------------------*/ 2601 .widget a { 3114 } 3115 3116 3117 /*-------------------------------------------------------------- 3118 ## Widgets 3119 --------------------------------------------------------------*/ 3120 3121 .widget a { 2602 3122 color: inherit; 2603 } 2604 .widget a:hover, 2605 .widget a:focus { 3123 } 3124 3125 .widget a:hover, 3126 .widget a:focus { 2606 3127 color: #2568ef; 2607 } 2608 .widget_nav_menu a { 3128 } 3129 3130 .widget_nav_menu a { 2609 3131 display: block; 2610 3132 padding: 1rem 0; 2611 } 2612 .widget_nav_menu .menu > .menu-item:not(:first-child) { 3133 } 3134 3135 .widget_nav_menu .menu > .menu-item:not(:first-child) { 2613 3136 border-top: 1px #e9ecef solid; 2614 } 2615 .widget_nav_menu .menu-item-has-children { 3137 } 3138 3139 .widget_nav_menu .menu-item-has-children { 2616 3140 display: -webkit-box; 2617 3141 display: -ms-flexbox; … … 2626 3150 justify-content: space-between; 2627 3151 width: 100%; 2628 } 2629 .widget_nav_menu .menu-item-has-children > a { 3152 } 3153 3154 .widget_nav_menu .menu-item-has-children > a { 2630 3155 -webkit-box-ordinal-group: 2; 2631 3156 -ms-flex-order: 1; 2632 3157 order: 1; 2633 } 2634 .widget_nav_menu .menu-item-has-children > span { 3158 } 3159 3160 .widget_nav_menu .menu-item-has-children > span { 2635 3161 cursor: pointer; 2636 3162 -webkit-box-ordinal-group: 3; 2637 3163 -ms-flex-order: 2; 2638 3164 order: 2; 2639 } 2640 .widget_nav_menu .menu-item-has-children > ul { 3165 } 3166 3167 .widget_nav_menu .menu-item-has-children > ul { 2641 3168 width: 100%; 2642 3169 -webkit-box-ordinal-group: 4; 2643 3170 -ms-flex-order: 3; 2644 3171 order: 3; 2645 } 2646 .widget_nav_menu .menu-item-expanded > span:after { 3172 } 3173 3174 .widget_nav_menu .menu-item-expanded > span:after { 2647 3175 content: "\e90f"; 2648 } 2649 .widget_nav_menu .menu > .menu-item > .sub-menu { 3176 } 3177 3178 .widget_nav_menu .menu > .menu-item > .sub-menu { 2650 3179 padding-bottom: 1rem; 2651 } 2652 .widget_nav_menu .sub-menu { 3180 } 3181 3182 .widget_nav_menu .sub-menu { 2653 3183 display: none; 2654 } 2655 .widget_nav_menu .sub-menu a { 3184 } 3185 3186 .widget_nav_menu .sub-menu a { 2656 3187 padding: 0.5rem 0; 2657 3188 line-height: 1; 2658 } 2659 .widget_nav_menu .sub-menu .sub-menu { 3189 } 3190 3191 .widget_nav_menu .sub-menu .sub-menu { 2660 3192 padding: 0.5rem 0; 2661 } 2662 .widget_nav_menu .sub-menu .sub-menu a { 2663 padding-left: 1rem; 2664 } 2665 .widget_nav_menu .submenu-visible { 3193 } 3194 3195 .widget_nav_menu .sub-menu .sub-menu a { 3196 padding-right: 1rem; 3197 } 3198 3199 .widget_nav_menu .submenu-visible { 2666 3200 display: block; 2667 } 2668 .search-form { 3201 } 3202 3203 .search-form { 2669 3204 margin: 0 auto; 2670 } 2671 .search-form label { 3205 } 3206 3207 .search-form label { 2672 3208 display: block; 2673 3209 margin: 0 auto; 2674 3210 width: 80%; 2675 float: left; 2676 } 2677 .search-form label .search-field { 2678 border-right: 0; 2679 } 2680 .search-form .search-submit { 2681 float: left; 3211 float: right; 3212 } 3213 3214 .search-form label .search-field { 3215 border-left: 0; 3216 } 3217 3218 .search-form .search-submit { 3219 float: right; 2682 3220 width: 20%; 2683 3221 -webkit-appearance: none; 2684 3222 padding: 24px 0; 2685 } 2686 .header-searchbar-area .search-form .search-submit { 3223 } 3224 3225 .header-searchbar-area .search-form .search-submit { 2687 3226 padding: 1.7rem 2rem; 2688 } 2689 .widget_recent_entries ul li, 2690 .widget_categories ul li, 2691 .widget_pages ul li, 2692 .widget_archive ul li, 2693 .widget_meta ul li, 2694 .widget_recent_comments ul li, 2695 .widget_block .wp-block-latest-posts li, 2696 .widget_block .wp-block-categories li, 2697 .widget_block .wp-block-archives li, 2698 .widget_block .wp-block-latest-comments li { 3227 } 3228 3229 .widget_recent_entries ul li, 3230 .widget_categories ul li, 3231 .widget_pages ul li, 3232 .widget_archive ul li, 3233 .widget_meta ul li, 3234 .widget_recent_comments ul li, 3235 .widget_block .wp-block-latest-posts li, 3236 .widget_block .wp-block-categories li, 3237 .widget_block .wp-block-archives li, 3238 .widget_block .wp-block-latest-comments li { 2699 3239 display: -webkit-box; 2700 3240 display: -ms-flexbox; … … 2705 3245 padding: 0 0 1rem; 2706 3246 margin-bottom: 1rem; 2707 } 2708 .widget_recent_entries ul li:first-child:last-child, 2709 .widget_categories ul li:first-child:last-child, 2710 .widget_pages ul li:first-child:last-child, 2711 .widget_archive ul li:first-child:last-child, 2712 .widget_meta ul li:first-child:last-child { 3247 } 3248 3249 .widget_recent_entries ul li:first-child:last-child, 3250 .widget_categories ul li:first-child:last-child, 3251 .widget_pages ul li:first-child:last-child, 3252 .widget_archive ul li:first-child:last-child, 3253 .widget_meta ul li:first-child:last-child { 2713 3254 padding-bottom: 0; 2714 } 2715 .widget_categories ul li:first-child:last-child > .children, 2716 .widget_pages ul li:first-child:last-child > .children, 2717 .widget_archive ul li:first-child:last-child > .children { 3255 } 3256 3257 .widget_categories ul li:first-child:last-child > .children, 3258 .widget_pages ul li:first-child:last-child > .children, 3259 .widget_archive ul li:first-child:last-child > .children { 2718 3260 padding-bottom: 0; 2719 } 2720 .widget_recent_entries ul li a, 2721 .widget_categories ul li a, 2722 .widget_pages ul li a, 2723 .widget_archive ul li a, 2724 .widget_meta ul li a { 2725 padding-right: 0.6666666667rem; 2726 margin-right: auto; 3261 } 3262 3263 .widget_recent_entries ul li a, 3264 .widget_categories ul li a, 3265 .widget_pages ul li a, 3266 .widget_archive ul li a, 3267 .widget_meta ul li a { 3268 padding-left: 0.6666666667rem; 3269 margin-left: auto; 2727 3270 -webkit-transition: color 0.2s; 2728 3271 transition: color 0.2s; 2729 } 2730 .widget_categories ul ul.children, 2731 .widget_pages ul ul.children, 2732 .widget_archive ul ul.children { 3272 } 3273 3274 .widget_categories ul ul.children, 3275 .widget_pages ul ul.children, 3276 .widget_archive ul ul.children { 2733 3277 -webkit-box-flex: 0; 2734 3278 -ms-flex: 0 0 100%; … … 2736 3280 width: 100%; 2737 3281 margin-top: 1rem; 2738 margin-left: 0; 2739 padding-left: 1.5em; 2740 } 2741 .widget_categories ul ul.children li, 2742 .widget_pages ul ul.children li, 2743 .widget_archive ul ul.children li { 2744 padding: 1rem 0 1rem 1rem; 2745 } 2746 .widget_categories ul ul.children li:last-child, 2747 .widget_pages ul ul.children li:last-child, 2748 .widget_archive ul ul.children li:last-child { 3282 margin-right: 0; 3283 padding-right: 1.5em; 3284 } 3285 3286 .widget_categories ul ul.children li, 3287 .widget_pages ul ul.children li, 3288 .widget_archive ul ul.children li { 3289 padding: 1rem 1rem 1rem 0; 3290 } 3291 3292 .widget_categories ul ul.children li:last-child, 3293 .widget_pages ul ul.children li:last-child, 3294 .widget_archive ul ul.children li:last-child { 2749 3295 border-bottom: none; 2750 3296 padding-bottom: 0; 2751 } 2752 .widget_categories ul ul.children ul.children li, 2753 .widget_pages ul ul.children ul.children li, 2754 .widget_archive ul ul.children ul.children li { 2755 margin-left: 1rem; 2756 padding-left: 0; 2757 } 2758 .widget_search form { 3297 } 3298 3299 .widget_categories ul ul.children ul.children li, 3300 .widget_pages ul ul.children ul.children li, 3301 .widget_archive ul ul.children ul.children li { 3302 margin-right: 1rem; 3303 padding-right: 0; 3304 } 3305 3306 .widget_search form { 2759 3307 margin-top: 0; 2760 } 2761 #wp-calendar { 3308 } 3309 3310 #wp-calendar { 2762 3311 width: 100%; 2763 3312 margin: 0; 2764 } 2765 #wp-calendar caption { 2766 text-align: right; 3313 } 3314 3315 #wp-calendar caption { 3316 text-align: left; 2767 3317 margin-bottom: 15px; 2768 } 2769 #wp-calendar thead th { 3318 } 3319 3320 #wp-calendar thead th { 2770 3321 text-align: center; 2771 } 2772 #wp-calendar tbody td { 3322 } 3323 3324 #wp-calendar tbody td { 2773 3325 background: #f5f5f5; 2774 3326 border: 1px solid #e8e8e8; 2775 3327 text-align: center; 2776 3328 padding: 8px; 2777 } 2778 #wp-calendar tbody td:hover { 3329 } 3330 3331 #wp-calendar tbody td:hover { 2779 3332 background: #fff; 2780 } 2781 #wp-calendar tbody .pad { 3333 } 3334 3335 #wp-calendar tbody .pad { 2782 3336 background: none; 2783 } 2784 #wp-calendar tfoot td.pad { 3337 } 3338 3339 #wp-calendar tfoot td.pad { 2785 3340 display: none; 2786 } 2787 .widget_recent_comments li { 3341 } 3342 3343 .widget_recent_comments li { 2788 3344 position: relative; 2789 3345 padding-bottom: 1rem; 2790 } 2791 .widget_recent_comments li:last-child { 3346 } 3347 3348 .widget_recent_comments li:last-child { 2792 3349 padding-bottom: 0; 2793 } 2794 .widget_recent_comments li .comment-author-link, 2795 .widget_recent_comments li .comment-author-link a { 2796 } 2797 .widget_recent_entries li { 3350 } 3351 3352 .widget_recent_comments li .comment-author-link, 3353 .widget_recent_comments li .comment-author-link a {} 3354 3355 .widget_recent_entries li { 2798 3356 position: relative; 2799 3357 padding-bottom: 1rem; 2800 } 2801 .widget_recent_entries li:last-child { 3358 } 3359 3360 .widget_recent_entries li:last-child { 2802 3361 padding-bottom: 0; 2803 } 2804 .widget_recent_entries li .post-date { 2805 margin-left: 1rem; 2806 } 2807 .widget_recent_entries li .post-date:before { 3362 } 3363 3364 .widget_recent_entries li .post-date { 3365 margin-right: 1rem; 3366 } 3367 3368 .widget_recent_entries li .post-date:before { 2808 3369 content: "("; 2809 } 2810 .widget_recent_entries li .post-date:after { 3370 } 3371 3372 .widget_recent_entries li .post-date:after { 2811 3373 content: ")"; 2812 } 2813 .widget_rss .rss-widget-icon { 3374 } 3375 3376 .widget_rss .rss-widget-icon { 2814 3377 display: none; 2815 } 2816 .widget_rss ul li { 3378 } 3379 3380 .widget_rss ul li { 2817 3381 border-bottom: 1px #e9ecef solid; 2818 3382 position: relative; 2819 3383 padding-bottom: 1rem; 2820 3384 margin-bottom: 1rem; 2821 } 2822 .widget_rss ul li:last-child { 3385 } 3386 3387 .widget_rss ul li:last-child { 2823 3388 border-bottom: none; 2824 3389 padding-bottom: 0; 2825 3390 margin-bottom: 0; 2826 } 2827 .widget_rss ul li .rsswidget { 3391 } 3392 3393 .widget_rss ul li .rsswidget { 2828 3394 color: #000000; 2829 3395 -webkit-transition: color 0.25s; 2830 3396 transition: color 0.25s; 2831 } 2832 .widget_rss ul li .rss-date { 3397 } 3398 3399 .widget_rss ul li .rss-date { 2833 3400 display: block; 2834 3401 margin-top: 0.25rem; 2835 } 2836 .widget_rss ul li .rssSummary { 3402 } 3403 3404 .widget_rss ul li .rssSummary { 2837 3405 margin-top: 0.25rem; 2838 3406 color: #000000; 2839 } 2840 .widget_rss ul li cite { 3407 } 3408 3409 .widget_rss ul li cite { 2841 3410 display: block; 2842 3411 margin-top: 0.25rem; 2843 3412 font-style: normal; 2844 text-align: right;3413 text-align: left; 2845 3414 font-size: 0.8125rem; 2846 } 2847 .widget_tag_cloud { 3415 } 3416 3417 .widget_tag_cloud { 2848 3418 overflow: hidden; 2849 } 2850 .widget_tag_cloud .tagcloud { 3419 } 3420 3421 .widget_tag_cloud .tagcloud { 2851 3422 display: -webkit-box; 2852 3423 display: -ms-flexbox; … … 2854 3425 -ms-flex-wrap: wrap; 2855 3426 flex-wrap: wrap; 2856 } 2857 .widget_tag_cloud .tagcloud a, .wp-block-tag-cloud a { 3427 } 3428 3429 .widget_tag_cloud .tagcloud a, 3430 .wp-block-tag-cloud a { 2858 3431 background: rgba(0, 0, 0, 0.052); 2859 3432 font-size: 12px !important; 2860 3433 padding: 0.5rem 1.5rem; 2861 3434 margin-top: 0.5rem; 2862 margin- right: 0.5rem;3435 margin-left: 0.5rem; 2863 3436 text-decoration: none; 2864 3437 font-weight: 700; 2865 3438 text-transform: uppercase; 2866 3439 letter-spacing: 1px; 2867 } 2868 .widget_tag_cloud .tagcloud a:hover, 2869 .widget_tag_cloud .tagcloud a:focus { 3440 } 3441 3442 .widget_tag_cloud .tagcloud a:hover, 3443 .widget_tag_cloud .tagcloud a:focus { 2870 3444 background: #000; 2871 3445 color: #fff; 2872 } 2873 .widget_tag_cloud .tagcloud a:last-child { 2874 margin-right: 0; 2875 } 2876 .widget_tag_cloud .tagcloud a:first-letter { 3446 } 3447 3448 .widget_tag_cloud .tagcloud a:last-child { 3449 margin-left: 0; 3450 } 3451 3452 .widget_tag_cloud .tagcloud a:first-letter { 2877 3453 text-transform: uppercase; 2878 } 2879 .widget_media_video .mejs-container { 3454 } 3455 3456 .widget_media_video .mejs-container { 2880 3457 max-width: 100%; 2881 3458 overflow: hidden; 2882 } 2883 .widget_media_video .mejs-container video, 2884 .widget_media_video .mejs-container iframe, 2885 .widget_media_video .mejs-container object, 2886 .widget_media_video .mejs-container embed { 3459 } 3460 3461 .widget_media_video .mejs-container video, 3462 .widget_media_video .mejs-container iframe, 3463 .widget_media_video .mejs-container object, 3464 .widget_media_video .mejs-container embed { 2887 3465 max-width: 100%; 2888 3466 overflow: hidden; 2889 } 2890 .widget_media_gallery { 3467 } 3468 3469 .widget_media_gallery { 2891 3470 overflow: hidden; 2892 } 2893 .widget_media_gallery [class^="gallery-columns-"], 2894 .widget_media_gallery [class*=" gallery-columns-"] { 3471 } 3472 3473 .widget_media_gallery [class^="gallery-columns-"], 3474 .widget_media_gallery [class*=" gallery-columns-"] { 2895 3475 display: -webkit-box; 2896 3476 display: -ms-flexbox; … … 2899 3479 flex-wrap: wrap; 2900 3480 margin: -1rem -0.5rem 0; 2901 } 2902 .widget_media_gallery [class^="gallery-columns-"] .gallery-item, 2903 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item { 3481 } 3482 3483 .widget_media_gallery [class^="gallery-columns-"] .gallery-item, 3484 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item { 2904 3485 position: relative; 2905 3486 margin-top: 1rem; … … 2917 3498 -ms-flex-direction: column; 2918 3499 flex-direction: column; 2919 } 2920 .widget_media_gallery [class^="gallery-columns-"] .gallery-item img, 2921 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item img { 3500 } 3501 3502 .widget_media_gallery [class^="gallery-columns-"] .gallery-item img, 3503 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item img { 2922 3504 display: block; 2923 3505 border-radius: 0; … … 2926 3508 -webkit-backface-visibility: hidden; 2927 3509 backface-visibility: hidden; 2928 } 2929 .widget_media_gallery [class^="gallery-columns-"] .gallery-item:hover img, 2930 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item:hover img { 3510 } 3511 3512 .widget_media_gallery [class^="gallery-columns-"] .gallery-item:hover img, 3513 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item:hover img { 2931 3514 opacity: 0.6; 2932 } 2933 .widget_media_gallery [class^="gallery-columns-"] .gallery-item .gallery-caption, 2934 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item .gallery-caption { 3515 } 3516 3517 .widget_media_gallery [class^="gallery-columns-"] .gallery-item .gallery-caption, 3518 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item .gallery-caption { 2935 3519 padding: 1rem 1rem 0; 2936 } 2937 .widget_media_gallery [class^="gallery-columns-"] .gallery-item .gallery-icon, 2938 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item .gallery-icon { 3520 } 3521 3522 .widget_media_gallery [class^="gallery-columns-"] .gallery-item .gallery-icon, 3523 .widget_media_gallery [class*=" gallery-columns-"] .gallery-item .gallery-icon { 2939 3524 position: relative; 2940 3525 width: 100%; 2941 3526 overflow: hidden; 2942 } 2943 .widget_media_gallery .gallery-columns-4 .gallery-caption, 2944 .widget_media_gallery .gallery-columns-5 .gallery-caption, 2945 .widget_media_gallery .gallery-columns-6 .gallery-caption, 2946 .widget_media_gallery .gallery-columns-7 .gallery-caption, 2947 .widget_media_gallery .gallery-columns-8 .gallery-caption, 2948 .widget_media_gallery .gallery-columns-9 .gallery-caption { 3527 } 3528 3529 .widget_media_gallery .gallery-columns-4 .gallery-caption, 3530 .widget_media_gallery .gallery-columns-5 .gallery-caption, 3531 .widget_media_gallery .gallery-columns-6 .gallery-caption, 3532 .widget_media_gallery .gallery-columns-7 .gallery-caption, 3533 .widget_media_gallery .gallery-columns-8 .gallery-caption, 3534 .widget_media_gallery .gallery-columns-9 .gallery-caption { 2949 3535 display: none; 2950 } 2951 .widget_media_gallery .gallery-columns-1 .gallery-item { 3536 } 3537 3538 .widget_media_gallery .gallery-columns-1 .gallery-item { 2952 3539 -webkit-box-flex: 0; 2953 3540 -ms-flex: 0 0 100%; 2954 3541 flex: 0 0 100%; 2955 3542 max-width: 100%; 2956 } 2957 .widget_media_gallery .gallery-columns-2 .gallery-item { 3543 } 3544 3545 .widget_media_gallery .gallery-columns-2 .gallery-item { 2958 3546 -webkit-box-flex: 0; 2959 3547 -ms-flex: 0 0 50%; 2960 3548 flex: 0 0 50%; 2961 3549 max-width: 50%; 2962 } 2963 .widget_media_gallery .gallery-columns-3 .gallery-item { 3550 } 3551 3552 .widget_media_gallery .gallery-columns-3 .gallery-item { 2964 3553 -webkit-box-flex: 0; 2965 3554 -ms-flex: 0 0 33.3333333333%; 2966 3555 flex: 0 0 33.3333333333%; 2967 3556 max-width: 33.3333333333%; 2968 } 2969 .widget_media_gallery .gallery-columns-4 .gallery-item { 3557 } 3558 3559 .widget_media_gallery .gallery-columns-4 .gallery-item { 2970 3560 -webkit-box-flex: 0; 2971 3561 -ms-flex: 0 0 25%; 2972 3562 flex: 0 0 25%; 2973 3563 max-width: 25%; 2974 } 2975 .widget_media_gallery .gallery-columns-5 .gallery-item { 3564 } 3565 3566 .widget_media_gallery .gallery-columns-5 .gallery-item { 2976 3567 -webkit-box-flex: 0; 2977 3568 -ms-flex: 0 0 20%; 2978 3569 flex: 0 0 20%; 2979 3570 max-width: 20%; 2980 } 2981 .widget_media_gallery .gallery-columns-6 .gallery-item { 3571 } 3572 3573 .widget_media_gallery .gallery-columns-6 .gallery-item { 2982 3574 -webkit-box-flex: 0; 2983 3575 -ms-flex: 0 0 16.6666666667%; 2984 3576 flex: 0 0 16.6666666667%; 2985 3577 max-width: 16.6666666667%; 2986 } 2987 .widget_media_gallery .gallery-columns-7 .gallery-item { 3578 } 3579 3580 .widget_media_gallery .gallery-columns-7 .gallery-item { 2988 3581 -webkit-box-flex: 0; 2989 3582 -ms-flex: 0 0 14.2857142857%; 2990 3583 flex: 0 0 14.2857142857%; 2991 3584 max-width: 14.2857142857%; 2992 } 2993 .widget_media_gallery .gallery-columns-8 .gallery-item { 3585 } 3586 3587 .widget_media_gallery .gallery-columns-8 .gallery-item { 2994 3588 -webkit-box-flex: 0; 2995 3589 -ms-flex: 0 0 12.5%; 2996 3590 flex: 0 0 12.5%; 2997 3591 max-width: 12.5%; 2998 } 2999 .widget_media_gallery .gallery-columns-9 .gallery-item { 3592 } 3593 3594 .widget_media_gallery .gallery-columns-9 .gallery-item { 3000 3595 -webkit-box-flex: 0; 3001 3596 -ms-flex: 0 0 11.1111111111%; 3002 3597 flex: 0 0 11.1111111111%; 3003 3598 max-width: 11.1111111111%; 3004 } 3005 /* Text widget */ 3006 .widget_text { 3599 } 3600 3601 3602 /* Text widget */ 3603 3604 .widget_text { 3007 3605 color: #000000; 3008 3606 word-wrap: break-word; 3009 } 3010 .widget_text ul { 3607 } 3608 3609 .widget_text ul { 3011 3610 list-style: disc; 3012 margin: 0 0 1rem 1rem; 3013 } 3014 .widget_text ol { 3611 margin: 0 1rem 1rem 0; 3612 } 3613 3614 .widget_text ol { 3015 3615 list-style: decimal; 3016 } 3017 .widget_text ul li, 3018 .widget_text ol li { 3616 } 3617 3618 .widget_text ul li, 3619 .widget_text ol li { 3019 3620 border: none; 3020 } 3021 .widget_text ul li:last-child, 3022 .widget_text ol li:last-child { 3621 } 3622 3623 .widget_text ul li:last-child, 3624 .widget_text ol li:last-child { 3023 3625 padding-bottom: 0; 3024 } 3025 .widget_text ul li ul { 3026 margin: 0 0 0 1rem; 3027 } 3028 .widget_text ul li li { 3626 } 3627 3628 .widget_text ul li ul { 3629 margin: 0 1rem 0 0; 3630 } 3631 3632 .widget_text ul li li { 3633 padding-right: 0; 3029 3634 padding-left: 0; 3030 padding-right: 0;3031 } 3032 .widget_text ol li {3635 } 3636 3637 .widget_text ol li { 3033 3638 list-style-position: inside; 3034 } 3035 .widget_text ol li + li { 3639 } 3640 3641 .widget_text ol li + li { 3036 3642 margin-top: -1px; 3037 } 3038 /*Custom Widgets*/ 3039 .widget .tab-head .twp-nav-tabs { 3643 } 3644 3645 3646 /*Custom Widgets*/ 3647 3648 .widget .tab-head .twp-nav-tabs { 3040 3649 border-bottom: 2px solid; 3041 3650 margin-bottom: 15px; 3042 } 3043 .widget .tab-head .twp-nav-tabs li { 3044 float: left; 3651 } 3652 3653 .widget .tab-head .twp-nav-tabs li { 3654 float: right; 3045 3655 margin: 0 auto; 3046 3656 width: 33.33%; 3047 } 3048 .widget .tab-head .twp-nav-tabs > li > a { 3657 } 3658 3659 .widget .tab-head .twp-nav-tabs > li > a { 3049 3660 display: block; 3050 3661 padding: 15px 0; … … 3052 3663 font-size: 14px; 3053 3664 font-weight: 700; 3054 } 3055 .widget .tab-head .twp-nav-tabs > li.active > a, 3056 .widget .tab-head .twp-nav-tabs > li > a:focus, 3057 .widget .tab-head .twp-nav-tabs > li > a:hover, 3058 .widget .tab-head .twp-nav-tabs > li.active > a:focus, 3059 .widget .tab-head .twp-nav-tabs > li.active > a:hover { 3665 } 3666 3667 .widget .tab-head .twp-nav-tabs > li.active > a, 3668 .widget .tab-head .twp-nav-tabs > li > a:focus, 3669 .widget .tab-head .twp-nav-tabs > li > a:hover, 3670 .widget .tab-head .twp-nav-tabs > li.active > a:focus, 3671 .widget .tab-head .twp-nav-tabs > li.active > a:hover { 3060 3672 background: #000; 3061 3673 color: #fff; 3062 } 3063 .widget .tab-head .post-description { 3674 } 3675 3676 .widget .tab-head .post-description { 3064 3677 margin-top: 20px; 3065 } 3066 .site-content .data-bg:not(.site-content .single-featured-banner .data-bg) { 3678 } 3679 3680 .site-content .data-bg:not(.site-content .single-featured-banner .data-bg) { 3067 3681 -webkit-transition: 0.4s ease; 3068 3682 -moz-transition: 0.4s ease; 3069 3683 -o-transition: 0.4s ease; 3070 3684 transition: 0.4s ease; 3071 } 3072 .site-content .data-bg:hover:not(.site-content .single-featured-banner .data-bg) { 3685 } 3686 3687 .site-content .data-bg:hover:not(.site-content .single-featured-banner .data-bg) { 3073 3688 filter: blur(0.15rem); 3074 } 3075 .site-content .single-featured-banner { 3689 } 3690 3691 .site-content .single-featured-banner { 3076 3692 color: #fff; 3077 } 3078 .site-content .single-featured-banner .data-bg { 3693 } 3694 3695 .site-content .single-featured-banner .data-bg { 3079 3696 position: relative; 3080 3697 padding: 15rem 0; 3081 3698 background-attachment: fixed; 3082 } 3083 .site-content .single-featured-banner .data-bg::before { 3699 } 3700 3701 .site-content .single-featured-banner .data-bg::before { 3084 3702 position: absolute; 3085 3703 content: ""; … … 3087 3705 width: 100%; 3088 3706 top: 0; 3707 right: 0; 3089 3708 left: 0; 3090 right: 0;3091 3709 background-color: rgba(0, 0, 0, 0.14); 3092 } 3093 .site-content .single-featured-banner .featured-banner-content .entry-meta a { 3710 } 3711 3712 .site-content .single-featured-banner .featured-banner-content .entry-meta a { 3094 3713 color: inherit; 3095 } 3096 .site-content .single-featured-banner .breadcrumbs ul li span:before, 3097 .site-content .single-featured-banner .entry-meta-item::before { 3714 } 3715 3716 .site-content .single-featured-banner .breadcrumbs ul li span:before, 3717 .site-content .single-featured-banner .entry-meta-item::before { 3098 3718 color: #fff; 3099 } 3100 .tab-icon { 3719 } 3720 3721 .tab-icon { 3101 3722 width: 15px; 3102 3723 height: 15px; 3103 3724 display: inline-block; 3104 margin- right: 5px;3725 margin-left: 5px; 3105 3726 vertical-align: middle; 3106 } 3107 .site-content .tab-icon { 3727 } 3728 3729 .site-content .tab-icon { 3108 3730 width: 20px; 3109 3731 height: 20px; 3110 } 3111 .tab-content > .tab-pane { 3732 } 3733 3734 .tab-content > .tab-pane { 3112 3735 display: none; 3113 } 3114 .tab-content > .active { 3736 } 3737 3738 .tab-content > .active { 3115 3739 display: block; 3116 } 3117 .theme-widget-list li .article-list { 3740 } 3741 3742 .theme-widget-list li .article-list { 3118 3743 margin-bottom: 1rem; 3119 3744 padding-bottom: 1rem; 3120 } 3121 .theme-widget-list li:last-child .article-list { 3745 } 3746 3747 .theme-widget-list li:last-child .article-list { 3122 3748 border: 0; 3123 3749 margin-bottom: 0; 3124 3750 padding-bottom: 0; 3125 } 3126 .theme-widget-list .article-image { 3751 } 3752 3753 .theme-widget-list .article-image { 3127 3754 position: relative; 3128 } 3129 .trend-item { 3755 } 3756 3757 .trend-item { 3130 3758 background-color: #000; 3131 3759 color: #fff; … … 3135 3763 line-height: 20px; 3136 3764 position: absolute; 3137 left: 15px;3765 right: 15px; 3138 3766 bottom: 15px; 3767 margin-right: auto; 3139 3768 margin-left: auto; 3140 margin-right: auto;3141 3769 text-align: center; 3142 3770 width: 20px; … … 3144 3772 outline-offset: 4px; 3145 3773 z-index: 1; 3146 } 3147 .category-widget-header .category-title, 3148 .category-widget-header .post-count { 3774 } 3775 3776 .category-widget-header .category-title, 3777 .category-widget-header .post-count { 3149 3778 display: inline-block; 3150 3779 vertical-align: middle; 3151 } 3152 .category-widget-header .category-title { 3780 } 3781 3782 .category-widget-header .category-title { 3153 3783 font-weight: 700; 3154 3784 text-transform: uppercase; 3155 3785 letter-spacing: 1px; 3156 } 3157 .category-widget-header .post-count { 3786 } 3787 3788 .category-widget-header .post-count { 3158 3789 background-color: #000; 3159 3790 color: #fff; 3160 3791 display: inline-block; 3161 float: right;3792 float: left; 3162 3793 font-size: 16px; 3163 3794 font-weight: 700; … … 3170 3801 transition: all 0.2s ease-out; 3171 3802 border-radius: 100%; 3172 } 3173 .category-widget-description, 3174 .category-latest-article .entry-title { 3803 } 3804 3805 .category-widget-description, 3806 .category-latest-article .entry-title { 3175 3807 margin-top: 15px; 3176 3808 margin-bottom: 0; 3177 } 3178 .author-widget-details .profile-data-bg { 3809 } 3810 3811 .author-widget-details .profile-data-bg { 3179 3812 border-radius: 100%; 3180 3813 border: 5px solid #fff; … … 3182 3815 margin: 0 auto; 3183 3816 width: 160px; 3184 } 3185 .data-bg-enable.author-widget-details .profile-data-bg { 3817 } 3818 3819 .data-bg-enable.author-widget-details .profile-data-bg { 3186 3820 margin-top: -80px; 3187 } 3188 .author-widget-details .author-content { 3821 } 3822 3823 .author-widget-details .author-content { 3189 3824 text-align: center; 3190 } 3191 .author-content .entry-title { 3825 } 3826 3827 .author-content .entry-title { 3192 3828 margin-top: 10px; 3193 } 3194 .author-widget-details .author-social-profiles { 3829 } 3830 3831 .author-widget-details .author-social-profiles { 3195 3832 margin-top: 20px; 3196 3833 padding-bottom: 20px; 3197 3834 text-align: center; 3198 } 3199 .author-widget-details .author-social-profiles > a { 3835 } 3836 3837 .author-widget-details .author-social-profiles > a { 3200 3838 display: inline-block; 3201 3839 margin: 0 5px; 3202 } 3203 .author-widget-details .author-social-profiles .svg-icon { 3840 } 3841 3842 .author-widget-details .author-social-profiles .svg-icon { 3204 3843 color: #fff; 3205 3844 height: 30px; … … 3209 3848 padding: 8px; 3210 3849 outline-offset: 3px; 3211 } 3212 .author-widget-details .author-social-profiles a:hover .svg-icon, 3213 .author-widget-details .author-social-profiles a:focus .svg-icon { 3850 } 3851 3852 .author-widget-details .author-social-profiles a:hover .svg-icon, 3853 .author-widget-details .author-social-profiles a:focus .svg-icon { 3214 3854 background: #000; 3215 } 3216 .theme-social-widget ul li { 3855 } 3856 3857 .theme-social-widget ul li { 3217 3858 margin: 2px 0; 3218 3859 display: inline-block; 3219 3860 vertical-align: middle; 3220 } 3221 .theme-social-widget ul li a { 3861 } 3862 3863 .theme-social-widget ul li a { 3222 3864 background: #000; 3223 3865 color: #fff; … … 3227 3869 line-height: 50px; 3228 3870 text-align: center; 3229 } 3230 .theme-social-widget ul li a:hover, 3231 .theme-social-widget ul li a:focus { 3871 } 3872 3873 .theme-social-widget ul li a:hover, 3874 .theme-social-widget ul li a:focus { 3232 3875 filter: alpha(opacity=90); 3233 3876 opacity: 0.9; 3234 3877 color: #fff; 3235 } 3236 .theme-social-widget ul li .svg-icon { 3878 } 3879 3880 .theme-social-widget ul li .svg-icon { 3237 3881 width: 26px; 3238 3882 height: 26px; 3239 3883 display: inline-block; 3240 3884 vertical-align: middle; 3241 } 3242 /*-------------------------------------------------------------- 3243 # Content 3244 --------------------------------------------------------------*/ 3245 .entry-breadcrumb { 3885 } 3886 3887 3888 /*-------------------------------------------------------------- 3889 # Content 3890 --------------------------------------------------------------*/ 3891 3892 .entry-breadcrumb { 3246 3893 margin-bottom: 4rem; 3247 } 3248 .breadcrumbs { 3894 } 3895 3896 .breadcrumbs { 3249 3897 font-size: 1.6rem; 3250 3898 margin: 0 auto 20px; 3251 } 3252 @media (max-width: 767px) { 3899 } 3900 3901 @media (max-width: 767px) { 3253 3902 .breadcrumbs { 3254 display: none; 3255 } 3256 .site-topbar,.header-wrapper{ 3257 text-align: center; 3258 } 3259 .header-wrapper, .header-wrapper .header-areas-left, .header-wrapper .header-areas-center, .header-wrapper .header-areas-right{ 3260 display: grid; 3261 justify-content: unset; 3262 } 3263 .header-wrapper .header-areas-left,.header-wrapper .header-areas-right { 3264 justify-content: unset; 3265 margin-bottom: 15px; 3266 } 3267 .product-image{ 3268 display: block !important; 3269 } 3270 .navbar-controls{ 3271 justify-content: center; 3272 } 3273 h1.site-title{ 3274 margin-bottom: 0; 3275 } 3276 } 3277 .breadcrumbs a { 3903 display: none; 3904 } 3905 .site-topbar, 3906 .header-wrapper { 3907 text-align: center; 3908 } 3909 .header-wrapper, 3910 .header-wrapper .header-areas-left, 3911 .header-wrapper .header-areas-center, 3912 .header-wrapper .header-areas-right { 3913 display: grid; 3914 justify-content: unset; 3915 } 3916 .header-wrapper .header-areas-left, 3917 .header-wrapper .header-areas-right { 3918 justify-content: unset; 3919 margin-bottom: 15px; 3920 } 3921 .product-image { 3922 display: block !important; 3923 } 3924 .navbar-controls { 3925 justify-content: center; 3926 } 3927 h1.site-title { 3928 margin-bottom: 0; 3929 } 3930 } 3931 3932 .breadcrumbs a { 3278 3933 color: inherit; 3279 } 3280 .breadcrumbs ul { 3934 } 3935 3936 .breadcrumbs ul { 3281 3937 list-style: none; 3282 3938 margin: 0 auto; 3283 3939 padding: 0; 3284 } 3285 .breadcrumbs ul li { 3940 } 3941 3942 .breadcrumbs ul li { 3286 3943 display: inline-block; 3287 } 3288 .breadcrumbs ul .trail-item span { 3944 } 3945 3946 .breadcrumbs ul .trail-item span { 3289 3947 position: relative; 3290 } 3291 .breadcrumbs ul .trail-item.trail-begin span { 3292 padding-left: 0; 3293 } 3294 .breadcrumbs ul li span:before { 3948 } 3949 3950 .breadcrumbs ul .trail-item.trail-begin span { 3951 padding-right: 0; 3952 } 3953 3954 .breadcrumbs ul li span:before { 3295 3955 content: "/"; 3296 3956 margin: 0 6px; 3297 3957 color: rgba(0, 0, 0, 0.24); 3298 } 3299 .breadcrumbs ul .trail-item.trail-begin span:before { 3958 } 3959 3960 .breadcrumbs ul .trail-item.trail-begin span:before { 3300 3961 content: none; 3301 } 3302 3303 /*-------------------------------------------------------------- 3304 ## Sticky Post 3305 --------------------------------------------------------------*/ 3306 3307 .sticky .entry-header h2 a span::before { 3308 content: ''; 3309 font-size: 1.2rem; 3310 background: url(assets/images/pin.png) no-repeat scroll 0 0px !important; 3311 font-weight: 900; 3312 padding: 10px 15px; 3313 } 3314 3315 /*-------------------------------------------------------------- 3316 ## Site Loader 3317 --------------------------------------------------------------*/ 3318 .preloader { 3319 display: flex; 3320 height: 100%; 3321 background: #fff; 3322 width: 100%; 3323 left: 0; 3324 bottom: 0; 3325 top: 0; 3326 position: fixed; 3327 z-index: 9999999; 3328 } 3329 .loader{ 3962 } 3963 3964 3965 /*-------------------------------------------------------------- 3966 ## Sticky Post 3967 --------------------------------------------------------------*/ 3968 3969 .sticky .entry-header h2 a span::before { 3970 content: ''; 3971 font-size: 1.2rem; 3972 background: url(assets/images/pin.png) no-repeat scroll 100% 0px !important; 3973 font-weight: 900; 3974 padding: 10px 15px; 3975 } 3976 3977 3978 /*-------------------------------------------------------------- 3979 ## Sticky 3980 --------------------------------------------------------------*/ 3981 3982 .stick_head { 3983 position: fixed !important; 3984 width: 100%; 3985 z-index: 9999; 3986 top: 0; 3987 right: 0; 3988 background: #1B3C73; 3989 } 3990 3991 .Stickyy.login-user.stick_head { 3992 margin-top: 32px; 3993 box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; 3994 } 3995 3996 3997 /*-------------------------------------------------------------- 3998 ## Site Loader 3999 --------------------------------------------------------------*/ 4000 4001 .preloader { 4002 display: flex; 4003 height: 100%; 4004 background: #fff; 4005 width: 100%; 4006 right: 0; 4007 bottom: 0; 4008 top: 0; 4009 position: fixed; 4010 z-index: 9999999; 4011 } 4012 4013 .loader { 3330 4014 position: relative; 3331 4015 width: 200px; … … 3333 4017 top: 40%; 3334 4018 margin: 20px auto; 3335 } 3336 .loader > div:nth-child(2) { 4019 } 4020 4021 .loader > div:nth-child(2) { 3337 4022 -webkit-animation: pacman-balls 1s -0.99s infinite linear; 3338 4023 animation: pacman-balls 1s -0.99s infinite linear; 3339 } 3340 .loader > div:nth-child(3) { 4024 } 4025 4026 .loader > div:nth-child(3) { 3341 4027 -webkit-animation: pacman-balls 1s -0.66s infinite linear; 3342 4028 animation: pacman-balls 1s -0.66s infinite linear; 3343 } 3344 .loader > div:nth-child(4) { 4029 } 4030 4031 .loader > div:nth-child(4) { 3345 4032 -webkit-animation: pacman-balls 1s -0.33s infinite linear; 3346 4033 animation: pacman-balls 1s -0.33s infinite linear; 3347 } 3348 .loader > div:nth-child(5) { 4034 } 4035 4036 .loader > div:nth-child(5) { 3349 4037 -webkit-animation: pacman-balls 1s 0s infinite linear; 3350 4038 animation: pacman-balls 1s 0s infinite linear; 3351 } 3352 .loader > div:first-of-type { 4039 } 4040 4041 .loader > div:first-of-type { 3353 4042 width: 0px; 3354 4043 height: 0px; 3355 border- right: 25px solid transparent;4044 border-left: 25px solid transparent; 3356 4045 border-top: 25px solid var(--global-color); 3357 border- left: 25px solid var(--global-color);4046 border-right: 25px solid var(--global-color); 3358 4047 border-bottom: 25px solid var(--global-color); 3359 4048 border-radius: 25px; … … 3361 4050 animation: rotate_pacman_half_up 0.5s 0s infinite; 3362 4051 position: relative; 3363 left: 30%; 3364 } 3365 .loader > div:nth-child(2) { 4052 right: 30%; 4053 } 4054 4055 .loader > div:nth-child(2) { 3366 4056 width: 0px; 3367 4057 height: 0px; 3368 border- right: 25px solid transparent;4058 border-left: 25px solid transparent; 3369 4059 border-top: 25px solid var(--global-color); 3370 border- left: 25px solid var(--global-color);4060 border-right: 25px solid var(--global-color); 3371 4061 border-bottom: 25px solid var(--global-color); 3372 4062 border-radius: 25px; … … 3375 4065 margin-top: -50px; 3376 4066 position: relative; 3377 left: 30%; 3378 } 3379 .loader > div:nth-child(3), 3380 .loader > div:nth-child(4), 3381 .loader > div:nth-child(5), 3382 .loader > div:nth-child(6) { 4067 right: 30%; 4068 } 4069 4070 .loader > div:nth-child(3), 4071 .loader > div:nth-child(4), 4072 .loader > div:nth-child(5), 4073 .loader > div:nth-child(6) { 3383 4074 background-color: #FFE52C; 3384 4075 width: 15px; … … 3393 4084 transform: translate(0, -6.25px); 3394 4085 top: 25px; 3395 right: 0; 3396 } 3397 @-webkit-keyframes rotate_pacman_half_up { 4086 left: 0; 4087 } 4088 4089 @-webkit-keyframes rotate_pacman_half_up { 3398 4090 0% { 3399 -webkit-transform: rotate(270deg); 3400 transform: rotate(270deg); } 4091 -webkit-transform: rotate(-270deg); 4092 transform: rotate(-270deg); 4093 } 3401 4094 50% { 3402 -webkit-transform: rotate(360deg); 3403 transform: rotate(360deg); } 4095 -webkit-transform: rotate(-360deg); 4096 transform: rotate(-360deg); 4097 } 3404 4098 100% { 3405 -webkit-transform: rotate(270deg); 3406 transform: rotate(270deg); } 3407 } 3408 @keyframes rotate_pacman_half_up { 4099 -webkit-transform: rotate(-270deg); 4100 transform: rotate(-270deg); 4101 } 4102 } 4103 4104 @keyframes rotate_pacman_half_up { 3409 4105 0% { 3410 -webkit-transform: rotate(270deg); 3411 transform: rotate(270deg); } 4106 -webkit-transform: rotate(-270deg); 4107 transform: rotate(-270deg); 4108 } 3412 4109 50% { 3413 -webkit-transform: rotate(360deg); 3414 transform: rotate(360deg); } 4110 -webkit-transform: rotate(-360deg); 4111 transform: rotate(-360deg); 4112 } 3415 4113 100% { 3416 -webkit-transform: rotate(270deg); 3417 transform: rotate(270deg); } 3418 } 3419 @-webkit-keyframes rotate_pacman_half_down { 4114 -webkit-transform: rotate(-270deg); 4115 transform: rotate(-270deg); 4116 } 4117 } 4118 4119 @-webkit-keyframes rotate_pacman_half_down { 3420 4120 0% { 3421 -webkit-transform: rotate(90deg); 3422 transform: rotate(90deg); } 4121 -webkit-transform: rotate(-90deg); 4122 transform: rotate(-90deg); 4123 } 3423 4124 50% { 3424 -webkit-transform: rotate(0deg); 3425 transform: rotate(0deg); } 4125 -webkit-transform: rotate(0deg); 4126 transform: rotate(0deg); 4127 } 3426 4128 100% { 3427 -webkit-transform: rotate(90deg); 3428 transform: rotate(90deg); } 3429 } 3430 @keyframes rotate_pacman_half_down { 4129 -webkit-transform: rotate(-90deg); 4130 transform: rotate(-90deg); 4131 } 4132 } 4133 4134 @keyframes rotate_pacman_half_down { 3431 4135 0% { 3432 -webkit-transform: rotate(90deg); 3433 transform: rotate(90deg); } 4136 -webkit-transform: rotate(-90deg); 4137 transform: rotate(-90deg); 4138 } 3434 4139 50% { 3435 -webkit-transform: rotate(0deg); 3436 transform: rotate(0deg); } 4140 -webkit-transform: rotate(0deg); 4141 transform: rotate(0deg); 4142 } 3437 4143 100% { 3438 -webkit-transform: rotate(90deg); 3439 transform: rotate(90deg); } 3440 } 3441 @-webkit-keyframes pacman-balls { 4144 -webkit-transform: rotate(-90deg); 4145 transform: rotate(-90deg); 4146 } 4147 } 4148 4149 @-webkit-keyframes pacman-balls { 3442 4150 75% { 3443 opacity: 0.7; } 4151 opacity: 0.7; 4152 } 3444 4153 100% { 3445 -webkit-transform: translate(-100px, -6.25px); 3446 transform: translate(-100px, -6.25px); } 3447 } 3448 @keyframes pacman-balls { 4154 -webkit-transform: translate(100px, -6.25px); 4155 transform: translate(100px, -6.25px); 4156 } 4157 } 4158 4159 @keyframes pacman-balls { 3449 4160 75% { 3450 opacity: 0.7; } 4161 opacity: 0.7; 4162 } 3451 4163 100% { 3452 -webkit-transform: translate(-100px, -6.25px); 3453 transform: translate(-100px, -6.25px); } 3454 } 3455 3456 /*-------------------------------------------------------------- 3457 ## Posts and pages 3458 --------------------------------------------------------------*/ 3459 .sticky { 4164 -webkit-transform: translate(100px, -6.25px); 4165 transform: translate(100px, -6.25px); 4166 } 4167 } 4168 4169 4170 /*-------------------------------------------------------------- 4171 ## Posts and pages 4172 --------------------------------------------------------------*/ 4173 4174 .sticky { 3460 4175 display: block; 3461 } 3462 .updated:not(.published) { 4176 } 4177 4178 .updated:not(.published) { 3463 4179 display: none; 3464 } 3465 .entry-header-1 { 4180 } 4181 4182 .entry-header-1 { 3466 4183 margin-top: 3rem; 3467 4184 padding-top: 3rem; 3468 } 3469 @media (max-width: 991px) { 4185 } 4186 4187 @media (max-width: 991px) { 3470 4188 .entry-header-1 .entry-title { 3471 font-size: 4rem; 3472 } 3473 } 3474 @media (max-width: 575px) { 4189 font-size: 4rem; 4190 } 4191 } 4192 4193 @media (max-width: 575px) { 3475 4194 .entry-header-1 .entry-title { 3476 font-size: 3rem; 3477 } 3478 } 3479 .entry-title a { 4195 font-size: 3rem; 4196 } 4197 } 4198 4199 .entry-title a { 3480 4200 color: inherit; 3481 4201 word-wrap: break-word; 3482 } 3483 .page-links { 4202 } 4203 4204 .page-links { 3484 4205 clear: both; 3485 4206 margin: 0 0 1.5em; 3486 } 3487 .wrapper, 3488 .wrapper-fluid { 4207 } 4208 4209 .wrapper, 4210 .wrapper-fluid { 3489 4211 width: 100%; 4212 margin-left: auto; 3490 4213 margin-right: auto; 3491 margin-left: auto; 3492 } 3493 .wrapper { 4214 } 4215 4216 .wrapper { 4217 padding-left: 15px; 3494 4218 padding-right: 15px; 3495 padding-left: 15px;3496 } 3497 @media (min-width: 1400px) {4219 } 4220 4221 @media (min-width: 1400px) { 3498 4222 .wrapper-fluid { 3499 max-width: 90%; 3500 } 3501 } 3502 @media (min-width: 992px) { 4223 max-width: 90%; 4224 } 4225 } 4226 4227 @media (min-width: 992px) { 3503 4228 .wrapper { 3504 max-width: 1140px; 3505 } 3506 } 3507 @media only screen and (min-width: 1441px) { 4229 max-width: 1140px; 4230 } 4231 } 4232 4233 @media only screen and (min-width: 1441px) { 3508 4234 .wrapper { 3509 max-width: 1400px; 3510 } 3511 } 3512 .wrapper-flex { 4235 max-width: 1400px; 4236 } 4237 } 4238 4239 .wrapper-flex { 3513 4240 max-width: 95%; 3514 margin:0 auto; 3515 } 3516 .column-row { 4241 margin: 0 auto; 4242 } 4243 4244 .column-row { 3517 4245 display: -ms-flexbox; 3518 4246 display: flex; 3519 4247 -ms-flex-wrap: wrap; 3520 4248 flex-wrap: wrap; 4249 margin-left: -15px; 3521 4250 margin-right: -15px; 3522 margin-left: -15px; 3523 } 3524 .column-row-collapse { 4251 } 4252 4253 .column-row-collapse { 4254 margin-left: 0; 3525 4255 margin-right: 0; 3526 margin-left: 0; 3527 } 3528 .column-row-small { 4256 } 4257 4258 .column-row-small { 4259 margin-left: -5px; 3529 4260 margin-right: -5px; 3530 margin-left: -5px;3531 } 3532 .column {4261 } 4262 4263 .column { 3533 4264 position: relative; 3534 4265 width: 100%; 4266 padding-left: 15px; 3535 4267 padding-right: 15px; 3536 padding-left: 15px; 3537 } 3538 .column-row-collapse .column { 4268 } 4269 4270 .column-row-collapse .column { 4271 padding-left: 0; 3539 4272 padding-right: 0; 3540 padding-left: 0; 3541 } 3542 .column-row-small .column { 4273 } 4274 4275 .column-row-small .column { 4276 padding-left: 5px; 3543 4277 padding-right: 5px; 3544 padding-left: 5px;3545 } 3546 .column-1 {4278 } 4279 4280 .column-1 { 3547 4281 -ms-flex: 0 0 8.333333%; 3548 4282 flex: 0 0 8.333333%; 3549 4283 max-width: 8.333333%; 3550 } 3551 .column-2 { 4284 } 4285 4286 .column-2 { 3552 4287 -ms-flex: 0 0 16.666667%; 3553 4288 flex: 0 0 16.666667%; 3554 4289 max-width: 16.666667%; 3555 } 3556 .column-3 { 4290 } 4291 4292 .column-3 { 3557 4293 -ms-flex: 0 0 25%; 3558 4294 flex: 0 0 25%; 3559 4295 max-width: 25%; 3560 } 3561 .column-4 { 4296 } 4297 4298 .column-4 { 3562 4299 -ms-flex: 0 0 33.333333%; 3563 4300 flex: 0 0 33.333333%; 3564 4301 max-width: 33.333333%; 3565 } 3566 .column-5 { 4302 } 4303 4304 .column-5 { 3567 4305 -ms-flex: 0 0 41.666667%; 3568 4306 flex: 0 0 41.666667%; 3569 4307 max-width: 41.666667%; 3570 } 3571 .column-6 { 4308 } 4309 4310 .column-6 { 3572 4311 -ms-flex: 0 0 50%; 3573 4312 flex: 0 0 50%; 3574 4313 max-width: 50%; 3575 } 3576 .column-7 { 4314 } 4315 4316 .column-7 { 3577 4317 -ms-flex: 0 0 58.333333%; 3578 4318 flex: 0 0 58.333333%; 3579 4319 max-width: 58.333333%; 3580 } 3581 .column-8 { 4320 } 4321 4322 .column-8 { 3582 4323 -ms-flex: 0 0 66.666667%; 3583 4324 flex: 0 0 66.666667%; 3584 4325 max-width: 66.666667%; 3585 } 3586 .column-9 { 4326 } 4327 4328 .column-9 { 3587 4329 -ms-flex: 0 0 75%; 3588 4330 flex: 0 0 75%; 3589 4331 max-width: 75%; 3590 } 3591 .column-10 { 4332 } 4333 4334 .column-10 { 3592 4335 -ms-flex: 0 0 83.333333%; 3593 4336 flex: 0 0 83.333333%; 3594 4337 max-width: 83.333333%; 3595 } 3596 .column-11 { 4338 } 4339 4340 .column-11 { 3597 4341 -ms-flex: 0 0 91.666667%; 3598 4342 flex: 0 0 91.666667%; 3599 4343 max-width: 91.666667%; 3600 } 3601 .column-12 { 4344 } 4345 4346 .column-12 { 3602 4347 -ms-flex: 0 0 100%; 3603 4348 flex: 0 0 100%; 3604 4349 max-width: 100%; 3605 } 3606 @media (min-width: 992px) { 4350 } 4351 4352 @media (min-width: 992px) { 3607 4353 .column-order-1 { 3608 -ms-flex-order: 1;3609 order: 1;4354 -ms-flex-order: 1; 4355 order: 1; 3610 4356 } 3611 4357 .column-order-2 { 3612 -ms-flex-order: 2;3613 order: 2;4358 -ms-flex-order: 2; 4359 order: 2; 3614 4360 } 3615 4361 .column-order-3 { 3616 -ms-flex-order: 3; 3617 order: 3; 3618 } 3619 } 3620 @media (max-width: 991px) { 4362 -ms-flex-order: 3; 4363 order: 3; 4364 } 4365 } 4366 4367 @media (max-width: 991px) { 3621 4368 .column-sm-12 { 3622 -ms-flex: 0 0 100%;3623 flex: 0 0 100%;3624 max-width: 100%;4369 -ms-flex: 0 0 100%; 4370 flex: 0 0 100%; 4371 max-width: 100%; 3625 4372 } 3626 4373 .column-sm-6 { 3627 -ms-flex: 0 0 50%;3628 flex: 0 0 50%;3629 max-width: 50%;4374 -ms-flex: 0 0 50%; 4375 flex: 0 0 50%; 4376 max-width: 50%; 3630 4377 } 3631 4378 .column-sm-4 { 3632 -ms-flex: 0 0 33.333333%;3633 flex: 0 0 33.333333%;3634 max-width: 33.333333%;4379 -ms-flex: 0 0 33.333333%; 4380 flex: 0 0 33.333333%; 4381 max-width: 33.333333%; 3635 4382 } 3636 4383 .column-sm-3 { 3637 -ms-flex: 0 0 25%; 3638 flex: 0 0 25%; 3639 max-width: 25%; 3640 } 3641 } 3642 @media (max-width: 767px) { 4384 -ms-flex: 0 0 25%; 4385 flex: 0 0 25%; 4386 max-width: 25%; 4387 } 4388 } 4389 4390 @media (max-width: 767px) { 3643 4391 .column-xs-12 { 3644 -ms-flex: 0 0 100%;3645 flex: 0 0 100%;3646 max-width: 100%;4392 -ms-flex: 0 0 100%; 4393 flex: 0 0 100%; 4394 max-width: 100%; 3647 4395 } 3648 4396 .column-xs-6 { 3649 -ms-flex: 0 0 50%;3650 flex: 0 0 50%;3651 max-width: 50%;4397 -ms-flex: 0 0 50%; 4398 flex: 0 0 50%; 4399 max-width: 50%; 3652 4400 } 3653 4401 .column-xs-4 { 3654 -ms-flex: 0 0 33.333333%;3655 flex: 0 0 33.333333%;3656 max-width: 33.333333%;4402 -ms-flex: 0 0 33.333333%; 4403 flex: 0 0 33.333333%; 4404 max-width: 33.333333%; 3657 4405 } 3658 4406 .column-xs-3 { 3659 -ms-flex: 0 0 25%;3660 flex: 0 0 25%;3661 max-width: 25%;4407 -ms-flex: 0 0 25%; 4408 flex: 0 0 25%; 4409 max-width: 25%; 3662 4410 } 3663 4411 .hidden-xs-screen { 3664 display: none; 3665 visibility: hidden; 3666 opacity: 0; 3667 } 3668 } 3669 .archive-main-block { 4412 display: none; 4413 visibility: hidden; 4414 opacity: 0; 4415 } 4416 } 4417 4418 .archive-main-block { 3670 4419 border-top: 1px solid; 3671 4420 border-color: #ededed; 3672 } 3673 .content-area { 4421 } 4422 4423 .content-area { 3674 4424 position: relative; 4425 padding-left: 15px; 3675 4426 padding-right: 15px; 3676 padding-left: 15px;3677 4427 padding-top: 3rem; 3678 4428 width: 100%; … … 3680 4430 flex: 0 0 75%; 3681 4431 max-width: 75%; 3682 } 3683 @media (max-width: 1400px) { 4432 } 4433 4434 @media (max-width: 1400px) { 3684 4435 .content-area { 3685 -ms-flex: 0 0 65%; 3686 flex: 0 0 65%; 3687 max-width: 65%; 3688 } 3689 } 3690 @media (max-width: 1024px) { 4436 -ms-flex: 0 0 65%; 4437 flex: 0 0 65%; 4438 max-width: 65%; 4439 } 4440 } 4441 4442 @media (max-width: 1024px) { 3691 4443 .content-area { 3692 -ms-flex-order: 1; 3693 order: 1; 3694 } 3695 } 3696 .no-sidebar .content-area { 4444 -ms-flex-order: 1; 4445 order: 1; 4446 } 4447 } 4448 4449 .no-sidebar .content-area { 3697 4450 -ms-flex: 0 0 100%; 3698 4451 flex: 0 0 100%; 3699 4452 max-width: 100%; 3700 } 3701 .left-sidebar .content-area #site-content { 3702 padding-left: 2%; 3703 } 3704 .widget-area { 4453 } 4454 4455 .left-sidebar .content-area #site-content { 4456 padding-right: 2%; 4457 } 4458 4459 .widget-area { 3705 4460 -ms-flex: 0 0 25%; 3706 4461 flex: 0 0 25%; 3707 4462 max-width: 25%; 4463 padding-left: 15px; 3708 4464 padding-right: 15px; 3709 padding-left: 15px;3710 } 3711 @media (max-width: 1400px) {4465 } 4466 4467 @media (max-width: 1400px) { 3712 4468 .widget-area { 3713 -ms-flex: 0 0 35%; 3714 flex: 0 0 35%; 3715 max-width: 35%; 3716 } 3717 } 3718 @media (max-width: 1024px) { 4469 -ms-flex: 0 0 35%; 4470 flex: 0 0 35%; 4471 max-width: 35%; 4472 } 4473 } 4474 4475 @media (max-width: 1024px) { 3719 4476 .widget-area { 3720 -ms-flex-order: 2; 3721 order: 2; 3722 padding: 0 15px; 3723 } 3724 } 3725 .widget-area-wrapper { 4477 -ms-flex-order: 2; 4478 order: 2; 4479 padding: 0 15px; 4480 } 4481 } 4482 4483 .widget-area-wrapper { 3726 4484 position: -webkit-sticky; 3727 4485 position: sticky; … … 3731 4489 font-size: 1.6rem; 3732 4490 padding-top: 3rem; 3733 } 3734 .widget-area-wrapper .widget { 4491 } 4492 4493 .widget-area-wrapper .widget { 3735 4494 border-bottom: 1px solid; 3736 } 3737 .widget-area-wrapper .widget:last-child { 4495 } 4496 4497 .widget-area-wrapper .widget:last-child { 3738 4498 border-bottom: none; 3739 } 3740 .left-sidebar .widget-area { 3741 border-right: 1px solid; 3742 } 3743 .left-sidebar .widget-area-wrapper .widget { 3744 margin-right: 40px; 3745 } 3746 @media (max-width: 1400px) { 4499 } 4500 4501 .left-sidebar .widget-area { 4502 border-left: 1px solid; 4503 } 4504 4505 .left-sidebar .widget-area-wrapper .widget { 4506 margin-left: 40px; 4507 } 4508 4509 @media (max-width: 1400px) { 3747 4510 .left-sidebar .content-area #site-content { 3748 padding-left: 0; 3749 } 3750 } 3751 @media (max-width: 1024px) { 4511 padding-right: 0; 4512 } 4513 } 4514 4515 @media (max-width: 1024px) { 3752 4516 .left-sidebar .widget-area-wrapper { 3753 padding-right: 0;3754 border-right: none;4517 padding-left: 0; 4518 border-left: none; 3755 4519 } 3756 4520 .left-sidebar .widget-area-wrapper .widget { 3757 margin-right: 0; 3758 } 3759 } 3760 .right-sidebar .content-area { 4521 margin-left: 0; 4522 } 4523 } 4524 4525 .right-sidebar .content-area { 3761 4526 -ms-flex-order: 1; 3762 4527 order: 1; 3763 } 3764 .right-sidebar .widget-area { 3765 border-left: 1px solid; 4528 } 4529 4530 .right-sidebar .widget-area { 4531 border-right: 1px solid; 3766 4532 -ms-flex-order: 2; 3767 4533 order: 2; 3768 } 3769 .right-sidebar .widget-area-wrapper .widget { 3770 margin-left: 40px; 3771 } 3772 .right-sidebar .content-area #site-content { 3773 padding-right: 2%; 3774 padding-left: 0; 3775 } 3776 @media (max-width: 1400px) { 4534 } 4535 4536 .right-sidebar .widget-area-wrapper .widget { 4537 margin-right: 40px; 4538 } 4539 4540 .right-sidebar .content-area #site-content { 4541 padding-left: 2%; 4542 padding-right: 0; 4543 } 4544 4545 @media (max-width: 1400px) { 3777 4546 .right-sidebar .content-area #site-content { 3778 padding-right: 0; 3779 } 3780 } 3781 @media (max-width: 1024px) { 4547 padding-left: 0; 4548 } 4549 } 4550 4551 @media (max-width: 1024px) { 3782 4552 .right-sidebar .widget-area-wrapper { 3783 border-left: 0;3784 padding-left: 0;4553 border-right: 0; 4554 padding-right: 0; 3785 4555 } 3786 4556 .right-sidebar .widget-area-wrapper .widget { 3787 margin-left: 0; 3788 } 3789 } 3790 .widget-title, 3791 .widget_block .wp-block-group > .wp-block-group__inner-container > h2 { 4557 margin-right: 0; 4558 } 4559 } 4560 4561 .widget-title, 4562 .widget_block .wp-block-group > .wp-block-group__inner-container > h2 { 3792 4563 text-transform: capitalize; 3793 4564 border-bottom: 1px solid; 3794 4565 padding-bottom: 2rem; 3795 4566 margin-bottom: 2rem; 3796 } 3797 .widget-area-wrapper .widget_recent_entries ul li a { 3798 background-image: linear-gradient(180deg, transparent 94%, #000 0); 4567 } 4568 4569 .widget-area-wrapper .widget_recent_entries ul li a { 4570 background-image: linear-gradient(-180deg, transparent 94%, #000 0); 3799 4571 background-size: 0% 100%; 3800 4572 background-repeat: no-repeat; … … 3802 4574 -moz-transition: background-size 0.4s ease; 3803 4575 transition: background-size 0.4s ease; 3804 } 3805 .widget-area-wrapper .widget_recent_entries ul li a:hover { 4576 } 4577 4578 .widget-area-wrapper .widget_recent_entries ul li a:hover { 3806 4579 text-decoration: none; 3807 4580 background-size: 100% 100%; 3808 } 3809 .widget-area-wrapper ul li a:hover { 4581 } 4582 4583 .widget-area-wrapper ul li a:hover { 3810 4584 color: unset; 3811 } 3812 @media (max-width: 1024px) { 4585 } 4586 4587 @media (max-width: 1024px) { 3813 4588 .content-area, 3814 4589 .widget-area { 3815 -ms-flex: 0 0 100%; 3816 flex: 0 0 100%; 3817 max-width: 100%; 3818 } 3819 } 3820 .alignnone, 3821 .aligncenter { 4590 -ms-flex: 0 0 100%; 4591 flex: 0 0 100%; 4592 max-width: 100%; 4593 } 4594 } 4595 4596 .alignnone, 4597 .aligncenter { 3822 4598 margin-bottom: 4rem; 3823 4599 margin-top: 4rem; 3824 } 3825 .alignwide, 3826 .alignfull { 4600 } 4601 4602 .alignwide, 4603 .alignfull { 3827 4604 margin-bottom: 6rem; 3828 4605 margin-top: 6rem; 3829 } 3830 .alignleft { 4606 } 4607 4608 .alignleft { 4609 margin: 0.5rem 0 2.5rem 2.5rem; 4610 } 4611 4612 .alignright { 3831 4613 margin: 0.5rem 2.5rem 2.5rem 0; 3832 } 3833 .alignright { 3834 margin: 0.5rem 0 2.5rem 2.5rem; 3835 } 3836 @media only screen and (min-width: 1400px) { 4614 } 4615 4616 @media only screen and (min-width: 1400px) { 3837 4617 .entry-content .alignwide { 3838 margin-left: -2rem; 3839 margin-right: -2rem; 3840 } 3841 } 3842 .alignfull > figcaption, 3843 .alignfull > .wp-caption-text { 4618 margin-right: -2rem; 4619 margin-left: -2rem; 4620 } 4621 } 4622 4623 .alignfull > figcaption, 4624 .alignfull > .wp-caption-text { 3844 4625 width: calc(100% - 8rem); 3845 } 3846 .entry-meta { 4626 } 4627 4628 .entry-meta { 3847 4629 display: flex; 3848 4630 flex-wrap: wrap; … … 3850 4632 font-size: 1.2rem; 3851 4633 text-transform: uppercase; 3852 } 3853 .entry-meta-center { 4634 } 4635 4636 .entry-meta-center { 3854 4637 justify-content: center; 3855 } 3856 .entry-meta a { 4638 } 4639 4640 .entry-meta a { 3857 4641 text-decoration: none; 3858 } 3859 .entry-meta-item, 3860 .entry-meta .cat-links a { 4642 } 4643 4644 .entry-meta-item, 4645 .entry-meta .cat-links a { 3861 4646 position: relative; 3862 } 3863 .cat-links { 4647 } 4648 4649 .cat-links { 3864 4650 display: flex; 3865 4651 align-items: center; 3866 4652 flex-wrap: wrap; 3867 } 3868 .entry-meta .cat-links a { 4653 } 4654 4655 .entry-meta .cat-links a { 3869 4656 display: inline; 3870 4657 background-repeat: no-repeat; 3871 4658 background-size: 100% 100%; 3872 padding-right: 1rem; 3873 margin-right: 0.5rem; 3874 } 3875 .entry-meta .cat-links a:hover:not(.entry-meta .cat-links a:first-child) { 4659 padding-left: 1rem; 4660 margin-left: 0.5rem; 4661 } 4662 4663 .entry-meta .cat-links a:hover:not(.entry-meta .cat-links a:first-child) { 3876 4664 opacity: 0.6; 3877 } 3878 .entry-meta .cat-links a::before, 3879 .entry-meta-item::before { 4665 } 4666 4667 .entry-meta .cat-links a::before, 4668 .entry-meta-item::before { 3880 4669 position: absolute; 3881 4670 content: "/"; 3882 4671 top: 50%; 3883 4672 transform: translateY(-50%); 3884 right: 0;4673 left: 0; 3885 4674 font-weight: 600; 3886 4675 color: #000; 3887 } 3888 .entry-meta .cat-links a:last-child { 3889 margin-right: 0; 3890 padding-right: 0; 3891 } 3892 .entry-meta .cat-links a:last-child::before { 4676 } 4677 4678 .entry-meta .cat-links a:last-child { 4679 margin-left: 0; 4680 padding-left: 0; 4681 } 4682 4683 .entry-meta .cat-links a:last-child::before { 3893 4684 display: none; 3894 } 3895 .entry-meta .cat-links a:first-child { 4685 } 4686 4687 .entry-meta .cat-links a:first-child { 3896 4688 color: var(--global-color); 3897 } 3898 .entry-meta .cat-links a:first-child:hover, 3899 .entry-meta .cat-links a:first-child:focus { 4689 } 4690 4691 .entry-meta .cat-links a:first-child:hover, 4692 .entry-meta .cat-links a:first-child:focus { 3900 4693 color: #000; 3901 } 3902 .entry-meta .entry-meta-item { 3903 margin: 0 1rem 1rem 0; 3904 padding-right: 1.5rem; 3905 } 3906 .entry-meta .entry-meta-item:last-child { 3907 margin-right: 0; 3908 padding-right: 0; 3909 } 3910 .entry-meta .entry-meta-item:last-child::before { 4694 } 4695 4696 .entry-meta .entry-meta-item { 4697 margin: 0 0 1rem 1rem; 4698 padding-left: 1.5rem; 4699 } 4700 4701 .entry-meta .entry-meta-item:last-child { 4702 margin-left: 0; 4703 padding-left: 0; 4704 } 4705 4706 .entry-meta .entry-meta-item:last-child::before { 3911 4707 display: none; 3912 } 3913 .entry-meta-left .entry-meta-avatar { 4708 } 4709 4710 .entry-meta-left .entry-meta-avatar { 3914 4711 width: 40px; 3915 4712 border-radius: 50%; 3916 4713 margin-bottom: 0; 3917 margin- right: 1rem;4714 margin-left: 1rem; 3918 4715 overflow: hidden; 3919 } 3920 .entry-meta .entry-meta-right .entry-meta-item { 4716 } 4717 4718 .entry-meta .entry-meta-right .entry-meta-item { 3921 4719 font-size: 1.4rem; 3922 4720 line-height: 1.5; 3923 4721 margin-bottom: 0; 3924 }3925 3926 .entry-meta-wrapper {4722 } 4723 4724 .entry-meta-wrapper { 3927 4725 align-items: center; 3928 4726 display: flex; 3929 4727 flex-wrap: nowrap; 3930 } 3931 .entry-meta-item .entry-meta-icon { 3932 margin-right: 1rem; 3933 } 3934 .entry-meta-label { 3935 margin-right: 5px; 3936 } 3937 .post-navigation { 4728 } 4729 4730 .entry-meta-item .entry-meta-icon { 4731 margin-left: 1rem; 4732 } 4733 4734 .entry-meta-label { 4735 margin-left: 5px; 4736 } 4737 4738 .post-navigation { 3938 4739 border-style: solid; 3939 4740 border-width: 0.1rem 0; 3940 } 3941 .post-navigation .nav-links { 4741 } 4742 4743 .post-navigation .nav-links { 3942 4744 display: flex; 3943 } 3944 .post-navigation .nav-links > div + div { 4745 } 4746 4747 .post-navigation .nav-links > div + div { 3945 4748 margin-top: 1rem; 3946 } 3947 .post-navigation span.post-title{ 4749 } 4750 4751 .post-navigation span.post-title { 3948 4752 word-break: break-all; 3949 } 3950 .post-navigation a { 4753 } 4754 4755 .post-navigation a { 3951 4756 align-items: baseline; 3952 4757 display: flex; 3953 4758 text-decoration: none; 3954 } 3955 .post-navigation .arrow { 3956 margin-right: 1rem; 3957 } 3958 @media (max-width: 767px) { 4759 } 4760 4761 .post-navigation .arrow { 4762 margin-left: 1rem; 4763 } 4764 4765 @media (max-width: 767px) { 3959 4766 .post-navigation .nav-links { 3960 display: block;4767 display: block; 3961 4768 } 3962 4769 .navigation-wrapper .post-navigation .nav-links > div { 3963 max-width: 100%; 3964 margin: 2rem 0; 3965 } 3966 } 3967 /* article wrapper */ 3968 .post-thumbnail, 3969 .theme-article-image, 3970 .entry-thumbnail { 4770 max-width: 100%; 4771 margin: 2rem 0; 4772 } 4773 } 4774 4775 4776 /* article wrapper */ 4777 4778 .post-thumbnail, 4779 .theme-article-image, 4780 .entry-thumbnail { 3971 4781 position: relative; 3972 4782 overflow: hidden; 3973 } 3974 .site-content .article-wraper-archive { 4783 } 4784 4785 .site-content .article-wraper-archive { 3975 4786 display: -ms-flexbox; 3976 4787 display: flex; 3977 4788 -ms-flex-wrap: wrap; 3978 4789 flex-wrap: wrap; 4790 margin-left: -15px; 3979 4791 margin-right: -15px; 3980 margin-left: -15px;3981 } 3982 .site-content .article-wraper-archive .theme-article-post {4792 } 4793 4794 .site-content .article-wraper-archive .theme-article-post { 3983 4795 position: relative; 3984 4796 width: 100%; 4797 padding-left: 15px; 3985 4798 padding-right: 15px; 3986 padding-left: 15px;3987 4799 -ms-flex: 0 0 33%; 3988 4800 flex: 0 0 33.33%; 3989 4801 max-width: 33.33%; 3990 } 3991 @media (max-width: 1024px) { 4802 } 4803 4804 @media (max-width: 1024px) { 3992 4805 .site-content .article-wraper-archive .theme-article-post { 3993 margin-bottom: 1.5rem; 3994 padding-bottom: 1.5rem; 3995 } 3996 } 3997 @media (max-width: 575px) { 4806 margin-bottom: 1.5rem; 4807 padding-bottom: 1.5rem; 4808 } 4809 } 4810 4811 @media (max-width: 575px) { 3998 4812 .site-content .article-wraper-archive .theme-article-post { 3999 -ms-flex: 0 0 100%; 4000 flex: 0 0 100%; 4001 max-width: 100%; 4002 } 4003 } 4004 .site-content .content-area .theme-article-image { 4813 -ms-flex: 0 0 100%; 4814 flex: 0 0 100%; 4815 max-width: 100%; 4816 } 4817 } 4818 4819 .site-content .content-area .theme-article-image { 4005 4820 margin-bottom: 2rem; 4006 } 4007 4008 /* SINGLE PAGINATION */ 4009 .post-navigation { 4821 } 4822 4823 4824 /* SINGLE PAGINATION */ 4825 4826 .post-navigation { 4010 4827 font-size: 1.8rem; 4011 4828 padding: 3.5rem 0; 4012 4829 margin-bottom: 5rem; 4013 4830 margin-top: 5rem; 4014 } 4015 @media (max-width: 1024px) { 4831 } 4832 4833 @media (max-width: 1024px) { 4016 4834 .post-navigation { 4017 margin-bottom: 3rem; 4018 } 4019 } 4020 .post-navigation .nav-links { 4835 margin-bottom: 3rem; 4836 } 4837 } 4838 4839 .post-navigation .nav-links { 4021 4840 flex-direction: row; 4022 4841 justify-content: space-between; 4023 } 4024 .post-navigation .nav-links > div { 4842 } 4843 4844 .post-navigation .nav-links > div { 4025 4845 max-width: calc(50% - 2rem); 4026 } 4027 .post-navigation .nav-links > div + div { 4028 margin: 0 0 0 4rem; 4029 } 4030 .post-navigation .arrow { 4846 } 4847 4848 .post-navigation .nav-links > div + div { 4849 margin: 0 4rem 0 0; 4850 } 4851 4852 .post-navigation .arrow { 4853 margin: 0 0 0 2rem; 4854 } 4855 4856 .post-navigation .nav-next:only-child { 4857 margin-right: auto; 4858 } 4859 4860 .post-navigation .nav-next a { 4861 flex-direction: row-reverse; 4862 text-align: left; 4863 } 4864 4865 .post-navigation .nav-next .arrow { 4031 4866 margin: 0 2rem 0 0; 4032 } 4033 .post-navigation .nav-next:only-child { 4034 margin-left: auto; 4035 } 4036 .post-navigation .nav-next a { 4037 flex-direction: row-reverse; 4038 text-align: right; 4039 } 4040 .post-navigation .nav-next .arrow { 4041 margin: 0 0 0 2rem; 4042 } 4043 .theme-ajax-post-load { 4867 } 4868 4869 .theme-ajax-post-load { 4044 4870 display: flex; 4045 4871 align-items: center; 4046 4872 justify-content: center; 4047 4873 margin-bottom: 6rem; 4048 } 4049 .pagination { 4874 } 4875 4876 .pagination { 4050 4877 margin-top: 3.25rem; 4051 4878 margin-bottom: 3.25rem; 4052 4879 text-align: center; 4053 } 4054 .pagination a { 4880 } 4881 4882 .pagination a { 4055 4883 color: inherit; 4056 } 4057 .pagination .page-numbers { 4884 } 4885 4886 .pagination .page-numbers { 4058 4887 display: inline-block; 4059 margin- right: 1.25em;4888 margin-left: 1.25em; 4060 4889 color: #abadaf; 4061 } 4062 .pagination .page-numbers.current { 4890 } 4891 4892 .pagination .page-numbers.current { 4063 4893 color: #161719; 4064 } 4065 .pagination .page-numbers:last-child { 4066 margin-right: 0; 4067 } 4068 @media only screen and (min-width: 600px) { 4894 } 4895 4896 .pagination .page-numbers:last-child { 4897 margin-left: 0; 4898 } 4899 4900 @media only screen and (min-width: 600px) { 4069 4901 .pagination .prev:after, 4070 4902 .pagination .next:before { 4071 position: relative;4072 display: inline-block;4073 width: 2.25rem;4074 height: 1px;4075 content: "";4076 vertical-align: middle;4077 background-color: #eaebee;4903 position: relative; 4904 display: inline-block; 4905 width: 2.25rem; 4906 height: 1px; 4907 content: ""; 4908 vertical-align: middle; 4909 background-color: #eaebee; 4078 4910 } 4079 4911 .pagination .prev:after { 4080 margin-left: 1.25em;4912 margin-right: 1.25em; 4081 4913 } 4082 4914 .pagination .next:before { 4083 margin-right: 1.25em; 4084 } 4085 } 4086 /*-------------------------------------------------------------- 4087 ## Comments 4088 --------------------------------------------------------------*/ 4089 .twp-comment-toggle { 4090 text-align: left; 4915 margin-left: 1.25em; 4916 } 4917 } 4918 4919 4920 /*-------------------------------------------------------------- 4921 ## Comments 4922 --------------------------------------------------------------*/ 4923 4924 .twp-comment-toggle { 4925 text-align: right; 4091 4926 position: relative; 4092 4927 width: 100%; 4093 } 4094 .comment-toggle-icon { 4928 } 4929 4930 .comment-toggle-icon { 4095 4931 position: absolute; 4096 4932 top: 0; 4097 right: 0;4933 left: 0; 4098 4934 bottom: 0; 4099 4935 width: 45px; … … 4102 4938 display: inline-block; 4103 4939 line-height: 1px; 4104 } 4105 .comment-toggle-icon.active:after { 4940 } 4941 4942 .comment-toggle-icon.active:after { 4106 4943 width: 13px; 4107 4944 height: 1px; 4108 } 4109 .comment-toggle-icon:before, 4110 .comment-toggle-icon:after { 4945 } 4946 4947 .comment-toggle-icon:before, 4948 .comment-toggle-icon:after { 4111 4949 content: ""; 4112 4950 width: 13px; … … 4116 4954 margin: auto; 4117 4955 top: 0; 4956 left: 0; 4957 bottom: 0; 4118 4958 right: 0; 4119 bottom: 0; 4120 left: 0; 4121 } 4122 .comment-toggle-icon:after { 4959 } 4960 4961 .comment-toggle-icon:after { 4123 4962 width: 1px; 4124 4963 height: 13px; 4125 } 4126 .comment-content a { 4964 } 4965 4966 .comment-content a { 4127 4967 word-wrap: break-word; 4128 } 4129 .bypostauthor { 4968 } 4969 4970 .bypostauthor { 4130 4971 display: block; 4131 } 4132 #comments .comments-title { 4972 } 4973 4974 #comments .comments-title { 4133 4975 margin-bottom: 60px; 4134 4976 font-size: 26px; 4135 } 4136 .page #comments .comments-title { 4977 } 4978 4979 .page #comments .comments-title { 4137 4980 margin-top: 60px; 4138 } 4139 #comments .comment-list { 4981 } 4982 4983 #comments .comment-list { 4140 4984 list-style: none; 4141 4985 margin: 40px auto; 4142 4986 padding: 0; 4143 } 4144 #comments .comment-list li { 4987 } 4988 4989 #comments .comment-list li { 4145 4990 border-bottom: 1px solid #eee; 4146 4991 margin-bottom: 40px; 4147 } 4148 #comments .comment-list li article { 4992 } 4993 4994 #comments .comment-list li article { 4149 4995 padding: 0; 4150 4996 margin-bottom: 20px; 4151 } 4152 #comments .comment-list .children { 4997 } 4998 4999 #comments .comment-list .children { 4153 5000 list-style: none; 4154 5001 margin: 0; 4155 padding- left: 30px;5002 padding-right: 30px; 4156 5003 position: relative; 4157 } 4158 #comments .comment-list .children li { 5004 } 5005 5006 #comments .comment-list .children li { 4159 5007 margin: 0; 4160 5008 border: none; 4161 } 4162 #comments .comment-list .comment-content li { 5009 } 5010 5011 #comments .comment-list .comment-content li { 4163 5012 margin-bottom: 10px; 4164 5013 border: none; 4165 } 4166 #comments .comment-list .comment-content h1, 4167 #comments .comment-list .comment-content h2, 4168 #comments .comment-list .comment-content h3, 4169 #comments .comment-list .comment-content h4, 4170 #comments .comment-list .comment-content h5, 4171 #comments .comment-list .comment-content h6 { 5014 } 5015 5016 #comments .comment-list .comment-content h1, 5017 #comments .comment-list .comment-content h2, 5018 #comments .comment-list .comment-content h3, 5019 #comments .comment-list .comment-content h4, 5020 #comments .comment-list .comment-content h5, 5021 #comments .comment-list .comment-content h6 { 4172 5022 margin-bottom: 30px; 4173 5023 margin-top: 30px; 4174 } 4175 #comments .comment-body { 5024 } 5025 5026 #comments .comment-body { 4176 5027 min-height: 60px; 4177 5028 display: block; 4178 5029 position: relative; 4179 5030 clear: both; 4180 } 4181 #comments .comment-body p:last-child { 5031 } 5032 5033 #comments .comment-body p:last-child { 4182 5034 margin-bottom: 0; 4183 } 4184 #comments .comment-body footer { 5035 } 5036 5037 #comments .comment-body footer { 4185 5038 margin-bottom: 20px; 4186 } 4187 #comments .comment-body footer a { 5039 } 5040 5041 #comments .comment-body footer a { 4188 5042 color: inherit; 4189 } 4190 #comments .comment-author img { 4191 float: left; 4192 margin-right: 20px; 4193 } 4194 #comments .comment-author .fn { 5043 } 5044 5045 #comments .comment-author img { 5046 float: right; 5047 margin-left: 20px; 5048 } 5049 5050 #comments .comment-author .fn { 4195 5051 font-weight: 700; 4196 5052 font-style: normal; … … 4198 5054 display: inline-block; 4199 5055 padding-top: 5px; 4200 } 4201 #comments .comment-author .says { 5056 } 5057 5058 #comments .comment-author .says { 4202 5059 display: none; 4203 } 4204 #comments .comment-meta .comment-metadata { 5060 } 5061 5062 #comments .comment-meta .comment-metadata { 4205 5063 font-size: 85%; 4206 5064 margin-top: 5px; 4207 5065 filter: alpha(opacity=70); 4208 5066 opacity: 0.7; 4209 } 4210 #comments .comment-meta .comment-metadata .edit-link { 4211 margin-left: 10px; 4212 } 4213 #comments .reply { 5067 } 5068 5069 #comments .comment-meta .comment-metadata .edit-link { 5070 margin-right: 10px; 5071 } 5072 5073 #comments .reply { 4214 5074 margin-top: 20px; 4215 } 4216 #comments .comment-reply-link { 5075 } 5076 5077 #comments .comment-reply-link { 4217 5078 font-weight: 600; 4218 5079 text-decoration: none; 4219 } 4220 #comments .comment-reply-link:hover { 5080 } 5081 5082 #comments .comment-reply-link:hover { 4221 5083 filter: alpha(opacity=85); 4222 5084 opacity: 0.85; 4223 } 4224 #comments .comment-reply-link:hover:after { 4225 margin-left: 13px; 4226 } 4227 #comments .comment-form { 5085 } 5086 5087 #comments .comment-reply-link:hover:after { 5088 margin-right: 13px; 5089 } 5090 5091 #comments .comment-form { 4228 5092 margin-top: 15px; 4229 } 4230 #comments .comment-form p { 5093 } 5094 5095 #comments .comment-form p { 4231 5096 margin-bottom: 10px; 4232 } 4233 #comments .comment-form p:last-child { 5097 } 5098 5099 #comments .comment-form p:last-child { 4234 5100 margin-bottom: 0; 4235 } 4236 #comments .comment-list #respond { 5101 } 5102 5103 #comments .comment-list #respond { 4237 5104 margin: -20px 0 40px 0; 4238 } 4239 #comments .comment-form-info-fields { 5105 } 5106 5107 #comments .comment-form-info-fields { 4240 5108 margin-bottom: 25px; 4241 } 4242 #comments p.form-submit { 5109 } 5110 5111 #comments p.form-submit { 4243 5112 clear: both; 4244 } 4245 #comments span.required { 5113 } 5114 5115 #comments span.required { 4246 5116 color: #ff7979; 4247 } 4248 #comments .comment-awaiting-moderation { 5117 } 5118 5119 #comments .comment-awaiting-moderation { 4249 5120 color: #db6a23; 4250 5121 font-size: 85%; 4251 } 4252 #comments p.comment-notes, 4253 #comments p.logged-in-as, 4254 #comments p.must-log-in { 5122 } 5123 5124 #comments p.comment-notes, 5125 #comments p.logged-in-as, 5126 #comments p.must-log-in { 4255 5127 margin-bottom: 30px; 4256 5128 font-size: 90%; 4257 } 4258 #comments p.form-allowed-tags { 5129 } 5130 5131 #comments p.form-allowed-tags { 4259 5132 margin-bottom: 25px; 4260 5133 font-size: 14px; 4261 } 4262 #comments h3.comment-reply-title { 5134 } 5135 5136 #comments h3.comment-reply-title { 4263 5137 font-size: 18px; 4264 5138 margin-bottom: 5px; 4265 5139 clear: both; 4266 } 4267 #comments ol li h3.comment-reply-title { 5140 } 5141 5142 #comments ol li h3.comment-reply-title { 4268 5143 margin-top: 60px; 4269 } 4270 #comments h3.comment-reply-title #cancel-comment-reply-link { 5144 } 5145 5146 #comments h3.comment-reply-title #cancel-comment-reply-link { 4271 5147 display: inline-block; 4272 margin- left: 10px;5148 margin-right: 10px; 4273 5149 text-transform: none; 4274 5150 font-size: 14px; … … 4276 5152 filter: alpha(opacity=60); 4277 5153 opacity: 0.6; 4278 } 4279 #comments .comment-form p.form-submit { 5154 } 5155 5156 #comments .comment-form p.form-submit { 4280 5157 margin-bottom: 0; 4281 5158 margin-top: 30px; 4282 } 4283 #comments .comment-form .comment-subscription-form, 4284 #comments .comment-form .comment-subscription-form:only-child { 5159 } 5160 5161 #comments .comment-form .comment-subscription-form, 5162 #comments .comment-form .comment-subscription-form:only-child { 4285 5163 font-size: 14px; 4286 5164 margin-top: 20px; 4287 } 4288 #comments .comment-form .comment-subscription-form:last-child { 5165 } 5166 5167 #comments .comment-form .comment-subscription-form:last-child { 4289 5168 margin-top: 0; 4290 } 4291 @media (min-width: 600px) { 5169 } 5170 5171 @media (min-width: 600px) { 4292 5172 .comments-area .comment-form { 4293 display: -webkit-box;4294 display: -ms-flexbox;4295 display: flex;4296 -ms-flex-wrap: wrap;4297 flex-wrap: wrap;4298 margin-right: -20px;4299 margin-left: -20px;5173 display: -webkit-box; 5174 display: -ms-flexbox; 5175 display: flex; 5176 -ms-flex-wrap: wrap; 5177 flex-wrap: wrap; 5178 margin-left: -20px; 5179 margin-right: -20px; 4300 5180 } 4301 5181 .comments-area .comment-form-comment { 4302 margin-bottom: 1.5rem;5182 margin-bottom: 1.5rem; 4303 5183 } 4304 5184 .comments-area .comment-notes, 4305 5185 .comments-area .comment-form-comment, 4306 5186 .comments-area .logged-in-as { 4307 -webkit-box-flex: 0;4308 -ms-flex: 0 0 100%;4309 flex: 0 0 100%;4310 max-width: 100%;4311 position: relative;4312 width: 100%;4313 padding-right: 20px;4314 padding-left: 20px;4315 margin-bottom: 1.5rem;5187 -webkit-box-flex: 0; 5188 -ms-flex: 0 0 100%; 5189 flex: 0 0 100%; 5190 max-width: 100%; 5191 position: relative; 5192 width: 100%; 5193 padding-left: 20px; 5194 padding-right: 20px; 5195 margin-bottom: 1.5rem; 4316 5196 } 4317 5197 .comments-area .comment-form-author, … … 4319 5199 .comments-area .comment-form-email, 4320 5200 .comments-area .comment-form-url { 4321 -webkit-box-flex: 0;4322 position: relative;4323 width: 100%;4324 padding-right: 20px;4325 padding-left: 20px;4326 margin-bottom: 1.5rem;5201 -webkit-box-flex: 0; 5202 position: relative; 5203 width: 100%; 5204 padding-left: 20px; 5205 padding-right: 20px; 5206 margin-bottom: 1.5rem; 4327 5207 } 4328 5208 .comments-area .comment-form-author, 4329 5209 .comments-area .comment-form-email, 4330 5210 .comments-area .comment-form-url { 4331 -ms-flex: 0 0 33.3333333333%;4332 flex: 0 0 33.3333333333%;4333 max-width: 33.3333333333%;5211 -ms-flex: 0 0 33.3333333333%; 5212 flex: 0 0 33.3333333333%; 5213 max-width: 33.3333333333%; 4334 5214 } 4335 5215 .comments-area .comment-form-ratings { 4336 -ms-flex: 0 0 100%;4337 flex: 0 0 100%;4338 max-width: 100%;5216 -ms-flex: 0 0 100%; 5217 flex: 0 0 100%; 5218 max-width: 100%; 4339 5219 } 4340 5220 .comments-area .comment-form-cookies-consent, 4341 5221 .comments-area .comment-subscription-form { 4342 -webkit-box-flex: 0; 4343 -ms-flex: 0 0 100%; 4344 flex: 0 0 100%; 4345 max-width: 100%; 4346 position: relative; 4347 width: 100%; 4348 padding-right: 20px; 4349 padding-left: 20px; 4350 } 4351 } 4352 .form-submit { 5222 -webkit-box-flex: 0; 5223 -ms-flex: 0 0 100%; 5224 flex: 0 0 100%; 5225 max-width: 100%; 5226 position: relative; 5227 width: 100%; 5228 padding-left: 20px; 5229 padding-right: 20px; 5230 } 5231 } 5232 5233 .form-submit { 4353 5234 margin: 0; 4354 } 4355 @media (min-width: 600px) { 5235 } 5236 5237 @media (min-width: 600px) { 4356 5238 .form-submit { 4357 -webkit-box-flex: 0; 4358 -ms-flex: 0 0 100%; 4359 flex: 0 0 100%; 4360 max-width: 100%; 4361 position: relative; 4362 width: 100%; 4363 padding-right: 20px; 4364 padding-left: 20px; 4365 } 4366 } 4367 /*-------------------------------------------------------------- 4368 # Infinite scroll 4369 --------------------------------------------------------------*/ 4370 .infinite-scroll .posts-navigation, 4371 .infinite-scroll.neverending .site-footer { 5239 -webkit-box-flex: 0; 5240 -ms-flex: 0 0 100%; 5241 flex: 0 0 100%; 5242 max-width: 100%; 5243 position: relative; 5244 width: 100%; 5245 padding-left: 20px; 5246 padding-right: 20px; 5247 } 5248 } 5249 5250 5251 /*-------------------------------------------------------------- 5252 # Infinite scroll 5253 --------------------------------------------------------------*/ 5254 5255 .infinite-scroll .posts-navigation, 5256 .infinite-scroll.neverending .site-footer { 4372 5257 /* Theme Footer (when set to scrolling) */ 4373 5258 display: none; 4374 } 4375 .infinity-end.neverending .site-footer { 5259 } 5260 5261 .infinity-end.neverending .site-footer { 4376 5262 display: block; 4377 } 4378 /*-------------------------------------------------------------- 4379 # Media 4380 --------------------------------------------------------------*/ 4381 .page-content .wp-smiley, 4382 .entry-content .wp-smiley, 4383 .comment-content .wp-smiley { 5263 } 5264 5265 5266 /*-------------------------------------------------------------- 5267 # Media 5268 --------------------------------------------------------------*/ 5269 5270 .page-content .wp-smiley, 5271 .entry-content .wp-smiley, 5272 .comment-content .wp-smiley { 4384 5273 border: none; 4385 5274 margin-bottom: 0; 4386 5275 margin-top: 0; 4387 5276 padding: 0; 4388 } 4389 embed, 4390 iframe, 4391 object { 5277 } 5278 5279 embed, 5280 iframe, 5281 object { 4392 5282 max-width: 100%; 4393 } 4394 .wp-custom-logo .site-logo { 5283 } 5284 5285 .wp-custom-logo .site-logo { 4395 5286 margin: 0; 4396 } 4397 @media (max-width: 575px) { 5287 } 5288 5289 @media (max-width: 575px) { 4398 5290 .wp-custom-logo .site-logo .custom-logo-link { 4399 max-width: 200px 4400 } 4401 } 4402 .custom-logo-link { 5291 max-width: 200px 5292 } 5293 } 5294 5295 .custom-logo-link { 4403 5296 display: block; 4404 5297 margin-bottom: 1.5rem; 4405 } 4406 /*-------------------------------------------------------------- 4407 ## Captions 4408 --------------------------------------------------------------*/ 4409 .wp-caption { 5298 } 5299 5300 5301 /*-------------------------------------------------------------- 5302 ## Captions 5303 --------------------------------------------------------------*/ 5304 5305 .wp-caption { 4410 5306 margin: 1em 0 1.5em; 4411 5307 max-width: 100%; 4412 } 4413 .wp-caption img[class*="wp-image-"] { 5308 } 5309 5310 .wp-caption img[class*="wp-image-"] { 4414 5311 display: block; 5312 margin-right: auto; 4415 5313 margin-left: auto; 5314 } 5315 5316 .wp-caption .wp-caption-text { 5317 margin: 0.8075em 0; 5318 } 5319 5320 .wp-caption.aligncenter { 4416 5321 margin-right: auto; 4417 }4418 .wp-caption .wp-caption-text {4419 margin: 0.8075em 0;4420 }4421 .wp-caption.aligncenter {4422 5322 margin-left: auto; 4423 margin-right: auto; 4424 } 4425 .wp-caption.alignleft { 5323 } 5324 5325 .wp-caption.alignleft { 5326 margin-left: 20px; 5327 } 5328 5329 .wp-caption.alignright { 4426 5330 margin-right: 20px; 4427 } 4428 .wp-caption.alignright { 4429 margin-left: 20px; 4430 } 4431 .wp-caption-text { 5331 } 5332 5333 .wp-caption-text { 4432 5334 text-align: center; 4433 } 4434 /*-------------------------------------------------------------- 4435 ## Galleries 4436 --------------------------------------------------------------*/ 4437 .gallery { 5335 } 5336 5337 5338 /*-------------------------------------------------------------- 5339 ## Galleries 5340 --------------------------------------------------------------*/ 5341 5342 .gallery { 4438 5343 margin-bottom: 1.5rem; 4439 } 4440 @media (min-width: 600px) { 5344 } 5345 5346 @media (min-width: 600px) { 4441 5347 div[class^="gallery-columns-"], 4442 5348 div[class*=" gallery-columns-"] { 4443 display: -webkit-box; 4444 display: -ms-flexbox; 4445 display: flex; 4446 -ms-flex-wrap: wrap; 4447 flex-wrap: wrap; 4448 margin-left: -10px; 4449 margin-right: -10px; 4450 } 4451 } 4452 .gallery-item { 5349 display: -webkit-box; 5350 display: -ms-flexbox; 5351 display: flex; 5352 -ms-flex-wrap: wrap; 5353 flex-wrap: wrap; 5354 margin-right: -10px; 5355 margin-left: -10px; 5356 } 5357 } 5358 5359 .gallery-item { 4453 5360 display: inline-block; 4454 5361 text-align: center; 4455 5362 vertical-align: top; 4456 5363 width: 100%; 4457 } 4458 @media (min-width: 600px) { 5364 } 5365 5366 @media (min-width: 600px) { 4459 5367 .gallery-columns-2 .gallery-item { 4460 max-width: 50%; 4461 position: relative; 4462 width: 100%; 4463 padding-left: 10px; 4464 padding-right: 10px; 4465 margin-bottom: 20px; 4466 } 4467 } 4468 @media (min-width: 600px) { 5368 max-width: 50%; 5369 position: relative; 5370 width: 100%; 5371 padding-right: 10px; 5372 padding-left: 10px; 5373 margin-bottom: 20px; 5374 } 5375 } 5376 5377 @media (min-width: 600px) { 4469 5378 .gallery-columns-3 .gallery-item { 4470 max-width: 33.33%; 4471 position: relative; 4472 width: 100%; 4473 padding-left: 10px; 4474 padding-right: 10px; 4475 margin-bottom: 20px; 4476 } 4477 } 4478 @media (min-width: 600px) { 5379 max-width: 33.33%; 5380 position: relative; 5381 width: 100%; 5382 padding-right: 10px; 5383 padding-left: 10px; 5384 margin-bottom: 20px; 5385 } 5386 } 5387 5388 @media (min-width: 600px) { 4479 5389 .gallery-columns-4 .gallery-item { 4480 max-width: 25%; 4481 position: relative; 4482 width: 100%; 4483 padding-left: 10px; 4484 padding-right: 10px; 4485 margin-bottom: 20px; 4486 } 4487 } 4488 @media (min-width: 600px) { 5390 max-width: 25%; 5391 position: relative; 5392 width: 100%; 5393 padding-right: 10px; 5394 padding-left: 10px; 5395 margin-bottom: 20px; 5396 } 5397 } 5398 5399 @media (min-width: 600px) { 4489 5400 .gallery-columns-5 .gallery-item { 4490 max-width: 20%; 4491 position: relative; 4492 width: 100%; 4493 padding-left: 10px; 4494 padding-right: 10px; 4495 margin-bottom: 20px; 4496 } 4497 } 4498 @media (min-width: 600px) { 5401 max-width: 20%; 5402 position: relative; 5403 width: 100%; 5404 padding-right: 10px; 5405 padding-left: 10px; 5406 margin-bottom: 20px; 5407 } 5408 } 5409 5410 @media (min-width: 600px) { 4499 5411 .gallery-columns-6 .gallery-item { 4500 max-width: 16.66%; 4501 position: relative; 4502 width: 100%; 4503 padding-left: 10px; 4504 padding-right: 10px; 4505 margin-bottom: 20px; 4506 } 4507 } 4508 @media (min-width: 600px) { 5412 max-width: 16.66%; 5413 position: relative; 5414 width: 100%; 5415 padding-right: 10px; 5416 padding-left: 10px; 5417 margin-bottom: 20px; 5418 } 5419 } 5420 5421 @media (min-width: 600px) { 4509 5422 .gallery-columns-7 .gallery-item { 4510 max-width: 14.28%; 4511 position: relative; 4512 width: 100%; 4513 padding-left: 10px; 4514 padding-right: 10px; 4515 margin-bottom: 20px; 4516 } 4517 } 4518 @media (min-width: 600px) { 5423 max-width: 14.28%; 5424 position: relative; 5425 width: 100%; 5426 padding-right: 10px; 5427 padding-left: 10px; 5428 margin-bottom: 20px; 5429 } 5430 } 5431 5432 @media (min-width: 600px) { 4519 5433 .gallery-columns-8 .gallery-item { 4520 max-width: 12.5%; 4521 position: relative; 4522 width: 100%; 4523 padding-left: 10px; 4524 padding-right: 10px; 4525 margin-bottom: 20px; 4526 } 4527 } 4528 @media (min-width: 600px) { 5434 max-width: 12.5%; 5435 position: relative; 5436 width: 100%; 5437 padding-right: 10px; 5438 padding-left: 10px; 5439 margin-bottom: 20px; 5440 } 5441 } 5442 5443 @media (min-width: 600px) { 4529 5444 .gallery-columns-9 .gallery-item { 4530 max-width: 11.11%; 4531 position: relative; 4532 width: 100%; 4533 padding-left: 10px; 4534 padding-right: 10px; 4535 margin-bottom: 20px; 4536 } 4537 } 4538 .gallery-caption { 5445 max-width: 11.11%; 5446 position: relative; 5447 width: 100%; 5448 padding-right: 10px; 5449 padding-left: 10px; 5450 margin-bottom: 20px; 5451 } 5452 } 5453 5454 .gallery-caption { 4539 5455 display: block; 4540 } 4541 /*-------------------------------------------------------------- 4542 ## Footer 4543 --------------------------------------------------------------*/ 4544 .footer-copyright, a.to-the-top { 5456 } 5457 5458 5459 /*-------------------------------------------------------------- 5460 ## Footer 5461 --------------------------------------------------------------*/ 5462 5463 .footer-copyright, 5464 a.to-the-top { 4545 5465 color: #222222; 4546 font-weight: 400; 4547 } 4548 .footer-widgetarea { 5466 font-weight: 400; 5467 } 5468 5469 .footer-widgetarea { 4549 5470 border-top: 1px solid; 4550 5471 padding-bottom: 8rem; 4551 5472 padding-top: 7.5rem; 4552 } 4553 .site-info { 5473 } 5474 5475 .site-info { 4554 5476 border-top: 1px solid; 4555 5477 padding: 6rem 0; 4556 5478 font-size: 1.6rem; 4557 5479 font-weight: 100; 4558 } 4559 .footer-credits { 5480 } 5481 5482 .footer-credits { 4560 5483 align-items: baseline; 4561 5484 display: flex; 4562 5485 flex-shrink: 0; 4563 5486 justify-content: flex-start; 4564 } 4565 .footer-credits a { 5487 } 5488 5489 .footer-credits a { 4566 5490 text-decoration: underline; 4567 } 4568 @media only screen and (max-width: 767px) { 5491 } 5492 5493 @media only screen and (max-width: 767px) { 4569 5494 .footer-widgetarea { 4570 padding-bottom: 3rem;4571 padding-top: 3rem;5495 padding-bottom: 3rem; 5496 padding-top: 3rem; 4572 5497 } 4573 5498 .site-info { 4574 padding: 3rem 0; 4575 } 4576 } 4577 /*-------------------------------------------------------------- 4578 ## Rough 4579 --------------------------------------------------------------*/ 4580 /*.entry-content .alignfull { 4581 margin-left: calc(-100vw / 2 + 100% / 2); 4582 margin-right: calc(-100vw / 2 + 100% / 2); 4583 max-width: 100vw; 4584 }*/ 4585 .wp-block-gallery.columns-1 { 5499 padding: 3rem 0; 5500 } 5501 } 5502 5503 5504 /*-------------------------------------------------------------- 5505 ## Rough 5506 --------------------------------------------------------------*/ 5507 5508 5509 /*.entry-content .alignfull { 5510 margin-left: calc(-100vw / 2 + 100% / 2); 5511 margin-right: calc(-100vw / 2 + 100% / 2); 5512 max-width: 100vw; 5513 }*/ 5514 5515 .wp-block-gallery.columns-1 { 4586 5516 display: block; 4587 } 4588 ul.wp-block-gallery.columns-1, 4589 .wp-block-gallery .blocks-gallery-grid, 4590 .wp-block-gallery { 5517 } 5518 5519 ul.wp-block-gallery.columns-1, 5520 .wp-block-gallery .blocks-gallery-grid, 5521 .wp-block-gallery { 4591 5522 list-style: none; 4592 5523 padding: 0; 4593 5524 margin: 0 auto; 4594 } 4595 .featured-banner-media img { 5525 } 5526 5527 .featured-banner-media img { 4596 5528 width: 100vmax; 4597 5529 z-index: -1; 4598 5530 position: absolute; 4599 5531 top: 0; 4600 left: 50%;4601 transform: translate( -50%, 0);5532 right: 50%; 5533 transform: translate(50%, 0); 4602 5534 pointer-events: none; 4603 } 4604 .site-navigation, 4605 .offcanvas-main-navigation li, 4606 .offcanvas-main-navigation .sub-menu, 4607 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle, 4608 .post-navigation, 4609 .widget .tab-head .twp-nav-tabs, 4610 .widget-area-wrapper .widget, 4611 .footer-widgetarea, 4612 .site-info, 4613 .site-content .widget-area, 4614 .widget-title, 4615 .widget_block .wp-block-group > .wp-block-group__inner-container > h2, 4616 input[type="text"], 4617 input[type="password"], 4618 input[type="email"], 4619 input[type="url"], 4620 input[type="date"], 4621 input[type="month"], 4622 input[type="time"], 4623 input[type="datetime"], 4624 input[type="datetime-local"], 4625 input[type="week"], 4626 input[type="number"], 4627 input[type="search"], 4628 input[type="tel"], 4629 input[type="color"], 4630 textarea { 5535 } 5536 5537 .site-navigation, 5538 .offcanvas-main-navigation li, 5539 .offcanvas-main-navigation .sub-menu, 5540 .offcanvas-main-navigation .submenu-wrapper .submenu-toggle, 5541 .post-navigation, 5542 .widget .tab-head .twp-nav-tabs, 5543 .widget-area-wrapper .widget, 5544 .footer-widgetarea, 5545 .site-info, 5546 .site-content .widget-area, 5547 .widget-title, 5548 .widget_block .wp-block-group > .wp-block-group__inner-container > h2, 5549 input[type="text"], 5550 input[type="password"], 5551 input[type="email"], 5552 input[type="url"], 5553 input[type="date"], 5554 input[type="month"], 5555 input[type="time"], 5556 input[type="datetime"], 5557 input[type="datetime-local"], 5558 input[type="week"], 5559 input[type="number"], 5560 input[type="search"], 5561 input[type="tel"], 5562 input[type="color"], 5563 textarea { 4631 5564 border-color: #ededed; 4632 } 4633 body.hide-comment-rating .tpk-single-rating, 4634 body.hide-comment-rating .tpk-comment-rating-label, 4635 body.hide-comment-rating .comments-rating, 4636 body.hide-comment-rating .tpk-star-rating { 5565 } 5566 5567 body.hide-comment-rating .tpk-single-rating, 5568 body.hide-comment-rating .tpk-comment-rating-label, 5569 body.hide-comment-rating .comments-rating, 5570 body.hide-comment-rating .tpk-star-rating { 4637 5571 display: none; 4638 } 4639 /*-------------------------------------------------------------- 4640 ## Plugin Support 4641 --------------------------------------------------------------*/ 4642 .elementor-html .preloader { 5572 } 5573 5574 5575 /*-------------------------------------------------------------- 5576 ## Plugin Support 5577 --------------------------------------------------------------*/ 5578 5579 .elementor-html .preloader { 4643 5580 display: none; 4644 } 4645 .offcanvas-wraper, 4646 .header-searchbar-inner { 5581 } 5582 5583 .offcanvas-wraper, 5584 .header-searchbar-inner { 4647 5585 background: #ffffff; 4648 } 4649 #comments .comment-body .comment-content, 4650 #comments .comment-reply-link, 4651 #comments p.comment-notes, 4652 #comments p.logged-in-as, 4653 #comments p.must-log-in { 5586 } 5587 5588 #comments .comment-body .comment-content, 5589 #comments .comment-reply-link, 5590 #comments p.comment-notes, 5591 #comments p.logged-in-as, 5592 #comments p.must-log-in { 4654 5593 font-size: 95%; 4655 5594 line-height: 1.8; 4656 } 4657 /*-------------------------------------------------------------- 4658 ##Back to top 4659 --------------------------------------------------------------*/ 4660 .align-text-right { 4661 text-align: right; 4662 } 4663 .to-the-top > * { 5595 } 5596 5597 5598 /*-------------------------------------------------------------- 5599 ##Back to top 5600 --------------------------------------------------------------*/ 5601 5602 .align-text-right { 5603 text-align: left; 5604 } 5605 5606 .to-the-top > * { 4664 5607 pointer-events: none; 4665 }4666 4667 .theme-article-post .entry-footer {5608 } 5609 5610 .theme-article-post .entry-footer { 4668 5611 display: flex; 4669 5612 align-items: center; … … 4672 5615 margin-bottom: 3rem; 4673 5616 width: 100%; 4674 }4675 4676 .theme-article-post .entry-title {5617 } 5618 5619 .theme-article-post .entry-title { 4677 5620 position: relative; 4678 5621 margin-bottom: 2rem; 4679 5622 transition: all 0.3s cubic-bezier(0.72, 0.16, 0.345, 0.875); 4680 } 4681 .theme-custom-block { 5623 } 5624 5625 .theme-custom-block { 4682 5626 position: relative; 4683 }4684 4685 .theme-product-block {5627 } 5628 5629 .theme-product-block { 4686 5630 padding: 50px 0; 4687 }4688 4689 .theme-banner-block .theme-article-post {5631 } 5632 5633 .theme-banner-block .theme-article-post { 4690 5634 position: relative; 4691 5635 margin: 0; 4692 5636 padding: 0; 4693 5637 overflow: hidden; 4694 }4695 4696 .theme-custom-block.theme-error-section.error-block-heading {5638 } 5639 5640 .theme-custom-block.theme-error-section.error-block-heading { 4697 5641 margin-bottom: 0; 4698 5642 margin-top: 6rem; 4699 5643 padding-top: 6rem; 4700 } 4701 .theme-area-header { 5644 } 5645 5646 .theme-area-header { 4702 5647 display: -webkit-box; 4703 5648 display: -ms-flexbox; … … 4708 5653 align-items: center; 4709 5654 margin-bottom: 6rem; 4710 } 4711 @media (max-width: 991px) { 5655 } 5656 5657 @media (max-width: 991px) { 4712 5658 .theme-area-header { 4713 flex-direction: column; 4714 align-items: flex-start; 4715 } 4716 } 4717 .theme-area-headlines { 5659 flex-direction: column; 5660 align-items: flex-start; 5661 } 5662 } 5663 5664 .theme-area-headlines { 4718 5665 display: flex; 4719 5666 align-items: center; 4720 } 4721 @media (max-width: 991px) { 5667 } 5668 5669 @media (max-width: 991px) { 4722 5670 .theme-area-headlines { 4723 margin-bottom: 2rem; 4724 flex-direction: column; 4725 width: 100%; 4726 } 4727 } 4728 .theme-area-headlines .theme-area-title { 5671 margin-bottom: 2rem; 5672 flex-direction: column; 5673 width: 100%; 5674 } 5675 } 5676 5677 .theme-area-headlines .theme-area-title { 4729 5678 font-size: 4.4rem; 4730 5679 margin-bottom: 0; 4731 } 4732 @media (max-width: 991px) { 5680 } 5681 5682 @media (max-width: 991px) { 4733 5683 .theme-area-headlines .theme-area-title { 4734 margin-bottom: 1rem; 4735 } 4736 } 4737 @media (max-width: 575px) { 5684 margin-bottom: 1rem; 5685 } 5686 } 5687 5688 @media (max-width: 575px) { 4738 5689 .theme-area-headlines .theme-area-title { 4739 font-size: 3rem;4740 } 4741 .theme-product-block h3 {4742 margin-bottom: 15px;4743 } 4744 .header-navbar {4745 justify-content: center;5690 font-size: 3rem; 5691 } 5692 .theme-product-block h3 { 5693 margin-bottom: 15px; 5694 } 5695 .header-navbar { 5696 justify-content: center; 4746 5697 } 4747 5698 .site-title { 4748 padding: 12px 0px; 4749 } 4750 } 4751 .theme-animated-line { 5699 padding: 12px 0px; 5700 } 5701 } 5702 5703 .theme-animated-line { 4752 5704 width: 30rem; 4753 5705 height: 2px; 4754 5706 background: transparent; 4755 5707 position: relative; 4756 } 4757 .theme-animated-line::before { 5708 } 5709 5710 .theme-animated-line::before { 4758 5711 content: ""; 4759 5712 position: absolute; 4760 5713 top: 0; 4761 left: 0;5714 right: 0; 4762 5715 width: 10rem; 4763 5716 height: 100%; 4764 5717 background: #000; 4765 5718 animation: animate 5s linear infinite; 4766 } 4767 @keyframes animate { 5719 } 5720 5721 @keyframes animate { 4768 5722 0% { 4769 left: 0;5723 right: 0; 4770 5724 } 4771 5725 50% { 4772 left: 100%;5726 right: 100%; 4773 5727 } 4774 5728 0% { 4775 left: 0; 4776 } 4777 } 4778 @media (max-width: 991px) { 5729 right: 0; 5730 } 5731 } 5732 5733 @media (max-width: 991px) { 4779 5734 @keyframes animate { 4780 0% { 4781 left: 0; 4782 } 4783 50% { 4784 left: 67%; 4785 } 4786 0% { 4787 left: 0; 4788 } 4789 } 4790 } 4791 .theme-carousel-control { 5735 0% { 5736 right: 0; 5737 } 5738 50% { 5739 right: 67%; 5740 } 5741 0% { 5742 right: 0; 5743 } 5744 } 5745 } 5746 5747 .theme-carousel-control { 4792 5748 display: -ms-flexbox; 4793 5749 display: flex; 4794 5750 -ms-flex-align: center; 4795 5751 align-items: center; 4796 margin-left: auto; 4797 } 4798 @media (max-width: 991px) { 5752 margin-right: auto; 5753 } 5754 5755 @media (max-width: 991px) { 4799 5756 .theme-carousel-control { 4800 margin-right: auto; 4801 } 4802 } 4803 .featured-categories-block .theme-carousel-control { 5757 margin-left: auto; 5758 } 5759 } 5760 5761 .featured-categories-block .theme-carousel-control { 4804 5762 justify-content: center; 4805 } 4806 .theme-carousel-control .svg-icon { 5763 } 5764 5765 .theme-carousel-control .svg-icon { 4807 5766 width: 32px; 4808 5767 height: 32px; 4809 } 4810 .theme-related-block { 5768 } 5769 5770 .theme-related-block { 4811 5771 margin-top: 2rem; 4812 5772 padding-top: 2rem; 4813 } 4814 .related-posts .related-post-item { 5773 } 5774 5775 .related-posts .related-post-item { 4815 5776 margin-bottom: 2rem; 4816 5777 padding-bottom: 2rem; 4817 } 4818 @media (max-width: 991px) { 5778 } 5779 5780 @media (max-width: 991px) { 4819 5781 .theme-related-block .related-posts .post-thumbnail { 4820 margin-bottom: 2rem; 4821 } 4822 } 4823 /* ----------------------------------------------------------------- 4824 - Carousel horizontal 4825 ----------------------------------------------------------------- */ 4826 .main-carousel-item { 5782 margin-bottom: 2rem; 5783 } 5784 } 5785 5786 5787 /* ----------------------------------------------------------------- 5788 - Carousel horizontal 5789 ----------------------------------------------------------------- */ 5790 5791 .main-carousel-item { 4827 5792 pointer-events: none; 4828 5793 width: 670px; 4829 } 4830 @media only screen and (max-height: 900px) { 5794 } 5795 5796 @media only screen and (max-height: 900px) { 4831 5797 .main-carousel-item { 4832 width: 670px; 4833 } 4834 } 4835 @media only screen and (max-width: 768px) { 5798 width: 670px; 5799 } 5800 } 5801 5802 @media only screen and (max-width: 768px) { 4836 5803 .main-carousel-item { 4837 width: 580px; 4838 } 4839 } 4840 @media only screen and (max-width: 580px) { 5804 width: 580px; 5805 } 5806 } 5807 5808 @media only screen and (max-width: 580px) { 4841 5809 .main-carousel-item { 4842 margin-top: 2rem; 4843 width: 100%; 4844 } 4845 } 4846 @media screen and (min-width: 1500px) { 5810 margin-top: 2rem; 5811 width: 100%; 5812 } 5813 } 5814 5815 @media screen and (min-width: 1500px) { 4847 5816 .main-carousel-item { 4848 width: 1100px; 4849 } 4850 } 4851 .theme-main-carousel .swiper-slide-active { 5817 width: 1100px; 5818 } 5819 } 5820 5821 .theme-main-carousel .swiper-slide-active { 4852 5822 pointer-events: all; 4853 } 4854 @-webkit-keyframes reveal-carousel-primary { 5823 } 5824 5825 @-webkit-keyframes reveal-carousel-primary { 4855 5826 100% { 4856 transform: translateX(100%); 4857 } 4858 } 4859 @keyframes reveal-carousel-primary { 5827 transform: translateX(-100%); 5828 } 5829 } 5830 5831 @keyframes reveal-carousel-primary { 4860 5832 100% { 4861 transform: translateX(100%); 4862 } 4863 } 4864 @-webkit-keyframes reveal-carousel-secondary { 5833 transform: translateX(-100%); 5834 } 5835 } 5836 5837 @-webkit-keyframes reveal-carousel-secondary { 4865 5838 0% { 4866 transform: translateX(-100%);5839 transform: translateX(100%); 4867 5840 } 4868 5841 50% { 4869 transform: translateX(0);5842 transform: translateX(0); 4870 5843 } 4871 5844 100% { 4872 transform: translateX(100%); 4873 } 4874 } 4875 @keyframes reveal-carousel-secondary { 5845 transform: translateX(-100%); 5846 } 5847 } 5848 5849 @keyframes reveal-carousel-secondary { 4876 5850 0% { 4877 transform: translateX(-100%);5851 transform: translateX(100%); 4878 5852 } 4879 5853 50% { 4880 transform: translateX(0);5854 transform: translateX(0); 4881 5855 } 4882 5856 100% { 4883 transform: translateX(100%); 4884 } 4885 } 4886 @-webkit-keyframes reveal-carousel-tertiary { 5857 transform: translateX(-100%); 5858 } 5859 } 5860 5861 @-webkit-keyframes reveal-carousel-tertiary { 4887 5862 0% { 4888 transform: translateX(-100%);5863 transform: translateX(100%); 4889 5864 } 4890 5865 50% { 4891 transform: translateX(0);5866 transform: translateX(0); 4892 5867 } 4893 5868 100% { 4894 transform: translateX(100%); 4895 } 4896 } 4897 @keyframes reveal-carousel-tertiary { 5869 transform: translateX(-100%); 5870 } 5871 } 5872 5873 @keyframes reveal-carousel-tertiary { 4898 5874 0% { 4899 transform: translateX(-100%);5875 transform: translateX(100%); 4900 5876 } 4901 5877 50% { 4902 transform: translateX(0);5878 transform: translateX(0); 4903 5879 } 4904 5880 100% { 4905 transform: translateX(100%);4906 } 4907 }4908 4909 @media (max-width: 575px) {4910 .shop-heading {4911 display: block;4912 text-align: center;4913 } 4914 .theme-main-carousel .entry-content {4915 display: none;4916 } 4917 .theme-product-block h3:after {4918 display: none;5881 transform: translateX(-100%); 5882 } 5883 } 5884 5885 @media (max-width: 575px) { 5886 .shop-heading { 5887 display: block; 5888 text-align: center; 5889 } 5890 .theme-main-carousel .entry-content { 5891 display: none; 5892 } 5893 .theme-product-block h3:after { 5894 display: none; 4919 5895 } 4920 5896 .imagebox1 .entry-thumbnail img { 4921 height: 235px;4922 width: 100%;5897 height: 235px; 5898 width: 100%; 4923 5899 } 4924 5900 .woo-box { 4925 width: 37%; 4926 margin: 0 auto; 4927 } 4928 .course-heading-block,.course-content-block { 4929 width: 100%; 4930 } 4931 .header-logo,.header-menu,.header-menu,.header-search,.theme-header-areas.header-areas-right.header-button,.left-box, .right-box,.imagebox1{ 4932 width: 100%; 4933 } 4934 .imagebox1 .entry-thumbnail img{ 4935 left: 0px; 4936 } 4937 .imagebox1 .entry-thumbnail:after{ 4938 left: 0px; 4939 margin:0 auto; 4940 } 4941 .theme-header-areas.header-areas-right.header-button{ 4942 text-align: center; 4943 margin-top: 20px; 4944 padding-bottom: 20px; 4945 } 4946 .header-center{ 4947 display: block; 4948 text-align: center; 4949 } 4950 .left-box, .right-box,.entry-thumbnail{ 4951 text-align: center; 4952 } 4953 .image-main-box{ 4954 display: block; 4955 } 4956 .header-search{ 4957 justify-content: center; 4958 } 4959 header#site-header{ 4960 padding-right: 0px; 5901 width: 37%; 5902 margin: 0 auto; 5903 } 5904 .course-heading-block, 5905 .course-content-block { 5906 width: 100%; 5907 } 5908 .header-logo, 5909 .header-menu, 5910 .header-menu, 5911 .header-search, 5912 .theme-header-areas.header-areas-right.header-button, 5913 .left-box, 5914 .right-box, 5915 .imagebox1 { 5916 width: 100%; 5917 } 5918 .imagebox1 .entry-thumbnail img { 5919 right: 0px; 5920 } 5921 .imagebox1 .entry-thumbnail:after { 5922 right: 0px; 5923 margin: 0 auto; 5924 } 5925 .theme-header-areas.header-areas-right.header-button { 5926 text-align: center; 5927 margin-top: 20px; 5928 padding-bottom: 20px; 5929 } 5930 .header-center { 5931 display: block; 5932 text-align: center; 5933 } 5934 .left-box, 5935 .right-box, 5936 .entry-thumbnail { 5937 text-align: center; 5938 } 5939 .image-main-box { 5940 display: block; 5941 } 5942 .header-search { 5943 justify-content: center; 5944 } 5945 header#site-header { 5946 padding-left: 0px; 4961 5947 } 4962 5948 section#top-header { 4963 padding-right: 15px;4964 padding-left: 15px;4965 } 4966 .main-carousel-caption .entry-title a {4967 font-size: 25px;4968 margin-top: 10px;5949 padding-left: 15px; 5950 padding-right: 15px; 5951 } 5952 .main-carousel-caption .entry-title a { 5953 font-size: 25px; 5954 margin-top: 10px; 4969 5955 } 4970 5956 .list-heading-main { 4971 text-align: center; 4972 } 4973 .blog-main-box{ 4974 padding-left: 0px; 4975 } 4976 .page-template-frontpage header#site-header{ 4977 position: relative; 4978 } 4979 .right-box{ 4980 width: 100%; 4981 } 4982 .list-heading-main{ 4983 margin-right: 0px; 4984 margin-bottom: 20px; 4985 } 4986 .slider-main{ 4987 display: block; 4988 } 4989 .main-carousel-item{ 4990 margin:0px; 4991 } 4992 .right-box .theme-article-post{ 4993 display: block; 4994 } 4995 .right-box .entry-thumbnail .featured-image{ 4996 height: 200px; 4997 } 4998 .most-read-div,.main-blog-box { 4999 display: block; 5000 } 5001 .blog-main-box ,.blog-box, .middle-blog-box{ 5002 width: 100%; 5003 } 5004 .right-box .btn-fancy span{ 5005 background: #000 5006 } 5007 .right-box .btn-fancy svg{ 5008 fill: #ffffff; 5957 text-align: center; 5958 } 5959 .blog-main-box { 5960 padding-right: 0px; 5961 } 5962 .page-template-frontpage header#site-header { 5963 position: relative; 5964 } 5965 .right-box { 5966 width: 100%; 5967 } 5968 .list-heading-main { 5969 margin-left: 0px; 5970 margin-bottom: 20px; 5971 } 5972 .slider-main { 5973 display: block; 5974 } 5975 .main-carousel-item { 5976 margin: 0px; 5977 } 5978 .right-box .theme-article-post { 5979 display: block; 5980 } 5981 .right-box .entry-thumbnail .featured-image { 5982 height: 200px; 5983 } 5984 .most-read-div, 5985 .main-blog-box { 5986 display: block; 5987 } 5988 .blog-main-box, 5989 .blog-box, 5990 .middle-blog-box { 5991 width: 100%; 5992 } 5993 .right-box .btn-fancy span { 5994 background: #000 5995 } 5996 .right-box .btn-fancy svg { 5997 fill: #ffffff; 5009 5998 } 5010 5999 .right-box .post-content { 5011 padding: 22px 0px;6000 padding: 22px 0px; 5012 6001 } 5013 6002 .header-toggle-box { 5014 display: flex;5015 justify-content: center;5016 margin: 15px 0px;6003 display: flex; 6004 justify-content: center; 6005 margin: 15px 0px; 5017 6006 } 5018 6007 .menu-drawer { 5019 width: 320px !important;5020 padding: 15px !important;6008 width: 320px !important; 6009 padding: 15px !important; 5021 6010 } 5022 6011 .toggle-menu.active i { 5023 left: 129px !important;5024 top: -166px !important;5025 background: #000;5026 } 5027 }5028 @media screen and (min-width: 576px) and (max-width: 991px){ 5029 6012 right: 129px !important; 6013 top: -166px !important; 6014 background: #000; 6015 } 6016 } 6017 6018 @media screen and (min-width: 576px) and (max-width: 991px) { 5030 6019 .header-logo { 5031 width: 40%;6020 width: 40%; 5032 6021 } 5033 6022 .imagebox1 .entry-thumbnail:after { 5034 height: 190px; 5035 width: 157px; 5036 } 5037 6023 height: 190px; 6024 width: 157px; 6025 } 5038 6026 .imagebox1 .entry-thumbnail img { 5039 height: 200px;5040 width: 200px;5041 left: 0px;6027 height: 200px; 6028 width: 200px; 6029 right: 0px; 5042 6030 } 5043 6031 .header-menu { 5044 width: 45%;5045 } 5046 .header-center {5047 padding-bottom: 15px;6032 width: 45%; 6033 } 6034 .header-center { 6035 padding-bottom: 15px; 5048 6036 } 5049 6037 .theme-header-areas.header-areas-right.header-button { 5050 width: 30%;5051 } 5052 5053 } 5054 @media (max-width: 767px) {5055 .header-logo {5056 background-image: none !important;6038 width: 30%; 6039 } 6040 } 6041 6042 @media (max-width: 767px) { 6043 .header-logo { 6044 background-image: none !important; 5057 6045 } 5058 6046 #search .close { 5059 position: fixed;5060 top: 100px;6047 position: fixed; 6048 top: 100px; 5061 6049 } 5062 6050 .main-header { 5063 position: relative !important; 5064 } 5065 section.logo-box:after{ 5066 display: none; 5067 } 5068 .right-box .main-carousel-caption ,.right-box .entry-thumbnail{ 5069 width: 100%; 6051 position: relative !important; 6052 } 6053 section.logo-box:after { 6054 display: none; 6055 } 6056 .right-box .main-carousel-caption, 6057 .right-box .entry-thumbnail { 6058 width: 100%; 5070 6059 } 5071 6060 .right-box { 5072 display: block;5073 } 5074 }5075 5076 .theme-main-carousel .swiper-button-prev svg,5077 .theme-main-carousel .swiper-button-next svg {6061 display: block; 6062 } 6063 } 6064 6065 .theme-main-carousel .swiper-button-prev svg, 6066 .theme-main-carousel .swiper-button-next svg { 5078 6067 display: block; 5079 6068 fill: none; 5080 6069 stroke: currentColor; 5081 6070 stroke-miterlimit: 10; 5082 } 5083 .theme-main-carousel svg polyline, 5084 .theme-main-carousel svg line { 6071 } 6072 6073 .theme-main-carousel svg polyline, 6074 .theme-main-carousel svg line { 5085 6075 fill: none; 5086 6076 stroke: currentColor; … … 5089 6079 stroke-dashoffset: 0; 5090 6080 transition: stroke-dashoffset 0.8s cubic-bezier(0.39, 0.58, 0.57, 1); 5091 } 5092 .theme-main-carousel .swiper-button-next:hover svg polyline, 5093 .theme-main-carousel .swiper-button-next:focus svg polyline, 5094 .theme-main-carousel .swiper-button-next:hover svg line, 5095 .theme-main-carousel .swiper-button-next:focus svg line, 5096 .theme-main-carousel .swiper-button-prev:hover svg polyline, 5097 .theme-main-carousel .swiper-button-prev:focus svg polyline, 5098 .theme-main-carousel .swiper-button-prev:hover svg line, 5099 .theme-main-carousel .swiper-button-prev:focus svg line { 6081 } 6082 6083 .theme-main-carousel .swiper-button-next:hover svg polyline, 6084 .theme-main-carousel .swiper-button-next:focus svg polyline, 6085 .theme-main-carousel .swiper-button-next:hover svg line, 6086 .theme-main-carousel .swiper-button-next:focus svg line, 6087 .theme-main-carousel .swiper-button-prev:hover svg polyline, 6088 .theme-main-carousel .swiper-button-prev:focus svg polyline, 6089 .theme-main-carousel .swiper-button-prev:hover svg line, 6090 .theme-main-carousel .swiper-button-prev:focus svg line { 5100 6091 stroke-dashoffset: 120; 5101 } 5102 .theme-main-carousel .entry-content { 6092 } 6093 6094 .theme-main-carousel .entry-content { 5103 6095 margin-bottom: 2rem; 5104 6096 color: #222222; 5105 6097 font-size: 14px; 5106 6098 font-weight: 500; 5107 } 5108 .swiper-control, 5109 .control-item { 6099 } 6100 6101 .swiper-control, 6102 .control-item { 5110 6103 letter-spacing: 0.2rem; 5111 6104 padding: 2.2rem 2rem; … … 5114 6107 transition: padding 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955); 5115 6108 width: auto; 5116 } 5117 :root { 6109 } 6110 6111 :root { 5118 6112 --global-color: #E74216; 5119 6113 --secondary-color: #FFC527; … … 5121 6115 --font-main: "Roboto", sans-serif; 5122 6116 --swiper-navigation-size: 2.6rem; 5123 } 5124 .swiper-button-prev:after, 5125 .swiper-container-rtl .swiper-button-next:after, 5126 .swiper-button-next:after, 5127 .swiper-container-rtl .swiper-button-prev:after { 6117 } 6118 6119 .swiper-button-prev:after, 6120 .swiper-container-rtl .swiper-button-next:after, 6121 .swiper-button-next:after, 6122 .swiper-container-rtl .swiper-button-prev:after { 5128 6123 content: none; 5129 } 5130 .swiper-control .swiper-button-prev, 5131 .swiper-control .swiper-button-next { 6124 } 6125 6126 .swiper-control .swiper-button-prev, 6127 .swiper-control .swiper-button-next { 5132 6128 color: #000; 5133 6129 height: 100%; 5134 6130 width: auto; 5135 } 5136 .theme-main-carousel .theme-carousel-control { 6131 } 6132 6133 .theme-main-carousel .theme-carousel-control { 5137 6134 position: relative; 5138 6135 width: 100%; … … 5140 6137 margin: 0 auto; 5141 6138 height: 3rem; 5142 } 5143 .swiper-button-prev, 5144 .swiper-container-rtl .swiper-button-next, 5145 .swiper-button-next, 5146 .swiper-container-rtl .swiper-button-prev { 6139 } 6140 6141 .swiper-button-prev, 6142 .swiper-container-rtl .swiper-button-next, 6143 .swiper-button-next, 6144 .swiper-container-rtl .swiper-button-prev { 5147 6145 top: 50%; 5148 6146 transform: translateY(-50%); 5149 6147 margin-top: 0; 5150 } 5151 .swiper-button-prev, 5152 .swiper-container-rtl .swiper-button-next { 6148 } 6149 6150 .swiper-button-prev, 6151 .swiper-container-rtl .swiper-button-next { 6152 right: 0; 6153 } 6154 6155 .swiper-button-next, 6156 .swiper-container-rtl .swiper-button-prev { 5153 6157 left: 0; 5154 } 5155 .swiper-button-next, 5156 .swiper-container-rtl .swiper-button-prev { 5157 right: 0; 5158 } 5159 .swiper-container .swiper-pagination-progressbar { 6158 } 6159 6160 .swiper-container .swiper-pagination-progressbar { 5160 6161 background-color: #fff; 5161 6162 position: fixed; 5162 6163 top: 0; 5163 } 5164 .swiper-container .swiper-pagination-progressbar-fill { 6164 } 6165 6166 .swiper-container .swiper-pagination-progressbar-fill { 5165 6167 background-color: #070707; 5166 } 5167 .theme-post-format { 6168 } 6169 6170 .theme-post-format { 5168 6171 display: flex; 5169 6172 align-items: center; 5170 6173 position: absolute; 5171 6174 top: 0; 5172 left: 0;6175 right: 0; 5173 6176 padding: 5px 10px; 5174 6177 font-size: 12px; … … 5178 6181 line-height: 1; 5179 6182 z-index: 0; 5180 } 5181 .theme-article-post .column-order-1 .theme-post-format { 5182 left: inherit; 5183 right: 0; 5184 } 5185 .theme-post-format .post-format-icom { 5186 margin-right: 5px; 5187 } 5188 /* Hide JS Functionalities ------------------------ */ 5189 .js .show-js { 6183 } 6184 6185 .theme-article-post .column-order-1 .theme-post-format { 6186 right: inherit; 6187 left: 0; 6188 } 6189 6190 .theme-post-format .post-format-icom { 6191 margin-left: 5px; 6192 } 6193 6194 6195 /* Hide JS Functionalities ------------------------ */ 6196 6197 .js .show-js { 5190 6198 display: block !important; 5191 } 5192 .js .hide-js { 6199 } 6200 6201 .js .hide-js { 5193 6202 display: none !important; 5194 } 5195 .no-js .show-no-js { 6203 } 6204 6205 .no-js .show-no-js { 5196 6206 display: block !important; 5197 } 5198 .no-js .hide-no-js { 6207 } 6208 6209 .no-js .hide-no-js { 5199 6210 display: none !important; 5200 } 5201 a:focus, 5202 button:focus, 5203 .navbar-control:focus-visible > .navbar-control-trigger { 6211 } 6212 6213 a:focus, 6214 button:focus, 6215 .navbar-control:focus-visible > .navbar-control-trigger { 5204 6216 outline-color: #000; 5205 } 5206 .theme-post-format { 6217 } 6218 6219 .theme-post-format { 5207 6220 background-color: var(--global-color); 5208 6221 color: #fff; 5209 } 5210 .theme-post-format span svg{ 6222 } 6223 6224 .theme-post-format span svg { 5211 6225 fill: #ffffff; 5212 } 5213 .theme-image-responsive { 6226 } 6227 6228 .theme-image-responsive { 5214 6229 display: block; 5215 6230 width: 100%; 5216 6231 height: 100%; 5217 6232 top: 0; 6233 right: 0; 5218 6234 left: 0; 5219 right: 0;5220 6235 position: absolute; 5221 6236 z-index: 4; 5222 } 5223 .theme-image-responsive:focus { 6237 } 6238 6239 .theme-image-responsive:focus { 5224 6240 border: 2px solid var(--global-color); 5225 } 5226 @media (min-width: 992px) { 6241 } 6242 6243 @media (min-width: 992px) { 5227 6244 .swiper-slide.main-carousel-item .entry-thumbnail .data-bg { 5228 filter: blur(0);5229 transform: scale(1.2);5230 -webkit-transition: 0.6s ease;5231 -moz-transition: 0.6s ease;5232 -o-transition: 0.6s ease;5233 transition: 0.6s ease;6245 filter: blur(0); 6246 transform: scale(1.2); 6247 -webkit-transition: 0.6s ease; 6248 -moz-transition: 0.6s ease; 6249 -o-transition: 0.6s ease; 6250 transition: 0.6s ease; 5234 6251 } 5235 6252 .main-carousel-item.swiper-slide-active .entry-thumbnail .data-bg { 5236 transform: scale(1); 5237 filter: blur(0.2rem); 5238 } 5239 } 5240 .article-content { 6253 transform: scale(1); 6254 filter: blur(0.2rem); 6255 } 6256 } 6257 6258 .article-content { 5241 6259 margin-top: 1.5rem; 5242 } 5243 .article-content .category-title { 6260 } 6261 6262 .article-content .category-title { 5244 6263 font-weight: 400; 5245 } 5246 /* categories carousel */ 5247 .theme-transform-zoom .data-bg { 6264 } 6265 6266 6267 /* categories carousel */ 6268 6269 .theme-transform-zoom .data-bg { 5248 6270 transform: scale(1); 5249 6271 transition: 0.4s ease; 5250 } 5251 .post-thumb-categories { 6272 } 6273 6274 .post-thumb-categories { 5252 6275 overflow: hidden; 5253 } 5254 .theme-transform-zoom:hover .data-bg { 6276 } 6277 6278 .theme-transform-zoom:hover .data-bg { 5255 6279 transform: scale(1.15); 5256 } 5257 .theme-categories-carousel .theme-article-post { 6280 } 6281 6282 .theme-categories-carousel .theme-article-post { 5258 6283 margin: 0; 5259 6284 padding: 0; 5260 6285 position: relative; 5261 } 5262 .theme-categories-carousel .article-content { 6286 } 6287 6288 .theme-categories-carousel .article-content { 5263 6289 transition: 0.4s ease; 5264 6290 display: -webkit-box; … … 5277 6303 bottom: 0; 5278 6304 background: rgb(26 77 140 / 70%); 6305 right: 0; 5279 6306 left: 0; 5280 right: 0;5281 6307 padding: 15px; 5282 } 5283 .theme-categories-carousel .article-content .category-title { 6308 } 6309 6310 .theme-categories-carousel .article-content .category-title { 5284 6311 font-size: 2rem; 5285 6312 font-weight: 500; 5286 6313 margin-bottom: 0; 5287 } 5288 .theme-categories-carousel .article-content .category-title a{ 6314 } 6315 6316 .theme-categories-carousel .article-content .category-title a { 5289 6317 color: #fff !important; 5290 } 5291 5292 h1.site-title,.site-title,.site-title p{ 6318 } 6319 6320 h1.site-title, 6321 .site-title, 6322 .site-title p { 5293 6323 font-family: var(--font-head); 5294 } 5295 5296 @media screen and (max-width:500px) { 5297 footer#site-footer .column-9, footer#site-footer .column-3{ 5298 padding: 0; 5299 } 5300 } 5301 .is-large .wc-block-checkout__sidebar.is-sticky { 6324 } 6325 6326 @media screen and (max-width:500px) { 6327 footer#site-footer .column-9, 6328 footer#site-footer .column-3 { 6329 padding: 0; 6330 } 6331 } 6332 6333 .is-large .wc-block-checkout__sidebar.is-sticky { 5302 6334 position: relative !important; 5303 } 5304 5305 /* Add the styles for Newer/Older pagination (Previous/Next) */ 5306 .navigation.posts-navigation { 6335 } 6336 6337 6338 /* Add the styles for Newer/Older pagination (Previous/Next) */ 6339 6340 .navigation.posts-navigation { 5307 6341 display: flex; 5308 6342 justify-content: space-between; … … 5310 6344 margin: 20px 0; 5311 6345 padding: 0; 5312 }5313 5314 .navigation.posts-navigation .nav-links {6346 } 6347 6348 .navigation.posts-navigation .nav-links { 5315 6349 display: flex; 5316 6350 justify-content: space-between; 5317 6351 width: 30%; 5318 }5319 5320 .navigation.posts-navigation .nav-previous, 5321 .navigation.posts-navigation .nav-next {6352 } 6353 6354 .navigation.posts-navigation .nav-previous, 6355 .navigation.posts-navigation .nav-next { 5322 6356 flex: 1; 5323 6357 text-align: center; 5324 }5325 5326 .navigation.posts-navigation .nav-previous a,5327 .navigation.posts-navigation .nav-next a {6358 } 6359 6360 .navigation.posts-navigation .nav-previous a, 6361 .navigation.posts-navigation .nav-next a { 5328 6362 display: inline-block; 5329 6363 padding: 10px 20px; 5330 background-color: var(--global-color); /* Customize this color */ 6364 background-color: var(--global-color); 6365 /* Customize this color */ 5331 6366 color: #fff; 5332 6367 text-decoration: none; … … 5335 6370 border-radius: 5px; 5336 6371 transition: background-color 0.3s ease; 5337 } 5338 5339 .navigation.posts-navigation .nav-previous a:hover, 5340 .navigation.posts-navigation .nav-next a:hover { 5341 background-color: var(--secondary-color); /* Darker shade on hover */ 5342 } 5343 5344 /* Styles for Numeric Pagination */ 5345 .navigation.pagination { 6372 } 6373 6374 .navigation.posts-navigation .nav-previous a:hover, 6375 .navigation.posts-navigation .nav-next a:hover { 6376 background-color: var(--secondary-color); 6377 /* Darker shade on hover */ 6378 } 6379 6380 6381 /* Styles for Numeric Pagination */ 6382 6383 .navigation.pagination { 5346 6384 display: flex; 5347 6385 justify-content: center; 5348 6386 align-items: center; 5349 6387 margin: 20px 0; 5350 }5351 5352 .navigation.pagination .nav-links {6388 } 6389 6390 .navigation.pagination .nav-links { 5353 6391 display: flex; 5354 6392 list-style-type: none; … … 5356 6394 margin: 0; 5357 6395 margin-top: 30px; 5358 }5359 5360 .navigation.pagination .page-numbers {6396 } 6397 6398 .navigation.pagination .page-numbers { 5361 6399 display: inline-flex; 5362 6400 list-style: none; 5363 6401 padding: 7px; 5364 6402 margin: 0 5px; 5365 background-color: #f1f1f1; /* Light grey background */ 5366 color: var(--global-color); /* Blue text */ 6403 background-color: #f1f1f1; 6404 /* Light grey background */ 6405 color: var(--global-color); 6406 /* Blue text */ 5367 6407 text-decoration: none; 5368 6408 font-size: 16px; … … 5373 6413 justify-content: center; 5374 6414 cursor: pointer; 5375 } 5376 5377 /* Hover effect on page numbers */ 5378 .navigation.pagination .page-numbers:hover { 5379 background-color: var(--global-color); /* Blue background on hover */ 5380 color: #fff; /* White text on hover */ 5381 transform: scale(1.02); /* Slight scale up effect on hover */ 5382 } 5383 5384 .navigation.pagination a.page-numbers:hover,.navigation.pagination .page-numbers.dots:hover { 6415 } 6416 6417 6418 /* Hover effect on page numbers */ 6419 6420 .navigation.pagination .page-numbers:hover { 6421 background-color: var(--global-color); 6422 /* Blue background on hover */ 6423 color: #fff; 6424 /* White text on hover */ 6425 transform: scale(1.02); 6426 /* Slight scale up effect on hover */ 6427 } 6428 6429 .navigation.pagination a.page-numbers:hover, 6430 .navigation.pagination .page-numbers.dots:hover { 5385 6431 background-color: var(--secondary-color); 5386 } 5387 5388 /* Active current page style */ 5389 .navigation.pagination .current { 5390 background-color: var(--secondary-color); /* Blue background */ 5391 color: #fff; /* White text */ 6432 } 6433 6434 6435 /* Active current page style */ 6436 6437 .navigation.pagination .current { 6438 background-color: var(--secondary-color); 6439 /* Blue background */ 6440 color: #fff; 6441 /* White text */ 5392 6442 font-weight: bold; 5393 } 5394 5395 /* Previous and Next buttons (Prev/Next) */ 5396 .navigation.pagination .prev, 5397 .navigation.pagination .next { 6443 } 6444 6445 6446 /* Previous and Next buttons (Prev/Next) */ 6447 6448 .navigation.pagination .prev, 6449 .navigation.pagination .next { 5398 6450 padding: 10px 15px; 5399 6451 background-color: var(--global-color); … … 5405 6457 transition: background-color 0.3s ease, transform 0.2s ease; 5406 6458 cursor: pointer; 5407 } 5408 5409 .navigation.pagination .page-numbers:hover .navigation.pagination .current{ 5410 background-color: var(--secondary-color); /* Darker blue on hover */ 5411 } 5412 5413 .navigation.pagination .nav-links:hover .navigation.pagination .current{ 5414 background-color: var(--secondary-color); /* Darker blue on hover */ 5415 } 5416 5417 /* Hover effect on Prev/Next buttons */ 5418 .navigation.pagination .prev:hover, 5419 .navigation.pagination .next:hover { 5420 background-color: var(--secondary-color); /* Darker blue on hover */ 5421 transform: scale(1.02); /* Slight scale up effect */ 5422 } 5423 5424 /* Dots (for page gaps) */ 5425 .navigation.pagination .dots { 5426 color: #999; /* Grey color for dots */ 6459 } 6460 6461 .navigation.pagination .page-numbers:hover .navigation.pagination .current { 6462 background-color: var(--secondary-color); 6463 /* Darker blue on hover */ 6464 } 6465 6466 .navigation.pagination .nav-links:hover .navigation.pagination .current { 6467 background-color: var(--secondary-color); 6468 /* Darker blue on hover */ 6469 } 6470 6471 6472 /* Hover effect on Prev/Next buttons */ 6473 6474 .navigation.pagination .prev:hover, 6475 .navigation.pagination .next:hover { 6476 background-color: var(--secondary-color); 6477 /* Darker blue on hover */ 6478 transform: scale(1.02); 6479 /* Slight scale up effect */ 6480 } 6481 6482 6483 /* Dots (for page gaps) */ 6484 6485 .navigation.pagination .dots { 6486 color: #999; 6487 /* Grey color for dots */ 5427 6488 font-size: 16px; 5428 6489 padding: 10px; … … 5430 6491 background-color: #f1f1f1; 5431 6492 border-radius: 50px; 5432 } 5433 5434 /* Responsive Adjustments */ 5435 @media (max-width: 800px) { 6493 } 6494 6495 6496 /* Responsive Adjustments */ 6497 6498 @media (max-width: 800px) { 5436 6499 .navigation.posts-navigation .nav-links { 5437 width: 35%; 5438 } 5439 } 5440 5441 /* Responsive Adjustments */ 5442 @media (max-width: 600px) { 6500 width: 35%; 6501 } 6502 } 6503 6504 6505 /* Responsive Adjustments */ 6506 6507 @media (max-width: 600px) { 5443 6508 .navigation.pagination .page-numbers { 5444 display: block;6509 display: block; 5445 6510 } 5446 6511 ul.page-numbers li { 5447 margin: 5px 0;6512 margin: 5px 0; 5448 6513 } 5449 6514 .navigation.posts-navigation .nav-links { 5450 width: 60%; 5451 } 5452 .navigation.posts-navigation .nav-previous a, .navigation.posts-navigation .nav-next a { 5453 padding: 5px 7px; 5454 font-size: 14px; 5455 } 5456 } 5457 5458 .site-content .article-wraper-archive .theme-article-post { 6515 width: 60%; 6516 } 6517 .navigation.posts-navigation .nav-previous a, 6518 .navigation.posts-navigation .nav-next a { 6519 padding: 5px 7px; 6520 font-size: 14px; 6521 } 6522 } 6523 6524 .site-content .article-wraper-archive .theme-article-post { 5459 6525 margin-bottom: 20px; 5460 } 6526 } 6527 6528 .wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block.is-sticky { 6529 position: unset !important; 6530 } 6531 6532 footer#site-footer { 6533 margin-top: 50px; 6534 } -
home-construction-builder/1.0.7/sidebar.php
r248156 r251024 6 6 7 7 $home_construction_builder_default = home_construction_builder_get_default_theme_options(); 8 $post_id = get_the_ID(); // Get the post ID. 8 9 9 $post_id = get_the_ID(); // Get the post ID 10 if ( is_page() ) { 11 $home_construction_builder_global_sidebar_layout = esc_html( get_theme_mod( 'home_construction_builder_page_sidebar_layout', $home_construction_builder_default['home_construction_builder_global_sidebar_layout'] ) ); 12 } elseif ( is_single() ) { 13 $home_construction_builder_global_sidebar_layout = esc_html( get_theme_mod( 'home_construction_builder_post_sidebar_layout', $home_construction_builder_default['home_construction_builder_global_sidebar_layout'] ) ); 14 } else { 15 $home_construction_builder_global_sidebar_layout = esc_html( get_theme_mod( 'home_construction_builder_global_sidebar_layout', $home_construction_builder_default['home_construction_builder_global_sidebar_layout'] ) ); 16 } 10 17 11 $home_construction_builder_post_sidebar = esc_html(get_post_meta($post_id, 'home_construction_builder_post_sidebar_option', true)); 12 $home_construction_builder_sidebar_column_class = 'column-order-2'; 13 14 if (empty($home_construction_builder_post_sidebar)) { 15 $home_construction_builder_global_sidebar_layout = esc_html(get_theme_mod('home_construction_builder_global_sidebar_layout', $home_construction_builder_default['home_construction_builder_global_sidebar_layout'])); 16 } else { 17 $home_construction_builder_global_sidebar_layout = $home_construction_builder_post_sidebar; 18 } 19 if (!is_active_sidebar('sidebar-1') || $home_construction_builder_global_sidebar_layout == 'no-sidebar') { 18 // Hide the sidebar if 'no-sidebar' is selected. 19 if ( !is_active_sidebar('sidebar-1') || $home_construction_builder_global_sidebar_layout === 'no-sidebar' ) { 20 20 return; 21 21 } 22 22 23 if ($home_construction_builder_global_sidebar_layout == 'left-sidebar') { 24 $home_construction_builder_sidebar_column_class = 'column-order-1'; 25 } 23 $home_construction_builder_sidebar_column_class = $home_construction_builder_global_sidebar_layout === 'left-sidebar' ? 'column-order-1' : 'column-order-2'; 26 24 ?> 27 25 28 <aside id="secondary" class="widget-area <?php echo esc_attr( $home_construction_builder_sidebar_column_class); ?>">26 <aside id="secondary" class="widget-area <?php echo esc_attr( $home_construction_builder_sidebar_column_class ); ?>"> 29 27 <div class="widget-area-wrapper"> 30 <?php dynamic_sidebar( 'sidebar-1'); ?>28 <?php dynamic_sidebar( 'sidebar-1' ); ?> 31 29 </div> 32 30 </aside> -
home-construction-builder/1.0.7/singular.php
r248156 r251024 20 20 } ?> 21 21 22 <div id="single-page" class="singular-main-block"> 23 <div class="wrapper"> 24 <div class="column-row"> 22 <div id="single-page" class="singular-main-block"> 23 <div class="wrapper"> 24 <div class="column-row <?php echo esc_attr( $home_construction_builder_global_sidebar_layout === 'no-sidebar' ? 'no-sidebar-layout' : '' ); ?>"> 25 26 <?php if ( $home_construction_builder_global_sidebar_layout !== 'no-sidebar' && $home_construction_builder_global_sidebar_layout === 'left-sidebar' ) : ?> 27 <?php get_sidebar(); ?> 28 <?php endif; ?> 29 30 <div id="primary" class="content-area <?php echo esc_attr( $home_construction_builder_global_sidebar_layout === 'no-sidebar' ? 'full-width-content' : $home_construction_builder_sidebar_column_class ); ?>"> 31 <main id="site-content" role="main"> 25 32 26 <div id="primary" class="content-area <?php echo esc_attr($home_construction_builder_sidebar_column_class); ?>">27 <main id="site-content" class="" role="main">33 <?php 34 home_construction_builder_breadcrumb(); 28 35 29 <?php 30 home_construction_builder_breadcrumb(); 36 if ( have_posts() ): ?> 31 37 32 if( have_posts() ): ?>38 <div class="article-wraper"> 33 39 34 <div class="article-wraper"> 40 <?php while ( have_posts() ) : 41 the_post(); 35 42 36 <?php while (have_posts()) : 37 the_post(); 43 get_template_part( 'template-parts/content', 'single' ); 38 44 39 get_template_part('template-parts/content', 'single'); 45 if ( ( is_single() || is_page() ) && ( comments_open() || get_comments_number() ) && !post_password_required() ) { ?> 46 <div class="comments-wrapper"> 47 <?php comments_template(); ?> 48 </div> 49 <?php } ?> 40 50 41 if ( ( is_single() || is_page() ) && ( comments_open() || get_comments_number() ) && !post_password_required() ) {?>51 <?php endwhile; ?> 42 52 43 <div class="comments-wrapper"> 44 <?php comments_template(); ?> 45 </div> 53 </div> 46 54 47 <?php48 }55 <?php 56 else : 49 57 50 endwhile; ?>58 get_template_part( 'template-parts/content', 'none' ); 51 59 52 </div>60 endif; 53 61 54 <?php 55 else : 62 do_action( 'home_construction_builder_navigation_action' ); ?> 56 63 57 get_template_part('template-parts/content', 'none'); 58 59 endif; 60 61 /** 62 * Navigation 63 * 64 * @hooked home_construction_builder_related_posts - 20 65 * @hooked home_construction_builder_single_post_navigation - 30 66 */ 67 68 do_action('home_construction_builder_navigation_action'); ?> 69 70 </main> 71 </div> 72 <?php get_sidebar();?> 64 </main> 73 65 </div> 66 67 <?php if ( $home_construction_builder_global_sidebar_layout === 'right-sidebar' ) : ?> 68 <?php get_sidebar(); ?> 69 <?php endif; ?> 70 74 71 </div> 75 72 </div> 73 </div> 74 76 75 77 76 <?php -
home-construction-builder/1.0.7/style.css
r248156 r251024 5 5 Author: Omega Themes 6 6 Author URI: https://www.omegathemes.com/ 7 Description: Home Construction Builder is crafted for construction companies and home builders aiming to showcase their expertise in residential projects. It boasts a professional design that emphasizes clarity and functionality, ideal for highlighting services like new home construction, residential builders, custom home builders, construction companies, home renovation, house builders, remodeling contractors, building contractors, general contractors, construction services, home improvement, residential construction, property developers, building firms, new home construction, home design and build renovations, and remodeling. With its clean layout and intuitive navigation, the theme ensures visitors can easily explore project portfolios, services offered, and client testimonials. The Home Construction Builder WordPress Theme supports showcasing architectural designs and construction project management capabilities, making it suitable for general contractors and building contractors alike. It caters to modern trends in green building and sustainable construction, appealing to clients interested in energy-efficient or modular homes. Whether focusing on kitchen remodeling, bathroom renovations, or room additions, the Home Construction Builder WordPress Theme provides a platform to detail services and display completed projects effectively.Its responsive design ensures compatibility across devices, while customization options allow for branding with company colors and logos. The theme integrates seamlessly with plugins for photo galleries, project timelines, and contact forms, enhancing user engagement and lead generation. For construction companies seeking to establish an online presence or expand their client base, this theme offers the tools to attract potential customers and showcase past successes in home construction and renovation projects.7 Description: Home Construction Builder is crafted for construction companies and home builders aiming to showcase their expertise in residential projects. It boasts a professional design that emphasizes clarity and functionality, ideal for highlighting services like new home construction, residential builders, custom home builders, construction companies, home renovation, house builders, remodeling contractors, building contractors, general contractors, construction services, home improvement, residential construction, property developers, building firms, new home construction, home design and build renovations, and remodeling. With its clean layout and intuitive navigation, the theme ensures visitors can easily explore project portfolios, services offered, and client testimonials.The Home Construction Builder WordPress Theme supports showcasing architectural designs and construction project management capabilities, making it suitable for general contractors and building contractors alike. It caters to modern trends in green building and sustainable construction, appealing to clients interested in energy-efficient or modular homes. Whether focusing on kitchen remodeling, bathroom renovations, or room additions, the Home Construction Builder WordPress Theme provides a platform to detail services and display completed projects effectively.Its responsive design ensures compatibility across devices, while customization options allow for branding with company colors and logos. The theme integrates seamlessly with plugins for photo galleries, project timelines, and contact forms, enhancing user engagement and lead generation. For construction companies seeking to establish an online presence or expand their client base, this theme offers the tools to attract potential customers and showcase past successes in home construction and renovation projects. 8 8 Requires at least: 5.5 9 Tested up to: 6. 69 Tested up to: 6.7 10 10 Requires PHP: 7.2 11 Version: 1.0. 611 Version: 1.0.7 12 12 License: GNU General Public License v2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 1004 1004 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button{ 1005 1005 background-color: #fff; 1006 color: #000 ;1006 color: #000 !important; 1007 1007 border: solid 2px #000; 1008 1008 } … … 3349 3349 padding: 10px 15px; 3350 3350 } 3351 3352 /*-------------------------------------------------------------- 3353 ## Sticky 3354 --------------------------------------------------------------*/ 3355 3356 .stick_head { 3357 position: fixed !important; 3358 width: 100%; 3359 z-index: 9999; 3360 top: 0; 3361 left: 0; 3362 background:#1B3C73; 3363 } 3364 .Stickyy.login-user.stick_head { 3365 margin-top: 32px; 3366 box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; 3367 } 3368 3351 3369 3352 3370 /*-------------------------------------------------------------- … … 5496 5514 margin-bottom: 20px; 5497 5515 } 5516 5517 .wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block.is-sticky { 5518 position: unset !important; 5519 } 5520 footer#site-footer { 5521 margin-top: 50px; 5522 } -
home-construction-builder/1.0.7/template-parts/header/header-layout.php
r233437 r251024 41 41 $home_construction_builder_default['home_construction_builder_header_layout_button_url'] ) ); 42 42 43 $home_construction_builder_sticky = get_theme_mod('home_construction_builder_sticky'); 44 $home_construction_builder_data_sticky = "false"; 45 if ($home_construction_builder_sticky) { 46 $home_construction_builder_data_sticky = "true"; 47 } 43 48 ?> 44 49 45 <section id="center-header" >50 <section id="center-header" class="Stickyy <?php if( is_user_logged_in() && !isset( $wp_customize ) ){ echo "login-user";} ?>" data-sticky="<?php echo esc_attr($home_construction_builder_data_sticky); ?>"> 46 51 <div class=" header-main"> 47 52 <div class="header-right-box theme-header-areas">
Note: See TracChangeset
for help on using the changeset viewer.