@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/*header*/
.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: #ffffff00;
    backdrop-filter: blur(30px);
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.5s;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #261e17;
    transition: 0.5s;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-items: center;
}
.nav-brand img {
    max-width: 90%;
    filter: brightness(100);
}
.me_tp_features {
    width: 100%;
    text-align: right;
    display:none;
}
.stellarnav > ul > li:hover > a {
    color: #815719;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    margin: 0 0 0 40px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
}
/*==============下拉==============*/
.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display:none;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0;
}
.stellarnav ul ul {
    top: auto;
    width: 160px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #ffffff73;
    left: 37%;
}
.stellarnav li li {
    display: block;
    border: 1px #eee solid;
    border-bottom-width: 0;
    backdrop-filter: blur(10px);
}
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #261e17;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.5s;
}
.stellarnav li a:hover {
    color: #815719;
}
.stellarnav ul li li:hover a {
    transform: translateX(-5px);
}

/*footer*/
.box_link {
    position: absolute;
    top: 0;
    right: 10px;
    width: auto;
    max-width: 101px;
    display: flex;
    align-items: center;
    max-height: 100%;
    flex-direction: column;
    display:none;
}
.box_link a {
    display: block;
    width: 40px;
    border: 1px #ffffff solid;
    border-radius: 50%;
    padding: 5px;
    font-size: 21px;
    text-align: center;
    margin: 10px;
    transition: 0.5s;
}
.box_link a:hover {
    background: #e1c26d7d;
}
.fa-phone-volume::before {
    content: "\f2a0";
    filter: brightness(100);
}
.fas, .fa-solid {
    font-weight: 900;
    filter: brightness(100);
}
.fa-envelope::before {
    content: "\f0e0";
    filter: brightness(100);
}
.footer {
    padding: 180px 0 0;
    font-size: 14px;
    background: url(https://pic03.eapple.com.tw/changwei/B01-01.png) no-repeat, #ffffff00;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 999;
    overflow: hidden;
}
/*=================火焰===============*/
.footer::before {
    content: "";
    position: absolute;
    bottom: -169%;
    left: 0;
    transform: translateX(-50%);
    width: 2000px;
    height: 800px;
    background: radial-gradient(circle, rgb(255 180 50 / 14%) 0%, rgb(255 100 0 / 18%) 60%, transparent 100%);
    filter: blur(50px);
    animation: fireGlow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 90;
    pointer-events: none;
}

@keyframes fireGlow {
    0%   { opacity: 0.4; transform: scale(1); }
    50%  { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 0.4; transform: scale(1); }
}
/*===================================*/
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #df7b14 2px, transparent 2px), radial-gradient(circle at 80% 70%, white 1px, transparent 1px);
    background-size: 200px 200px;
    animation: sparkle 3s linear infinite;
    opacity: 0.3;
    z-index: 85;
    pointer-events: none;
}
@keyframes sparkle {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, 200px 200px;
    }
}
/*===================END==================*/
.footer_logo {
    display: inline-block;
    vertical-align: top;
    max-width: 200px;
    margin: 0;
}

.footer_logo img {
    max-width: 100%;
    filter: brightness(100);
}
.footer_info {
    padding: 0;
    display: flex;
    grid-template-columns: 300px 1fr;
    grid-gap: 20px;
    padding-right: 0px;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.footer_info li p {
    line-height: 175%;
    letter-spacing: 1px;
    color: #ffffff;
}
a {
    color: #ffffff;
}
.footer_menu a {
    padding: 10px 26px 10px 20px;
    border: 0;
    border-right: 1px #e1c26d solid;
    color: #e1c26d;
    background: #ffffff00;
    transition: .5s;
    margin: 0;
    font-size: 13px;
}
.footer_menu a:hover {
    background: #e1c26d;
    color: #fff;
}
.footer_menu a:nth-last-child(1) {
    border-right: 0;
}
.copy {
    text-align: center;
    padding: 7px 0;
    font-size: 11px;
    color: #999;
    border-top: 1px #ffffff00 solid;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

/*===================首頁===================*/
   #content_main {
    margin: 0;
    background: #222 url(https://pic03.eapple.com.tw/changwei/C01-01.jpg) no-repeat;
    background-position: center bottom;
    }
/*============查看更多=============*/
.module_i_album .title_i_box h4 {
    display: flex;
    font-size: 23px;
    color: #e2c36d;
    font-weight: 800;
    text-align: center;
    flex-direction: column;
}
.module_i_album .title_i_box h4::before {
    content: "PORTFOLIO";
    color: #e2c36d;
    font-size: 30px;
    text-align: center;
}

.i_album_list li a p {
    width: 100%;
    height: 2em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #261e17c2;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #e2c36d;
    overflow: hidden;
    padding: 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.i_album_b a i.fa-solid.fa-arrow-right {
    margin: 0;
}
.i_album_b a:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}
.fa-arrow-right::before {
    content: "\f061";
   display: none;
}
/*============動畫=================*/
.animated-arrow {
    background: #ffffff1c;
    color: #ffffff;
    display: inline-block;
    margin-top: 20px;
    /* margin-left: auto; */
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    /* padding-left: 5%; */
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px #eee solid;
    z-index: 1;
}
.animated-arrow::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #67e7fa, rgb(7, 35, 137), rgb(121, 57, 2), rgb(222, 122, 7));
  background-size: 400% 400%;
  animation: glowing 7s linear infinite;
  filter: blur(4px);
  opacity: 0.7;
  z-index: -1;
}
.animated-arrow:hover {
  font-size: 18px;
}
@keyframes glowing {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
/*===============常見問題============*/
.module_i_news {
    padding: 50px 20px;
    background: #261e171c;
    margin: 0 65px 0;
    backdrop-filter: blur(10px);
}
.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #e2c36d;
    font-weight: 800;
    display: flex;
    flex-direction: column;
}
.module_i_news .title_i_box h4::before{
    content:"FAQ";
    color:#e1c26d;
    font-size: 30px;
}
.module_i_news li a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    text-align: center;
    font-size: 12px;
    color: #e1c26d;
    transition: all .6s;
}
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgb(255 255 255 / 23%);
    opacity: 0;
    border: 1px #ffffff solid;
    transition: all .6s;
    backdrop-filter: blur(10px);
}
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 18px;
    color: #e2c36d;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.i_blog_ri em {
    font-size: 12px;
    color: #838383;
    font-style: normal;
    display: block;
    margin: 7px 0;
}
.i_blog_ri p {
    font-size: 15px;
    color: #ffffff;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
.i_blog_b a i.fa-solid.fa-arrow-right {
    margin: 0;
}
.i_blog_b a:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}


/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
#content {
    background: #111 url(https://pic03.eapple.com.tw/changwei/D01-02.jpg);
}

.banner {
    background: url(https://pic03.eapple.com.tw/changwei/D01-01.jpg) no-repeat;
    align-content: flex-end;
    height: 500px;
    background-size: cover;
    background-position: center bottom;
}
/* 鐵件商品 */
.banF h5 {
    color: #e1c26d;
    display: grid;
    position: relative;
}

.banner.banF h5:before {
    content: "PRODUCT";
    color: #bdbebf;
    font-size: 55px;
}

.path {
    display: none;
}

.product-layer-two li a {
    border: 1px #ffffff00 solid;
    background: #f3f3f300;
    color: #e2c36d;
    transition: 0.5s;
}

.product-layer-two li:hover a {
    color: #fff;
}

.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
}

.products-list .name {
    color: #e2c36d;
}

.products-list .price b{
    color: #e2c36d;
}

.products-list .more {
    border: 1px solid #00b6e6;
    color: #00caff; 
    transition: 0.5s;   
}

.products-list .item a:hover .more {
    background: #00b6e6;
    color: #fff;
    letter-spacing: 0;
}

.sidebarBtn {
    border: 3px #e1c26d solid;
    background: #ffffff;
}

.sidebarBtn h2 {
    color: #261e17;
}

.inquiry_a1 {
    background: #e1c26d;
}

.inquiry_a2 {
    background: #00b6e6;
}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 0;
    background: #261e17;
}

.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: #e1c26d;
}

.pd_tabInner_contain {
    color: #fff;
}

.prod_related h6 span:before {
    color: #261e17;
}


/* 作品實績 */
.banE h5 {
    color: #e1c26d;
    display: grid;
    position: relative;
}

.banner.banE h5:before {
    content: "PORTFOLIO";
    color: #bdbebf;
    font-size: 55px;
}

.subalbum-menu h2{
    font-size: 16px;
    background: #e1c26d;
    color: #ffffff;
    display: block;
    text-align: center;
    padding: 5px 0;
}

.show-list .show_name{
    font-size: 15px;
    color: #e2c36d;
}

.show-list .item:hover .show_name {
    color: #00b6e6;
    
}

.other_subalbum li a p {
    color: #e2c36d;
    text-align: center;
    background: #000000;
}

.album_fixed_title{
    background: #ffffff00;
    color: #ffffff;
    font-size: 15px;
}

.other_album_choice li{
    background: #000000;
    font-size: 13px;
}

.album_descrip{
    color: #ffffff;
}

/* 常見問題 */

.banblog h5 {
    color: #e1c26d;
    display: grid;
    position: relative;
}

.banblog h5:before {
    content: "PORTFOLIO";
    color: #bdbebf;
    font-size: 55px;
}

h5.blog_le_t {
    color: #e1c26d;
    text-align: center;
}

.accordion li .link a {
    color: #ffffff;
    font-weight: 500;
}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #fbfbfb00 !important;
}

.accordion li .link:hover {
    background: #00b6e64f;
    transition: 0.5s;
}

.subbox_item a:before {
    color: #ffffff;
    font-size: 12px;
}

.subbox_item a:after {
    background: #00b6e64f;    
    border: 1px #00b6e6 solid;
}

.blog_list_ri h5 {
    color: #e1c26d;
    font-weight: 700;
}

.blog_list_ri em {
    font-size: 12px;
    color: #ffffff;
}

.blog_list_ri p {
    color: #ffffff;
    letter-spacing: 1px;
}

h4.blog_category_title {
    color: #e1c26d;
    text-align: center;
    font-size: 25px;
    padding: 5px 0;
}

.edit p {
    color: #fff;
}

.blog_back a.article_btn_prev {
    background: #e1c26d;
}

.blog_back a.article_btn_back {
    background:#00b6e694;
}

.blog_back a.article_btn_next {
    background: #e1c26d;
}

.news_related {
    background: #ffffff;
}

.news_related h6 span:before {
    color: #261e17;
}

.lastPage {
    background: #e1c26d; 
    font-weight: 700;
}

.lastPage:hover {
    transition: 0.5s;
    background-color: #00b6e642;
    border: 1px solid #00b6e6;
}


/* 聯絡我們 */

.banC h5 {
    color: #e1c26d;
    display: grid;
    position: relative;
}

.banC h5:before {
    content: "PORTFOLIO";
    color: #bdbebf;
    font-size: 55px;
}

.blank_letter {
    color: #e1c26d;
    text-align: center;    
}

.list_before.info li {
    padding-left: 40px;
    color: #fff;
    letter-spacing: 1px;
}

.contact_le_map a {
    background: #e1c26d;
}

.contact_form li .form__label {
    color: #ffffff;
}

.form__insert {
    color: #fff;
}

.contact_form li.last blockquote {
    color: #00b6e6;
    border: 1px solid #00b6e6;
}

.contact_form li.last cite {
    background: #e1c26d;
}

.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{
    letter-spacing: 5px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display:none; }

.fix_ri {
    bottom: 51%;
}

.header_area {
   position: sticky;
   background: #0a0a0a;
   backdrop-filter: none;
}

.stellarnav .menu-toggle span.bars span {
   background: #ffffff; 
}

.stellarnav .menu-toggle:after {
   color: #ffffff; 
}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #e1c26d;
    color: #fff;
}

.stellarnav .icon-close:before {
    border-bottom: solid 3px #ffffff;
}

.stellarnav .icon-close:after {
    border-bottom: solid 3px #ffffff;
}

.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    background: #000000e0;
    border-right: 1px #ffffff solid;
}

.stellarnav.mobile > ul > li {
   border-bottom: 1px #dddddd00 solid; 
}

.stellarnav.mobile li a {
    border-bottom: 1px solid rgb(255 255 255 / 0%);
}

.stellarnav.mobile > ul > li > a {
    color: #ffffff;
}

.stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 3px #ffffff;
}

.stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 3px #ffffff;
}

.stellarnav.mobile li.open {
    background: #daae5361;
}

.stellarnav.mobile ul ul {
    background: #e7dbc261;
    left:0;
}

.module_i_news ul {
   grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
}

.footer.with_shopping_mode {
     padding:50px 0 0; 
}

.footer_menu {
    display: flex;
}

.footer_info {
    margin: 0 10px auto;
    flex-direction: column;
    align-items: center;
}

#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




