@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: 125%; /*20*/
    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: 125%; /*20*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 93.75%; /*15*/
    background: #ebebeb;
    padding: 10px 20px 10px 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: 93.75%; /*15*/
    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: 100%; /*16*/
}

.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: 87.5%; /*14*/
    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 .badges-right {
    position: absolute;
    z-index: 8;
    top: -16px; /*18px*/
    right: 16px;
    display: flex;
    flex-direction: column
}

.shop_section .product .badges-right::before {
    content: "";
    left: -15px;
    position: absolute;
	border-color: transparent #500400 transparent transparent;
	border-style: solid solid solid solid;
	border-width: 28px 15px 0px 0px;
}

.shop_section .product .badges-right span {
    font-size: 87.5%; /*14*/
    font-weight: 500;
    line-height: 24px;
    display: block;
    padding: 2px 10px; /*0 7px*/
    text-align: center;
    text-transform: capitalize;
    border-radius: 0 3px 3px 0;
    color: #FFFFFF
}

.shop_section .product .badges-right span+span {
    margin-top: 10px
}

.shop_section .product .badges-right span.class_text {
    background-color: #500400
}
/*--- 學分班 ----------------------*/

.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: 100%; /*16*/
    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*/ /*14*/    
    color: #FFFFFF;
	font-weight: 600;
	text-align: center;    
    
    bottom: 30px; /*20px*/
    left: 0;
    right: 0;
    z-index: 11;
    margin: auto;    
	
	border: 1px solid #500400;
	border-radius: 3px;		 
	background-color: #500400;
	
    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: #500400;
	border: 1px solid #500400;
	background-color: #FFFFFF;
}

.shop_section .product .thumb .add-to-login {
    position: absolute;
    display: block;
    width: 50%; /*80%*/
    height: 45px;
    line-height: 42px; /*45px*/
    font-size: 100%; /*0.875rem*/ /*14*/    
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;    
    
    bottom: 75px; /*20px*/
    left: 0;
    right: 0;
    z-index: 11;
    margin: auto;    
    
    border: 1px solid #500400;
    border-radius: 3px;      
    background-color: #500400;
    
    visibility: hidden;
    transition: all .3s ease 0s;
    transform: translateY(20px);
    
    opacity: 0;
    /*font-family: Raleway, sans-serif*/
}

.shop_section .product .thumb .add-to-login:hover {    
    color: #500400;
    border: 1px solid #500400;
    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: 112.5%; /*18*/
    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: 100%; /*16*/
}

.shop_section .product .content .price {
    font-size: 100%; /*16*/
    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: 112.5%; /*18*/
    color: #3f3f3f;
    font-weight: 600;
	margin-left: 10px;
}

.shop_section .product .content .price span.old {
    font-size: 93.75%; /*15*/
    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 .thumb .add-to-login {
    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: #500400
}


.shop_section .product img {
	position: relative;
	overflow: hidden;
    z-index: 1;
    max-width: 100%;
    transition: all .3s ease 0s;
}
.shop_section .product img:hover {
	max-width: 100%;
	height: auto;
    transform: scale(1.1) rotate(3deg)
}
/* ==  商品列 以上 =================== */

/* ============================= */
/* ==  shop_section  =========== */
/* ============================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ============================= */
/* MODEL-OPEN ================== */
.modal-open .product-details-content .h2,
.modal-open .product-details-content h2 {
    color: #333333;
    font-size: 150%; /*24*/
    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: 150%; /*24*/
	font-weight: 600;
    color: #333333;
    line-height: 30px;
}

.modal-open .product-details-content p.textdescription-area {
	font-size: 87.5%; /*14*/
    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: 87.5%; /*14*/
	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: 87.5%; /*14*/
    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: 87.5%; /*14*/
	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: 112.5%; /*18*/
    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: 87.5%; /*14*/
    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: 100%; /*16*/
    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: 100%; /*16*/
    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: 87.5%; /*14*/
}

.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: 112.5%; /*18*/
    width: 30px
}

.modal-open .product-details-content .pro-details-social-info .social-info a i {
    font-size: 150%; /*24*/
}

.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: 37.5%; /*6*/
    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: 87.5%; /*14*/
    font-weight: bold;   
	width: 36px; 
    height: 36px;
    line-height: 36px;
	padding: 0;
	color: #555555;  
	border: 1px solid #555555;  
    background: #FFFFFF;    
    border-radius: 100%;
    text-align: center;
    vertical-align: top;
}

.custom-pagination a.active {
    color: #FFFFFF;
	border: 1px solid #500400;
    background-color: #500400;
}

.custom-pagination a:hover {
    color: #FFFFFF;
	border: 1px solid #500400;
    background-color: #500400;
}
/* ================================== */
/* == 自訂分頁列 ===================== */
/* ================================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
/* ========================================== */
/* ==  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: 125%; /*20*/
    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: 125%; /*20*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 93.75%; /*15*/
    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: 93.75%; /*15*/
    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: 100%; /*16*/
}

.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: 87.5%; /*14*/
    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: 100%; /*16*/
    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: 87.5%; /*14*/
    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 .thumb .add-to-login {
    display: block;
    width: 80%;
    height: 45px;
    line-height: 45px;
    background-color: #FFFFFF;
    text-align: center;
    border: 0;
    border-radius: 3px;
    font-size: 87.5%; /*14*/
    position: absolute;
    bottom: 50px; /*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-login: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: 112.5%; /*18*/
    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: 100%; /*16*/
}

.shop-left-sidebar_section .product .content .price {
    font-size: 100%; /*16*/
    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: 112.5%; /*18*/
    color: #3f3f3f;
    font-weight: 600;
	margin-left: 10px;
}

.shop-left-sidebar_section .product .content .price span.old {
    font-size: 93.75%; /*15*/
    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 .thumb .add-to-login {
    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: 100%; /*16*/
	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: 93.75%; /*15*/
	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: 93.75%; /*15*/
	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: 93.75%; /*15*/
	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: 93.75%; /*15*/
	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: 125%; /*20*/
    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: 125%; /*20*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 93.75%; /*15*/
	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: 93.75%; /*15*/
	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: 93.75%; /*15*/
	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: 93.75%; /*15*/
	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: 150%; /*24*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 25px 0;
	
	color: #FFFFFF;
	padding: 15px;
	background: #500400;
}

.shop_product-detail_section .product-details-content .h3,
.shop_product-detail_section .product-details-content h3 {    
    font-size: 150%; /*24*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 25px 0;
	
	color: #FFFFFF;
	padding: 15px;
	background: #500400;
}

.shop_product-detail_section .product-details-content .h4,
.shop_product-detail_section .product-details-content h4 {    
    font-size: 125% !important; /*24*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 25px 0;
	
	color: #FFFFFF;
	padding: 15px;
	background: #500400;
}

.shop_product-detail_section .product-details-content .h3.subtitle,
.shop_product-detail_section .product-details-content h3.subtitle {    
    font-size: 150%; /*24*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 15px 0;
	
	color: #500400;
	padding: 15px;
	background: transparent !important;
	border-bottom: 1px solid #500400;
}

.shop_product-detail_section .product-details-content .h4.subtitle,
.shop_product-detail_section .product-details-content h4.subtitle {    
    font-size: 125% !important; /*24*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 15px 0;
	
	color: #500400;
	padding: 15px;
	background: transparent !important;
	border-bottom: 1px solid #500400;
}

.shop_product-detail_section .product-details-content div.subtitle {    
    font-size: 125% !important; /*24*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 15px 0;
	
	color: #500400;
	padding: 15px;
	background: transparent !important;
	border-bottom: 1px solid #500400;
}

.shop_product-detail_section .product-details-content .subtitle span.textcontent {    
    font-size: 87.5% !important; /*14*/
    text-transform: capitalize;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 15px 0;
	
	color: #333333;
	padding: 0 15px 0 5px;
	background: transparent !important;
	/*border-bottom: 1px solid #500400;*/
}
.shop_product-detail_section .product-details-content .subtitle span.textcontent a {    
	color: #FF0000;
}
.shop_product-detail_section .product-details-content .subtitle span.textcontent a:hover {    
	color: #730000
}

.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: 150%; /*24*/
	font-weight: 600;
    color: #333333;
    line-height: 30px;
}

.shop_product-detail_section .product-details-content p.textdescription-area {
	font-size: 100%; /*0.875em*//*14*/
    font-weight: 400;
    color: #333333;
    line-height: 26px;
	
	padding: 0 15px;
	margin-bottom: 0 !important;
	
	display: -webkit-box;
	/* 第一步：設定 display 為 -webkit-box 元素。 */
	-webkit-box-orient: vertical;
	/* 第二步：設定 box 的子元素，是由上往下垂直排列。*/
	-webkit-line-clamp: 4;
	/* 第三步：設定欲顯示的行數，超出則顯示省略符號(...)。 */
	overflow: hidden;
	/* 第四步：設定超過上述指定之行數時隱藏。 */
	max-height: 105px;
  	/* 第五步：其它瀏覽器降級方式：給定最大高度 */ 
}

.shop_product-detail_section .product-details-content p.textdescription-area a {
	color: #FF0000;
}
.shop_product-detail_section .product-details-content p.textdescription-area a:hover {
	color: #730000;
}

/*== 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: 87.5%; /*14*/
	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: 87.5%; /*14*/
    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: 87.5%; /*14*/
	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: #500400;
}

.shop_product-detail_section .product-details-content .filter-area .widget-box .widget-box-list li:hover a {
    color: #500400;
}

.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: 112.5%; /*18*/
    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: 87.5%; /*14*/
    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: 100%; /*16*/
    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: #500400;
}
.shop_product-detail_section .product-details-content .btn-xl {
    display: inline-block;
    text-transform: capitalize;
	margin-left: 0rem !important;
    padding: 0.75rem 1.75rem;
    font-size: 100%; /*16*/
    font-weight: 700;
    letter-spacing: .1rem;
    color: #500400;
    border-radius: 99rem !important;
}
/*-----------------------------------------*/
.shop_product-detail_section .product-details-content .bg-btn-sxl {
	color: #500400 !important;
	background-color: #FFFFFF !important;
    border-color: #500400 !important;
}
.shop_product-detail_section .product-details-content .btn-sxl {
    display: inline-block;
    text-transform: capitalize;
	margin-left: 0rem !important;
    padding: 0.75rem 1.75rem !important;
    font-size: 100%; /*16*/
    font-weight: 900 !important;
    letter-spacing: .1rem;
    color: #500400 !important;
    border-radius: 99rem !important;
}
.shop_product-detail_section .product-details-content .bg-btn-sxl:hover {
	background-color: #500400 !important;
	border-color: #500400 !important;
	color: #FFFFFF !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: 87.5%; /*14*/
}

.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: 112.5%; /*18*/
    width: 30px
}

.shop_product-detail_section .product-details-content .pro-details-social-info .social-info a i {
    font-size: 150%; /*24*/
}

.shop_product-detail_section .product-details-content .pro-details-social-info .social-info a:hover {
    color: #500400
}
/* == 分享鈕 == */

.shop_product-detail_section .Big-Box {
  display: block;
  position: relative;
  padding: 0 15px;
}
/* ============================= */
/* ==  左右選擇鍵 中間  ========== */
/* ============================= */
.shop_product-detail_section .owl-box .owl-nav {
	margin-top: 15px;
}

.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: absolute; 
	top: 32.5%;
	z-index: 1;
}

.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 {
	width: 45px;
    height: 45px;
	border-radius: 100%;
}

.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev {
	left: -30px;
	margin-right: 7.5px;
	
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next {
	right: -30px;
	margin-left: 7.5px;
} 

.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 #FFF !important;
	/*background-color: #4c39e0 !important;*/
	background-color: rgba(0,0,0,0.75) !important;
	border-radius: 100%;
} 
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev span {
	content: url("../../images/gallery/prev.svg");
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next span {
	content: url("../../images/gallery/next.svg");
} 

.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev span:hover {
	content: url("../../images/gallery/prev.svg");
	border: 1px solid #FFF !important;
	background-color: #500400 !important;
}
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next span:hover {
	content: url("../../images/gallery/next.svg");
	border: 1px solid #FFF !important;
	background-color: #500400 !important;
} 
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev:focus,
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next:focus,
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-prev span:focus,
.shop_product-detail_section .owl-box .owl-carousel .owl-nav button.owl-next span:focus {
	display: block;
	width: 45px;
    height: 45px;
	border-radius: 100%;
	background-color: #000000 !important;
	outline: 2px solid #43B5FC !important;
}
/* ============================= */
/* ==  左右選擇鍵 中間  ========== */
/* ============================= */

/* 右邊 產品說明區 =============== */
/* ============================= */


/* ============================= */
/* 右下方區塊 產品規格說明區 ====== */
/* 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 #500400;
	background: #FFFFFF;
	border-radius: 2em;
}

.shop_product-detail_section .nav-tabs .nav-link.active {
    color: #FFFFFF;
	border: 1px solid #500400;
	background: #500400;
}

.shop_product-detail_section .nav-tabs .nav-link:hover {
	color: #FFFFFF;
	border: 1px solid #500400;
	background: #500400;
    /*border-top-color: transparent;
	border-right-color: transparent;
	border-left-color: transparent;
	border-bottom: 1px solid #500400;*/
}

.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: 100%; /*16*/
	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: 87.5%; /*14*/
    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: 100%; /*16*/
    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: 87.5%; /*14*/
    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 .thumb .add-to-login {
    display: block;
    width: 80%;
    height: 45px;
    line-height: 45px;
    background-color: #FFFFFF;
    text-align: center;
    border: 0;
    border-radius: 3px;
    font-size: 87.5%; /*14*/
    position: absolute;
    bottom: 50px; /*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-login: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: 112.5%; /*18*/
    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: 100%; /*16*/
}

.shop_product-detail_section .product .content .price {
    font-size: 100%; /*16*/
    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: 112.5%; /*18*/
    color: #3f3f3f;
    font-weight: 600;
	margin-left: 10px;
}

.shop_product-detail_section .product .content .price span.old {
    font-size: 93.75%; /*15*/
    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 .thumb .add-to-login {
    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: 100%; /*16*/
	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: 100%; /*16*/
	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: 100%; /*16*/
	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: 100%; /*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: #500400
}

button.bg-btn-xl:active,
button.bg-btn-xl:focus,
button.bg-btn-xl:hover {
	color: #FFFFFF!important;
	background-color: #500400!important;
	border-color: #500400!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: flex-start;
	align-items: center;
}

@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 .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: 0px;
	margin-left: 0px;
}

#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: #500400;
}

#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 > .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: 300%; /*48*/
	text-transform: uppercase;
	letter-spacing: .15em;
	display: block;
	margin-bottom: 15px;
	font-weight: 300;
	color: #FFFFFF;
	background: #500400;
}


#content-block h2.intro-text-small {
	font-size: 100%; /*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: 212.5%; /*34*/
		line-height: 1.2;
		margin-bottom: 10px;
		font-weight: 300;
	}
}

#content-block h3 {
	/*margin-bottom: 0px;*/
	font-size: 200%; /*32*/
	line-height: 1;
	margin-bottom: 15px;
	font-weight: 300;
	color: #FFFFFF;
	background: #500400;
}

#content-block .stext-lg {
	display: inline-block;
    font-size: 200%;
    text-transform: uppercase;
    letter-spacing: .15em;    
    margin-bottom: 15px;
    font-weight: 900;
    color: #4e0607;
    text-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, .2);
    background-color: rgba(255, 255, 255, 0.75);
    padding: 10px 15px;
    border-radius: 5px;
}
#content-block .stext-lg.bg-opacity{
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    text-shadow: 5px 5px 0em rgb(0 0 0 / 0.3);
    font-size: 280%;
}
#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: rgba(0,0,0,0.5); /*#500400*/
	padding: 10px 50px;
	border-radius: 50px;
	border: 1px solid #FFFFFF;
}

#content-block .form-wrap {
	position: relative;
	width: 100%;
    padding-top: 150px !important;
}
#content-block .form-wrap.bg-white{
    -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);
    padding-top: 0px !important;
    border-radius: 5px;
    margin-top: 150px;
}

@media (max-width:992px) {
    #content-block .form-wrap{
        padding-top: 0px !important;
    }
}
#content-block .form-wrap .tab-box {
	position: relative;
	clear: both;
	background: rgb(80,4,0,0.5);
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
    color: #ffffff;
    padding: 40px 5px;
    margin-top: 20px;
}
@media (max-width:768px) {
    #content-block .form-wrap .tab-box, #content-block .form-wrap.bg-white{
        margin-top: 0px;
    }
}
#content-block .form-wrap .nav-tabs .nav-link {
	font-weight: 800;
	padding: 20px 20px;
    border: 2px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
	width:100%;
}

#content-block .form-wrap .nav-tabs .nav-link.active {
    color: #809b01;
	background-color: #FFFFFF;
	border-bottom: 3px solid #809b01;
}

#content-block .form-wrap .nav-tabs .nav-link:hover {
	color: #809b01;
	background-color: #FFFFFF;
	border-bottom: 3px solid #809b01;
}

#content-block .form-wrap .tab-content {
    z-index: 10;
    position: relative;
    clear: both;
    background: #FFFFFF;
    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;
	font-size: 100%;/*16*/
	font-weight: 300;
	padding-left: 15px;
	padding-right: 15px;
}

#content-block .form-wrap .tab-content .form-control:active, .form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: #500400;
}


/* =====<!-- begin:: 自訂Button -->=============== */
#content-block .form-wrap .tab-content .btn.btn-custom {
	font-size: 100%; /*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: 100%; /*16*/
	color: #FFFFFF;
    background: #809b01; /*transparent*/
    border-color: #809b01;
	padding: 15px 20px;
}
#content-block .form-wrap .tab-content .btn.btn-custom-0:not(:disabled):not(.disabled):hover {
	color: #809b01;
    background: #FFFFFF;
    border-color: #809b01;
}
#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%; /*14*/
    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%; /*15*/
	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: #500400;
}

#ModalBox-Center .modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto
}
.close {
    font-size: 150%; /*24*/
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 0 #fff;
}

#ModalBox-Center .modal-title {
	margin-bottom: 0;
	line-height: 1.5
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem
}

#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: 100%; /*16*/
    color: #500400;
    background: transparent;
    border-color: #500400;
    padding: 15px 20px;
}

#ModalBox-Center .btn.btn-custom-0:not(:disabled):not(.disabled):hover {
    color: #FFFFFF;
    background: #500400;
    border-color: #500400;
}
/* ========================================================= */
/* ==  登入Login + 註冊Sign up + MODEL-OPEN-For-Login ======= */
/* ========================================================= */
/* ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */



/*=============================================================*/
/*==== 20211203 JESS新增 歷屆傑出校友 ===========================*/
/*=============================================================*/
.cart-main-area .tab-content .flaxbox {
	position: relative;
	/*display: inline-block;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: flex-start;
}

@media (max-width: 992px) {
	.cart-main-area .tab-content .flaxbox {
		display: inline-block;
	}
}

.cart-main-area .tab-content .div-allinfo {
	display: block;
	margin-left: 15px;
	margin-right: 15px;
	/*border-top: 1px solid #CCCCCC;*/
}

.cart-main-area .tab-content .info-block-LR {
	display: block;
	width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
@media (max-width: 992px) {
	.cart-main-area .tab-content .info-block-LR {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}

.cart-main-area .tab-content .info-block-LR .col-box-content {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	
	border-bottom: 1px solid #FFFFFF;
	/*border: 1px solid #CCC;*/
}

@media (max-width: 992px) {
	.cart-main-area .tab-content .info-block-LR .col-box-content {
		flex-direction: column;
	}
}

.cart-main-area .tab-content .imgbox {
    position: relative;
	z-index: 1;
	height: 100%;
	max-width: 250px;
	margin: auto;
	padding: 5px;
	/* border: 1px solid #809b01; */   /* cara 20211207 客戶說拿掉 */
}

.cart-main-area .tab-content .bgcolor {	
	color: #FFFFFF;
	background-color: #809b01;
	/* border-top: 1px solid #809b01; */  /* cara 20211207 客戶說拿掉 */
	border-bottom: none;
	/* border-left: 1px solid #809b01; */  /* cara 20211207 客戶說拿掉 */
	/* border-right: 1px solid #809b01; */  /* cara 20211207 客戶說拿掉 */
}

.cart-main-area .bgcolor {	
	color: #FFFFFF;
	background-color: #809b01;
}

.cart-main-area .bbbox {
	position: relative;
	display: block;
	/*border-bottom: 1px solid #FFFFFF;*/
}

.cart-main-area .tab-content .titlebox {
	color: #FFFFFF;
	padding: 10px 15px;
	background-color: #809b01;
	border: 0;
}

.cart-main-area .tab-content .textbox {
	color: #333333;
	padding: 10px 15px;
	background-color: #FFFFFF;
	border: 0;
	border-bottom: 1px solid #809b01;
}
/* cara 20211207 客戶說最後一個不要有border-bottom */
.cart-main-area .tab-content .textbox.border-bottom-none{
    border-bottom: none;
}
/* cara 20211207 客戶說最後一個不要有border-bottom */
.cart-main-area .tab-content ol {
	padding-left: 16px;
	margin-top: 0;
	margin-bottom: 0;
}
/*=============================================================*/
/*==== 20211203 JESS新增 歷屆傑出校友 ===========================*/
/*=============================================================*/



/*=============================================================*/
/*==== 20211208 JESS新增 就業資訊 ===============================*/
/*=============================================================*/
.cart-main-area .e-info-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	
	color: #333333;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
}
@media (max-width: 992px) {
	.cart-main-area .e-info-block {
		flex-direction: column;
	}
}

.cart-main-area .fill-in-info-wrap .boxtitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

    background-color: #809b01;
    /*border: 1px solid #CCCCCC;*/
    color: #FFFFFF;
	font-weight: 600;
    font-size: 100%;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    outline: 0;
    min-height: 45px;
}

.cart-main-area .fill-in-info-wrap .boxlabel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	
	background: #FFFFFF;
	/*border: 1px solid #CCCCCC;*/
	color: #333333;
	font-size: 100%;
	padding-left: 15px;
    padding-right: 15px;
	width: 100%;
	outline: 0;
	min-height: 45px;
}
.cart-main-area .fill-in-info-wrap label {	
    font-size: 100%;
	margin-bottom: 0px;
}

.cart-main-area .fill-in-info-wrap .boxinput {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;

    background: #FFFFFF;
    border-left: 1px solid #CCCCCC;
    color: #333333;
    font-size: 100%;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    outline: 0;
    min-height: 45px;
}

.cart-main-area .fill-in-info-wrap .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
	padding: 0 15px;
}

.cart-main-area .fill-in-info-wrap .custom-selectbox select {    
    color: #333333;
    font-size: 87.5%;
    width: 100%;
    outline: 0;
    height: 45px;
	background: #FFFFFF none repeat scroll 0 0;
    border: none;
}

.col-16-77 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px
}

.col-16-77 {
	-ms-flex: 0 0 16.777777%;
	flex: 0 0 16.777777%;
	max-width: 16.777777%
}

@media (min-width:576px) {
	.col-sm-16-77 {
		-ms-flex: 0 0 16.777777%;
		flex: 0 0 16.777777%;
		max-width: 16.777777%
	}
}
@media (min-width:768px) {
	.col-md-16-77 {
		-ms-flex: 0 0 16.777777%;
		flex: 0 0 16.777777%;
		max-width: 16.777777%
	}
}
@media (min-width:992px) {
	.col-lg-16-77 {
		-ms-flex: 0 0 16.777777%;
		flex: 0 0 16.777777%;
		max-width: 16.777777%
	}
}
@media (min-width:1200px) {
	.col-xl-16-77 {
		-ms-flex: 0 0 16.777777%;
		flex: 0 0 16.777777%;
		max-width: 16.777777%
	}
}
/*-----------------------------*/
.col-83-22 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px
}

.col-83-22 {
	-ms-flex: 0 0 83.222223%;
	flex: 0 0 83.222223%;
	max-width: 83.222223%
}

@media (min-width:576px) {
	.col-sm-83-22 {
		-ms-flex: 0 0 83.222223%;
		flex: 0 0 83.222223%;
		max-width: 83.222223%
	}
}
@media (min-width:768px) {
	.col-md-83-22 {
		-ms-flex: 0 0 83.222223%;
		flex: 0 0 83.222223%;
		max-width: 83.222223%
	}
}
@media (min-width:992px) {
	.col-lg-83-22 {
		-ms-flex: 0 0 83.222223%;
		flex: 0 0 83.222223%;
		max-width: 83.222223%
	}
}
@media (min-width:1200px) {
	.col-xl-83-22 {
		-ms-flex: 0 0 83.222223%;
		flex: 0 0 83.222223%;
		max-width: 83.222223%
	}
}
/*==============================================================*/
/*==== 20211208 JESS新增 就業資訊 ===============================*/
/*=============================================================*/


/* ================================================================== */
/* ****** ContentPlaceContent_ContentThirdMenu 內頁第三層 MENU  ****** */
/*.fullpage-wrapper .page-leftmenu {
	position: relative;
    display: block;
}*/

.fullpage-wrapper .list-group {
	display: inline-block;
	padding-left: 0px;
	margin-bottom: 20px;
	width: 100%;
}

.fullpage-wrapper ul.third-list-group {
	display: inline-block;
	width: 100%;    
	list-style: none;	
	padding-left: 0;
	margin-top: 0;
    margin-bottom: 1rem;
}

.fullpage-wrapper ul.third-list-group li {
	float: left;
	width: 33.333333%;
	border-radius: 4px;
	margin-bottom: 5px;
}

.fullpage-wrapper ul.third-list-group li a {
	color: #555;
}

.fullpage-wrapper ul.third-list-group li .list-group-item.active, 
.fullpage-wrapper ul.third-list-group li .list-group-item:focus, 
.fullpage-wrapper ul.third-list-group li .list-group-item:hover {
    z-index: 2;
    color: #ffffff;
    background-color: #500400;
	border-color: #500400;
}

@media (min-width: 320px) and (max-width: 992px) {
	.fullpage-wrapper ul.third-list-group li {
		display: flex;
		align-content: center;
		width: 50%;
		/*min-height: 75px;*/
	}
	
	.fullpage-wrapper ul.third-list-group li a {
		display: flex;
		align-content: center;
		width: 100%;
		/*min-height: 75px;*/
	}
}
/* ****** ContentPlaceContent_ContentThirdMenu 內頁第三層 MENU  ****** */
/* ================================================================== */








