@charset "utf-8";

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 1px 0px 3px #dedede;
  border-radius: 0;
  background-color: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #6f7777 0%, #56656e 100%); /* W3C */
  opacity: 0.7;
  border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  box-shadow: 0px 0px 1px 0px #be8329, 0px 0px 23px 0px #aaaaaa,
    0px 0px 23px 0px #be8329;
  background: linear-gradient(to bottom, #809394 0%, #3d525f 100%); /* W3C */
  background: #000;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset -1px 1px 3px #cdcdcd;
  border-radius: 0px;
  background-color: #ffffff;
}
body::-webkit-scrollbar-thumb {
  box-shadow: none;
  background: linear-gradient(to bottom, #809394 0%, #3d525f 100%); /* W3C */
  opacity: 0.7;
  border-radius: 0px;
}


input[type="checkbox"],
input[type="radio"] {
  border: none;
  width: inherit !important;
}
input::placeholder,
textarea::placeholder {
  color: #aaaaaa;
  /*font-family: arial, chinese;*/
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
}
select {
  padding-right: 4px;
}

textarea {
  resize: none;
  overflow: auto;
  min-height: 100px;
  width: 100%;
}
input.fullw {
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: inset 0px 1px 0px #bababa, inset 0px 2px 4px #cdcdcd,
    inset 0px -1px 0px #e2e2e2, 0px 1px 3px #eaeaea;
  background-color: #ffffff;
  color: #222222;
}
input:not(:placeholder-shown):not(:focus),
textarea:not(:placeholder-shown):not(:focus) {
  color: #888888;
}
form {
  margin: 0px;
}
.enabled {
  max-height: 100px;
  padding: 0px !important;
  opacity: 1;
}

.hidden {
  max-height: 0px !important;
  overflow: hidden !important;
  padding: 0px !important;
  margin: 0px !important;
  opacity: 0 !important;
}
.hidden.block {
  display: block;
  font-size: 0px;
}

.readonly {
  pointer-events: none;
}
img {
  border: 0px;
}

/* a link ////////////////////////////////////////////*/
a:link,
a:visited,
a:active {
  color: #222222;
  text-decoration: none;
}
footer a:link,
a:visited,
a:active {
  color: #ffffff;
  text-decoration: none;
}
.blog_detail_text a:link,
a:visited,
a:active {
  color: #222222;
  text-decoration: underline;
}
a:hover {
  color: #222222;
  text-decoration: none;
}
/* a link end////////////////////////////////////////////*/

*[disabled],
.disabled {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: default !important;
  position: relative !important;
}

.brand_overview .but_general {
  display: none;
}
.flex > div {
  margin-right: 3px;
}
.flex > div:nth-last-of-type(1) {
  margin-right: 0px;
}

.float_r {
  margin-left: 5px;
  float: right;
}
.float_l {
  margin-right: 5px;
  float: left;
}
.clear {
  clear: both;
}

.form_remark_box {
  display: table;
  border-radius: 5px;
  padding: 8px 15px;
  margin-bottom: 15px;
  font-size: 13px;
  background-color: #30383b;
  color: #ffffff;
}

.debug_box * {
  width: 70%;
  overflow: auto;
  white-space: break-spaces;
  box-shadow: 0px 0px 0px 1px #dedede;
  padding: 20px;
  font-family: arial;
  font-size: 11px;
  background-color: #333333;
  color: #00ffd0;
  margin: 0px;
  margin-bottom: 5px;
}

.tagbox {
  z-index: 10001;
  position: absolute;
  background-color: #ffffff;
  font-family: "PingFang", "微軟正黑體", Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #333;
  opacity: 0;
  padding: 10px 20px;
  text-align: left;
  font-size: 12px;
  border: 1px solid #dedede;
  border: 1px solid #528681;
  border: 1px solid #aaaaaa;
  box-shadow: 0px 0px 5px #dedede;
  transition: left 0s, top 0.5s;
  pointer-events: none;
}

.sys_msg_box {
  position: fixed;
  text-align: center;
  opacity: 0;
  margin: auto;
  /*
	width:100%;
	height:100%;
	*/
  z-index: 100002;
  display: flex;
  visibility: hidden;
  top: 100px;
  left: 50%;
  height: 50%;
  -webkit-font-smoothing: antialiased;
  transform: translateX(-50%);
  /*font-family: "Montserrat", "Noto Sans SC", chinese;*/
  font-family: 'Poppins', sans-serif;
}
.sys_msg_box.active {
  visibility: visible;
  opacity: 1;
  top: 50px;
}

.sys_msg_box.active > div {
  padding: 30px 80px;
}

.sys_msg_box > div {
  text-align: center;
  border-radius: 5px;
  background-color: rgba(21, 0, 84, 0.95);
  background-color: rgba(5, 75, 90, 0.95);
  /* background: #6e8a85; */
  /* background: linear-gradient(to bottom, #a5923c 0%, #cbbb72 100%); */
  /* background: rgb(198,165,99); */
  /* background: linear-gradient(0deg, rgba(198,165,99,1) 0%, rgba(188,151,76,1) 100%); */
  background: #F39708;
  box-shadow: 0px 2px 2px rgb(0 0 0 / 30%);
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  padding: 0px;
  margin: auto;
  line-height: auto;
  line-height: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0;
  font-weight: 300;
  border: 1px solid #F39708;
}
#sys_msg > div {
  padding: 5px 0px;
}

.ui_header_logo_box {
  border: 1px dashed #dedede;
}
.material-icons {
  /*line-height:0!important;*/
}

.enquiry_container {
  display: flex;
  flex-wrap: wrap;
}

.enquiry_container > div {
  margin: auto;
  margin-top: 0px;
  margin-bottom: 10px;
  padding: 0px 0px;
  vertical-align: top;
  box-sizing: border-box;
  /*margin-right:20px;*/
  flex: 1 1 48%;
  flex: 1 1 100%;
}
.enquiry_container > div:nth-last-child(1) {
  margin-bottom: 0px;
  margin-right: 0px;
}

.account_icon_container {
  position: relative;
}
.account_icon_container > div {
  padding-left: 0px !important;
}
.account_setting_navbox {
  width: inherit !important;
  position: absolute;
  padding: 0px !important;
  border-radius: 5px;
  box-shadow: 0px 0px 0px 0.5px #dedede;
  background-color: #ffffff;
  right: 0px;
  overflow: hidden;
  opacity: 0;
  max-height: 0px;
}
.account_setting_navbox.active {
  opacity: 1;
  max-height: 200px;
}
.account_setting_navbox > div {
  white-space: nowrap;
  padding: 13px 25px;
  font-size: 13px;
}

.account_setting_navbox > div:hover {
  background-color: #397575;
  color: #ffffff;
}
.account_logo {
  margin: auto;
  display: table;
  margin-top: 30px;
  margin-bottom: 10px;
}
.account_logo img {
  max-width: 180px;
  max-height: 100px;
}

.account_logo.sys {
  margin-top: 0px;
  margin-bottom: 15px;
}
.account_logo.sys img {
  max-width: 150px;
  max-height: 150px;
}

.enquiry_agreement {
  padding: 10px 20px;
  font-size: 11px;
  line-height: 16px;
  border-radius: 5px;
  background-color: #557372;
  color: #ffffff;
  margin-bottom: 15px;
}

.locator_box {
  display: none;
  font-size: 11px;
  text-align: left;
  padding: 10px 20px !important;
  position: absolute;
}
.locator_box.active {
  display: block;
}
.locator_box > div {
  display: inline-block;
  vertical-align: top;
  line-height: 15px;
  color: #555555;
  height: 15px;
}
* html .locator_box > div {
  display: inline;
}
* + html .locator_box > div {
  display: inline;
}
.locator_box .home {
  background: url(../../../../images/icon/home.png) no-repeat left center;
  width: 20px;
}
.locator_box > div:nth-child(n + 3) {
  background: url(../../../../images/icon/arrow.png) no-repeat left center;
  padding-left: 15px;
  margin-left: 10px;
}

.listing:empty {
  box-shadow: none;
  border-top: 1px solid #e6e6e6;
  position: relative;
}
.listing:empty::before {
  content: attr(data-no-item);
  text-align: center;
  display: table;
  width: 100%;
  left: 0px;
  right: 0px;
  padding: 10px;
  color: #999;
  font-size: 16px;
}

*[disabled],
.disabled {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: default !important;
  position: relative !important;
}
*[disabled] + div.note {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  position: absolute !important;
  cursor: default !important;
  background: none !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}

.datasec_container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.datasec_container > div {
  flex: 1 1 auto;
  margin: 0px 10px;
  vertical-align: top;
}
.datasec_container > div:nth-child(1) {
  flex-grow: 8;
}

.datasec_container.setting {
  flex-wrap: nowrap;
}
.datasec_container > div > div {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 0px solid #efefef;
  box-shadow: 0px 0px 5px #efefef;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  border-top: 1px solid #e9f0ef;
}
.datasec_container .table_form {
  margin: 0px;
}
.datasec_container .setting_unit {
  padding: 0px;
  margin-bottom: 10px;
}
.datasec_container .setting_unit:hover > div:nth-child(1) {
  border-color: #333;
  border-width: 1px;
  box-shadow: 0px 1px 0px #29a09a, 0px 2px 1px #dff90a;
}

.datasec_container .setting_unit > div:nth-child(1) {
  box-shadow: 0px 1px 1px #b7d0cf;
}
.datasec_container .setting_unit > div:not(.action_box) {
  padding: 10px;
  margin-bottom: 0px;
}
.datasec_container > div > div:hover {
  box-shadow: 0px 0px 5px #efefef, 0px 1px 0px 1px #dedede,
    0px 0px 0px 1px #81e9de;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid #81e9de;
}
.datasec_container > div > div > div {
  margin-bottom: 8px;
}
.datasec_container > div > div > div:nth-last-child(1) {
  margin-bottom: 0px !important;
}
.datasec_container > div > div > div:nth-of-type(1) {
  font-size: 16px;
  padding: 0px 0px 0px;
  color: #3d5452;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Montserrat", "PingFang", "微軟正黑體", "Lucida Sans Unicode",
    "Lucida Grande", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
.datasec_container.setting.controller > div > div {
  margin-bottom: 10px !important;
  border-top: 2px solid #d3e8e5;
  border-top: none;
  border-left: 2px solid #d3e8e5;
  border-right: 0px;
}

.datasec_container.setting.controller > div > div:hover {
  border-top: 2px solid #0cf5df;
  box-shadow: 0px 0px 5px #efefef, 0px 1px 0px 1px #dedede,
    inset 0px 1px 0px #07a08b;

  border-right: 3px solid #0cf5df !important;
  border-top: none !important;
  border-left: 0px !important;
  border: none !important;
  box-shadow: 0px 0px 5px #efefef, 0px 0px 0px 1px #dedede,
    inset 1px 0px 0px #07a08b;
  box-shadow: 0px 0px 5px #efefef, 0px 0px 0px 1px #dedede,
    inset 0px 0px 0px #07a08b, 0px 0px 0px 3px #a9e4df;
  border: 1px solid #71bbbb !important;
  /*box-shadow:0px 0px 0px 3px #a9e4df!important;*/
}
.datasec_container.setting.controller > div > div:nth-last-of-type(1) {
  margin-bottom: 0px !important;
}
.datasec_container.setting > div > div > div:nth-of-type(1) {
  color: #003a2a;
  font-weight: 400;
  align-items: center;
}
.datasec_container > div > div > div:nth-of-type(1) > div:nth-child(1) {
  flex: 1 1 auto;
  margin-right: 10px;
}
.datasec_container > div > div > div:nth-of-type(1) > div:nth-last-of-type(1) {
  margin-right: 0px;
}
.datasec_container .action_box {
  margin-left: 5px;
  font-size: 0px;
}
.datasec_container .action_box > div {
  margin-bottom: 0px !important;
}
.datasec_container .action_box input[type="text"] {
  padding: 4.5px 10px 4px !important;
}
.datasec_container .action_box .option {
  margin-top: -2px;
}

.datasec_container .action_box .option .current {
  padding-top: 4px;
  padding-bottom: 4px;
  min-height: 18px;
}
.datasec_container .action_box .but_general {
  margin-top: -2px !important;
  padding: 4px 10px !important;
  background-color: #888888;
  color: #ffffff;
  box-shadow: none;
}

.datasec_container .action_box .but_general.material-icons,
.action_tab .but_general.material-icons {
  margin-top: -2px !important;
}
/*
.datasec_container .action_box .but_general:not(.control):hover,
.action_tab .but_general:hover {
  margin-top: -2px !important;
}
*/
.datasec_container .action_box .opt_list {
  margin: 0px !important;
  padding: 0px !important;
}
.datasec_container .material-icons {
  font-size: 15px !important;
}
.datasec_container .option,
.datasec_container .option .current {
  width: 100%;
}
.datasec_container .overview {
  padding: 25px 20px !important;
  padding-bottom: 5px !important;
  font-size: 20px;
  display: none;
}
.datasec_container .overview.active {
  display: block;
}
.datasec_nohead_container > div {
  padding: 10px;
}
.datasec_nohead_container > div > div {
  margin-bottom: 10px !important;
}
.datasec_nohead_container > div > div:nth-last-child(1) {
  margin-bottom: 0px !important;
}
.datasec_nohead_container.setup > div {
  padding: 0px !important;
}

.table_form {
  border-collapse: separate;
  border-spacing: 0px;
  margin-bottom: 10px;
  width: 100%;
}
.table_form tr:hover input,
.table_form tr:hover textarea {
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 1px #badad4, inset 0px 1px 2px #dedede,
    inset 0px 1px 0px #dedede;
}
.table_form tr:hover {
  background-color: rgba(235, 235, 235, 0.3);
  background-color: #e9f1f0;
  background-color: #e6f9f6;
  background-color: #bbdcd826;
}
.table_form tr:hover > td,
.table_form > tbody > tr:hover > td:nth-child(1) {
  color: #111111;
}
.table_form td {
  font-size: 11px;
  vertical-align: top;
  color: #999;
}
.table_form > tbody > tr > td {
  padding: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
}
.table_form > tbody > tr > td > div {
  padding: 4px 0px;
  margin-bottom: 4px;
}
.table_form > tbody > tr > td > div:nth-last-child(1) {
  margin-bottom: 0px;
}
.table_form > tbody > tr > td > span {
  padding: 0px 5px;
}
.table_form > tbody > tr:nth-last-child(1) > td {
  border: none;
}
.table_form > tbody > tr > td:nth-child(1) {
  /* first column */
  width: 120px;
  color: #597d86;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  border-radius: 10px 0px 0px 10px;
}
.table_form > tbody > tr > td:nth-child(1) > div {
  position: sticky;
  top: 120px;
  margin-top: 4px;
}
.table_form div.flat {
  padding-top: 0px !important;
  margin-top: 2px !important;
}
.table_form > tbody > tr > td:nth-last-child(1) {
  border-radius: 0px 10px 10px 0px;
}

.table_form.nofix td {
  width: inherit !important;
}
.table_form .nostyle {
  width: inherit;
}
.table_form .nostyle > label {
  width: inherit;
}
.table_form label {
  display: inline-block;
  width: 120px;
  margin-right: 10px;
  vertical-align: top;
  padding: 5px 0px;
}

.table_form label input[type="radio"] {
  float: left;
  margin-top: 0px;
}

* html .table_form label {
  display: inline;
}

* + html .table_form label {
  display: inline;
}

.table_form td > input[type="text"] {
  margin-bottom: 3px;
}

.table_form td > input[type="text"]:nth-last-child(1) {
  margin-bottom: 0px;
}
.table_form td.subsec > div {
  margin-bottom: 10px;
  padding: 0px !important;
  padding-left: 10px !important;
  border-left: 2px solid #a1ddd7;
}
.table_form td.subsec > div:hover {
  border-left: 2px solid #00ac9a;
}
.table_form td.subsec > div:hover > div:nth-of-type(1) {
  background-color: #00ac9a !important;
  color: #ffffff;
}
.table_form td.subsec > div > div:nth-of-type(1) {
  font-size: 11px;
  border-radius: 5px;
  padding: 5px 8px;
  margin-bottom: 5px;
  background-color: #ceecea !important;
  color: #187970;
  display: table;
}
.table_form td.subsec > div > div.data-input {
  margin-bottom: 3px;
}

/* COMPONENT : LOCATION **/
.contact_container {
  display: flex;
  flex-wrap: wrap;
}
.contact_container > div:nth-of-type(2) {
  min-width: 50%;
  max-width: 50%;
}
.location_list {
  min-width: 47% !important;
  max-width: 47%;
  margin-right: 20px;
}
.location_list > div {
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
}
.location_list > div:nth-last-of-type(1) {
  border-bottom: none;
}
.location_list > div > div:nth-last-of-type(1) {
  margin-left: 15px;
}
.location_list > div > div:nth-of-type(1) {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
}
.location_list .material-icons {
  cursor: pointer;
}
.location_list .material-icons:hover {
  color: #198e8e;
}
.location_list .region {
  font-family: "Noto Sans SC", chinese;
  font-size: 15px;
  color: #198e8e;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}
.location_list .region::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px dotted #00b7b7;
  border-bottom: 3px dotted #00b7b7;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}
.location_list .contact_info > div {
  display: flex;
  margin-bottom: 5px;
}
.location_list .contact_info > div > div:nth-of-type(1) {
  width: 60px;
  color: #198e8e;
}

.location_list .address {
  font-family: "Montserrat", chinese;
  margin-bottom: 10px;
  padding-bottom: 10px;
  margin-right: 20px;
  color: #337777;
  font-size: 13px;
  line-height: 16px;
  border-bottom: 0.5px dashed#dedede;
}
/* COMPONENT : LOCATION **/

/* FORM /////////////////////////////////////////*/
.form_colless {
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 10px;
}
.form_colless input,
.form_colless select,
.form_colless textarea {
  width: 100%;
}

.form_colless > div {
  padding: 3px 0px !important;
}
.form_colless > div > div {
  overflow: hidden;
  display: block;
}
.form_colless .flex {
  justify-content: unset !important;
}
/* FORM END ///////////////////////////////////////////*/

/* BUTTON /////////////////////////////////////////////*/
.suggest_item_box .product_list .list_action {
  padding: 10px 0 !important;
}

.list_action {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}
.list_action > div {
  cursor: pointer;
}
.list_action .but_add_cart.buy {
  width: 50px;
  display: block;
}
.list_action .but_delete {
  margin-left: 20px;
}

* html .but_general {
  display: inline;
}
* + html .but_general {
  display: inline;
}
.but_general.full_w {
  display: block;
}
.but_general:hover {
  /*	background:url(../../../../images/but/general_ro.png) no-repeat center center;*/
  /*background-color: #555555 !important;*/
  background-color: #2B363B!important;
	
  box-shadow: 0px 0px 0px 1px #cdcdcd, inset 0px 1px 16px #222222;
  /*
	background:-moz-linear-gradient(center top , #5b095e, #38003a) repeat scroll 0 0 transparent !important;
	background-color:#5b095e;*/
  color: #fff !important;
}
.but_tnc {
  background: none;
  background-color: #dfdfdf;
  color: #242424;
  border: 1px solid #fff;
  border-radius: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-family: "PingFang", "微軟正黑體", Geneva, Arial;
  padding: 8px 50px;
  cursor: pointer;
}
.but_tnc:hover {
  background-color: #a8a8a8 !important;
  box-shadow: 0px 0px 0px 1px #eeeeee, inset 0px 1px 16px #8f8f8f;
}
.but_delete {
  position: relative;
  width: 20px;
  height: 20px;
}
.but_delete::before,
.but_delete::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 3.5%;
  background-color: #333;
}
.but_delete::before {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.but_delete::after {
  right: 50%;
  transform: translateX(50%) rotate(-45deg);
}

/* BUTTON END /////////////////////////////////////////*/

/* OPTION */
.option {
  overflow: initial !important;
  color: #333333;
  position: relative;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  padding: 0px !important;
  min-width: 80px;
  text-align: left;
}
.option > div {
  font-size: 15px;
  line-height: 15px;
}
.option.block {
  display: block;
}
.option.fullw {
  width: 100%;
}
.option.no_w {
  width: inherit;
}
.option.active .current {
  box-shadow: inset 0px 2px 7px #eaeaea, 0px 0px 0px 1px #cdcdcd;
}
.option .current:hover {
  border-color: #e7d343 !important;
  box-shadow: inset 0px 2px 7px #eaeaea, 0px 0px 0px 1px #9e9e9e;
}
.option select {
  display: none;
}
.option .current {
  position: relative;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 6px 15px 5px;
  padding-right: 30px !important;
  box-shadow: inset 0px 0px 0px 1px rgba(100, 100, 100, 0.3);
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 20px;
  cursor: pointer;
  min-width: 100px;
  min-height: 25px;
}
.option .current div,
.option .current {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.option .current:hover:empty::before {
  color: #186e77;
}
.option .current:empty::before {
  content: attr(data-placeholder);
  color: #a6b7b6;
}
.option .current::after {
  border-right: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  content: "";
  display: inline-block;
  padding: 3px;
  transform: translateY(-80%) rotate(45deg);
  top: 50%;
  position: absolute;
  right: 10px;
}
.option .current:hover::after {
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.option .opt_list {
  border-radius: 5px;
  background-color: #ffffff;
  z-index: 1000;
  position: absolute !important;
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  overflow-y: auto;
  left: 0px;
  right: 0px;
  top: 30px;
  /*border:1px solid rgba(0,0,0,0.1);*/
  box-shadow: 0px 0px 0px 0.5px #666666, 0px 0px 2px 0px #dedede;
  white-space: nowrap;
}
.option .opt_list:hover {
  box-shadow: 0px 0px 0px 1px #666666, 0px -1px 2px 2px #c7c7c7;
}

.option .opt_list > div {
  display: flex;
  position: relative;
  padding: 8px 15px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 25px;
  color: #285f5f;
  cursor: pointer;
}
.option .opt_list > div:nth-last-child(1) {
  border-bottom: none;
}
.option .opt_list > div:hover {
  background-color: #ff9;
  background-color: #e9f7f5;
  background-color: #f3f7f7;
  color: #285f5f;
}
.option .opt_list > div.selected {
  background-color: #32cccc; /*#3CC;#789f00;#2fa3a3*/
  background-color: #39c5bf;
  background-color: #7accc8;
  background-color: #5cb3ae;
  background-color: #113e3e;
  background-color: #acab87;
  color: #ffffff;
  /*text-shadow:0px 0.5px 0px #166363,0px 0.5px 0px #166363, 0px 1px 1px #166363;*/
}

.option .opt_list > div::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 5px;
  border-radius: 10px 0px 0px 10px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  /*background-color:#f9da00;*/
}
.option .opt_list > div.selected::after,
.option .opt_list > div:hover::after {
  right: 0px;
  width: 15px;
}

.option .opt_list > div[disabled] {
  max-height: 50px !important;
}
.option .opt_list > div[disabled]:hover {
  background: none;
  color: #d3d3d3;
}
.option .opt_list > div > div:nth-last-child(1) {
  padding-right: 25px;
}

.option.active .opt_list {
  max-height: 350px;
  opacity: 1;
  top: 0px;
}

.option .opt_list.multiple > div > div:before {
  position: absolute;
  z-index: 10;
  content: "";
  right: 10px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.option .opt_list.multiple > div.disabled > div:before {
  visibility: hidden;
}

.option .opt_list.multiple > div:hover > div:before {
  background-color: #3cc;
  box-shadow: inset 0px 0px 0px 3px #ffffff;
}
.option .opt_list.multiple > div.selected > div:before {
  background-color: #ffffff;
  border: none;
}
.option .opt_list.multiple > div.selected:hover > div:before {
  background-color: #f33;
  box-shadow: inset 0px 0px 0px 3px #ffffff;
}
.option .opt_list.multiple > div > div:nth-last-child(1) {
  padding-right: 50px;
}
.option .opt_list.multiple > div {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  cursor: pointer;
  border-bottom: none !important;
}

.checkbox {
  display: inline-block;
  position: relative;
  margin: 5px;
  margin-top: 0px;
  padding: 9px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: none;
  cursor: pointer;
  box-shadow: 0px 0px 1px 1px #cccccc, 0px 0px 0px 1px #888888;
}
.checkbox_container {
  line-height: 0px !important;
}
.checkbox_container > div {
  margin: 5px !important;
  padding: 5px !important;
}
.action_box .checkbox_container {
  padding: 0px !important;
}
.checkbox_container .checkbox {
  box-shadow: 0px 0px 1px 1px #efefef, 0px 0px 0px 1px #dadada;
  margin: 0px !important;
  float: left;
}
.checkbox_container .opt_list {
  display: flex;
  flex-wrap: wrap;
}
.checkbox_container.row .opt_list {
  display: block;
}
.checkbox_container.boxed .opt_list {
  max-height: 180px;
  overflow: auto;
}
.checkbox_container .opt_list > div {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.checkbox_container .opt_list > div:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.checkbox_container input[type="checkbox"] {
  display: none;
}
.checkbox_container .msg {
  padding: 1px 10px;
}
.checkbox_container .opt_list > div {
  color: #616769;
  font-size: 12px;
  line-height: 16px;
}
.checkbox_container .opt_list > div:hover .checkbox {
  box-shadow: 0px 0px 1px 1px #999999, 0px 0px 0px 1px #888888;
}
.checkbox_container .checkbox.active + div {
  color: #6a6a6a;
}

.checkbox_container .checkbox::before {
  border: 0px !important;
  transform: translate(150%, -50%) rotate(45deg);
  width: 0px;
  height: 0px;
  background-color: #c2cdcc;
  border-radius: 2px;
}
.checkbox_container .checkbox.active::before {
  width: 9.5px;
  height: 9px;
  transform: translate(-50%, -50%);
}

.checkbox_container .checkbox.active {
  box-shadow: 0px 0px 1px 1px #3e475c, 0px 0px 0px 1px #888888 !important;
}
.checkbox.active {
  box-shadow: 0px 0px 1px 1px #3e475c, 0px 0px 0px 1px #888888 !important;
}
.checkbox.active::before {
  border-color: #333333;
  padding: 3.5px 2px;
}
.checkbox::before {
  content: "";
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-color: #ffffff;
  position: absolute;
  padding: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}
.toggle {
  border-radius: 5px;
  background-color: #d0dada;
  box-shadow: inset 0px 2px 5px #919ea0;
  display: table-caption;
  position: relative;
  padding: 2px;
  min-width: 35px;
  min-height: 18px;
  cursor: pointer;
}
.toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 2.5px;
  left: 8%;
  right: 55%;
  border-radius: 3px;
  background-color: #ffffff;
}

.toggle.active {
  box-shadow: inset 0px 2px 5px #1a4d00;
  box-shadow: inset 0px 2px 5px #c49f80;
  background-color: #79a730;
  background-color: #facf33;
}
.toggle.t2.active {
  box-shadow: inset 0px 2px 5px #33000c;
  background-color: #ff1b50;
}
.toggle.active::before {
  left: 55%;
  right: 8%;
}

.search_list > div {
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  margin: 20px 0px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  border-left: 3px solid #7a7b5e82;
}

.search_list .thumb {
  width: 150px;
  padding-bottom: 150px;
  position: relative;
  margin-right: 15px;
}

.search_list .thumb img {
  position: absolute;
  max-width: 85%;
  max-height: 85%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.search_list > div > div:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.search_list > div > div:nth-of-type(1) > div {
  flex: 0 0 inherit;
}
.search_list .brand {
  background-color: #ffec8e;
  background: linear-gradient(164deg, #b1af92 0%, #918d79 100%);
  color: #ffffff;
  padding: 5px 10px;
  font-size: 15px;
  margin-bottom: 10px;
  display: table;
}

.search_list .name {
  font-size: 15px;
}

.wishlist .thumb {
  width: 150px;
  padding-bottom: 150px;
  position: relative;
  margin-right: 15px;
}

.wishlist .thumb img {
  position: absolute;
  max-width: 85%;
  max-height: 85%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wishlist .property {
  display: block;
}

.list_action_box.top .page_bar {
  right: 20px;
}
.page_bar {
  color: #656565;
  box-sizing: border-box;
  right: 0px;
}

.page_bottom {
  border-top: 1px #ddd solid;
  margin-bottom: 10px;
}

.page_control {
  text-align: right;
  box-shadow: 0px 1px 0px 0px #dedede;
  padding-bottom: 5px;
}
.page_control select {
  padding: 0px;
  margin: 0px;
  box-shadow: none;
}
.page_control > div {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
* html .page_control > div {
  display: inline;
}
* + html .page_control > div {
  display: inline;
}
.page_prev,
.page_next {
  height: 10px;
  width: 10px;
  cursor: pointer;
  position: relative;
}
.page_next {
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
  margin-left: 5px;
}

.page_prev {
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  margin-left: 5px;
  transform: rotate(-135deg);
}

.no_item,
.no_result {
  font-size: 20px;
  color: #7e7e7e;
  text-align: center;
  padding: 25px 0px;
  border-top: 1px dashed #5f646d;
  text-transform: uppoerse;
}

/* SLIDER /////////////////////////////////////////////////////////////*/
.multi-range-slider {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.multi-range-slider > div:nth-of-type(1) {
  width: 70%;
  position: relative;
}
.slider {
  position: relative;
  z-index: 1;
  height: 8px;
  margin: 0px 25px;
}
.slider > .track {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #dedede;
}
.slider > .range {
  position: absolute;
  z-index: 2;
  left: 25%;
  right: 25%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #57676b;
}
.slider > .thumb {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  background-color: #ff0000;
  background: linear-gradient(to right bottom, #829293 0%, #d0dddf 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 0px #645d5d32;
  transition: box-shadow 0.3s ease-in-out;
  border: 1px solid #a7aeb0;
}
.slider > .thumb.left {
  left: 25%;
  transform: translate(-15px, -6px);
}
.slider > .thumb.right {
  right: 25%;
  transform: translate(15px, -6px);
}
.slider > .thumb:hover {
  box-shadow: 0 0 0 5px #abdebd32;
}

.slider > .thumb.active {
  box-shadow: 0 0 0 10px #ced7dc52;
}
input[type="range"] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 2;
  height: 10px;
  width: 100%;
  left: 0px;
  opacity: 0;
}
input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 0 none;
  background-color: red;
  -webkit-appearance: none;
  pointer-events: all;
}
.multi-range-slider .label {
  font-size: 30px;
  font-family: arial;
  margin-left: 10px;
  margin-top: -15px;
  font-family: "work sans";
  font-weight: 200;
  color: #333c3f;
}
.multi-range-slider .label > span {
  margin: 0px 5px;
}
.multi-range-slider .label > span:nth-of-type(2) {
  position: relative;
}
/* SLIDER END /////////////////////////////////////////////////////////////*/
/* ICON ////////////////////////////////////////////////////*/
.icon_valid {
  display: table-cell;
  background: url(../../../../images/icon/valid.png) no-repeat center center;
  width: 20px;
  height: 20px;
}

.icon_invalid {
  display: inline-block;
  background: url(../../../../images/icon/invalid.png) no-repeat center center;
  width: 20px;
  height: 20px;
}
.icon_crown {
  display: inline-block;
  background: url(../../../../images/tc/icon/crown.png) no-repeat center center;
  background-size: 100% auto;
  width: 50px;
  height: 50px;
}

.icon_style {
  display: inline-block;
  background: url(../../../../images/tc/icon/style.png) no-repeat center center;
  background-size: 100% auto;
  width: 50px;
  height: 50px;
  position: relative;
}

.icon_classic {
  display: inline-block;
  background: url(../../../../images/tc/icon/classic.png) no-repeat center
    center;
  background-size: 100% auto;
  width: 50px;
  height: 50px;
  position: relative;
}

.icon_classic::before,
.icon_style::before {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  transform: translate(-45%, -50%);
}

.icon_classic::before {
  color: #916d1f;
}

.icon_style::before {
  color: #2c3e4b;
}

.icon_new {
  display: inline-block;
  background: url(../../../../images/tc/icon/new.png) no-repeat center center;
  background-size: 100% auto;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 5px;
  display: none;
}
.icon_hot_sale {
  display: inline-block;
  background: url(../../../../images/tc/icon/icon_hot.png) no-repeat center
    center;
  background-size: 100% auto;
  width: 65px;
  height: 50px;
  color: #fff;
  position: relative;
  left: 15px;
}
.icon_hot_sale::before,
.icon_style::before {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  transform: translate(-45%, -50%);
}
#validation_box {
  margin: 0px 6px;
  float: right;
}
#validation_box > div {
  display: inline-block;
  padding: 6px;
  vertical-align: middle;
}
* html #validation_box > div {
  display: inline;
}
* + html #validation_box > div {
  display: inline;
}
