Make WordPress Themes

Changeset 299558


Ignore:
Timestamp:
11/21/2025 05:36:19 AM (3 days ago)
Author:
themedropbox
Message:

New version of Security Services Elementor - 0.2.0

Location:
security-services-elementor/0.2.0
Files:
1 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • security-services-elementor/0.2.0/archive.php

    r294970 r299558  
    131131        </div>
    132132        <div class="col-lg-4 col-md-4">
    133           <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     133          <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     134            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    134135            <?php
    135136              dynamic_sidebar('sidebar-2');
     
    166167        </div>
    167168        <div class="col-lg-3 col-md-3">
    168           <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     169          <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     170            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    169171            <?php
    170172              dynamic_sidebar('sidebar-2');
     
    173175        </div>
    174176        <div class="col-lg-3 col-md-3">
    175           <div class="sidebar-area sidebar-three <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     177          <div class="sidebar-area sidebar-three <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     178            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    176179            <?php
    177180              dynamic_sidebar('sidebar-3');
  • security-services-elementor/0.2.0/assets/js/script.js

    r294970 r299558  
    247247  }
    248248});
     249
     250/* ===============================================
     251   sticky sidebar
     252============================================= */
     253
     254window.addEventListener('scroll', function () {
     255  var security_services_elementor_sidebar = document.querySelector('.sidebar-sticky');
     256  if (!security_services_elementor_sidebar) return;
     257
     258  var security_services_elementor_scrollTop = window.scrollY || document.documentElement.scrollTop;
     259  var security_services_elementor_windowHeight = window.innerHeight;
     260  var security_services_elementor_documentHeight = document.documentElement.scrollHeight;
     261
     262  var security_services_elementor_isBottom = security_services_elementor_scrollTop + security_services_elementor_windowHeight >= security_services_elementor_documentHeight - 100;
     263
     264  if (security_services_elementor_scrollTop >= 100 && !security_services_elementor_isBottom) {
     265    security_services_elementor_sidebar.classList.add('sidebar-fixed');
     266  } else {
     267    security_services_elementor_sidebar.classList.remove('sidebar-fixed');
     268  }
     269});
  • security-services-elementor/0.2.0/functions.php

    r288878 r299558  
    420420define('SECURITY_SERVICES_ELEMENTOR_LIVE_DEMO',__('https://preview.wpelemento.com/security-services-elementor/','security-services-elementor'));
    421421define('SECURITY_SERVICES_ELEMENTOR_THEME_BUNDLE',__('https://www.wpelemento.com/products/wordpress-theme-bundle','security-services-elementor'));
     422
     423require get_template_directory() . '/includes/product-create.php';
     424
     425if( class_exists( 'Whizzie' ) ) {
     426    $Whizzie = new Whizzie();
     427}
    422428}
    423429add_action('after_setup_theme', 'security_services_elementor_enqueue_setting');
  • security-services-elementor/0.2.0/includes/customizer.php

    r294970 r299558  
    688688        'type'        => 'custom',
    689689        'tab'      => 'general',
     690        'settings'    => 'security_services_elementor_enable_sidebar_sticky_heading',
     691        'section'     => 'security_services_elementor_additional_setting',
     692            'default'         => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( 'Sticky Sidebar', 'security-services-elementor' ) . '</h3>',
     693        'priority'    => 10,
     694    ] );
     695
     696    Kirki::add_field( 'theme_config_id', [
     697        'type'        => 'toggle',
     698        'tab'      => 'general',
     699        'settings'    => 'security_services_elementor_enable_sticky_sidebar',
     700        'label'       => esc_html__( 'Enable or Disable Sticky Sidebar', 'security-services-elementor' ),
     701        'section'     => 'security_services_elementor_additional_setting',
     702        'default'     => false,
     703        'priority'    => 10,
     704    ] );
     705
     706    Kirki::add_field( 'theme_config_id', [
     707        'type'        => 'custom',
     708        'tab'      => 'general',
    690709        'settings'    => 'security_services_elementor_scroll_alignment_heading',
    691710        'section'     => 'security_services_elementor_additional_setting',
  • security-services-elementor/0.2.0/index.php

    r294970 r299558  
    131131        </div>
    132132        <div class="col-lg-4 col-md-4">
    133           <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     133          <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     134            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    134135            <?php
    135136              dynamic_sidebar('sidebar-2');
     
    166167        </div>
    167168        <div class="col-lg-3 col-md-3">
    168           <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     169          <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     170            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    169171            <?php
    170172              dynamic_sidebar('sidebar-2');
     
    173175        </div>
    174176        <div class="col-lg-3 col-md-3">
    175           <div class="sidebar-area sidebar-three <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     177          <div class="sidebar-area sidebar-three <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     178            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    176179            <?php
    177180              dynamic_sidebar('sidebar-3');
  • security-services-elementor/0.2.0/page.php

    r294970 r299558  
    5151        <div class="row">
    5252          <div class="col-lg-4 col-md-4">
    53             <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     53            <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     54              <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    5455              <?php
    5556                dynamic_sidebar('sidebar-2');
     
    9798          </div>
    9899          <div class="col-lg-4 col-md-4">
    99             <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     100            <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     101              <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    100102              <?php
    101103                dynamic_sidebar('sidebar-2');
  • security-services-elementor/0.2.0/readme.txt

    r296872 r299558  
    22Contributors: wpelemento
    33Requires at least: 5.0
    4 Stable tag: 0.1.9
     4Stable tag: 0.2.0
    55Requires PHP: 5.6
    66Tested up to: 6.8
     
    8686
    8787== Changelog ==
     88
     89= November-20-2025 :: 0.2.0
     90
     91* Added sticky sidebar.
     92* Remove unwanted css.
     93* Added premium button in header section, footer section and site title section.
     94* Added header demo import.
    8895
    8996= October-31-2025 :: 0.1.9
  • security-services-elementor/0.2.0/search.php

    r294970 r299558  
    131131        </div>
    132132        <div class="col-lg-4 col-md-4">
    133           <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     133          <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     134            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    134135            <?php
    135136              dynamic_sidebar('sidebar-2');
     
    166167        </div>
    167168        <div class="col-lg-3 col-md-3">
    168           <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     169          <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     170            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    169171            <?php
    170172              dynamic_sidebar('sidebar-2');
     
    173175        </div>
    174176        <div class="col-lg-3 col-md-3">
    175           <div class="sidebar-area sidebar-three <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     177          <div class="sidebar-area sidebar-three <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     178            <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    176179            <?php
    177180              dynamic_sidebar('sidebar-3');
  • security-services-elementor/0.2.0/sidebar.php

    r294970 r299558  
    99?>
    1010
    11 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
     11<div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?>
     12  <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>">
    1213  <?php if ( ! dynamic_sidebar( 'security-services-elementor-sidebar' ) ) : ?>
    1314    <div role="complementary" aria-label="<?php echo esc_attr__( 'sidebar1', 'security-services-elementor' ); ?>" id="Search" class="sidebar-widget">
  • security-services-elementor/0.2.0/style.css

    r296872 r299558  
    55Theme URI: https://www.wpelemento.com/products/free-security-guard-wordpress-theme
    66Author URI: https://www.wpelemento.com/
    7 Version: 0.1.9
     7Version: 0.2.0
    88Requires PHP: 5.6
    99Tested up to: 6.8
     
    3838  transition: none;
    3939}
     40
    4041.screen-reader-text:focus {
    4142  background-color: #f1f1f1;
     
    5758  z-index: 100000;
    5859}
     60
    5961#content[tabindex="-1"]:focus {
    6062  outline: 0;
    6163}
     64
    6265body {
    6366  font-family: "Outfit", sans-serif;
     
    6669  background: #fff;
    6770}
     71
    6872h1,
    6973h2,
     
    7680  font-family: "Outfit", sans-serif;
    7781}
     82
    7883a {
    7984  color: #121212;
     
    8489  text-decoration: none;
    8590}
     91
    8692a:hover,
    8793a:focus {
     
    8995  text-decoration: none;
    9096}
     97
    9198.post-single a,
    9299.page-single a,
     
    99106  color: var(--primary-theme-color);
    100107}
     108
    101109.post-content a {
    102110  color: var(--primary-theme-color);
    103111}
     112
    104113/* ===============================================
    105114   HEADER BOX
     
    108117  background: #211919;
    109118}
     119
    110120.quote-btn a {
    111121  border-radius: 6px;
     
    117127  font-weight: 500;
    118128}
     129
    119130.quote-btn a:hover {
    120131  background: var(--primary-theme-color);
     
    122133  color: #fff;
    123134}
     135
    124136/* ===============================================
    125137  FOOTER SOCIAL ICONS
     
    129141  padding: 6px 0px;
    130142}
     143
    131144.footer-links i {
    132145  color: #000;
     
    135148  border-radius: 3px;
    136149}
     150
    137151.footer-links i:hover {
    138152  color: var(--primary-theme-color);
    139153}
     154
    140155/* ===============================================
    141156   HEADER IMAGE
     
    149164  background-position: center;
    150165}
     166
    151167.header-image-box:before {
    152168  position: absolute;
     
    159175  z-index: 1;
    160176}
     177
    161178.header-image-box h1,
    162179.headerimgbox-meta span,
     
    168185  color: #fff;
    169186}
     187
    170188.header-image-box h1 {
    171189  font-size: 65px;
    172190}
     191
    173192.header-image-box h1,
    174193.post-title a {
    175194  word-wrap: break-word;
    176195}
     196
    177197/* ===============================================
    178198   LOGO BOX
     
    190210  font-weight: bold;
    191211}
     212
    192213.logo span {
    193214  display: block;
     
    196217  color: #fff;
    197218}
     219
    198220/* ===============================================
    199221   MENU BOX
     
    203225  position: relative;
    204226}
     227
    205228#main-menu ul {
    206229  margin: 0;
     
    208231  display: block;
    209232}
     233
    210234#main-menu ul li {
    211235  position: relative;
     
    214238  text-align: left;
    215239}
     240
    216241#main-menu ul li a {
    217242  display: block;
     
    224249  text-transform: capitalize;
    225250}
     251
    226252#main-menu .sub-menu li a:hover::after {
    227253  display: none;
    228254}
     255
    229256#main-menu a:hover,
    230257#main-menu ul li a:hover,
    231 #main-menu li:hover > a,
     258#main-menu li:hover>a,
    232259#main-menu a:focus,
    233260#main-menu ul li a:focus,
    234 #main-menu li.focus > a,
    235 #main-menu li:focus > a,
    236 #main-menu ul li.current-menu-item > a,
    237 #main-menu ul li.current_page_item > a,
    238 #main-menu ul li.current-menu-parent > a,
    239 #main-menu ul li.current_page_ancestor > a,
    240 #main-menu ul li.current-menu-ancestor > a {
     261#main-menu li.focus>a,
     262#main-menu li:focus>a,
     263#main-menu ul li.current-menu-item>a,
     264#main-menu ul li.current_page_item>a,
     265#main-menu ul li.current-menu-parent>a,
     266#main-menu ul li.current_page_ancestor>a,
     267#main-menu ul li.current-menu-ancestor>a {
    241268  color: var(--primary-theme-color);
    242269}
     270
    243271#main-menu ul.children,
    244272#main-menu ul.sub-menu {
     
    256284  transition: opacity 0.3s ease 0s;
    257285}
     286
    258287#main-menu ul.children li,
    259288#main-menu ul.sub-menu li {
     
    266295  margin: 0;
    267296}
    268 #main-menu li li:hover > ul,
    269 #main-menu li li:focus > ul,
    270 #main-menu li li.focus > ul {
     297
     298#main-menu li li:hover>ul,
     299#main-menu li li:focus>ul,
     300#main-menu li li.focus>ul {
    271301  top: 0px;
    272302  left: -100%;
    273303}
     304
    274305#main-menu ul.children li a,
    275306#main-menu ul.sub-menu li a {
     
    283314  color: #121212;
    284315}
     316
    285317#main-menu ul.children li a:hover,
    286318#main-menu ul.sub-menu li a:hover {
     
    289321  border-radius: 0;
    290322}
     323
    291324#main-menu ul.children li ul:before,
    292325#main-menu ul.sub-menu li ul:before,
     
    296329  display: none;
    297330}
    298 #main-menu li:hover > ul,
    299 #main-menu li:focus > ul,
    300 #main-menu li.focus > ul {
     331
     332#main-menu li:hover>ul,
     333#main-menu li:focus>ul,
     334#main-menu li.focus>ul {
    301335  opacity: 1;
    302336  left: 0;
    303337}
     338
    304339/* ===============================================
    305340  menu dropdown css
     
    317352  color: #fff;
    318353}
     354
    319355#main-menu ul li.menu-item-has-children {
    320356  padding-right: 10px;
    321357  margin-right: 10px;
    322358}
     359
    323360#main-menu ul.sub-menu li.menu-item-has-children:after {
    324361  right: 30px;
    325362}
     363
    326364img.custom-logo {
    327365  max-width: 100%;
    328366}
     367
    329368/* ===============================================
    330369   POST BOX
     
    334373  background: #f2f8ff;
    335374}
     375
    336376.post-box {
    337377  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%);
     
    339379  text-align: center;
    340380}
     381
    341382h3.post-title {
    342383  font-size: 25px;
    343384}
     385
    344386.related-post h3.post-title {
    345387  font-size: 21px;
    346388}
     389
    347390.post-content p {
    348391  color: #5b5b5b;
    349392}
     393
    350394.post-meta,
    351395.crumb-box a:hover {
    352396  color: var(--primary-theme-color);
    353397}
     398
    354399pre {
    355400  display: block;
     
    364409  border-radius: 4px;
    365410}
     411
    366412.post-content img,
    367413.post-thumbnail img,
     
    371417  max-width: 100%;
    372418}
     419
    373420.post-content img,
    374421.post-thumbnail img {
     
    376423  height: auto;
    377424}
     425
    378426.post-content:after {
    379427  content: "";
     
    381429  clear: both;
    382430}
     431
    383432.post-content {
    384433  word-wrap: break-word;
    385434}
     435
    386436#content,
    387437footer {
     
    389439  width: 100%;
    390440}
     441
    391442.box {
    392443  background-color: rgb(171 171 171 / 70%);
     
    395446  position: relative;
    396447}
     448
    397449.post-box:hover:before {
    398450  opacity: 1;
    399451  transform: translateX(0);
    400452}
     453
    401454.box img {
    402455  width: 100%;
     
    405458  transition: all 0.5s ease;
    406459}
     460
    407461.post-box:hover img {
    408462  opacity: 0.2;
    409463  transform: translateX(20px) scale(1.15);
    410464}
     465
    411466.box .box-content {
    412467  opacity: 0;
     
    421476  transition: all 0.5s ease;
    422477}
     478
    423479.post-box:hover .box-content {
    424480  opacity: 1;
    425481  transform: scale(1);
    426482}
     483
    427484p.slider-button a {
    428485  background: var(--primary-theme-color);
     
    432489  font-weight: bold;
    433490}
     491
    434492p.slider-button a:hover {
    435493  background: #121212;
    436494}
     495
    437496.post-info span,
    438497.post-info a {
     
    442501  display: inline-block;
    443502}
     503
    444504.post-info a:hover,
    445505.entry-date:hover a,
     
    449509  color: var(--primary-theme-color);
    450510}
     511
    451512.post-info i {
    452513  color: var(--primary-theme-color);
    453514  font-size: 12px;
    454515}
     516
    455517/* Edit link  */
    456518.link-edit {
     
    458520  margin-left: 10px;
    459521}
     522
    460523.post-info {
    461524  display: inline-block;
    462525}
     526
    463527.link-edit::before {
    464528  content: "\f044";
    465529  color: var(--primary-theme-color);
    466530}
     531
    467532.link-edit::before {
    468533  display: inline-block;
     
    471536  margin-right: 8px;
    472537}
     538
    473539.post-edit-link {
    474540  color: #000 !important;
    475541}
     542
    476543/* ===============================================
    477544   Pagination
     
    482549  margin: 25px 0;
    483550}
     551
    484552.pagination .nav-links a,
    485553.pagination .nav-links span.current,
     
    496564  background: #f3f4f7;
    497565}
     566
    498567.pagination .nav-links a:hover,
    499568.pagination .nav-links a:focus,
     
    514583  color: #fff;
    515584}
     585
    516586.comment-respond input#submit:hover,
    517587.comment-reply a:hover {
    518588  background: #121212;
    519589}
     590
    520591.comment-form-url input,
    521592nav.navigation.pagination {
    522593  width: 100%;
    523594}
     595
    524596.comment-respond input#submit {
    525597  background: var(--primary-theme-color);
     
    529601  font-weight: 600;
    530602}
     603
    531604.comment-content a {
    532605  word-wrap: break-word;
    533606}
     607
    534608.bypostauthor {
    535609  display: block;
    536610}
     611
    537612.comments-title {
    538613  font-size: 1.125rem;
    539614}
     615
    540616.comment-body .pull-left {
    541617  padding-right: 0.625rem;
    542618}
     619
    543620.comment-list {
    544621  padding-left: 0;
    545622  border-bottom: 1px solid #00000047;
    546623}
     624
    547625.comment-list .comment {
    548626  display: block;
    549627}
     628
    550629.comment-list .pingback {
    551630  border-top: 1px solid rgba(0, 0, 0, 0.125);
    552631  padding: 0.563rem 0;
    553632}
     633
    554634.comment-list .pingback a {
    555635  margin-left: 5px;
    556636  margin-right: 5px;
    557637}
     638
    558639.comment-content.card-block {
    559640  padding: 15px;
    560641}
     642
    561643.comment-reply a {
    562644  padding: 10px;
     
    564646  background: var(--primary-theme-color);
    565647}
     648
    566649/* ===============================================
    567650   SIDEBARS
     
    572655  padding: 0 0 0 20px;
    573656}
     657
    574658.sidebar-area .textwidget img,
    575659.footer-area .textwidget img {
     
    577661  height: auto;
    578662}
     663
    579664.sidebar-area .sidebar-widget {
    580665  margin-bottom: 25px;
    581666}
     667
    582668.sidebar-area a,
    583669.sidebar-area p,
     
    592678  font-weight: normal;
    593679}
     680
    594681.sidebar-area ul,
    595682#calendar_wrap,
     
    599686  margin: 0;
    600687}
     688
    601689.sidebar-area ul {
    602690  padding: 15px 30px 25px;
     
    604692  border: solid 1px #e4e7ee;
    605693}
     694
    606695.wp-calendar .sidebar-area li a,
    607696.sidebar-area li {
     
    609698  color: #5b5b5b;
    610699}
     700
    611701.sidebar-area li a:hover,
    612702.sidebar-area li:hover {
    613703  color: var(--primary-theme-color);
    614704}
     705
    615706.sidebar-area li {
    616707  padding: 14px 10px;
    617708  border-bottom: solid 1px #e4e7ee;
    618709}
     710
    619711.sidebar-area h4.title {
    620712  position: relative;
     
    623715  margin-bottom: 20px;
    624716}
     717
    625718.sidebar-area h4.title:before {
    626719  position: absolute;
     
    634727  margin: auto;
    635728}
     729
    636730.sidebar-area h4.title:after {
    637731  position: absolute;
     
    646740  margin: auto;
    647741}
     742
    648743.sidebar-area .tagcloud a,
    649744.footer-area .tagcloud a {
     
    656751  border: solid 1px #e4e7ee;
    657752}
     753
    658754.footer-area .tagcloud a {
    659755  border: solid 1px #fff;
    660756  color: #fff;
    661757}
     758
    662759.sidebar-area .tagcloud a:before,
    663760.footer-area .tagcloud a:before {
    664761  content: "#";
    665762}
     763
    666764.sidebar-area .tagcloud a:hover,
    667765.footer-area .tagcloud a:hover {
     
    669767  color: #fff;
    670768}
     769
    671770.sidebar-area .wp-block-group__inner-container h2 {
    672771  color: #000000 !important;
    673772  font-size: 20px;
    674773}
     774
    675775.sidebar-area select,
    676776.footer-area select,
     
    702802  border: solid 1px #e4e7ee;
    703803}
     804
    704805.sidebar-area ol.wp-block-latest-comments {
    705806  padding-left: 0px;
    706807}
     808
    707809#wp-calendar th,
    708810#wp-calendar #today,
     
    711813  color: #434343 !important;
    712814}
     815
    713816#wp-calendar a:hover {
    714817  border: none;
    715818}
     819
    716820#wp-calendar {
    717821  background: #fff;
    718822  width: 100%;
    719823}
     824
    720825#wp-calendar caption {
    721826  font-size: 14px;
     
    726831  font-weight: 500;
    727832}
     833
    728834#wp-calendar th,
    729835#wp-calendar td {
     
    733839  padding: 3px 6px;
    734840}
     841
    735842#wp-calendar td a {
    736843  display: block;
     
    740847  text-decoration: underline;
    741848}
     849
    742850#wp-calendar td#prev a,
    743851#wp-calendar td#prev a {
     
    745853  text-align: left;
    746854}
     855
    747856#wp-calendar th {
    748857  font-weight: bold;
    749858}
     859
    750860tr:nth-child(2n + 2) {
    751861  background-color: #f3f4f7;
    752862}
     863
    753864.searchform label {
    754865  display: block;
    755866}
     867
    756868.searchform input[type="text"] {
    757869  width: calc(100% - 110px);
     
    762874  border: none;
    763875}
     876
    764877#searchform {
    765878  border: solid 1px #e4e7ee;
    766879  border-radius: 30px;
    767880}
     881
    768882.searchform input[type="submit"] {
    769883  background: var(--primary-theme-color);
     
    786900  transition: color 0.3s ease, background-color 0.3s ease;
    787901}
     902
    788903.searchform input[type="submit"]:hover,
    789904.searchform input[type="submit"]:focus {
     
    791906  text-decoration: none;
    792907}
     908
    793909.searchform:after {
    794910  content: "";
     
    796912  clear: both;
    797913}
     914
    798915.footer-widget {
    799916  background: #000;
    800917}
     918
    801919.footer-copyright {
    802920  background: var(--primary-theme-color);
    803921}
     922
    804923footer a,
    805924footer p,
     
    817936  color: #fff;
    818937}
     938
    819939.footer-area ul {
    820940  padding: 0;
    821941  list-style: none;
    822942}
     943
    823944.footer-area h4.title {
    824945  font-size: 30px;
     
    827948  word-wrap: break-word;
    828949}
     950
    829951.footer-area li {
    830952  padding: 8px 0;
    831953}
     954
    832955.footer-area input[type="search"] {
    833956  width: 100%;
     
    836959  border: solid 1px#4d4d4d;
    837960}
     961
    838962.footer-area form.woocommerce-product-search button,
    839963#sidebar form.woocommerce-product-search button {
     
    848972  border: solid 1pxvar (--primary-theme-color);
    849973}
     974
    850975img.size-auto,
    851976img.size-full,
     
    859984  height: auto;
    860985}
     986
    861987.alignleft,
    862988img.alignleft {
     
    866992  margin-top: 4px;
    867993}
     994
    868995.alignright,
    869996img.alignright {
     
    8731000  margin-top: 4px;
    8741001}
     1002
    8751003div.aligncenter,
    8761004img.aligncenter {
     
    8801008  float: none;
    8811009}
     1010
    8821011img.alignleft,
    8831012img.alignright,
     
    8851014  margin-bottom: 12px;
    8861015}
     1016
    8871017.wp-caption {
    8881018  line-height: 18px;
     
    8921022  text-align: center;
    8931023}
     1024
    8941025.wp-caption img {
    8951026  margin: 5px 5px 0;
     
    8971028  height: 100%;
    8981029}
     1030
    8991031.wp-caption p.wp-caption-text {
    9001032  color: #888;
     
    9111043  border-radius: 30px;
    9121044}
    913 .sidebar-area
    914   .widget_search
    915   .wp-block-search__inside-wrapper
    916   .wp-block-search__input {
     1045
     1046.sidebar-area .widget_search .wp-block-search__inside-wrapper .wp-block-search__input {
    9171047  width: calc(100% - 110px);
    9181048  margin: 0;
     
    9221052  border: none;
    9231053}
     1054
    9241055.sidebar-area .widget_search button.wp-block-search__button.wp-element-button {
    9251056  background: var(--primary-theme-color);
     
    9421073  transition: color 0.3s ease, background-color 0.3s ease;
    9431074}
     1075
    9441076.sidebar-area .widget_search button.wp-block-search__button:hover,
    9451077.sidebar-area .widget_search button.wp-block-search__button:focus {
     
    9471079  text-decoration: none;
    9481080}
     1081
    9491082.sidebar-area .widget_search .wp-block-search__inside-wrapper {
    9501083  content: "";
     
    9611094  color: #000;
    9621095}
     1096
    9631097.sidebar-area .wp-block-search label {
    9641098  display: inline;
    9651099}
     1100
    9661101.sidebar-area .widget_search label:before,
    9671102.sidebar-area .sidebar-widget.widget_block .wp-block-heading:before {
     
    9761111  margin: auto;
    9771112}
     1113
    9781114.sidebar-area .widget_search label:after,
    9791115.sidebar-area .sidebar-widget.widget_block .wp-block-heading:after {
     
    9891125  margin: auto;
    9901126}
     1127
    9911128.sidebar-area .wp-block-tag-cloud a,
    9921129.footer-area .wp-block-tag-cloud a,
     
    10001137  border: solid 1px #e4e7ee;
    10011138}
     1139
    10021140.footer-area .wp-block-tag-cloud a {
    10031141  border: solid 1px #fff;
    10041142  color: #fff;
    10051143}
     1144
    10061145.sidebar-area .wp-block-tag-cloud a:before,
    10071146.footer-area .wp-block-tag-cloud a:before,
     
    10091148  content: "#";
    10101149}
     1150
    10111151.sidebar-area .wp-block-tag-cloud a:hover,
    10121152.footer-area .wp-block-tag-cloud a:hover,
     
    10151155  color: #fff;
    10161156}
     1157
    10171158.sidebar-area ol footer.wp-block-latest-comments__comment-meta {
    10181159  float: none !important;
    10191160}
     1161
    10201162.sidebar-area ol.wp-block-latest-comments {
    10211163  padding-left: 0px !important;
     
    10241166  border: solid 1px #e4e7ee;
    10251167}
     1168
    10261169.footer-area .wp-block-heading {
    10271170  font-size: 30px;
     
    10301173  word-wrap: break-word;
    10311174}
     1175
    10321176/* WOOCOMMERCE */
    10331177/* Cart */
     
    10361180  margin-left: auto;
    10371181}
     1182
    10381183.wp-block-woocommerce-checkout.alignwide {
    10391184  margin-right: auto;
    10401185  margin-left: auto;
    10411186}
     1187
    10421188.wp-block-woocommerce-cart .wc-block-cart-items {
    10431189  border: 1px solid #dee2e6 !important;
     
    10451191  padding: 10px;
    10461192}
     1193
    10471194.wp-block-woocommerce-cart-order-summary-block {
    10481195  border: 1px solid #dee2e6 !important;
    10491196  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%);
    10501197}
     1198
    10511199.wp-block-woocommerce-cart-order-summary-heading-block {
    10521200  padding: 10px 20px !important;
    10531201  background: #f3f4f7 !important;
    10541202}
     1203
    10551204.wc-block-components-product-name {
    10561205  font-size: 20px;
     
    10591208  color: #000 !important;
    10601209}
     1210
    10611211.wc-block-cart-items__header-image {
    10621212  padding-left: 16px !important;
    10631213}
     1214
    10641215.wc-block-cart-items__header-total {
    10651216  padding-right: 16px !important;
    10661217}
     1218
    10671219.wc-block-components-totals-coupon-link,
    10681220.wc-block-cart__submit-container a,
     
    10881240  text-decoration: none !important;
    10891241}
     1242
    10901243.yith-wcwl-wishlistexistsbrowse a,
    10911244.yith-wcwl-wishlistaddedbrowse a {
     
    10931246  color: #fff !important;
    10941247}
     1248
    10951249.yith-wcwl-add-to-wishlist.exists .yith-wcwl-wishlistaddedbrowse {
    10961250  display: inline-block !important;
    10971251}
     1252
    10981253.entry-summary .yith-wcwl-add-button a,
    10991254.entry-summary .yith-wcwl-wishlistexistsbrowse,
     
    11011256  margin-bottom: 10px;
    11021257}
     1258
    11031259.wc-block-components-totals-coupon__form button {
    11041260  margin-top: 0px !important;
    11051261}
     1262
    11061263.entry-summary .yith-wcwl-add-button,
    11071264.products .yith-wcwl-add-button {
     
    11091266  margin-bottom: 10px;
    11101267}
     1268
    11111269.wc-block-cart__submit-container a {
    11121270  margin-top: 20px;
    11131271}
     1272
    11141273.wc-block-components-totals-coupon-link:hover,
    11151274.wc-block-cart__submit-container:hover a,
     
    11201279  background: #121212;
    11211280}
     1281
    11221282.wc-block-components-totals-coupon {
    11231283  text-align: center;
    11241284}
     1285
    11251286.wc-block-cart-items__header-product {
    11261287  background: #f3f4f7 !important;
    11271288}
     1289
    11281290.wc-block-cart-items__header th {
    11291291  padding: 10px 20px !important;
    11301292  font-size: 14px;
    11311293}
     1294
    11321295.wc-block-cart__totals-title {
    11331296  font-size: 14px !important;
     
    11351298  text-align: center !important;
    11361299}
     1300
    11371301tr.wc-block-cart-items__row {
    11381302  padding: 15px 15px !important;
    11391303}
     1304
    11401305.wc-block-components-totals-item,
    11411306.wc-block-components-totals-item {
     
    11431308  padding-right: 16px !important;
    11441309}
     1310
    11451311span.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    11461312  display: block !important;
    11471313}
     1314
    11481315#commentform input[type="text"],
    11491316#commentform input[type="email"],
     
    11591326  height: auto;
    11601327}
     1328
    11611329.woocommerce-message p {
    11621330  flex-basis: 55%;
    11631331}
     1332
    11641333.product .price ins,
    11651334.price .woocommerce-Price-amount.amount {
     
    11671336  font-weight: 600;
    11681337}
     1338
    11691339.product .price del .woocommerce-Price-amount.amount {
    11701340  font-size: 18px !important;
    11711341  font-weight: 500 !important;
    11721342}
     1343
    11731344.product .price {
    11741345  margin: 10px 0px !important;
    11751346}
     1347
    11761348/* single product review form */
    11771349#reviews .comment-form {
     
    11791351  flex-direction: column;
    11801352}
     1353
    11811354#reviews .comment-form-author {
    11821355  order: 1;
    11831356}
     1357
    11841358#reviews .comment-form-email {
    11851359  order: 2;
    11861360}
     1361
    11871362#reviews .comment-form-comment {
    11881363  order: 3;
    11891364}
     1365
    11901366#reviews .comment-form-cookies-consent {
    11911367  order: 4;
    11921368}
     1369
    11931370#reviews .form-submit {
    11941371  order: 5;
     
    11991376  padding-left: 0;
    12001377}
     1378
    12011379.wishlist_table.mobile table {
    12021380  width: auto;
    12031381}
     1382
    12041383.wishlist_table.mobile li {
    12051384  padding: 15px;
    12061385  border: 1px solid rgba(0, 0, 0, 0.1);
    12071386}
     1387
    12081388.cart.wishlist_table .additional-info-wrapper {
    12091389  display: flex;
     
    12111391  justify-content: space-around;
    12121392}
     1393
    12131394ul.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile {
    12141395  display: grid;
     
    12161397  gap: 10px;
    12171398}
     1399
    12181400.wishlist_table.images_grid li .item-details table.item-details-table td.label,
    12191401.wishlist_table.mobile li .item-details table.item-details-table td.label,
     
    12221404  font-size: 16px !important;
    12231405}
     1406
    12241407.wishlist_table.mobile li .item-details table.item-details-table td,
    12251408.additional-info .value {
     
    12281411  font-family: "Exo 2", sans-serif;
    12291412}
     1413
    12301414.main-product-section .wishlist_view {
    12311415  display: block !important;
    12321416}
     1417
    12331418.share-button i::before {
    12341419  font-family: "FontAwesome";
    12351420}
     1421
    12361422.hidden-title-form button i,
    12371423.wishlist-title a.show-title-form i,
     
    12401426.wishlist_table .add_to_cart.button i,
    12411427.wishlist_table .ask-an-estimate-button i,
    1242 .yith-wcwl-add-button > a i,
     1428.yith-wcwl-add-button>a i,
    12431429.yith-wcwl-wishlist-new button i,
    12441430.yith-wcwl-wishlist-search-form button.wishlist-search-button i {
    12451431  margin-right: 0px !important;
    12461432}
     1433
    12471434.wpr-grid-slider-dots {
    12481435  z-index: 9 !important;
    12491436}
     1437
    12501438.wishlist_table tr td,
    12511439.wishlist_table tr th.product-checkbox,
     
    12531441  text-align: left !important;
    12541442}
     1443
    12551444/* Cart */
    12561445.wc-block-grid__product-title {
     
    12591448  text-decoration: none !important;
    12601449}
     1450
    12611451a.wc-block-grid__product-link {
    12621452  text-decoration: none !important;
    12631453}
     1454
    12641455.wc-block-grid__product-price {
    12651456  color: var(--primary-theme-color) !important;
     
    12671458  font-weight: 500 !important;
    12681459}
     1460
    12691461.wc-block-grid .wc-block-grid__product-onsale,
    12701462.wc-block-grid__product-image .wc-block-grid__product-onsale {
     
    12801472  color: #fff !important;
    12811473}
     1474
    12821475.wc-block-grid__products .wc-block-grid__product-image img {
    12831476  width: 100% !important;
    12841477}
     1478
    12851479/* CHECKOUT */
    12861480.wp-block-woocommerce-checkout-order-summary-block {
     
    12891483  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%);
    12901484}
     1485
    12911486/* MY ACCOUNT */
    12921487
     
    12961491  margin-bottom: 0;
    12971492}
     1493
    12981494nav.woocommerce-MyAccount-navigation ul li {
    12991495  padding: 10px;
     
    13011497  background: var(--primary-theme-color);
    13021498}
     1499
    13031500nav.woocommerce-MyAccount-navigation ul li:hover {
    13041501  background: #121212;
    13051502}
     1503
    13061504nav.woocommerce-MyAccount-navigation ul li a {
    13071505  text-decoration: none;
    13081506  color: #fff;
    13091507}
     1508
    13101509/* MY ACCOUNT Address Button */
    13111510.woocommerce-Address-title a {
     
    13181517  text-decoration: none !important;
    13191518}
     1519
    13201520header.woocommerce-Address-title.title {
    13211521  display: inline-grid;
    13221522  margin-bottom: 20px;
    13231523}
     1524
    13241525/* CHECKOUT */
    13251526.woocommerce form .form-row label,
     
    13291530  width: 100%;
    13301531}
     1532
    13311533/* BUTTONS */
    13321534.woocommerce #respond input#submit.alt,
     
    13441546  border-radius: 7px !important;
    13451547}
     1548
    13461549.woocommerce #respond input#submit.alt:hover,
    13471550.woocommerce a.button.alt:hover,
     
    13561559  color: #fff;
    13571560}
     1561
    13581562.woocommerce a.added_to_cart {
    13591563  padding: 0.618em 1em;
     
    13621566  border-radius: 0px;
    13631567}
     1568
    13641569/* SHOP & SINGLE PRODUCT */
    13651570
     
    13761581  min-height: 2em !important;
    13771582}
     1583
    13781584.woocommerce span.onsale {
    13791585  left: 10px;
    13801586  right: auto;
    13811587}
     1588
    13821589h2.woocommerce-loop-product__title {
    13831590  font-size: 18px !important;
    13841591}
     1592
    13851593.woocommerce ul.products li.product .price,
    13861594.woocommerce div.product p.price,
     
    13911599  font-size: 18px;
    13921600}
     1601
    13931602.woocommerce ul.products li.product .price ins,
    13941603.woocommerce div.product p.price ins,
     
    13961605  text-decoration: none;
    13971606}
     1607
    13981608.woocommerce ul.products li.product,
    13991609.woocommerce-page ul.products li.product {
    14001610  text-align: center;
    14011611}
     1612
    14021613.woocommerce .quantity .qty {
    14031614  width: 9em;
    14041615  padding: 8px;
    14051616}
     1617
    14061618.woocommerce ul.products li.product .star-rating {
    14071619  font-size: 12px;
     
    14161628  background: transparent;
    14171629}
     1630
    14181631.wp-block-button__link {
    14191632  color: #fff !important;
     
    14211634  margin-bottom: 5px;
    14221635}
     1636
    14231637.wp-block-button.is-style-outline .wp-block-button__link {
    14241638  border: 1px solid var(--primary-theme-color);
    14251639  color: #121212 !important;
    14261640}
     1641
    14271642.wp-block-button.is-style-squared .wp-block-button__link {
    14281643  border-radius: 0px !important;
    14291644}
     1645
    14301646.product .add_to_cart_button.added {
    14311647  display: none !important;
    14321648}
     1649
    14331650/* shop page additional css */
    14341651.woocommerce ul.products li.product a img {
     
    14391656  border-radius: 20px;
    14401657}
     1658
    14411659.woocommerce ul.products li.product,
    14421660.woocommerce-page ul.products li.product {
     
    14451663  padding: 10px;
    14461664}
     1665
    14471666ul.products a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
    14481667a.added_to_cart.wc-forward {
    14491668  padding: 8px 30px;
    14501669}
     1670
    14511671ul.products h2.woocommerce-loop-product__title {
    14521672  color: var(--primary-theme-color);
     
    14621682  font-weight: bold;
    14631683}
     1684
    14641685.woocommerce nav.woocommerce-pagination ul li a {
    14651686  display: block;
     
    14741695  border-radius: 10px;
    14751696}
     1697
    14761698.woocommerce nav.woocommerce-pagination ul li a:hover {
    14771699  background: var(--primary-theme-color);
     
    14851707  overflow: unset;
    14861708}
     1709
    14871710.woocommerce nav.woocommerce-pagination {
    14881711  text-align: center;
    14891712  margin-bottom: 20px;
    14901713}
     1714
    14911715/*  SINGLE POST */
    14921716.single-post-category span {
     
    14941718  color: #5b5b5b;
    14951719}
     1720
    14961721.single-post-category .post-categories li,
    14971722.single-post-category ul {
     
    14991724  padding-left: 0px;
    15001725}
     1726
    15011727.single-post-category .post-categories li a {
    15021728  margin-right: 8px;
     
    15101736  line-height: 1;
    15111737}
     1738
    15121739.single-post-category .post-categories li a:hover {
    15131740  background: #000000;
    15141741}
     1742
    15151743/*scroll-to-top*/
    15161744.scroll-up {
     
    15201748  z-index: 999;
    15211749}
     1750
    15221751.scroll-up a {
    15231752  background: var(--primary-theme-color);
    15241753  color: #ffffff;
    15251754}
     1755
    15261756.scroll-up a {
    15271757  display: block;
     
    15371767  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    15381768}
     1769
    15391770.scroll-up i {
    15401771  line-height: 40px;
     
    15541785  align-items: center;
    15551786}
     1787
    15561788.preloader {
    15571789  animation: move 0.5s ease infinite alternate;
    15581790}
     1791
    15591792.diamond {
    15601793  width: 60px;
     
    15661799  align-items: center;
    15671800}
     1801
    15681802.diamond span {
    15691803  width: 60px;
     
    15731807  left: 0;
    15741808}
     1809
    15751810.diamond span:nth-child(1) {
    15761811  border: 10px solid var(--primary-theme-color);
     
    15791814  transform: rotateX(90deg) rotateZ(45deg);
    15801815}
     1816
    15811817.diamond span:nth-child(2) {
    15821818  border: 6px solid var(--primary-theme-color);
     
    15851821  transform: rotateX(90deg) rotateY(90deg) rotateZ(45deg);
    15861822}
     1823
    15871824.diamond span:last-child {
    15881825  border: 6px solid var(--primary-theme-color);
     
    15911828  transform: rotateZ(45deg);
    15921829}
     1830
    15931831@keyframes move {
    15941832  0% {
    15951833    transform: translateY(0) scaleY(0.9);
    15961834  }
     1835
    15971836  100% {
    15981837    transform: translateY(-70px) scaleY(1.1);
    15991838  }
    16001839}
     1840
    16011841@keyframes spin {
    16021842  0% {
    16031843    transform: translateY(-50%) rotateX(-15deg) rotateY(0deg);
    16041844  }
     1845
    16051846  100% {
    16061847    transform: translateY(-50%) rotateX(-15deg) rotateY(180deg);
    16071848  }
    16081849}
     1850
    16091851.result-search #searchform {
    16101852  display: table;
    16111853}
     1854
    16121855.not-found-content #searchform {
    16131856  display: inline-block;
    16141857}
     1858
    16151859.footer-copyright a,
    16161860.footer-copyright p {
    16171861  color: #ffffff;
    16181862}
     1863
    16191864/* ===============================================
    16201865  Progress Bar
     
    16271872  z-index: 99999;
    16281873}
     1874
    16291875#elemento-progress-bar.top {
    16301876  top: 0;
    16311877}
     1878
    16321879.admin-bar #elemento-progress-bar.top {
    16331880  top: 32px;
    16341881}
     1882
    16351883#elemento-progress-bar.bottom {
    16361884  bottom: 0;
    16371885}
     1886
    16381887/* ===============================================
    16391888   HOME PAGE CSS
     
    16441893  color: var(--primary-theme-color) !important;
    16451894}
     1895
    16461896.info-sec {
    16471897  border: 1px Solid !important;
    16481898}
     1899
    16491900.plan-sec .price {
    16501901  font-size: 26px !important;
     
    16541905  letter-spacing: 0.52px;
    16551906}
     1907
    16561908.plan-sec ul li i {
    16571909  color: #fff;
    16581910  font-size: 15px;
    16591911}
     1912
    16601913.plan-sec ul li {
    16611914  overflow: hidden;
     
    16651918}
    16661919
    1667  /* Wide Block  */
    1668  
    1669  .alignwide {
    1670   margin-left  : -60px;
    1671   margin-right : -60px;
    1672 }
     1920/* ===============================================
     1921   Wide Block
     1922============================================= */
     1923
     1924.alignwide {
     1925  margin-left: -60px;
     1926  margin-right: -60px;
     1927}
     1928
    16731929.alignfull {
    1674   margin-left  : calc( -100vw / 2 + 100% / 2 );
    1675   margin-right : calc( -100vw / 2 + 100% / 2 );
    1676   max-width    : 100vw;
    1677 }
    1678 
    1679 /* Sticky Copyright */
    1680 
    1681 .sticky-copyright.footer-copyright{
     1930  margin-left: calc(-100vw / 2 + 100% / 2);
     1931  margin-right: calc(-100vw / 2 + 100% / 2);
     1932  max-width: 100vw;
     1933}
     1934
     1935/* ===============================================
     1936   Sticky Copyright
     1937============================================= */
     1938
     1939.sticky-copyright.footer-copyright {
    16821940  position: fixed;
    1683   bottom:0;
    1684   left:0;
     1941  bottom: 0;
     1942  left: 0;
    16851943  width: 100%;
    16861944  z-index: 999;
     
    16881946  box-shadow: 0px 0px 8px #000000;
    16891947}
    1690 .close-sticky {
    1691   position: static;
    1692 }
     1948
     1949/* ===============================================
     1950   Sticky Sidebar
     1951============================================= */
     1952
     1953.sidebar-sticky {
     1954  position: sticky;
     1955  top: 100px;
     1956  z-index: 999;
     1957}
Note: See TracChangeset for help on using the changeset viewer.