@charset "utf-8";
/* CSS Document */

/* ================================== */
/* Document List Menu */
/* =====================================
1. shop_section
2. MODEL-OPEN
3. custom-pagination
4. shop-left-sidebar_section
5. shop_product-detail_section
6. 共用 --> 更多 MORE Button
7. 登入Login + 註冊Sign up + MODEL-OPEN-For-Login
===================================== */
/* Document List Menu END */
/* ================================== */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ============================= */
/* ==  shop_section  =========== */
/* ============================= */
.shop_section {
	text-align: center;
	
	/*background-color: #FFFFFF;*/
	
	/*background-image: url(../../images/shop/shop_section_bg.png);*/
	/*background-size: cover;*/
	background-repeat: no-repeat;
	background-position: bottom;
}

.shop_section::before {
	background-color: rgba(0,0,0,0.5);
}
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/* ================================== */
/* ==  標提 heading_container set  == */
/* ================================= */
.shop_section .heading_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-align: center;  /* flex-start // flex-end*/
	-ms-flex-align: center;
	align-items: center; /* flex-start // flex-end*/
	
	text-align: center;	
}

.shop_section .heading_container h2 {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.shop_section .heading_container h2 span {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.shop_section .heading_container h2 span::before {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 100%;
    height: 2px;
	text-align: center;
    bottom: -0.5rem;
    z-index: 0;
	background-color: #059cb5;
}

.shop_section .heading_container h3 {
	position: relative;	
    font-size: 1.25rem; /*20px*/
    line-height: 1.2;
	margin-top: .5rem;
	margin-bottom: .5rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #959595;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
.shop_section .shop_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;*/
	padding: 35px 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-box-pack: start;  /*center*/ /*end*/
	-ms-flex-pack: start;  /*center*/ /*end*/
	justify-content: flex-start; /*center*/ /*flex-end*/
	-webkit-box-align: flex-start; /*center*/ /*flex-end*/
	-ms-flex-align: start;  /*center*/ /*end*/
	align-items: flex-start; /*center*/ /*flex-end*/
}

.shop_section .shop_container a .box {
	/*margin: 25px 1%;*/
	-ms-flex-preferred-size: 31%;
	flex-basis: 31%;
	border: 1px solid #d7d6d6;
	/*padding: 45px 25px 25px;*/
	padding: 5px 5px 5px 5px;
	border-radius: 20px;
	background: #FFFFFF;
	
	margin: 0 0 30px 0;
}

.shop_section .shop_container a .box .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;	
	
	border-radius: 15px;
	overflow: hidden;
	background-color: #FFFFFF;
}

.shop_section .shop_container a .box .img-box img {
	width: 100%;
}

.shop_section .shop_container a .box .detail-box {
	padding: 25px 20px 5px 20px;
	/*margin-top: 25px;*/	
}

.shop_section .shop_container a .box .detail-box h4 {
	position: relative;
	font-size: 1.25rem; /*20px*/
	font-weight: 600;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 1;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 45px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

.shop_section .shop_container a .box .detail-box h4:hover {
	color: #00bad9;
}

.shop_section .shop_container a .box .detail-box p {	
	position: relative;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 2;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 55px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}


/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/* ================================== */
/* ==  更多 MORE Button ============= */
/* ================================= */

/* STYLE-01 靠左 */
.shop_section .btn-box-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.shop_section .btn-box-left .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop_section .btn-box-left .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5
}

.shop_section .btn-box-left .bg-btn-xl:active,
.shop_section .btn-box-left .bg-btn-xl:focus,
.shop_section .btn-box-left .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important
}

.shop_section .btn-box-left .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}

/* ====================================*/
.shop_section .btn-box-left a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop_section .btn-box-left a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-02 居中 */
.shop_section .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.shop_section .btn-box .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop_section .btn-box .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5
}

.shop_section .btn-box .bg-btn-xl:active,
.shop_section .btn-box .bg-btn-xl:focus,
.shop_section .btn-box .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important
}

.shop_section .btn-box .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}

/* ====================================*/
.shop_section .btn-box a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop_section .btn-box a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-03 靠右 */
.shop_section .btn-box-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.shop_section .btn-box-right .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop_section .btn-box-right .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5
}

.shop_section .btn-box-right .bg-btn-xl:active,
.shop_section .btn-box-right .bg-btn-xl:focus,
.shop_section .btn-box-right .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important
}

.shop_section .btn-box-right .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}

/* ====================================*/
.shop_section .btn-box-right a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop_section .btn-box-right a:hover {
	background-color: #6944db;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/* ==  商品列 以下 =================== */

/* 分類查詢 ========================= */
.shop_section .shop-category-area .shop-top-bar {
    margin: 30px 0;
    align-self: center;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem; /*15px*/
    background: #ebebeb;
    padding: 0px 20px 0px 20px;
}

@media only screen and (max-width:767px) {
    .shop_section .shop-category-area .shop-top-bar {
        margin-top: 0
    }
}

@media only screen and (max-width:575px) {
    .shop_section .shop-category-area .shop-top-bar {
        padding: 15px 10px 5px 30px
    }
}

.shop_section .shop-category-area .shop-top-bar p {
    margin: 0;
}

@media only screen and (max-width:575px) {
    .shop_section .shop-category-area .shop-top-bar.d-flex {
        display: block !important
    }
}

/* ============================= */

.shop_section .shop-select .nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #ebebeb;
    border-radius: 0;
    border: solid 1px #ebebeb;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9375rem; /*15px*/
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    outline: 0;
	padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    max-width: 250px;
    width: 300px
}

@media only screen and (max-width:575px) {
    .shop_section .shop-select .nice-select {
        max-width: 200px
    }
}

.shop_section .shop-select .nice-select:after {
    border: 0;
    content: "";
    display: inline-block;
    font-family: Ionicons;
    height: auto;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: auto;
    transform-origin: 0 0;
    transform: rotate(0);
    transition: all .15s ease-in-out;
    width: auto;
    color: #333333;
    font-size: 1rem; /*16px*/
}

.shop_section .shop-select .nice-select .list {
    background-color: #FFFFFF;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(.75) translate(-21px);
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 15;
    width: 100%;
    color: #333333
}

.shop_section .shop-select .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translate(0)
}

/* 分類查詢 ========================= */


/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */
/* 產品列表 ========================= */
.shop-all-area {
	position: relative;
	display: block;
	background: rgba(255, 255, 255, 0.75);
}
.shop-category-area {
	background: rgba(255, 255, 255, 0.75);
}

.shop_section .shop-category-area .shop-bottom-area .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

.shop_section .product {
    overflow: hidden;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shop_section .product .thumb {
    position: relative;
    overflow: hidden
}

.shop_section .product .thumb .image {
    position: relative;
    display: block;
    overflow: hidden
}

.shop_section .product .thumb .image img {
    z-index: 1;
    max-width: 100%;
    transition: all .3s ease 0s
}

.shop_section .product .thumb .image img.hover-image {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0
}

.shop_section .product .thumb .badges {
    position: absolute;
    z-index: 8;
    top: 18px;
    left: 18px;
    display: flex;
    flex-direction: column
}

.shop_section .product .thumb .badges span {
    font-size: 0.875rem; /*14px*/
    font-weight: 500;
    line-height: 24px;
    display: block;
    padding: 0 7px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 3px;
    color: #FFFFFF
}

.shop_section .product .thumb .badges span+span {
    margin-top: 10px
}

.shop_section .product .thumb .badges span.new {
    background-color: #ff7004
}

.shop_section .product .thumb .badges span.sale {
    background-color: #059cb5;
}

.shop_section .product .thumb .actions {
    position: absolute;
    z-index: 9;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    transition: all .3s ease 0s
}

.shop_section .product .thumb .actions .action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all .3s ease 0s;
    text-decoration: none;
    color: #333333;
    border-radius: 50%;
    background-color: #FFFFFF
}

.shop_section .product .thumb .actions .action i {
	position: relative;
	top: 1px;
    font-size: 1rem; /*16px*/
    line-height: 1
}

.shop_section .product .thumb .actions .action i.fa-heart {
    color: #d70000; /*愛心 - 紅*/
}
.shop_section .product .thumb .actions .action:hover i.fa-heart:not(.active) {
    color: #FFFFFF !important;
    /*background-color: #ff7004;*/
}

.shop_section .product .thumb .actions .action+.action {
    margin-top: 10px
}

.shop_section .product .thumb .actions .action:not(.wishlist) {
    visibility: hidden;
    transform: translateY(20px);
    opacity: 0
}

.shop_section .product .thumb .actions .action.active {
    color: #ff7004
}

.shop_section .product .thumb .actions .action:hover:not(.active) {
    color: #FFFFFF;
    background-color: #00bad9;
}

.shop_section .product .thumb .add-to-cart {
	position: absolute;
    display: block;
    width: 50%; /*80%*/
    height: 45px;
    line-height: 42px; /*45px*/
    font-size: 100%; /*0.875rem*/ /*14px*/    
    color: #FFFFFF;
	font-weight: 600;
	text-align: center;    
    
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 11;
    margin: auto;    
	
	border: 1px solid #4c39e0;
	border-radius: 3px;		 
	background-color: #4c39e0;
	
    visibility: hidden;
    transition: all .3s ease 0s;
    transform: translateY(20px);
    
    opacity: 0;
    /*font-family: Raleway, sans-serif*/
}

.shop_section .product .thumb .add-to-cart:hover {    
	color: #4c39e0;
	border: 1px solid #4c39e0;
	background-color: #FFFFFF;
}

.shop_section .product .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 25px 15px;
    transition: all .3s ease 0s;
    text-align: center;
    background-color: #f7f7f7
}

.shop_section .product .content .title {
    font-size: 1.125rem; /*18px*/
    margin: 7px 0 20px;
    font-family: inherit;
	font-weight: 600;
}

.shop_section .product .content .title a {
    text-decoration: none;
    color: #1d1d1d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 1rem; /*16px*/
}

.shop_section .product .content .price {
    font-size: 1rem; /*16px*/
    line-height: 1;
    font-family: Montserrat, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333
}

.shop_section .product .content .price:not(:last-child) {
    margin-bottom: 20px
}

.shop_section .product .content .price span.new {
	font-family: Montserrat, sans-serif;
	font-size: 1.125rem; /*18px*/
    color: #3f3f3f;
    font-weight: 600;
	margin-left: 10px;
}

.shop_section .product .content .price span.old {
    font-size: 0.9375rem; /*15px*/
    text-decoration: line-through;
    color: #999
}

.shop_section .product .content .btn {
    align-self: center
}

.shop_section .product:hover .thumb .image img {
    transform: scale(1.1) rotate(3deg)
}

.shop_section .product:hover .thumb .image img:not(:last-child) {
    opacity: 0
}

.shop_section .product:hover .thumb .image img.hover-image {
    opacity: 1
}

.shop_section .product:hover .thumb .actions .action {
    visibility: visible;
    transform: translateY(0);
    opacity: 1
}

.shop_section .product:hover .thumb .add-to-cart {
    visibility: visible;
    transform: translateY(0);
    opacity: 1
}

.shop_section .product:hover .content .title a {
    color: #333333;
}

.shop_section .product:hover .content .title a:hover {
    color: #4c39e0
}

/* ==  商品列 以上 =================== */

/* ============================= */
/* ==  shop_section  =========== */
/* ============================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ============================= */
/* MODEL-OPEN ================== */
.modal-open .product-details-content .h2,
.modal-open .product-details-content h2 {
    color: #333333;
    font-size: 1.5rem; /*24px*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 25px 0
}

.modal-open .product-details-content .pricing-meta {    
    margin-bottom: 25px;
    margin-top: 10px
}

.modal-open .product-details-content .pricing-meta ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.modal-open .product-details-content .pricing-meta ul li {
    font-size: 1.5rem; /*24px*/
	font-weight: 600;
    color: #333333;
    line-height: 30px;
}

.modal-open .product-details-content p.textdescription-area {
	font-size: 0.875rem; /*14px*/
    font-weight: 400;
    color: #333333;
    line-height: 26px;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 3;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 90px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */ 
}

/*== filter-area 標題 H4 ==*/
.modal-open .product-details-content .filter-area .h4,
.modal-open .product-details-content .filter-area h4 {
	position: relative;
	display: block;
	
    color: #333333;
    font-size: 0.875rem; /*14px*/
	font-weight: 600;
    letter-spacing: 1.2px;    
    text-transform: capitalize !important;
	
	padding-bottom: 10px;
    margin: 15px 0;
	border-bottom: 1px solid #ebebeb;
}

.modal-open .product-details-content .filter-area .h4:before,
.modal-open .product-details-content .filter-area h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px; /*60*/
    height: 2px;
    background: #bbbbbb;
}

.modal-open .product-details-content .filter-area {
	display: inline-block;
	font-size: 0.875rem; /*14px*/
    font-weight: 400;
    color: #333333;
    line-height: 26px;
}

.modal-open .product-details-content .filter-area .widget-box-list {
	position: relative;
	display: inline-block;
}

/*== Size ==*/
 .modal-open .product-details-content .filter-area .widget-box .widget-box-list ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

 .modal-open .product-details-content .filter-area .widget-box .widget-box-list ul li {
    float: left;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left {
    position: relative;
	padding-right: 20px;
	
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 999;
    width: auto;
    top: 6px;
    left: 1px;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #FFFFFF;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    transition: all .3s linear;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark::after {
    left: 4px;
    top: 1px;
    width: 6px;
	height: 9px;
	border: solid #059cb5;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}
/*== Size ==*/

/*== Colour ==*/
.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.grey {
    background: #aab2bd;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.white {
    background: #FFFFFF;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.black {
    background: #434a54;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.camel {
    background: #007bff;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li a {
    margin-left: 25px;
    display: block;
    color: #333333;
    font-size: 0.875rem; /*14px*/
	font-weight: 600;
    margin-top: 0;
    line-height: 22px;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li a span {
    float: right;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li:hover .checkmark {
    border-color: #ff7004;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li:hover a {
    color: #00bad9;
}

.modal-open .product-details-content .filter-area .widget-box .widget-box-list li:hover a span {
    color: #ff7004;
}
/*== Colour ==*/

/* == checkBOX 作用與否 == */
.modal-open .product-details-content .filter-area .widget-box .widget-box-list ul li .widget-box-list-left input:checked~.checkmark::after {
    display: block;
}

.modal-open .product-details-content .filter-area .widget-box.no-cba .widget-box-list ul li .widget-box-list-left input:checked~.checkmark::after {
    display: none;
}

.modal-open .product-details-content .filter-area .widget-box.no-cba .widget-box-list ul li .widget-box-list-left .checkmark {
    border: 0;
}
/* == checkBOX 作用與否 == */

/* == 數量選擇 == */
.modal-open .product-details-content .pro-details-quality .cart-plus-minus {
    border: 1px solid #ebebeb;
    display: inline-block;
    height: 50px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 115px;
}

.modal-open .product-details-content .pro-details-quality .cart-plus-minus .qtybutton {
    color: #333333;
    cursor: pointer;
    float: inherit;
    font-size: 1.125rem; /*18px*/
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-align: center;
    transition: all .3s ease 0s;
    width: 40px;
}

.modal-open .product-details-content .pro-details-quality .cart-plus-minus input.cart-plus-minus-box {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: #333333;
    float: left;
    font-size: 0.875rem; /*14px*/
    height: 50px;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 115px;
    outline: 0
}

/*移除 input type="number" 时浏览器自带的上下箭头*/
.modal-open .product-details-content .pro-details-quality .cart-plus-minus input::-webkit-outer-spin-button, 
.modal-open .product-details-content .pro-details-quality .cart-plus-minus input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.modal-open .product-details-content .pro-details-quality .cart-plus-minus input[type='number'] {
	-moz-appearance: textfield;
}
/*移除 input type="number" 时浏览器自带的上下箭头*/

.modal-open .product-details-content .pro-details-quality .cart-plus-minus .inc.qtybutton {
    height: 50px;
    padding-top: 14px;
    right: 0;
    top: 0
}

.modal-open .product-details-content .pro-details-quality .cart-plus-minus .dec.qtybutton {
    height: 50px;
    left: 0;
    padding-top: 14px;
    top: 0
}
/* == 數量選擇 == */

/* == 加入購物車按鈕 == */
.modal-open .product-details-content .pro-details-quality {
    display: inline-flex;
    margin: 30px 0;
    width: 100%;
}

.modal-open .product-details-content .pro-details-quality .pro-details-cart a {
    position: relative;
    padding: 0 55px;
    line-height: 48px;
    height: 48px;
    font-size: 1rem; /*16px*/
    font-weight: 700;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 15px;
    background: #ff7004;
    color: #FFFFFF
}

.modal-open .product-details-content .pro-details-quality .pro-details-cart a:hover {
    background-color: #333333
}

@media only screen and (max-width:767px) {
    .modal-open .product-details-content .pro-details-quality .pro-details-cart a {
        padding: 0 30px
    }
}

.modal-open .product-details-content .bg-btn-xl {
    background-color: #059cb5;
    border-color: #059cb5;
}
.modal-open .product-details-content .btn-xl {
    display: inline-block;
    text-transform: capitalize;
	margin-left: 0.75rem !important;
    padding: 0.75rem 1.75rem;
    font-size: 1rem; /*16px*/
    font-weight: 700;
    letter-spacing: .1rem;
    color: #FFFFFF;
    border-radius: 99rem !important;
}
/* == 加入購物車按鈕 == */

/* == 分享鈕 == */
.modal-open .product-details-content .pro-details-social-info .social-info ul {
    display: flex;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.modal-open .product-details-content .pro-details-social-info {
    display: flex;
    border-bottom: 1px solid #ebebeb;
    margin-top: 10px;
    padding-bottom: 12px
}

.modal-open .product-details-content .pro-details-social-info span {
    display: inline-block;
    float: left;
    margin-right: 10px;
    line-height: 30px;
    font-weight: 700;
    color: #333333;
    font-size: 0.875rem; /*14px*/
}

.modal-open .product-details-content .pro-details-social-info .social-info a {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    text-align: center;
    color: #333333;
    margin-right: 0;
    white-space: normal;
    text-indent: 0;
    overflow: hidden;
    padding: 0;
    font-size: 1.125rem; /*18px*/
    width: 30px
}

.modal-open .product-details-content .pro-details-social-info .social-info a i {
    font-size: 1.5rem; /*24px*/
}

.modal-open .product-details-content .pro-details-social-info .social-info a:hover {
    color: #ff7004
}
/* == 分享鈕 == */


/* ============================= */
/* ==  左右選擇鍵  ============== */
/* ============================= */
.modal-open .slick-box .slick-prev, 
.modal-open .slick-box .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
	height: 36px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #f6f6f6;
	border-radius: 100%;
	z-index: 1;
}

.modal-open .slick-box .slick-prev:before {
    font-family: none !important;
	font-size: 0 !important;
	line-height: normal !important;
	content: url("../../images/shop/prev.png");
	
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	
    border: none;
}
.modal-open .slick-box .slick-prev:hover:before {
	content: url("../../images/shop/prev-hover.png");
}

.modal-open .slick-box .slick-next:before {
    font-family: none !important;
	font-size: 0 !important;
	line-height: normal !important;
	content: url("../../images/shop/next.png");
	
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    border: none;
}
.modal-open .slick-box .slick-next:hover:before {
	content: url("../../images/shop/next-hover.png");
}

.modal-open .slick-box .slick-prev:hover,
.modal-open .slick-box .slick-prev:focus,
.modal-open .slick-box .slick-next:hover,
.modal-open .slick-box .slick-next:focus {
	background-color: #00bad9;
}

.modal-open .slick-box .slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}

.modal-open .slick-box .slick-active {
	opacity: 1;  /*(( 0.5 ))--左2右2 ， 兩邊顯示的透明度*/
}

.modal-open .slick-box .slick-current {
	opacity: 1;  /*中間顯示那個的透明度*/
}

.modal-open .slick-box .slick-prev {
	left: -15px;
} 

.modal-open .slick-box .slick-next {
	right: -15px;;
}

@media (max-width: 768px) {
	.modal-open .slick-box .slick-prev {
		left: 0px;
	} 
	.modal-open .slick-box .slick-next {
		right: 0px;
	}
}
/* ============================= */
/* ==  左右選擇鍵  ============== */
/* ============================= */


/* ============================= */
/* ==  Dots 豆豆選擇  =========== */
/* ============================= */
.modal-open .slick-box .slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.modal-open .slick-box .slick-dots {
    position: absolute;
    bottom: -25px;

    display: none !important;  /*block*/

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.modal-open .slick-box .slick-dots li {
    position: relative;

    display: inline-block;

    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.modal-open .slick-box .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 12px;
    height: 12px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.modal-open .slick-box .slick-dots li button:hover,
.modal-open .slick-box .slick-dots li button:focus {
    outline: none;
}

.modal-open .slick-box .slick-dots li button:hover:before,
.modal-open .slick-box .slick-dots li button:focus:before {
    opacity: 1;
}

.modal-open .slick-box .slick-dots li button:before {
    font-family: 'slick';
    font-size: 0.375rem; /*6px*/
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 12px;
    height: 12px;

    content: '•';
    text-align: center;

    opacity: .09;
    color: transparent; /*black*/

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	
	background: #059cb5;
	border-radius: 100%;
}

.modal-open .slick-box .slick-dots li.slick-active button:before {
    opacity: .75;
    color: transparent; /*black*/
}
/* ============================= */
/* ==  Dots 豆豆選擇  =========== */
/* ============================= */
/* MODEL-OPEN ================== */
/* ============================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ================================== */
/* == 自訂分頁列 ===================== */
/* ================================= */
.custom-pagination li {
    display: inline-block
}

.custom-pagination a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 0.875rem; /*14px*/
    font-weight: bold;   
	width: 36px; 
    height: 36px;
    line-height: 36px;
	padding: 0;
	color: #4c39e0;  
	border: 1px solid #4c39e0;  
    background: #FFFFFF;    
    border-radius: 100%;
    text-align: center;
    vertical-align: top;
}

.custom-pagination a.active {
    color: #FFFFFF;
	border: 1px solid #4c39e0;
    background-color: #4c39e0;
}

.custom-pagination a:hover {
    color: #FFFFFF;
	border: 1px solid #4c39e0;
    background-color: #4c39e0;
}
/* ================================== */
/* == 自訂分頁列 ===================== */
/* ================================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ========================================== */
/* ==  shop-left-sidebar_section  =========== */
/* ========================================== */
.shop-left-sidebar_section {
	/*text-align: center;*/
	
	/*background-color: #FFFFFF;*/
	
	/*background-image: url(../../images/shop/shop-left-sidebar_section_bg.png);*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* ================================== */
/* ==  標提 heading_container set  == */
/* ================================= */
.shop-left-sidebar_section .heading_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-align: center;  /* flex-start // flex-end*/
	-ms-flex-align: center;
	align-items: center; /* flex-start // flex-end*/
	
	text-align: center;	
}

.shop-left-sidebar_section .heading_container h2 {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.shop-left-sidebar_section .heading_container h2 span {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.shop-left-sidebar_section .heading_container h2 span::before {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 100%;
    height: 2px;
	text-align: center;
    bottom: -0.5rem;
    z-index: 0;
	background-color: #059cb5;
}

.shop-left-sidebar_section .heading_container h3 {
	position: relative;	
    font-size: 1.25rem; /*20px*/
    line-height: 1.2;
	margin-top: .5rem;
	margin-bottom: .5rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #959595;
}
/* ================================== */
/* ==  標提 heading_container set  == */
/* ================================= */

.shop-left-sidebar_section .shop_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;*/
	padding: 35px 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-box-pack: start;  /*center*/ /*end*/
	-ms-flex-pack: start;  /*center*/ /*end*/
	justify-content: flex-start; /*center*/ /*flex-end*/
	-webkit-box-align: flex-start; /*center*/ /*flex-end*/
	-ms-flex-align: start;  /*center*/ /*end*/
	align-items: flex-start; /*center*/ /*flex-end*/
}

.shop-left-sidebar_section .shop_container a .box {
	/*margin: 25px 1%;*/
	-ms-flex-preferred-size: 31%;
	flex-basis: 31%;
	border: 1px solid #d7d6d6;
	/*padding: 45px 25px 25px;*/
	padding: 5px 5px 5px 5px;
	border-radius: 20px;
	background: #FFFFFF;
	
	margin: 0 0 30px 0;
}

.shop-left-sidebar_section .shop_container a .box .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;	
	
	border-radius: 15px;
	overflow: hidden;
	background-color: #FFFFFF;
}

.shop-left-sidebar_section .shop_container a .box .img-box img {
	width: 100%;
}

.shop-left-sidebar_section .shop_container a .box .detail-box {
	padding: 25px 20px 5px 20px;
	/*margin-top: 25px;*/	
}

.shop-left-sidebar_section .shop_container a .box .detail-box h4 {
	position: relative;
	font-size: 1.25rem; /*20px*/
	font-weight: 600;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 1;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 45px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

.shop-left-sidebar_section .shop_container a .box .detail-box h4:hover {
	color: #00bad9;
}

.shop-left-sidebar_section .shop_container a .box .detail-box p {	
	position: relative;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 2;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 55px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

/* ================================== */
/* ==  更多 MORE Button ============= */
/* ================================= */

/* STYLE-01 靠左 */
.shop-left-sidebar_section .btn-box-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.shop-left-sidebar_section .btn-box-left .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop-left-sidebar_section .btn-box-left .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5;
}

.shop-left-sidebar_section .btn-box-left .bg-btn-xl:active,
.shop-left-sidebar_section .btn-box-left .bg-btn-xl:focus,
.shop-left-sidebar_section .btn-box-left .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00dbff!important;
}

.shop-left-sidebar_section .btn-box-left .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5);
}

/* ====================================*/
.shop-left-sidebar_section .btn-box-left a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop-left-sidebar_section .btn-box-left a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-02 居中 */
.shop-left-sidebar_section .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.shop-left-sidebar_section .btn-box .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop-left-sidebar_section .btn-box .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5;
}

.shop-left-sidebar_section .btn-box .bg-btn-xl:active,
.shop-left-sidebar_section .btn-box .bg-btn-xl:focus,
.shop-left-sidebar_section .btn-box .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important;
}

.shop-left-sidebar_section .btn-box .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5);
}

/* ====================================*/
.shop-left-sidebar_section .btn-box a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop-left-sidebar_section .btn-box a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-01 靠右 */
.shop-left-sidebar_section .btn-box-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.shop-left-sidebar_section .btn-box-right .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop-left-sidebar_section .btn-box-right .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5;
}

.shop-left-sidebar_section .btn-box-right .bg-btn-xl:active,
.shop-left-sidebar_section .btn-box-right .bg-btn-xl:focus,
.shop-left-sidebar_section .btn-box-right .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important
}

.shop-left-sidebar_section .btn-box-right .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}

/* ====================================*/
.shop-left-sidebar_section .btn-box-right a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #059cb5;
	border-radius: 5px;
}

.shop-left-sidebar_section .btn-box-right a:hover {
	background-color: #6944db;
}
/* ====================================*/
/* ================================== */
/* ==  更多 MORE Button ============= */
/* ================================= */


/* ================================== */
/* ==  商品列 ======================= */
/* ================================= */

/* 分類查詢 ========================= */
.shop-left-sidebar_section .shop-category-area .shop-top-bar {
    margin: 30px 0;
    align-self: center;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem; /*15px*/
    background: #ebebeb;
    padding: 0px 20px 0px 20px;
}

@media only screen and (max-width:767px) {
    .shop-left-sidebar_section .shop-category-area .shop-top-bar {
        margin-top: 0;
    }
}

@media only screen and (max-width:575px) {
    .shop-left-sidebar_section .shop-category-area .shop-top-bar {
        padding: 15px 10px 5px 30px;
    }
}

.shop-left-sidebar_section .shop-category-area .shop-top-bar p {
    margin: 0;
}

@media only screen and (max-width:575px) {
    .shop-left-sidebar_section .shop-category-area .shop-top-bar.d-flex {
        display: block !important;
    }
}

/* ============================= */

.shop-left-sidebar_section .shop-select .nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #ebebeb;
    border-radius: 0;
    border: solid 1px #ebebeb;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 0.9375rem; /*15px*/
    font-weight: 400;
    height: 40px;
    line-height: 40px;
    outline: 0;
	padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    max-width: 250px;
    width: 300px;
}

@media only screen and (max-width:575px) {
    .shop-left-sidebar_section .shop-select .nice-select {
        max-width: 200px;
    }
}

.shop-left-sidebar_section .shop-select .nice-select:after {
    border: 0;
    content: "";
    display: inline-block;
    font-family: Ionicons;
    height: auto;
    margin-top: 0;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: auto;
    transform-origin: 0 0;
    transform: rotate(0);
    transition: all .15s ease-in-out;
    width: auto;
    color: #333333;
    font-size: 1rem; /*16px*/
}

.shop-left-sidebar_section .shop-select .nice-select .list {
    background-color: #FFFFFF;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(.75) translate(-21px);
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 15;
    width: 100%;
    color: #333333;
}

.shop-left-sidebar_section .shop-select .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translate(0);
}

/* 分類查詢 ========================= */

/* 產品列表 ========================= */
.shop-left-sidebar_section .product {
    overflow: hidden;
}

.shop-left-sidebar_section .product .thumb {
    position: relative;
    overflow: hidden;
}

.shop-left-sidebar_section .product .thumb .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.shop-left-sidebar_section .product .thumb .image img {
    z-index: 1;
    max-width: 100%;
    transition: all .3s ease 0s;
}

.shop-left-sidebar_section .product .thumb .image img.hover-image {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0;
}

.shop-left-sidebar_section .product .thumb .badges {
    position: absolute;
    z-index: 8;
    top: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
}

.shop-left-sidebar_section .product .thumb .badges span {
    font-size: 0.875rem; /*14px*/
    font-weight: 500;
    line-height: 24px;
    display: block;
    padding: 0 7px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 3px;
    color: #FFFFFF;
}

.shop-left-sidebar_section .product .thumb .badges span+span {
    margin-top: 10px;
}

.shop-left-sidebar_section .product .thumb .badges span.new {
    background-color: #ff7004;
}

.shop-left-sidebar_section .product .thumb .badges span.sale {
    background-color: #059cb5;
}

.shop-left-sidebar_section .product .thumb .actions {
    position: absolute;
    z-index: 9;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    transition: all .3s ease 0s
}

.shop-left-sidebar_section .product .thumb .actions .action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all .3s ease 0s;
    text-decoration: none;
    color: #333333;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.shop-left-sidebar_section .product .thumb .actions .action i {
	position: relative;
	top: 1px;
    font-size: 1rem; /*16px*/
    line-height: 1;
}

.shop-left-sidebar_section .product .thumb .actions .action i.fa-heart {
    color: #d70000; /*愛心 - 紅*/
}
.shop-left-sidebar_section .product .thumb .actions .action:hover i.fa-heart:not(.active) {
    color: #FFFFFF !important;
    /*background-color: #ff7004;*/
}

.shop-left-sidebar_section .product .thumb .actions .action+.action {
    margin-top: 10px;
}

.shop-left-sidebar_section .product .thumb .actions .action:not(.wishlist) {
    visibility: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.shop-left-sidebar_section .product .thumb .actions .action.active {
    color: #ff7004;
}

.shop-left-sidebar_section .product .thumb .actions .action:hover:not(.active) {
    color: #FFFFFF;
    background-color: #00bad9;
}

.shop-left-sidebar_section .product .thumb .add-to-cart {
    display: block;
    width: 80%;
    height: 45px;
    line-height: 45px;
    background-color: #FFFFFF;
    text-align: center;
    border: 0;
    border-radius: 3px;
    font-size: 0.875rem; /*14px*/
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 11;
    margin: auto;
    font-weight: 600;
    visibility: hidden;
    transition: all .3s ease 0s;
    transform: translateY(20px);
    color: #d70000;
    opacity: 0;
    font-family: inherit;
}

.shop-left-sidebar_section .product .thumb .add-to-cart:hover {
    color: #FFFFFF;
	background-color: #d70000;
}

.shop-left-sidebar_section .product .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 20px 15px 0;
    transition: all .3s ease 0s;
    text-align: center;
    background-color: #FFFFFF;
}

.shop-left-sidebar_section .product .content .title {
    font-size: 1.125rem; /*18px*/
    margin: 7px 0 20px;
    font-family: inherit;
	font-weight: 600;
}

.shop-left-sidebar_section .product .content .title a {
    text-decoration: none;
    color: #1d1d1d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 1rem; /*16px*/
}

.shop-left-sidebar_section .product .content .price {
    font-size: 1rem; /*16px*/
    line-height: 1;
    font-family: Montserrat, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
}

.shop-left-sidebar_section .product .content .price:not(:last-child) {
    margin-bottom: 20px;
}

.shop-left-sidebar_section .product .content .price span.new {
	font-size: 1.125rem; /*18px*/
    color: #3f3f3f;
    font-weight: 600;
	margin-left: 10px;
}

.shop-left-sidebar_section .product .content .price span.old {
    font-size: 0.9375rem; /*15px*/
    text-decoration: line-through;
    color: #999;
}

.shop-left-sidebar_section .product .content .btn {
    align-self: center;
}

.shop-left-sidebar_section .product:hover .thumb .image img {
    transform: scale(1.1) rotate(3deg);
}

.shop-left-sidebar_section .product:hover .thumb .image img:not(:last-child) {
    opacity: 0;
}

.shop-left-sidebar_section .product:hover .thumb .image img.hover-image {
    opacity: 1;
}

.shop-left-sidebar_section .product:hover .thumb .actions .action {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.shop-left-sidebar_section .product:hover .thumb .add-to-cart {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.shop-left-sidebar_section .product:hover .content .title a {
    color: #333333;
}

.shop-left-sidebar_section .product:hover .content .title a:hover {
    color: #ff7004;
}

/* ============================= */
/* ================================== */
/* ==  商品列 ======================= */
/* ================================= */


/* ================================== */
/* == 側邊分類列 ===================== */
/* ================================= */
/*== shop-left-sideba 標題 H3 ==*/
.shop-left-sidebar_section .shop-sidebar-wrap .h3,
.shop-left-sidebar_section .shop-sidebar-wrap h3 {
	position: relative;
    display: block;
	
    color: #333333;
    font-size: 1rem; /*16px*/
	font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
	
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 5px;
    
    border-bottom: 1px solid #ebebeb;
}

.shop-left-sidebar_section .shop-sidebar-wrap .h3:before,
.shop-left-sidebar_section .shop-sidebar-wrap h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 120px; /*60*/
    height: 2px;
    background: #ff7004;
}
/*== shop-left-sideba 標題 H3 ==*/

/*== shop-left-sideba 標題 H4 ==*/
.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-group .h4,
.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-group h4 {
	display: block;
	
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    letter-spacing: 1.2px;    
    text-transform: capitalize !important;
	
    margin: 15px 0;
}
/*== shop-left-sideba 標題 H4 ==*/

/* ******************************************* */
/* ******************************************* */
/*== shop-left-sideba UL / LI ==*/
.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-category ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-category li a {
	display: block;
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    margin-bottom: 10px;    
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-category li a span {
    float: right;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-category li a:hover {
    color: #00bad9;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li {
    align-items: center;
    position: relative;
    padding: 0 0 15px;
    display: block;
}

/*== Size ==*/
.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left {
    position: relative;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 999;
    width: auto;
    top: 6px;
    left: 1px;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #FFFFFF;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    transition: all .3s linear;
}

.shop-left-sidebar_section .shop-sidebar-wrap .checkmark::after {
    left: 4px;
    top: 1px;
    width: 6px;
	height: 9px;
	border: solid #059cb5;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}
/*== Size ==*/

/*== Colour ==*/
.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.grey {
    background: #aab2bd;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.white {
    background: #FFFFFF;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.black {
    background: #434a54;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.camel {
    background: #007bff;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li a {
    margin-left: 25px;
    display: block;
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    margin-top: 0;
    line-height: 22px;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li a span {
    float: right;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li:hover .checkmark {
    border-color: #ff7004;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li:hover a {
    color: #00bad9;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li:hover a span {
    color: #ff7004;
}
/*== Colour ==*/

/*== Tags ==*/
.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-tag ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-tag li {
    line-height: 1;
    float: left;
    list-style: none;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-tag li a {
    display: block;
    float: left;
    padding: 10px 20px;
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    line-height: 20px;
    border: 1px solid #059cb5;
    border-radius: 30px;
    background: #FFFFFF;
    margin: 4px;
    text-transform: capitalize;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-tag li a:hover {
    background-color: #00bad9;
    border-color: #00bad9;
    color: #FFFFFF;
}

.shop-left-sidebar_section .shop-sidebar-wrap .sidebar-widget-tag li:first-child a {
    margin-left: 0;
}
/*== Tags ==*/

/* == checkBOX 作用與否 == */
.sidebar-widget .sidebar-widget-list ul li .sidebar-widget-list-left input:checked~.checkmark::after {
    display: block;
}

.sidebar-widget.no-cba .sidebar-widget-list ul li .sidebar-widget-list-left input:checked~.checkmark::after {
    display: none;
}

.sidebar-widget.no-cba .sidebar-widget-list ul li .sidebar-widget-list-left .checkmark {
    border: 0;
}
/* == checkBOX 作用與否 == */

/*== shop-left-sideba UL / LI ==*/
/* ******************************************* */
/* ******************************************* */

/* ================================== */
/* == 側邊分類列 ===================== */
/* ================================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */




/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ============================================ */
/* ==  shop_product-detail_section  =========== */
/* ============================================ */
.shop_product-detail_section {
	/*text-align: center;*/
	
	/*background-color: #FFFFFF;*/
	
	/*background-image: url(../../images/shop/shop_product-detail_section_bg.png);*/
	/*background-size: cover;*/
	background-repeat: no-repeat;
	background-position: bottom;
}

/* ================================== */
/* ==  標提 heading_container set  == */
/* ================================= */
.shop_product-detail_section .heading_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-align: center;  /* flex-start // flex-end*/
	-ms-flex-align: center;
	align-items: center; /* flex-start // flex-end*/
	
	text-align: center;	
}

.shop_product-detail_section .heading_container h2 {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.shop_product-detail_section .heading_container h2 span {
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.shop_product-detail_section .heading_container h2 span::before {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 100%;
    height: 2px;
	text-align: center;
    bottom: -0.5rem;
    z-index: 0;
	background-color: #059cb5;
}

.shop_product-detail_section .heading_container h3 {
	position: relative;	
    font-size: 1.25rem; /*20px*/
    line-height: 1.2;
	margin-top: .5rem;
	margin-bottom: .5rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #959595;
}
/* ================================== */
/* ==  標提 heading_container set  == */
/* ================================= */

.shop_product-detail_section .shop_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;*/
	padding: 35px 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-box-pack: start;  /*center*/ /*end*/
	-ms-flex-pack: start;  /*center*/ /*end*/
	justify-content: flex-start; /*center*/ /*flex-end*/
	-webkit-box-align: flex-start; /*center*/ /*flex-end*/
	-ms-flex-align: start;  /*center*/ /*end*/
	align-items: flex-start; /*center*/ /*flex-end*/
}

.shop_product-detail_section .shop_container a .box {
	/*margin: 25px 1%;*/
	-ms-flex-preferred-size: 31%;
	flex-basis: 31%;
	border: 1px solid #d7d6d6;
	/*padding: 45px 25px 25px;*/
	padding: 5px 5px 5px 5px;
	border-radius: 20px;
	background: #FFFFFF;
	
	margin: 0 0 30px 0;
}

.shop_product-detail_section .shop_container a .box .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;	
	
	border-radius: 15px;
	overflow: hidden;
	background-color: #FFFFFF;
}

.shop_product-detail_section .shop_container a .box .img-box img {
	width: 100%;
}

.shop_product-detail_section .shop_container a .box .detail-box {
	padding: 25px 20px 5px 20px;
	/*margin-top: 25px;*/	
}

.shop_product-detail_section .shop_container a .box .detail-box h4 {
	position: relative;
	font-size: 1.25rem; /*20px*/
	font-weight: 600;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 1;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 45px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

.shop_product-detail_section .shop_container a .box .detail-box h4:hover {
	color: #00bad9;
}

.shop_product-detail_section .shop_container a .box .detail-box p {	
	position: relative;
	color: #333333;
	text-align: left;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 2;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 55px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */
}

/* ================================== */
/* ==  更多 MORE Button ============= */
/* ================================= */

/* STYLE-01 靠左 */
.shop_product-detail_section .btn-box-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.shop_product-detail_section .btn-box-left .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop_product-detail_section .btn-box-left .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5;
}

.shop_product-detail_section .btn-box-left .bg-btn-xl:active,
.shop_product-detail_section .btn-box-left .bg-btn-xl:focus,
.shop_product-detail_section .btn-box-left .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important;
}

.shop_product-detail_section .btn-box-left .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5);
}

/* ====================================*/
.shop_product-detail_section .btn-box-left a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop_product-detail_section .btn-box-left a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-02 居中 */
.shop_product-detail_section .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.shop_product-detail_section .btn-box .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop_product-detail_section .btn-box .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5;
}

.shop_product-detail_section .btn-box .bg-btn-xl:active,
.shop_product-detail_section .btn-box .bg-btn-xl:focus,
.shop_product-detail_section .btn-box .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important;
}

.shop_product-detail_section .btn-box .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5);
}

/* ====================================*/
.shop_product-detail_section .btn-box a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop_product-detail_section .btn-box a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-01 靠右 */
.shop_product-detail_section .btn-box-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.shop_product-detail_section .btn-box-right .btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

.shop_product-detail_section .btn-box-right .bg-btn-xl {
	background-color: #059cb5;
	border-color: #059cb5;
}

.shop_product-detail_section .btn-box-right .bg-btn-xl:active,
.shop_product-detail_section .btn-box-right .bg-btn-xl:focus,
.shop_product-detail_section .btn-box-right .bg-btn-xl:hover {
	background-color: #00bad9!important;
	border-color: #00bad9!important
}

.shop_product-detail_section .btn-box-right .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}

/* ====================================*/
.shop_product-detail_section .btn-box-right a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

.shop_product-detail_section .btn-box-right a:hover {
	background-color: #6944db;
}
/* ====================================*/
/* ================================== */
/* ==  更多 MORE Button ============= */
/* ================================= */


/* ================================== */
/* == 右側邊分類列 ===================== */
/* ================================= */
/*== shop-right-sideba 標題 H3 ==*/
.shop_product-detail_section .shop-sidebar-wrap .h3,
.shop_product-detail_section .shop-sidebar-wrap h3 {
	position: relative;
    display: block;
	
    color: #333333;
    font-size: 1rem; /*16px*/
	font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
	
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 5px;
    
    border-bottom: 1px solid #ebebeb;
}

.shop_product-detail_section .shop-sidebar-wrap .h3:before,
.shop_product-detail_section .shop-sidebar-wrap h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 120px; /*60*/
    height: 2px;
    background: #ff7004;
}
/*== shop-right-sideba 標題 H3 ==*/

/*== shop-right-sideba 標題 H4 ==*/
.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-group .h4,
.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-group h4 {
	display: block;
	
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    letter-spacing: 1.2px;    
    text-transform: capitalize !important;
	
    margin: 15px 0;
}
/*== shop-right-sideba 標題 H4 ==*/

/* ******************************************* */
/* ******************************************* */
/*== shop-right-sideba UL / LI ==*/
.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-category ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-category li a {
	display: block;
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    margin-bottom: 10px;    
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-category li a span {
    float: right;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-category li a:hover {
    color: #00bad9;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li {
    align-items: center;
    position: relative;
    padding: 0 0 15px;
    display: block;
}

/*== Size ==*/
.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left {
    position: relative;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 999;
    width: auto;
    top: 6px;
    left: 1px;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #FFFFFF;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    transition: all .3s linear;
}

.shop_product-detail_section .shop-sidebar-wrap .checkmark::after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 8px;
    border: solid #ff7004;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}
/*== Size ==*/

/*== Colour ==*/
.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.grey {
    background: #aab2bd;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.white {
    background: #FFFFFF;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.black {
    background: #434a54;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li .sidebar-widget-list-left .checkmark.camel {
    background: #c19a6b;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li a {
    margin-left: 25px;
    display: block;
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    margin-top: 0;
    line-height: 22px;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li a span {
    float: right;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li:hover .checkmark {
    border-color: #ff7004;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li:hover a {
    color: #00bad9;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget .sidebar-widget-list li:hover a span {
    color: #ff7004;
}
/*== Colour ==*/

/*== Tags ==*/
.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-tag ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-tag li {
    line-height: 1;
    float: left;
    list-style: none;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-tag li a {
    display: block;
    float: left;
    padding: 10px 20px;
    color: #333333;
    font-size: 0.9375rem; /*15px*/
	font-weight: 600;
    line-height: 20px;
    border: 1px solid #059cb5;
    border-radius: 30px;
    background: #FFFFFF;
    margin: 4px;
    text-transform: capitalize;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-tag li a:hover {
    background-color: #00bad9;
    border-color: #00bad9;
    color: #FFFFFF;
}

.shop_product-detail_section .shop-sidebar-wrap .sidebar-widget-tag li:first-child a {
    margin-left: 0;
}
/*== Tags ==*/

/* == checkBOX 作用與否 == */
.sidebar-widget .sidebar-widget-list ul li .sidebar-widget-list-left input:checked~.checkmark::after {
    display: block;
}

.sidebar-widget.no-cba .sidebar-widget-list ul li .sidebar-widget-list-left input:checked~.checkmark::after {
    display: none;
}

.sidebar-widget.no-cba .sidebar-widget-list ul li .sidebar-widget-list-left .checkmark {
    border: 0;
}
/* == checkBOX 作用與否 == */

/*== shop-right-sideba UL / LI ==*/
/* ******************************************* */
/* ******************************************* */

/* ================================== */
/* == 右側邊分類列 ===================== */
/* ================================= */


/* ============================= */
/* 右邊 產品說明區 =============== */
.shop_product-detail_section .product-details-content .h2,
.shop_product-detail_section .product-details-content h2 {    
    font-size: 1.5rem; /*24px*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 25px 0;
	
	color: #FFFFFF;
	padding: 15px;
	background: #4c39e0;
}

.shop_product-detail_section .product-details-content .h3,
.shop_product-detail_section .product-details-content h3 {    
    font-size: 1.5rem; /*24px*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 25px 0;
	
	color: #FFFFFF;
	padding: 15px;
	background: #4c39e0;
}

.shop_product-detail_section .product-details-content .h3.subtitle,
.shop_product-detail_section .product-details-content h3.subtitle {    
    font-size: 1.5rem; /*24px*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 15px 0;
	
	color: #4c39e0;
	padding: 15px;
	background: transparent !important;
	border-bottom: 1px solid #4c39e0;
}

.shop_product-detail_section .product-details-content .pricing-meta {    
    margin-bottom: 15px;
    margin-top: 15px;
	
	padding: 0 15px;
}

.shop_product-detail_section .product-details-content .pricing-meta ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop_product-detail_section .product-details-content .pricing-meta ul li {
    font-size: 1.5rem; /*24px*/
	font-weight: 600;
    color: #333333;
    line-height: 30px;
}

.shop_product-detail_section .product-details-content p.textdescription-area {
	font-size: 0.875rem;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
	
	padding: 0 15px;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 4;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 105px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */ 
}

/*== filter-area 標題 H4 ==*/
.shop_product-detail_section .product-details-content .filter-area .h4,
.shop_product-detail_section .product-details-content .filter-area h4 {
	position: relative;
	display: block;
	
    color: #333333;
    font-size: 0.875rem; /*14px*/
	font-weight: 600;
    letter-spacing: 1.2px;    
    text-transform: capitalize !important;
	
	padding-bottom: 10px;
    margin: 15px 0;
	border-bottom: 1px solid #ebebeb;
}

.shop_product-detail_section .product-details-content .filter-area .h4:before,
.shop_product-detail_section .product-details-content .filter-area h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px; /*60*/
    height: 2px;
    background: #bbbbbb;
}

.shop_product-detail_section .product-details-content .filter-area {
	display: inline-block;
	font-size: 0.875rem; /*14px*/
    font-weight: 400;
    color: #333333;
    line-height: 26px;
	
	padding: 0 15px;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box-list {
	position: relative;
	display: inline-block;
}

/*== Size ==*/
 .shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

 .shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list ul li {
    float: left;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left {
    position: relative;
	padding-right: 20px;
	
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 999;
    width: auto;
    top: 6px;
    left: 1px;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #FFFFFF;
    border: 1px solid #AAAAAA;
    border-radius: 3px;
    transition: all .3s linear;
}

.shop_product-detail_section .product-details-content .filter-area .checkmark::after {
    left: 4px;
    top: 1px;
    width: 6px;
	height: 9px;
	border: solid #059cb5;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}
/*== Size ==*/

/*== Colour ==*/
.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.grey {
    background: #aab2bd;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.white {
    background: #FFFFFF;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.black {
    background: #434a54;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li .widget-box-list-left .checkmark.camel {
    background: #007bff;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li a {
    margin-left: 25px;
    display: block;
    color: #333333;
    font-size: 0.875rem; /*14px*/
	font-weight: 600;
    margin-top: 0;
    line-height: 22px;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li a span {
    float: right;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li:hover .checkmark {
    border-color: #4c39e0;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li:hover a {
    color: #4c39e0;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li:hover a span {
    color: #ff7004;
}
/*== Colour ==*/

/* == checkBOX 作用與否 == */
.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list ul li .widget-box-list-left input:checked~.checkmark::after {
    display: block;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box.no-cba .widget-box-list ul li .widget-box-list-left input:checked~.checkmark::after {
    display: none;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box.no-cba .widget-box-list ul li .widget-box-list-left .checkmark {
    border: 0;
}
/* == checkBOX 作用與否 == */

/* == 數量選擇 == */
.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus {
    border: 1px solid #CCCCCC;
    display: inline-block;
    height: 50px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 115px;
}

.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus .qtybutton {
    color: #333333;
    cursor: pointer;
    float: inherit;
    font-size: 1.125rem; /*18px*/
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-align: center;
    transition: all .3s ease 0s;
    width: 40px;
}

.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus input.cart-plus-minus-box {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: #333333;
    float: left;
    font-size: 0.875rem; /*14px*/
    height: 50px;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 115px;
    outline: 0
}

/*移除 input type="number" 时浏览器自带的上下箭头*/
.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus input::-webkit-outer-spin-button, 
.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus input[type='number'] {
	-moz-appearance: textfield;
}
/*移除 input type="number" 时浏览器自带的上下箭头*/

.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus .inc.qtybutton {
    height: 50px;
    padding-top: 14px;
    right: 0;
    top: 0
}

.shop_product-detail_section .product-details-content .pro-details-quality .cart-plus-minus .dec.qtybutton {
    height: 50px;
    left: 0;
    padding-top: 14px;
    top: 0
}
/* == 數量選擇 == */

/* == 加入購物車按鈕 == */
.shop_product-detail_section .product-details-content .pro-details-quality {
	display: flex;
	justify-content: flex-start;
	align-items: center;
    /*display: inline-flex;*/
    margin: 30px 0;
    width: 100%;
	
	padding: 0 15px;
}

.shop_product-detail_section .product-details-content .pro-details-quality .pro-details-cart a {
    position: relative;
    padding: 0 55px;
    line-height: 48px;
    height: 48px;
    font-size: 1rem; /*16px*/
    font-weight: 700;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 15px;
    background: #ff7004;
    color: #FFFFFF
}

.shop_product-detail_section .product-details-content .pro-details-quality .pro-details-cart a:hover {
    background-color: #333333
}

@media only screen and (max-width:767px) {
    .shop_product-detail_section .product-details-content .pro-details-quality .pro-details-cart a {
        padding: 0 30px
    }
}

.shop_product-detail_section .product-details-content .bg-btn-xl {
	background-color: #FFFFFF;
    border-color: #4c39e0;
}
.shop_product-detail_section .product-details-content .btn-xl {
    display: inline-block;
    text-transform: capitalize;
	margin-left: 0.75rem !important;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1rem;
    color: #4c39e0;
    border-radius: 99rem !important;
}
/* == 加入購物車按鈕 == */

/* == 分享鈕 == */
.shop_product-detail_section .product-details-content .pro-details-social-info .social-info ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
    /*display: flex;*/
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.shop_product-detail_section .product-details-content .pro-details-social-info .social-info ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.shop_product-detail_section .product-details-content .pro-details-social-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
    /*display: flex;*/
    /*border-bottom: 1px solid #ebebeb;*/
    margin-top: 10px;
    padding-bottom: 12px;
	
	padding: 0 15px;
}

.shop_product-detail_section .product-details-content .pro-details-social-info span {
    display: inline-block;
    float: left;
    margin-right: 10px;
    line-height: 30px;
    font-weight: 700;
    color: #333333;
    font-size: 0.875rem; /*14px*/
}

.shop_product-detail_section .product-details-content .pro-details-social-info .social-info a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
    /*display: inline-block;*/
    line-height: 30px;
    height: 30px;
    text-align: center;
    color: #333333;
    margin-right: 0;
    white-space: normal;
    text-indent: 0;
    overflow: hidden;
    padding: 0;
    font-size: 1.125rem; /*18px*/
    width: 30px
}

.shop_product-detail_section .product-details-content .pro-details-social-info .social-info a i {
    font-size: 1.5rem; /*24px*/
}

.shop_product-detail_section .product-details-content .pro-details-social-info .social-info a:hover {
    color: #4c39e0
}
/* == 分享鈕 == */


/* ============================================== */
/* ==  新的 owlCarousel 左右選擇鍵 中間  ========== */
/* ============================================== */
.shop_product-detail_section .owl-box .owl-nav {
	margin-top: 15px;
	text-align: center;
}

.shop_product-detail_section owl-box .owl-carousel .owl-nav button.owl-prev,
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev,
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next {    
    font: inherit;
	color: inherit;	
	padding: 0 !important;
    background: 0 0;
	border: none;   
	
	position: relative;  /*absolute*/
	top: 0; /*32.5%*/
	z-index: 1;
}

.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev {
	left: 0 !important;
	margin-right: 7.5px;
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next {
	margin-left: 7.5px;
	right: 0 !important;
} 

.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev span,
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next span {
	width: 45px;
    height: 45px;
	border: 1px solid #4c39e0 !important;
	/*background-color: #4c39e0 !important;*/
	background-color: rgba(255,255,255,0.85) !important;
	border-radius: 100%;
} 
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev span {
	content: url("../../images/shop/prev.svg");
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next span {
	content: url("../../images/shop/next.svg");
} 

.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev span:hover {
	content: url("../../images/shop/prev-hover.svg");
	border: 1px solid #4c39e0 !important;
	background-color: #4c39e0 !important;
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next span:hover {
	content: url("../../images/shop/next-hover.svg");
	border: 1px solid #4c39e0 !important;
	background-color: #4c39e0 !important;
} 
/* ============================================== */
/* ==  新的 owlCarousel 左右選擇鍵 中間  ========== */
/* ============================================== */


/* ============================= */
/* ==  左右選擇鍵  ============== */
/* ============================= */
.shop_product-detail_section .slick-prev, 
.shop_product-detail_section .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
	height: 36px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #f6f6f6;
	border-radius: 100%;
	z-index: 1;
}

.shop_product-detail_section .slick-prev:before {
    font-family: none !important;
	font-size: 0 !important;
	line-height: normal !important;
	content: url("../../images/shop/prev.png");
	
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	
    border: none;
}
.shop_product-detail_section .slick-prev:hover:before {
	content: url("../../images/shop/prev-hover.png");
}

.shop_product-detail_section .slick-next:before {
    font-family: none !important;
	font-size: 0 !important;
	line-height: normal !important;
	content: url("../../images/shop/next.png");
	
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    border: none;
}
.shop_product-detail_section .slick-next:hover:before {
	content: url("../../images/shop/next-hover.png");
}

.shop_product-detail_section .slick-prev:hover,
.shop_product-detail_section .slick-prev:focus,
.shop_product-detail_section .slick-next:hover,
.shop_product-detail_section .slick-next:focus {
	background-color: #00bad9;
}

.shop_product-detail_section .slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}

.shop_product-detail_section .slick-active {
	opacity: 1;  /*(( 0.5 ))--左2右2 ， 兩邊顯示的透明度*/
}

.shop_product-detail_section .slick-current {
	opacity: 1;  /*中間顯示那個的透明度*/
}

.shop_product-detail_section .slick-prev {
	left: -15px;
} 

.shop_product-detail_section .slick-next {
	right: -15px;;
}

@media (max-width: 768px) {
	.shop_product-detail_section .slick-prev {
		left: 0px;
	} 
	.shop_product-detail_section .slick-next {
		right: 0px;
	}
}
/* ============================= */
/* ==  左右選擇鍵  ============== */
/* ============================= */


/* ============================= */
/* ==  Dots 豆豆選擇  =========== */
/* ============================= */
.shop_product-detail_section .slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.shop_product-detail_section .slick-dots {
    position: absolute;
    bottom: -25px;

    display: none !important;  /*block*/

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.shop_product-detail_section .slick-dots li {
    position: relative;

    display: inline-block;

    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.shop_product-detail_section .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 12px;
    height: 12px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.shop_product-detail_section .slick-dots li button:hover,
.shop_product-detail_section .slick-dots li button:focus {
    outline: none;
}

.shop_product-detail_section .slick-dots li button:hover:before,
.shop_product-detail_section .slick-dots li button:focus:before {
    opacity: 1;
}

.shop_product-detail_section .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 12px;
    height: 12px;

    content: '•';
    text-align: center;

    opacity: .09;
    color: transparent; /*black*/

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	
	background: #059cb5;
	border-radius: 100%;
}

.shop_product-detail_section .slick-dots li.slick-active button:before {
    opacity: .75;
    color: transparent; /*black*/
}
/* ============================= */
/* ==  Dots 豆豆選擇  =========== */
/* ============================= */
/* 右邊 產品說明區 =============== */
/* ============================= */


/* ============================= */
/* 右下方區塊 產品規格說明區 ====== */
/* TAB 區塊 ==================== */
/* ============================= */
.shop_product-detail_section .nav-tabs {
    border-bottom: 1px solid #ebebeb;
}

.shop_product-detail_section .nav-tabs .nav-link {
	font-weight: 600;
	color: #333333;
	border: 1px solid #4c39e0;
	background: #FFFFFF;
	border-radius: 2em;
}

.shop_product-detail_section .nav-tabs .nav-link.active {
    color: #FFFFFF;
	border: 1px solid #4c39e0;
	background: #4c39e0;
}

.shop_product-detail_section .nav-tabs .nav-link:hover {
	color: #FFFFFF;
	border: 1px solid #4c39e0;
	background: #4c39e0;
    /*border-top-color: transparent;
	border-right-color: transparent;
	border-left-color: transparent;
	border-bottom: 1px solid #4c39e0;*/
}

.shop_product-detail_section .text-customcenter {
	text-align: center !important;
}

.shop_product-detail_section .nav .nav-item.nav-itembox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.shop_product-detail_section .nav .nav-item .nav-link.heightbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	width: 100%;
}
/* ============================= */
/* TAB 區塊 ==================== */
/* 右下方區塊 產品規格說明區 ====== */
/* ============================= */


/* ============================= */
/* 推薦輪播區 ==================== */
/* ============================= */
/* 標題 ========================= */
.shop_product-detail_section h3.recommend-title {
	position: relative;
	display: block;
	color: #333333;
	font-size: 1rem; /*16px*/
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 30px;
	border-bottom: 1px solid #ebebeb;
}
/* 標題 ========================= */

/* 輪播產品列 ========================= */
.shop_product-detail_section .product {
    overflow: hidden;
}

.shop_product-detail_section .product .thumb {
    position: relative;
    overflow: hidden;
}

.shop_product-detail_section .product .thumb .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.shop_product-detail_section .product .thumb .image img {
    z-index: 1;
    max-width: 100%;
    transition: all .3s ease 0s;
}

.shop_product-detail_section .product .thumb .image img.hover-image {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    opacity: 0;
}

.shop_product-detail_section .product .thumb .badges {
    position: absolute;
    z-index: 8;
    top: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
}

.shop_product-detail_section .product .thumb .badges span {
    font-size: 0.875rem; /*14px*/
    font-weight: 500;
    line-height: 24px;
    display: block;
    padding: 0 7px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 3px;
    color: #FFFFFF;
}

.shop_product-detail_section .product .thumb .badges span+span {
    margin-top: 10px;
}

.shop_product-detail_section .product .thumb .badges span.new {
    background-color: #ff7004;
}

.shop_product-detail_section .product .thumb .badges span.sale {
    background-color: #059cb5;
}

.shop_product-detail_section .product .thumb .actions {
    position: absolute;
    z-index: 9;
    top: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    transition: all .3s ease 0s
}

.shop_product-detail_section .product .thumb .actions .action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all .3s ease 0s;
    text-decoration: none;
    color: #333333;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.shop_product-detail_section .product .thumb .actions .action i {
	position: relative;
	top: 1px;
    font-size: 1rem; /*16px*/
    line-height: 1;
}

.shop_product-detail_section .product .thumb .actions .action i.fa-heart {
    color: #d70000; /*愛心 - 紅*/
}
.shop_product-detail_section .product .thumb .actions .action:hover i.fa-heart:not(.active) {
    color: #FFFFFF !important;
    /*background-color: #ff7004;*/
}

.shop_product-detail_section .product .thumb .actions .action+.action {
    margin-top: 10px;
}

.shop_product-detail_section .product .thumb .actions .action:not(.wishlist) {
    visibility: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.shop_product-detail_section .product .thumb .actions .action.active {
    color: #ff7004;
}

.shop_product-detail_section .product .thumb .actions .action:hover:not(.active) {
    color: #FFFFFF;
    background-color: #00bad9;
}

.shop_product-detail_section .product .thumb .add-to-cart {
    display: block;
    width: 80%;
    height: 45px;
    line-height: 45px;
    background-color: #FFFFFF;
    text-align: center;
    border: 0;
    border-radius: 3px;
    font-size: 0.875rem; /*14px*/
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 11;
    margin: auto;
    font-weight: 600;
    visibility: hidden;
    transition: all .3s ease 0s;
    transform: translateY(20px);
    color: #d70000;
    opacity: 0;
    font-family: inherit;
}

.shop_product-detail_section .product .thumb .add-to-cart:hover {
    color: #FFFFFF;
	background-color: #d70000;
}

.shop_product-detail_section .product .content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 20px 15px 0;
    transition: all .3s ease 0s;
    text-align: center;
    background-color: #FFFFFF;
}

.shop_product-detail_section .product .content .title {
    font-size: 1.125rem; /*18px*/
    margin: 7px 0 20px;
    font-family: inherit;
	font-weight: 600;
}

.shop_product-detail_section .product .content .title a {
    text-decoration: none;
    color: #1d1d1d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 1rem; /*16px*/
}

.shop_product-detail_section .product .content .price {
    font-size: 1rem; /*16px*/
    line-height: 1;
    font-family: Montserrat, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
}

.shop_product-detail_section .product .content .price:not(:last-child) {
    margin-bottom: 20px;
}

.shop_product-detail_section .product .content .price span.new {
	font-size: 1.125rem; /*18px*/
    color: #3f3f3f;
    font-weight: 600;
	margin-left: 10px;
}

.shop_product-detail_section .product .content .price span.old {
    font-size: 0.9375rem; /*15px*/
    text-decoration: line-through;
    color: #999;
}

.shop_product-detail_section .product .content .btn {
    align-self: center;
}

.shop_product-detail_section .product:hover .thumb .image img {
    transform: scale(1.1) rotate(3deg);
}

.shop_product-detail_section .product:hover .thumb .image img:not(:last-child) {
    opacity: 0;
}

.shop_product-detail_section .product:hover .thumb .image img.hover-image {
    opacity: 1;
}

.shop_product-detail_section .product:hover .thumb .actions .action {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.shop_product-detail_section .product:hover .thumb .add-to-cart {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.shop_product-detail_section .product:hover .content .title a {
    color: #333333;
}

.shop_product-detail_section .product:hover .content .title a:hover {
    color: #ff7004;
}
/* 輪播產品列 ========================= */
/* ============================= */
/* 推薦輪播區 ==================== */
/* ============================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ================================== */
/* ==  共用 --> 更多 MORE Button ===== */
/* ================================= */
/* STYLE-04 靠左 */
#fullpage .btn-box-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

#fullpage .btn-box-left .btn-border-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 0.65rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #333333;
	
	border-radius: 0rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

#fullpage .btn-box-left .bg-btn-xl {
	background-color: #FFFFFF;
	border-color: #333333
}

#fullpage .btn-box-left .bg-btn-xl:active,
#fullpage .btn-box-left .bg-btn-xl:focus,
#fullpage .btn-box-left .bg-btn-xl:hover {
	color: #FFFFFF;
	background-color: #00bad9!important;
	border-color: #00bad9!important;
}

#fullpage .btn-box-left .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5);
}

/* ====================================*/
#fullpage .btn-box-left a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

#fullpage .btn-box-left a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-05 居中 */
#fullpage .btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#fullpage .btn-box .btn-border-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 0.65rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #333333;
	
	border-radius: 0rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

#fullpage .btn-box .bg-btn-xl {
	background-color: #FFFFFF;
	border-color: #333333
}

#fullpage .btn-box .bg-btn-xl:active,
#fullpage .btn-box .bg-btn-xl:focus,
#fullpage .btn-box .bg-btn-xl:hover {
	color: #FFFFFF;
	background-color: #00bad9!important;
	border-color: #00bad9!important;
}

#fullpage .btn-box .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5);
}

/* ====================================*/
#fullpage .btn-box a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

#fullpage .btn-box a:hover {
	background-color: #6944db;
}
/* ====================================*/

/* STYLE-06 靠右 */
#fullpage .btn-box-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#fullpage .btn-box-right .btn-border-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 0.65rem 3rem;
	font-size: 1rem; /*16px*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #333333;
	
	border-radius: 0rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

#fullpage .btn-box-right .bg-btn-xl {
	background-color: #FFFFFF;
	border-color: #333333
}

#fullpage .btn-box-right .bg-btn-xl:active,
#fullpage .btn-box-right .bg-btn-xl:focus,
#fullpage .btn-box-right .bg-btn-xl:hover {
	color: #FFFFFF;
	background-color: #00bad9!important;
	border-color: #00bad9!important;
}

#fullpage .btn-box-right .bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}

/* ====================================*/
#fullpage .btn-box-right a {
	display: inline-block;
	padding: 10px 35px;
	background-color: #582fd7;
	color: #FFFFFF;
	border-radius: 5px;
}

#fullpage .btn-box-right a:hover {
	background-color: #6944db;
}
/* ===================================*/

/* ====================================*/
/* ================================== */
/* ==  送出 SEND Button ============= */
/* ================================= */
.btn-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

button.btn-xl {
	display: inline-block;
	text-transform: capitalize;
	padding: 1rem 3rem;
	font-size: 1rem; /*16*/
	font-weight: 700;
	letter-spacing: .1rem;
	color: #FFFFFF;
	
	border-radius: 99rem !important;
	margin: 15px 0 15px 0; /*25px 0 45px 0*/
}

button.bg-btn-xl {
	background-color: #FFFFFF;
	border-color: #4c39e0
}

button.bg-btn-xl:active,
button.bg-btn-xl:focus,
button.bg-btn-xl:hover {
	color: #FFFFFF!important;
	background-color: #4c39e0!important;
	border-color: #4c39e0!important
}

button.bg-btn-xl:focus {
	box-shadow: 0 0 0 .2rem rgba(2255,255,255,.5)
}
/* ====================================*/
/* ================================== */
/* ==  送出 SEND Button ============= */
/* ================================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ========================================================= */
/* ==  登入Login + 註冊Sign up + MODEL-OPEN-For-Login ======= */
/* ========================================================= */

#page-box {
  position: relative;
  /*overflow-x: hidden;*/
  width: 100%;
  /*height: 100%;*/
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#page-box .box-inner {
  /*max-width: 1200px;*/
  background: #FFFFFF;
  margin: 0 auto;
  overflow-x: hidden;
}

#page-box .custom-animate-box {
	margin-bottom: 150px;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	justify-content: center;
	align-items: baseline;
}

@media (max-width: 991px) {
	#page-box .custom-animate-box {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 480px) {
	#page-box .custom-animate-box {
		display: block;
		text-align: center;
	}
}


#page-box .animate-box {
	margin-bottom: 100px;
}

#page-box .big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 39%; /*50%*/
  right: 50%;
  transform: translate(-40%, 38%);
}

#page-box .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

#page-box .custom-container {
	max-width: 1720px;
	position: relative;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

@media screen and (max-width: 768px) {
  #page-box .custom-container {
		position: relative;
		margin: 0 auto;
		padding-left: 15px;
		padding-right: 15px;
	}
}

#page-box .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 0px;
	margin-left: 0px;
}

#content-block .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width:1200px) {
  #content-block .container {
    max-width: 1170px;
  }
}

#content-block .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 0px;
	margin-left: 0px;
}

@media screen and (max-width: 768px) {
  #content-block .row {
    display: block;
  }
}

#content-block .row-mt-5em {
  margin-top: 5em;
}
@media screen and (max-width: 768px) {
  #content-block .row-mt-5em {
    margin-top: 3.5em;
  }
}

#content-block .mt-sm {
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  #content-block .mt-sm {
    margin-top: 1.5em;
  }
}

#content-block .row-pb-md {
  padding-bottom: 4em !important;
}

#content-block .row-pb-sm {
  padding-bottom: 2em !important;
}

.js .animate-box {
  opacity: 0;
}


/* ============================================= */
/* --- START --- 登入內容 ----------------------- */
#content-block {
	background: transparent;
}

#content-block.block-cover {
	/*height: 900px;*/
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	float: left;
	width: 100%;
}

#content-block.block-cover a {
	font-weight: 600;
	color: #333333;
}

#content-block.block-cover a:hover {
	color: #4c39e0;
}

#content-block.block-cover .overlay {
	z-index: 1;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
}

#content-block.block-cover .bg-img-pc {
	z-index: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 10%;
	right: 0;
}
@media (min-width: 1450px) {
    #content-block.block-cover .bg-img img{
        margin-left: -100px;
        margin-right: 100px;
        position: absolute;
        margin-top: 50px;
    }
}
#content-block.block-cover .bg-img-mb {
	z-index: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#content-block.block-cover > .custom-container {
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 768px) {
	#content-block.block-cover {
		height: 600px;
	}
}

@media screen and (max-width: 768px) {
	#content-block.block-cover {
		height: inherit !important;
		/* padding: 3em 0 !important; */
	}
}

@media screen and (max-width: 480px) {
	#content-block .text-left {
		text-align: left !important;
	}
	#content-block .text-right {
		text-align: left !important;
	}
}

@media screen and (max-width: 480px) {
	#content-block .btn {
		display: block;
		width: 100%;
	}
}

#content-block .mt-text {
	/*margin-top: 10em;*/ /*7em*/
	margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
	#content-block .mt-text {
		margin-top: 0;
	}
}

#content-block h2.intro-text-lg {
	font-size: 3.0rem; /*48*/
	text-transform: uppercase;
	letter-spacing: .15em;
	display: block;
	margin-bottom: 15px;
	font-weight: 300;
	color: #FFFFFF;
	background: #4c39e0;
}


#content-block h2.intro-text-small {
	font-size: 1rem; /*16*/
	text-transform: uppercase;
	color: #333333;
	/*letter-spacing: .15em;*/
	display: block;
	margin-bottom: 10px;
	font-weight: 300;
}

@media screen and (max-width: 768px) {
	#content-block h2.intro-text-lg {
		font-size: 2.125em; /*34*/
		line-height: 1.2;
		margin-bottom: 10px;
		font-weight: 300;
	}
}

#content-block h3 {
	/*margin-bottom: 0px;*/
	font-size: 2em; /*32*/
	line-height: 1;
	margin-bottom: 15px;
	font-weight: 300;
	color: #FFFFFF;
	background: #4c39e0;
}

#content-block .stext-lg {
	display: inline-block;
    font-size: 200%;
    text-transform: uppercase;
    letter-spacing: .15em;    
    margin-bottom: 15px;
    font-weight: 900;
    color: #FFFFFF;
	background: #5e65a7;
	padding: 10px 50px;
	border-radius: 5px;
}
#content-block .stext-sm  {
	display: inline-block;
	/*margin-bottom: 0px;*/
	font-size: 125%; /*32*/
	line-height: 1;
	margin-bottom: 15px;
	font-weight: 900;
	color: #FFFFFF;
	background: #5e65a7;
	padding: 10px 50px;
	border-radius: 5px;
}

#content-block .form-wrap {
	position: relative;
	width: 100%;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.35);
}

#content-block .form-wrap .tab-box {
	position: relative;
	clear: both;
	background: #FFFFFF;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}

#content-block .form-wrap .nav-tabs .nav-link {
	font-size: 112.5%;
	font-weight: 900;
	padding: 20px 20px;
    border: 2px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
	width: 100%;
	font-weight: bold;
	background: #e9e9ed;
}

#content-block .form-wrap .nav-tabs .nav-link.active {
    color: #5e65a7;
	background-color: #FFFFFF;
	border-bottom: 3px solid #5e65a7
}

#content-block .form-wrap .nav-tabs .nav-link:hover {
	border-bottom: 3px solid #5e65a7
}

#content-block .form-wrap .tab-content {
    z-index: 10;
    position: relative;
    clear: both;
    background: transparent;
    padding: 60px 40px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

@media screen and (max-width: 473px) {
	#content-block .form-wrap .tab-content {
    	padding: 60px 20px;
	}
}

#content-block,
#gtco-counter,
.gtco-bg {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	position: relative;
}

#content-block .form-wrap .tab-content .form-control {
	box-shadow: none;
	background: transparent;
	border: 2px solid rgba(0, 0, 0, 0.1);
	height: 46px !important;
	font-size: 1em;/*16*/
	font-weight: 300;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0px 0px;
	width: 100% !important;
}

#content-block .form-wrap .tab-content .form-control:active, .form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: #4c39e0;
}


/* =====<!-- begin:: 自訂Button -->=============== */
#content-block .form-wrap .tab-content .btn.btn-custom {
	font-size: 1em; /*16*/
	color: #FFFFFF;
    background: #64737a;
    border-color: #64737a;
	padding: 20px 20px;
}
#content-block .form-wrap .tab-content .btn.btn-custom:not(:disabled):not(.disabled):hover {
    background: #46555c;
    border-color: #46555c;
}
#content-block .form-wrap .tab-content .btn.btn-custom:hover {
    -webkit-animation: none;
}


#content-block .form-wrap .tab-content .btn.btn-custom-0 {
	/*font-size: 1em;*/ /*16*/
	font-size: 112.5%;
	font-weight: 900;
	color: #5e65a7;
    background: transparent;
    border-color: #5e65a7;
	padding: 15px 20px;
	border-radius: 5px;
}
#content-block .form-wrap .tab-content .btn.btn-custom-0:not(:disabled):not(.disabled):hover {
	color: #FFFFFF;
    background: #5e65a7;
    border-color: #5e65a7;
}
#content-block .form-wrap .tab-content .btn.btn-custom-0:hover {
    -webkit-animation: none;
}


#content-block .form-wrap .tab-content .btn.btn-custom-rounded {
    height: 35px;
    width: 35px;
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

#content-block .form-wrap .tab-content .btn.btn-custom-rounded.btn-sm {
    height: 35px;
    width: 35px;
	left: 0;
}
/* =====<!-- end:: 自訂Button -->=============== */

#content-block .form-wrap .tab-content .login-toggle-btn a.flote-none {
    float: none !important;
}

#content-block .form-wrap .tab-content .login-toggle-btn a.flote-left {
    float: left !important;
}

#content-block .form-wrap .tab-content .login-toggle-btn a.flote-right {
	font-size: 87.5%;
    float: right !important;
}
@media screen and (max-width: 480px) {
	#content-block .form-wrap .tab-content .login-toggle-btn a.flote-right {
    	float: none !important;
	}
}

#content-block .login-toggle-btn {
	display: flex;
	justify-content: space-between;
	align-content: center;
}

#content-block .login-toggle-btn button.flote-right {
	font-size: 93.75%;
	padding: 0;
}
/* --- END --- 登入內容 ------------------------- */
/* ============================================= */

/* ============================= */
/* ==  modal-open  =========== */
/* ============================= */

#ModalBox-Center .modal-open {
	overflow: hidden
}

#ModalBox-Center .modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto
}

#ModalBox-Center .modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0
}

#ModalBox-Center .modal-dialog {
	position: relative;
	width: auto;
	margin: .5rem;
	pointer-events: none
}

#ModalBox-Center .modal.fade .modal-dialog {
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out,-webkit-transform .3s ease-out;
	-webkit-transform: translate(0,-50px);
	transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
	#ModalBox-Center .modal.fade .modal-dialog {
		transition: none
	}
}

#ModalBox-Center .modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none
}

#ModalBox-Center .modal.modal-static .modal-dialog {
	-webkit-transform: scale(1.02);
	transform: scale(1.02)
}

#ModalBox-Center .modal-dialog-scrollable {
	display: -ms-flexbox;
	display: flex;
	max-height: calc(100% - 1rem)
}

#ModalBox-Center .modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1rem);
	overflow: hidden
}

#ModalBox-Center .modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

#ModalBox-Center .modal-dialog-scrollable .modal-body {
	overflow-y: auto
}

#ModalBox-Center .modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1rem)
}

#ModalBox-Center .modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	height: -webkit-min-content;
	height: -moz-min-content;
	height: min-content;
	content: ""
}

#ModalBox-Center .modal-dialog-centered.modal-dialog-scrollable {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%
}

#ModalBox-Center .modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none
}

#ModalBox-Center .modal-dialog-centered.modal-dialog-scrollable::before {
	content: none
}

#ModalBox-Center .modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: .3rem;
	outline: 0
}

#ModalBox-Center .modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000
}

#ModalBox-Center .modal-backdrop.fade {
	opacity: 0
}

#ModalBox-Center .modal-backdrop.show {
	opacity: .5
}

#ModalBox-Center .modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    color: #FFFFFF;
    background: #5e65a7;
}

#ModalBox-Center .modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto
}
.close {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 0 #fff;
}

#ModalBox-Center .modal-title {
	color: #FFFFFF;
	margin-bottom: 0;
	line-height: 1.5
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem
}

.modal-body .form-control {
    box-shadow: none;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 46px !important;
    font-size: 1em;
    font-weight: 300;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px 0px;
    width: 100% !important;
}

#ModalBox-Center .modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: .75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(.3rem - 1px);
	border-bottom-left-radius: calc(.3rem - 1px)
}

#ModalBox-Center .modal-footer > * {
	margin: .25rem
}

#ModalBox-Center .modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (min-width:576px) {
	#ModalBox-Center .modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto
	}

	#ModalBox-Center .modal-dialog-scrollable {
		max-height: calc(100% - 3.5rem)
	}

	#ModalBox-Center .modal-dialog-scrollable .modal-content {
		max-height: calc(100vh - 3.5rem)
	}

	#ModalBox-Center .modal-dialog-centered {
		min-height: calc(100% - 3.5rem)
	}

	#ModalBox-Center .modal-dialog-centered::before {
		height: calc(100vh - 3.5rem);
		height: -webkit-min-content;
		height: -moz-min-content;
		height: min-content
	}

	#ModalBox-Center .modal-sm {
		max-width: 300px
	}
}

@media (min-width:992px) {
	#ModalBox-Center .modal-lg,.modal-xl {
		max-width: 800px
	}
}

@media (min-width:1200px) {
	#ModalBox-Center .modal-xl {
		max-width: 1140px
	}
}

#ModalBox-Center .btn.btn-custom-0 {
    font-size: 1em;
	font-weight: 900;
    color: #5e65a7;
	background: transparent;
	border-color: #5e65a7;
    padding: 15px 20px;
	border-radius: 5px;
}

#ModalBox-Center .btn.btn-custom-0:not(:disabled):not(.disabled):hover {
    color: #FFFFFF;
    background: #5e65a7;
    border-color: #5e65a7;
}
/* ========================================================= */
/* ==  登入Login + 註冊Sign up + MODEL-OPEN-For-Login ======= */
/* ========================================================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */






.mt-7, .my-7 {
    margin-top: 5rem !important;
}
.mb-7, .my-7 {
    margin-bottom: 5rem !important;
}

/*== shop-sidebar-menu 標題 H3 ==*/
.cart-main-area .menu-box .h3,
.cart-main-area .menu-box h3 {
	position: relative;
    display: block;
	
    color: #333333;
    font-size: 125%; /*16px*/
	font-weight: 600;
    text-transform: uppercase;
    /*letter-spacing: 10px;*/
	
	padding-top: 0px;
	padding-left: 2.25rem; /*0.75rem*/
	padding-right: 0.75rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 5px;
    
    border-bottom: 1px solid #CCCCCC;
	
	text-align: left;
}

.cart-main-area .menu-box h3 {
    text-transform: capitalize !important;
}

.cart-main-area .menu-box h3 span {
	font-size: 81.25%;
	letter-spacing: 1px;
    color: #707070;
	margin-left: 16px;
}

@media screen and (max-width: 480px) {
	.cart-main-area .menu-box h3 span {
		margin-left: 0px;
	}	
}

/*
.cart-main-area .menu-box .h3:before,
.cart-main-area .menu-box h3:before {
	position: absolute;
	display: block;
	width: 36px; /*60*
	left: -10px;
	bottom: 0px;
	content: url("../../images/big_eye.svg");
}
*/

.cart-main-area .menu-box .h3:after,
.cart-main-area .menu-box h3:after {  
	content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 215px; /*60*/
    height: 2px;
    background: #4c39e0;  
}

.cart-main-area .menu-box .search:before {
	position: absolute;
	display: block;
	width: 36px; /*60*/
	left: -10px;
	bottom: 0px;
	content: url("../../images/big_eye.svg");
}

.cart-main-area .menu-box .search_person:before {
	position: absolute;
	display: block;
	width: 36px; /*60*/
	left: -10px;
	bottom: 0px;
	content: url("../../images/big_eye2.svg");
}

.cart-main-area .menu-box .memberinfo:before {
	position: absolute;
	display: block;
	width: 36px; /*60*/
	left: -10px;
	bottom: 0px;
	content: url("../../images/big_eye3.svg");
}
/*== shop-sidebar-menu 標題 H3 ==*/


.menu-box input.btn.btn-custom-0 {
	font-size: 87.5%;
	font-weight: 700;
	color: #5e65a7;
	border: 1px solid #5e65a7;
	background-color: #FFFFFF;
	border-radius: 5px;
	
	padding: 5px 20px !important;
}

.menu-box input.btn.btn-custom-0:hover {
	color: #FFFFFF;
	border: 1px solid #5e65a7;
	background-color: #5e65a7;
	border-radius: 5px;
}


/*===============================================*/
/* 20211108 JESS ADD */
/*===============================================*/
.page-leftmenu {
	position: relative;
    display: block;
}

.page-leftmenu .list-group {
	display: inline-block;
	padding-left: 0px;
	margin-bottom: 20px;
	width: 100%;
}

.page-leftmenu ul.list-group li {
    position: relative;
    list-style: none;
    z-index: 1;
    float: left;
    margin: 0;
	/*width: 33.333333%;*/ /*100%*/
	margin-bottom: 5px;
}

.page-leftmenu ul.list-group li i {
	font-size: 125%;
	/*margin-right: 10px;*/
}

.fa-search::before {
	position: relative;
	display: flex;
	/*width: 32px;*/
	/*height: 32px;*/
	content: "\f002";
	content: url("../../images/big_eye_s01.svg");
}

.fa-list-alt::before {
	position: relative;
	display: flex;
	/*width: 32px;*/
	/*height: 32px;*/
	content: "\f022";
	content: url("../../images/big_eye_s02.svg");
}

.fa-id-card-o::before {
	position: relative;
	display: flex;
	/*width: 32px;*/
	/*height: 32px;*/
	content: "\f2c3";
	content: url("../../images/big_eye_s03.svg");
}

@media (min-width: 320px) and (max-width: 1200px) {
	.page-leftmenu ul.list-group li {
		/*width: 33.333333%;*//*50%*/
	}
}

.page-leftmenu .list-group-item {
	position: relative;
	display: block;
	padding: 10px 10px; /*10px 15px*/
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid #ddd;
	
	text-align: center;
}
@media (min-width: 320px) and (max-width: 480px) {
	.page-leftmenu .list-group-item {
		font-size: 93.75%;
		padding: 10px 0px; /*10px 15px*/
	}
}

.page-leftmenu .list-group-item:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px
}

.page-leftmenu .list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px
}

.page-leftmenu a.list-group-item,button.list-group-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*flex-direction: row;*/
	justify-content: center;
	align-items: center;
	
	color: #555
}

.page-leftmenu a.list-group-item .list-group-item-heading,
.page-leftmenu button.list-group-item .list-group-item-heading {
	color: #333
}

.page-leftmenu a.list-group-item:focus,
.page-leftmenu a.list-group-item:hover,
.page-leftmenu button.list-group-item:focus,
.page-leftmenu button.list-group-item:hover {
	color: #fff;
	text-decoration: none;
	background-color: #5e65a7; /*#343a40*/
	border-color: #5e65a7; /*#343a40*/
}

.page-leftmenu .list-group-item.active,
.page-leftmenu .list-group-item.active:focus,
.page-leftmenu .list-group-item.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #5e65a7; /*#343a40*/
	border-color: #5e65a7; /*#343a40*/
}

.page-leftmenu .list-group-item a.active,
.page-leftmenu .list-group-item a.active:focus,
.page-leftmenu .list-group-item a.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #5e65a7; /*#343a40*/
	border-color: #5e65a7; /*#343a40*/
}

.page-leftmenu button.list-group-item {
	width: 100%;
	text-align: left
}

.page-leftmenu .list-group-item.disabled,
.page-leftmenu .list-group-item.disabled:focus,
.page-leftmenu .list-group-item.disabled:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #eee
}

.page-leftmenu .list-group-item.disabled .list-group-item-heading,
.page-leftmenu .list-group-item.disabled:focus .list-group-item-heading,
.page-leftmenu .list-group-item.disabled:hover .list-group-item-heading {
	color: inherit
}

.page-leftmenu .list-group-item.disabled .list-group-item-text,
.page-leftmenu .list-group-item.disabled:focus .list-group-item-text,
.page-leftmenu .list-group-item.disabled:hover .list-group-item-text {
	color: #777
}

.page-leftmenu .list-group-item.active .list-group-item-heading,
.page-leftmenu .list-group-item.active .list-group-item-heading > .small,
.page-leftmenu .list-group-item.active .list-group-item-heading > small,
.page-leftmenu .list-group-item.active:focus .list-group-item-heading,
.page-leftmenu .list-group-item.active:focus .list-group-item-heading > .small,
.page-leftmenu .list-group-item.active:focus .list-group-item-heading > small,
.page-leftmenu .list-group-item.active:hover .list-group-item-heading,
.page-leftmenu .list-group-item.active:hover .list-group-item-heading > .small,
.page-leftmenu .list-group-item.active:hover .list-group-item-heading > small {
	color: inherit
}

.page-leftmenu .list-group-item.active .list-group-item-text,
.page-leftmenu .list-group-item.active:focus .list-group-item-text,
.page-leftmenu .list-group-item.active:hover .list-group-item-text {
	color: #c7ddef
}
/*===============================================*/
/* 20211108 JESS ADD */
/*===============================================*/



/* ===================================== */
/* ==  已完成閱讀 modal-open  =========== */
/* ===================================== */
#ModalBox-scroll .modal-open {
	overflow: hidden
}

#ModalBox-scroll .modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto
}

#ModalBox-scroll .modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0
}

#ModalBox-scroll .modal-dialog {
	position: relative;
	width: auto;
	margin: .5rem;
	pointer-events: none
}

#ModalBox-scroll .modal.fade .modal-dialog {
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out,-webkit-transform .3s ease-out;
	-webkit-transform: translate(0,-50px);
	transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
	#ModalBox-scroll .modal.fade .modal-dialog {
		transition: none
	}
}

#ModalBox-scroll .modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none
}

#ModalBox-scroll .modal.modal-static .modal-dialog {
	-webkit-transform: scale(1.02);
	transform: scale(1.02)
}

#ModalBox-scroll .modal-dialog-scrollable {
	display: -ms-flexbox;
	display: flex;
	max-height: calc(100% - 1rem)
}

#ModalBox-scroll .modal-dialog-scrollable .modal-content {
	max-height: calc(100vh - 1rem);
	overflow: hidden
}

#ModalBox-scroll .modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

#ModalBox-scroll .modal-dialog-scrollable .modal-body {
	overflow-y: auto
}

#ModalBox-scroll .modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1rem)
}

#ModalBox-scroll .modal-dialog-centered::before {
	display: block;
	height: calc(100vh - 1rem);
	height: -webkit-min-content;
	height: -moz-min-content;
	height: min-content;
	content: ""
}

#ModalBox-scroll .modal-dialog-centered.modal-dialog-scrollable {
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%
}

#ModalBox-scroll .modal-dialog-centered.modal-dialog-scrollable .modal-content {
	max-height: none
}

#ModalBox-scroll .modal-dialog-centered.modal-dialog-scrollable::before {
	content: none
}

#ModalBox-scroll .modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: .3rem;
	outline: 0
}

#ModalBox-scroll .modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000
}

#ModalBox-scroll .modal-backdrop.fade {
	opacity: 0
}

#ModalBox-scroll .modal-backdrop.show {
	opacity: .5
}

#ModalBox-scroll .modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    color: #FFFFFF;
    background: #5e65a7;
}

#ModalBox-scroll .modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto
}
.close {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 0 #fff;
}

#ModalBox-scroll .modal-title {
	color: #FFFFFF;
	margin-bottom: 0;
	line-height: 1.5
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem
}

.modal-body .form-control {
    box-shadow: none;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 46px !important;
    font-size: 1em;
    font-weight: 300;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px 0px;
    width: 100% !important;
}

#ModalBox-scroll .modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: .75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(.3rem - 1px);
	border-bottom-left-radius: calc(.3rem - 1px)
}

#ModalBox-scroll .modal-footer > * {
	margin: .25rem
}

#ModalBox-scroll .modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (min-width:576px) {
	#ModalBox-scroll .modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto
	}

	#ModalBox-scroll .modal-dialog-scrollable {
		max-height: calc(100% - 3.5rem)
	}

	#ModalBox-scroll .modal-dialog-scrollable .modal-content {
		max-height: calc(100vh - 3.5rem)
	}

	#ModalBox-scroll .modal-dialog-centered {
		min-height: calc(100% - 3.5rem)
	}

	#ModalBox-scroll .modal-dialog-centered::before {
		height: calc(100vh - 3.5rem);
		height: -webkit-min-content;
		height: -moz-min-content;
		height: min-content
	}

	#ModalBox-scroll .modal-sm {
		max-width: 300px
	}
}

@media (min-width:992px) {
	#ModalBox-scroll .modal-lg,.modal-xl {
		max-width: 800px
	}
}

@media (min-width:1200px) {
	#ModalBox-scroll .modal-xl {
		max-width: 1140px
	}
}

#ModalBox-scroll .btn.btn-custom-0 {
    font-size: 1em;
	font-weight: 900;
    color: #5e65a7;
	background: transparent;
	border-color: #5e65a7;
    padding: 15px 20px;
	border-radius: 5px;
}

#ModalBox-scroll .btn.btn-custom-0:not(:disabled):not(.disabled):hover {
    color: #FFFFFF;
    background: #5e65a7;
    border-color: #5e65a7;
}

#ModalBox-scroll ol {
	list-style: none;
    margin-top: 0;
    margin-bottom: 1rem;
}

#ModalBox-scroll ol ol {
	list-style: inherit;
}
/* ===================================== */
/* ==  已完成閱讀 modal-open  =========== */
/* ===================================== */


