*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {height: 100%;max-width:680px;margin:0 auto;}

body {font-family: "Roboto","Noto SansCJK",sans-serif;font-size: 14px;font-weight: 400;line-height: 1.7;color: #4E4E4E;}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Roboto", "Noto SansCJK",sans-serif;font-weight: 500;line-height: 1;margin-top: 0;margin-bottom: 0;color:#000;}

p:last-child {margin-bottom: 0;}
h4.title{font-size: 18px;padding-bottom: 5px;border-bottom: 1px solid #ddd;margin-bottom: 10px; font-weight: bold}
a,
button {
	line-height: inherit;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	color: inherit;
}

a:focus, button:focus {outline: none;}

*:focus {outline: none;}

a:focus {text-decoration: none;color: inherit;outline: none;}

a:hover {text-decoration: none;color: #b90f1d;}

input[type="submit"] {cursor: pointer;}

ul {margin: 0;padding: 0;list-style: outside none none;}

select {
	padding-right: 15px;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='black'%3E%E2%96%BE%3C/text%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 95% 50%;
	-webkit-appearance: none;
	-moz-appearance: none;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
	color: transparent;
}

/* FF 4-18 */

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	color: transparent;
}

/* FF 19+ */

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
	color: transparent;
}

/* IE 10+ */

/*=====  End of Default  ======*/

/*=============================================
=            Common            =
=============================================*/

.bg-img {
	background-repeat: no-repeat;
	background-size: cover;
}

.border-bottom {
	border-bottom: 1px solid #F1F1F1 !important;
}

.border-bottom--medium {
	border-bottom: 2px solid #F1F1F1 !important;
}

.border-bottom--thick {
	border-bottom: 3px solid #F1F1F1 !important;
}
.body-wrapper{max-width: 680px; margin: 0 auto}
.body-wrapper.active-overlay {
	overflow: hidden;
}

.body-wrapper.active-overlay:before {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background: transparent;
}

/*=====  End of Common  ======*/

/*=============================================
=            Helper            =
=============================================*/
.row-5 {
	margin-right: -5px;
	margin-left: -5px;
}

.row-5 > [class*="col"] {
	padding-right: 5px;
	padding-left: 5px;
}

.row-10 {
	margin-right: -10px;
	margin-left: -10px;
}

.row-10 > [class*="col"] {
	padding-right: 10px;
	padding-left: 10px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
	margin: 0;
	padding-right: 0;
	padding-left: 0;
}

/*=====  End of Helper  ======*/

/*=============================================
=            Spacing            =
=============================================*/

.space-xy--10 {
	padding: 10px;
}

.space-xy--15 {
	padding: 15px;
}

.space-y--10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.space-y--15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.space-y--60 {
	padding-top: 60px;
	padding-bottom: 60px;
}

.space-mt--10 {
	margin-top: 10px;
}

.space-mt--20 {
	margin-top: 20px;
}

.space-mt--30 {
	margin-top: 30px;
}

.space-mt--40 {
	margin-top: 40px;
}

.space-mt--70 {
	margin-top: 70px;
}

.space-mb--5 {
	margin-bottom: 5px;
}

.space-mb--10 {
	margin-bottom: 10px;
}

.space-mb--15 {
	margin-bottom: 15px;
}

.space-mb--20 {
	margin-bottom: 20px;
}

.space-mb--25 {
	margin-bottom: 25px;
}

.space-mb--30 {
	margin-bottom: 30px;
}

.space-mb--40 {
	margin-bottom: 40px;
}

.space-mb--50 {
	margin-bottom: 50px;
}

.space-mb--70 {
	margin-bottom: 70px;
}

.space-mb--80 {
	margin-bottom: 80px;
}

.space-mb-m--15 {
	margin-bottom: -15px;
}

.space-mb-m--20 {
	margin-bottom: -20px;
}

.space-pb--15 {
	padding-bottom: 15px;
}

.space-pb--25 {
	padding-bottom: 25px;
}

.space-pb--30 {
	padding-bottom: 30px;
}

.space-pb--50 {
	padding-bottom: 50px;
}

.space-pb--60 {
	padding-bottom: 60px;
}

.space-pb--90 {
	padding-bottom: 90px;
}

.space-pb--120 {
	padding-bottom: 120px;
}

.space-pt--15 {
	padding-top: 15px;
}

.space-pt--25 {
	padding-top: 25px;
}

.space-pt--30 {
	padding-top: 30px;
}

.space-pt--60 {
	padding-top: 60px;
}

.space-pt--70 {
	padding-top: 70px;
}

.space-pt--100 {
	padding-top: 100px;
}

/*=====  End of Spacing  ======*/

/*=============================================
=            Header            =
=============================================*/

header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFFFFF;
}

header .header-search {
	max-width: 230px;
}

header .header-menu-trigger {
	padding: 0;
	border: none;
	background: none;
}

header .header-menu-trigger:focus {
	outline: none;
}

/* offcanvas menu */

.profile-card__image img {
	border-radius: 50%;
}

.profile-card__content p {
	font-weight: 500;
	color: #06142D;
}

.profile-card__content p span {
	font-size: 12px;
	font-weight: 400;
	display: block;
}

.offcanvas-menu {
	position: fixed;
	z-index: 9999;
	top: 70px;
	right: 0;
	visibility: hidden;
	width: 280px;
	max-width: 100%;
	height: 100vh;
	margin-left: auto;
	padding: 40px;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	background-color: #F1F1F1;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#F1F1F1), to(#F2F8FF));
	background-image: -webkit-linear-gradient(top, #F1F1F1 0%, #F2F8FF 100%);
	background-image: -o-linear-gradient(top, #F1F1F1 0%, #F2F8FF 100%);
	background-image: linear-gradient(to bottom, #F1F1F1 0%, #F2F8FF 100%);
	-webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.16);
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.16);
}

.offcanvas-menu.active {
	visibility: visible;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas-navigation {
	overflow-y: scroll;
	height: 400px;
	margin: 0 -40px;
	padding: 0 40px;
}

.offcanvas-navigation li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 10px 15px 30px;
	border-bottom: 2px solid #FFFFFF;
}

.offcanvas-navigation li:nth-child(1) {
	border-top: 2px solid #FFFFFF;
}

.offcanvas-navigation li span {
	display: block;
	margin-right: 15px;
}

.offcanvas-navigation li span svg {
	width: 14px;
	height: 14px;
}

.offcanvas-navigation li a {
	display: block;
	width: 100%;
	color: #06142D;
}

/*=====  End of Header  ======*/

/*=============================================
=            Footer            =
=============================================*/
footer{}
.footer-nav-wrapper {
	position: fixed;
	z-index: 99;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	padding: 0 10px;
	/*border-radius: 60px;*/
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.footer-nav-single {
	position: relative;
	display: block;
	width: 25%;
	height: 85px;
	text-align: center;
}

.footer-nav-single span {
	font-size: 12px;
	color: #6E6E6E;
	margin-top: 5px;
}

.footer-nav-single svg {
	display: block;
	margin: 0 auto;
	margin-bottom: 5px;
}
.footer-nav-single .youjoys {
	display: block;
	margin: 0 auto;
	margin-bottom: 0px;
	font-size:22px;
}

.footer-nav-single .menu-wrapper {
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.footer-nav-single:before {
	position: absolute;
	z-index: -1;
	top: -5px;
	left: -5px;
	visibility: hidden;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	content: "";
	opacity: 0;
	background-color: #FFFFFF;
}

/*=====  End of Footer ======*/

/*=============================================
=            Section Title            =
=============================================*/

.section-title {
	font-size: 18px;
	position: relative;
}

.section-title a {
	font-size: 10px;
	font-weight: 400;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/*=====  End of Section Title  ======*/

.bg-color--grey {
	background-color: rgba(179, 181, 183, 0.1);
}

.bg-color--grey2 {
	background-color: #F8F8F8;
}

.bg-color--gradient {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F1F1F1));
	background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #F1F1F1 100%);
	background-image: -o-linear-gradient(top, #FFFFFF 0%, #F1F1F1 100%);
	background-image: linear-gradient(to bottom, #FFFFFF 0%, #F1F1F1 100%);
}

/*=============================================
=            breadcrumb            =
=============================================*/

.breadcrumb-area .page-title {
	font-size: 18px;font-weight: 600;
}

.breadcrumb-area .back-link {
	font-weight: 500;
	color: #000000;
}

.breadcrumb-area .back-link i {
	margin-right: 3px;
}

/*=====  End of breadcrumb  ======*/

/*=============================================
=            preloader            =
=============================================*/

.preloader-active {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

.preloader-active .preloader-area-wrap {
	position: absolute;
	z-index: 999999;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
}

.preloader-active .preloader-area-wrap .img-loader {
	position: absolute;
	z-index: 2;
	top: calc(50% - 15px);
	left: calc(50% - 15px);
	display: block;
	width: 30px;
	height: 30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-animation: rotate-center 0.6s linear infinite both;
	animation: rotate-center 0.6s linear infinite both;
	border-width: 3px;
	border-style: solid;
	border-color: #b90f1d #b90f1d #b90f1d transparent;
	border-radius: 50%;
}

.preloader-area-wrap {
	display: none;
}

/*=====  End of preloader  ======*/

/*=============================================
=            hero slider            =
=============================================*/

.hero-slider-wrapper .slick-active .hero-slider-content > *:nth-child(1) {
	-webkit-animation-name: fadeInTop;
	animation-name: fadeInTop;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.hero-slider-wrapper .slick-active .hero-slider-content > *:nth-child(2) {
	-webkit-animation-name: fadeInTop;
	animation-name: fadeInTop;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

.hero-slider-wrapper .slick-dots {
	line-height: 1;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.hero-slider-wrapper .slick-dots li {
	display: inline-block;
	margin-right: 5px;
}

.hero-slider-wrapper .slick-dots li button {
	font-size: 0;
	width: 15px;
	height: 15px;
	padding: 0;
	border: 3px solid #D8D8D8;
	border-radius: 50%;
	background: none;
	background-color: #FFFFFF;
}

.hero-slider-wrapper .slick-dots li.slick-active button {
	background-color: #EE3625;
}

.hero-slider-wrapper .slick-dots li:hover button,
.hero-slider-wrapper .slick-dots li:focus button {
	background-color: #EE3625;
}

.hero-slider-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: auto !important;
	height: 220px;
	margin: 5px;
	border-radius: 8px;
	-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-slider-content {
	width: 300px;
	max-width: 100%;
}

.hero-slider-content > * {
	-webkit-animation-name: fadeOutTop;
	animation-name: fadeOutTop;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.hero-slider-content__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #02011E;
}

.hero-slider-content__text {
	font-weight: 500;
	color: #02011E;
}

/*=====  End of hero slider  ======*/

/*=============================================
=            category slider            =
=============================================*/

.category-item {
	text-align: center;
	display: inline-block;
	width: 18.8%;
}

.category-item__image {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 auto;
	margin-bottom: 15px;
	border-radius: 50%;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 5px 20px rgba(36, 36, 36, 0.05);
	box-shadow: 0 5px 20px rgba(36, 36, 36, 0.05);
}

.category-item__image a {
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.category-item__title a {
	line-height: 1;
	display: block;
	color: #000000;
}

/*=====  End of category slider  ======*/

/*=============================================
=            product             =
=============================================*/

/* featured product */

.featured-product {
	padding: 10px;
	border-radius: 10px;
	background-color: #F8F9F9;
}

.featured-product__image {
	margin-bottom: 10px;
	text-align: center;
}

.featured-product__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.featured-product__content .price {
	font-size: 11px;
	line-height: 1;
	padding: 5px;
	color: #FFFFFF;
	border-radius: 10px;
	background-color: #EE3625;
}
/* grid product */

.grid-product {
	padding: 15px;
	background-color: #F8F9F9;
	-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-product__image {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
}

.grid-product__image .icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: none;
	-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-product__image .icon:hover,
.grid-product__image .icon.active {
	background-color: #4A44F2;
}

.grid-product__image .icon:hover svg *,
.grid-product__image .icon.active svg * {
	fill: #FFFFFF;
}

.grid-product__content .title {
	font-size: 16px;
	line-height: 1.3;
}

.grid-product__content .category {
	font-size: 12px;
	line-height: 1;
	display: inline-block;
	margin-bottom: 7px;
	margin-top: 5px;
	color: #6E6E6E;
}

.grid-product__content .price {
	font-size: 16px;
	font-weight: 500;
	margin-top: 5px;
	color: #b90f1d;
}

.grid-product__content .price .main-price {
	text-decoration: line-through;
}

/* cart product */

.cart-product {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px;
}

.cart-product__image {
	-webkit-flex-basis: 90px;
	-ms-flex-preferred-size: 90px;
	flex-basis: 90px;
	margin-right: 10px;
	background-color: #F8F9F9;
}

.cart-product__content {
	-webkit-flex-basis: calc(100% - 190px);
	-ms-flex-preferred-size: calc(100% - 190px);
	flex-basis: calc(100% - 190px);
}

.cart-product__content .title {
	font-size: 16px;
	line-height: 1.3;
}

.cart-product__content .category {
	font-size: 12px;
	line-height: 1;
	display: inline-block;
	margin-bottom: 7px;
	color: #6E6E6E;
}

.cart-product__content .price {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	margin-bottom:0px;
	color: #b90f1d;
}

.cart-product__content .price .main-price {
	text-decoration: line-through;
}

.cart-product__status p span {
	color: #b90f1d;
}

/* shop product image slider */

.product-image-slider-wrapper {
	position: relative;
}

.product-image-slider-wrapper .product-image-single img {
	margin: 0 auto;
}

.product-image-slider-wrapper .slick-list {
	padding-top: 60px;
	padding-bottom: 60px;
	border-bottom-right-radius: 100px;
	background-color: #F8F9F9;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.product-image-slider-wrapper .slick-slide > div > div {
	vertical-align: middle;
}

.product-image-slider-wrapper .slick-dots {
	line-height: 1;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.product-image-slider-wrapper .slick-dots li {
	display: inline-block;
	margin-right: 15px;
}

.product-image-slider-wrapper .slick-dots li:last-child {
	margin-right: 0;
}

.product-image-slider-wrapper .slick-dots li button {
	font-size: 0;
	width: 15px;
	height: 15px;
	padding: 0;
	border: 1px solid rgba(48, 48, 48, 0.3);
	border-radius: 50%;
	background: none;
}

.product-image-slider-wrapper .slick-dots li.slick-active button {
	border-color: #b90f1d;
	background-color: #b90f1d;
}

/* shop product header */

.product-content-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.product-content-header__main-info .title {
	font-size: 18px;
	margin-bottom: 5px;
}

.product-content-header__main-info .price {
	font-size: 22px;
	font-weight: 500;
	color: #b90f1d;
}

.product-content-header__main-info .price .main-price {
	text-decoration: line-through;
}

.product-content-header .rating {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.product-content-header .rating__stars {
	margin-right: 10px;
}

.product-content-header .rating__stars li {
	display: inline-block;
	margin-right: 3px;
}

.product-content-header .rating__text {
	padding: 0 12px;
	color: #FFFFFF;
	border-radius: 20px;
	background-color: #b90f1d;
}

.product-content-header__wishlist-info svg {
	width: 24px;
	height: 21px;
	margin-bottom: 5px;
}

.product-content-header__wishlist-info .count {
	display: block;
}

/* shop product description */

.product-content-description h4,
.product-content-safety h4 {
	font-size: 14px;
}
.product-content-description img{max-width: 100%}

/* shop product safety */

.product-content-safety svg {
	margin-right: 5px;
}

/* product-color-picker */

.product-color-picker h3 {
	font-size: 16px;
}

.product-color-picker form .color-picker {
	line-height: 1;
}

.product-color-picker form .color-picker li {
	display: inline-block;
	margin-right: 10px;
}

.product-color-picker form .color-picker li:last-child {
	margin-right: 0;
}

.product-color-picker form .color-picker li input[type="radio"] {
	width: 0;
	opacity: 0;
}

.product-color-picker form .color-picker li input[type="radio"]:checked + label {
	border: 4px solid #b90f1d;
}

.product-color-picker form .color-picker li label {
	line-height: 1;
	width: 40px;
	height: 40px;
	margin-bottom: 0;
	border: 4px solid #E6E6E6;
	border-radius: 50%;
}

.product-color-picker form .color-picker li label.black {
	background-color: #404740;
}

.product-color-picker form .color-picker li label.blue {
	background-color: #722ADF;
}

.product-color-picker form .color-picker li label.pink {
	background-color: #F93B7C;
}

.product-color-picker form .color-picker li label.brown {
	background-color: #945E38;
}

/* shop product button */

.shop-product-button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.shop-product-button button {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	display: block;
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	padding: 15px 0;
	border: none;
	background: none;
}

.shop-product-button button.cart {
	color: #000000;
	background-color: #EEEEFF;
}

.shop-product-button button.buy {
	color: #FFFFFF;
	background-color: #D11402;
}

/* shop header */

.shop-header .category-title {
	font-size: 18px;font-weight: 600;
}

.shop-header .filter-trigger {
	font-weight: 500;
	padding: 0;
	color: #000000;
	border: none;
	background: none;
}

.shop-header .back-link {
	font-weight: 500;
	color: #000000;
}

.shop-header .back-link i {
	margin-right: 3px;
}

/*=====  End of product   ======*/
/*=============================================
=            profile            =
=============================================*/

/* profile header */

.profile-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.profile-header__image {
	-webkit-flex-basis: 120px;
	-ms-flex-preferred-size: 120px;
	flex-basis: 120px;
	margin-right: 15px;
}

.profile-header__image img {
	width: 108px;
 }

.profile-header__content {
	-webkit-flex-basis: calc(100% - 135px);
	-ms-flex-preferred-size: calc(100% - 135px);
	flex-basis: calc(100% - 135px);
	color:#FFF
}

.profile-header__content .name {
	font-size: 16px;
	font-weight: 700;
}

.profile-header .profile-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 200px;
	max-width: 100%;
}

.profile-header .profile-info-block {
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.profile-header .profile-info-block__value {
	font-size: 12px;
	font-weight: 700;
	color: #06142D;
}

.profile-header .profile-info-block__title {
	font-size: 10px;
	line-height: 1;
}

.profile-header .profile-level__title {
	font-size: 12px;
	font-weight: 500;
	color: #FFF;
}

.profile-header .profile-level__progress {
	height: 4px;
	background-color: rgba(255, 255, 255, 0.3);
}

.profile-header .profile-level__progress .progress-bar {
	background-color: #EEE;
}

.profile-info-table {
	border-radius: 10px;
	background-color: #FFFFFF;
}

.profile-info-table .profile-info-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 5px;
	color: #06142D;
	border-bottom: 2px solid #F1F1F1;
}

.profile-info-table .profile-info-block:last-child {
	border-bottom: none;
}

.profile-info-table .profile-info-block__title {
	font-size: 14px;
	font-weight: 500;
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.profile-info-table .profile-info-block__value {
	font-size: 12px;
	font-weight: 300;
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	text-align: right;
}

/*=====  End of profile  ======*/

/* auth page body */

.auth-page-body .auth-form {
	padding: 40px 20px;
	background-color: #FFFFFF;
}

.auth-page-body .auth-form__single-field label {
	font-size: 14px;
	margin-bottom: 20px;
	color: #02011E;
}

.auth-page-body .auth-form__single-field input,
.auth-page-body .auth-form__single-field textarea {
	font-size: 18px;
	display: block;
	width: 100%;
	padding-bottom: 10px;
	color: #02011E;
	border: none;
	border-bottom: 2px solid #E6E6E6;
}

.auth-page-body .auth-form__single-field input:focus,
.auth-page-body .auth-form__single-field textarea:focus {
	border-bottom: 2px solid #b90f1d;
}

.auth-page-body .auth-form__single-field ::-webkit-input-placeholder {
	opacity: 1; /* Firefox */ /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #6E6E6E;
}

.auth-page-body .auth-form__single-field ::-moz-placeholder {
	opacity: 1; /* Firefox */ /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #6E6E6E;
}

.auth-page-body .auth-form__single-field :-ms-input-placeholder {
	opacity: 1; /* Firefox */ /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #6E6E6E;
}

.auth-page-body .auth-form__single-field ::-ms-input-placeholder {
	opacity: 1; /* Firefox */ /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #6E6E6E;
}

.auth-page-body .auth-form__single-field ::placeholder {
	opacity: 1; /* Firefox */ /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #6E6E6E;
}

.auth-page-body .auth-form__single-field :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #6E6E6E;
}

.auth-page-body .auth-form__single-field ::-ms-input-placeholder { /* Microsoft Edge */
	color: #6E6E6E;
}

.auth-page-body .auth-form__button {
	font-size: 16px;
	line-height: 1;
	width: 100%;
	padding: 15px 0;
	color: #FFFFFF;
	border: none;
	background: none;
	background-color: #b90f1d;
}

.auth-page-body .auth-form__info-text {
	color: #6E6E6E;
}

.auth-page-body .auth-form__info-text a {
	color: #b90f1d;
}
/*=============================================
=            cart            =
=============================================*/

.cart-plus-minus {
	position: relative;
	display: inline-block;
	width: 90px;
	height: 30px;
	padding: 0;
}

.grand-total {
	padding: 30px 0;
	border-top: 1px solid #F1F1F1;
	border-bottom: 1px solid #F1F1F1;
}

.grand-total .title-wrap {
	position: relative;
}

.grand-total .title-wrap::before {
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.grand-total .title-wrap h4.cart-bottom-title {
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	margin: 0;
	padding-right: 18px;
}

.grand-total .title-wrap .section-bg-gary-cart {
	position: relative;
	z-index: 9;
}

.grand-total h5 {
	font-size: 14px;
	margin: 36px 0 27px;
}

.grand-total h5 span {
	font-size: 18px;
	font-weight: 500;
	float: right;
}

.grand-total .total-shipping {
	margin: 0 0 27px;
	padding: 28px 0;
	border-top: 1px solid #F1F1F1;
	border-bottom: 1px solid #F1F1F1;
}

.grand-total .total-shipping h5 {
	font-size: 14px;
	margin: 0;
}

.grand-total .total-shipping ul {
	padding: 19px 0 0 0;
}

.grand-total .total-shipping ul li {
	margin: 0 0 6px;
	list-style: outside none none;
}

.grand-total .total-shipping ul li:last-child {
	margin: 0 0 0;
}

.grand-total .total-shipping ul li span {
	float: right;
}

.grand-total h4.grand-total-title {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 25px;
}

.grand-total h4.grand-total-title span {
	float: right;
}

.grand-total a {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	display: block;
	padding: 18px 10px 17px;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #b90f1d;
}

/*=====  End of cart  ======*/

@media only screen and (max-width: 400px) {

.footer-nav-single {
	width: 60px;
	height: 60px;
}

.footer-nav-single svg {
	width: 20px;
	height: 20px;
}

.chat-submission {
	bottom: 60px;
}

}

@-webkit-keyframes rotate-center {

0% {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

}

@keyframes rotate-center {

0% {
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

}
.header-logo img{max-width:152px; height: 41px}
.featured-product__content i.youjoys{font-size:20px;color: #dc3545;}
.category i.youjoys{font-size:24px;color: #dc3545;}
.section-title i.youjoys{font-size:24px;padding-left: 5px}
.section-title i.youjoys.hth-more{font-size:12px;margin-top: -3px;padding-left:2px}

.profile-header{background: #dc3545;padding: 15px;color: #FFF}
.user{text-align: center;}
.user i.youjoys{display: block;text-align: center;font-size: 32px}
.profile-header__content a{color: #FFF}

@-webkit-keyframes rotation{
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}

.rotate{
	display: inline-block;
	-webkit-transform: rotate(360deg);
	animation: rotation 1s linear infinite;
	-moz-animation: rotation 1s linear infinite;
	-webkit-animation: rotation 1s linear infinite;
	-o-animation: rotation 1s linear infinite;
}
.badge a:active{color:#FFF}
@media only screen and (min-width: 1200px) {
	.footer-nav-wrapper{width: 680px;margin: 0 auto;left:25%;right:25%}
}