@charset "utf-8";

:root {
	--theme-color: #7C1ED9;
	--theme-color-light: #9932FC;
}

* {
  color: #000;
	font-size: 14px;
  font-family: Poppins;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
          -webkit-text-size-adjust: 100%;
}

html {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body {
  display: inline-block;
  position: relative;
  min-width: 1200px;
  width: 100%;
  min-height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
  background-size: contain;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
div, span, p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
p {
  padding: 0;
  margin: 0;
  float: left;
}
img {
  width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: underline;
}
a, span, i, b, u, strong, strike, sup, sub {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}
.noselect,.no-select {
	-webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */   
}

input {
  display: inline-block;
	width: auto;
  height: 45px;
  padding: 6px 12px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
	background-color: #FFF;
  border: none;
	border-radius: 3px;
  transition: all ease-in-out .2s;
}
input:disabled {
	cursor: not-allowed;
}
select {
  display: inline-block;
	width: auto;
  height: 45px;
  padding: 6px 12px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
  background-color: #FFF;
  background-image: url('/image/icon-dropdown.png');
  background-size: auto 10px;
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
  border: none;
	border-radius: 3px;
  cursor: pointer;
  transition: all ease-in-out .2s;
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}
select:invalid {
	color: #9e9e9e;
}
select:invalid option {
	color: var(--theme-color-grey);
}
textarea {
  display: inline-block;
	width: auto;
  height: 240px;
  padding: 12px 12px;
  color: var(--theme-color-grey);
  font-size: 14px;
  text-align: left;
	background-color: #FFF;
	border-radius: 3px;
	resize: none;
  transition: all ease-in-out .2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--theme-color-light);
}

::-moz-selection { /* Code for Firefox */
  background: #9932FC; 
  color: #fff;
}
::selection {
  background: #9932FC; 
  color: #fff;
}
::-webkit-input-placeholder {
   color: #CCC;
}
:-moz-placeholder { /* Firefox 18- */
   color: #CCC;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #CCC;  
}
:-ms-input-placeholder {  
   color: #CCC;  
}
input:focus::-webkit-input-placeholder {
   color: var(--theme-color-light);
}
input:focus:-moz-placeholder { /* Firefox 18- */
   color: var(--theme-color-light);
}
input:focus::-moz-placeholder {  /* Firefox 19+ */
   color: var(--theme-color-light);
}
input:focus:-ms-input-placeholder {  
   color: var(--theme-color-light);
}


button {
  display: inline-block;
  vertical-align: middle;
  padding: .5em 1.5em .5em 1.5em;
  color: #FFF;
  font-size: 12px;
  text-align: center;
	text-transform: uppercase;
  white-space: nowrap;
  background-color: var(--theme-color);
  background-size: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
  -webkit-appearance: value;
  -moz-appearance:    value;
  appearance:         value;
  transition: all ease-in-out .2s;
}
button:hover {
  background-color: var(--theme-color);
  box-shadow: 0 0 6px rgba(0, 0, 0, .4);
}
button.s {
  padding: .4em 1.2em .3em 1.2em;
  font-size: 12px;
  background-size: 12px;
}
button.load {
	color: rgba(0, 0, 0, 0);
	background-image: url('/image/load.gif');
	cursor: not-allowed;
}
button:disabled {
	color: #9e9e9e;
	cursor: not-allowed;
}

section {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 60px 0;
}
section .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
section .title {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
	color: #000;
	font-size: 36px;
	font-weight: 700;
	text-align: left;
}
section .list {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.row {
  display: inline-block;
  width: 100%;
}
i.empty {
  display: inline-block;
  width: 100%;
  padding: 30px 0;
  color: #8d8d8d;
  font-size: 14px;
  text-align: left;
}
.form-warn {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  color: #F00;
  font-size: 12px;
  text-align: left;
}

nav.menu {
	display: inline-flex;
  position: relative;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 75px;
  padding: 10px 30px;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  z-index: 1;
}
nav.menu .nav-dropdown {
	display: inline-block;
	width: auto;
	height: 30px;
	margin-right: auto;
  cursor: pointer;
}
nav.menu .nav-dropdown img {
	display: inline-block;
  width: auto;
  height: 100%;
}
nav.menu .menu-item {
	display: inline-block;
	padding: 0 30px;
  color: #FFF;
  font-size: 18px;
  cursor: pointer;
}
nav.menu .menu-item:hover {
  text-decoration: underline;
}
nav.menu .nav-right {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
nav.menu .nav-home-btn {
  padding: 7px 15px;
  padding-left: 40px;
  border: 2px solid #7C1ED9;
  border-radius: 5px;
  color: #7C1ED9;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  background-image: url("../image/nav-home-btn.png");
  background-size: auto 15px;
  background-position: 12px center;
  background-repeat: no-repeat;
  cursor: pointer;
}
nav.menu .nav-account {
  display: inline-flex;
  margin-left: 15px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
nav.menu .nav-account .img {
  display: inline-block;
  background-size: auto 20px;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid #eee;
}
nav.menu .nav-account .dropdown {
  display: inline-block;
  background-size: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 5px;
}
nav.menu .popup-menu {
  display: none;
}
nav.mobile-menu {
  display: none;
  width: 100%;
  height: 60px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
nav.mobile-menu .nav-dropdown {
  display: inline-block;
  width: auto;
  height: 30px;
  margin-right: auto;
  padding-left: 20px;
  cursor: pointer;
}
nav.mobile-menu .nav-dropdown img {
  display: inline-block;
  width: auto;
  height: 100%;
}
nav.mobile-menu .nav-home-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding-right: 15px;
}
nav.mobile-menu .nav-home-btn img {
  background-size: auto 15px;
  background-position: center center;
  background-repeat: no-repeat;
}

.drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  z-index: 10;
}
.drawer .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  padding: 0 30px;
  background-color: #FFF;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
  overflow-x: hidden;
  overflow-y: auto;
}
.drawer .logo {
  display: inline-block;
  width: 100%;
  height: auto;
  margin-top: 40px;
  margin-bottom: 20px;
}
.drawer .menu-item {
  display: inline-flex;
  width: 100%;
  padding: 10px 0;
  color: #000;
  font-size: 14px;
  text-align: left;
}
.drawer .close {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-image: url('/image/icon-close.png');
  background-size: auto 16px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.product-thumb {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 24%;
  margin-right: 1.3333%;
  margin-bottom: 20px;
  cursor: pointer;
}
.product-thumb .thumbnail {
  display: inline-block;
  width: 100%;
  padding-top: 100%;
  background-color: #FFF;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
  transition: box-shadow ease-in-out .2s;
}
.product-thumb:hover .thumbnail {
	box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}
.product-thumb .detail {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 18px;
  padding: 0 8px;
}
.product-thumb .brand {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-thumb .name {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-block {
	display: inline-flex;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
}
.blog-block .overlay {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .2);
	transition: background-color ease-in-out .2s;
}
.blog-block:hover .overlay {
	background-color: rgba(0, 0, 0, .6);
}
.blog-block .name {
	color: #FFF;
	font-size: 36px;
	font-weight: 700;
}


/* Smartphones (portrait) */
@media only screen and (max-width: 480px) {
  body {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  nav.menu {
    display: none;
  }
  nav.mobile-menu {
    display: inline-flex;
  }
  section[name=cover] {
    margin-top: 60px;
  }
}

/* Smartphones (Landscape) / Tablet (portrait) */
@media only screen and (min-width: 481px) and (max-width: 800px) {
  body {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  nav.menu {
    display: none;
  }
  nav.mobile-menu {
    display: inline-flex;
  }
  .page {
    padding-top: 60px;
  }
  section[name=cover] {
    margin-top: 60px;
  }
}

/* Tablet (Landscape) */
@media only screen and (min-width: 801px) and (max-width: 1200px) {
  body {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  nav.menu {
    display: none;
  }
  nav.mobile-menu {
    display: inline-flex;
  }
  .page {
    padding-top: 60px;
  }
  section[name=cover] {
    margin-top: 60px;
  }
}

/* Laptop */
@media only screen and (min-width: 1201px) and (max-width: 1600px) {
	
}

/* Desktop */
@media only screen and (min-width: 1601px) {
  
}