@import "main.css";
@import "diy.css";
@import "fonts/stylesheet.css";
/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/



.map-box {
           
            width: 100%;
            box-sizing: border-box;
        }
        .map-container {
            position: relative;
            width: 100%;
    
            overflow: hidden;
      
            user-select: none;
            display: inline-block;
        }

        .map-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .country-marker {
            position: absolute;
            width: 14px;
            height: 14px;
            background: radial-gradient(circle, #ffd700 0%, #ffb347 70%);
            border-radius: 50%;
            cursor: pointer;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            animation: pulse 2s infinite;
            z-index: 10;
            border: 2px solid #fff;
            transition: all 0.3s ease;
        }

        .country-marker::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 28px;
            height: 28px;
            background: rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: ripple 2s infinite;
        }

        .country-marker:hover {
            background: radial-gradient(circle, #ffed4e 0%, #ffc107 70%);
            transform: translate(-50%, -50%) scale(1.2);
            z-index: 100;
        }

        .country-label {
            position: absolute;
            bottom: 120%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1001;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .country-label::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.85);
        }

        .country-marker:hover .country-label {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-5px);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        @keyframes ripple {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }

        .stats {
            margin-top: 20px;
            text-align: center;
            background: #e3f2fd;
            padding: 12px;
            border-radius: 8px;
            color: #1565c0;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .country-marker {
                width: 16px;
                height: 16px;
            }
        }

/* 地图结束 */

.woocommerce-Tabs-panel li.active a{
    color: var(--fs-color-primary) !important;
}

.woocommerce-Tabs-panel li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px; /* 调整边框宽度 */
  background-color: #ccc;    
}
.woocommerce-Tabs-panel li.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px; /* 调整边框宽度 */
  background-color: var(--fs-color-primary);
}

.level-2{
    display: none !important;
}
.level-2 a::after {
  content: "-" !important;
  margin-left: 5px; /* 可选，让它不紧贴文字 */
  color: #999;       /* 可选：改颜色 */
}


/*产品详情和产品分类列表*/

.product-small .product-info{
    padding: 10px;
}
.product-small .product-info{
    .sku{
    font-size: 12px;
    margin-top: 10px;
    }
    .cat{
        font-size: 12px;
    }
}

.archive .product-small .box-text-products {
    opacity: 0;
    background: #f0ab1fc9;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0ab1fc9;
    display: flex
;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-direction: column;
}

.related-production .tab-panels .row {
    padding: 30px;
    box-shadow: 1px 1px 4px #00000030;
    margin: 0 20px 0;
    border-radius: 10px;
}

.archive .product-small .box-image:hover .box-text-products{
    opacity: 1;
}

.archive .product-info{
    font-size: 12px;
}
.archive .single-product .tabbed-content .nav>li.active>a{
   color:  var(--fs-color-primary);
}
@media (min-width: 850px) {
    .nav-vertical+.tab-panels {
        border-left: 0px solid #ddd;
        flex: 1;
        margin-top: 0 !important;
        padding: 0 30px 30px;
    }
}

/*产品列表隐藏*/
.more-btn,
.product-info .name{
   display: none;
}
/*产品详情页面绑定样式*/
.single-product .woocommerce-Tabs-panel .box-text-products{
    display: none;
}
.single-product .woocommerce-Tabs-panel .product-small .more-btn{
    display: block;
    margin-top: 5px;
}
.single-product .woocommerce-Tabs-panel .product-small .more-btn a{
    background: #777;
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    padding: 6px 20px;
    margin-top: 2px;
    border-radius: 4px;
    font-size: 12px;
}
.single-product .woocommerce-Tabs-panel .product-small .more-btn a:hover{
    background: var(--fs-color-primary);
    color: #000;
}
.single-product .woocommerce-Tabs-panel .product-small .product-info .name{
    display: block;
    padding-bottom: 9px;
    border-bottom: 1px solid #eee;
}
.single-product .woocommerce-Tabs-panel .product-small .woocommerce-loop-product__title{
    font-size: 16px !important;
    margin: 0;
    
}
.single-product .woocommerce-Tabs-panel .product-small .box-text-products{
    opacity: 1;
    background:auto;
    padding: auto;
}

.single-product .woocommerce-Tabs-panel .product-small .box-text-products{
    position: inherit;

}
.single-product .woocommerce-Tabs-panel .product-info{
    font-size: 16px;
}
.single-product .woocommerce-Tabs-panel .box{
    box-shadow: 1px 1px 10px #eee;
}
.single-product .woocommerce-Tabs-panel .box-image{
    width:20%;
    float: left;
}
.single-product .woocommerce-Tabs-panel .product-info{
    width: 80%;
    float: left;
}
.single-product .woocommerce-Tabs-panel .product-small{
    width: 100% !important;
    max-width:100% !important;
    flex-basis:100%;
}



#top-bar .follow-icons i{
    color: #000;
    padding: 0 10px;
    font-size: 16px;
}

.page-template-page-transparent-header-light-php .header-top{
    background: none;
}
.page-template-page-transparent-header-light-php #top-bar .follow-icons i{
    color: #fff; 
}

/*======================分类搜索框=======================*/
.woocommerce-product-search {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
  font-family: sans-serif;
  font-family: inherit;
}

.woocommerce-product-search select,
.woocommerce-product-search input[type="search"],
.woocommerce-product-search button {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  border: none;
    font-family: inherit;
}

.woocommerce-product-search select {
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 150px;
  background-color: #fff;
}

.woocommerce-product-search select {
  background-color: #f2f2f2;  /* 淡灰色背景 */
  color: #333;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 150px;
  appearance: none; /* 去除默认箭头样式（不同浏览器兼容性） */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px; /* 留出右侧箭头空间 */
}


.woocommerce-product-search input[type="search"] {
  flex: 1;
  border-left: none;
  border-right: none;
}

.woocommerce-product-search button {
  background-color: #333;
  color: #fff;
  border-left: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.woocommerce-product-search button:hover {
  background-color: #555;
}



canvas{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.particle-waves-container .section-content{
    z-index: 2;
}
.particle-waves-container {
  position: relative;
  overflow: hidden;

}


.home-tabs-post .nav li a{
    padding: 10px 20px;
}

@media (max-width: 549px) {
    .home-tabs-post .nav li a{
        padding: 2px 10px;
        font-size: 12px;
    }
}

/*======================常见帮助=======================*/
.accordion-title{
    font-size: 90%;
    font-weight: 300;
}

/*======================文章分类=======================*/
/*文章分类-文章项*/
.archive .post-item .box{
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.archive .post-item .box .box-text{
    padding: 10px
}
/*======================文章分类=======================*/
.archive-page-header{
    display: none;
}


/*产品分类页*/
.post-type-archive .product-title{
    font-size: 110%;
    font-weight: 500 !important;
}
.row-box-shadow-2 .col-inner{
    box-shadow: 1px 3px 10px #0000001f;
}
.product-small,
.product_cat-paper-bowls{
    border-radius: 4px !important; 
    overflow: hidden;
}

.lwptoc-light .lwptoc_i A{
    color: var(--fs-color-primary) !important;
}
/*======================表单=======================*/
/*按钮-表单-圆角*/
.ff-default .ff_btn_style {
    border-radius: 4px !important;
    padding: 0;
    margin-bottom: 0;
}

/*======================字体版式=======================*/
/* 字体修改 */
body,h5, h6, .heading-font, .off-canvas-center .nav-sidebar.nav-vertical > li > a,.nav > li > a{

}

.header-shadow .header-wrapper, .header-wrapper.stuck, .layout-shadow #wrapper {
    box-shadow: 1px 1px 1px rgb(0 0 0 / 7%);
}

.text-box-content .text-center h6{
    padding: 20px 0;
}
.tab-panels{
    padding: 60px 30px;
}

.product-template-default .tab-panels{
	padding: 0 !important;
}
.about-tabs-1 { 
	display: flex; 
	flex-direction: column-reverse; 
} 

.about-tabs-1 .tab-panels{
	order: 1;
}
.about-tabs-1 .tab-panels p {
  line-height: 1.6;            
  height: calc(1.6em * 3);    
  overflow: hidden;            
  margin: 0;                
}


.about-tabs-1 .nav-line-bottom {
	order: 2;
}

.about-tabs-1 .tab a{
    padding: 20px;
}

.slider-img-text-btn-3 .banner-bg :before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0 0 0 / 57%), transparent);
  pointer-events: none;
  z-index: 2; /* 遮罩在底层内容之上，但低于文字 */
}

.slider-img-text-btn-3 {
  position: relative;
  z-index: 0; /* 容器层级控制 */
}


.banner-layers{
  position: relative;
  z-index: 3; /* 高于遮罩 */
}




/*无缝滚动logo*/
.logo-list img {
   max-width: 140px
}
.logo-list .swiper-wrapper{
    height: 140px;
 }

.swiper-wrapper {
         -webkit-transition-timing-function: linear;
         -moz-transition-timing-function: linear;
         -ms-transition-timing-function: linear;
         -o-transition-timing-function: linear;
         transition-timing-function: linear;
}

	
/*======================产品详情=======================*/


/*======================产品筛选=======================*/

.wpc-filter-chips-list a, body .wpc-filter-chips-list li.wpc-filter-chip a {
    text-decoration: none;
    font-weight: 400;
    border-radius: 0 !important;
       padding: 5px 20px 5px !important; 
    display: inline-block;
    outline: 0;
     border: none !important;
    position: relative;
    color: #fff !important;

}

.select2-container--default .select2-selection--single {
    background-color: #f5f5f5 !important;
    border: none !important;
    border-radius: 4px !important;
}

.wpc-help-tip:hover::after, .wpc-filter-layout-dropdown .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b, .wpc-sorting-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b, .widget_wpc_sorting_widget .select2-container--default .select2-selection--single:hover .select2-selection__arrow b, .wpc-filter-layout-dropdown .select2-container--default .select2-selection--single:hover .select2-selection__arrow b, .wpc-filter-layout-dropdown .select2-container--default .select2-selection--single:hover, .select2-container--default.select2-container--open .wpc-filter-everything-dropdown.select2-dropdown, .widget_wpc_sorting_widget .select2-container--open .select2-selection--single, .wpc-filter-layout-dropdown .select2-container--open .select2-selection--single, .select2-container--default.select2-container--open .wpc-filter-everything-dropdown.select2-dropdown:hover, .wpc-sorting-form .select2-container--default .select2-selection--single:hover, .wpc-filters-widget-content input[type=email]:hover, .wpc-filters-widget-content input[type=number]:hover, .wpc-filters-widget-content input[type=password]:hover, .wpc-filters-widget-content input[type=search]:hover, .wpc-filters-widget-content input[type=tel]:hover, .wpc-filters-widget-content input[type=text]:hover, .wpc-filters-widget-content input[type=url]:hover, .wpc-filters-widget-content input[type=email]:focus, .wpc-filters-widget-content input[type=number]:focus, .wpc-filters-widget-content input[type=password]:focus, .wpc-filters-widget-content input[type=search]:focus, .wpc-filters-widget-content input[type=tel]:focus, .wpc-filters-widget-content input[type=text]:focus, .wpc-filters-widget-content input[type=url]:focus, .wpc-filter-collapsible .wpc-filter-title button:hover .wpc-open-icon, .wpc-filter-collapsible-reverse.wpc-filter-collapsible.wpc-closed .wpc-filter-title button:hover .wpc-open-icon, .wpc-filter-collapsible.wpc-closed .wpc-filter-title button:hover .wpc-open-icon, .wpc-filter-has-selected.wpc-closed .wpc-filter-title button:hover .wpc-open-icon {
    border-color: #dddddd !important;
}

body .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a{
    background: #555;
}


body .wpc-filter-chips-list li.wpc-chip-reset-all a {
    border-color: #cc8181;
    color: inherit;
    BACKGROUND: #ffb300;
    color: #000 !important;
    display: none !important;
}

.term-description h1{
    font-size: 250%;
}
.wpc-filters-widget-wrapper{
    display: flex;
}

.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single .select2-selection__rendered, .wpc-sorting-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit;
    color: inherit;
    display: flex;
    padding: 0 15px !important;
}

.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow, .wpc-sorting-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    border: none;
    background-color: transparent !important;
    width: 40px;
    border-radius: 6px;
    top: 1px;
    right: 1px;
}

.wpc-filter-layout-dropdown .select2-container--default .select2-selection--single, .wpc-sorting-form .select2-container--default .select2-selection--single {
    border-color: #00000094;
    border-radius: 0 !IMPORTANT;

}
.wpc-filter-post_meta{
    width: 25%;
    float: left;
    margin: 0 20px 0 0;
}




/* 标题字体修改 */
h1, h2, h3, h4,.fs{
   
}

.products-Menu ul{
    margin: 0;
    padding: 0;

    
}
.products-Menu .box-text {

    padding-bottom: 0 !important;

}



.menu-item-has-block .nav-dropdown .col-inner ul:not(.nav.nav-vertical) li:not(.tab):not([class^=bullet-]){
    margin: 0 !important;
    padding: 0 !important;
    padding-left: 15px !important;
    list-style: none;
}

.products-Menu ul li a{
    font-size: 13px;
    font-weight: 400;
    line-height: 2.4;

 
}
.products-Menu ul li a:hover{
    border-bottom: 1px solid  var(--fs-color-primary)
}

.products-Menu ul li a:after{
    content: "▪︎";
    color: var(--fs-color-primary);
    position: absolute;
    left: 0px;
}

.breadcrumbs .divider, .breadcrumbs .separator{
   font-family: auto;
}



/*导航条字重*/
.nav > li > a, .mobile-sidebar-levels-2 .nav > li > ul > li > a{
    
}



/*平板电脑及以下*/
@media (max-width: 849px) {
   
}

/*仅限移动设备*/

/*按钮*/
@media (max-width: 549px) {
    .xs-btn {
      transform: scale(.8); /* 缩放到原来的2倍 */
    }
}

.link-color a{
    color: var(--wp--preset--color--black);
}
.link-color a:hover{
    color:var(--fs-color-primary)
}
/*--------------------关于--------------------*/
.button.youtube:hover, .button.youtube:not(.is-outline) {
    color: #ff1800 !important;
}
.button.facebook:hover, .button.facebook:not(.is-outline) {
   color: #014eff !important
}
.button.whatsapp:hover, .button.whatsapp:not(.is-outline) {
    color: #6ab731 !important;
}

.follow-icons .button.icon {
    display: inline-block;
    margin-left: .12em;
    margin-right: 1.12em;
    min-width: 2.5em;
    padding-left: .6em;
    padding-right: .6em;
}

/*--------------------产品详情页询盘按钮--------------------*/
.yith_ywraq_add_item_browse_message a,
.yith_ywraq_add_item_browse_message ,
.woocommerce .add-request-quote-button.button{
font-size: 12px;
    width: 100px;
    float: left;
}


.woocommerce .add-request-quote-button.button::before {
  content: "\f07a"; /* Font Awesome 图标代码 */
  font-family: "Font Awesome 6 Free"; /* 取决于你用的版本 */
  font-weight: 900; /* 如果使用 solid 样式 */
  margin-right: 8px;
  display: inline-block;
}


.woocommerce .add-request-quote-button.button
.product-btn-list{
    box-sizing: border-box;
}
.product-btn-list .a-btn,
.product-btn-list button{
    font-size: 12px;
    width: 20%;
    float: left;
}
.yith_ywraq_add_item_product_message,
.yith_ywraq_add_item_response_message {
    position: absolute;
    bottom: 0;
    padding: 4px;
    background: #F7F7F7;
    color: #444;
    width: 97%;
    text-align: center;
    margin: -20px;
    
}
.raq-send-request,
#yith-ywraq-form .update-list-wrapper input[type="submit"]{
    text-transform: capitalize !important;
}

@media print {
    /* 通用优化：隐藏页眉、页脚、菜单等 */
    header, footer, nav, .sidebar, .no-print, .site-navigation, .menu {
        display: none !important;
    }

    /* 隐藏所有 fixed/absolute 元素，避免遮挡 */
    * {
        background: none !important;
        box-shadow: none !important;
    }

    /*[style*="position: fixed"],*/
    /*[style*="position: absolute"] {*/
    /*    display: none !important;*/
    /*}*/

    body, html {
        background: #fff !important;
        color: #000 !important;
    }

    h3, h2, h1, p, div, span {
        color: #000 !important;
    }

    /* 如果你有某些特定类想强制显示 */
    .print-button {
        display: none !important; /* 打印时隐藏打印按钮自身 */
    }

}

@media print {

 /* 展开轮播图容器，取消轮播功能 */
.woocommerce-product-gallery__wrapper.flickity-enabled,
.product-gallery-slider.flickity-enabled {
  display: flex !important;
  flex-wrap: wrap !important;
  height: auto !important;
  overflow: visible !important;
  position: static !important;
}

/* 每个图片容器 */
.woocommerce-product-gallery__image {
  position: static !important;
  transform: none !important;
  flex: 0 0 100% !important; /* 如果想横向排列，改成比如 0 0 33.33% */
  margin-bottom: 20px;
  overflow: visible !important; /* 防止裁切 */
}

/* 图片自适应 */
.woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}


  /* 隐藏轮播按钮、缩略图导航等不适合打印的元素 */
  .flickity-button,
  .product-thumbnails,
  .image-tools,
  .slider-nav-small,
  .zoom-button,
  .badge-container {
    display: none !important;
  }

  /* 图片正常显示 */
  .woocommerce-product-gallery__image img {
    max-width: 100% !important;
    height: auto !important;
  }
}
@media print {
    .yith_ywraq_add_item_browse_message,
  .product-thumbnails,
  .add-request-quote-button button,
  .social-icons,
  .product-btn-list,
  .yith-ywraq-add-button ,
.iconic-woothumbs-thumbnails__play-overlay,
.Binding-Products,
  button{
    display: none !important;
  }
    .iconic-woothumbs-thumbnails__image-wrapper:after {
        border: 0px solid #111111 !important;
    }
}





.single-product table {
	width: 100%;
	overflow: hidden;
	border-collapse: collapse
}

.single-product table tr th {
	width: 45%;
	color: #999;
	font-weight: normal;
}

.single-product table tr th,.single-product table tr td {
	padding: 6px 25px;
	text-align: left;
	font-size: 14px;
}

.single-product table tr:nth-child(2n+1) {
	
}

.single-producttable tr:nth-child(2n) {
	
}

.woocommerce .add-request-quote-button.button {
    margin: 0px 0 10px 0 !important;
   
}

table tr:nth-child(odd) {
  background-color: #f9f9f9; /* 奇数行背景色 */
}

table tr:nth-child(even) {
  background-color: #ffffff; /* 偶数行背景色 */
}

.woocommerce .add-request-quote-button.button:hover, .woocommerce .add-request-quote-button-addons.button:hover {
    background-color: var(--ywraq_layout_button_bg_color_hover) !important;
    color: var(--ywraq_layout_button_color_hover) !important;
    border: 1px solid var(--ywraq_layout_button_border_color_hover) !important;

}


 a.add-request-quote-button.button{
   padding: 0rem .5rem !important;
 }
 .flickity-slider .yith_ywraq_add_item_browse_message,
 .archive .yith_ywraq_add_item_browse_message{
     text-align: center;
 }
.yith_ywraq_add_item_browse_message a {
    border: 1px solid var(--ywraq_layout_button_bg_color) !important;
    font-size: 1em;
    display: inline-block;
    text-align: center;
    word-break: break-word;
    padding: .3rem 2rem;
    border-radius: 3px !important;
    color: #fff;
    margin-top: 0rem;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 30px;
    background: var(--ywraq_layout_button_bg_color) !important;
    font-size: 12px;
    width: 120px;
    font-weight: 900;
}
  .flickity-slider .yith-ywraq-add-button,
  .archive .yith-ywraq-add-button{
     text-align: center;
 }
  .flickity-slider .yith_ywraq_add_item_product_message,
  .archive .yith_ywraq_add_item_product_message,
  .archive .yith_ywraq_add_item_response_message {
     text-align: center;
     font-size: 12px;
 }

     
       .yith_ywraq_add_item_browse_message a:hover{
     background:  var(--ywraq_layout_button_bg_color) !important; 
     color: #fff;
  }
.social-icons a{
    margin: 0;
}
.success{
    box-shadow: 0 2px 1px 0 rgba(0,0,0,.1);
}

/*======================头部=======================*/
@media (max-width: 549px) {
     #logo img {
        padding: 21px 20px !important;
    }
  
}
.logo-hide .header-logo-dark{
    display: none !important;
}
.logo-hide .header-logo{
    display: block !important;
}
.page-template-page-transparent-header-light-php .logo-hide .follow-icons i{
    color: #000 !important; 
}
.stuck .header-main{
    background: #1d2327 !important;
    .nav>li>a{
    color: #fff;

    }
    .header:not(.transparent) .header-nav-main.nav > li > a,
    .nav>li.active>a{
        color: #fff !important;
    }
    .nav-line-bottom>li>a:before{
        background-color: transparent ;
    }
}

.stuck .header-main {
    .nav>li>a {
        color: #fff !important;
    }
}
.nav-dropdown-bold .nav-column li>a:hover, .nav-dropdown-bold.dark .nav-column li>a:hover, .nav-dropdown.nav-dropdown-bold.dark>li>a:hover, .nav-dropdown.nav-dropdown-bold>li>a:hover {
    background-color: var(--fs-color-primary);
    color: #000 !important;
}
.nav-dropdown-bold .nav-column li>a, .nav-dropdown.nav-dropdown-bold>li>a {
    border-radius: 4px;
    margin: 0 10px;
    padding-left: 10px;
    padding-right: 5px;
}

