/* font face */

@font-face {
  font-family: "Red Hat Text";
  src: url("../fonts/Red_Hat_Text/RedHatText-Regular.ttf") format('truetype');
}
@font-face {
  font-family: "Red Hat Text";
  src: url("../fonts/Red_Hat_Text/RedHatText-Medium.ttf") format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: "Red Hat Text";
  src: url("../fonts/Red_Hat_Text/RedHatText-Bold.ttf") format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "Palanquin";
  src: url("../fonts/Palanquin/Palanquin-Bold.ttf") format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/Open_Sans/OpenSans-Regular.ttf") format('truetype');
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/Open_Sans/OpenSans-Light.ttf") format('truetype');
  font-weight: 300;
}

/* variable - font & color */

:root {
	--font-main: 'Red Hat Text', sans-serif;
	--font-subtit: 'Palanquin', sans-serif;

	--color-darkgray: #545352;
	--color-midtonegray: #767575;
	--color-midlightgray: #989897;
	--color-lightgray: #d1d1d0;
	--color-whitegray: #dadad9;

	--color-hbjdark: #1b3248;
	--color-hbjdarklight: #244360;
	--color-hbjmidtone: #506980;
	--color-hbjlight: #7c8ea0;

	--color-ssjdark: #2a393e;
	--color-ssjdarklight: #384c52;
	--color-ssjmidtone: #4b656d;
	--color-ssjlight: #6f848a;

}


/* common */

* {
	box-sizing: border-box;
}

body {
	height: 100%;
	margin: 0;
	font-size: 100%;
	font-family: 'Red Hat Text', sans-serif;
	color: var(--color-hbjdark);
	background-color: var(--color-whitegray);
}

a {
	text-decoration: none;
	cursor: pointer;
	color: var(--color-hbjdark);
}

a:hover {
	color: var(--color-hbjdark);
	text-decoration: none;
}

ol, ul {
    list-style: none;
}

h1 {
	text-indent: 10px;
	font-size: 20pt;
	font-weight: bold;
	font-family: 'Palanquin', sans-serif;
}

.container {
	max-width: 1500px;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	display: block;
	clear: both;
	content: '';
}

.flex-parent {
	display: flex;
	align-items: center;
}

.flex-child {
	flex: 1 1 auto;
}



/* header */

header {
	width: 100%;
	height: 90px;
	padding: 0 20px;
	background-color: var(--color-hbjdark);
	color: white;
	display: flex;
	z-index: 3;
}
header.ssj-header {
	background-color: var(--color-ssjdark);
}

header section {
	float: left;
	height: 100%;
}

header .header-left {
	display: flex;
	align-items: center;
}

.hamberger-menu {
	width: 36px;
    height: 36px;
    border: solid 1px rgba(255,255,255,0.4);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.hamberger-menu span {
    background: white;
    height: 2px;
    width: 60%;
    position: absolute;
    margin: auto;
    top: 8px;
    left: 20%;
}

.hamberger-menu span:nth-of-type(2) {
    top: 16px;
}

.hamberger-menu span:nth-of-type(3) {
    top: 24px;
}

.hamberger-menu:hover {
	border: solid 1px white;
}

.brand-logo, .minor-logo {
	height: 30px;
	margin-left: 20px;
}
.ssj-header .brand-logo, .ssj-header .minor-logo {
	height: 36px;
	margin-left: 25px;
}
.brand-logo img {
	height: 100%;
}
.minor-logo img {
	height: 90%;
}
.minor-logo:hover img {
	filter: brightness(150%);
} 
.ssj-header .minor-logo img {
	height: 24px;
	margin-top: 6px;
}

header .header-middle {
	padding: 20px 10px 10px 20px;
	flex: 1 1 auto;
}

.top-menu-group {
	max-width: 500px;
    margin: 0 auto;
}


.search-bar form {
	display: flex;
	align-items: flex-end;
}

.search-bar .select-parent {
	position: relative;
	z-index: 5;
}

.search-bar .select-parent .cate-sel {
	-webkit-appearance: none;
	outline: 0;
	height: 30px;
	font-size: 13px;
	background-color: var(--color-lightgray);
	border: solid 0.5px var(--color-hbjmidtone);
	border-radius: 5px 0 0 5px;
	width: 120px;
	padding-left: 10px;
	cursor: pointer;
	display: inline-block;
    position: relative;
}
.ssj-header .search-bar .select-parent .cate-sel {
	border-color: var(--color-ssjmidtone);
}

.ssj-header .search-bar .select-parent::after {
	color: var(--color-ssjdark);
}

.cate-sel .sel-top-value {	
    font-size: 13px;
    margin: 5px 0;
    color: var(--color-hbjdark);
    font-weight: 500;
    white-space: nowrap;
}
.search-bar .sel-top-value::after {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    font-size: 11px;
    font-family: FontAwesome;
    content: '\f0dc';
    color: var(--color-hbjdark);
}

.search-bar .search-text {
	width: 100%;
	height: 30px;
	padding: 7px;
	font-size: 14px;
	border: solid 0.5px var(--color-hbjmidtone);
	border-radius: 0;
	padding-left: 10px;
	z-index: 5;
}
.ssj-header .search-bar .search-text {
	border-color: var(--color-ssjmidtone);
}

.search-bar button {
	background-color: #abb7c3;;
	border: solid 0.5px var(--color-hbjmidtone);
	border-radius: 0 5px 5px 0;
	display: flex;
	align-items: center;
	padding: 0 10px;
    cursor: pointer;
    font-size: 18px;
    color: var(--color-hbjdark);
    height: 30px;
    margin-left: 0;
    z-index: 5;
}
.ssj-header .search-bar button {
	background-color: #a9b9bd;
	border-color: var(--color-ssjmidtone);
	color: var(--color-ssjdark);
}

.header-promo-link {
	height: 30px;
    display: flex;
    align-items: flex-end;
    margin-left: -5px;
}

.header-promo-link div {
	margin-right: 9px;
	font-size: 12px;
	font-weight: 500;
}

.header-promo-link div a {
	color: var(--color-whitegray);
	padding: 5px;
    border: solid 0.5px rgba(0,0,0,0);
    border-radius: 3px;
}
.header-promo-link div a:hover {
	border: solid 0.5px rgba(128,128,128,0.7);
}
.header-promo-link div .down-arrow {
	border-style: solid;
    border-width: 4px;
    border-color: transparent;
    border-top: 4px solid var(--color-lightgray);
    font-size: 0;
    margin-left: 5px;
}
.header-promo-link div .up-arrow {
	border-style: solid;
    border-width: 4px;
    border-color: transparent;
    border-bottom: 4px solid var(--color-lightgray);
    margin-left: 2px;
    display: inline-block;
}
.header-promo-link div.bh-link-div {
	position: relative;
}

header .header-right {
	float: right;
	text-align: right;
	padding-top: 20px;
	padding-bottom: 10px;
}

.header-right div {
	height: 50%;
}

.header-right .header-contect-info {
	display: flex;
    font-size: 12px;
    text-transform: uppercase;
    justify-content: flex-end;
}

.header-right .header-contect-info div,
.header-right .account-link div {
	margin-left: 10px;
}

.header-right .header-contect-info a,
.header-right .account-link a {
	color: white;
}

.header-right .header-contect-info i {
	font-size: 14px;
	margin: 0 5px;
}

.header-right .account-link {
	display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 14px;
}

.header-right .account-link i {
	font-size: 18px;
	margin: 0 5px;
}
.header-right .account-link .log-in i,
.header-right .account-link .sign-up i {
	margin-top: 1px;
}

.header-right .account-link .my-acc,
.header-right .account-link .cart {
	height: 36px;
	display: flex;
	align-items: flex-end;
	width: 100px;
}
.header-right .account-link .log-in,
.header-right .account-link .sign-up {
	height: 36px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 90px;
}

.header-right .account-link .my-acc a, .header-right .account-link .cart a, 
.header-right .account-link .log-in a, .header-right .account-link .sign-up a {
	display: flex;
}

.header-right .account-link .cart div {
	margin-left: 0;
	line-height: 110%;
}

.header-right .account-link .cart i {
	font-size: 27px;
	margin-top: 5px;
}

.header-right .account-link .cart span {
	font-size: 12px;
	color: orange;
}



/* category modal (leftmenu) */

.category-modal {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.category-modal .modal-back {
    position: absolute;
    width: 100%;
    height: 1800px;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    transition: all 0.3s;
}

.category-modal .x-btn {
	color: var(--color-whitegray);
    position: absolute;
    left: 320px;
    top: 12.5px;
    width: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s;
}

.category-modal .x-btn img {
	width: 100%;
}

.category-modal .cate-modal-content {
    position: absolute;
    width: 300px;
    height: 1800px;
    background-color: white;
    transition: transform .4s ease;
    text-align: center;
    transform: translateX(-100%);
    overflow-y: auto;
    border: 0;
    border-radius: 0;
}

.category-modal:not(.active) .modal-back,
.category-modal:not(.active) .cate-modal-content {
	height: 100%;
}

.category-modal .cate-modal-content .top-sign-in {
	width: 100%;
    height: 45px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
	background-color: var(--color-hbjdark);
}
.category-modal .cate-modal-content .top-sign-in.ssj-top-sign-in {
	background-color: var(--color-ssjdark);
}
.category-modal .cate-modal-content .top-sign-in i {
	color: white;
    font-size: 24px;
    margin-right: 5px;
    margin-top: 1px;
}
.category-modal .cate-modal-content .top-sign-in img {
	width: 24px;
	margin-right: 10px;
}
.category-modal .cate-modal-content .top-sign-in span {
	vertical-align: top;
	color: white;
}

.category-modal .cate-modal-content .tab-menu {
	margin: 20px;
}

.category-modal.active {
	pointer-events: initial;
}

.category-modal.active .modal-back,
.category-modal.active .x-btn {
    opacity: 1;
}

.category-modal.active .cate-modal-content {
    transform: translateX(0);
}

.tabgroup ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

.tabgroup .tablist {
	text-align: center;
}

.tabgroup .tab {
    border-radius: 10px 10px 0 0;   
    border-bottom: 0;
    font-size: 12pt;
    padding-top: 6px;
    cursor: pointer;
    line-height: 0.85;
    font-weight: 500; 
    text-transform: uppercase;
    height: 35px;
    opacity: 0.7;
}
.tabgroup .tab:first-child {
	margin-right: 1%;
}
.tabgroup .tab:last-child {
	margin-left: 1%;
}

.tabgroup .tab span {
	font-size: 9pt;
}

.tabgroup .tab.hbjtab {
	border: 1px solid var(--color-hbjlight);
	background-color: var(--color-hbjlight);
	background-image: linear-gradient(#becfe0, #aebac7);
    color: var(--color-hbjdarklight);
    border-bottom: 0;
}
.tabgroup .tab.ssjtab {
	border: 1px solid var(--color-ssjlight);
	background-color: var(--color-ssjlight);
    color: var(--color-ssjdarklight);
    background-image: linear-gradient(#e3f1f5, #b4c8ce);
    border-bottom: 0;
}

.tabgroup .tab.active {
    background-color: white;
    background-image: none;
    font-weight: 700;
    height: 37px;
    opacity: 1;
}

.tabgroup .tab.hbjtab.active {
	border: 1px solid var(--color-hbjdark);
	color: var(--color-hbjdark);
	border-bottom: 0;
}

.tabgroup .tab.ssjtab.active {
	border: 1px solid var(--color-ssjdark);
	color: var(--color-ssjdark);
	border-bottom: 0;
}

.tabgroup .contentlist {
    background-color: white; 
    z-index: -1;
    margin-top: -1px; 
}

.tabgroup .content.hbjcon {
	border-top: 1px solid var(--color-hbjdark);
    border-bottom: 1px solid var(--color-hbjdark);
    color: var(--color-hbjdark);
}
.tabgroup .content.ssjcon {
	border-top: 1px solid var(--color-ssjdark);
    border-bottom: 1px solid var(--color-ssjdark);
    color: var(--color-ssjdark);
}

.tabgroup .content:not(.active) {
    display: none;
}

.tabgroup .content {
}

.content dl {
    text-align: left;
}
.content dl dd {
    padding: 5px 10px;
    margin: 0;
    overflow: hidden;
    font-size: 10pt;
    font-weight: 500;
}
.content.hbjcon dl dd {
    border-bottom: 1px dotted var(--color-hbjlight);
}
.content.ssjcon dl dd {
    border-bottom: 1px dotted var(--color-ssjlight);
}
.content dl dd:last-child {
	border-bottom: 0;
}
.content.hbjcon dl dd a {
	color: var(--color-hbjdark);
}
.content.ssjcon dl dd a {
	color: var(--color-ssjdark);
}
.content dl dd:hover, .content dl dd a:hover {
	color: #c00;
	background-color: #f8f8f8;
}

.content dl dt {
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 11pt;
    font-weight: bold;
    overflow: hidden;
}
.content.hbjcon dl dt {
    color: var(--color-hbjdarklight);
}
.content.ssjcon dl dt {
    color: var(--color-ssjdarklight);
}

.content dl dd .aSubCat {
    float: left;
    width: 90%;
}

.expand {
    width: 10%;
    text-align: right;
    float: right;
    cursor: pointer;
}

.expand-arrow:after {
	content: '>';
}



/* top bar */

.top-bar {
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 30px;
    display: none;
}

.fixed-menu-container {
    position: fixed;
    width: 100%;
    background-color: var(--color-hbjdark);
    display: flex;
    box-shadow: 0 2px 4px #333333;
}

.ssj-top-bar .fixed-menu-container {
	background-color: var(--color-ssjdark);
}

.fixed-menu-left, .fixed-menu-middle, .fixed-menu-right {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.fixed-menu-left {
	margin-left: 10px;
	text-align: left;
	width: 25%;
}

.fixed-menu-left .hamberger-menu {
	width: 24px;
	height: 24px;
	border: solid 1px rgba(255,255,255,.4);
}
.fixed-menu-left .hamberger-menu:hover {
	border-color: white;
}

.fixed-menu-left .hamberger-menu span {
	top: 4px;
}
.fixed-menu-left .hamberger-menu span:nth-of-type(2) {
	top: 10px;
}
.fixed-menu-left .hamberger-menu span:nth-of-type(3) {
	top: 16px;
}

.fixed-menu-left .brand-logo {
	height: 24px;
} 

.fixed-menu-middle {
	justify-content: center;
	text-align: center;
	padding: 10px 0;
}

.fixed-menu-middle .top-menu-tit {
	font-size: 16px;
	font-weight: 500;
	margin: 1px;
	line-height: 16px;
}

.fixed-menu-middle .top-menu-tit span {
	font-size: 10px;
	font-weight: 400;
}

.fixed-menu-middle span {
	font-size: 10px;
	font-weight: 400;
}

.fixed-menu-right {
	align-items: center;
	justify-content: flex-end;
    margin-right: 10px;
    font-size: 14px;
    width: 25%;
}

.fixed-menu-right .fixed-menu-cart a {
	color: white;
}

.fixed-menu-right .fixed-menu-cart i {
	margin: 0 5px;
    font-size: 21px;
}

.fixed-menu-right .fixed-menu-cart .s-cart-info {
	display: inline-block;
}

.fixed-menu-right .fixed-menu-cart .s-cart-item {
	color: #ea990b;
	font-size: 12px;
}

.top-bar .extra-info {
	position: absolute;
    top: 45px;
    right: 10px;
    font-size: 11px;
    color: black;
    text-shadow: -1px 1px 1px #fff, 1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff;
}


.s-search-bar {
}

.s-search-bar form {
	justify-content: center;
	align-items: flex-end;
}

.s-search-bar .select-parent {
}

.s-search-bar .select-parent .cate-sel {
	height: 24px;
    font-size: 12px;
    border: 0;
    border-radius: 3px 0 0 3px;
    width: 110px;
    padding-left: 0;
}

.s-search-bar .cate-sel .sel-top-value {	
    font-size: 12px;
    margin: 3px 0;
    padding-right: 10px;
}
.s-search-bar .sel-top-value::after {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    font-size: 10px;
}

.s-search-bar .search-text {
    height: 24px;
    padding: 2px;
    border: 0;
    border-left: solid 0.5px var(--color-hbjmidtone);
    border-right: solid 0.5px var(--color-hbjmidtone);
    font-size: 12px;
    padding-left: 10px;
    font-size: 14px;
}

.s-search-bar button {
	border: 0;
    border-radius: 0 3px 3px 0;
    font-size: 14px;
    height: 24px;
    padding: 0 6px;
}

.s-search-bar i {
    padding-bottom: 2px;
}



/* select drop-down */

.drop-down-cover {
	position: fixed;
	top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	z-index: 4;
	pointer-events: none;
}
.drop-down-cover.active {
	pointer-events: initial;
}

.drop-down-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	display: none;
}

.drop-down {
	background-color: white;
	width: 100%;
    padding: 8px;
    /*margin-top: 2px;*/
    position: absolute;
    display: none; 
    color: var(--color-midtonegray);
    cursor: default;
    overflow-y: auto;
}

.drop-down .drop-down-container {
	max-width: 1500px;
	margin: 0 auto;
}
.drop-down .top-opt-cate {
	padding-left: 20px;
}
.drop-down .hbj-top-opt {	
	border-left: solid 1px rgba(204,204,204,0.6);
	border-right: solid 1px rgba(204,204,204,0.6);
	color: var(--color-hbjmidtone);
}
.drop-down .ssj-top-opt {
	color: var(--color-ssjmidtone);
}

.drop-down .top-opt-tit {
	font-size: 12px;
    margin: 0 20px 0 0;
    padding: 5px 5px 5px 0;	
    border-bottom: solid 1px rgba(204,204,204,0.4);
}

.drop-down .opt-group {
	margin: 8px 0;
}

.drop-down .sec-opt-tit {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 500;
    color: var(--color-midlightgray);
}

.drop-down .opt-cate {
	margin: 0;
    padding: 5px 5px 5px 0;	
}
.drop-down .top-opt {
	margin-bottom: 10px;
	font-size: 12px;
}
.drop-down .sec-opt {
	display: inline-block;
	font-size: 11px;
	width: 25%;
	float: left;
}

.drop-down .opt-cate:hover {
	color: var(--color-darkgray);
	text-decoration: underline;
	cursor: pointer;
}
.drop-down .hbj-top-opt .opt-cate:hover {
	color: var(--color-hbjdark);
}
.drop-down .hbj-top-opt .opt-cate:hover {
	color: var(--color-ssjdark);
}

.drop-down .opt-cate.selected {
	color: var(--color-darkgray);
	font-weight: 700;
	text-decoration: underline;
}
.drop-down .hbj-top-opt .opt-cate.selected {
	color: var(--color-hbjdark);
}
.drop-down .ssj-top-opt .opt-cate.selected {
	color: var(--color-ssjdark);
}


/* to top */

.to-top {
    display: block;
    width: 55px;
    background-color: #f3f3f3;
    background: -webkit-linear-gradient(#b60000, #ff4646);
    background: linear-gradient(#b60000, #ff4646);
    color: #fff;
    padding: 14px 10px 12px 8px;
    position: fixed;
    bottom: 100px;
    right: 0;
    border: 1px solid #fff;
    border-radius: 10px;
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
    -webkit-transition: opacity .3s, -webkit-transform .25s;
    z-index: 5;
    cursor: pointer;
    outline: 0;
}

.to-top.visible {
    opacity: .7;
    -webkit-transform: translateX(25px);
    -ms-transform: translateX(25px);
    transform: translateX(25px);
}




/* footer */

footer {
	background-color: var(--color-hbjdark);
	color: var(--color-midlightgray);
	opacity: 1;
    text-align: left;
    padding: 0;
    position: static;
    z-index: 2;
}
footer.ssj-footer {
	background-color: var(--color-ssjdark);
}

footer section {
	padding: 5px 20px;
}

footer hr {
    margin: 0 auto;
    border: none;
    height: 1px;
    background: var(--color-hbjdarklight);
}
footer.ssj-footer hr {
	background: var(--color-ssjdarklight);
}

footer a {
	color: var(--color-lightgray);
}

footer .flex-parent {
	align-items: flex-start;
}

footer .hr-container {
	padding: 0;
}

footer .about {
	padding: 0 20px;
}

.about .footer-logo {
	width: 25%;
}

.about .logo-box {
    height: 102.5px;
    margin: 20px 0 20px 20px;
    text-align: center;
    border: solid 1px rgba(84, 83, 82, .5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .logo-box img {
	width: 80%;
	height: 100%;
	max-height: 40px;
}

.about .logo-box.ssj-logo img {
	width: 60%;
	max-height: 50px;
}

.about .footer-about {
	width: 50%;
	margin: 20px;
}

.footer-about h5 {
	font-size: 16px;
    font-weight: 500;
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.4em;
}

.footer-about p {
	font-size: 12px;
    color: var(--color-midtonegray);
    text-align: center;
}

.footer-about a {
	color: var(--color-midtonegray);
	font-style: italic;
	text-decoration: underline;
	font-size: 12px;
	display: block;
    text-align: center;
}
.footer-about a:hover {	
	color: var(--color-lightgray);
}

.about .footer-icon {
	width: 25%;
	margin: 20px 20px 20px 0;
	position: relative;
}
.footer-icon .footer-icon-group {
	cursor: pointer;
}
.footer-icon .footer-icon-group .footer-icon-each {
	height: 45px;
	border: solid 1px var(--color-hbjdarklight);
	border-bottom: 0;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
	display: flex;
	align-items: center;
	font-size: 12px;
}
.footer-icon .footer-icon-group .footer-icon-each .footer-icon-tit {
	padding-left: 10px;
}
.ssj-footer .footer-icon .footer-icon-group .footer-icon-each {
	border-color: var(--color-ssjdarklight);
}
.footer-icon .footer-icon-group .footer-icon-each:nth-child(9) {
	border-bottom: solid 1px var(--color-hbjdarklight);
}
.ssj-footer .footer-icon .footer-icon-group .footer-icon-each:nth-child(9) {
	border-color: var(--color-ssjdarklight);
}
.footer-icon .footer-icon-group .footer-icon-each:hover,
.footer-icon .footer-icon-group .footer-icon-each.selected {
	font-weight: 500;
	background-color: var(--color-hbjdarklight);
	color: var(--color-lightgray);
}
.ssj-footer .footer-icon .footer-icon-group .footer-icon-each:hover,
.ssj-footer .footer-icon .footer-icon-group .footer-icon-each.selected {
	background-color: var(--color-ssjdarklight);
}
.footer-icon .footer-icon-group .footer-icon-each:hover img,
.footer-icon .footer-icon-group .footer-icon-each.selected img {
	filter: brightness(1.5);
}

.footer-icon img {
	width: 18px;
}

.footer-icon .footer-icon-right-btn {
    width: 20px;
    position: absolute;
    right: 20px;
    text-align: center;
    font-size: 21px;
    display: none;
    transform: rotate(0deg);
    transition: .4s;
}

.footer-icon .footer-icon-right-btn.rotate {
	transform: rotate(90deg);
    transition: .4s;
}

.footer-icon-each-des {
	border: solid 1px var(--color-hbjdarklight);
	background: var(--color-hbjdarklight);
	width: 100%;
	display: none;
	font-size: 12px;
    padding: 20px;
}
.ssj-footer .footer-icon-each-des {
	border: solid 1px var(--color-ssjdarklight);
	background: var(--color-ssjdarklight);
}

.footer-icon-each-des .footer-icon-detail-tit{
	display: none;
}

.footer-icon .footer-icon-des {
	width: 200%;
	height: 100%;
	top: 0;
	left: 100%;
	position: absolute;
	background-color: var(--color-hbjdarklight);
	color: var(--color-lightgray);
	padding: 20px;
	text-transform: uppercase;
	font-weight: 500;
	display: none;
	z-index: 2;
	overflow: auto;
}
.ssj-footer .footer-icon .footer-icon-des {
	background-color: var(--color-ssjdarklight);
}
.footer-icon-des::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px var(--color-hbjdarklight);
	background-color: var(--color-hbjmidtone);
}
.ssj-footer .footer-icon-des::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px var(--color-ssjdarklight);
	background-color: var(--color-ssjmidtone);
}
.footer-icon-des::-webkit-scrollbar {
	width: 10px;
	background-color: var(--color-midtonegray);
}
.footer-icon-des::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: var(--color-darkgray);
}

.footer-icon .footer-icon-des .footer-icon-detail {
	display: none;
}

.footer-icon .footer-icon-des .footer-icon-detail .footer-icon-detail-tit {
	display: flex;
	align-items: center;
}

.footer-icon .footer-icon-des p {
	text-transform: initial;
	font-weight: normal;
	font-size: 11px;
	margin-top: 5px;
    margin-bottom: 10px;
}

.footer-icon .footer-icon-des img {
	filter: brightness(1.5);
}

.footer-menu {
	position: relative;
	font-size: 12px;
	margin: 10px auto;
}

.footer-menu .footer-menu-group {
	padding-left: 20px;
	width: 25%;
}
.footer-menu .footer-menu-group:last-child {
	padding-left: 40px;
}

.footer-menu .footer-menu-group h5 {
	font-size: 12px;
    font-weight: 500;
    margin: 10px 0 0 0;
    text-transform: uppercase;
}
.footer-menu .footer-menu-group:last-child h5 {
	margin-bottom: 5px;
}

.footer-menu .footer-menu-group .footer-menu-link,
.footer-menu .footer-menu-group .footer-menu-link a {
    margin-bottom: 5px;
    color: var(--color-midtonegray);
}

.footer-menu .footer-menu-group .footer-menu-link a:hover {
	color: var(--color-lightgray);
}

.footer-menu .sm-icons img {
	height: 25px;
	margin-right: 5px;
}

.footer-menu .cc-icon img {
	height: 25px;
	opacity: 0.7;
}

.footer-menu .secure-ups {
	padding-top: 15px;
}
.footer-menu .secure-ups img {
	height: 50px;
}

.copyright {
	text-align: center;
}

.copyright p {
	margin: 0;
    font-weight: normal;
    font-size: 10px;
    color: var(--color-darkgray);
}



/* media queries */

@media (hover: hover) { 
	.to-top:hover {
		opacity: .9;
	    right: 10px;
	    font-size: larger;
	    padding: 11px 10px;
	    transition: all .05s;
	}
}

@media (max-width: 1500px) {
	.thumb-images .product-img {
		width: calc(100%/8);
	}
}

@media (max-width: 1449.98px) {
	.footer-menu .footer-menu-group:last-child {
	    padding-left: 20px;
	    padding-right: 20px;
	}
}

@media (max-width: 1349.98px) {
	.header-phone-div {
		display: none;
	}
}

@media (max-width: 1280px) {
	.drop-down .sec-opt {
		width:33.333333%;
	}
}

@media (max-width: 1199.98px) {
	footer .about {
	    flex-direction: row-reverse;
	    flex-wrap: wrap;
	}
	.about .footer-icon {
		width: 100%;
    	order: 1;
    	margin-right: 0;
    	margin-top: 0;
	}
	.footer-icon .footer-icon-group {
	    display: flex;
	}
	.footer-icon .footer-icon-group .footer-icon-each {
		flex: 1 1 auto;
		padding-left: 10px;
		border: 0;
	}
	.footer-icon .footer-icon-group .footer-icon-each:nth-child(9) {
		border-bottom: 0;
	}
	.footer-icon .footer-icon-des {
		width: 100%;
		height: 200px;
		top: 100%;
		left: 0;
	}
	.about .footer-about {
		width: 70%;
    	margin-right: 0;
	}
	.about .footer-logo {

	}
	.about .logo-box {
		margin-left: 0;
    	height: 80px;
	}

	.footer-about h5,
	.footer-about p,
	.footer-about a {
		text-align: left;
	}

}

@media (max-width: 1099.98px) {
	.header-promo-link div:last-child {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.brand-logo, .minor-logo {
		margin-left: 10px;
	}
	.ssj-header .brand-logo, .ssj-header .minor-logo {
		margin-left: 15px;
	}
	.header-right .header-contect-info {
		display: none;
	}
	.header-right .account-link {
		height: 100%;
		flex-direction: column;
	}
	.header-right .account-link .my-acc,
	.header-right .account-link .log-in {
		align-items: flex-start;
	}

	.footer-icon .footer-icon-group {
	    display: block;
	}
	.footer-icon .footer-icon-group .footer-icon-each {
		padding-left: 20px;
		border: solid 1px var(--color-hbjdarklight);
		border-bottom: 0;
	}
	.footer-icon .footer-icon-group .footer-icon-each:nth-child(9) {
		border-bottom: solid 1px var(--color-hbjdarklight);
	}
	.footer-icon .footer-icon-des {

	}
	.footer-icon .footer-icon-right-btn {
	    display: block;
	}
}

@media (max-width: 960px) {
	.drop-down .sec-opt {
		width:50%;
	}
}

@media (max-width: 875px) {
	header {
		display: grid;
	    grid-template-rows: auto auto;
	    grid-template-columns: auto auto;
	    grid-gap: 10px;
	    height: 110px;
	}
	header .header-left {
	    grid-column-start: 1;
	    grid-column-end: 2;
	    grid-row-start: 1;
	    grid-row-end: 2;
	    padding-top: 10px;
	}
	.hamberger-menu, .fixed-menu-left .hamberger-menu {
	    width: 26px;
	    height: 24px;
	    border: 0;
	}
	.hamberger-menu:hover, .fixed-menu-left .hamberger-menu:hover {
	    border: 0;
	}
	.hamberger-menu span, .fixed-menu-left .hamberger-menu span {
		top: 2px;
		height: 3px;
    	width: 80%;
    	left: 0;
	}
	.hamberger-menu span:nth-of-type(2), .fixed-menu-left .hamberger-menu span:nth-of-type(2) {
	    top: 10px;
	}
	.hamberger-menu span:nth-of-type(3), .fixed-menu-left .hamberger-menu span:nth-of-type(3) {
	    top: 18px;
	}
	.brand-logo, .minor-logo {
	    height: 25px;
	}
	.ssj-header .brand-logo, .ssj-header .minor-logo {
		height: 25px;
	}
	.ssj-header .minor-logo img {
		height: 18px;
		margin-top: 3px;
	}
	.minor-logo img {
		height: 18px;
		margin-top: 3px;
	}

	header .header-middle {
	    grid-row-start: 2;
	    grid-row-end: 3;
	    grid-column-start: 1;
	    grid-column-end: 2;
	    padding: 0;
	}
	.top-menu-group {
		margin: 0;
	} 
	.search-bar .select-parent .cate-sel {
		height: 25px;
	}
	.cate-sel .sel-top-value {
	    margin: 3px 0;
	}
	.search-bar .sel-top-value::after {
	    top: 54%;
	}
	.search-bar .search-text {
		height: 25px;
	}
	.search-bar button {
		height: 25px;
	}
	.s-search-bar .select-parent .cate-sel,
	.s-search-bar .search-text,
	.s-search-bar button {
		height: 24px;
	}
	.header-promo-link {
		height: 25px;
		white-space: nowrap;
	}
	.header-promo-link div:last-child {
		display: inline-block;
	}

	header .header-right { 
	    grid-row-start: 1;
	    grid-row-end: 3;
	    margin-left: -80px;
	    padding-top: 10px;
	}
	.header-right .header-contect-info {
		display: block;
	}
	.header-phone-div {
	    display: block;
	}
	.header-right .account-link {
		height: 50px;
		flex-direction: row;
	}
	.header-right .account-link .my-acc,
	.header-right .account-link .log-in {
		align-items: flex-end;
	}
}

@media (max-width: 767.98px) {
	.header-phone-div {
	    display: none;
	}
	
	header .header-right { 
		margin-left: -10px;
	}
	.header-right .account-link {
		flex-direction: column;
		height: 60px;
		margin-top: -15px;
	}
	.header-right .account-link .my-acc {
		align-items: flex-start;
	}
	.header-right .account-link .log-in {
		align-items: center;
	}

	.fixed-menu-left .brand-logo {
	    margin-left: 5px;
	}
	.fixed-menu-left .brand-logo img {
		height: 80%;
	}
	.fixed-menu-right .fixed-menu-cart span {
		display: none;
	}


	.about .footer-logo {
	    width: 100%;
	    order: -1;
	    display: flex;
	    justify-content: center;
	}
	.about .footer-logo a {
		width: 50%;
	}
	.about .logo-box {
		margin-bottom: 0;
	    margin-left: 10px;
	    margin-right: 10px;
	}
	.about .footer-about {
		margin-left: 0;
		padding: 0 5px;
	}
	.footer-about h5 {
		margin-bottom: 10px;
	}
	.footer-about p {
		margin-bottom: 8px;
	}
	.footer-menu {
	    flex-wrap: wrap;
	}
	.footer-menu .footer-menu-group {
		width: 50%;
	}

}

@media (max-width: 720px) {
	.fixed-menu-left .brand-logo {
		display: none;
	} 
}

@media (max-width: 650px) {
	.qdis--price-img {
		margin: 0;
	}
}

@media (max-width: 575.98px) {
	header {
		padding: 0 10px;
	}

	.search-bar .select-parent .cate-sel {
		display: none;
	}
	.search-bar .search-text {
		width: 70%;
		border-radius: 5px 0 0 5px;
	}
	.s-search-bar .search-text {
		width: 100%;
	}

	.header-promo-link div:last-child {
		display: none;
	}

	
	footer .about {
	    padding: 0 10px;
	}
	.footer-menu .footer-menu-group {
	    padding-left: 10px;
	}
	/*.footer-menu .footer-menu-group .footer-menu-group-child {
	    padding-left: 10px;
	}*/
	.footer-menu .footer-menu-group:last-child {
	    padding-left: 10px;
	    padding-right: 10px;
	}
	
	.about .logo-box {
		height: 70px;
	}
	.about .footer-about {
	}
	.footer-about h5 {
		font-size: 14px;
	}
	.footer-icon .footer-icon-group .footer-icon-each {
	    height: 30px;
	    font-size: 11px;
	}
	.footer-icon img {
	    width: 15px;
	}
	.footer-icon .footer-icon-right-btn {
	    font-size: 18px;
	}

}

@media (max-width: 490px) {
	header {
		height: 90px;
	}
	.header-promo-link {
		display: none;
	}
	header .header-middle {
		padding-bottom: 5px;
	}
	.search-bar .search-text {
		width: 100%;
	}

	header .header-right { 
		/*margin-left: -60px;*/
		margin-left: 0px;
	}
	.header-right .header-contect-info {
		display: none;
	}
	.header-right .account-link {
		height: 100%;
		margin-top: 0;
		flex-direction: column;
		/*margin-top: -20px;*/
		margin-top: -2px;
	}
	.header-right .account-link .my-acc,
	.header-right .account-link .cart {
		align-items: center;
	}
	

	.footer-menu .footer-menu-group:nth-child(3) {
		width: 100%;
		display: flex;
		padding-left: 0;
	}
	.footer-menu .footer-menu-group .footer-menu-group-child {
		padding-left: 10px;
		width: 50%;
	} 
	.footer-menu .footer-menu-group:last-child {
		width: 100%;
	}
}

@media (max-width: 450px) {
	.header-right .account-link .my-acc,
	.header-right .account-link .cart,
	.header-right .account-link .log-in,
	.header-right .account-link .sign-up {
		justify-content: flex-end;
		width: 100%;
	}
	.header-right .account-link .sign-up {
		display: none;
	}
	.header-right .account-link .log-in {
		padding-top: 8px;
	}
	.header-right .account-link .my-acc-text,
	.header-right .account-link .cart-info {
		display: none;
	}
	.header-right .account-link .my-acc i,
	.header-right .account-link .log-in i {
	    font-size: 24px;
	    margin-right: 6px;
	}
	.header-right .account-link .sign-up i {
		font-size: 24px;
	    margin-right: 4px;
	}
}

@media (max-width: 415px) {
	.fixed-menu-right .fixed-menu-cart .s-cart-info {
		display: none;
	}
	.fixed-menu-left {
	    width: 20%;
	}
	.fixed-menu-right {
	    width: 20%;
	}
}
/*
@media (max-width: 390px) {
	.header-right .account-link {
		width: 15.4vw;
	} 
}

@media (max-width: 374.98px) {
	.header-right .account-link {
		width: 12vw;
	} 
}
*/
@media (max-width: 359.98px) {
	
	.header-promo-link div:nth-child(4) {
	    display: none;
	}
	.header-right .account-link {
		width: 100%;
	}
	.minor-logo, .ssj-header .minor-logo  {
	    display: none;
	}
	.category-modal .cate-modal-content {
		width: 260px;
	}
	.category-modal .x-btn {
		left: 280px;
	}

}

