.rte table {
  display: table;
  border-collapse: separate;
  box-sizing: border-box;
  text-indent: initial;
  unicode-bidi: isolate;
  border-spacing: 2px;
  border-color: gray;
  border-style: solid;
  border-width: 1px; }

.rte tbody {
  display: table-row-group;
  vertical-align: middle;
  unicode-bidi: isolate;
  border-color: inherit;
  border-style: solid;
  border-width: 1px; }

.rte tr {
  display: table-row;
  vertical-align: inherit;
  unicode-bidi: isolate;
  border-color: inherit;
  border-style: solid;
  border-width: 1px; }

.rte td {
  display: table-cell;
  vertical-align: inherit;
  unicode-bidi: isolate;
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px; }

[onclick] {
  user-select: none;
  -webkit-user-select: none; }

.width-100 {
  width: 100% !important; }

.form_group {
  width: 100%;
  display: flex;
  gap: 1.5rem; }

.form_group.disabled {
  pointer-events: none;
  user-select: none; }

.form_group.form_radio, .form_group.form_checkbox {
  gap: 1.5rem; }

.form_group.form_radio .form_field, .form_group.form_checkbox .form_field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  cursor: pointer; }

.form_group.form_radio .form_caption, .form_group.form_checkbox .form_caption {
  position: relative;
  top: auto;
  left: auto;
  padding: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000; }

.form_group.form_checkbox .form_caption {
  font-size: 0.875rem;
  line-height: 1.4; }

.form_group.form_normal .form_caption {
  position: relative;
  top: auto;
  left: auto;
  background-color: transparent;
  padding: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #000;
  margin-bottom: 0.25rem; }

.form_group.form_normal .input-txt {
  background-color: #fff; }

.form_group.form_normal .form_field {
  padding-bottom: 1rem; }

.form_group.form_normal.form_checkbox {
  gap: 1.5rem; }

.form_group.form_normal.form_checkbox .form_field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  cursor: pointer; }

.form_group.form_normal.form_checkbox .form_caption {
  position: relative;
  top: auto;
  left: auto;
  padding: 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  margin: 0; }

.form_group.form_normal.form_checkbox .form_caption a {
  color: #000;
  font-weight: 500; }

.form_field {
  position: relative;
  width: 100%;
  padding-bottom: 1.5rem; }

.form_field .input-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #667085;
  position: relative; }

.form_field .input-radio::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--global-color); }

.form_field .input-radio:checked {
  border-color: var(--global-color); }

.form_field .input-radio:checked::before, .form_field .input-radio:checked::after,
.form_field [type="checkbox"]:checked::after {
  opacity: 1; }

.form_field .input-checkbox, .form_field [type="checkbox"] {
  position: relative;
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #98a2b3; }

.form_field .input-checkbox::before, .form_field .input-checkbox::after,
.form_field [type="checkbox"]::before, .form_field [type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  border: 1px solid var(--global-color); }

.form_field .input-checkbox::before, .form_field [type="checkbox"]::before {
  background-color: var(--global-color); }

.form_field .input-checkbox::after, .form_field [type="checkbox"]::after {
  background: url(//cdn.hstatic.net/themes/1000380002/1001390203/14/check.svg?v=3622) no-repeat center center;
  background-size: 80% auto; }

.form_field .input-checkbox:checked, .form_field [type="checkbox"]:checked::after {
  border-color: var(--global-color); }

.form_field .input-checkbox:checked::before, .form_field .input-checkbox:checked::after,
.form_field [type="checkbox"]:checked::before, .form_field [type="checkbox"]:checked::after {
  opacity: 1; }

.form_field .input-txt {
  border-radius: 0.25rem;
  border: 1px solid #d0d5dd;
  padding: 0.75rem 1rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0; }

.form_field .input-txt:disabled {
  background-color: #ededed;
  color: #828282; }

.form_field.disabled {
  pointer-events: none; }

.form_field.disabled .select {
  background-color: #ededed;
  color: #828282; }

.form_field.disabled .select.hasSelected + .form_caption {
  background-color: transparent;
  text-shadow: -1px 4px 8px #fff; }

.form_caption {
  position: absolute;
  font-size: 1rem;
  color: #667085;
  left: 1rem;
  top: 0.875rem;
  -webkit-transition: transform 0.3s linear;
  transition: transform 0.3s linear; }

.form_caption sup {
  color: #FF0000; }

.form .field_error {
  display: none; }

.form .field_icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 16px;
  top: 1rem; }

.form .field_icon svg {
  width: 0.75rem;
  height: 0.833125rem; }

.form .input-txt:not(:placeholder-shown) + .form_caption {
  font-size: 0.75rem;
  -webkit-transform: translateY(-1.375rem);
  transform: translateY(-1.375rem);
  background-color: #fff; }

.form .input-txt:disabled:not(:placeholder-shown) + .form_caption {
  background-color: transparent;
  text-shadow: -1px 4px 8px #fff; }

.form .select {
  height: 3rem; }

.form .select-header {
  height: 100%;
  padding: 0 1rem;
  border: 1px solid #d0d5dd;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem; }

.form .select .select-selected {
  font-weight: 400; }

.form .select.hasSelected + .form_caption {
  font-size: 0.75rem;
  -webkit-transform: translateY(-1.375rem);
  transform: translateY(-1.375rem);
  background-color: #fff; }

@media screen and (max-width: 1023px) {
  .form_group {
    gap: 0.625rem; } }

.search_popup {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s; }

.search_popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all; }

.search_popup svg {
  filter: invert(0) !important; }

.search_content {
  max-width: 70rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem; }

.search_form {
  padding-bottom: 1rem;
  border-bottom: 2px solid #000000;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem; }

.search_form .form_group {
  flex: 1;
  position: relative;
  padding-right: 1.25rem; }

.search_form .form_group input {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000; }

.search_form .form_group input::placeholder {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000; }

.search_form .form_group .search-but--clear {
  position: absolute;
  color: #667085;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  min-width: 1rem;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s; }

.search_form .form_group .search-but--clear.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all; }

.search_form .form_group .search-but--clear svg {
  width: 100%;
  min-width: 100%; }

.search_form .search-but {
  cursor: pointer;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem; }

.search_form .search-but svg {
  width: 100%;
  height: 100%; }

.search_bottom {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem; }

.search_popular {
  width: 38.3928571429%;
  min-width: 38.3928571429%; }

.search_popular-title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000; }

.search_popular-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.search_popular-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000;
  pointer-events: all; }

.search_popular-item svg {
  width: 0.875rem;
  min-width: 0.875rem;
  height: 0.875rem;
  pointer-events: none; }

.search_result {
  flex: 1; }

.search_result .result-default {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem; }

.search_result .result-default .new {
  text-decoration: none; }

.search_result .result-default .new-img {
  width: 100%;
  height: auto;
  line-height: 0;
  aspect-ratio: 190/140;
  border-radius: 0.25rem; }

.search_result .result-default .new-img img {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  -webkit-object-fit: cover;
  object-fit: cover; }

.search_result .result-default .new-txt {
  margin-top: 1rem; }

.search_result .result-default .new-txt h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #000000; }

.search_result .result-product {
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  .search_result .result-product .resultsMore {
    font-weight: 500;
    margin-bottom: -15px;
    margin-top: 10px; }
  .search_result .result-product .product-search-ultimate {
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto; }

.search_result .result-product .product {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0;
  align-items: center; }
  .search_result .result-product .product .swatch .title-swap, .search_result .result-product .product .swatch .select-swap {
    display: inline-block; }

.search_result .result-product .product-img {
  margin: 0;
  padding: 0;
  width: 6.5625rem;
  min-width: 6.5625rem;
  height: 5.9375rem;
  border-radius: 0.25rem; }

.search_result .result-product .product-txt {
  flex: 1; }

.search_result .result-product .product-txt .name {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0;
  color: #000;
  min-height: auto; }

.search_result .result-product .product-txt .color {
  margin-top: 0.25rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem; }

.search_result .result-product .product-txt .color span {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: #000000; }

@media screen and (max-width: 1024px) {
  .search_popup {
    position: fixed;
    top: 0;
    bottom: 0;
    max-height: 100%;
    z-index: 30; }
  .search_content {
    max-width: 100%;
    padding: 1.5rem 1rem;
    padding-top: 0; }
  .search_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    padding: 1.5rem 1rem 1rem 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d9d9d9; }
  .search_head-title {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0; }
  .search_head .search-but--close {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
  .search_head .search-but--close svg {
    width: 0.75rem;
    height: 0.75rem; }
  .search_bottom {
    flex-direction: column; }
  .search_popular {
    width: 100%;
    min-width: 100%; }
  .search_popular-title {
    font-size: 0.9375rem; }
  .search_popular-list {
    margin-top: 1rem; }
  .search_result {
    flex: auto;
    width: 100%; }
  .search_result .result-default {
    grid-template-columns: 1fr 1fr;
    gap: 1rem; }
  .search_result .result-default .new-img {
    aspect-ratio: 163/120; }
  .search_result .result-default .new-txt {
    margin-top: 0.75rem; }
  .search_result .result-default .new-txt h3 {
    font-size: 0.875rem; }
  .search_result .result-product .product-img {
    width: 5.5rem;
    min-width: 5.5rem;
    height: 5.5rem; }
  .search_result .result-product .product-txt {
    padding: 0.9375rem 0; }
  .search_result .result-product .product-txt .name {
    font-size: 0.875rem; }
  .search_result .result-product .product-txt .color {
    gap: 0.25rem; }
  .search_result .result-product .product-txt .color span {
    font-size: 0.75rem; } }

@media screen and (min-width: 1020px) and (max-width: 1024px) {
  .search_content {
    padding: 0 16px 24px 16px; }
  .search_head {
    padding: 24px 16px 16px 16px;
    margin-bottom: 24px; }
  .search_head-title {
    font-size: 20px; }
  .search_head .search-but--close {
    width: 24px;
    height: 24px; }
  .search_head .search-but--close svg {
    width: 12px;
    height: 12px; }
  .search_popular-title {
    font-size: 15px; }
  .search_popular-list {
    margin-top: 16px; }
  .search_popular-item {
    font-size: 14px; }
  .search_result .result-default {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem; }
  .search_result .result-default .new-txt {
    margin-top: 12px; }
  .search_result .result-default .new-txt h3 {
    font-size: 14px; }
  .search_result .result-product .product-img {
    width: 88px;
    min-width: 88px;
    height: 88px; }
  .search_result .result-product .product-txt {
    padding: 15px 0; }
  .search_result .result-product .product-txt .name {
    font-size: 14px; }
  .search_result .result-product .product-txt .color {
    gap: 4px; }
  .search_result .result-product .product-txt .color span {
    font-size: 12px; }
  .search_form .form_group input {
    font-size: 16px; } }

@media (orientation: landscape) and (max-width: 1023px) {
  .search_result .result-default {
    grid-template-columns: repeat(3, 1fr); } }

.mini-cart-popup {
  position: fixed;
  z-index: 31;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s; }

.mini-cart-popup.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all; }

.mini-cart_content {
  max-width: 30.0625rem;
  margin-left: auto;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column; }

.mini-cart_head {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #d9d9d9;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.mini-cart_head .title {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 500; }

.mini-cart_head .title svg {
  width: 1.25rem;
  height: 1.15625rem; }

.mini-cart_head .mini-cart--close {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

.mini-cart_head .mini-cart--close svg {
  width: 0.75rem;
  height: 0.75rem; }

.mini-cart_body {
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto; }

.mini-cart_list {
  padding: 0 1.5rem; }

.mini-cart_list .product {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ececec; }

.mini-cart_list .product-img {
  padding: 0;
  margin: 0;
  width: 7rem;
  height: 7rem;
  min-width: 7rem; }

.mini-cart_list .product-txt {
  flex: 1; }

.mini-cart_list .product .tag {
  position: static;
  left: auto;
  top: auto; }

.mini-cart_list .product .tag-item {
  background-color: #eb5757;
  font-size: 0.625rem; }

.mini-cart_list .product .tag svg {
  width: 0.5rem;
  height: 0.625rem; }

.mini-cart_list .product .model {
  margin-top: 0; }

.mini-cart_list .product .name {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0.125rem; }

.mini-cart_list .product .price {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.5625rem; }

.mini-cart_list .product .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem; }

.mini-cart_list .product .action-control {
  width: 6.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  border-radius: 0.125rem;
  border: 1px solid #d0d5dd; }

.mini-cart_list .product .action--minus, .mini-cart_list .product .action--plus, .mini-cart_list .product .action--quantity {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

.mini-cart_list .product .action--minus, .mini-cart_list .product .action--plus {
  width: 1rem;
  height: 1rem; }

.mini-cart_list .product .action--minus svg, .mini-cart_list .product .action--plus svg {
  width: 0.583125rem;
  height: 0.583125rem; }

.mini-cart_list .product .action--quantity {
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0; }

.mini-cart_list .product .action .action-detele-btn {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282930;
  cursor: pointer; }

.mini-cart_list .product .action .action-detele-btn svg {
  width: 0.75rem;
  height: 0.833125rem; }

.mini-cart_footer {
  padding: 1rem 1.5rem; }

.mini-cart_total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000000; }

.mini-cart_total .title {
  font-weight: 500; }

.mini-cart_checkout {
  margin-top: 0.75rem; }

.mini-cart_checkout--link {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  background: #015aab;
  text-decoration: none;
  border-radius: 0.25rem; }

@media screen and (max-width: 1023px) {
  .mini-cart_content {
    max-width: 100%;
    margin-left: 0; }
  .mini-cart_head {
    font-size: 1.25rem;
    padding: 1.5rem 1rem 1rem 1rem; }
  .mini-cart_list {
    padding: 0 1rem; }
  .mini-cart_list .product-img {
    padding: 0;
    margin: 0;
    width: 7rem;
    height: 7rem;
    min-width: 7rem; }
  .mini-cart_list .product .price {
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.40625rem; }
  .mini-cart_list .product .action-control {
    width: 6.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.375rem;
    border-radius: 0.125rem;
    border: 1px solid #d0d5dd; }
  .mini-cart_footer {
    padding: 1rem;
    box-shadow: 2px 4px 20px 0px rgba(0, 0, 0, 0.101961); }
  .mini-cart_total {
    font-size: 0.875rem; } }

@media screen and (min-width: 1020px) and (max-width: 1024px) {
  .mini-cart_content {
    max-width: 460px; }
  .mini-cart_head .title {
    font-size: 16px; }
  .mini-cart_head .title svg {
    width: 20px;
    height: 16px; }
  .mini-cart_head .mini-cart--close {
    width: 24px;
    height: 24px; }
  .mini-cart_head .mini-cart--close svg {
    width: 12px;
    height: 12px; }
  .mini-cart_list .product-txt {
    padding-left: 20px; }
  .mini-cart_list .product .model {
    font-size: 12px; }
  .mini-cart_list .product .name,
  .mini-cart_list .product .price {
    font-size: 14px; }
  .mini-cart_list .product .tag-item {
    font-size: 12px; }
  .mini-cart_list .product .action-control {
    width: 100px;
    height: 36px; }
  .mini-cart_list .product .action--plus,
  .mini-cart_list .product .action--minus,
  .mini-cart_list .product .action--quantity {
    flex: 0 0 24px;
    max-width: 24px;
    height: 24px;
    font-size: 14px; }
  .mini-cart_list .product .action--plus svg,
  .mini-cart_list .product .action--minus svg,
  .mini-cart_list .product .action--quantity svg {
    width: 12px;
    height: 12px; }
  .mini-cart_list .product .action .action-detele-btn {
    width: 24px;
    height: 24px;
    font-size: 14px; }
  .mini-cart_list .product .action .action-detele-btn svg {
    width: 16px;
    height: 16px; }
  .mini-cart_total {
    font-size: 16px; }
  .mini-cart_checkout .mini-cart_checkout--link {
    height: 48px;
    font-size: 16px; } }

.header {
  position: fixed;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  z-index: 20;
  -webkit-transition: top 0.1s ease, background-color 0.2s ease-in;
  transition: top 0.1s ease, background-color 0.2s ease-in; }

.header.header-in .bg-menu-overlay {
  opacity: 1; }

.header-container {
  width: 100%; }

.header .select-language .select-selected,
.header .select-language .select-arrow {
  color: #fff; }

.header .select-language .select-selected {
  font-size: 0.75rem; }

.header .select-language .select-arrow {
  margin-left: 0.5rem; }

.header .select-language .select-box {
  min-width: initial;
  border-radius: 0.625rem;
  padding: 0.5rem 0;
  width: max-content; }

.header .select-language .select-box ul {
  padding: 0; }

.header .select-language .select-box li {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0; }

.header .support {
  margin-left: auto;
  display: flex;
  gap: 2.125rem; }

.header .support-list {
  display: flex;
  align-items: center;
  gap: 2.125rem; }

.header .support-list li {
  position: relative; }

.header .support-list li::after {
  content: "";
  position: absolute;
  right: -1.0625rem;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2); }

.header .support-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 400;
  color: #fff;
  display: flex;
  font-size: 0.75rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.header .support-icon {
  width: 0.8125rem;
  height: 0.75rem; }

.header .support-icon svg {
  width: 100%;
  height: 100%; }

.header-top {
  background-color: var(--global-color);
  display: flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 2.5rem;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in; }

.header-top .promotion_tag {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 0.75rem;
  gap: 0.75rem;
  font-family: var(--font-body); }

.header-top .promotion_tag strong {
  font-weight: 600; }

.header-top .promotion_tag-icon {
  width: 1.875rem;
  height: 1rem; }

.header-top .promotion_tag-icon svg {
  width: 100%;
  height: 100%; }

.header-mid {
  position: relative;
  display: flex;
  padding: 0 2.5rem;
  height: 5rem;
  background-color: #fff;
  align-items: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in; }

.header-mid .logo {
  width: 11.625rem;
  line-height: 0; }

.header-mid .logo a {
  display: block;
  width: 100%;
  height: auto; }

.header-mid .logo img {
  width: 100%;
  height: auto; }

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2.625rem; }

.header .nav-menu > li > a,
.header .nav-menu > li > span {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out; }

.header .nav-menu > li > a span,
.header .nav-menu > li > span span {
  position: relative; }

.header .nav-menu > li > a span::before,
.header .nav-menu > li > span span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #000;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  -webkit-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
  display: none; }

.header .nav-menu > li:hover > a span::before {
  width: 100%; }

.header .nav-menu > li.current > a,
.header .nav-menu > li.current > span, .header .nav-menu > li.active > a,
.header .nav-menu > li.active > span {
  color: var(--global-color); }

.header-action {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem; }

.header-action .action-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  position: relative; }

.header-action .action-icon .count-holder {
  position: absolute;
  left: 100%;
  top: -4px;
  font-size: 10px;
  background: red;
  min-width: 16px;
  text-align: center;
  border-radius: 50%;
  padding: 1px 2px;
  color: #fff;
  transform: translateX(-50%); }

.header-action .search {
  display: flex; }

.header-action .search-input {
  display: block;
  flex-grow: 1;
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
  font-family: var(--font-body); }

.header-action .search-but svg {
  width: 1.25rem;
  height: 1.25rem; }

.header-action .mini-cart svg {
  width: 1.375rem;
  height: 1.375rem; }

.header-action .user {
  display: flex;
  align-items: center;
  color: #000;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none; }

.header-action .user-avatar svg {
  width: 1.125rem;
  height: 1.25rem; }

.header-action .user-caption {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  max-width: 6.25rem;
  overflow: hidden;
  text-overflow: ellipsis; }

.header-action .user .icon-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem; }

.header-action .user .icon-caret svg {
  width: 0.75rem;
  height: 0.375rem; }

.header-action .select-profile .select-header .select-selected {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; }

.header-action .select-profile .select-box {
  width: max-content;
  padding: 0.625rem 0;
  border-radius: 0.625rem; }

.header-action .select-profile .select-box ul {
  padding: 0; }

.header-action .select-profile .select-box ul li {
  padding: 0; }

.header-action .select-profile .select-box ul li a {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem; }

.header-action .select-profile .select-box ul li a svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem; }

.header.transparent .header-top {
  background-color: rgba(1, 90, 171, 0); }

.header.transparent .header-mid {
  background-color: rgba(255, 255, 255, 0); }

.header.transparent .header-mid svg {
  filter: invert(1); }

.header.transparent .header-action .user-caption,
.header.transparent .nav-menu > li > a,
.header.transparent .nav-menu > li > span {
  color: #fff; }

.header.transparent .header-action .search {
  border-color: #fff; }

.header.transparent .header-action .search .search-input {
  color: #fff; }

.header.sticky {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /*top: -2.5rem;*/ }

.header.sticky .header-top {
  background-color: var(--global-color); }

.header.sticky .header-mid {
  background-color: #fff; }

.header.sticky .header-mid svg {
  filter: invert(0); }

.header.sticky .nav-menu > li > a,
.header.sticky .nav-menu > li > span,
.header.sticky .header-action .user-caption {
  color: #000; }

.header.sticky .header-action .search {
  border-color: #000; }

.header.sticky .header-action .search .search-input {
  color: #000; }

.header.open-menu .side {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.header.open-menu .bg-menu-overlay {
  opacity: 1; }

.bg-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.bg-menu::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  height: 0;
  width: 100%;
  background: linear-gradient(0deg, #fff 15%, rgba(255, 255, 255, 0));
  transition: none;
  pointer-events: none;
  transition-delay: 0.1s; }

.bg-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out; }

.side {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 23.1875rem;
  height: 100vh;
  background-color: #fff;
  display: flex;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 999; }

.side .goto-list {
  display: block;
  margin-bottom: 1.875rem; }

.side .goto-list span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase; }

.side .goto-list a {
  color: #015AAB;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: underline; }

.side .goto-list a span {
  text-transform: lowercase;
  display: inline;
  font-weight: inherit;
  font-size: inherit;
  margin-bottom: inherit; }

.side-caption {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 auto;
  color: #98A2B3;
  font-weight: 500;
  font-size: 0.875rem;
  padding-bottom: 0.5rem; }

.side-caption.full {
  width: 100%; }

.side-caption.has-border {
  border-top: 1px solid #D0D5DD;
  margin-top: 0.625rem;
  padding-top: 1rem; }

.side svg {
  flex: 0 0 0.5rem;
  max-width: 0.5rem;
  height: 0.875rem; }

.side .close-menu {
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end; }

.side .close-menu svg {
  width: 0.875rem;
  height: 0.875rem; }

.side-box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 1.25rem;
  background-color: #fff; }

.side-top,
.side .dropdown-back {
  height: 4.375rem;
  min-height: 4.375rem;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.side-top .logo {
  margin: 0;
  width: 9.75rem; }

.side-top .logo a {
  display: block;
  width: 100%;
  line-height: 0; }

.side-top .logo a img {
  width: 100%;
  height: auto; }

.side-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.side-menu {
  flex-grow: 1;
  width: 100%;
  max-height: 100%;
  display: block;
  margin: 0;
  padding: 0 1rem; }

.side-menu .dropdown-toggle,
.side-menu .normal-link,
.side-menu .link-normal,
.side-menu .dropdown-menu--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 0; }

.side-menu .arrow {
  display: flex;
  align-items: center;
  justify-content: center; }

.side-menu .back-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer; }

.side-menu .back-menu .arrow {
  margin-left: -0.375rem; }

.side-menu .back-menu .arrow svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1); }

.side-menu .title,
.side-menu a {
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  cursor: pointer; }

.side-menu > li > .dropdown-toggle .title {
  text-transform: uppercase; }

.side-menu > li > a {
  text-transform: uppercase; }

.side .container-list {
  background-color: #fff;
  display: flex;
  width: 100%;
  max-width: 21.4375rem;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--winH, 100vh);
  transform: translateX(100%);
  flex-direction: column;
  padding-bottom: 1.25rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.side .container-list--wrap {
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.side .container-list ul {
  padding: 0 1rem; }

.side .dropdown-menu {
  background-color: #F4F4F4;
  display: block;
  width: 100%;
  max-width: 21.4375rem;
  position: fixed;
  height: var(--winH, 100vh);
  top: 0;
  left: 0;
  display: block;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.side .dropdown-menu--subitem.active > .dropdown-menu--title .title {
  font-weight: 600; }

.side .dropdown-menu--subitem ul li {
  padding: 0.625rem 0; }

.side .dropdown-menu--subitem ul li a {
  font-weight: 400; }

.side .dropdown-menu .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 1.25rem; }

.side .dropdown-menu .container .dropdown-menu--inner {
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.side .dropdown-menu--inner {
  padding: 0 1rem; }

.side .push-content--wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem; }

.side .push-content--wrap .dropdown-menu--title {
  padding: 0;
  flex: 0 0 1.5rem;
  max-width: 1.5rem;
  justify-content: flex-end; }

.side .push-content .container-list li {
  padding: 0.9375rem 0; }

.side .push-content--item {
  display: flex;
  align-items: center;
  gap: 0.75rem; }

.side .push-content--item .image-push-wrapper {
  flex: 0 0 5.5rem;
  max-width: 5.5rem;
  height: auto;
  line-height: 0;
  -webkit-border-radius: 6px;
  border-radius: 6px; }

.side .push-content--item .image-push-wrapper img {
  width: 100%;
  height: auto; }

.side .push-content--item p {
  font-size: 1rem;
  font-weight: 500; }

.side .item-lv2.active .container-list {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.side-item.active .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateX(23.1875rem);
  transform: translateX(23.1875rem); }

.side-item.active > .dropdown-toggle .title {
  font-weight: 600; }

.side-bot {
  width: 100%;
  padding: 1rem;
  margin-top: auto; }

.side-bot .support {
  background-color: #F2F4F7;
  display: block;
  padding: 0.625rem 1.25rem;
  -webkit-border-radius: 0.75rem;
  border-radius: 0.75rem; }

.side-bot .support-list {
  display: block; }

.side-bot .support-list li {
  border-bottom: 1px solid #D9D9D9; }

.side-bot .support-list li::after {
  display: none; }

.side-bot .support-list a {
  color: #1D2939;
  padding: 1.0625rem 0;
  font-size: 0.75rem;
  text-decoration: none;
  display: flex;
  gap: 0.625rem; }

.side-bot .support-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex; }

.side-bot .support-icon svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  flex: 0 0 100%; }

.side-bot .select-language {
  display: inline-flex; }

.side-bot .select-language .select-selected,
.side-bot .select-language .select-arrow {
  color: #1D2939; }

.side-bot .select-language .select-selected {
  font-size: 0.75rem; }

.side-bot .select-language .select-header {
  padding: 1.0625rem 0; }

.side-bot .select-language .select-box {
  right: auto;
  left: 0;
  top: auto;
  bottom: 100%; }

.menu-accordion--header {
  display: flex;
  justify-content: space-between; }

.menu-accordion--toggle {
  flex: 0 0 1rem;
  max-width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

.menu-accordion--toggle svg {
  width: 80%;
  height: 80%;
  max-width: 80%;
  flex: none; }

.menu-accordion--toggle.current svg {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1); }

.menu-accordion--body {
  overflow: hidden;
  height: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.menu-accordion--body.current {
  opacity: 1;
  pointer-events: all;
  height: var(--data-h); }

@media screen and (min-width: 1025px) {
  .md {
    display: none; }
  .header .nav {
    height: 100%; }
  .header .nav-menu {
    height: 100%; }
  .header .nav-menu > li:hover > a,
  .header .nav-menu > li:hover > span {
    color: var(--global-color); }
  .header .no-nav-item {
    height: 100%;
    display: inline-flex;
    align-items: center; }
  .header .nav-item {
    height: 100%;
    display: inline-flex;
    align-items: center; }
  .header .nav-item.active .dropdown-menu {
    border-top: 1px solid #e1e1e1;
    background-color: transparent;
    max-height: calc(100vh - 200px); }
  .header .nav-item.active .dropdown-menu .container {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.25s; }
  .header:not(.transparent) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .header:not(.transparent) + .main {
    padding-top: 7.5rem; }
  .search-but--close {
    position: absolute;
    right: 2.5rem;
    top: 1.625rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-items: center; }
  .search-but--close svg {
    width: 1rem;
    height: 1rem;
    pointer-events: none; }
  .side .dropdown-toggle,
  .side .dropdown-menu--title,
  .side .push-content--wrap,
  .side .container-list--wrap a,
  .side .link-normal {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
  .side .dropdown-toggle .title,
  .side .dropdown-menu--title .title,
  .side .push-content--wrap .title,
  .side .container-list--wrap a .title,
  .side .link-normal .title {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
  .side .push-content--item:hover {
    color: var(--global-color); }
  .side .push-content--wrap:hover .dropdown-menu--title {
    color: var(--global-color); }
  .side .dropdown-toggle:hover,
  .side .dropdown-menu--title:hover,
  .side .dropdown-menu--link:hover,
  .side .link-normal:hover {
    color: var(--global-color); }
  .side .dropdown-toggle:hover .title,
  .side .dropdown-menu--title:hover .title,
  .side .dropdown-menu--link:hover .title,
  .side .link-normal:hover .title {
    color: var(--global-color); } }

@media screen and (max-width: 1024px) {
  .hide-md {
    display: none !important; }
  .bg-menu,
  .bg-menu-overlay {
    display: none; }
  .header-top {
    padding: 0 0.9375rem;
    height: 2.125rem; }
  .header-top .promotion_tag {
    font-size: 0.625rem; }
  .header-mid {
    padding: 0 0.9375rem;
    height: 3.125rem; }
  .header-mid .logo {
    width: 7.9375rem;
    margin-left: 0.75rem; }
  .header-mid .toggle-menu {
    width: 1.25rem;
    height: 1.25rem; }
  .header-mid .toggle-menu svg {
    width: 100%;
    height: 100%; }
  .header-action {
    gap: 0.75rem; }
  .header-action .user-caption {
    display: none; }
  .header .nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 3.75rem;
    background-color: #fff;
    display: none;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1; }
  .header .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.375rem;
    min-height: 4.375rem;
    padding: 0 1rem; }
  .header .nav-top .logo {
    margin: 0; }
  .header .nav .close-menu {
    width: 1.875rem;
    height: 1.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end; }
  .header .nav .close-menu svg {
    width: 0.875rem;
    height: 0.875rem; }
  .header .nav a:before,
  .header .nav span::before {
    display: none; }
  .header .nav-menu {
    flex-grow: 1;
    width: 100%;
    max-height: 100%;
    display: block;
    margin: 0;
    padding: 0 1rem; }
  .header .nav-menu > li {
    border-top: 1px solid #D9D9D9; }
  .header .nav-menu .dropdown-toggle,
  .header .nav-menu .normal-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0; }
  .header .nav-menu .dropdown-toggle svg,
  .header .nav-menu .normal-link svg {
    width: 0.5rem;
    height: 0.75rem; }
  .header .nav-menu .dropdown-back {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.375rem;
    min-height: 4.375rem;
    padding: 0 1rem;
    border-bottom: 1px solid #D9D9D9; }
  .header .nav-menu .dropdown-back .back-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 500;
    gap: 0.875rem; }
  .header .nav-menu .dropdown-back .back-menu svg {
    width: 1.125rem;
    height: 0.625rem; }
  .header .nav-menu .dropdown-menu {
    background-color: #fff;
    display: block;
    width: 100%;
    position: fixed;
    height: var(--winH, 100vh);
    top: 0;
    left: 0;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    max-height: none;
    z-index: 1;
    overflow: hidden; }
  .header .nav-menu .dropdown-menu .container {
    opacity: 1;
    visibility: visible;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--subitem {
    flex: 0 0 100%;
    max-width: 100%; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--inner {
    padding: 1rem;
    padding-top: 0;
    display: block; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--subitem {
    padding: 0;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 0rem; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--subitem.is-group {
    border: none; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--subitem .dropdown-menu--link {
    font-size: 0.875rem; }
  .header .nav-menu .dropdown-menu--customize .container-list {
    height: var(--data-h, 0px);
    overflow: hidden;
    opacity: 0;
    -webkit-transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .header .nav-menu .dropdown-menu--customize .container-list ul {
    padding-bottom: 1rem;
    padding-left: 1.125rem; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--title.current + .container-list {
    opacity: 1; }
  .header .nav-menu .push-content {
    padding: 1rem 1rem 2.8125rem 1rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 20px;
    flex-grow: 1;
    max-height: 100%;
    align-content: flex-start;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
  .header .nav-menu .push-content[data-item="2"] {
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%; }
  .header .nav-menu .dropdown-menu--title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 1.25rem 0; }
  .header .nav-menu .dropdown-menu--title.current .icon-toggle .icon-increase {
    opacity: 0; }
  .header .nav-menu .dropdown-menu--title.current .icon-toggle .icon-decrease {
    opacity: 1; }
  .header .nav-menu .dropdown-menu--title .icon-toggle {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--global-color); }
  .header .nav-menu .dropdown-menu--title .icon-toggle .icon-increase,
  .header .nav-menu .dropdown-menu--title .icon-toggle .icon-decrease {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
  .header .nav-menu .dropdown-menu--title .icon-toggle .icon-decrease {
    opacity: 0; }
  .header .nav-menu .dropdown-menu--title .icon-toggle svg {
    width: 0.875rem;
    position: absolute;
    height: 0.875rem; }
  .header .nav-bot {
    width: 100%;
    padding: 1rem;
    margin-top: auto; }
  .header .nav-bot .support {
    background-color: #F2F4F7;
    display: block;
    padding: 0.625rem 1.25rem;
    -webkit-border-radius: 0.75rem;
    border-radius: 0.75rem; }
  .header .nav-bot .support-list {
    display: block; }
  .header .nav-bot .support-list li {
    border-bottom: 1px solid #D9D9D9; }
  .header .nav-bot .support-list li::after {
    display: none; }
  .header .nav-bot .support-list a {
    color: #1D2939;
    padding: 1.0625rem 0;
    font-size: 0.75rem; }
  .header .nav-bot .support-icon {
    width: 1rem;
    height: 1rem; }
  .header .nav-bot .select-language {
    display: inline-flex; }
  .header .nav-bot .select-language .select-selected,
  .header .nav-bot .select-language .select-arrow {
    color: #1D2939; }
  .header .nav-bot .select-language .select-selected {
    font-size: 0.75rem; }
  .header .nav-bot .select-language .select-header {
    padding: 1.0625rem 0; }
  .header .nav-bot .select-language .select-box {
    right: auto;
    left: 0;
    top: auto;
    bottom: 100%; }
  .header:not(.transparent) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .header:not(.transparent) + .main {
    padding-top: 5.125rem; }
  .header.open-menu {
    background-color: #fff; }
  .header.open-menu .header-top {
    background-color: #015aab; }
  .header.open-menu .header-mid {
    background-color: #fff; }
  .header.open-menu .header-mid svg {
    filter: invert(0); }
  .header.open-menu .nav-menu > li > a {
    color: #000; }
  .header.open-menu .header-action .search {
    border-color: #000; }
  .header.open-menu .header-action .search .search-input {
    color: #000; }
  .header.open-menu .nav {
    display: flex;
    flex-direction: column; }
  .header.open-menu .nav li {
    cursor: pointer; }
  .header.open-menu .nav li.current .dropdown-menu {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@media screen and (min-width: 1020px) and (max-width: 1024px) {
  .header-top {
    padding: 0 0.9375rem;
    height: 34px; }
  .header-top .promotion_tag {
    font-size: 12px; }
  .header-mid {
    padding: 0 0.9375rem;
    height: 50px; }
  .header-mid .logo {
    width: 127px;
    margin-left: 12px; }
  .header-mid .toggle-menu {
    width: 20px;
    height: 20px; }
  .header-action {
    gap: 12px; }
  .header-action .action-icon {
    width: 24px;
    height: 24px; }
  .header-action .action-icon svg {
    width: 20px;
    height: 20px; }
  .header-action .user-caption {
    display: none; }
  .header .nav {
    padding-bottom: 60px; }
  .header .nav-top {
    height: 70px;
    min-height: 70px;
    padding: 0 16px; }
  .header .nav .close-menu {
    width: 30px;
    height: 30px; }
  .header .nav .close-menu svg {
    width: 14px;
    height: 14px; }
  .header .nav-menu {
    padding: 0 16px; }
  .header .nav-menu > li > .dropdown-toggle .title,
  .header .nav-menu > li > a {
    font-size: 14px; }
  .header .nav-menu .dropdown-toggle,
  .header .nav-menu .normal-link {
    padding: 20px 0; }
  .header .nav-menu .dropdown-toggle svg,
  .header .nav-menu .normal-link svg {
    width: 8px;
    height: 12px; }
  .header .nav-menu .dropdown-back {
    height: 70px;
    min-height: 70px;
    padding: 0 16px; }
  .header .nav-menu .dropdown-back .back-menu {
    font-size: 18px;
    gap: 14px; }
  .header .nav-menu .dropdown-back .back-menu svg {
    width: 18px;
    height: 10px; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--inner {
    padding: 16px; }
  .header .nav-menu .dropdown-menu--customize .dropdown-menu--subitem .dropdown-menu--link {
    font-size: 14px; }
  .header .nav-menu .dropdown-menu--customize .container-list ul {
    padding-bottom: 16px;
    padding-left: 18px; }
  .header .nav-menu .push-content {
    padding: 16px 16px 45px 16px;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
    row-gap: 20px; }
  .header .nav-menu .push-content[data-item="2"] {
    grid-template-columns: repeat(3, 1fr); }
  .header .nav-menu .push-content--item p {
    font-size: 14px; }
  .header .nav-menu .dropdown-menu--title {
    padding: 20px 0;
    font-size: 14px; }
  .header .nav-menu .dropdown-menu--title .icon-toggle {
    width: 24px;
    height: 24px; }
  .header .nav-menu .dropdown-menu--title .icon-toggle svg {
    width: 14px;
    height: 14px; }
  .header .nav-bot {
    padding: 16px; }
  .header .nav-bot .support {
    padding: 10px 20px;
    -webkit-border-radius: 12px;
    border-radius: 12px; }
  .header .nav-bot .support-list a {
    color: #1D2939;
    padding: 17px 0;
    font-size: 12px; }
  .header .nav-bot .support-icon {
    width: 16px;
    height: 16px; }
  .header .nav-bot .select-language .select-selected {
    font-size: 12px; }
  .header .nav-bot .select-language .select-header {
    padding: 17px 0; }
  .header:not(.transparent) + .main {
    padding-top: 82px; } }

@media (orientation: landscape) and (max-width: 1023px) {
  .header .nav-menu .push-content {
    grid-template-columns: repeat(3, 1fr); }
  .header .nav-menu .push-content[data-item="2"] {
    grid-template-columns: repeat(3, 1fr); }
  body.land-mb {
    /*position: fixed;*/ }
  body.land-mb .header-container,
  body.land-mb .header .side,
  body.land-mb .header .bg-menu-overlay {
    display: none; }
  body.land-mb .header + .main {
    padding-top: 0 !important; }
  body.land-mb .lookbook_introduce,
  body.land-mb .product-related,
  body.land-mb .lookbook-related,
  body.land-mb .subscribe,
  body.land-mb .footer {
    display: none; } }

@media screen and (max-width: 1023px) {
  .side {
    max-width: 100%; }
  .side .dropdown-menu,
  .side .container-list {
    max-width: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  .side .dropdown-menu {
    z-index: 2; }
  .side .container-list {
    z-index: 3; }
  .side-item.active .dropdown-menu {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  .side .item-lv2.active .container-list {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.breadcrumb {
  padding: 1.5rem 2.5rem; }

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.75rem;
  flex-wrap: wrap; }

.breadcrumb ul li:last-child .mr_lr {
  display: none; }

.breadcrumb ul li a,
.breadcrumb ul li span {
  font-weight: 500;
  text-decoration: none;
  font-size: 0.75rem; }

.breadcrumb ul li a {
  color: #B4B4B4; }

.breadcrumb ul li span {
  color: #242420; }

@media screen and (max-width: 1023px) {
  .breadcrumb {
    padding: .5rem 1rem; }
  .breadcrumb ul {
    gap: .24rem; }
  .breadcrumb li a,
  .breadcrumb li span {
    font-size: 0.65rem !important; } }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.zoom-img {
  overflow: hidden; }

.zoom-img img {
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.zoom-img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

input[type=number] {
  -moz-appearance: textfield; }

.input-txt {
  width: 100%;
  height: 3rem;
  padding: 0 0.625rem;
  border: 1px solid #d0d5dd;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400; }

.area-txt {
  width: 100%;
  background-color: #fff;
  border: 1px solid #d0d5dd;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  padding: 0.625rem;
  height: 7.5rem; }

.input-txt--upload {
  line-height: 3rem;
  background: url(//cdn.hstatic.net/themes/1000380002/1001390203/14/icon-link.svg?v=3622) no-repeat calc(100% - 1rem) center;
  background-size: 1rem auto; }

.input-txt--upload::-webkit-file-upload-button {
  display: none; }

.category {
  background: #c7e1ff;
  padding: 7.5rem 0; }

.category .title_block {
  margin-bottom: 4.125rem; }

.category_wrap .title_block {
  text-align: center; }

.category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 5rem; }

.category-item .card {
  position: relative;
  height: 100%;
  overflow: hidden; }

.category-item .card-img, .category-item .card-txt {
  position: relative;
  z-index: 1; }

.category-item .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(180deg, #d1e9ff 0%, #82c3ff 100%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.category-item .card:hover::before {
  opacity: 1; }

@media screen and (max-width: 1023px) {
  .category {
    padding: 4.125rem 0; }
  .category .title_block {
    margin-bottom: 1.625rem; }
  .category_wrap .title_block {
    text-align: center; }
  .category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 0.9375rem; } }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); }

.products {
  background: #ffffff;
  padding: 7.5rem 0; }

.products.product-new, .products.product-promotion {
  padding: 5rem 0; }

.products.product-related {
  padding-top: 2.5rem;
  padding-bottom: 0; }

[data-page="cart"] .products.product-related {
  padding-bottom: 0; }

.products.by-inventory, .products.by-price {
  padding: 0;
  margin-bottom: 7.5rem; }

.products .title_block {
  padding: 0 2.5rem;
  margin-bottom: 4.125rem; }

.products_wrap .title_block {
  margin-bottom: 2rem; }

.products-list {
  width: 100%;
  height: auto; }

.products-list .swiper-horizontal > .swiper-scrollbar {
  width: 27.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.products-list .swiper-wrapper {
  padding-bottom: 1.375rem; }

.products-list .swiper-slide {
  height: auto; }

.products-list .article-banner {
  height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15); }

.products-list .article-banner--txt {
  flex-grow: 1; }

.products-list .product {
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(0, 0, 0, 0.15); }

.products-list .swiper-slide:first-child .product {
  border-left: 1px solid rgba(0, 0, 0, 0.15); }

.products-list .swiper-slide:last-child .product {
  border-right: 1px solid rgba(0, 0, 0, 0.15); }

.products-list .product-img {
  margin-bottom: 3.125rem; }

.products-list .product-txt {
  flex-grow: 1; }

@media screen and (max-width: 1023px) {
  .products {
    padding: 4.125rem 0; }
  .products.product-new, .products.product-promotion {
    padding: 3.75rem 0; }
  .products .title_block {
    padding: 0 0.9375rem;
    margin-bottom: 1.25rem; }
  .products-list .swiper-horizontal > .swiper-scrollbar {
    display: none; }
  .products-list .action {
    padding: 0 0.9375rem; }
  .products-list .action .link-but {
    width: 100%; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
  .products-grid--item .product {
    border-bottom: none; }
  .products-grid--item:nth-child(2n+1) .product {
    border-left: none; }
  .products .product-img {
    width: 7.4375rem;
    height: 7.3125rem;
    margin-bottom: 1.25rem; } }

.product {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 3.125rem 1.25rem 1.625rem 1.25rem;
  display: flex;
  flex-direction: column; }

.product-img {
  line-height: 0;
  width: 14.0625rem;
  height: 13.875rem;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 4.375rem; }

.product-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; }

.product-txt {
  display: flex;
  flex-direction: column; }

.product-txt .name {
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.8125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  min-height: 2.8rem; }

.product-txt .name a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit; }

.product-txt .model {
  color: #475467;
  font-weight: 500;
  font-size: 0.75rem;
  margin-top: 0.8125rem; }

.product-txt .price {
  margin-top: auto;
  font-size: 1rem;
  display: flex;
  gap: 0.625rem; }

.product-txt .price .sale {
  font-weight: 700;
  color: var(--global-color); }

.product-txt .price .old {
  font-weight: 400;
  text-decoration: line-through;
  color: #667085; }

.product .tag {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem; }

.product .compare {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem; }

.product .add-to-cart {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  color: var(--global-color); }

.product .color .vrt-color.do, .compare-pop .color.color-do .color-circle {
  background: #ff0000; }

.product .color .vrt-color.vang, .compare-pop .color.color-vang .color-circle {
  background: #ffff05; }

.product .color .vrt-color.cam, .compare-pop .color.color-cam .color-circle {
  background: #f5b505; }

.product .color .vrt-color.xanh-duong, .compare-pop .color.color-xanh-duong .color-circle {
  background: #5100ff; }

.product .color .vrt-color.xanh-la, .compare-pop .color.color-xanh-la .color-circle {
  background: #3cfa08; }

.product .color .vrt-color.nau, .compare-pop .color.color-nau .color-circle {
  background: #753a3a; }

.product .color .vrt-color.xam, .compare-pop .color.color-xam .color-circle {
  background: #cccaca; }

.product .color .vrt-color.tim, .compare-pop .color.color-tim .color-circle {
  background: #b5129a; }

.product .color .vrt-color.hong, .compare-pop .color.color-hong .color-circle {
  background: #db999b; }

.product .color .vrt-color.den, .compare-pop .color.color-den .color-circle {
  background: #000000; }

.product .color .vrt-color.xanh, .compare-pop .color.color-xanh .color-circle {
  background: #002fff; }

.product .color {
  margin-top: 0.875rem;
  margin-bottom: 1.25rem;
  min-height: .5rem; }

.product:hover .product-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

.article-banner {
  display: flex;
  flex-direction: column; }

.article-banner--img {
  width: 100%;
  aspect-ratio: 361/341; }

.article-banner--img img {
  width: 100%;
  height: 100%; }

.article-banner--txt {
  padding: 1.25rem;
  background: linear-gradient(180deg, #015aab 0%, #82c3ff 109.43%);
  color: #fff; }

.article-banner--txt .title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0; }

.article-banner--txt .btn-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282930; }

.article-banner--txt .btn-arrow svg {
  width: 0.75rem;
  height: 0.5625rem; }

.article-banner a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit; }

.project {
  position: relative;
  width: auto;
  width: 100%;
  display: flex;
  flex-direction: column; }

.project.project-big .name {
  font-size: 1.5rem; }

.project.project-big .but-link {
  margin-top: 1.5rem; }

.project-img {
  line-height: 0;
  width: 100%;
  height: auto;
  line-height: 0;
  margin-bottom: 1.25rem; }

.project-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; }

.project-txt {
  display: flex;
  flex-direction: column; }

.project-txt .sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000; }

.project-txt .sub .date {
  font-weight: 400;
  color: #475467; }

.project-txt .name {
  color: #000;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-top: 0.75rem; }

.project-txt .text {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.5rem; }

.project-txt .but-link {
  color: #015aab;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1.25rem;
  font-family: "Montserrat", sans-serif; }

.project-txt .but-link svg {
  width: 0.8125rem;
  height: 0.5rem;
  margin-left: 0.5rem; }

.tag-item {
  font-weight: 500;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
  background-color: #FF0000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 1.375rem;
  padding: 0 0.625rem;
  font-size: 0.75rem; }

.tag-item svg {
  width: 0.75rem;
  height: 1rem; }

.compare-item {
  font-weight: 500;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer; }

.compare-item svg {
  width: 0.5rem;
  height: 0.5rem; }

.add-to-cart {
  font-weight: 500;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer; }

.add-to-cart svg {
  width: 0.5rem;
  height: 0.5rem; }

.color {
  display: flex;
  gap: 0.375rem; }

.color li {
  width: 0.6rem;
  height: 0.6rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #ebebeb; }

.card {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  margin: 0 auto;
  padding: 1.875rem; }

.card-img {
  display: flex;
  width: 6.25rem;
  height: 6.25rem;
  line-height: 0;
  margin: 0 auto;
  margin-bottom: 1.25rem;
  align-items: center;
  justify-content: center; }

.card-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; }

.card-txt h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  min-height: 2.8rem; }

.card-txt .price {
  color: var(--global-color);
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.875rem; }

.card:hover .card-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

.block-nav {
  display: flex;
  gap: clamp(4px, 0.25rem, 0.25rem); }

.nav-prev,
.nav-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.36);
  cursor: pointer; }

.nav-prev svg,
.nav-next svg {
  width: 0.5rem;
  height: 1rem; }

.nav-prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1); }

.nav-overlay li {
  margin-bottom: 1.25rem; }

.nav-overlay li.current a,
.nav-overlay li.current span {
  font-weight: 700;
  color: white; }

.nav-overlay li.current a::before,
.nav-overlay li.current span::before {
  width: 100%; }

.nav-overlay a,
.nav-overlay span {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
  cursor: pointer; }

.nav-overlay a::before,
.nav-overlay span::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  -webkit-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out; }

.nav-overlay a:hover,
.nav-overlay span:hover {
  font-weight: 700;
  color: white; }

.nav-overlay a:hover::before,
.nav-overlay span:hover::before {
  width: 100%; }

.article {
  position: relative;
  width: 100%; }

.article-img {
  width: 100%;
  height: auto;
  line-height: 0;
  overflow: hidden; }

.article-img img {
  width: 100%;
  height: auto;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out; }

.article-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 400;
  z-index: 1;
  padding: 0 1.875rem 1.875rem 1.875rem;
  color: #fff; }

.article-txt p {
  margin-bottom: 0.625rem; }

.article-txt h3 {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.266666667;
  color: #fff;
  margin-bottom: 0.9375rem; }

.article.g-blue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--g-blue);
  z-index: 1; }

.article:hover .article-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

.tab {
  width: 100%;
  height: auto;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #d0d5dd; }

.tab-list {
  display: flex;
  justify-content: center;
  gap: 2rem; }

.tab-item {
  font-size: 1rem;
  color: #667085;
  font-weight: 500;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding: 1.25rem 0;
  position: relative; }

.tab-item a {
  color: #667085; }

.tab-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #000;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out; }

.tab-item.current, .tab-item:active {
  color: #000; }

.tab-item.current a, .tab-item:active a {
  color: #000; }

.tab-item.current::after, .tab-item:active::after {
  width: 100%; }

.paging {
  width: 100%; }

.paging_box, .paging_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px; }

.paging-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.333333333;
  letter-spacing: 0;
  color: #667085;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out; }

.paging-item a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center; }

.paging-item.active:not(.hellip), .paging-item:active:not(.hellip) {
  background-color: var(--global-color);
  color: #fff; }

.paging-next, .paging-prev {
  color: #282930;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center; }

.paging-next svg, .paging-prev svg {
  width: 0.75rem;
  height: 0.75rem; }

.img_txt,
.txt_img {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.img_txt .img,
.img_txt .txt,
.txt_img .img,
.txt_img .txt {
  flex: 0 0 50%;
  max-width: 50%; }

.img_txt .img,
.txt_img .img {
  line-height: 0;
  aspect-ratio: 1/1; }

.img_txt .img img,
.txt_img .img img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover; }

.img_txt .txt,
.txt_img .txt {
  padding: 0 5rem; }

.img_txt .txt .title_block,
.txt_img .txt .title_block {
  margin-bottom: 1.5625rem; }

.img_txt .detail_block,
.txt_img .detail_block {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5; }

.img_txt .detail_block *:not(:last-child),
.txt_img .detail_block *:not(:last-child) {
  margin-bottom: 1.5625rem; }

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(var(--mask-direction, to right), transparent, black 10%, black 90%, transparent);
  padding: 0.9375rem 0; }

.marquee__ctn {
  display: flex;
  width: 100%; }

.marquee__track {
  display: flex; }

.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px;
  margin-inline-end: 3rem; }

.marquee__item img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  filter: brightness(100%); }

.parent-sticky {
  overflow: visible; }

.parent-sticky .has-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 5rem;
  z-index: 1; }

@supports (-webkit-touch-callout: none) {
  .marquee__ctn {
    transform: translate3d(0, 0, 0) scale(1);
    perspective: 1px; } }

@media screen and (min-width: 1025px) {
  .paging-item:hover {
    background-color: var(--global-colorA);
    color: #fff; }
  .tab-item:hover {
    color: #000; }
  .tab-item:hover::after {
    width: 100%; } }

.empty-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.125rem 2.5rem;
  gap: 1.125rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0; }

.empty-block svg {
  width: 1.25rem;
  height: 1.25rem; }

@media screen and (max-width: 1023px) {
  .parent-sticky .has-sticky {
    top: 2.8125rem; }
  .empty-block {
    padding: 4.125rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
  .nav-overlay {
    display: flex;
    gap: 1.25rem; }
  .nav-overlay li {
    margin-bottom: 0; }
  .nav-overlay li a,
  .nav-overlay li span {
    font-size: 0.875rem; }
  .article-txt {
    font-size: 1.25rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .article-txt h3 {
    font-size: 1.25rem; }
  .product {
    padding: 1.25rem 0.625rem; }
  .product-img {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem; }
  .product-txt .model {
    font-size: 0.625rem; }
  .product-txt .name {
    font-size: 0.875rem; }
  .product-txt .price {
    font-size: 0.75rem; }
  .article-banner--img {
    aspect-ratio: 242/257; }
  .article-banner--txt {
    padding: 0.875rem;
    color: #fff; }
  .article-banner--txt .title {
    font-size: 0.875rem; }
  .article-banner--txt .btn-arrow {
    width: 1.4375rem;
    height: 1.4375rem;
    margin-top: 0.5rem; }
  .article-banner--txt .btn-arrow svg {
    width: 0.5625rem;
    height: 0.4375rem; }
  .mini-title {
    font-size: 1.25rem; }
  .card-img {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.375rem; }
  .card-txt h3 {
    font-size: 0.875rem;
    line-height: 1.6; }
  .project.project-big .name {
    font-size: 1rem; }
  .project.project-big .but-link {
    margin-top: 1.25rem; }
  .project-img {
    width: 100%;
    aspect-ratio: 343/220;
    margin-bottom: 1.25rem; }
  .project-txt {
    display: flex;
    flex-direction: column; }
  .project-txt .name {
    font-size: 1rem;
    margin-top: 0.75rem; }
  .project-txt .text {
    font-size: 0.875rem; }
  .project-txt .but-link {
    font-size: 0.875rem;
    margin-top: 1.25rem; }
  .project-txt .but-link svg {
    width: 0.8125rem;
    height: 0.5rem;
    margin-left: 0.5rem; }
  .mobile-scroll {
    display: block;
    margin: 0 auto;
    width: calc(100% - 2rem);
    height: auto;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scrollbar-color: #7d7d7d #fff; }
  .tab-list {
    white-space: nowrap;
    justify-content: flex-start;
    gap: 1.375rem; }
  .img_txt .txt,
  .img_txt .img,
  .txt_img .txt,
  .txt_img .img {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%; }
  .img_txt .txt,
  .txt_img .txt {
    padding: 5.3125rem 1rem; }
  .img_txt .detail_block,
  .txt_img .detail_block {
    font-size: 0.875rem; }
  .img_txt {
    flex-direction: column-reverse; } }

.loading__box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: none; }

.loading__box.active {
  display: block; }

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
  border: 8px solid #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border-top: 8px solid #fff;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 0.5s linear infinite;
  animation: spin 0.5s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.subscribe {
  margin-top: 7.5rem;
  position: relative;
  width: 100%;
  padding: 5.25rem 3.375rem 5.25rem 10rem;
  overflow: visible;
  background: linear-gradient(180deg, #015AAB 0%, #82C3FF 109.43%), linear-gradient(0deg, #FFFFFF, #FFFFFF); }

.subscribe_wrap {
  display: flex;
  width: 100%; }

.subscribe_block {
  color: #fff;
  font-size: 1rem;
  font-weight: 500; }

.subscribe_block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem; }

.subscribe_form {
  width: 27.25rem;
  height: 3rem;
  display: flex;
  margin-top: 2.1875rem; }

.subscribe_form .subscribe-input {
  flex-grow: 1;
  background-color: #fff;
  -webkit-border-radius: 0.5rem 0 0 0.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  color: #4D4A4F;
  font-weight: 400;
  padding: 0 1rem;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #D1D1D1;
  font-size: 0.875rem; }

.subscribe_form .subscribe-input::placeholder {
  color: #4D4A4F; }

.subscribe_form .link-but {
  width: 3.5rem;
  height: 100%;
  -webkit-border-radius: 0 0.5rem 0.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0; }

.subscribe_img {
  position: absolute;
  right: 3.375rem;
  top: -4.375rem;
  width: 36.3125rem;
  line-height: 0; }

.subscribe_img img {
  width: 100%;
  height: auto; }

@media screen and (max-width: 1023px) {
  .subscribe {
    padding: 2.25rem 0.9375rem 0 0.9375rem;
    margin-top: 1.85rem; }
  .subscribe_wrap {
    display: flex;
    flex-direction: column; }
  .subscribe_block {
    font-size: 0.875rem; }
  .subscribe_block h2 {
    font-size: 1.25rem; }
  .subscribe_form {
    width: 100%;
    margin-bottom: 4rem; }
  .subscribe_img {
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: -32%;
    width: 93.733333333%; } }

.noScroll {
  height: 100%;
  overflow: hidden; }

.footer {
  position: relative;
  background-color: var(--global-color-dark);
  color: #fff;
  padding: 4.125rem 2.5rem 0 2.5rem; }

.footer-top {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2.1875rem; }

.footer-col {
  flex: 0 0 50%;
  max-width: 50%; }

.footer-nav li {
  display: flex;
  align-items: center;
  gap: 0.75rem; }

.footer-nav li:not(:last-child) {
  margin-bottom: 1.25rem; }

.footer-nav a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem; }

.footer-nav .arrow {
  display: flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center; }

.footer-nav .arrow svg {
  width: 0.25rem;
  height: 0.5rem; }

.footer-logo {
  display: block;
  width: 11.625rem;
  line-height: 0;
  margin-bottom: 3.125rem; }

.footer-logo img {
  width: 100%;
  height: auto; }

.footer .company-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2.1875rem;
  line-height: 1.6; }

.footer .company-contact li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.571428571;
  font-weight: 500; }

.footer .company-contact li:not(:last-child) {
  padding-bottom: 1.125rem; }

.footer .company-contact--icon {
  display: flex;
  flex: 0 0 1.25rem;
  max-width: 1.25rem;
  height: 1.25rem; }

.footer .company-contact--icon svg {
  width: 100%;
  height: 100%; }

.footer-bot {
  display: flex;
  align-items: center;
  padding: 1.375rem 0; }

.footer-bot .copyright {
  font-size: 0.875rem;
  font-weight: 500; }

.footer .follow-box {
  display: flex;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 500;
  align-items: center;
  gap: 1.25rem; }

.footer .social-list {
  display: flex;
  align-items: center;
  gap: 0.75rem; }

.footer .social-list a {
  display: block;
  line-height: 0;
  width: 2rem; }

.footer .social-list a img {
  width: 100%;
  height: auto; }

.footer-widget {
  position: fixed;
  z-index: 10;
  bottom: 2.8125rem;
  right: 1.0625rem; }

.footer-widget .widget-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px; }

.footer-widget .widget-icon svg {
  width: 100%;
  height: 100%; }

@media screen and (max-width: 1023px) {
  .footer {
    padding: 2.5rem 0.9375rem 0 0.9375rem; }
  .footer-top {
    flex-wrap: wrap;
    padding-bottom: 1.625rem; }
  .footer-col {
    flex: 0 0 100%;
    max-width: 100%; }
  .footer-nav {
    padding-bottom: 1.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.875rem; }
  .footer-logo {
    margin-bottom: 1.875rem; }
  .footer .company.current .company-name .arrow {
    transform: rotate(0deg); }
  .footer .company.current .company-contact {
    opacity: 1;
    margin-top: 1.875rem; }
  .footer .company-name {
    margin-bottom: 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem; }
  .footer .company-name .arrow {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    transition: rotate 0.3s ease; }
  .footer .company-name .arrow svg {
    width: 0.25rem;
    height: 0.5rem; }
  .footer .company-contact {
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .footer-bot {
    flex-direction: column-reverse; }
  .footer-bot .follow-box {
    padding-top: 1.25rem;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 1.25rem; }
  .footer-bot .copyright {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.666666667; }
  .footer-widget {
    bottom: 70px;
    right: 10px; }
  .footer-widget .widget-icon {
    margin-bottom: 5px; } }

body {
  font-family: "Montserrat", sans-serif; }

.empty-product-search {
  grid-template-columns: repeat(1, 1fr) !important; }

.zalo-chat-widget {
  transform: scale(0.8) !important;
  right: 8px !important;
  width: auto !important;
  height: auto !important;
  min-width: 60px !important;
  min-height: 60px !important;
  bottom: 2.8125rem !important;
  z-index: 9 !important; }

@media screen and (max-width: 1023px) {
  .zalo-chat-widget {
    right: 0px !important;
    bottom: 66px !important; } }

/* NOTIFICATION PRODUCT */
.jGrowl.top-right {
  right: 0;
  top: 16%; }

.jGrowl .jGrowl-notification {
  position: relative;
  background: #ffffff;
  border: 0;
  opacity: 1;
  width: 270px;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3); }

.jGrowl .jGrowl-notification:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.jGowl-heading {
  display: block; }

.jGowl-left {
  width: 30%; }

.jGowl-right {
  width: 70%;
  padding-left: 5px; }

.jGrowl-message .row {
  display: flex;
  flex-wrap: wrap; }

.jGrowl-message .jGowl-text {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--global-color); }

.jGrowl-message img {
  border: 1px solid #ececec; }

.jGrowl-message .jGrowl-note .jGrowl-title {
  font-size: 13px;
  color: #000; }

.jGrowl-message .jGrowl-note ins {
  display: block;
  color: var(--global-color); }

.jGrowl-message .col-md-8 {
  padding-left: 0; }

.jGrowl-notification .jGrowl-close {
  font-size: 0px;
  color: #ffffff;
  background-color: var(--global-color);
  position: absolute;
  right: 6px;
  z-index: 99;
  border: none;
  float: right;
  font-weight: 700;
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 14px;
  border-radius: 50%; }
  .jGrowl-notification .jGrowl-close:focus {
    outline: none; }

.jGrowl-notification .jGrowl-close:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 0px;
  top: 0px;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' x='0px' y='0px' viewBox='0 0 1000 1000' enable-background='new 0 0 1000 1000' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M638.6,500l322.7-322.7c38.3-38.3,38.3-100.3,0-138.6C923,0.4,861,0.4,822.7,38.7L500,361.4L177.3,38.7C139,0.4,77,0.4,38.7,38.7C0.4,77,0.4,139,38.7,177.3L361.4,500L38.7,822.7C0.4,861,0.4,923,38.7,961.3C57.9,980.4,82.9,990,108,990s50.1-9.6,69.3-28.7L500,638.6l322.7,322.7c19.1,19.1,44.2,28.7,69.3,28.7c25.1,0,50.1-9.6,69.3-28.7c38.3-38.3,38.3-100.3,0-138.6L638.6,500z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

.jGrowl .jGrowl-closer.ui-corner-all {
  display: none !important; }

/*@media(max-width:991px){	div#jGrowl {display: none;}}*/
.btncart-checkout[data-check="0"] {
  opacity: .65;
  pointer-events: none; }

/* Simple Windows-style Loading Spinner */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease; }

.loading-overlay.hidden {
  display: none; }

.loading-overlay.fade-out {
  opacity: 0; }

.loading-overlay-module {
  position: relative; }

.loading-container {
  position: relative;
  width: 40px;
  height: 40px; }

.loading-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid #e3e3e3;
  border-top: 4px solid #015aab;
  border-radius: 50%;
  animation: spin 1s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@media (prefers-color-scheme: dark) {
  .loading-overlay {
    background: rgba(0, 0, 0, 0.9); }
  .loading-container::before {
    border-color: #444;
    border-top-color: #015aab; } }

@media (max-width: 768px) {
  .loading-container {
    width: 32px;
    height: 32px; }
  .loading-container::before {
    border-width: 3px; } }

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0s ease-in-out;
  transition-delay: 0s;
  padding: 0.5em 2.5rem 0;
  overflow: hidden; }

.popup.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s; }

.popup-inr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px; }

.popup-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border: 1px solid #D7D7D7;
  box-shadow: 0px 4px 14px 0px rgba(191, 191, 191, 0.239216);
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  cursor: pointer; }

.popup-close img {
  width: 1.5rem;
  height: a; }

.popup-mess {
  position: relative;
  width: 90%;
  max-width: 31.25rem;
  background-color: #fff;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 2.8125rem; }

.mess-icon {
  width: 3.625rem;
  height: auto;
  line-height: 0;
  margin: 0 auto 1.25rem auto; }

.mess-icon img {
  width: 100%;
  height: auto; }

.mess-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.25rem; }

.mess-content {
  font-size: 1rem;
  font-weight: 400;
  text-align: center; }
  .mess-content a {
    font-weight: 600;
    color: var(--global-color); }

.compare-pop {
  background-color: #fff;
  width: 90%;
  max-width: 75.375rem;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  padding: 1.875rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column; }

.compare-pop .product {
  padding: 0; }

.compare-pop .product-img {
  border-bottom: 1px solid #D0D5DD;
  margin-bottom: 1.25rem;
  width: 100%;
  overflow: hidden; }

.compare-pop .product-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center; }

.compare-pop .product-close svg {
  width: 0.875rem;
  height: 0.875rem; }

.compare-pop .product-txt .model {
  margin-top: 0; }

.compare-pop .product-txt .name {
  margin-top: 0.375rem;
  margin-bottom: 1.5625rem; }

.compare-pop .product-cart .link-but {
  width: 100%;
  justify-content: center; }

.compare-pop .product-cart .link-but svg {
  width: 1.125rem;
  height: 1.125rem; }

.compare-pop .price {
  display: flex;
  font-size: 1rem;
  gap: 0.625rem; }

.compare-pop .price-main {
  color: #015AAB;
  font-weight: 600; }

.compare-pop .price-sale {
  color: #667085;
  font-weight: 400;
  text-decoration: line-through; }

.compare-pop .price-tag {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 0.75rem;
  background-color: #FF0000;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 0.125rem 0.625rem; }

.compare-pop .price-tag svg {
  width: 0.625rem;
  height: 0.8125rem; }

.compare-pop .size,
.compare-pop .material,
.compare-pop .cate {
  font-size: 1rem;
  font-weight: 400;
  color: #101828; }

.compare-pop .color {
  display: inline-flex;
  font-size: 1rem;
  justify-content: center;
  gap: 0.625rem;
  margin-right: 15px;
  margin-top: 1px; }

.compare-pop .color-circle {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  min-height: 1.125rem;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: 0.075rem; }

.compare-title {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600; }

.compare-title .popup-close {
  position: static; }

.compare-content {
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: #7d7d7d #fff; }

.compare-row {
  display: flex;
  padding: 1.875rem 0; }

.compare-row:not(:last-child) {
  border-bottom: 1px solid #E4E4E4; }

.compare-name {
  background-color: #C7E1FF;
  flex: 0 0 8.25rem;
  max-width: 8.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  padding: 1.5625rem 0; }

.compare-data {
  flex: 0 0 calc(100% - 8.25rem);
  max-width: calc(100% - 8.25rem);
  display: grid;
  padding-left: 2.5rem;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr); }

.compare-col {
  display: inline-flex;
  align-items: center; }

.popup-cart {
  position: relative;
  width: 90%;
  max-width: 51.625rem;
  padding: 2.5rem;
  background-color: #fff;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem; }

.popup-cart .popup-close {
  z-index: 1; }

.popup-cart .product {
  flex-direction: row;
  padding: 0; }

.popup-cart .product .tag {
  position: static; }

.popup-cart .product-img {
  flex: 0 0 19.375rem;
  max-width: 19.375rem;
  height: auto;
  margin: 0; }

.popup-cart .product-img img {
  width: 100%;
  height: auto; }

.popup-cart .product-txt {
  display: block;
  flex: 0 0 calc(100% - 19.375rem);
  max-width: calc(100% - 19.375rem);
  padding-left: 2.5rem; }

.popup-cart .product-txt .cart_action {
  width: 100%;
  max-width: 100%;
  flex-direction: row; }

.popup-cart .product-txt .model {
  margin: 0 0 0.75rem 0; }

.popup-cart .product-txt .name {
  margin: 0 0 1rem 0;
  font-size: 1.25rem; }

.popup-cart .product-txt .price {
  margin: 0 0 1.25rem 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #D0D5DD;
  font-size: 1rem; }

.popup-cart .product-txt .color {
  margin: 0 0 0.375rem 0; }

.popup-cart .product-txt .color-list {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 1.25rem; }

.popup-cart .product-txt .color-item {
  position: relative;
  flex: 0 0 3.75rem;
  max-width: 3.75rem;
  height: 3.75rem;
  padding: 3px;
  background-color: #F0F0F0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

.popup-cart .product-txt .color-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--global-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.popup-cart .product-txt .color-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%; }

.popup-cart .product-txt .color-item.current::before, .popup-cart .product-txt .color-item:hover::before {
  opacity: 1; }

.popup-cart .product .cart_action {
  gap: 0.5rem; }

.popup-cart .product .cart_action .link-but,
.popup-cart .product .cart_action .cart_control {
  height: 2.75rem; }

.popup-cart .product .cart_action .cart_add {
  flex-grow: 1; }

.popup-cart .product .cart_action .cart_add .link-but {
  width: 100%;
  justify-content: center; }

.popup-cart .product .cart_action .cart_add .link-but svg {
  width: 1.25rem;
  height: 1.25rem; }

.popup-cart .product .cart_action .cart_control {
  flex: 0 0 7.25rem;
  max-width: 7.25rem; }

@media screen and (max-width: 1023px) {
  .popup-close {
    top: 0.625rem;
    right: 0.625rem; }
  .popup#comparePop {
    padding: 0; }
  .popup#comparePop .popup-inr {
    align-items: flex-start;
    background-color: #fff; }
  .popup#addToCartPop {
    padding: 0; }
  .popup#addToCartPop .popup-inr {
    justify-content: flex-end; }
  .popup-mess {
    width: calc(100% - 2rem);
    padding: 1.875rem; }
  .mess-title {
    font-size: 1.25rem; }
  .mess-content {
    font-size: 0.875rem; }
  .compare-pop {
    width: 100%;
    max-width: 100%;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 0;
    height: 100%;
    max-height: 100%;
    padding: 0; }
  .compare-pop .product-txt .model {
    font-size: 0.625rem; }
  .compare-pop .product-txt .name {
    font-size: 0.75rem; }
  .compare-pop .product-cart .link-but {
    width: 100%;
    justify-content: center;
    font-size: 0; }
  .compare-pop .product-cart .link-but svg {
    width: 1.5rem;
    height: 1.5rem; }
  .compare-pop .price {
    display: block;
    font-size: 0.75rem; }
  .compare-pop .price-main, .compare-pop .price-sale {
    display: block;
    margin-bottom: 0.375rem; }
  .compare-pop .size,
  .compare-pop .material,
  .compare-pop .cate {
    padding: 2.1875rem 0;
    font-size: 0.75rem; }
  .compare-title {
    font-size: 1.25rem;
    padding: 0 1rem;
    height: 4.375rem;
    min-height: 4.375rem;
    border-bottom: 1px solid #D9D9D9; }
  .compare-title .popup-close {
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    box-shadow: none; }
  .compare-content {
    overflow: hidden;
    overflow: auto; }
  .compare-row {
    padding: 1.125rem 0;
    border: none; }
  .compare-row:not(:last-child) {
    border: none; }
  .compare-name {
    flex: 0 0 2.125rem;
    max-width: 2.125rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    position: relative;
    position: sticky;
    position: -webkit-sticky;
    left: 0;
    z-index: 2; }
  .compare-name::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #E4E4E4;
    left: 0;
    bottom: -1.125rem; }
  .compare-name span {
    position: absolute;
    top: 50%;
    left: -0.625rem;
    white-space: nowrap;
    display: inline-flex;
    width: 4.375rem;
    -webkit-transform: rotate(-90deg) translateY(-50%);
    transform: rotate(-90deg) translateY(-50%);
    justify-content: center; }
  .compare-data {
    display: flex;
    padding: 0;
    gap: 0; }
  .compare-col {
    position: relative;
    flex: 0 0 8.875rem;
    max-width: 8.875rem;
    margin-left: 0.875rem;
    min-height: 7.5rem; }
  .compare-col::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #E4E4E4;
    left: 0;
    bottom: -1.125rem; }
  .popup-cart {
    width: 100%;
    max-width: 480px;
    padding: 1rem; }
  .popup-cart .product {
    display: block; }
  .popup-cart .product-img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.25rem; }
  .popup-cart .product-txt {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0; }
  .popup-cart .product-txt .price {
    border: none; } }

/* Book look */
.flipbook-sec .flipbook {
  position: relative; }

.flipbook-sec .page {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

.flipbook-sec .flipbook:before,
.flipbook-sec .flipbook:after {
  content: "";
  position: absolute;
  top: 5%;
  bottom: 5%;
  width: 30px;
  z-index: 0;
  filter: blur(8px);
  opacity: .35; }

.flipbook-sec .flipbook:before {
  left: -15px;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25); }

.flipbook-sec .flipbook:after {
  right: -15px;
  box-shadow: 20px 0 40px rgba(0, 0, 0, 0.25); }

.flipbook-sec .turn-page {
  cursor: grab; }

.flipbook-sec .turn-page:active {
  cursor: grabbing; }

#btnnewreview {
  background: #015aab !important;
  cursor: pointer; }
