html {
	-webkit-font-smoothing: antialiased;

}
/* Fontface */
@font-face {
	font-family: 'bebas';
	src: url('../fonts/bebas.eot');
	src: url('../fonts/bebas.eot?#iefix') format('embedded-opentype'), url('../fonts/bebas.woff') format('woff'), url('../fonts/bebas.ttf') format('truetype');
	font-weight: 400;
	font-smooth: always;
	-webkit-font-smoothing: subpixel-antialiased!important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden
}
 @media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
	font-family: bebas;
	src: url(../fonts/bebas.svg) format(svg)
}
}
@font-face {
	font-family: 'bill';
	src: url('../fonts/bill.eot');
	src: url('../fonts/bill.eot?#iefix') format('embedded-opentype'), url('../fonts/bill.woff') format('woff'), url('../fonts/bill.ttf') format('truetype');
	font-weight: 400;
	font-smooth: always;
	-webkit-font-smoothing: subpixel-antialiased!important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden
}
 @media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
	font-family: bill;
	src: url(../fonts/bill.svg) format(svg)
}
}
html, body {
	-webkit-overflow-scrolling: touch;
	position: relative;
}
/* General */
body {
	background: #f1e2cd url(../assests/bg.jpg) no-repeat;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	line-height: 21px
}
h1, h2, h3, h4, h5, h6 {
	color: #3a3a3a;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	text-rendering: auto;
	line-height: 1.25em;
	margin-top: 0
}
h4, h5, h6 {
	line-height: 1.4em
}
h1 {
	font-size: 36px
}
h2 {
	font-size: 30px
}
h3 {
	font-size: 24px
}
h4 {
	font-size: 18px
}
h5 {
	font-size: 15px;
	font-weight: 700
}
h6 {
	font-size: 13px
}
ul {
	list-style: none;
	margin: 0
}
/* Link & hover, focus color */
a {
	color: #777
}
a, a:hover, a:focus {
	-webkit-transition: color 0.4s ease 0s;
	transition: color 0.4s ease 0s;
	text-decoration: none
}
a:focus {
	outline: none
}
img {
	border: 0 none;
	height: auto;
	max-width: 100%;
	vertical-align: middle
}
.line {
	background: url(../assests/line.jpg) repeat-x;
	height: 5px
}
 [type=text], [type=password], textarea, select {
 color:#000;
 font-family:Arial, Helvetica, sans-serif;
 margin:5px 0;
 padding:9px 5px;
 outline:none;
 border:1px solid #ebebeb;
 -webkit-box-sizing:border-box;
 -moz-box-sizing:border-box;
 box-sizing:border-box;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px
}
 [type=submit] {
 color:#fff;
 background:#60817b;
 font-weight:700;
 display:inline-block;
 outline:none;
 border:0;
 cursor:pointer;
 padding:9px
}
[type=submit].button {
	width: 40px;
	height: 40px;
	float: left
}
[type=submit].submit {
	color: #fff;
	background: #60817b;
	font-weight: 700;
	margin: 10px auto 0;
	padding: 10px;
	display: block;
	border: 0;
	cursor: pointer
}
[type=submit].submit_login {
	color: #fff;
	background: #23c8a8;
	font-weight: 700;
	margin: 10px auto 0;
	padding: 0px 5px;
	border: 0;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	cursor: pointer
}
/* ANIMATE*/
.trans-hover {
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
}
.hover {
	display: inline-block;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hover:hover, .hover:focus, .hover:active {
	-webkit-transform: translateY(-6px);
	transform: translateY(-6px);
	-webkit-animation-name: hover;
	animation-name: hover;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}
/* NOTIFICATION */
.noti-info {
	background: #f8e279;
	padding: 10px;
	text-align: justify;
	color: #6f5c00
}
.noti-info i, .noti-error i, .noti-done i {
	padding-right: 5px;
	font-size: 15px !important;
	display: inline-block !important
}
.noti-info a {
	color: #6f5c00;
	text-decoration: underline
}
.noti-error {
	background: #ffc1c1;
	padding: 10px;
	text-align: justify;
	color: #ea3d3d
}
.noti-error a {
	color: #ea3d3d;
	text-decoration: underline
}
.noti-done {
	background: #a4f098;
	padding: 10px;
	text-align: justify;
	color: #189902
}
.noti-done a {
	color: #189902;
	text-decoration: underline
}
/* TOP HEADER
-------------------------------------------------- */
#topheader {
	background: #60817b;
}
#topheader #topbar {
	color: #fff;
	font-size: 11px;
	transition: all 1s ease 0s
}
#topheader #topbar ul li a {
	color: #fff;
	font-size: 11px;
	white-space: nowrap
}
#topheader #topbar ul li:before {
	color: #aaaaaa
}
#topheader #topbar ul li:hover a {
	color: #fff;
}
#topheader #topbar li {
	line-height: 38px
}
#topheader #topbar .header-right {
	padding: 0px;
	margin-bottom: 0px
}
#topheader #topbar .btn {
	background: transparent;
	width: 100%;
	line-height: 38px;
	font-size: 11px;
	text-align: left;
	padding: 0;
	border: none;
	box-shadow: none
}
#topheader #topbar .btn a, #topheader #topbar .btn a span, #topheader #topbar .btn a i {
	color: #fff
}
#topheader #topbar .btn:hover a {
	color: #fb544e;
}
/*#topheader #topbar .dropdown-menu {
	border: none;
	display: block;
	opacity: 0;
	filter: alpha(opacity=0);
	top: 28px;
	transition: all 0.3s ease 0s;
	visibility: hidden
}
#topheader #topbar .dropdown-menu > .dropdown-menu-inner {
	padding: 10px;
}
#topheader #topbar .dropdown-menu .row {
	margin-bottom: 0 !important;
}
#topheader #topbar .btn-group:hover .dropdown-menu {
	opacity: 1;
	filter: alpha(opacity=100);
	top: 38px;
	visibility: visible;
}*/
/* language (Dropdown menu) */
.language {
	margin-right: 15px
}
.language img {
	cursor: pointer;
	margin-right: 5px;
	margin-left: 5px;
}
.language li {
	width: 100%;
}
.language li:hover .dropdown-menu {
	display: block;
}
.language div.btn-group {
	width: 100%;
}
/* currency (Dropdown menu) */
.currency .dropdown-menu, .language .dropdown-menu {
	z-index: 9999;
	margin-top: 0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	background: #60817b;
	padding-top: 0px;
	width: 100%
}
.currency .dropdown-menu a, .language .dropdown-menu a {
	line-height: 25px;
}
.currency .dropdown-menu a img, .language .dropdown-menu a img {
	margin-top: 8px;
	float: left;
}
.currency .dropdown-menu li, .language .dropdown-menu li {
	border-right: none;
	border-top: 1px dashed #366159;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.currency .dropdown-menu li:first-child, .language .dropdown-menu li:first-child {
	border-top: none;
}
.currency .dropdown-menu li:hover, .language .dropdown-menu li:hover {
	padding-left: 6px;
	background: none
}
.welcome {
	margin-right: 50px;
}
/* links */
ul.links {
	position: relative;
	margin: 0;
	padding: 0;
}
ul.links li {
	display: inline-block;
	margin-right: 15px;
	line-height: 1.428571429;
}
/* Mobile Responsive */
#topbar .show-mobile:before, #topbar .show-mobile:after {
	content: " ";
	display: table;
}
#topbar .show-mobile:after {
	clear: both;
}
#topbar .show-mobile > div {
	margin: 0;
	padding: 0;
	position: relative
}
#topbar .show-mobile > div:hover .inner-toggle {
	opacity: 1;
	filter: alpha(opacity=100);
	top: 38px;
	visibility: visible
}
#topbar .show-mobile .quickaccess-toggle {
	width: 44px;
	height: 38px;
	color: #fff;
	line-height: 36px;
	text-align: center;
	font-size: 17px;
	cursor: pointer;
	margin-left: 1px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s
}
#topbar .show-mobile .quickaccess-toggle:hover {
	color: #FFFFFF;
	background-color: #366159;
}
#topbar .show-mobile .inner-toggle {
	display: block;
	position: absolute;
	background: #FFFFFF;
	right: 0;
	min-width: 200px;
	z-index: 99999;
	opacity: 0;
	filter: alpha(opacity=0);
	top: 28px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	visibility: hidden;
}
#topbar .show-mobile ul, #topbar .show-mobile .links {
	float: none !important;
	padding: 0;
	margin: 0;
	text-align: left;
}
#topbar .show-mobile ul li, #topbar .show-mobile .links li {
	float: none;
	display: inline-block;
	width: 100%;
	line-height: 30px;
}
#topbar .show-mobile ul li:last-child, #topbar .show-mobile .links li:last-child {
	border-bottom: none;
}
#topbar .show-mobile ul a, #topbar .show-mobile .links a {
	float: none;
	margin: 0;
	padding: 0px 10px;
	line-height: 33px;
	background-color: #60817b;
	border: none;
	display: block
}
#topbar .show-mobile ul a:hover, #topbar .show-mobile .links a:hover {
	color: #fff !important;
	background-color: #366159;
}
#topbar .show-mobile .currency .dropdown-menu, #topbar .show-mobile .language .dropdown-menu {
	left: -11px;
	padding: 5px;
}
#topbar .show-mobile .currency .dropdown-menu li, #topbar .show-mobile .language .dropdown-menu li {
	border: none;
}
#topbar .show-mobile .currency button, #topbar .show-mobile .language button {
	height: 30px;
	padding: 0 10px;
}
#topbar .show-mobile .language .dropdown-menu {
	left: -45px;
}
#topbar .show-mobile .quick-user .inner-toggle {
	right: -136px;
}
#topbar .show-mobile .quick-access .inner-toggle {
}
#topbar .show-mobile .search .inner-toggle {
	right: -44px;
}
/* HEADER
-------------------------------------------------- */
.top-menu .container > .row {
	background: url(../assests/bg-main-menu.jpg) repeat-x;
	padding: 20px 0px;
	margin-left: 0px;
	margin-right: 0px;
	height: 108px;
	position: relative
}
.top-menu .container > .row:before {
	background: url(../assests/left-nav.png);
}
.top-menu .container > .row:before {
	content: '';
	position: absolute;
	top: 0px;
	left: -50px;
	display: block;
	width: 50px;
	height: 123px
}
.top-menu .container > .row:after {
	background: url(../assests/right-nav.png);
}
.top-menu .container > .row:after {
	content: '';
	position: absolute;
	top: 0px;
	right: -50px;
	display: block;
	width: 50px;
	height: 123px
}
.top-logo .logo {
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	text-align: center;
	top: 10px;
	z-index: 9;
	width: 168px;
	height: 168px
}
/* topbar search */
input::-webkit-search-decoration, input::-webkit-search-cancel-button {
 display: none; /* remove the search and cancel icon */
}
.search-topbar {
	position: absolute;
	right: 15px;
	z-index: 99
}
.search-topbar span {
	position: absolute;
	color: #fff;
	top: 7px;
	right: 13px
}
.search-topbar input[type=text] {
	font-size: 100%;
	color: #fff;
	cursor: pointer;
	padding: 9px 20px;
	width: 15px;
	background: #366159;
	border: none;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px;
	border-radius: 0px
}
.search-topbar input[type=text]:hover {
	background-color: #366159;
	color: #fff
}
.search-topbar input[type=text]:focus {
	width: 250px;
	color: #fff;
	background-color: #366159;
	cursor: auto;
	outline: none
}
.search-topbar input[type=text]::-webkit-input-placeholder {
 color: #fff;
}
 .search-topbar input[type=text]:-moz-placeholder { /* Firefox 18- */
 color: #fff;
}
 .search-topbar input[type=text]::-moz-placeholder {  /* Firefox 19+ */
 color: #fff;
}
 .search-topbar input[type=text]:-ms-input-placeholder {
 color: #fff;
}
/* Search */
.header-right {
	max-width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
}
.top-logo .header-right .search {
	position: relative;
}
.header-right [type=text].search_query {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 98%;
	margin: 0px;
	padding: 8px;
	float: left;
	border: 1px solid #e4e4e4;
	border-right: none;
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0px
}
.header-right .search {
	max-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
.header-right .search [type=submit].button {
	color: #fff;
	position: absolute;
	right: 0px;
	background: #366159
}
/* Social Networks*/
ul.social {
	text-align: center;
	margin-top: 5px
}
ul.social li {
	display: inline-block;
 *display:inline; /*IE7*/
 *zoom:1; /*IE7*/
	margin-right: 8px;
	float: left;
	margin-bottom: 10px
}
ul.social li:last-child {
	margin-right: 0px
}
ul.social li a {
	display: block;
	color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 20px;
	line-height: 36px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px
}
ul.social li a i {
	font-size: 15px
}
ul.social li a.fb {
	background: #3b5998
}
ul.social li a.tw {
	background: #00aced
}
ul.social li a.yt {
	background: #bb0000
}
ul.social li a.gg {
	background: #dd4b39
}
ul.social li a.rss {
	background: #e67329
}
/* MAIN MENU
-------------------------------------------------- */
.menuleft {
	float: left
}
.menuright {
	float: right
}
#nav {
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: none;
	list-style-type: none;
	clear: both
}
.navbar-nav {
	padding: 15px 0px
}
ul.nav li a, ul.nav li.open li a {
	color: #503b4b;
	font-size: 24px;
	padding: 12px 8px 10px 8px;
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	white-space: nowrap
}
ul.nav li a:hover, ul.nav li a:focus, ul.nav li a.active, ul.nav li.open li a:hover, ul.nav li.open li a:focus, ul.nav li.open li a.active {
	color: #503b4b;
	background: none
}
ul.nav li.open a.dropdown-toggle {
	color: #503b4b;
	background: none
}
ul.nav li ul.dropdown-menu {
	padding: 10px;
	min-width: 200px;
	border: none;
	left: -40px;
	background: #fcf8f1;
	border-radius: 0px
}
ul.nav li ul.dropdown-menu li {
	border-left: 1px dashed #d0c3bf;
	border-right: 1px dashed #d0c3bf;
	margin: 0px 0px
}
ul.nav li ul.dropdown-menu li:first-child {
	border-top: 1px dashed #d0c3bf;
}
ul.nav li ul.dropdown-menu li:last-child {
	border-bottom: 1px dashed #d0c3bf;
}
ul.nav li ul.dropdown-menu li a {
	border-right: none;
	margin-right: 0;
	font-size: 20px;
	position: relative;
	padding: 10px 10px 10px 22px;
	clear: both;
	line-height: 25px;
	border-bottom: none !important;
	overflow: hidden;
	color: #503b4b;
	background: #fcf8f1;
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
ul.nav li ul.dropdown-menu li a:before {
	position: absolute;
	font-family: FontAwesome;
	top: 9px;
	left: 9px;
	content: "\f005";
	font-size: 9px
}
ul.nav li ul.dropdown-menu li a:hover {
	background: #fcf8f1;
	color: #503b4b !important;
}
ul.nav li ul.dropdown-menu li.dropdown-submenu {
	position: relative
}
ul.nav li ul.dropdown-menu li.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: 0;
	margin-left: -1px;
	padding: 10px;
}
ul.nav li ul.dropdown-menu li.dropdown-submenu .pull-left {
	float: none;
}
ul.nav li ul.dropdown-menu li.dropdown-submenu:hover > .dropdown-menu {
	display: block;
}
ul.nav li ul.dropdown-menu .dropdown-submenu .pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
}
a.navbar-brand {
	padding: 0;
}
.mainmenu .navbar-toggle {
	background: #fff;
	margin-bottom: 9px;
	padding: 10px;
	margin-right: 0;
}
.mainmenu .navbar-toggle .icon-bar {
	background: #e86489;
}
.mainmenu .navbar-collapse {
	box-shadow: inherit;
	border: none;
}
#nav .search {
	float: right
}
#nav .search input {
	margin-top: 10px;
	padding: 7px
}
ul.nav.menuright li ul.dropdown-menu {
	padding: 10px;
	min-width: 200px;
	border: none;
	left: 0px;
	background: #fcf8f1;
	border-radius: 0px
}
ul.nav.menuright li ul.dropdown-menu li.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 0px;
	margin-top: 0;
	margin-left: -200px !important;
	padding: 10px;/* right: 40px; */
}
.menuright .dropdown-menu {
	float: right
}
/* POPUP */
#login {
	background: white;
	text-align: left;
	width: 480px;
	margin: 40px auto;
	position: relative;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}
#login .popup-body {
	padding: 20px;
	overflow:hidden
}
#login .popup-body h4 {
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 28px
}
#login .popup-body .social-login {
	padding: 10px 0px;
	overflow: hidden;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px
}
#login .popup-body .social-login p {
	color: #999;
	margin-bottom: 10px
}
#login .popup-body .social-login #fb-login-btn {
	background: #405a9a;
	width: 45%;
	float: left;
	margin-bottom: 10px
}
#login .popup-body .social-login #fb-login-btn a {
	display: block
}
#login .popup-body .social-login #fb-login-btn a i {
	background: #3a508a;
}
#login .popup-body .social-login #gp-login-btn button i {
	background: #bd431b
}
#login .popup-body .social-login #fb-login-btn a i, #login .popup-body .social-login #gp-login-btn button i {
	padding: 15px;
	float: left;
	color: #fff;
}
#login .popup-body .social-login #fb-login-btn a span, #login .popup-body .social-login #gp-login-btn button span {
	color: #fff;
	padding: 12px 10px 12px 10px;
	display: table;
	text-align: center;
	font-weight: bold;
	margin: 0 auto
}
#login .popup-body .social-login #gp-login-btn {
	background: #d34b1f;
	width: 45%;
	float: right;
	margin-bottom: 10px
}
#login .popup-body .social-login #gp-login-btn button {
	background: #d34b1f;
	outline: none;
	border: none;
	display: block;
	width: 100%;
	padding: 0;
}

#login .popup-body .noti-error, #login .popup-body .noti-info, #login .popup-body .noti-done {
	margin: 0px
}
#login .popup-body .block {
	border: none;
	margin: 10px auto 0px auto;
	display: block
}
#login .popup-body .block input[type=button].submit_login {
	color: #fff;
	font-weight: 700;
	padding: 0px 5px;
	border: 0;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	cursor: pointer;
	padding: 10px 20px;
	font-size: 13px;
	outline: none;
	float:left;
	background: #723f32
}
#login .popup-body .block .regis{
	float: right;
    padding: 10px 0px
}
#login .popup-body .block .regis .regislink {
	font-size: 13px;
	margin-left: 10px
}
#login .popup-body .block .regis .regislink:hover {
	color: #723f32
}
#login .popup-body .block .regis .regislink.shipping_register {
	font-weight: bold;
	padding: 10px 0px;
	width: 100%;
	margin: 10px 0px 0px 0px;
	border-left: none;
	border-right: none;
	background: #36414b;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px
}
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.2);
	-moz-transform: scale(0.2);
	-ms-transform: scale(0.2);
	-o-transform: scale(0.2);
	transform: scale(0.2);
}
/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.2);
	-moz-transform: scale(0.2);
	-ms-transform: scale(0.2);
	-o-transform: scale(0.2);
	transform: scale(0.2);
	opacity: 0;
}
/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
	opacity: 0.001; /* Chrome opacity transition bug */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
.reg_form_desc{
	  font-size: 12px;
  padding-bottom: 5px;
  font-weight: bold;
  color: #727272;
}
.reg_form_order_desc{
background: #ffc1c1;
  padding: 10px;
  text-align: justify;
  color: #ea3d3d;
  clear:both
}
/* ST-MENU */	
*, *:after, *::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body, .st-container, .st-pusher, .st-content {
	height: 100%;
}
.st-content {

}
.st-content, .st-content-inner {
	position: relative	
}
.st-container {
	position: relative	
}
.st-pusher {
	position: relative;
	left: 0;
	/*z-index: 99;*/
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}
.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}
.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.st-menu .search {
	padding: 10px;
	position: relative
}
.st-menu .search input {
	width: 100%;
	margin: 0px;
	padding: 8px
}
.st-menu .search span {
	position: absolute;
	color: #e1e1e1;
	top: 19px;
	right: 21px;
	float: right
}
.st-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	width: 250px;
	height: 100%;
	background: #fcf8f1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	overflow-y: auto
}
.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}
/* content style */

.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.st-menu h2 {
	margin: 0;
	padding: 1em;
	color: rgba(0,0,0,0.4);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}
.st-menu ul li a {
	display: block;
	padding: 1em 1em 1em 1.2em;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	color: #f3efe0;
	text-transform: uppercase;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	letter-spacing: 1px;
	font-weight: 400;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}
.st-menu ul li:first-child a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}
.st-menu ul li a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
	color: #fff;
}
.st-effect-3.st-menu-open .st-pusher {
	-webkit-transform: translate3d(250px, 0, 0);
	transform: translate3d(250px, 0, 0);
}
.st-effect-3.st-menu {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.st-effect-3.st-menu-open .st-effect-3.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}
.st-effect-3.st-menu::after {
	display: none;
}
#st-trigger-effects {
	position: absolute;
	/*left: 0px;
	top: -40px;*/
	display: block;
	z-index: 9
}
#st-trigger-effects button {
	outline: none;
	display: block;
	background: none;
	padding: 0px;
	border: 1px solid transparent;
	line-height: 0px
}
#st-trigger-effects button i {
	color: #fff;
	font-size: 25px;
	padding: 10px
}
#st-trigger-effects button i:before{
	color: #fff;
	font-size: 25px;
	padding: 16px 10px;
	font-size: 13px;
	font-weight: bold;
	content:"MENU";
	font-family:Arial, Helvetica, sans-serif
}
.st-effect-3.st-menu-open #st-trigger-effects {
	display: none
}

#st-trigger-effects button i{
	padding:5px
}
/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher, .no-js .st-pusher {
	padding-left: 300px;
}
.panel {
	background: #fcf8f1;
	border: none;
	border-radius: 0px;
	box-shadow: none
}
a.list-group-item-stmenu {
	position: relative;
	display: block;
	padding: 10px 15px 8px 15px;
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	color: #503b4b;
	text-transform: uppercase;
	font-size: 20px
}
a.list-group-item-stmenu i {
	padding-right: 10px
}
a.list-group-item-stmenu.sub, a.list-group-item-stmenu.subsub, a.list-group-item-stmenu.subsubsub {
	padding-left: 15px;
	border-bottom: none
}
a.list-group-item-stmenu.subsub {
	padding-left: 35px
}
a.list-group-item-stmenu.subsubsub {
	padding-left: 70px
}
a.arrow-sub {
	position: relative;
	z-index: 999;
	float: right
}
a.arrow-sub i {
	position: absolute;
	font-size: 23px;
	top: -32px;
	color: #503b4b;
	right: 15px
}
/* MAIN
-------------------------------------------------- */

/* Main Slider */
.carousel-fade .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
	opacity: 1;
}
.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}
.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
.carousel-fade .carousel-control {
	z-index: 2;
}
.slider {
	clear: both;
	overflow: hidden
}
.carousel {
	display: block;
	background: #fff
}
.carousel-control {
	width: auto;
	opacity: 1
}
.carousel-control.left, .carousel-control.right {
	top: 45%
}
.carousel-control.left {
	left: 15px
}
.carousel-control.right {
	right: 15px
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
	margin: 0 auto;
	text-align: center
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
	line-height: 1;
	text-align: center;
	margin: 0 auto
}
.carousel-indicators li {
	border-radius: 0px
}
.main-wrap {
	clear: both;
	overflow: hidden
}
.main-wrap > .row_section > .container > .row {
	padding: 15px 0px
}
.main-wrap > .row_section > .container > .row, footer > .row-section > .container > .row {
	background: #fff;
	clear: both;
	overflow: hidden;
	margin-left: 0px;
	margin-right: 0px
}
footer > .row-section > .container > .row {
	padding: 0px
}
/* Feature */
#block-feature {
	margin: 30px 0px
}
#block-feature h2 {
	font-family: 'neo', Arial, Helvetica, sans-serif;
	text-align: center;
	position: relative;
	width: 70%;
	margin: 0 auto
}
#block-feature h2:before {
	content: '';
	width: 100%;
	position: absolute;
	top: 15px;
	border-bottom: 1px dashed #e1e1e1;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
}
#block-feature h2 span {
	text-align: center;
	display: table;
	margin: 0 auto;
	padding: 0px 15px 0px 15px;
	text-transform: uppercase;
	color: #dd1663;
	font-size: 22px;
	background: #fff;
	position: relative
}
#block-feature p {
	text-align: center;
	padding: 15px 0px;
	color: #5e5e5e
}
#block-feature .feature {
	overflow: hidden;
	text-align: center
}
#block-feature .feature h3 {
	font-family: Arial, Helvetica, sans-serif;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 15px;
	text-align: left;
	color: #dd1663;
	text-transform: uppercase;
	font-weight: bold;
	margin: 15px 0px 0px 0px
}
#block-feature .feature h3 a {
	color: #ffbb00
}
#block-feature .feature p {
	text-align: justify;
	color: #505050;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 5px 0px
}
#block-feature .feature .ImageWrapper {
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
	-o-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
	display: block;
	overflow: hidden;
	position: relative;
}
#block-feature .feature .ImageWrapper .PStyleLi {
	-webkit-transform: scale(0.5) rotateY(180deg);
	-moz-transform: scale(0.5) rotateY(180deg);
	-ms-transform: scale(0.5) rotateY(180deg);
	-o-transform: scale(0.5) rotateY(180deg);
	transform: scale(0.5) rotateY(180deg);
	background: url(../assests/plus.png) no-repeat scroll center center / 60px 60px #222222;
	height: 100%;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: 9999;
}
#block-feature .feature .ImageWrapper:hover .PStyleLi {
	opacity: .6;
	-webkit-transform: scale(1) rotateY(0deg);
	-moz-transform: scale(1) rotateY(0deg);
	-ms-transform: scale(1) rotateY(0deg);
	-o-transform: scale(1) rotateY(0deg);
	transform: scale(1) rotateY(0deg);
	visibility: visible;
}
/* OWL Slider */
#owlslider {
	margin-bottom: 25px
}
#products-featured .itemfeatured h2:before, #product-listitem .listitem h2:before, #customer .itemcus h2:before, #news h2:before, #email-newsletter h2:before, #gallery-pic h2:before, #gallery-pic h3:before, #box_search h2:before, .contact-form h2:before, #post .postitem h2.fb-comment-title:before {
	content: '';
	width: 100%;
	position: absolute;
	top: 15px;
	border-bottom: 1px solid #503b4b;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
}
#product-listitem .listitem h2, #customer .itemcus h2, #contact .itemcontact .contact-info h2, .contact-form h2, #acc .itemacc .acc-info h2, #acc .itemacc .acc-cart h2, #post .postitem h2, .intro h2, #news h2, #gallery-pic h3, #box_search h2, #post .postitem h2.fb-comment-title {
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
}
#email-newsletter h2, #gallery-pic h2 {
	position: relative;
	overflow: hidden;
}
#product-listitem .listitem h2 span, #customer .itemcus h2 span, .intro h2 span, #news h2 span, #email-newsletter h2 span, #gallery-pic h2 span, #gallery-pic h3 span,#box_search h2 span, .contact-form h2 span, #post .postitem h2.fb-comment-title span {
	font-family: 'bill', Arial, Helvetica, sans-serif;
	display: table;
	padding: 0px 10px 0px 0px;
	color: #503b4b;
	font-size: 35px;
	background: #fff;
	position: relative
}
#products-featured .itemfeatured h2 span i, #product-listitem .listitem h2 span i, #customer .itemcus h2 span i, #email-newsletter h2 span i, #gallery-pic h2 span i, #gallery-pic h3 span i, #news h2 i, #box_search h2 i, .contact-form h2 i, #post .postitem h2.fb-comment-title span i {
	padding: 10px;
	vertical-align: middle;
	font-size: 12px
}
#product-listitem {
	clear: both;
	position: relative
}
#products-featured {
	position: relative;
	margin: 15px 0px 0px 0px
}
#products-featured .itemfeatured h2 {
	position: relative
}
#products-featured .itemfeatured h2 span, #email-newsletter h2 span, #gallery-pic h2 span {
	font-family: 'bill', Arial, Helvetica, sans-serif;
	display: table;
	padding: 5px 10px;
	color: #503b4b;
	font-size: 35px;
	background: #fff;
	text-align: center;
	margin: 0 auto;
	position: relative;
	top: -7px;
}
#products-featured .owl-theme .owl-controls {
	height: inherit
}
#products-featured .owl-pagination {
	top: inherit
}
.top-product_latest > .container > .row, .top-product_cat > .container > .row {
	background: #fff;
	clear: both;
	overflow: hidden;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px 5px
}
/* Banner */
.banner-small{
	text-align: center
}
.banner-big{
	margin-bottom: 15px
}
.banner .block {
	margin-bottom: 15px;
	border: none
}
.banner img {
	width: 100%
}
.banner-custom img {
	text-align: center;
	margin: 0 auto;
	display: block;
	width: 100%
}
.banner_left {
	margin-bottom: 10px;
	display: block;
	text-align: center;
}
/* INTRO */
.intro {
	margin-bottom: 15px;
	clear: both;
	overflow: hidden
}
.intro img {
	float: left;
	margin: 0px 20px 10px 0px;
}
.intro p {
	text-align: justify;
	color: #505050;
	font-size: 13px
}
/* breadcrumbs */
.breadcrumbs {
	background: #fcf8f1;
	color: #503b4b;
	font-size: 12px;
	border: 1px dashed #d0c3bf;
	box-shadow: 0 0 0 8px #fcf8f1;
	clear: both;
	margin: 6px 6px 20px 6px;
	padding: 8px 5px
}
.breadcrumbs a {
	color: #503b4b;
	font-size: 12px;
	text-decoration: none;
	font-weight: 400;
}
.breadcrumbs a:hover {
	text-decoration: underline
}
/* Detail product */
.detail {
	margin-top: 10px
}
.detail h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	text-align: left;
	border-radius: 0px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #723f32;
}
.detail .price-num {
	overflow: hidden;
	margin-bottom: 10px;
	padding: 10px 0px;
	border: 1px dashed #ccc;
	border-left: none;
	border-right: none;
	border-top: none
}
.detail .price .price-new {
	margin-top: 0px !important;
	font-size: 18px;
	line-height: 35px
}
.detail .quantity-input {
	text-align: right;
}
.detail .quantity-input input[type=number] {
	margin: 0px 0px 0px 5px;
	padding: 6px 5px;
	text-align: center;
	width: 60px;
	border: 1px solid #ebebeb;
	outline: none
}
.detail ul.thumbs {
	text-align: center
}
.detail ul.thumbs li {
	display: inline;
	margin: 0px 4px
}
.detail ul.thumbs li img {
	border: 2px solid #e4e4e4;
	max-width: 70px;
	max-height: 90px;
	padding: 0
}
.detail ul.function {
	text-align: left;
	border-top: none;
	padding: 0px
}
.detail ul.function input[type=submit], ul.function input[type=submit].addtocart, ul.function a.addtocart,ul.function a.cart-popup {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width: auto;
	padding: 0px 10px
}
ul.function a.addtocart,
ul.function a.cart-popup{
	line-height:40px
}
.detail ul.function .btnitem {
	background: #723f32;
	color: #fff;
	border: none
}
.detail ul.function .btnitem:hover {
	background: #723f32;
	color: #fff;
	border: none
}
.detail .img-blog {
	text-align: left
}
.share, .detail .share {
	padding: 10px 0
}
.detail .img-blog #main_img{
	margin: 0 auto 10px auto;
	text-align: center;
	display: block	
}
.detail .img-blog img {
	text-align: center;
	position: relative;
	box-shadow: 0 0 10px #E1E0DD;
	padding: 8px
}
.detail p.des {
	border: 1px dashed #ccc;
	border-left: none;
	border-right: none;
	margin-bottom: 10px;
	padding: 10px 0
}
/* utilities */
.utilities {
	border: 1px dashed #d0c3bf;
	margin: 10px 0px 15px 0px;
	padding: 5px 10px
}
.utilities .filter {
	color: #6f6f6f;
	font-size: 12px
}
.utilities .filter select.filter-query, select.number {
	border: 1px solid #e4e4e4;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 13px;
	margin-left: 10px;
	outline: none;
	padding: 7px 5px
}
select.number {
	font-weight: 400;
	text-align: center;
	width: 75px
}
.utilities .view {
	color: #777;
	font-size: 13px;
	padding: 10px 15px 0px 12px
}
.utilities .view span {
	line-height: 20px;
	float: left;
	padding-right: 5px;
	font-family: Arial, Helvetica, sans-serif;
	white-space: nowrap
}
.utilities .view i {
	font-size: 18px;
	color: #939393;
	margin-left: 2px;
	padding: 1px
}
.utilities .view .active {
	color: #60817b
}
/* order-product (Dropdown menu) */
.order-product .btn {
	background: transparent;
	width: 100%;
	font-size: 13px;
	line-height: 38px;
	text-align: left;
	padding: 0;
	border: none;
	color: #dc3f55;
	box-shadow: none
}
.order-product .btn span {
	color: #777;
	font-family: 'neo', Arial, Helvetica, sans-serif
}
.order-product .btn a:hover {
	color: #777;
	box-shadow: none
}
.order-product .dropdown-menu {
	z-index: 9999;
	margin-top: 5px;
	padding: 2px 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	background: #fff;
	width: 100%;
	box-shadow: none;
	left: -77px
}
.order-product .dropdown-menu a {
	line-height: 25px;
	font-size: 12px;
	color: #777
}
.order-product .dropdown-menu li {
	border-right: none;
	border-top: 1px solid #f0f0f0;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.order-product .dropdown-menu li:first-child {
	border-top: none;
}
.order-product .dropdown-menu li:hover {
	padding-left: 6px;
	background: none
}
/* Arlert */
.arlert {
	background: #f2dede;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 13px;
	margin-bottom: 15px;
	padding: 15px
}
.arlert a {
	text-decoration: none;
	color: #333;
	font-weight: 700
}
.arlert a:hover {
	text-decoration: underline
}
.block {
	border: 1px solid #ddd;
	margin: 0 0 15px
}
.block .heading {
	font-weight: 700;
	font-size: 12px;
	padding: 12px;
	background: #f4f4f4 !important;
	color: #000 !important
}
.block .main-inner {
	border-top: none;
	background: #fff;
	overflow: hidden;
	padding: 10px
}
.block .main-inner p.title {
	font-weight: bold
}
.block .main-inner select.list_region_new_customer, .block .main-inner textarea, #news_pop_create_checkout_express .block .main-inner select.list_country, #news_pop_create_checkout_express .block .main-inner select.list_region, #pop_create_new_shipping_address .block .main-inner select.list_country, #pop_create_new_shipping_address .block .main-inner select.list_region, #news_pop_create_new_customer .block .main-inner select.list_country, #news_pop_create_new_customer .block .main-inner select.list_region, #news_pop_create_checkout_express .block .main-inner input[type=text], #pop_create_new_shipping_address .block .main-inner input[type=text], #news_pop_create_new_customer .block .main-inner input[type=text] {
	width: 60%
}
.block .main-inner select.list_country, .block .main-inner select.list_region {
	width: 40%
}
.block .main-inner textarea {
	resize: vertical
}
.block .main-inner ul {
	padding: 25px
}
.block .main-inner ul li {
	width: 25%;
	float: left;
	text-align: center;
	display: block
}
.block .main-inner ul li img {
	border: 1px solid #e1e1e1;
	background: #f9f9f9;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 5px
}
.block .main-inner ul li p {
	font-weight: 700;
	font-size: 12px
}
.block .main-inner ul li img.active {
	border: 1px solid #fb544e
}
.block .main-inner .info {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 10px;
	margin: 10px 0 10px 20px
}
.block .main-inner .info p {
	font-size: 13px;
	margin: 0;
	padding: 0
}
.block .main-inner label {
	font-size: 13px;
	width: 22%;
	margin-left: 20px;
	font-weight: normal
}
.block .main-inner label.error {
	background: #ffc1c1;
	padding: 5px 10px;
	text-align: justify;
	color: #ea3d3d;
	font-weight: normal !important;
	font-size: 13px;
	display: inline;
	width: inherit;
	margin: 0px
}
.pick {
	font-size: 14px;
	font-weight: 700
}
.pick span {
	margin-top: -18px;
	margin-left: 20px;
	display: block
}
.input {
	width: 40%
}
textarea.textarea {
	width: 100%;
	height: 100px;
	resize: vertical
}
.login, .input-contact {
	width: 100%
}
/* tab product */
#product-tab {
	margin: 10px 0
}
ul.tabs {
	list-style: none;
	clear: both;
	overflow: hidden;
	padding: 0
}
ul.tabs li {
	display: inline
}
ul.tabs li a {
	position: relative;
	display: block;
	float: left;
	font-weight: 700;
	line-height: 33px;
	text-decoration: none;
	color: grey;
	font-size: 14px;
	cursor: pointer;
	border: 1px solid #ebebeb;
	border-bottom: none;
	background: #f3f3f3;
	padding: 10px 30px
}
ul.tabs li.selected a {
	background: #fff;
	color: #333;
	text-transform: uppercase;
	cursor: pointer
}
ul.tab {
	clear: both;
	overflow: hidden;
	border: 1px solid #ebebeb;
	margin-top: -1px;
	padding: 20px
}
ul.tab li a {
	float: left;
	width: 100%;
	color: #0d2474;
	border-bottom: 1px solid #d9f3f5;
	padding: 10px 5px 0
}
ul.tab li a:hover {
	background: #f0f0f0
}
ul.tab p {
	text-align: justify;
	font-size: 13px;
	line-height: 25px;
	margin: 0
}
ul.tab img {
	border: 1px solid #ededed;
	display: block;
	width: 550px;
	margin: 0 auto;
	padding: 5px
}
/* Product */

/* Gird Product */
.mg {
	margin-bottom: 15px
}
.product a {
	text-decoration: none
}
.product {
	position: relative;
	padding-bottom: 10px
}
.product .image {
	text-align: center;
	display: block;
	position: relative;
	box-shadow: 0 0 10px #E1E0DD;
	padding: 5px
}
.product .image:hover, .news-block .image:hover {
	background: #60817b
}
.product .image .img-overflow, .catalist .image .img-overflow {
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%
}
.product .ImageWrapper {
	display: block;
	overflow: hidden;
	position: relative;
}
.product .image .CStyle {
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 0;
	visibility: hidden;
	width: 100%;
	-webkit-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);
	-moz-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);
	-ms-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);
	-o-transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);
	transition: all 400ms cubic-bezier(1.000, -0.600, 0.570, -0.150);
	margin: 0;
	z-index: 99
}
.product .image:hover .CStyle {
	opacity: 1;
	top: 40%;
	visibility: visible
}
.product .image .img-overflow .PStyleLi, .news-block .image .PStyleLi {
	-webkit-transform: scale(0.5) rotateY(180deg);
	-moz-transform: scale(0.5) rotateY(180deg);
	-ms-transform: scale(0.5) rotateY(180deg);
	-o-transform: scale(0.5) rotateY(180deg);
	transform: scale(0.5) rotateY(180deg);
	background: #222222;
	height: 100%;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: 99;
}
.product .image .img-overflow:hover .PStyleLi, .product .image:hover .PStyleLi, .news-block .image:hover .PStyleLi {
	opacity: .9;
	-webkit-transform: scale(1) rotateY(0deg);
	-moz-transform: scale(1) rotateY(0deg);
	-ms-transform: scale(1) rotateY(0deg);
	-o-transform: scale(1) rotateY(0deg);
	transform: scale(1) rotateY(0deg);
	visibility: visible;
}
.product .product-label-special-right {
	background: url(../assests/labelfunction.png) no-repeat;
	font-size: 13px;
	font-weight: 700;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	line-height: 25px;
	display: block;
	padding: 5px 4px;
	position: absolute;
	z-index: 9;
	top: 8px;
	right: 8px;
	border-radius: 0px;
	height: 43px;
	width: 38px
}
.product .price {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-weight: 400;
	color: #c60000;
	vertical-align: middle;
	display: -moz-inline-stack;
	display: inline-table;
	zoom: 1;
	margin: 0 auto;
	padding: 0px 10px;
	white-space: nowrap;
	width: 100%
}
@media all and (-ms-high-contrast:none) {
.product .price {
	display: inline-flex
} /* IE10 */
 *::-ms-backdrop, .product .price {
display:inline-flex
} /* IE11 */
}
@-moz-document url-prefix() {
 .product .price {
 display:inline-flex
}
}
.product .price .price-new,
.product .price .text_call {
	font-size: 15px;
	font-weight: bold
}
.product .price .price-old {
	text-decoration: line-through;
	padding-right: 10px;
	font-size: 14px;
	color: #a2a2a2
}
.product h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	margin: 10px 0px;
	text-align: center;
	font-weight: bold;
	line-height: 22px;
	height: 44px;
	overflow: hidden
}
.product h3 a {
	color: #503b4b
}
/* List Product */

.catalist {
	margin-bottom: 30px
}
.catalist .product {
	border: none
}
.catalist p {
	margin-bottom: 10px;
	padding: 10px 0;
	clear: both;
}
.catalist h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-align: left;
	font-weight: bold;
	line-height: 25px
}
.catalist .image {
	text-align: center;
	display: block;
	position: relative;
	box-shadow: 0 0 10px #E1E0DD;
	padding: 5px
}
.catalist .product-label-special-right {
	background: url(../assests/labelfunction.png) no-repeat;
	font-size: 13px;
	font-weight: 700;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	line-height: 25px;
	display: block;
	padding: 5px 4px;
	position: absolute;
	z-index: 9;
	top: 12px;
	right: 12px;
	border-radius: 0px;
	height: 43px;
	width: 38px
}
.catalist .price {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: 400;
	vertical-align: middle;
	display: -moz-inline-stack;
	display: inline-table;
	zoom: 1;
	white-space: nowrap;
	float: left
}
.detail .price {
	font-family: Arial, Helvetica, sans-serif;
	color: #20303f;
	vertical-align: middle;
	font-weight: 400;
	float: left
}
.catalist .price .price-old, .detail .price .price-old {
	font-size: 15px;
	text-decoration: line-through;
	color: #a2a2a2
}
.detail .price .price-new,
.detail .price .text_call {
	font-size: 15px;
	padding-left: 10px;
	color: #c60000;
	font-weight: bold
}
.catalist .price .price-new,
.catalist .price .text_call {
	font-size: 15px;
	padding-right: 10px;
	color: #c60000;
	margin-right: 10px;
	font-weight: bold
}
.catalist .price .price-old {
	text-decoration: line-through;
	padding-right: 10px;
	font-size: 15px;
	color: #a2a2a2;
}
.catalist ul.function {
	border: none;
	text-align: right
}
/* Fuction (Cart - Favorite - Compare) */
.btn {
	outline: none !important
}
ul.function {
	width: 100%;
	overflow: hidden;
	text-align: center
}
ul.function li {
	display: inline-block;
 *display:inline; /*IE7*/
 *zoom:1; /*IE7*/
	margin-right: 10px;
	margin-bottom: 10px
}
ul.function li .out_of_stock{
	background: #723f32;
	color: #fff !important;
	border-radius: 4px;
	padding:10px 15px 12px 15px
}
ul.function .btnitem, .btnitem, .catalist ul.function .btnitem, .catalist .btnitem {
	background: url(../assests/labelfunction.png) no-repeat;
	color: #fff;
	height: 43px;
	width: 38px;
	transition: background-color .3s ease-out;
	-o-transition: background-color .3s ease-out;
	-moz-transition: background-color .3s ease-out;
	-webkit-transition: background-color .3s ease-out;
	outline: none
}
ul.function .btnitem:hover, .btnitem:hover {
	color: #fff
}
ul.function li:last-child {
	margin-right: 0
}
/* News */
#news {
	overflow: hidden;
	position: relative
}
#news .news-block .image {
	text-align: center;
	display: block;
	position: relative;
	box-shadow: 0 0 10px #E1E0DD;
	padding: 5px;
	margin-bottom: 10px;
	overflow: hidden
}
#news .news-block .image img {
	width: 100%
}
#news .news-block .title-news {
	color: #503b4b;
	font-weight: bold;
	text-align: center;
	font-size: 13px;
	height: 42px;
	overflow: hidden
}
/* Customer */
#customer {
}
#featured .owl-pagination {
	visibility: hidden
}
.cus .owl-wrapper-outer .item {
	border: 1px solid #e3e3e3;
	background: #fff;
	text-align: center;
	margin: 0 10px;
	padding: 5px
}
.cus .owl-wrapper-outer .item a {
	display: block
}
.cus .owl-wrapper-outer .item a img {
	width: 168px;
	height: 75px
}
#customer .owl-theme .owl-controls {
	height: inherit;
	padding-top: 15px
}
#customer .owl-pagination {
	top: inherit
}
/* Blog */
.itemblog {
	margin-bottom: 20px
}
.itemblog .img-blog img {
	width: 100%;
	margin-bottom: 10px
}
.itemblog .date, .postitem .date {
	color: #898989;
	font-size: 12px;
	display: inline-block;
	width: 100%;
	padding: 5px 0px;
	border: 1px dotted #e0e0e0;
	border-left: none;
	border-right: none
}
.itemblog a.read-more {
	font-family: Arial, Helvetica, sans-serif;
	color: #d50133;
	display: inline-block;
	margin-top: 5px;
	font-size: 13px;
	font-style: italic
}
.itemblog p, .catalist p, .detail p.des, .detail p, .postitem p {
	text-align: justify;
	font-size: 14px;
	color: #808080;
	margin: 0
}
.itemblog .img-blog {
	text-align: center
}
.itemblog h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-decoration: none;
	font-weight: bold;
	color: #4a4a4a;
	margin: 10px 0px;
	height: 42px;
	overflow: hidden
}
.itemblog h2:hover {
	text-decoration: underline
}
.itemblog p {
	font-size: 13px;
	height: 84px;
	overflow: hidden
}
.itemblog a, .catalist a {
	text-decoration: none
}
.all {
	font-family: Arial, Helvetica, sans-serif;
	color: #723f32;
	background: #fff;
	font-size: 13px;
	float: right;
	text-decoration: none;
	padding: 0px 0px 0px 10px;
	z-index: 99;
	position: absolute;
	top: 5px;
	right: 0px
}
.all:hover {
	color: #723f32
}
.green {
	background: #5ebc5e;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 7px 11px
}
.red {
	border: 1px solid #d90b00;
	color: #d90b00 !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 7px 11px
}
.red:hover {
	background: #d90b00;
	color: #fff !important
}
/* BILL */
table.list-price {
	font-family: Arial, Helvetica, sans-serif;
	width: 100%;
	background: #fff;
	margin-bottom: 15px
}
table.list-price .total{
	background: #e8e8e8
}
table.list-price thead {
	background: #36414b
}
table.list-price thead tr {
	border-bottom: none
}
table.list-price thead tr th {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	vertical-align: middle
}
table.list-price.backorder thead tr th:hover {
	background: #2a71ab
}
table.list-price.backorder thead tr th i {
	float: right;
	line-height: 18px
}
table.list-price th, table.list-price td {
	padding: 10px 20px;
	border-top: none !important
}
table.list-price tr {
	border-bottom: 1px dashed #ccc
}
table.list-price tr td.note {
	background: #ffe4cc;
	color: #ff7800;
	text-align: center
}
table.list-price tr td a {
	font-weight: bold
}
table.list-price tr.last table.list-price tr td.last {
	border-bottom: none
}
table.list-price .product_attr.cart_attr {
	background: #e2e2e2;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 10px;
	margin-top: 10px
}
table.list-price .product_attr.cart_attr p {
	margin-left: 10px
}
table.list-price .product_attr.cart_attr .name_group {
	font-weight: bold;
	margin: 0px
}
/* LIKEBOX - RES */
.fb_iframe_widget {
	background: #fff !important
}
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
	width: 100% !important;
}
.addthis_button_facebook_like {
	width: 110px
}
.at-share-tbx-element a.at300b, .at-share-tbx-element a.at300b{width:100px !important}

/* LOADING SHIPPING */
#shipping_loading {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=50);
}
.sk-spinner-wave.sk-spinner {
	height: 30px;
	text-align: center;
	font-size: 20px;
	display: block;
	width: 200px;
	margin: 150px auto;
	position: relative
}
.sk-spinner.sk-spinner-wave p {
	color: #fff;
	font-weight: normal;
	font-size: 15px
}
.sk-spinner-wave div {
	background-color: #fff;
	height: 200%;
	width: 6px;
	margin-right: 4px;
	display: inline-block;
	-webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
	animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}
.sk-spinner-wave .sk-rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.sk-spinner-wave .sk-rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}
.sk-spinner-wave .sk-rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.sk-spinner-wave .sk-rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
 @-webkit-keyframes sk-waveStretchDelay {
 0%, 40%, 100% {
 -webkit-transform: scaleY(0.4);
 transform: scaleY(0.4);
}
 20% {
 -webkit-transform: scaleY(1);
 transform: scaleY(1);
}
}
 @keyframes sk-waveStretchDelay {
 0%, 40%, 100% {
 -webkit-transform: scaleY(0.4);
 transform: scaleY(0.4);
}
 20% {
 -webkit-transform: scaleY(1);
 transform: scaleY(1);
}
}
/* Wishlist */
.wishlist li:nth-child(1n) {
	background: #f9f9f9
}
.wishlist li:nth-child(2n) {
	background: #fff
}
.wishlist li div span {
	color: #000;
	display: none
}
.wishlist li div:last-child {
	border: 0
}
.wishlist li div.name {
	text-align: left;
	font-weight: 700;
	font-size: 12px;
	color: #333
}
.wishlist li div.name img {
	width: 92px;
	height: 88px;
	float: left;
	border: 1px solid #e7e7e7;
	margin: 0 15px 5px 0;
	padding: 3px
}
.wishlist li div.name div span {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	text-align: left
}
.wishlist li div.unit-price {
	padding: 10px;
	font-weight: 700;
	font-size: 12px;
	color: #333;
	vertical-align: middle;
	text-align: right;
	clear: both;
	border-bottom: 1px dashed #e1e1e1
}
.wishlist li div.price {
	padding: 10px;
	font-weight: 700;
	font-size: 12px;
	color: #333;
	vertical-align: middle;
	text-align: right;
	border: 0;
	color: #c60000;
	border-bottom: 1px dashed #e1e1e1
}
.wishlist li div.action {
	width: 12%;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: #333
}
.wishlist li div.del a.delete {
	display: block;
	width: 9px;
	margin: 0 auto
}
.wishlist li.total div.unit-price {
	color: #333;
	font-weight: 700
}
.wishlist li.total div.price {
	color: red;
	font-weight: 700
}
.wishlist.guidi li div.num-order {
	width: 10%
}
.wishlist.guidi li div.name {
	width: 44%
}
.wishlist li div.cs a, .wishlist li div.del a {
	color: #fff
}
.wishlist li.total div.unit-price {
	color: #333;
	font-weight: 700
}
.wishlist li.total div.price {
	color: #000;
	font-weight: 700
}
.wishlist li {
	display: block;
	position: relative;
	margin-top: 5px;
	padding: 0;
	clear: both;
	overflow: hidden
}
.wishlist li div {
	display: block;
	border: 0;
	border-top: none
}
.wishlist li div.name {
	width: 100%;
	float: left;
	color: #333;
	background: #fff;
	font-size: 13px;
	padding: 5px
}
.wishlist li div.name div {
	display: table;
	height: 50px;
	overflow: auto;
	width: 72%
}
.wishlist li div.name div span {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	text-align: left
}
.wishlist li div.name:after {
	content: "";
	display: table;
	clear: both
}
.wishlist li div.amount {
	width: 100%;
	text-align: right;
	clear: both
}
.wishlist li div.amount input {
	margin: 0px
}
.wishlist li div.amount span {
	display: inline-block;
	font-weight: 700;
	width: 35%;
	float: left;
	text-align: left;
	margin-top: 2px;
	color: #333
}
.wishlist li div.cs, .wishlist li div.del {
	width: initial;
	float: right;
	display: inline-table;
	padding: 10px
}
.wishlist li.total {
	background: #FFEED8;
	border: 0
}
.wishlist li.total div {
	border: 0
}
.wishlist li.total div.price span {
	display: inline-block;
	font-weight: 700;
	width: 35%;
	float: left;
	color: #000;
	text-align: left;
	text-transform: uppercase
}
.wishlist .cart_update {
	width: 100%;
	display: block;
	float: none
}
.wishlist li div.num-order, .wishlist li.thead, .wishlist li.total div.name, .wishlist li.total div.amount, .wishlist li.total div.unit-price, .wishlist li.total div.del {
	display: none
}
.wishlist li div.unit-price span, .wishlist li div.price span {
	display: inline-block;
	font-weight: 700;
	width: 35%;
	float: left;
	color: #333;
	text-align: left
}
/* ATTR */
.product_attr {
	margin-bottom: 15px
}
.product_attr .name_title_attr {
	font-weight: bold
}
.product_attr ul.list_attr li {
	padding: 2px 0px
}
.product_attr ul.list_attr li span.name_attr i {
	padding-right: 5px;
	display: none;
}
.product_attr ul.list_attr {
	color: #454545
}
/* CART POPUP */
#cart-popup {
	background: white;
	text-align: left;
	width:80%;
	max-width:550px;
	max-height:350px;
	margin: 0 auto;
	position: relative;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch
}
#cart-popup .popup-header {
	background: #723f32;
	padding: 15px
}
#cart-popup .popup-header h4 {
	font-family: 'avo', Arial, Helvetica, sans-serif;
	color: #fff
}
#cart-popup #product_attr{
	padding:15px 0px;
	margin:0px
}
#cart-popup #product_attr .name_title_attr{
	  font-weight: bold;
  padding-top: 15px;
}
#cart-popup .add_to_cart_footer{
	clear:both;
	border-top:1px solid #ebebeb;
	padding:15px 0px
}
/* BRANCH LIST */
.branch_info{
	font-weight:bold;
	padding-top:15px
}
ul.branch_list{
	padding:10px;
	margin:10px 0px;
	border:1px solid #ebebeb;
}
ul.branch_list li{
	padding:2px 0px
}
/* ORDER REVIEW */
.order_reviews {
	clear: both;
	margin-bottom: 15px
}
.order_reviews h2{
	margin-bottom:15px
}
.order_reviews ul {
	clear: both
}
.order_reviews ul li {
	line-height: 35px;
	border-bottom: 1px dashed #e9e9e9;
	padding: 5px 0px
}
.order_reviews ul li label {
	width: 20%
}
/*Credit Card*/
.form_payment label {
	font-size: 13px;
	width: 25%;
	margin-left: 20px
}
.form_payment input {
	width: 40%
}
/* compare */
#compare .compareitem {
	background: #fff;
	clear: both;
	overflow: hidden;
	border-collapse: collapse;
	margin: 0 auto
}
#compare .compareitem .title {
	background: #f1f1f1;
	font-family: bebas, Arial, Helvetica, sans-serif;
	color: #000;
	text-align: right;
	font-weight: 400;
	font-size: 20px;
	border-left: none;
	margin: 15px;
	padding: 10px;
	vertical-align: middle
}
#compare .compareitem td.title {
	min-width: 105px
}
#compare .compareitem tr th {
	border: 1px dotted #ccc;
	border-right: none;
	vertical-align: top;
	padding: 6px
}
#compare .compareitem tr td {
	border: 1px dotted #ccc;
	border-right: none;
	width: 16%;
	vertical-align: top;
	padding: 6px
}
#compare .compareitem tr th.delete {
	color: #555;
	text-align: center;
	font-weight: 400;
	padding: 12px 10px
}
#compare .compareitem tr th.delete a {
	color: #333
}
#compare .compareitem tr th.delete a:hover {
	color: #1ebb61
}
#compare .compareitem h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #723f32
}
#compare .compareitem a {
	text-decoration: none
}
#compare .compareitem .price {
	font-family: 'avo', Arial, Helvetica, sans-serif;
	color: #c60000;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	margin: 5px 15px;
	padding: 10px
}
#compare {
	margin: 0 0 20px
}
#compare ul.function {
	border: none
}
#compare .compareitem p {
	font-size: 13px;
	text-align: justify;
	padding: 0 5px
}
#compare .compareitem img {
	border: 1px solid #ededed;
	max-width: 150px;
	display: block;
	margin: 0 auto 10px;
	padding: 5px
}
/* contact */
.contact-info{
	margin-bottom:15px
}
.contact-info ul li:first-child {
	border-bottom: none;
	padding: 2px 0px
}
.contact-info ul li {
	padding: 5px 0px;
	color: #878787
}
.contact-info ul li i {
	padding-right: 10px
}
.contact-form label.error {
	background: #ffc1c1;
	padding: 5px 10px;
	text-align: justify;
	color: #ea3d3d;
	font-weight: normal !important;
	width: 100%;
	font-size: 13px
}
/* post */
#post .postitem h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold
}
#post .postitem p {
	margin: 10px 0!important
}
#post .postitem img {
	display: block;
	border: 1px solid #ededed;
	width: 550px;
	margin: 0 auto;
	padding: 5px
}
/* Account */
#acc > .itemacc > .acc-info > h2, #acc > .itemacc > .acc-cart > h2, .order_reviews h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	text-transform: uppercase;
	background: #e4dbd9;
	padding: 10px;
	border-bottom: none
}
.acc-info ul, .acc-cart ul {
	font-size: 13px;
	margin-bottom: 15px
}
.acc-cart ul {
	background: #f3f3f3;
	border: 1px solid #e2e2e2;
	margin-bottom: 15px;
	padding: 10px
}
.acc-info {
	clear: both
}
.acc-info ul li {
	line-height: 35px;
	border-bottom: 1px dashed #e9e9e9;
	padding: 5px 0px
}
.acc-info ul li label {
	width: 20%
}
.acc-cart ul li {
	border-bottom: 1px dotted #e2e2e2;
	padding: 10px 0
}
.acc-cart ul li:last-child {
	border-bottom: 0
}
.acc-cart ul li a {
	text-decoration: none;
	color: #333;
	padding-left: 10px
}
.acc-cart ul li a:hover {
	text-decoration: underline
}
.bullet {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid #333;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	content: ""
}
/* ASIDE 
-------------------------------------------------- */

#column-left {
	float: left;
	width: 100%
}
#column-right {
	float: right;
	width: 100%
}
/* Vertical Menu */
.panelvmenu {
	background: #fcf8f1;
	color: #fff;
	font-size: 21px;
	border: 1px dashed #d0c3bf;
	box-shadow: 0 0 0 8px #fcf8f1;
	clear: both;
	margin: 6px;
}
a.list-group-item-vmenu {
	position: relative;
	display: block;
	padding: 12px 15px 12px 15px;
	font-family: Arial, Helvetica, sans-serif;
	color: #503b4b;
	font-size: 12px;
	border-bottom: 1px dashed #d0c3bf;
	font-weight: 700
}
a.list-group-item-vmenu:last-child {
	border-bottom: none
}
a.list-group-item-vmenu i {
	padding-right: 10px
}
a.list-group-item-vmenu:hover, a.list-group-item-vmenu.sub:hover, a.list-group-item-vmenu.subsub:hover, a.list-group-item-vmenu.subsubsub:hover {
	color: #333;
	background: #eee9e0
}
a.list-group-item-vmenu.sub.active{
	color: #333;
	background: #eee9e0	
}
a.list-group-item-vmenu.sub, a.list-group-item-vmenu.subsub, a.list-group-item-vmenu.subsubsub {
	background: #fff;
	padding-left: 30px;
	border: none
}
a.list-group-item-vmenu.subsub {
	padding-left: 50px;
}
a.list-group-item-vmenu.subsubsub {
	padding-left: 70px;
}
a.arrow-sub-vmenu {
	position: relative;
	z-index: 999;
	float: right;
}
a.arrow-sub-vmenu i {
	position: absolute;
	font-size: 15px;
	top: -32px;
	color: #161616;
	right: 15px
}
/* Module */
.box-category {
	margin-bottom: 15px;
	overflow: hidden
}
.box-category .heading:before {
	background: url(../assests/heading-left.png) no-repeat;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 38px;
	height: 38px
}
.box-category .heading:after {
	background: url(../assests/heading-right.png) no-repeat;
	content: '';
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	width: 38px;
	height: 38px
}
.box-category .heading {
	position: relative;
	font-family: 'bill', Arial, Helvetica, sans-serif;
	color: #fff;
	font-weight: 400;
	padding: 0px 10px 0px 10px;
	font-size: 18px;
	margin-bottom: 20px;
}
.box-category .heading span {
	background: #723f32;
	display: block;
	padding: 10px;
	text-align: center;
	font-size: 26px;
}
.box-category .main {
	position: relative;
	background: #fcf8f1;
	color: #fff;
	font-size: 21px;
	border: 1px dashed #d0c3bf;
	box-shadow: 0 0 0 8px #fcf8f1;
	clear: both;
	margin: 6px;
	padding: 0px 10px
}
/* Product silder */
.typical-products .product {
	border: none;
	padding: 15px 0px 0px 0px;
	box-shadow: none
}
.typical-products .product p {
	text-align: justify;
	color: #6a6a6a;
	font-size: 14px;
	margin-bottom: 15px
}
.typical-products .owl-controls {
	height: inherit !important
}
.typical-products .owl-controls .owl-pagination {
	top: 10px !important;
	margin-bottom: 10px
}
/* Last product */
.box-category .main ul.list li {
	border-bottom: 1px dashed #d4d4d4;
	overflow: hidden;
	margin: 10px 0px;
	padding-bottom: 10px
}
.box-category .main ul.list li:last-child, .box-category .main ul.list-post-latest li:last-child {
	margin-bottom: 0px;
	border-bottom: none
}
.box-category .main ul.list li img {
	float: left;
	margin-right: 10px;
	width: 73px
}
.box-category .main ul.list li p {
	font-size: 13px;
	color: #333;
	font-weight: 400
}
.box-category .main ul.list li a, .box-category .main ul.list_post li a {
	text-decoration: none
}
.box-category .main ul.list li span {
	color: #c60000;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: bold
}
.box-category .main ul.list li span.price-old {
	text-decoration: line-through;
	font-size: 13px;
	color: #a2a2a2;
	display: block;
	font-weight: normal
}
.box-category .main ul.list_post li span {
	color: #c7c7c7;
	font-size: 13px
}
#product-listitem .box-category .main {
	background: none;
	border: none;
	box-shadow: none;
	margin: 0px;
	padding: 0px
}
/* LIST POST */
.box-category .main ul.list_post li {
	border-bottom: 1px dashed #d4d4d4;
	overflow: hidden;
	margin: 15px 0px;
	padding-bottom: 13px;
}
.box-category .main ul.list_post li img {
	float: left;
	margin-right: 10px;
	width: 80px
}
.box-category .main ul.list_post li p {
	font-size: 13px;
	color: #333;
	font-weight: 400;
	max-height: 42px;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}
.box-category .main ul.list_post li p:hover {
	color: #723f32
}
/* Who is online*/
.box-category .main ul.online li{
	padding: 8px 0px;
	overflow: hidden
}
/* Custom Moudle */
.box-category .main .support, .box-category .main .link, .box-category .main .search-adv, .box-category .main .link2, .box-category .main .online, .box-category .main .feedback {
	font-size: 13px;
	overflow: hidden;
	color: #333
}
.box-category .main .support p, .box-category .main .support span {
	font-size: 13px
}
.box-category .main .support span {
	padding-left: 10px
}
.box-category .main .support ul li a {
	width: auto !important
}
.box-category .main .support img {
	margin: 0px 5px 10px 0px !important;
	vertical-align: -18px !important;
	width: 100% !important
}
.box-category .main .link li {
	border-bottom: 1px dashed #e3e3e3;
	font-size: 13px;
	padding: 10px 0 10px 0px
}
.box-category .main .link li:last-child {
	border-bottom: none
}
.box-category .main .link li a {
	font-weight: 700;
	color: #333;
	text-decoration: none
}
.box-category .main .link2 p {
	font-size: 13px;
	margin: 0;
	padding: 10px 0
}
.box-category .main .online .red1 {
	color: red
}
.box-category .main .feedback {
	font-family: 'font', Arial, Helvetica, sans-serif
}
.box-category .main .feedback p {
	color: #d14d42
}
.box-category .main .feedback ul li {
	padding: 5px 0;
	color: #969696
}
.box-category .main .feedback a {
	float: right;
	color: #333;
	margin-top: 20px
}
.page_cart .cart_update {
	width: 100%;
	display: block;
	float: none
}
/* PAGINATION */
ul.pagination {
	background: #fcf8f1;
	color: #503b4b;
	font-size: 12px;
	border: 1px dashed #d0c3bf;
	box-shadow: 0 0 0 5px #fcf8f1;
	clear: both;
	margin: 10px 0px 20px 0px;
	padding: 10px 5px 5px 5px;
	width: 100%;
	border-radius: 0px;
	text-align: center
}
ul.pagination li {
	display: inline-block;
 *display:inline; /*IE7*/
 *zoom:1; /*IE7*/
	margin-right: 10px;
}
.pagination>li>a, .pagination>li>span {
	border-radius: 0px;
	border: none;
	color: #333;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 3px 10px;
	font-size: 14px;
	font-weight: bold;
	background: transparent
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
	z-index: 2;
	color: #fff;
	background-color: #503b4b;
	cursor: default;
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
	color: #fff;
	background-color: #503b4b
}
/* GALLERY */
.top-gallery_category > .container > .row {
	background: #fff;
	clear: both;
	overflow: hidden;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px 5px
}
.box-category .main #gallery-pic .des-product p{
	display:none
}
#gallery-pic .des-product p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	margin: 0px;
	text-align: center;
	font-weight: bold;
	line-height: 22px;
	height: 48px;
	overflow: hidden;
	color: #503b4b
}
#gallery-pic .product .image .img-overflow {
	margin-bottom: 0px
}
footer #gallery-pic .row {
	border-bottom: none;
	padding: 0px
}
.gallery, .video {
	padding: 15px 0px
}
#mediaplayer_video {
	position: relative;
	min-height: 100%
}
.fancybox-inner {
	width: auto !important;
	height: auto !important;
}
.main > .module_is_not_relevant {
	margin-top: 10px
}
.module_is_not_relevant {
	margin-top: 0px
}
/* NEWS LETTER */
.top-newsletters > .container > .row {
	background: #fff;
	clear: both;
	overflow: hidden;
	margin-left: 0px;
	margin-right: 0px;
	padding: 10px 5px 0px 5px
}
.main > #email-newsletter {
	margin-bottom: 0px;
	padding: 15px 0px
}
#email-newsletter {
	padding: 0px 0px 15px 0px
}
footer .footer-newsletters #email-newsletter p {
	color: #fff
}
#email-newsletter p {
	font-size: 13px;
	font-family: 'dax', Arial, Helvetica, sans-serif;
	color: #807f7f;
	text-align: justify;
	clear: both
}
#email-newsletter form.submit_register_email {
	width: 100%;
	margin-top: 10px;
	position: relative
}
#email-newsletter form.submit_register_email input[type=text] {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 99%;
	margin: 0px;
	padding: 9px;
	border: 1px solid #ececec;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	font-size: 13px
}
#email-newsletter form.submit_register_email input[type=submit] {
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	border-radius: 0px;
	border-bottom: none;
	font-weight: bold;
	background: #503b4b;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	font-size: 13px
}
#email-newsletter form.submit_register_email input[type=submit]:hover {
	background: #60817b
}
/* TAG */
ul.tags-footer {
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	font-size: 13px;
	margin-top: 15px;
	overflow: hidden;
	text-transform: uppercase
}
ul.tags-footer li a {
	background: #503b4b;
	color: #fff;
	float: left;
	display: block;
	padding: 8px 15px;
	margin: 0px 10px 15px 0px;
	font-size: 16px;
	font-weight: normal;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px
}
ul.tags-footer li a:hover {
	background: #60817b;
	color: #fff
}
/* TAG */
.tag{
	margin-top: 10px;
	clear: both;
	overflow: hidden
}
.tag .tag-title{
	font-weight: bold;
	text-transform: uppercase;
	color: #3a3a3a;
	margin-bottom: 10px;
	display: block
}
.tag ul{
	margin-bottom: 10px;
	display: table
}
.tag ul li{
	float: left;
	margin-right: 10px;
	list-style: none
}
.tag ul li a{
    float: left;
    width: 100%;
    color: #3a3a3a;
    border: 1px solid #d4d4d4;
    padding: 5px 10px;
}
.tag ul li a:hover{
	background: #f0f0f0
}
/* Detail Tag */
#tag {
	background: #fff
}
#tag .tag-detail {
	padding: 0px 0px 15px 0px;
	overflow: hidden;
	margin: 10px 0px
}
#tag .tag-detail .img-blog img {
	text-align: center;
	display: block;
	position: relative;
	box-shadow: 0 0 10px #E1E0DD;
	padding: 5px
}
#tag .tag-detail h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-decoration: none;
	color: #723f32;
	font-weight: bold
}
#tag .tag-detail .date {
	color: #898989;
	font-size: 12px;
	display: inline-block;
	width: 100%;
	padding: 5px 0px;
}
#tag .tag-detail p {
	font-family: 'sans-r', Arial, Helvetica, sans-serif;
	text-align: justify;
	font-size: 14px;
	color: #807f7f;
	margin: 0;
	padding: 5px 0px
}
/* SEARCH ADV */
#box_search .box_search_detail {
	margin-bottom: 20px;
	overflow: hidden;
}
#box_search #search-detail{
	clear: both;
	margin:0px 0px 10px 0px
}
#box_search .all{
	right: 15px
}
#box_search .box_search_detail .img-blog img {
	margin-bottom: 10px;
	border: 4px solid #e1e1e1
}
#box_search .box_search_detail h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-align: left;
	font-weight: bold;
	line-height: 25px;
	color: #3a3a3a
}
#box_search .box_search_detail h3:hover{
}
#box_search .box_search_detail p {
	text-align: justify;
	font-size: 14px;
	color: #808080;
	margin: 0;
	padding: 10px 0
}
#box_search .box_search_detail .price {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: 400;
	vertical-align: middle;
	display: -moz-inline-stack;
	display: inline-table;
	zoom: 1;
	white-space: nowrap;
	float: left
}
#box_search .box_search_detail .price .price-new {
	font-size: 15px;
	padding-right: 10px;
	color: #c60000;
	margin-right: 10px;
	font-weight: bold
}
#box_search .box_search_detail .price .price-old {
	text-decoration: line-through;
	padding-right: 10px;
	font-size: 15px;
	color: #a2a2a2
}
/* Module Popup */
.module_popup {
	background: white;
	text-align: center;
	width: 100%;
	margin: auto;
	position: relative;
	overflow-y: auto;
	max-width: 600px;
	-webkit-overflow-scrolling: touch
}
.module_popup .popup-body {
	padding: 0px
}
.module_popup .mfp-close {
	top: -1px
}
/* FOOTER
-------------------------------------------------- */
footer {
	clear: both
}
footer .before_last_section > .container > .row, footer .last_section > .container > .row {
	background: none
}
/* Footer Center */
footer .footer-center {
	background: #506c67;
	padding: 25px 0px
}
.address {
	font-size: 13px;
	overflow: hidden
}
.address li {
	line-height: 25px
}
.address li a {
	color: #fff;
	text-decoration: none
}
.address li a:hover {
	text-decoration: underline
}
.box {
	color: #fff;
	text-align: justify
}
.box p{
	
	font-size: 12px
}
.box h3, footer .footer-html h3, footer .footer-tag h3, footer .footer-post_views h3, footer .footer-post_customized h3, footer .footer-gallery_category h3, footer .footer-gallery h3, footer .footer-video_category h3, footer .footer-video h3, footer .footer-newsletters h3 {
	color: #fff;
	font-family: 'bill', Arial, Helvetica, sans-serif;
	font-size: 42px;
	margin-bottom: 15px
}
footer .footer-gallery_category #gallery-pic h3:before, footer .footer-gallery #gallery-pic h3:before, footer .footer-video_category #gallery-pic h3:before, footer .footer-video #gallery-pic h3:before {
	display: none
}
/* Payment */
ul.payment {
	text-align: center;
	margin-top: 18px;
	float: right
}
ul.payment li {
	display: inline-block;
 *display:inline; /*IE7*/
 *zoom:1; /*IE7*/
	margin-right: 8px;
	float: left
}
ul.payment li:last-child {
	margin-right: 0px
}
/* NEWS FOOTER */
.news-footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
.news-footer li {
	padding: 7px 0px
}
.news-footer li:first-child {
	border-top: none;
	padding-top: 0px
}
.news-footer li:last-child {
	border-bottom: none
}
.news-footer li a {
	text-align: justify;
	color: #fff;
}
.news-footer li a:before {
	content: '\f069';
	font-family: FontAwesome, 'sans', Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 9px;
	position: absolute;
	pointer-events: none;
}
.news-footer li a span {
	padding-left: 15px
}
.news-footer li a:hover {
	color: #fff;
	text-decoration: underline
}
.box2 ul li a i {
	font-size: 12px;
	padding-right: 10px
}
/* Copyright */
footer .copyright {
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFF;
	font-size: 13px
}
footer .copyright a {
	color: #fff;
}
footer .copyright select {
	width: 100%
}
 #signup [type=text], [type=password], textarea {
 padding:9px 5px
}
/* SEARCH ADV PRODUCT */
.search-adv-product{
	clear: both;
	overflow: hidden;
	padding: 10px 0px;
	font-size: 13px
}
.search-adv-product input[type=text]{
	width: 100%;
	padding: 8px 5px
}
.search-adv-product select{
	width: 100%
}
.search-adv-product [type=submit].button{
	width: auto;
	height: auto;
	float: none;
	text-align: center;
	margin: 5px auto 0px auto;
	display: block;
	background: #503b4b;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal
}
.search-adv-product [type=submit].button:hover {
	background: #60817b;
	color: #fff
}
/* 404 */
.page_error_01{
  background: url(../../../public/error_page/01.jpg) no-repeat 50% 50%;
  height:600px;
  position:relative;
  margin-top: 25px
}
.page_error_01 a{
 display:table;
 background:#503b4b;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
 border-radius: 2px;
 padding:10px 25px;
 color:#fff;
 position: absolute;
    left:50%;
 top:55%;
    margin-left:-70px;
}

.page_error_02{
  background: url(../../../public/error_page/02.jpg) no-repeat 50% 50%;
  height:600px;
  position:relative;
  margin-top: 25px
}
.page_error_02 a{
 display:table;
 background:#503b4b;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
 border-radius: 2px;
 padding:10px 25px;
 color:#fff;
 position: absolute;
 left: 59%;
 top: 60%;
 margin-left:-70px;
 text-transform:uppercase;
 font-weight:bold
}

.page_error_03{
  background: url(../../../public/error_page/03.jpg) no-repeat 50% 50%;
  height:600px;
  position:relative;
  margin-top: 25px
}
.page_error_03 a{
 display:table;
 background:#503b4b;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
 border-radius: 2px;
 padding:10px 25px;
 color:#fff;
 position: absolute;
  left:48%;
 top:65%;
    margin-left:-70px;
 text-transform:uppercase
}

.page_error_04{
  background:url(../../../public/error_page/04.jpg) no-repeat 50% 50%;
  height:600px;
  position:relative;
  margin-top: 25px
}
.page_error_04 a{
 display:table;
 background:#503b4b;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
 border-radius: 2px;
 padding:10px 25px;
 color:#fff;
 position: absolute;
 left: 65%;
 top: 70%;
 margin-left:-70px;
 text-transform:uppercase;
 font-weight:bold
}

.page_error_05{
  background:url(../../../public/error_page/05.jpg) no-repeat 50% 50%;
  height:600px;
  position:relative;
  margin-top: 25px
}
.page_error_05 a{
 display:table;
 background:#503b4b;
 -webkit-border-radius: 2px;
 -moz-border-radius: 2px;
 border-radius: 2px;
 padding:10px 25px;
 color:#fff;
 position: absolute;
 left: 50%;
 top: 80%;
 margin-left:-115px;
 text-transform:uppercase;
 font-weight:bold
}

/* MUANGAY */
a.btn-big{
	position:relative
}
a.btn-big:after{
border-right: 1px solid #ebebeb;
    content: '';
    padding:8px 10px 10px 0px
}
.bt_buynow{
	background:#723f32 !important;
	text-transform:uppercase;
	font-weight:bold;
	position:relative;
    color: #fff !important;
    width: inherit !important;
    padding:0px 10px !important;
    border-radius: 0px !important
}
.buy_now_success{
    border:1px solid green;
}
.buy_now_error{
    border:1px solid red;
}
.popup-newcart {
	background: #FFF;
	text-align: left;
	max-width: 580px;
	margin: 10px auto;
	position: relative;
	clear: both;
	overflow-x:hidden 
}
.popup-newcart .clearfix {
	clear: both;
	overflow: hidden;
}
.popup-newcart .mfp-close {
	color: #fff !important;
	margin: 5px 10px;
	width: inherit;
	height: inherit;
	line-height: 20px;
}
.popup-newcart .top-tit {
	background: #36414b;
	color: #fff;
	padding: 10px;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
.popup-newcart .pd-info {
	padding: 10px;
}
.popup-newcart .pd-info .img-frame {
	border: 5px solid #eee;
	max-height: 200px;
	overflow: hidden;
}
.popup-newcart .pd-info .img-frame img {
	width: 100%;
}
.popup-newcart .pd-info p {
	font-weight: bold;
	font-size: 14px;
}
.popup-newcart .pd-info .price-note {
	padding: 10px 0;
	display: block;
	clear: both;
	overflow: hidden;
	border-bottom: 1px dotted #e1e1e1;
}
.popup-newcart .pd-info .price-note .main-price {
	font-weight: bold;
	font-size: 22px;
	color: #159ec6;
}
.popup-newcart .pd-info .price-note .old-price {
	text-decoration: line-through;
	font-size: 12px;
	color: #666;
	line-height: 22px;
	padding-left: 10px;
}
.popup-newcart .pd-info .pd-note {
	font-size: 12px;
	padding-top: 10px;
	margin-bottom: 10px
}
.popup-newcart .pd-info .pd-note span {
	margin-right: 10px;
}
.popup-newcart .pd-info .total_div {
    clear: both;
    border-top: 1px dotted #e1e1e1;
    font-size: 12px;
    overflow: hidden;
    display: block;
    padding-top: 10px;
}
.popup-newcart .pd-info .total_div .bn_total_title{
    line-height: 23px;
    padding-top: -3px;
    display: inline-block;
    float: left;
    margin-right: 10px
}
.popup-newcart .pd-info .total_div .bn_sub_total{
    color: red;
    font-size: 19px
}
.popup-newcart .note-form {
	text-align: center;
	background: #fff;
	padding: 20px 0;
	font-size: 14px;
}
.popup-newcart .pd-form {
	padding: 0 30px 10px 30px;
	background: #f4f4f4;
	font-size: 12px;
}
.popup-newcart .pd-form .select-wrap {
	width: 100%;
	border: 1px solid #eee;
	background: #fff;
	padding: 1px;
}
.popup-newcart .pd-form .select-wrap select {
	width: 100%;
}
.popup-newcart .pd-form p.form-tit {
	color: #159ec6;
	font-weight: bold;
	text-transform: uppercase;
	padding: 10px 0 5px 0;
}
.popup-newcart .pd-form ul.comp-order li {
	padding: 5px 10px;
	clear: both;
	overflow: hidden;
}
.popup-newcart .pd-form ul.comp-order li span {
	width: 25%;
	float: left;
}
.popup-newcart .pd-form .row-form {
	padding: 5px 0;
	position: relative;
}
.popup-newcart .pd-form .row-form input[type="text"], .popup-newcart .pd-form .row-form input[type="password"] {
	width: 100%;
	border: 1px solid #eee;
	padding: 5px 8px;
	margin: 0px;
	outline: none
}
.popup-newcart .pd-form .row-form label {
	line-height: 28px;
	font-weight: normal;
}
.popup-newcart .pd-form .row-form strong {
	line-height: 28px;
}
.popup-newcart .pd-form .row-form.radio-form {
	padding: 0;
	margin-bottom: 5px;
}
.popup-newcart .pd-form .row-form.radio-form label {
	cursor: pointer;
}
.popup-newcart .pd-form .row-form .content-pay {
	background: #fff;
	margin: 5px 0;
	border-left: 4px solid #159ec6;
	padding: 5px 15px;
	clear: both;
	overflow: hidden;
}
.popup-newcart .pd-form .row-form .content-pay i.fa {
	font-size: 60px;
	color: #f1f2f2;
	margin: 10px 20px 0 0;
}
.popup-newcart .pd-form .row-form .content-pay p {
	padding: 5px 0;
	margin: 0;
}
.popup-newcart .pd-form .row-form .content-pay .list-info{
	float:left
}
.popup-newcart .pd-form .row-form .content-pay .list-info strong {
	line-height: 16px;
}
.popup-newcart .pd-form .row-form .content-pay .list-info .notice .notice-header{
	font-weight: bold
}
.popup-newcart .pd-form .row-form span.warning {
	position: absolute;
	color: red;
	padding-left:5px
}
.popup-newcart .pd-form .row-form.btn-buy,
.top-tit-buynow .row-form.btn-buy{
	text-align: center;
	border-top: 1px solid #e1e1e1;
	padding-top: 10px;
}
.popup-newcart .pd-form .row-form.btn-buy input[type="submit"] {
	color: #fff;
	font-weight: bold;
	border: none;
}
.popup-newcart .pd-form.form-add {
	padding: 20px 60px;
}
.popup-newcart .pd-form.form-add p {
	padding-top: 10px;
}
.popup-newcart .pd-form.form-add input[type="submit"] {
	background: #fe6d4c;
	color: #fff;
	padding: 15px 30px;
	font-weight: bold;
	border: none;
	margin: 10px 0;
}
.popup-newcart .pd-form.form-add input[type="submit"]:hover {
	background: #333;
}
.popup-newcart input[type="radio"] {
	display: none;
}
.popup-newcart input[type="radio"] + label span {
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	background: url(../images/radio-btn.png) 0 0 no-repeat;
	cursor: pointer;
	margin-right: 10px;
}
.popup-newcart input[type="radio"]:checked + label span {
	background: url(../images/radio-btn.png) 0 -18px no-repeat;
}
.popup-newcart input[type="radio"]:checked + label {
	color: #159ec6;
	font-weight: bold;
}
.popup-newcart select {
	padding: 3px;
	margin: 0;
	background: #fff;
	color: #888;
	border: none;
	outline: none;
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
 @media screen and (-webkit-min-device-pixel-ratio: 0) {
.popup-newcart select {
	padding-right: 18px;
}
}
.popup-newcart .select-wrap {
	position: relative;
}
.popup-newcart .select-wrap:after {
	color: #aaa;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	right: 8px;
	top: 2px;
	padding: 0 0 2px;
	border-bottom: 1px solid #ddd;
	position: absolute;
	pointer-events: none;
}
.popup-newcart .select-wrap:before {
	content: "\f0d7";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #48595e;
	font-size: 14px;
	padding-right: 0.5em;
	position: absolute;
	top: 5px;
	right: 5px;
}
.top-tit-buynow{
    padding: 5px 20px 15px 20px;
    background: #f4f4f4;
    font-size: 12px
}
.top-tit-buynow ul li{
	clear: both;
	overflow: hidden
}
.top-tit-buynow ul li.title-buynow {
	color: #159ec6;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 0 5px 0
}
.top-tit-buynow ul li label{
	font-weight: normal;
	line-height: 28px;
	width: 30%;
	float: left
}
.top-tit-buynow ul li span{
	font-weight: bold;
    width: 69%;
    float: left;
    padding-top: 4px;
}
.step3.top-tit-buynow{
	padding: 15px 20px
}
.step3.top-tit-buynow .buynow-msg{
	font-weight: bold
}
.step3.top-tit-buynow .buynow-msg.error{
	color: #ff3600
}

/* ==== USER CLIENT ==== */
.user-client h4 {
	border-bottom: 1px dashed #d9d9d9;
	margin-bottom: 10px;
	padding-bottom: 10px;
	overflow: hidden
}
.user-client h4 span {
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	float: left;
	font-size: 25px
}
.user-client h4 ul {
	float: right
}
.user-client h4 ul li {
	float: left;
	font-size: 12px;
	margin-left: 15px;
	padding: 0;
}
.user-client h4 ul li a {
	color: #d44b1f
}
.user-client h4 ul li a i {
	padding-right: 5px
}
.user-client .main-inner {
	margin-bottom: 20px
}
.user-client .main-inner ul li,
.user-client ul li {
	padding: 5px 0px;
	font-size: 13px;
	color: #48595e
}
.user-client .main-inner ul li:last-child  {
	margin-bottom: 15px
}
.user-client .main-inner ul.info-user-client li span,
.user-client .main-inner ul li span,
.user-client ul li span {
	width: 20%;
	display: inline-block
}
.user-client ul li span.old_password,
.user-client ul li span.user_password,
.user-client ul li span.user_repassword{
	background: #ffc1c1;
    padding: 5px 10px;
    text-align: justify;
    color: #ea3d3d;
    font-weight: normal !important;
    font-size: 13px;
    display: inline;
    width: inherit;
    margin: 0px;
}
.user-client .main-inner ul li span i {
	padding-right: 5px;
	font-size: 12px;
	width: 20px
}
.user-client .main-inner .box-user {
	padding: 15px;
	color: #fff
}
.user-client .main-inner .box-user i {
	float: left;
	font-size: 45px;
	margin-right: 15px
}
.user-client .main-inner .box-user .des-user span {
	font-size: 40px;
	font-weight: bold;
	display: block;
	line-height: 32px;
}
.user-client .main-inner .box-user .des-user small {
	font-size: 12px;
	display: block
}
.user-client .main-inner .box-user.color1 {
	background: #ff5252
}
.user-client .main-inner .box-user.color2 {
	background: #fcb333
}
.user-client .main-inner .box-user.color3 {
	background: #eee;
	color: #71b215
}
.user-client .main-inner .box-user.color4 {
	background: #2c6fc1
}
.user-client .main-inner p {
	color: #979797;
	font-size: 12px;
	float: left;
	width: 90%
}
.user-client .main-inner .add-address {
	float: right;
	background: #59be4b;
	padding: 5px;
	color: #fff;
	font-size: 12px;
	margin-bottom:10px;
	cursor: pointer
}
.user-client ul li input[type=text],
.user-client ul li input[type=password]{
	margin:0px 
}
.user-client ul li.line-row{
	font-weight: bold;
	border-bottom: 1px dashed #d9d9d9
}
.user-client .main-inner ul input[type=submit].submit, .user-client ul input[type=submit].submit{
	margin: 10px 0;
}
.user-client ul li select{
	width: 40%;
	margin: 0
}
.user-client ul li select.birthday{
	width: 13%
}
/* TABLE */
.user-client .main-inner .table-responsive,
#bill-detail .table-responsive{
	clear: both
}
.user-client .main-inner table.list-detail,
#bill-detail table.list-detail {
	font-family: Arial, Helvetica, sans-serif;
	width: 100%;
	background: #fff;
	margin-bottom: 15px;
	margin-top: 15px
}
.user-client .main-inner table.list-detail thead,
#bill-detail table.list-detail thead {
	background: #464b59;
	border: 1px solid #464b59
}
.user-client .main-inner table.list-detail thead tr,
#bill-detail table.list-detail thead tr {
	border-bottom: none
}
.user-client .main-inner table.list-detail thead tr th,
#bill-detail table.list-detail thead tr th {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	vertical-align: middle;
	border: none;
	padding: 12px 8px;
	font-size: 12px
}
.user-client .main-inner table.list-detail tbody,
#bill-detail table.list-detail tbody {
	border: 1px solid #e7e7e7
}
.user-client .main-inner table.list-detail tr:nth-child(2n),
#bill-detail table.list-detail tr:nth-child(2n) {
	background: #f7f7f7
}
.user-client .main-inner table.list-detail .total-tr,
#bill-detail table.list-detail .total-tr {
	background: #f7f7f7
}
.user-client .main-inner table.list-detail .total-tr td,
#bill-detail table.list-detail .total-tr td {
	padding: 15px 10px
}
.user-client .main-inner table.list-detail input[type=checkbox] {
	outline: none;
	border: none;
	margin: 0px
}

.user-client .main-inner table.list-detail tr td,
#bill-detail table.list-detail tr td {
	border: 1px dashed #e5e5e5;
	color: #86878a;
	font-size: 13px;
	vertical-align: middle
}
/* FUNCTION TABLE */
.user-client .main-inner table.list-detail tr td ul {
	display: inline-flex;
	overflow: hidden;
	width: 100%
}
.user-client .main-inner table.list-detail tr td ul li {
	float: left;
	margin-right: 10px !important;
	padding: 0px;
	border: none;
	margin-bottom: 0px
}
.user-client .main-inner table.list-detail tr td ul li a {
	display: table-cell;
	padding: 7px 10px;
	background: #eeeeee;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	text-align: center;
	color: #86878a;
	width: 33px
}
.user-client .main-inner table.list-detail tr td a{
	color:#86878a
}
.user-client .main-inner table.list-detail tr td a:hover{
	text-decoration:underline
}
.user-client .main-inner .block-action{
	margin-bottom:15px
}
.user-client .main-inner .page {
	border-top: 1px dashed #e5e5e5
}
.user-client .main-inner ul.pagination {
	border-radius: 0px;
	text-align: left;
	margin: 10px 0px 0px;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	overflow: hidden;
	background: none;
	border: none;
	box-shadow: none;
	padding: 0px;
	width: inherit;
}
.user-client .main-inner ul.pagination li {
	color: white;
	padding: 0px !important;
	border: none !important;
	display: inline;
	margin: 0px;
}
.user-client .main-inner ul.pagination li a {
	border-radius: 0px;
	color: #86878a;
	border: none;
	font-size: 12px;
	background: none;
	margin-left: 5px;
	padding: 6px 12px;
}
.user-client .main-inner ul.pagination>li:first-child>a, .user-client .main-inner ul.pagination>li:last-child>a {
	border-radius: 0px
}
.user-client .main-inner .pagination>.active>a, .user-client .main-inner .pagination>.active>span, .user-client .main-inner .pagination>.active>a:hover, .user-client .main-inner .pagination>.active>span:hover, .user-client .main-inner .pagination>.active>a:focus, .user-client .main-inner .pagination>.active>span:focus, .user-client .main-inner .pagination>li>a:hover, .pagination>li>span:hover, .user-client .main-inner .pagination>li>a:focus, .pagination>li>span:focus {
	background: #464b59;
	color: #fff
}
/* POPUP ANIMATION */
/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}
/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0
}
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	-webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	-o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
	transform: translateY(-20px) perspective(600px) rotateX(10deg)
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(600px) rotateX(0);
	-moz-transform: translateY(0) perspective(600px) rotateX(0);
	-ms-transform: translateY(0) perspective(600px) rotateX(0);
	-o-transform: translateY(0) perspective(600px) rotateX(0);
	transform: translateY(0) perspective(600px) rotateX(0)
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	-o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
	transform: translateY(-10px) perspective(600px) rotateX(10deg)
}
/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity .3s ease-out;
	-moz-transition: opacity .3s ease-out;
	-o-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: .8
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0
}

/* POPUP THEM SUA DIA CHI */
#add-address,
#edit-address{
	background: #fff;
	text-align: left;
	margin: 40px auto;
	width:30%;
	position: relative;
	overflow:hidden
}
#add-address .heading,
#bill-detail .heading,
#edit-address .heading {
	background:#464b59;
    padding: 15px;
	color: #fff;
	font-family: 'bebas', Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 18px
}
#add-address .main,
#bill-detail .main,
#edit-address .main{
	padding: 15px;
}
#add-address .main ul li,
#edit-address .main ul li{
	margin-bottom:10px;
	overflow:hidden
}
#add-address .main ul li label,
#edit-address .main ul li label{
	font-weight:normal;
	font-size:12px;
	width:30%;
	float:left;
	padding:10px 0px
}
#add-address .main ul li font,
#edit-address .main ul li font{
	display: none
}
#add-address .main ul li input[type=text],
#add-address .main ul li select,
#edit-address .main ul li input[type=text],
#edit-address .main ul li select{
	width:60%;
	float:right;
	margin:0px;
	border: 1px solid #ebebeb;
font-size: 13px
}

#add-address .main input[type=submit],
#edit-address .main input[type=submit]{
	float:right
}

/* POPUP BILL */
#bill-detail {
	background: #fff;
	text-align: left;
	margin: 40px auto;
	width:50%;
	position: relative;
	overflow:hidden
}

/* NEW CART */
.new-cart label.css-label {
	background: url(../images/radio.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.new-cart input[type=checkbox].css-checkbox {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

.new-cart input[type=checkbox].css-checkbox + label.css-label-checkbox {
    padding-left: 25px;
    height: 20px;
    display: inline-block;
    line-height: 21px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 13px;
    vertical-align: middle;
    cursor: pointer;
    margin: 10px 0px;
    width: 100%;
    font-weight: bold
}
.new-cart input[type=checkbox].css-checkbox:checked + label.css-label-checkbox {
	background-position: 0 -20px;
}
.new-cart .css-label-checkbox {
	background-image: url(../images/checkbox.png)
}

.new-cart a.btn-big {
  color: #fff;
  font-size: 14px;
  background: #333;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.new-cart ul.cart-list{
	margin:40px 0px;
}

.new-cart ul.cart-list li {
  display: table;
  width: 100%;
  float: left;
  color: #000;
  border-bottom: 1px solid #dddddd;
}
.new-cart ul.cart-list li.cart-empty{
	padding: 10px 0px;
	font-weight: bold;
	text-align: center;
	font-size: 13px
}
.new-cart ul.cart-list li.thead {
  background: #464b59;
  color: #fff;
}

.new-cart ul.cart-list li.thead div {
  font-size: 12px;
  color: #fff;
  padding: 15px;
  text-align: center;
  display: table-cell;
  text-transform: uppercase;
  font-weight: bold
}

.new-cart ul.cart-list li.tbody {
  color: #333;
  border-right: 1px solid #e7e8e8;
  border-left: 1px solid #e7e8e8;
  font-size: 12px;
}

.new-cart ul.cart-list li.tbody div {
  padding: 15px;
  border-right: 1px solid #e7e8e8;
  text-align: center;
  vertical-align: middle;
  display: table-cell
}
.new-cart ul.cart-list li.tbody div.product_attr.cart_attr{
	padding: 0px;
    display: table;
    border-right: 0px
}
.new-cart ul.cart-list li.tbody div.product_attr.cart_attr ul{
	text-align: left
}
.new-cart ul.cart-list li.tbody div.product_attr.cart_attr ul li{
	border-bottom: 0
}
.new-cart ul.cart-list li.tbody div.product_attr.cart_attr ul li p{
	width: 100%
}
.new-cart ul.cart-list li.tbody div.product_attr.cart_attr ul li p small{
	font-weight: normal
}
.new-cart ul.cart-list li.tbody div.product_attr.cart_attr ul li p.name_group{
	margin-left: 0px;
	width: 100%
}
.new-cart ul.cart-list li.tbody div.cart-product-info{
	padding: 0px 0px 0px 15px;
	font-weight: bold;
	border: none;
	text-align: left;
}
.new-cart ul.cart-list li.tbody div .select-wrap {
  padding: 0px;
  border: none;
  margin-bottom: 10px;
  display: block;
}

.new-cart ul.cart-list li.tbody div .select-wrap select {
  border: 1px solid #eee;
  padding: 8px;
}

.new-cart ul.cart-list li.tbody input[type="text"] {
  width: 50px;
  height: 30px;
  border: 1px solid #eee;
  text-align: center
}

.new-cart ul.cart-list li.tbody div.price {
  font-weight: bold;
  color: #159ec6;
  font-size: 12px;
}

.new-cart ul.cart-list li.tbody div.total {
  font-size: 14px;
  font-weight: bold;
  color: #F33308;
}

.new-cart ul.cart-list li.tbody.all-total .price {
  background: #eee;
  color: #48595e;
  text-transform: uppercase;
}

.new-cart ul.cart-list li.tbody.all-total .total {
  font-size: 16px;
  background: #eee;
}

.new-cart ul.cart-list li.tbody.all-total .note-cart {
  text-align: left;
}

.new-cart ul.cart-list li.tbody.all-total .note-cart p.note-tit {
  background: #333;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
}

.new-cart ul.cart-list li.tbody.all-total .note-cart section.note-ctn {
  margin: 10px 0 0;
}

.new-cart ul.cart-list li.tbody.all-total .note-cart section.note-ctn p {
  padding: 5px 0 5px 15px;
  position: relative;
}

.new-cart ul.cart-list li.tbody.all-total .note-cart section.note-ctn p:before {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #333;
  font-size: 14px;
  padding-right: 0.5em;
  position: absolute;
  top: 4px;
  left: 0;
}

.new-cart ul.cart-list li.tbody.bot-cart {
  border: 1px solid #eee;
  background: #f4f4f4;
  margin-top: 30px;
}

.new-cart ul.cart-list li.tbody.bot-cart div {
  border: none;
  display: inherit;
  text-align: left;
  padding: 10px 5px;
}

.new-cart ul.cart-list li.tbody.bot-cart i {
  color: #333;
  font-size: 30px;
  float: left;
  margin: 15px 15px 10px 15px;
}

.new-cart ul.cart-list li.tbody.bot-cart .bot-info {
  line-height: 22px;
}

.new-cart ul.cart-list li.tbody.bot-cart .bot-info b {
  font-size: 14px;
  color: #F33308;
}

.new-cart ul.cart-list li.tbody.bot-cart a {
	padding: 15px 25px;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	float: right;
	margin-left: 10px;
	margin-top: 8px;
	margin-right: 10px;
	transition: background-color .5s ease-out;
	-o-transition: background-color .5s ease-out;
	-moz-transition: background-color .5s ease-out;
	-webkit-transition: background-color .5s ease-out
}

.new-cart ul.cart-list li.tbody.bot-cart a.back-web {
  background: #333;
}

.new-cart ul.cart-list li.tbody.bot-cart a.cont-cart {
  background: #503b4b;
}

.new-cart ul.cart-list li.tbody.bot-cart a:hover {
  background: #333;
}

.new-cart ul.cart-list li div span {
  display: none;
}

.new-cart ul.cart-list li a.del-pd {
  background: #eee;
  padding: 10px 15px;
  text-align: center;
  display: inline-block;
}

.new-cart ul.cart-list li a.del-pd i {
  color: #fe6d4c;
  font-weight: bold;
  font-size: 14px;
}

.new-cart ul.cart-list li a.del-pd:hover {
  background: #ccc;
}

.new-cart ul.cart-list li a.del-pd:hover i {
  color: #fff;
}

.new-cart ul.cart-list li div.name {
  text-align: left;
  width: 45%;
}

.new-cart ul.cart-list li div.name div.frame-img {
  border: 5px solid #eee;
  padding: 0;
  height: 100px;
  display: inline-block;
  overflow: hidden;
  float: left
}

.new-cart ul.cart-list li div.name p {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
  font-weight: bold;
  color: #666;
}

.new-cart ul.cart-list li div.color {
  width: 11%;
}

.new-cart ul.cart-list li div.unit-price {
  width: 10%;
}

.new-cart ul.cart-list li div.action {
  width: 5%;
}

.new-cart ul.cart-list li div.price {
  width: 12%;
}

.new-cart ul.cart-list li div.total {
  width: 12%;
}

.new-cart ul.cart-list li div.note-cart {
  width: 61%;
}

.new-cart ul.cart-list li div.select-all {
  border: none;
}

.new-cart .stepcart {
  font-size: 12px
}

.new-cart .stepcart ul.nav-tabs {
  clear: both;
  overflow: hidden;
  border: 1px solid #e7e8e8;
  border-bottom: none;
}

.new-cart .stepcart ul.nav-tabs li {
  width: 50%;
  margin: 0;
  border: none
}

.new-cart .stepcart ul.nav-tabs li:hover {
  background: none;
}

.new-cart .stepcart ul.nav-tabs li a {
	border-radius: 0;
	margin: 0;
	padding: 8px;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	background: #f4f4f4;
	border-bottom: 1px solid #e7e8e8;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: bold;
	color: inherit;
}

.new-cart .stepcart ul.nav-tabs li.active > a, 
.new-cart .stepcart ul.nav-tabs li.active > a:focus, 
.new-cart .stepcart ul.nav-tabs li.active > a:hover {
	border-top: 3px solid #333;
	background: #fff;
	border-bottom: none;
	border-left: none;
	border-right: none;
	color: #333
}

.new-cart .stepcart ul.nav-tabs li a:hover {
	background: #fff;
	border-top: 1px solid #fff;
	border-left: none;
	border-right: none;
	border-bottom:1px solid #fff;
	color: #333
}
.new-cart .stepcart .tab-content {
  clear: both;
  overflow: hidden;
  border: 1px solid #e7e8e8;
  border-top: none;
  padding: 20px;
}

.new-cart .stepcart .clearfix {
  clear: both;
  overflow: hidden;
}
.new-cart .stepcart .clearfix.login_msg,
.new-cart .stepcart .clearfix.regis_msg{
	text-align: center;
	overflow: hidden;
	display: block;
	margin: 0px 15px;
	padding: 5px;
	color: #fff;
	display: none
}
.new-cart .stepcart .clearfix.regis_msg{
	margin-bottom: 10px
}
.new-cart .stepcart .clearfix.login_msg.success,
.new-cart .stepcart .clearfix.regis_msg.success{
	background-color: #20c064;
	display: block
}
.new-cart .stepcart .clearfix.login_msg.error,
.new-cart .stepcart .clearfix.regis_msg.error{
	background-color: #fb544e;
	display: block
}
.new-cart .stepcart .row-form {
  padding: 10px 0;
  position: relative;
}

.new-cart .stepcart .row-form input[type="text"], 
.new-cart .stepcart .row-form input[type="password"] {
  height: 40px;
  padding: 5px;
  border: 1px solid #eee;
  width: 100%;
  margin:0px;
}

.new-cart .stepcart .row-form label {
  font-weight: normal;
  line-height: 40px;
}

.new-cart .stepcart .row-form input[type="submit"] {
	text-align: center;
	padding: 15px 0;
	color: #fff;
	text-transform: uppercase;
	border: none;
	width: 100%;
	transition: background-color .5s ease-out;
	-o-transition: background-color .5s ease-out;
	-moz-transition: background-color .5s ease-out;
	-webkit-transition: background-color .5s ease-out;
	border: 0px
}

.new-cart .stepcart .row-form input[type="submit"]:hover {
  background: #333;
}

.new-cart .stepcart .row-form span.warning {
  position: absolute;
  top: 12px;
  right: 0;
  color: red;
  font-size: 14px;
}

.new-cart .stepcart .row-form p.txt-note {
  border-top: 1px dashed #e1e1e1;
  padding-top: 20px;
  text-align: center
}

.new-cart .stepcart .row-form p.txt-note a {
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline
}
.new-cart .stepcart .row-form p.txt-note a:hover{
	color: #333
}
.new-cart .stepcart .social-reg {
  background: #f4f4f4;
  margin: 10px auto;
  padding: 40px 30px;
}

.new-cart .stepcart .social-reg p {
  padding-bottom: 10px;
}

.new-cart .stepcart .social-reg a {
  display: block;
  margin-bottom: 10px;
  color: #fff
}

.new-cart .stepcart .social-reg a:hover {
  text-decoration: none;
}

.new-cart .stepcart .social-reg a.face-reg {
  background: #2b467c;
}

.new-cart .stepcart .social-reg a.face-reg i {
  background: #34518d;
}

.new-cart .stepcart .social-reg a.goo-reg {
  background: #b53311;
}

.new-cart .stepcart .social-reg a.goo-reg button {
    background: #d34b1f;
    outline: none;
    border: none;
    display: block;
    width: 100%;
    padding: 0;
}

.new-cart .stepcart .social-reg a.goo-reg i {
  background: #cd3e18;
}

.new-cart .stepcart .social-reg a.goo-reg:hover {
  background: #982304;
}

.new-cart .stepcart .social-reg a i.fa {
    padding: 14px 18px;
    float: left;
    color: #fff;
    font-size: 17px;
    width: 50px;
    text-align: center
}
.new-cart .stepcart .social-reg a span{
	    color: #fff;
    padding: 12px 10px 12px 10px;
    display: table;
    text-align: center;
    font-weight: bold;
    margin: 0 auto;
}
.new-cart .stepcart .cart-right .tit {
  background: #464a60;
  color: #fff;
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.new-cart .stepcart .cart-right .ctn-info {
  border: 1px solid #eee;
  padding: 15px;
}

.new-cart .stepcart .cart-right .ctn-info p {
	font-weight: bold;
	line-height: 16px;
	font-size: 13px;
	padding-top: 10px
}

.new-cart .stepcart .cart-right .ctn-info ul {
	padding: 10px 0;
	border-bottom: 1px dotted #e1e1e1;
	clear: both;
	overflow: hidden
}

.new-cart .stepcart .cart-right .ctn-info ul:last-child{
	border-bottom: none;
	padding: 10px 0 0
}

.new-cart .stepcart .cart-right .ctn-info ul li span {
	color: #333;
	font-size: 12px;
	display: inline-block;
	width: 100px
}

.new-cart .stepcart .cart-right .ctn-info ul li span.title-total {
	display: inline-block;
	font-size: 14px;
	color: #F33308;
	font-weight: bold;
	text-transform: uppercase
}

.new-cart .stepcart .cart-right .ctn-info ul li strong.big-total{
	color: #F33308;
	font-size: 15px
}

.new-cart .stepcart .cart-right .ctn-info ul li strong.total{
	color: #159ec6
}

.new-cart .stepcart .reg-form {
  clear: both;
  overflow: hidden;
  margin-bottom: 15px;
}

.new-cart .stepcart .reg-form .row-form {
  padding: 5px 0;
}

.new-cart .stepcart .reg-form .row-form label {
  line-height: 35px;
}

.new-cart .stepcart .reg-form .row-form select {
  width: 100%;
  padding: 12px 0px;
  border: 1px solid #eee;
  margin: 0
}

.new-cart .stepcart .reg-form .row-form.radio-form {
  padding: 0;
}

.new-cart .stepcart .reg-form p.tit {
  color: #159ec6;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.new-cart .stepcart .reg-form input[type="radio"] {
  display: none;
}

.new-cart .stepcart .reg-form input[type="radio"] + label span {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background: url(../images/radio-btn.png) 0 0 no-repeat;
  cursor: pointer;
  margin-right: 10px;
}

.new-cart .stepcart .reg-form input[type="radio"]:checked + label span {
  background: url(../images/radio-btn.png) 0 -18px no-repeat;
}

.new-cart .stepcart .reg-form input[type="radio"]:checked + label {
  color: #159ec6;
  font-weight: bold;
  cursor: pointer;
}

.new-cart .stepcart .reg-form .content-pay {
  background: #f4f4f4;
  margin: 5px 0;
  border-left: 4px solid #159ec6;
  padding: 10px 15px;
  clear: both;
  overflow: hidden;
}

.new-cart .stepcart .reg-form .content-pay i.fa {
  font-size: 60px;
  color: #e6e7e8;
  margin: 10px 20px 0 0;
}

.new-cart .stepcart .reg-form .content-pay p {
  padding: 5px 0;
  margin: 0;
}

.new-cart .stepcart .reg-form .content-pay .list-info {
  float: left;
}

.new-cart .stepcart .reg-form .content-pay .list-info strong {
  line-height: 16px;
}

.new-cart .stepcart .reg-form .btn-buy {
  clear: both;
  overflow: hidden;
  padding-top: 20px;
  border-top: 1px dashed #e1e1e1;
}

.new-cart .stepcart .reg-form .btn-buy input.buypd[type="submit"] {
  width: inherit;
  padding: 15px 30px
}

.new-cart .stepcart .reg-form .btn-buy a.backcart,
.new-cart .stepcart .cart-left a.backcart_login_form,
.new-cart .stepcart .cart-left a.backcart {
  padding: 15px 30px;
  background: #333;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  margin-left: 10px;
  cursor: pointer
}

.new-cart .stepcart .reg-form .btn-buy a.backcart:hover,
.new-cart .stepcart .cart-left a.backcart_login_form:hover,
.new-cart .stepcart .cart-left a.backcart:hover {
  background: #333;
}


.new-cart .stepcart .cart-left {
  border: 1px solid #eee;
  clear: both;
  overflow: hidden;
  padding: 30px 10px;
}

.new-cart .stepcart .cart-left .chose-add p {
  margin-bottom: 8px;
  font-weight: bold;
}

.new-cart .stepcart .cart-left .chose-add .more-add {
  background: #159ec6;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 20px;
  border: none;
  margin: 10px 0;
}

.new-cart .stepcart .cart-left .chose-add .more-add:hover {
  background: #333;
}

.new-cart .stepcart .cart-left input[type="submit"] {
	text-align: center;
	padding: 15px;
	color: #fff;
	text-transform: uppercase;
	border: none;
	width: auto;
	transition: background-color .5s ease-out;
	-o-transition: background-color .5s ease-out;
	-moz-transition: background-color .5s ease-out;
	-webkit-transition: background-color .5s ease-out
}

.new-cart .stepcart .cart-left input[type="submit"]:hover {
  background: #333;
}

.new-cart .stepcart .cart-left .small-btn {
  margin: 10px 0;
}

.new-cart .stepcart .cart-left .small-btn input[type="submit"] {
  width: 20%;
}

.new-cart .stepcart .cart-left .small-select select {
  width: 30%;
}

.new-cart .stepcart .cart-left .add-orther {
  background: #f4f4f4;
  padding: 15px;
  margin-bottom: 20px;
}

.new-cart .stepcart .cart-left .add-orther p {
  padding: 5px 0;
}

.new-cart .stepcart .cart-left .add-orther p span{
	width: 100px;
	font-weight: bold;
	display: inline-block
}
.new-cart .stepcart .cart-left .add-orther p.note{
    background-color: #fff;
    padding: 10px;
    font-style: italic;
    color: #717171;
    font-size: 13px
}

.new-cart .stepcart .cart-left .add-orther p.note i{
	font-style: italic
}
.new-cart .stepcart .cart-left p.guest-txt {
  padding: 5px 0;
}

.new-cart .stepcart .cart-left p.guest-txt a {
	font-weight: bold;
	cursor: pointer;
	text-decoration: underline
}

.new-cart .stepcart .cart-left ul.info-wrap {
	background: #f4f4f4;
	padding: 20px;
	margin: 10px 0;
}

.new-cart .stepcart .cart-left ul.info-wrap li {
	padding: 8px;
	font-weight: bold;
}

.new-cart .stepcart .cart-left ul.info-wrap li span {
	width: 100px;
	float: left;
	font-weight: normal;
}

/* LOADING PROCESSING */
.spinner {
  margin: 0px auto 5px auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#small-dialog4 .content_loading{
	font-weight: bold;
	text-align: center
}

#small-dialog4 .mfp-close{
	display: none
}

/*print*/
@media print {
a[href]:after {
content: "";
}
}
/*print*/