﻿@charset "UTF-8";
@font-face {
  font-family: "AvertaStdCY-Bold_1";
  src: url("../webfonts/AvertaStdCY-Bold_1.otf") format("opentype");
}
@font-face {
  font-family: "AvertaStdCY-Extrabold_1";
  src: url("../webfonts/AvertaStdCY-Extrabold_1.otf") format("opentype");
}
@font-face {
  font-family: "AvertaStdCY-Regular_3";
  src: url("../webfonts/AvertaStdCY-Regular_3.otf") format("opentype");
}
@font-face {
  font-family: "AvertaStdCY-Semibold_1";
  src: url("../webfonts/AvertaStdCY-Semibold_1.otf") format("opentype");
}
.font-semi-bold {
  font-family: "AvertaStdCY-Semibold_1";
}

.font-bold-big {
  font-family: "AvertaStdCY-Extrabold_1";
}

.font-bold {
  font-family: "AvertaStdCY-Bold_1";
}

.font-normal {
  font-family: "AvertaStdCY-Regular_3";
}

/*@import "bs/grid";*/
/*@import "bs/forms";
@import "bs/buttons";*/
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

/*@import "bs/dropdown";*/
/*@import "bs/media";*/
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
/*@import "bs/utilities";*/
/*@import "variable.scss";*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  /*max-width: 1920px;*/
  margin: auto !important;
  font-family: "AvertaStdCY-Regular_3";
  /*overflow: hidden;*/
}

.container {
  max-width: 1464px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

a,
a:hover,
a:active {
  outline: none;
  text-decoration: none;
  color: inherit;
}

a:focus, input {
  outline: none;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: inherit;
  text-align: left;
}

input, button {
  -webkit-appearance: none;
  font-size: inherit;
}
input[type=radio], button[type=radio] {
  -webkit-appearance: radio;
}
input[type=checkbox], button[type=checkbox] {
  -webkit-appearance: checkbox;
}
input[type=submit], button[type=submit] {
  cursor: pointer;
}
input:focus, button:focus {
  box-shadow: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea {
  font-family: inherit;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.truncate-h {
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

[data-line="1"] {
  -webkit-line-clamp: 1;
}

[data-line="2"] {
  -webkit-line-clamp: 2;
}

[data-line="3"] {
  -webkit-line-clamp: 3;
}

[data-line="4"] {
  -webkit-line-clamp: 4;
}

a, img, span {
  transition: all 0.2s;
}

img {
  font-size: 0.7rem !important;
}

.ul-reset, .ul-block {
  margin: 0;
  padding: 0;
}

.ul-reset {
  display: flex;
  align-items: center;
}

.ul-block {
  display: block;
}

.flex-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

strong, b {
  font-family: "AvertaStdCY-Bold_1";
}

.content-detail p, .content-detail span {
  text-align: justify;
  font-size: 1rem;
  line-height: 24px;
  color: #000;
  margin-bottom: 1rem;
}
.content-detail img {
  max-width: 100%;
  height: auto !important;
}
.content-detail h1, .content-detail h2 {
  font-size: 1.25rem;
}
.content-detail h3 {
  font-size: 1.125rem;
}
.content-detail h4, .content-detail h5, .content-detail h6 {
  font-size: 1rem;
}
.content-detail hr {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.content-detail table {
  max-width: 100%;
}
.content-detail a {
  color: #0072F8;
}
.content-detail a:hover {
  color: #FFB600;
}

.no-before:before {
  display: none;
}

.btn-style {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #009B4D;
  color: #fff;
  transition: all 0.2s;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #009B4D;
  white-space: nowrap;
}
.btn-style:hover {
  box-shadow: 0 12px 24px -10px rgba(21, 59, 93, 0.15);
  transform: scale(0.98);
  color: #fff;
  background: #018c46;
  border-color: #018c46;
}
.btn-style:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-style:disabled:hover {
  box-shadow: none;
  transform: scale(1);
}
.btn-style.disable-hover:hover {
  box-shadow: none;
  transform: scale(1);
}
.btn-style img {
  transition: all 0.2s;
}
.btn-style.isFollow {
  background: #fff;
  color: #009B4D;
}

.btn-style--circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
}
.btn-style--circle:hover {
  box-shadow: none;
}

.btn-style--hover {
  transition: all 0.3s !important;
}
.btn-style--hover:hover {
  box-shadow: none;
  background: #FFB600;
  border-color: #FFB600;
}

.btn-style--transparent {
  background: none;
  color: #009B4D;
}
.btn-style--transparent:hover {
  background: none;
  color: #009B4D;
}
.btn-style--transparent.bg-white:hover {
  background: #fff;
}
.btn-style--transparent.black {
  color: #23262F;
  border-color: #777E91;
}

.btn-style--warning {
  background: #FFB600;
  border-color: #FFB600;
}
.btn-style--warning:hover {
  background: #FFB600;
  color: #fff;
  border-color: #FFB600;
}

.btn-style--danger {
  background: #F80000;
  border-color: #F80000;
}
.btn-style--danger:hover {
  background: #F80000;
  color: #fff;
  border-color: #F80000;
}

.btn-edit {
  background: #fff;
  border-color: #FFB600;
  color: #FFB600;
}
.btn-edit:hover {
  background: #fff;
  transform: scale(0.95);
  border-color: #FFB600;
  color: #FFB600;
}

.btn-delete {
  background: #fff;
  border-color: #F80000;
  color: #F80000;
}
.btn-delete:hover {
  background: #fff;
  transform: scale(0.95);
  border-color: #F80000;
  color: #F80000;
}

.bg-main {
  background: #009B4D;
  color: #fff;
}

.border {
  border: 1px solid #e2e3e5;
}

.jq-icon-success {
  background-size: 16px;
  position: relative;
  background-position-x: 16px;
  background-position-y: 14px;
  font-family: "AvertaStdCY-Semibold_1";
}

.jq-icon-error {
  background-size: 16px;
  position: relative;
  background-position-x: 16px;
  background-position-y: 14px;
  font-family: "AvertaStdCY-Semibold_1";
  background-color: #b33939;
}

.jq-has-icon {
  padding: 14px 10px 11px 50px;
}

.jq-toast-loader {
  top: 0px;
  height: 3px;
}

.jq-icon-info {
  background-image: none;
  padding: 0.875rem 1rem;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  color: #777E91;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  position: relative;
  width: 280px;
  cursor: pointer;
  font-family: "AvertaStdCY-Regular_3";
}
.jq-icon-info .jq-toast-heading {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 1rem;
  color: #000;
  margin-bottom: 0.7rem;
  padding-left: 2.1rem;
}
.jq-icon-info .close-jq-toast-single {
  font-size: 22px;
}
.jq-icon-info:before {
  position: absolute;
  content: "";
  background: none;
  width: 30px;
  height: 30px;
  background-image: url(../image/logo-icon/favicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 8px;
  left: 14px;
}

.empty-box {
  text-align: center;
  color: #777E90;
}
.empty-box img {
  margin: auto;
  width: 250px;
}

.checkbox input[type=checkbox] + label .text-black {
  color: #000 !important;
  padding-left: 0.2rem !important;
  position: relative;
  top: 2px;
}

.checkbox input[type=checkbox]:checked:disabled + label::before {
  background-color: #B1B5C4 !important;
  border-color: #B1B5C4 !important;
}

.info-product-modal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.info-product-modal img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.875rem;
}
.info-product-modal__name {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.info-product-modal__price {
  color: #009B4D;
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.65rem;
}
.info-product-modal__price span {
  color: #B1B5C4;
  text-decoration: line-through;
  font-family: "AvertaStdCY-Regular_3";
  font-size: 1.25rem;
  margin-left: 0.875rem;
}
.info-product-modal__description {
  color: #777E91;
}

#addToCartVariant .group-property {
  display: block;
}
#addToCartVariant .product__title-description {
  margin-bottom: 0.875rem;
  color: #000;
  font-family: "AvertaStdCY-Semibold_1";
}
#addToCartVariant .btn-close {
  position: absolute;
  top: -15px;
  right: -8px;
}

.valid-size-common {
  position: relative;
  padding: 0 0.75rem;
}
.valid-size-common:before {
  position: absolute;
  content: "";
  background: #fff2f2;
  width: 100%;
  height: calc(100% + 18px);
  top: -10px;
  left: 0;
  z-index: -1;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.valid-size-common.show:before {
  opacity: 1;
  visibility: visible;
}
.valid-size-common .error-message {
  position: relative;
  z-index: 2;
}

div#divVariantCommon {
  position: relative;
  z-index: 3;
}

#app-preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  display: none;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
  background: rgba(33, 33, 33, 0.4588235294);
  color: #ffffff;
  transition: 0.3s ease-in-out;
  z-index: 9999999;
}

.show-loading #app-preloader {
  display: flex;
}

#app-preloader .preloader-spinner {
  position: fixed;
  left: calc(50vw - 16px);
  width: 32px;
  height: 32px;
  animation: preloader-spinner 0.5s linear infinite;
}

#app-preloader .preloader-spinner .preloader-spinner-icon {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
  stroke-width: 3px;
  stroke-dasharray: 314%, 314%;
  animation: preloader-spinner-icon-anim 1s linear infinite alternate;
}

#app-preloader-message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
#app-preloader-message img {
  height: 30px;
}

.note-adress-company {
  color: #FFB600;
  font-size: 0.75rem;
  position: relative;
  top: -8px;
}

.error-message-district-search.hidden {
  display: block;
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-logo-anim {
  0% {
    filter: opacity(0);
    transform: translateY(-30px);
  }
  100% {
    filter: opacity(1);
    transform: translateY(0);
  }
}
@keyframes preloader-title-anim {
  0% {
    filter: opacity(0);
  }
  100% {
    filter: opacity(1);
  }
}
@keyframes preloader-spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader-spinner-icon-anim {
  0% {
    stroke-dasharray: 0%, 314%;
  }
  100% {
    stroke-dasharray: 314%, 314%;
  }
}
.item-gallery-grid {
  position: relative;
  min-height: 43px;
  stroke-dasharray: 5;
  border-radius: 5px;
  height: 225px;
  border: 1px dashed #777E91;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-img {
  text-align: center;
  line-height: 18px;
}
.upload-img img {
  padding: 1.5rem;
  border-radius: 3px;
  background: #f8fcff;
  width: 130px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden-upload {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 200px !important;
  opacity: 0;
  height: 100% !important;
}

.checkbox input[type=checkbox] + label {
  display: flex;
  margin: 0 0.2em;
  cursor: pointer;
  padding: 0.2em;
  font-size: 1rem;
  font-family: "AvertaStdCY-Regular_3";
}
.checkbox input[type=checkbox] + label span {
  color: #777E91;
  padding-left: 0.4rem;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + label::before {
  content: "✓";
  border: 1px solid #777E91;
  border-radius: 4px;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
  color: transparent;
  transition: all 0.2s;
  position: relative;
  top: 3px;
  margin-right: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox input[type=checkbox] + label:active::before {
  transform: scale(0);
}
.checkbox input[type=checkbox]:checked + label::before {
  background: #009B4D;
  border-color: #009B4D;
  color: #fff;
}
.checkbox input[type=checkbox]:disabled + label::before {
  transform: scale(1);
  border-color: #aaa;
}
.checkbox input[type=checkbox]:checked:disabled + label::before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination.hidden {
  display: none;
}
.pagination .pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin: 0 0.4rem;
  border: 1px solid #fff;
  background: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.pagination .pagination-item.active {
  background: #009B4D;
  color: #fff;
  border-color: #009B4D;
}
.pagination .pagination-item:first-child, .pagination .pagination-item:last-child {
  font-size: 1.25rem;
  color: #23262F;
}
.pagination .pagination-item:hover {
  border-color: #009B4D;
}
.pagination .pagination-item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pagination .pagination-item.disabled:hover {
  border-color: #777E91;
}
.pagination li {
  margin: 0 0.2rem;
}
.pagination a {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.875rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.pagination li.active a {
  background-color: #009B4D;
  border-color: #009B4D;
  color: #fff;
}
.pagination li.disabled a {
  opacity: 0.4;
  cursor: not-allowed;
}

.custom-input-number {
  border: 1px solid #B1B5C3;
  border-radius: 8px;
  padding: 0.4rem;
}
.custom-input-number input, .custom-input-number button {
  height: 26px;
  font-family: "AvertaStdCY-Semibold_1";
}
.custom-input-number button {
  width: 40px;
}
.custom-input-number input {
  width: 46px;
  text-align: center;
  border: 1px solid #B1B5C3;
  border-top: none;
  border-bottom: none;
}
.custom-input-number input::-webkit-outer-spin-button,
.custom-input-number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.check-radio input[type=radio] + label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "AvertaStdCY-Semibold_1";
}
.check-radio input[type=radio] {
  display: none;
}
.check-radio input[type=radio] + label:before {
  content: "✓";
  border: 1px solid #B1B5C4;
  border-radius: 0.2em;
  display: inline-block;
  font-size: 0.75rem;
  vertical-align: bottom;
  color: transparent;
  transition: all 0.2s;
  font-style: normal;
  text-align: left;
  padding-top: 2px;
  padding-right: 0.3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.check-radio input[type=radio] + label:active:before {
  transform: scale(0);
}
.check-radio input[type=radio]:checked + label:before {
  background: #009B4D;
  border-color: #009B4D;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-opacity: 1;
}
.check-radio input[type=radio]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}
.check-radio input[type=radio]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

header {
  border-bottom: 1px solid #e2e3e5;
  padding-bottom: 0.75rem;
}

.logo-main {
  width: 260px;
  margin-right: 1rem;
}

.logo-abc {
  width: 155px;
}

.bar-mobile {
  display: none;
  font-size: 1.125rem;
  width: 30px;
  text-align: right;
  position: relative;
  z-index: 2;
  transition: all 0.2s;
}

.select2-results__options {
  font-size: 0.9rem;
}

.menu-mobile {
  display: none;
}

.over-layout {
  display: none;
}

body.modal-open, body.show-drawer-market {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.header__top li {
  font-size: 0.875rem;
}
.header__top a, .header__top span {
  font-size: 0.875rem;
  cursor: pointer;
}
.header__top i {
  font-size: 1rem;
}
.header__icon li {
  margin-left: 1rem;
  position: relative;
}
.header__icon li:hover .ul-profile, .header__icon li:hover .not-logged-in {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.header__icon li.ml-2 {
  margin-left: 0.875rem;
}
.header__icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "AvertaStdCY-Semibold_1";
  height: 48px;
}
.header__icon .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #e2e3e5;
  transition: all 0.2s;
}
.header__icon .icon:hover {
  border-color: #009B4D;
}
.header__icon .go-market {
  background: #FEAC1C;
  color: #fff;
  width: auto;
  font-family: "AvertaStdCY-Semibold_1";
  border-radius: 50px;
  padding: 4px 22px;
}
.header__icon .go-market span {
  white-space: nowrap;
  font-size: 0.875rem;
}
.header__icon .go-market i {
  font-size: 0.875rem;
  position: relative;
  top: -1.5px;
}
.header__icon .select-location {
  background: white;
  color: #000;
  width: auto;
  font-family: "AvertaStdCY-Semibold_1";
  border-radius: 50px;
  border: 1px solid #e2e3e5;
  padding: 4px 22px;
  position: relative;
}
.header__icon .select-location span {
  white-space: nowrap;
  font-size: 0.875rem;
}
.header__icon .select-location i {
  font-size: 0.875rem;
  position: relative;
  top: -1.5px;
}
.header__icon .select-location img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__cart-total {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
  background: #F80000;
  color: #fff;
  font-size: 0.75rem;
}
.header__search {
  width: 600px;
  position: relative;
}
.header__search input {
  width: 100%;
  border: 1px solid #e2e3e5;
  padding: 0.6rem 1.5rem;
  border-radius: 48px;
  height: 48px;
  padding-right: 3.5rem;
  position: relative;
  z-index: 89;
  font-size: 0.95rem;
}
.header__search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background: url("/image/logo-icon/close-circle.svg") no-repeat;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.header__search input:focus::-webkit-search-cancel-button {
  opacity: 1;
  pointer-events: all;
}
.header__search input.dark::-webkit-search-cancel-button {
  filter: invert(1);
}
.header__search .btn-style {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 90;
}

.list-autocomplete {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 1px solid #E6E8EC;
  border-radius: 0px 0px 16px 16px;
  background: #fff;
  padding: 0 0 0.3rem 0;
  z-index: 88;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.list-autocomplete li {
  padding: 0.6rem 1.45rem;
  cursor: pointer;
  font-size: 0.95rem;
  margin-right: 0 !important;
  transition: all 0.1s;
}
.list-autocomplete li:first-child {
  margin-top: 1.8rem;
}
.list-autocomplete li:hover {
  background: #F4F5F6;
}
.list-autocomplete.show {
  opacity: 1;
  visibility: visible;
}

.drop-language {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.drop-language:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100px;
  height: 30px;
  right: 0;
  top: 0;
}
.drop-language:hover .ul-language {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.drop-language img {
  height: 16px;
}

.ul-language {
  position: absolute;
  top: 30px;
  right: 0;
  border: 1px solid #E6E8EC;
  box-shadow: 2px 4px 6px rgba(19, 19, 19, 0.06);
  border-radius: 8px;
  background: #fff;
  z-index: 99;
  transition: all 0.2s ease-in-out;
  min-width: 160px;
  padding: 0.2rem 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.ul-language:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  right: 14px;
}
.ul-language:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  right: 15px;
}
.ul-language li {
  font-size: 0.875rem;
  padding: 0.4rem 0.875rem;
  margin: 0;
  border-bottom: 1px solid #F4F5F6;
  cursor: pointer;
  transition: all 0.2s;
}
.ul-language li:last-child {
  border: none;
}
.ul-language li:hover {
  background: #E6F5ED;
}
.ul-language li:hover a {
  color: #009B4D;
}
.ul-language a {
  color: #000;
}

.group-search li {
  margin-right: 1.25rem;
}
.group-search a {
  font-size: 0.875rem;
}

.main-menu {
  overflow-x: auto;
}
.main-menu li {
  margin-right: 1.5rem;
  white-space: nowrap;
}
.main-menu a, .main-menu span {
  cursor: pointer;
  font-family: "AvertaStdCY-Semibold_1";
}
.main-menu a:hover, .main-menu span:hover {
  color: #FFB600;
}

.catalog {
  position: absolute;
  top: 145%;
  left: 0;
  border: 1px solid #E6E8EC;
  box-shadow: 2px 4px 6px rgba(19, 19, 19, 0.06);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  z-index: 99;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.catalog:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 40px;
  top: -40px;
  left: 0;
}
.catalog li {
  margin: 0.3rem 0;
}
.catalog li:hover > .sub-menu {
  left: 102%;
  opacity: 1;
  visibility: visible;
}
.catalog > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog > li i {
  position: relative;
  right: 18px;
  transition: all 0.2s;
}
.catalog > li.has-item i {
  display: flex;
}
.catalog > li.has-item .sub-menu {
  display: block;
}
.catalog > li .sub-menu {
  display: none;
}
.catalog a, .catalog span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #23262F;
  min-width: 324px;
  height: 64px;
  padding: 0.4rem 0.875rem;
  border-radius: 8px;
  position: relative;
}
.catalog a:hover, .catalog a.active, .catalog span:hover, .catalog span.active {
  background: #E6F5ED;
}
.catalog i {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.sub-menu {
  position: absolute;
  background: #fff;
  left: 110%;
  top: 0;
  border: 1px solid #E6E8EC;
  box-shadow: 2px 4px 6px rgba(19, 19, 19, 0.06);
  border-radius: 8px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.sub-menu:after {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  min-height: 500px;
}
.sub-menu:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 30px;
  height: 100%;
  top: 0;
  left: -30px;
}
.sub-menu li {
  padding: 0 0.75rem;
}
.sub-menu li.has-item i {
  display: flex !important;
}
.sub-menu li.has-item .sub-menu {
  display: block !important;
}
.sub-menu li .sub-menu {
  display: none !important;
}
.sub-menu > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub-menu > li i {
  position: relative;
  right: 18px;
  display: none !important;
}
.sub-menu a, .sub-menu span {
  height: 48px;
}

.show-catalog .catalog {
  top: 135%;
  opacity: 1;
  visibility: visible;
}

.show-hidden-catalog:hover .catalog {
  top: 135%;
  opacity: 1;
  visibility: visible;
}

.icon-profile:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 70px;
  height: 57px;
  top: 0;
  right: 0;
}
.icon-profile .img-avatar-user {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ul-profile {
  position: absolute;
  top: 118%;
  right: 0;
  border: 1px solid #E6E8EC;
  box-shadow: 2px 4px 6px rgba(19, 19, 19, 0.06);
  border-radius: 8px;
  background: #fff;
  z-index: 99;
  transition: all 0.2s ease-in-out;
  min-width: 160px;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.ul-profile:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  right: 14px;
}
.ul-profile:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  right: 15px;
}
.ul-profile li {
  font-size: 0.875rem;
  padding: 0.4rem 0.875rem;
  margin: 0;
  border-bottom: 1px solid #F4F5F6;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.ul-profile li:hover {
  background: #E6F5ED;
  color: #009B4D;
}
.ul-profile li:last-child {
  border: none;
}
.ul-profile a {
  display: inline;
  font-family: "AvertaStdCY-Regular_3";
  transition: all 0s;
}
.ul-profile a:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.not-logged-in {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  position: absolute;
  top: 118%;
  right: 0;
  border: 1px solid #E6E8EC;
  box-shadow: 2px 4px 6px rgba(19, 19, 19, 0.06);
  border-radius: 8px;
  background: #fff;
  z-index: 99;
  transition: all 0.2s ease-in-out;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.not-logged-in:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  right: 14px;
}
.not-logged-in:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  right: 15px;
}
.not-logged-in a {
  display: inline;
  font-family: "AvertaStdCY-Regular_3";
  transition: all 0.2s;
  height: auto !important;
  padding: 0 0.3rem;
  font-size: 0.875rem;
}
.not-logged-in a:hover {
  color: #009B4D;
}

#notification-link {
  position: relative;
}
#notification-link:before {
  position: absolute;
  content: "";
  background: #F80000;
  width: 8px;
  height: 8px;
  top: 0;
  left: 7px;
  border-radius: 50%;
  display: none;
}
#notification-link.active:before {
  display: block;
}
#notification-link:hover .ul-notification {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

.ul-notification {
  position: absolute;
  top: 118%;
  right: 0;
  border: 1px solid #E6E8EC;
  box-shadow: 2px 4px 6px rgba(19, 19, 19, 0.06);
  border-radius: 8px;
  background: #fff;
  z-index: 99;
  transition: all 0.2s ease-in-out;
  min-width: 400px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.ul-notification:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  right: 14px;
}
.ul-notification:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  right: 15px;
}
.ul-notification .empty-box img {
  width: 180px;
}
.ul-notification a {
  color: #000;
}
.ul-notification .bg-green {
  background: #E6F5ED;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.ul-notification .btn {
  border: 1px solid #E6F5ED;
  padding: 0.45rem;
  width: 50%;
  background: #E6F5ED;
  border-radius: 5px 5px 5px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ul-notification .btn:last-child {
  border-radius: 5px 5px 8px 5px;
}
.ul-notification .btn:hover {
  color: #009B4D;
  background: rgba(87, 210, 148, 0.1803921569);
}
.ul-notification__router {
  text-align: center;
  padding: 0.65rem;
  position: relative;
}
.ul-notification__router a:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ul-notification__router a:hover {
  color: #FFB600;
}
.ul-notification__title {
  color: #B1B5C4;
  padding: 0.6rem 0.7rem;
}
.ul-notification__item .notitfication {
  transition: all 0.1s;
}
.ul-notification__item .notitfication:before {
  display: none !important;
}
.ul-notification__item .notitfication__name {
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.ul-notification__item .notitfication__content {
  width: calc(100% - 42px);
}
.ul-notification__item .notitfication__content span {
  color: #23262F;
  line-height: 18px;
  opacity: 0.8;
}
.ul-notification__item:hover .notitfication {
  background: rgba(87, 210, 148, 0.1803921569);
}

footer {
  background: #FCFCFD;
  padding: 3rem 0 2rem;
}
footer .ul-block {
  display: grid;
}
footer .ul-block li {
  margin: 0.4rem 0;
}
footer .ul-block a, footer .ul-block span {
  font-size: 0.875rem;
  cursor: pointer;
}
footer .ul-block a:hover, footer .ul-block span:hover {
  color: #FFB600;
}
footer .ul-block i {
  display: inline-block;
  width: 16px;
}
footer .logo-abc {
  margin-bottom: 0.875rem;
}

.title-ft {
  font-family: "AvertaStdCY-Semibold_1";
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.footer-copyright {
  color: #777E91;
  font-size: 0.875rem;
}

.item-gift {
  background: #c8eec8;
  color: #22a522;
  padding: 2px 7px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 0.8rem;
}

.ul-ft-custom i {
  color: #200E32;
  font-size: 1rem;
}
.ul-ft-custom a, .ul-ft-custom li {
  font-size: 0.875rem;
  line-height: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.spinner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 13;
}

.pulse-bubble {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #009B4D;
  margin: 0 0.2rem;
}

.pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}

.pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}

.pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
.preload-body {
  position: relative;
}
.preload-body:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 12;
  transition: all 0.2s;
}
.preload-body.hidden-loading:before {
  opacity: 0;
  visibility: hidden;
}
.preload-body.hidden-loading .spinner-box {
  display: none;
}

.banner-owl img {
  height: 383px;
}
.banner-owl .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 1.5rem;
  width: 100%;
}
.banner-owl .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777E91;
  margin: 0 5px;
}
.banner-owl .owl-dots .owl-dot.active {
  background: green;
}

.coupon-owl.hidden, #moreCoupon.hidden {
  display: none !important;
}
.coupon-owl .voucher__use-now.btn-style, #moreCoupon .voucher__use-now.btn-style {
  top: unset;
  bottom: 0.1rem;
  margin: 0;
}
.coupon-owl .voucher__info, #moreCoupon .voucher__info {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
}
.coupon-owl .voucher__info:hover .info-voucher, #moreCoupon .voucher__info:hover .info-voucher {
  right: 1.325rem;
}
.coupon-owl .voucher__info .info-voucher, #moreCoupon .voucher__info .info-voucher {
  min-width: 310px;
  top: -0.5rem;
  right: 2.325rem;
  transform: scaleY(1);
}
.coupon-owl #list-coupon-by-cart, #moreCoupon #list-coupon-by-cart {
  max-height: 530px;
}

.banner-index {
  height: 180px;
}

.banner-footer {
  height: 210px;
}

.custom-owl-nav .owl-nav button.owl-next, .custom-owl-nav .owl-nav button.owl-prev {
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #009B4D;
  color: #009B4D;
  transition: all 0.2s;
  margin-left: 1rem;
}
.custom-owl-nav .owl-nav button.owl-next:hover, .custom-owl-nav .owl-nav button.owl-prev:hover {
  background: #009B4D;
  color: #fff;
}
.custom-owl-nav .owl-nav {
  position: absolute;
  top: -43px;
  right: 0;
}
.custom-owl-nav .owl-nav .disabled {
  cursor: not-allowed;
  border-color: #777E91 !important;
  color: #777E91 !important;
}
.custom-owl-nav .owl-nav .disabled:hover {
  background: #fff !important;
}

.btn-owl-nav {
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #009B4D;
  color: #009B4D;
  transition: all 0.2s;
}
.btn-owl-nav:hover {
  background: #009B4D;
  color: #fff;
}
.btn-owl-nav.disabled {
  cursor: not-allowed;
  border-color: #777E91;
  color: #777E91;
}
.btn-owl-nav.disabled:hover {
  background: #fff;
}

.nav-tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 7rem;
}
.nav-tabs .nav-item {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  margin-left: 1rem;
  color: #777E91;
  background: #fff;
  border-color: #fff;
  font-family: "AvertaStdCY-Semibold_1";
}
.nav-tabs .nav-item:hover {
  transform: scale(1);
  box-shadow: none;
  border-color: #009B4D;
}
.nav-tabs .nav-item.active {
  background: #009B4D;
  color: #fff;
  border-color: #009B4D;
}

.title-main {
  font-family: "AvertaStdCY-Regular_3";
  font-size: 0.875rem;
  color: #777E91;
}
.title-main h2 {
  font-size: 1.4rem;
  font-family: "AvertaStdCY-Bold_1";
  color: #000;
}

.title-main--article h2 {
  font-size: 1.5rem;
}

.category {
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
}
.category__title {
  font-size: 1.125rem;
  font-family: "AvertaStdCY-Semibold_1";
  line-height: 18px;
}
.category__total-product {
  color: #777E91;
  font-size: 0.875rem;
}
.category img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  font-size: 0.75rem;
}
.category:hover {
  border-color: #009B4D;
}
.category:hover .category__title {
  color: #009B4D;
}
.category:hover img {
  transform: scale(1.08);
}

.category-introduce {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: calc(100% - 1.5rem);
}
.category-introduce:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
}
.category-introduce__description {
  font-size: 0.875rem;
  position: relative;
}
.category-introduce h3 {
  font-size: 1.25rem;
  font-family: "AvertaStdCY-Bold_1";
}
.category-introduce .btn-style {
  position: relative;
  max-width: 144px;
  padding: 0.65rem 1.125rem;
}

.banner-body {
  border-radius: 8px;
  object-fit: cover;
  height: 210px;
}

.subscribe-text {
  font-size: 1.4rem;
}
.subscribe-text p {
  font-family: "AvertaStdCY-Semibold_1";
}
.subscribe-text span {
  font-size: 0.875rem;
  display: block;
  opacity: 0.9;
}

.subscribe-send input {
  height: 48px;
  border-radius: 48px;
  min-width: 645px;
  padding: 0.6rem 1.5rem;
  color: #000;
}
.subscribe-send .btn-style {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.error-message {
  color: #F80000;
  font-size: 0.75rem;
  margin-top: 0.3rem;
  line-height: 15px;
}
.error-message.warning {
  color: rgb(255, 184, 10) !important;
  font-size: 0.8rem;
}

.invalid {
  border-color: #F80000;
}
.invalid .select2-selection {
  border: 1px solid #F80000 !important;
}

.suggestions-owl .owl-stage-outer, .search-top-owl .owl-stage-outer {
  padding-bottom: 1rem;
}

.btn-view-more-category {
  color: #EE4D2D;
  font-size: 1rem;
  font-family: "AvertaStdCY-Semibold_1";
  position: relative;
  top: -5px;
}

#product-by-certificate-main .owl-nav {
  top: -38px;
}

#category-home .no-product .nav-tabs-category-best-sell {
  margin-right: 0;
}

.box-article {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
  overflow: hidden;
  border-radius: 5px;
  display: block;
}
.box-article__img {
  position: relative;
}
.box-article__img:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.2s;
}
.box-article__time {
  border-radius: 3px;
  width: 66px;
  height: 66px;
  color: #fff;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  text-align: center;
  overflow: hidden;
}
.box-article__time div:first-child {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.5rem;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 155, 77, 0.8509803922);
}
.box-article__time div:last-child {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.75rem;
  background: rgba(255, 177, 0, 0.7215686275);
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-article__calendar {
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.box-article__calendar i {
  color: #009B4D;
  font-size: 0.875rem;
}
.box-article__calendar.green {
  color: #009B4D;
  transition: all 0.2s;
}
.box-article__calendar.green i {
  position: relative;
  top: 1px;
  transition: all 0.2s;
  font-size: 0.75rem;
}
.box-article__calendar.green:hover {
  color: #FFB600;
}
.box-article__calendar.green:hover i {
  color: #FFB600;
}
.box-article .befo-line {
  position: relative;
  margin-top: 0.7rem;
  padding-top: 0.7rem;
}
.box-article .befo-line:before {
  position: absolute;
  content: "";
  background: #009B4D;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}
.box-article .befo-line:after {
  position: absolute;
  content: "";
  background: #FFB600;
  width: 0;
  height: 1px;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.box-article__content {
  padding: 1rem;
}
.box-article__title {
  font-family: "AvertaStdCY-Semibold_1";
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 22px;
  margin-bottom: 0.75rem;
  height: 42px;
}
.box-article__description {
  font-size: 0.875rem;
}
.box-article img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.box-article:hover {
  transform: translateY(-5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.box-article:hover .box-article__img::before {
  opacity: 0.2;
}
.box-article:hover .befo-line:after {
  width: 100%;
}
.box-article:hover .box-article__title {
  color: #FFB600;
}

.custom-owl-nav-article .owl-nav {
  top: -44px;
}

.ul-artilce-home li {
  cursor: pointer;
  padding: 0.65rem 0;
  font-size: 1rem;
  border-bottom: 1px solid #e2e3e5;
  position: relative;
}
.ul-artilce-home li:last-child {
  border: none;
}
.ul-artilce-home li:before {
  position: absolute;
  content: "";
  background: #FFB600;
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 0;
  transition: all 0.3s;
}
.ul-artilce-home li.active {
  color: #009B4D;
}
.ul-artilce-home li:hover {
  color: #FFB600;
}
.ul-artilce-home li:hover:before {
  width: 100%;
}
.ul-artilce-home a:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.box-type-article {
  background: #f9f9f9;
  padding: 0.875rem;
  border-radius: 6px;
}

.title-article-home {
  position: relative;
}
.title-article-home:before {
  position: absolute;
  content: "";
  background: #000;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.title-article-home:after {
  position: absolute;
  content: "";
  background: #009B4D;
  width: 20%;
  height: 3px;
  bottom: 2px;
  left: 0;
  transition: all 0.3s;
}

.select-location.hidden {
  display: block;
  opacity: 0;
  visibility: hidden;
}

.box-product img.icon-tag {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-right: 3px;
  margin-top: -3px;
}

img.fill-color-FourToFiveStar {
  filter: invert(72%) sepia(90%) saturate(1971%) hue-rotate(67deg) brightness(92%) contrast(84%) !important;
}

img.fill-color-ThreeStar {
  filter: invert(30%) sepia(24%) saturate(3548%) hue-rotate(332deg) brightness(83%) contrast(97%) !important;
}

img.fill-color-UnderThreeStar {
  filter: invert(66%) sepia(46%) saturate(5705%) hue-rotate(161deg) brightness(105%) contrast(102%) !important;
}

img.fill-color-Warning {
  filter: invert(70%) sepia(75%) saturate(646%) hue-rotate(2deg) brightness(108%) contrast(102%) !important;
}

img.fill-color-Reported {
  filter: invert(25%) sepia(70%) saturate(7429%) hue-rotate(355deg) brightness(90%) contrast(126%) !important;
}

#productName img.icon-tag {
  display: inline-block;
  width: 24px;
  height: auto;
  margin-right: 5px;
  margin-top: -4px;
}

.product-market img.icon-tag {
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: -1px;
  margin-top: -4px;
}

.cart__product-name img.icon-tag {
  display: inline-block;
  width: 18px;
  height: auto;
  margin-right: 3px;
  margin-top: -4px;
}

#viewProductDetailItem img.icon-tag {
  display: inline-block;
  width: 18px;
  height: auto;
  margin-right: 3px;
  margin-top: -4px;
}

.select2-results__options li.select2-results__option[aria-has-location=true] {
  font-weight: bold;
}

.select2-results__options li.select2-results__option[aria-has-location=false] {
  color: gray;
}

.background-cover {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 240px;
}

.store__info li {
  margin-left: 3rem;
  text-align: center;
  font-size: 0.875rem;
  position: relative;
}
.store__info li:before {
  position: absolute;
  content: "";
  background: #777E91;
  width: 1px;
  height: 1rem;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
}
.store__info li:last-child:before {
  display: none;
}
.store__info span {
  font-family: "AvertaStdCY-Bold_1";
  color: #009B4D;
  display: block;
  font-size: 1rem;
  padding-top: 0.3rem;
}
.store__info.prod {
  justify-content: space-between;
}
.store__info.prod li {
  font-size: 0.75rem;
  color: #777E91;
}
.store__info.prod li:before {
  right: -1.9rem;
}
.store__info.prod li:first-child {
  margin: 0;
}
.store__avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.store__avatar-prod {
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.store__name-prod {
  font-family: "AvertaStdCY-Bold_1";
  color: #23262F;
  font-size: 1.25rem;
  line-height: 25px;
}
.store__address {
  font-size: 0.875rem;
}
.store__address i {
  display: inline-block;
  width: 18px;
  text-align: center;
}
.store__name {
  font-size: 1.4rem;
  font-family: "AvertaStdCY-Bold_1";
  color: #23262F;
}
.store .btn-style {
  padding: 0.45rem 1.25rem;
  font-size: 0.875rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.store .box-product__tag {
  position: static;
}

.store-info-detail {
  color: #777E91;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  margin: 0.6rem 0;
}
.store-info-detail div {
  width: 50%;
}
.store-info-detail span {
  color: #23262F;
  display: inline-block;
  width: 50%;
}

.show-box-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.7rem 1.25rem;
  z-index: 50;
}

.total-message {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: #F80000;
  font-size: 0.875rem;
}

.main-category-title {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.8rem;
}

.breadcrumb li {
  color: #009B4D;
  position: relative;
  margin-right: 2rem;
  white-space: nowrap;
}
.breadcrumb li:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2.5px;
  top: 40%;
  right: -18px;
  transform: translateY(-50%);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.breadcrumb li:last-child {
  margin: 0;
}
.breadcrumb li:last-child:before {
  display: none;
}
.breadcrumb a, .breadcrumb span {
  cursor: pointer;
  color: #000;
}
.breadcrumb a:hover, .breadcrumb span:hover {
  color: #FFB600;
}

.text-result-search span {
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
}

.filter__title {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.25rem;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 20px;
}
.filter__title:before {
  position: absolute;
  content: "";
  background: #E6F5ED;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}
.filter__title:after {
  position: absolute;
  content: "";
  background: #009B4D;
  width: 55px;
  height: 2px;
  bottom: 0;
  left: 0;
}
.filter__title.no-before {
  padding-bottom: 0.5rem;
}
.filter__title.no-before:before, .filter__title.no-before:after {
  display: none;
}
.filter__category li {
  padding: 0.5rem 0;
  cursor: pointer;
}
.filter__category li.active {
  color: #009B4D;
}
.filter__category span {
  cursor: pointer;
}
.filter__category span.active {
  color: #009B4D;
}
.filter__category span:hover {
  color: #FFB600;
}
.filter__sort {
  font-size: 1rem;
  position: relative;
}
.filter__sort:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2.5px;
  top: 40%;
  right: 1rem;
  transform: translateY(-50%);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.filter__sort select {
  padding: 0.45rem 1rem;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.2s;
}
.filter__sort select:focus {
  border-color: #009B4D;
}
.filter__rating {
  font-size: 0.75rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  min-height: 36px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.filter__rating.active {
  background: #F4F5F6;
}
.filter__rating.active .total-product-in-rate {
  opacity: 1;
  visibility: visible;
}
.filter__rating.five i {
  color: #FFB600;
}
.filter__rating.four i:nth-child(-n+4) {
  color: #FFB600;
}
.filter__rating.three i:nth-child(-n+3) {
  color: #FFB600;
}
.filter__rating.two i:nth-child(-n+2) {
  color: #FFB600;
}
.filter__rating.one i:first-child {
  color: #FFB600;
}
.filter__rating span {
  color: #777E91;
  padding-left: 0.25rem;
  font-size: 0.875rem;
}
.filter__rating span.total-product-in-rate {
  visibility: hidden;
  opacity: 0;
  font-size: 0.9rem;
  padding-left: 0.4rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.filter__rating i {
  padding-right: 0.25rem;
  color: #B1B5C4;
  position: relative;
  top: 1px;
}

.cancel-filter-rating {
  position: absolute;
  top: 0;
  right: 0;
  background: #F80000;
  font-size: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cancel-filter-rating.show {
  opacity: 1;
  visibility: visible;
}
.cancel-filter-rating i {
  padding-right: 0;
  color: #fff !important;
}

#hidden-empty-product.hidden {
  display: none;
}

.coupon-owl {
  /*    .owl-nav {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);

      button {
          position: absolute;
          top: 50%;
          color: $green !important;
          @include circle(40px, 40px, 50%);
          border: 1px solid $green !important;
          background: $white !important;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

          &.disabled {
              display: none;
          }
      }

      .owl-next {
          right: 0;
          transform: translate(50%, -50%);
      }

      .owl-prev {
          transform: translate(-50%, -50%);
      }
  }*/
}
.coupon-owl .voucher__icon {
  background-size: cover;
}
.coupon-owl .icon-coupon {
  width: 26px !important;
}

.box-product {
  padding: 0.875rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 379px;
}
.box-product .relative {
  display: block;
  cursor: pointer;
}
.box-product:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: translateY(-5px);
}
.box-product:hover .box-product__action {
  right: 1rem;
}
.box-product img {
  width: 100%;
  height: 252px;
  border-radius: 0;
  object-fit: cover;
  max-width: 100%;
  border-radius: 8px;
}
.box-product__tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "AvertaStdCY-Semibold_1";
  position: absolute;
  bottom: 0.35rem;
  left: 0.35rem;
  font-size: 0.875rem;
}
.box-product__tag img {
  height: 16px !important;
  width: 40px !important;
  border-radius: 3px;
}
.box-product__tag .vietgap {
  width: auto !important;
}
.box-product__tag i {
  color: #FFB600;
  font-size: 0.7rem;
  position: relative;
  margin-left: 0.1rem;
  top: 0;
}
.box-product__tag div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.box-product__discount {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  font-size: 10px;
  color: #F80000;
  background: #FEE6E6;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  font-family: "AvertaStdCY-Bold_1";
}
.box-product__origin {
  font-size: 0.875rem;
}
.box-product__name {
  font-family: "AvertaStdCY-Semibold_1";
  padding-top: 0.4rem;
  cursor: pointer;
}
.box-product__delivery {
  color: #F80000;
  font-size: 0.875rem;
}
.box-product__delivery.list {
  color: #F80000;
  font-size: 0.7rem;
  margin-top: 0.25rem;
}
.box-product__price {
  color: #F80000;
  font-size: 1.25rem;
  font-family: "AvertaStdCY-Bold_1";
  line-height: 22px;
}
.box-product__price span {
  font-size: 1.125rem;
  text-decoration: underline;
  position: relative;
  top: -1px;
  left: 1px;
}
.box-product__price b {
  color: #B1B5C3;
  font-weight: 400;
  font-size: 1rem;
  font-family: "AvertaStdCY-Regular_3";
  text-decoration: line-through;
  padding-left: 0.4rem;
  position: relative;
  top: -0.75px;
}
.box-product__price b span {
  font-size: 0.9rem;
  left: 0;
}
.box-product__rating {
  line-height: 12px;
}
.box-product__rating i {
  font-size: 0.7rem;
  color: #FFB600;
}
.box-product__rating .gray {
  color: #e2e3e5;
}
.box-product__sold {
  font-size: 0.75rem;
  line-height: 14px;
  position: relative;
  top: 1px;
}
.box-product .rating-sold {
  margin-top: 0.3rem;
}
.box-product .rating-sold div {
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  border-right: 1px solid #e2e3e5;
  line-height: 12px;
}
.box-product .rating-sold div:last-child {
  border: none;
}
.box-product .rating-sold i {
  position: relative;
  top: -1px;
}
.box-product .rating-sold .box-product__sold {
  position: relative;
  top: -0.5px;
}
.box-product__action {
  position: absolute;
  top: 1rem;
  right: -3rem;
  transition: all 0.2s;
}
.box-product__action li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0px 4px 12px rgba(19, 19, 19, 0.12);
  margin: 0.875rem 0;
  transition: all 0.2s;
  position: relative;
  background: #fff;
  cursor: pointer;
}
.box-product__action li:hover {
  background: #009B4D;
}
.box-product__action li:hover .img-1 {
  opacity: 0;
}
.box-product__action li:hover .img-2 {
  opacity: 1;
}
.box-product__action li:hover .img-3 {
  opacity: 0;
}
.box-product__action li:first-child img {
  height: 20px !important;
}
.box-product__action li.favourite:hover {
  background: #fff;
}
.box-product__action li.favourite:hover .img-1 {
  opacity: 1;
}
.box-product__action li.favourite:hover .img-2 {
  opacity: 0;
}
.box-product__action li.favourite.active .img-1 {
  opacity: 0;
}
.box-product__action li.favourite.active .img-2 {
  opacity: 0;
}
.box-product__action li.favourite.active .img-3 {
  opacity: 1;
  animation: likeproduct 0.4s;
}
.box-product__action li.favourite.active:hover .img-2 {
  opacity: 0;
}
.box-product__action li.favourite.active:hover .img-3 {
  opacity: 1;
}
.box-product__action li.disabled {
  cursor: not-allowed;
}
.box-product__action li.disabled:hover {
  background: #B1B5C4;
}
.box-product__action img {
  width: auto !important;
  height: 22px !important;
  transition: all 0.1s;
}
.box-product__action .img-2, .box-product__action .img-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

@keyframes likeproduct {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  20% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.grid-product-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.grid-product-detail__left {
  width: 540px;
}
.grid-product-detail__right {
  width: calc(100% - 540px);
  padding-left: 1.65rem;
}

.product-owl-img {
  height: 500px;
}

.img-ingredient {
  width: 150px;
  height: 120px;
}

.orver-list-image {
  max-width: 100%;
  overflow-x: auto;
  border-radius: 8px;
}
.orver-list-image::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.arrow-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;
  cursor: pointer;
  color: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  width: 32px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-slide.arrow-left {
  left: -4px;
}
.arrow-slide.arrow-right {
  right: -4px;
}

.product__list-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product__list-image a {
  margin-right: 0.75rem;
  display: block;
  width: 98.5px;
  min-width: 98.5px;
}
.product__list-image::-webkit-scrollbar {
  width: 5px;
  background-color: #e2e3e5;
  border-radius: 5px;
}
.product__list-image::-webkit-scrollbar-thumb {
  background: #B1B5C4;
  border-radius: 5px;
}
.product__slide {
  width: 100%;
  position: relative;
}
.product__slide .variant-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.product__slide .variant-img img {
  background: #fff;
  width: 100%;
}
.product__name {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.85rem;
  line-height: 34px;
  margin-bottom: 0.6rem;
}
.product .box-product__tag {
  position: static;
}
.product__rating li {
  font-size: 0.875rem;
  position: relative;
  line-height: 0.75rem;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__rating li.hidden {
  display: none;
}
.product__rating li:last-child:before {
  display: none;
}
.product__rating li:before {
  position: absolute;
  content: "";
  background: #B1B5C4;
  width: 1px;
  height: 0.875rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.product__rating .fa-star {
  font-size: 0.75rem;
  color: #FFB600;
  padding: 0.2rem;
}
.product__rating .fa-star.gray {
  color: #B1B5C4;
}
.product__coupon li {
  background: url("../image/logo-icon/Subtract.png") no-repeat center;
  background-size: contain;
  color: #009B4D;
  font-size: 0.875rem;
  width: 92px;
  height: 36px;
  margin-right: 0.875rem;
  font-family: "AvertaStdCY-Semibold_1";
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.product__certificate {
  color: #B1B5C4;
  font-size: 0.875rem;
}
.product__certificate span {
  font-family: "AvertaStdCY-Semibold_1";
  color: #000;
}
.product__certificate .box-product__tag:last-child {
  border: none;
}
.product__price {
  color: #EE4D2D;
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.9rem;
}
.product__price span {
  text-decoration: underline;
  font-size: 1.9rem;
  position: relative;
  top: -2px;
}
.product__price.small {
  font-size: 1.3rem;
  color: #009B4D;
}
.product__price.small span {
  text-decoration: underline;
  font-size: 1.3rem;
  position: relative;
  top: -2px;
}
.product__root-price {
  position: relative;
  top: 2px;
  text-decoration: line-through;
  color: #B1B5C4;
  font-size: 1.3rem;
}
.product__root-price span {
  text-decoration: underline;
  font-size: 1.3rem;
  position: relative;
  top: -2px;
}
.product__percent {
  font-size: 0.7rem;
  color: #F80000;
  background: #FEE6E6;
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-family: "AvertaStdCY-Bold_1";
}
.product__description.bold {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.125rem;
  color: #EE4D2D;
}
.product__view-more {
  color: #009B4D;
  font-size: 0.875rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.product__view-more:hover {
  color: #FFB600;
}
.product__view-more i {
  font-size: 0.875rem;
}
.product__view-more .fa-caret-circle-down {
  font-size: 1.25rem;
}
.product__title-description {
  color: #B1B5C3;
  line-height: 20px;
}
.product__attribute li {
  transition: all 0.2s;
  cursor: pointer;
  margin-right: 1.4rem;
  border: 2px dashed #B1B5C3;
  position: relative;
  overflow: hidden;
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.875rem;
  width: 74px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* &:before {
      @include befo($green, 20px, 30px);
      bottom: -20px;
      right: -10px;
      transform: rotate(45deg);
      display: none;
      z-index: 2;
  }*/
}
.product__attribute li.active {
  border: 2px solid #009B4D;
}
.product__attribute li.active:before {
  display: block;
}
.product__attribute li.disabled {
  color: #B1B5C4;
  border-color: #B1B5C4;
  cursor: not-allowed;
  opacity: 0.5;
}
.product .fa-circle {
  color: #009B4D;
  font-size: 0.5rem;
  position: relative;
}
.product .fa-circle.danger {
  top: 2px;
}
.product__share li {
  margin-right: 1rem;
}
.product__share li:hover img {
  transform: scale(1.1);
}
.product__share img {
  width: 32px;
}
.product .btn-cart {
  font-family: "AvertaStdCY-Semibold_1";
}
.product__title {
  font-size: 1.4rem;
  font-family: "AvertaStdCY-Bold_1";
}
.product__certification {
  width: 100% !important;
  height: 332px;
  object-fit: cover;
}

#product-range {
  background: #F4F5F6;
}

.product-action {
  margin-left: 0.75rem;
  background: #E6F5ED;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #009B4D;
  cursor: pointer;
  position: relative;
}
.product-action img {
  height: 18px;
  transition: all 0.2s;
}
.product-action.heart {
  background: #FEE6E6;
}
.product-action.heart img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-action.heart .img-2 {
  opacity: 0;
  visibility: hidden;
}
.product-action.heart.active .img-1 {
  opacity: 0;
  visibility: hidden;
}
.product-action.heart.active .img-2 {
  opacity: 1;
  visibility: visible;
}
.product-action.facebook {
  background: rgba(51, 127, 255, 0.1411764706);
}
.product-action.facebook img {
  height: 20px;
}
.product-action.zalo {
  background: rgba(1, 128, 199, 0.231372549);
}
.product-action.zalo img {
  height: 19px;
}
.product-action.zalo a {
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

.buy-gift {
  background: #FEE6E6;
  color: #EE4D2D;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: "AvertaStdCY-Semibold_1";
  border-radius: 6px;
}

.product-info__title {
  color: #777E91;
}
.product-info .breadcrumb li:before {
  border: solid #009B4D;
  border-width: 0 1px 1px 0;
}

.product-ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product-ul img {
  margin-right: 0.7rem;
}

.rating {
  border-bottom: 1px solid #e2e3e5;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}
.rating:last-child {
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}
.rating:last-child .cs-bd {
  border: none;
}
.rating__avatar {
  width: 100px;
}
.rating__content {
  width: calc(100% - 100px);
}
.rating__total-rating {
  font-size: 0.875rem;
}
.rating__total-rating span {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 1.125rem;
}
.rating__total-rating i {
  color: #FFB600;
  font-size: 0.75rem;
  padding: 0 0.1rem;
  position: relative;
  top: -1px;
}
.rating__total-rating i.gray {
  color: #B1B5C4;
}
.rating__filter {
  background: #F4F5F6;
  border-radius: 8px;
}
.rating__filter li {
  cursor: pointer;
  color: #B1B5C3;
  transition: all 0.2s;
  font-size: 0.875rem;
  width: 110px;
  height: 36px;
  border-radius: 8px;
  font-family: "AvertaStdCY-Semibold_1";
  display: flex;
  justify-content: center;
  align-items: center;
}
.rating__filter li.active {
  background: #009B4D;
  color: #fff;
}
.rating__filter span {
  padding-left: 0.2rem;
}
.rating__content {
  width: calc(100% - 100px);
}
.rating__time {
  color: #B1B5C4;
  font-size: 0.875rem;
  text-align: right;
  white-space: nowrap;
}
.rating__name {
  font-family: "AvertaStdCY-Semibold_1";
  line-height: 12px;
}
.rating .fa-star {
  color: #FFB600;
  font-size: 9px;
  line-height: 15px;
}
.rating .fa-star.gray {
  color: #B1B5C4;
}
.rating:last-child .rating__content {
  border-bottom: none;
}

.certification {
  font-family: "AvertaStdCY-Semibold_1";
}
.certification button {
  width: 100%;
  height: 40px;
  text-align: left;
}
.certification button[aria-expanded=true] i {
  transform: rotate(-180deg);
  top: 3px;
}
.certification i {
  font-size: 1.4rem;
  transition: all 0.2s;
  position: relative;
  top: -3px;
  line-height: 10px;
}

.valid-size {
  position: relative;
  transition: all 0.2s;
  margin-bottom: 0;
}
.valid-size.show {
  margin-bottom: 1.25rem;
}
.valid-size.show:before {
  opacity: 1;
  visibility: visible;
}
.valid-size:before {
  position: absolute;
  content: "";
  background: #fff2f2;
  width: calc(100% + 10px);
  height: calc(100% + 12px);
  top: -12px;
  left: -10px;
  z-index: -1;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.valid-size .error-message {
  position: relative;
  top: -8px;
}

.group-property {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.group-property span {
  transition: all 0.2s;
  cursor: pointer;
  margin-right: 1rem;
  border: 2px dashed #B1B5C3;
  position: relative;
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.8rem;
  white-space: nowrap;
  min-width: 74px;
  padding: 0 0.75rem;
  width: auto;
  height: 36px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.group-property span.active {
  border: 2px solid #009B4D;
}
.group-property span.active:before {
  opacity: 1;
  visibility: visible;
}
.group-property span.disable {
  color: #B1B5C4;
  border-color: #B1B5C4;
  cursor: not-allowed;
  opacity: 0.5;
}
.group-property span:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 19px;
  height: 20px;
  background-image: url("../image/product/check.svg");
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

#addToCartSuccess {
  background: none;
}
#addToCartSuccess .modal-content {
  border-radius: 8px;
  padding: 0.875rem 1.4rem;
  background-color: rgba(0, 0, 0, 0.7607843137);
}
#addToCartSuccess .modal-dialog {
  max-width: 400px;
}

.certification-plus {
  overflow: hidden;
  transition: all 0.2s;
}
.certification-plus.show i {
  transform: rotate(-180deg);
  top: 3px;
}
.certification-plus.show .certification-plus__body {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  padding: 0.75rem 0;
}
.certification-plus .flex-item {
  font-family: "AvertaStdCY-Semibold_1";
}
.certification-plus__header {
  height: 40px;
  cursor: pointer;
}
.certification-plus__body {
  transform: scaleY(0);
  transform-origin: 0 0;
  max-height: 0;
  transition: all 0.2s;
  opacity: 0;
}
.certification-plus i {
  font-size: 1.4rem;
  transition: all 0.2s;
  position: relative;
  top: -4px;
  line-height: 10px;
}

.collapse.show {
  visibility: visible !important;
}

#btn-plus:disabled, #btn-plus-common:disabled, #btn-subtraction:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#filter-rating-div.hidden {
  display: none;
}

.grid-prodduct-info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.grid-prodduct-info__left {
  width: calc(100% - 405px);
}
.grid-prodduct-info__right {
  position: sticky;
  top: 0;
  padding-left: 1.125rem;
  width: 405px;
  height: 100%;
}

.url-store {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-certification__item {
  text-align: center;
}
.owl-certification__img {
  height: 130px;
  border-radius: 15px;
  background: #E6F5ED;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-certification__img img {
  max-width: 70%;
  border-radius: 8px;
}
.owl-certification__name {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 20px;
}
.owl-certification .owl-dots {
  display: flex;
  justify-content: center;
}
.owl-certification .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E6E8EC;
  margin: 1rem 0.35rem 0;
}
.owl-certification .owl-dots .owl-dot.active {
  background: #009B4D;
}

.video {
  cursor: pointer;
}
.video__name {
  font-size: 0.875rem;
  color: #23262F;
  margin-top: 0.5rem;
  line-height: 20px;
  transition: all 0.2s;
}
.video__img {
  border-radius: 8px;
  height: 136px;
}
.video__play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.video__play img {
  width: 46px !important;
}
.video .relative:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  opacity: 0.2;
}
.video:hover .video__play {
  transform: translate(-50%, -50%) scale(1.1);
}
.video:hover .video__name {
  color: #FFB600;
}

#list-imgage-store img {
  height: 100px;
}

#rating-count {
  white-space: nowrap;
}

.view-more-coupon:hover .more-coupon {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.more-coupon {
  position: absolute;
  top: 40px;
  right: -14px;
  background: #fff;
  border: 1px solid #E6E8EC;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  z-index: 99;
  transition: all 0.2s ease-in-out;
  min-width: 160px;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
  width: 330px;
}
.more-coupon:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  right: 14px;
}
.more-coupon:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  right: 15px;
}
.more-coupon div {
  background: url("../image/logo-icon/Subtract.png") no-repeat center;
  background-size: contain;
  color: #009B4D;
  font-size: 0.875rem;
  width: 92px;
  height: 36px;
  font-family: "AvertaStdCY-Semibold_1";
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.more-coupon .transparent-div {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: none;
}

.border-b-custom {
  position: relative;
}
.border-b-custom:before {
  position: absolute;
  content: "";
  background: rgba(177, 181, 196, 0.5);
  width: 100%;
  height: 1px;
  bottom: -0.75rem;
  left: 0;
}
.border-b-custom.b-0:before {
  bottom: 0;
}

.cart__header {
  background: #F4F5F6;
  padding: 1rem;
}
.cart__header .checkbox input[type=checkbox] + label {
  font-size: 1rem;
  line-height: 21px;
}
.cart__header .checkbox input[type=checkbox] + label::before {
  margin-right: 14px;
}
.cart__label span {
  font-family: "AvertaStdCY-Semibold_1";
  color: #23262F !important;
}
.cart__content {
  padding: 1rem;
}
.cart__item {
  transition: all 0.2s;
  height: auto;
}
.cart__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cart__item .custom-befo:before {
  top: 16px !important;
}
.cart__item .custom-befo span {
  display: inline-block;
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.3rem;
  padding-top: 0.7rem;
  padding-left: 1rem !important;
  color: #000 !important;
}
.cart__item.cart-remove {
  border: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.cart__product-name {
  font-family: "AvertaStdCY-Bold_1";
  line-height: 20px;
  padding-right: 0.75rem;
}
.cart__product-name-variant {
  font-family: "AvertaStdCY-Regular_3";
  display: block;
  opacity: 0.7;
  font-size: 0.75rem;
}
.cart__product.disable {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart__product-message {
  font-size: 0.75rem;
  color: #F80000;
  position: relative;
  top: -10px;
  left: 8px;
}
.cart__price.bold {
  font-size: 1rem;
  font-family: "AvertaStdCY-Bold_1";
}
.cart__price span {
  text-decoration: underline;
}
.cart__delete {
  font-family: "AvertaStdCY-Semibold_1";
  color: #F80000;
  cursor: pointer;
}
.cart__total {
  padding: 0.25rem 1rem;
  box-shadow: 0px 8px 24px rgba(19, 19, 19, 0.08);
}
.cart__total li {
  padding: 0.55rem 0;
  font-family: "AvertaStdCY-Semibold_1";
}
.cart__total .gray {
  color: #B1B5C4;
}
.cart__total-product {
  font-size: 1.125rem;
  font-family: "AvertaStdCY-Bold_1";
}
.cart__total-money {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.125rem;
  color: #F80000;
}
.cart__total-money span {
  text-decoration: underline;
  font-size: 1rem;
  position: relative;
  top: -1px;
}

.img-store-cart {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.cart-quatity {
  display: flex;
}
.cart-quatity input::-webkit-outer-spin-button,
.cart-quatity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-quatity input {
  text-align: center;
  width: 46px;
}
.cart-quatity button {
  background: #009B4D;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-quatity button:disabled {
  background: #777E91;
  cursor: not-allowed;
}

.cart-error {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-error .cart__product.disable {
  opacity: 1;
}

.cart-colume-1 {
  width: 380px;
}

.cart-colume-2 {
  width: 190px;
}

.cart-colume-3 {
  width: 160px;
}

.cart-colume-4 {
  width: 100px;
}

.colume-1 {
  width: 40px;
}

.colume-2 {
  width: 380px;
}

.colume-3 {
  width: 200px;
}

.colume-4 {
  width: 200px;
}

.colume-5 {
  width: 100px;
}

.colume-6 {
  width: calc(100% - 800px);
}

.store-info-cart {
  font-family: "AvertaStdCY-Bold_1";
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.store-info-cart span {
  padding-left: 0.75rem;
  font-size: 1.3rem;
}

.cart-error-message {
  font-size: 0.75rem;
  color: #F80000;
  position: absolute;
  top: -2px;
  right: 1.25rem;
  transform: translateY(-50%);
  background: #fff;
  padding: 0.3rem 0.75rem;
}

.order__title {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.125rem;
}
.order__edit {
  font-size: 0.875rem;
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
  cursor: pointer;
}
.order__edit:hover {
  color: #FFB600;
}
.order__note {
  font-size: 0.875rem;
  color: #F80000;
}
.order__note-input {
  color: #000;
  font-family: "AvertaStdCY-Regular_3";
}

.transport {
  font-size: 0.875rem;
  color: #777E91;
}
.transport__item {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.125rem;
  color: #000;
}
.transport__item.danger {
  color: #F80000;
}
.transport__item.green {
  color: #009B4D;
}
.transport__item span {
  text-decoration: underline;
}

.payment-methods {
  cursor: pointer;
  transition: all 0.2s;
}
.payment-methods span {
  font-family: "AvertaStdCY-Semibold_1";
  line-height: 14px;
}
.payment-methods.active {
  border-color: #009B4D;
}
.payment-methods.disabled {
  filter: grayscale(100%);
  cursor: not-allowed;
}

.order-product-quatity {
  color: #B1B5C4;
  font-size: 0.875rem;
}

.color-gray {
  color: #23262F;
}

.vat {
  color: #B1B5C4;
  font-family: "AvertaStdCY-Regular_3";
  font-size: 0.875rem;
}

.order-search {
  background: #fff;
}
.order-search__title {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.4rem;
  color: #009B4D;
  text-align: center;
}
.order-search__title.black {
  color: #000;
}
.order-search__description {
  text-align: center;
}
.order-search__description span {
  font-family: "AvertaStdCY-Semibold_1";
}
.order-search__time-otp {
  color: #23262F;
  font-size: 0.875rem;
}
.order-search__time-otp span {
  color: #F80000;
}
.order-search .resend-otp {
  color: #009B4D;
}
.order-search .resend-otp:hover {
  color: #FFB600;
}

.order-input {
  position: relative;
}
.order-input img {
  position: absolute;
  top: 22px;
  left: 0.875rem;
  transform: translateY(-50%);
}
.order-input input {
  padding: 0.6rem 1rem;
  padding-left: 3rem;
}

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

.user-name-buy {
  font-size: 1.125rem;
}

.bag__title {
  position: absolute;
  top: 0;
  left: 1.25rem;
  background: #fff;
  transform: translateY(-50%);
  color: #0072F8;
}
.bag__title .group {
  background: #E6F1FE;
  padding: 8px 12px;
}

.delivery {
  background: #F4F5F6;
  border-radius: 8px;
  padding: 0.7rem 0.875rem;
  font-size: 0.875rem;
  max-width: 340px;
  margin-left: auto;
  white-space: nowrap;
}
.delivery .free {
  color: #09B530;
}
.delivery span {
  font-family: "AvertaStdCY-Semibold_1";
}

.transport-methods, .time-of-day-item {
  position: relative;
  background: #fff;
}
.transport-methods:before, .time-of-day-item:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.transport-methods.active, .time-of-day-item.active {
  border-color: #009B4D;
}
.transport-methods.disabled, .time-of-day-item.disabled {
  border-color: #B1B5C4 !important;
}
.transport-methods.disabled .check-radio input[type=radio]:checked:disabled + label:before, .time-of-day-item.disabled .check-radio input[type=radio]:checked:disabled + label:before {
  background: #B1B5C4 !important;
}

.img-product-order {
  width: 64px;
  height: 64px;
}

#sales-location label {
  padding-left: 0;
  margin-left: 0;
}
#sales-location label:before {
  top: 2px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
}

#transportation-list .p-3.md\:p-5.border-b-\[1px\]:last-child {
  border-bottom: none;
}

.blue {
  color: #0072F8;
}

.ul-dots li {
  padding: 0 0 0.4rem 1rem;
  position: relative;
  letter-spacing: 0.5px;
  text-align: justify;
}
.ul-dots li:before {
  position: absolute;
  content: "";
  background: #000;
  width: 5px;
  height: 5px;
  top: 7px;
  left: 0;
  border-radius: 50%;
}

.export-receipt-info {
  font-size: 0.875rem;
  line-height: 26px;
}
.export-receipt-info span {
  font-family: "AvertaStdCY-Semibold_1";
}

.danger {
  color: #F80000 !important;
}

#code-order {
  position: relative;
  display: inline-block;
}

.group-orders-item:last-child {
  border-bottom: none !important;
}

.border-b-shippment {
  border-bottom: 1px solid #e5e7eb;
}
.border-b-shippment:last-child {
  border-bottom: none;
}

.coupon-by-store {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0.65rem;
  font-size: 0.875rem;
  color: #0072F8;
  cursor: pointer;
  position: relative;
  top: 3px;
  max-width: 150px;
  /*z-index: 99;*/
  /*&:before {
      @include befo(transparent, 100%, 50px);
      top: 0;
      left: 0;
  }*/
}
.coupon-by-store.show .voucher-by-store {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

.voucher-by-store {
  position: absolute;
  top: 46px;
  left: 0;
  background: #fff;
  z-index: 2;
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 0px 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: all 0.2s ease-in-out;
  max-height: 400px;
  overflow-y: auto;
}
.voucher-by-store:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  left: 14px;
}
.voucher-by-store:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  left: 15px;
}
.voucher-by-store .voucher {
  margin-bottom: 1rem;
}
.voucher-by-store .voucher__name {
  color: #000;
}
.voucher-by-store .voucher__icon {
  font-size: 0.75rem;
}
.voucher-by-store .voucher:last-child {
  margin: 0;
}
.voucher-by-store .checkbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.75rem;
}
.voucher-by-store .checkbox input[type=checkbox] + label {
  padding: 0;
}
.voucher-by-store .checkbox input[type=checkbox] + label::before {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0;
  top: 0;
  padding-top: 0.5px;
  padding-right: 0.5px;
}

#list-coupon-by-cart .voucher__icon > div {
  text-align: center;
}

#list-coupon-by-cart {
  max-height: 420px;
  overflow-y: auto;
}
#list-coupon-by-cart .voucher {
  width: 100%;
  margin-bottom: 1.125rem;
}
#list-coupon-by-cart .voucher:last-child {
  margin: 0;
}
#list-coupon-by-cart .voucher__icon {
  width: 120px;
  background-size: cover;
}
#list-coupon-by-cart .voucher__content {
  width: calc(100% - 120px);
}
#list-coupon-by-cart .checkbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.75rem;
}
#list-coupon-by-cart .checkbox input[type=checkbox] + label {
  padding: 0;
}
#list-coupon-by-cart .checkbox input[type=checkbox] + label::before {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0;
  top: 0;
  padding-top: 0.5px;
  padding-right: 0.5px;
}

.overlay-voucer {
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 0.2;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: none;
}
.overlay-voucer.show {
  display: block;
}

.sales-location-detail {
  padding: 0.2rem 0 0 0 !important;
  font-size: 0.8rem;
  color: #777E91 !important;
}

.label-transport-GHKHShipmentMethod {
  display: none !important;
}

#rowTimeOfDay {
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  z-index: 2;
  width: 350px;
}
#rowTimeOfDay .time-of-day-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
#rowTimeOfDay .time-of-day-item label:before {
  width: 18px;
  height: 18px;
}
#rowTimeOfDay .time-of-day-item label span {
  font-size: 0.875rem !important;
}

#transportation-GHKH, .note-GHKH {
  display: none !important;
}

.common-form label {
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.common-form textarea, .common-form input, .common-form select {
  outline: none;
  padding: 0.75rem 0.875rem;
  resize: none;
}
.common-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  color: #000;
  opacity: 1;
}
.common-form select:disabled {
  background: #eee;
}
.common-form .select2 {
  width: 100% !important;
}

.arrow-select {
  position: relative;
}
.arrow-select:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  right: 9px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  bottom: 16px;
  z-index: 2;
}

.bg-gray {
  background: #F4F5F6;
}

.profile {
  background: #fff;
  box-shadow: 0px 8px 12px rgba(19, 19, 19, 0.04);
}
.profile__title {
  font-size: 1.3rem;
  font-family: "AvertaStdCY-Bold_1";
  line-height: 22px;
}
.profile__title i {
  color: #009B4D;
}
.profile label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}
.profile input {
  height: 44px;
  width: 100%;
  padding: 0.875rem 1rem;
}
.profile input:read-only {
  background: #F4F5F6;
  padding-right: 80px;
}
.profile .box-product__tag {
  position: static;
}
.profile .input-otp {
  padding-left: 3rem;
  font-family: "AvertaStdCY-Bold_1";
}
.profile .show-hidden-password {
  position: absolute;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
}
.profile .show-hidden-password i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.profile .show-hidden-password .fa-eye {
  opacity: 0;
}
.profile .show-hidden-password.show .fa-eye-slash {
  opacity: 0;
}
.profile .show-hidden-password.show .fa-eye {
  opacity: 1;
}

.profile-plus label {
  margin-bottom: 0.25rem;
}
.profile-plus i {
  font-size: 1.125rem;
}
.profile-plus .btn-style {
  font-size: 0.8rem;
  padding: 0.3rem 0.875rem;
}
.profile-plus .btn-style:hover {
  transform: scale(1);
  background: #009B4D;
  color: #fff;
}

.flex-custom-left {
  width: calc(100% - 160px);
}

.btn-update-info-profile {
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
  height: 100%;
  width: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-profile li {
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
}
.nav-profile li.active {
  background: #E6F5ED;
}
.nav-profile li.active a, .nav-profile li.active .tag-a {
  color: #009B4D;
}
.nav-profile li.active svg path {
  fill: #009B4D;
}
.nav-profile li.active .nav-profile__group .img-1 {
  opacity: 0;
}
.nav-profile li.active .nav-profile__group .img-2 {
  opacity: 1;
}
.nav-profile li:hover {
  color: #009B4D;
}
.nav-profile li:hover .nav-profile__group .img-1 {
  opacity: 0;
}
.nav-profile li:hover .nav-profile__group .img-2 {
  opacity: 1;
}
.nav-profile .total-notification {
  color: #fff;
  font-size: 0.75rem;
  background: #F80000;
  border-radius: 24px;
  padding: 0.1rem 0.5rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.nav-profile .fa-chevron-down {
  position: absolute;
  right: 0.875rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.nav-profile svg {
  margin-right: 0.75rem;
}
.nav-profile a, .nav-profile .tag-a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.nav-profile__group {
  position: relative;
  width: 32px;
  height: 22px;
}
.nav-profile__group img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.nav-profile__group img.relative {
  left: 2px;
}
.nav-profile__group .img-2 {
  opacity: 0;
}

.show-nav-profile-child.show .nav-profile-child {
  height: 150px;
}
.show-nav-profile-child.show .tag-a {
  color: #009B4D;
}
.show-nav-profile-child.show .tag-a .img-1 {
  opacity: 0;
}
.show-nav-profile-child.show .tag-a .img-2 {
  opacity: 1;
}
.show-nav-profile-child.show i {
  transform: rotate(180deg);
}

.nav-profile-child {
  transition: all 0.3s;
  height: 0;
  overflow: hidden;
}
.nav-profile-child a {
  padding-left: 1.5rem;
  color: #000;
  font-size: 15px;
}
.nav-profile-child a:hover {
  color: #009B4D;
}
.nav-profile-child li:first-child {
  margin-top: 0.75rem;
}

.sub-user__name {
  font-family: "AvertaStdCY-Semibold_1";
  line-height: 18px;
}
.sub-user__edit {
  color: #0072F8 !important;
  font-size: 0.875rem;
  white-space: nowrap;
}

.avatar-layout {
  position: relative;
  width: 134px;
  height: 134px;
  border-radius: 50%;
}
.avatar-layout__upload {
  position: absolute;
  right: 0.2rem;
  bottom: 0.3rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E6E8EC;
  overflow: hidden;
  cursor: pointer;
}
.avatar-layout__icon {
  color: #000;
  font-size: 0.875rem;
  cursor: pointer;
}
.avatar-layout input {
  cursor: pointer;
}

.profile-address {
  font-size: 0.875rem;
}
.profile-address__address {
  font-family: "AvertaStdCY-Semibold_1";
}
.profile-address .default {
  font-size: 0.75rem;
  color: #009B4D;
  border-color: #009B4D;
  display: none;
}
.profile-address__description {
  color: #777E90;
}
.profile-address a {
  color: #009B4D;
}
.profile-address a:hover {
  color: #FFB600;
}
.profile-address.active .default {
  display: inline-block;
}
.profile-address.active .profile-address__hidden-active {
  display: none;
}

.empty-btn {
  background: #009B4D;
  color: #fff !important;
  width: 238px;
  height: 48px;
  margin: auto;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-order-filter li {
  padding: 0.45rem 0;
  font-family: "AvertaStdCY-Semibold_1";
  color: #777E90;
  margin-right: 1.5rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-size: 0.875rem;
}
.profile-order-filter li:before {
  position: absolute;
  content: "";
  background: #009B4D;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: all 0.2s;
  z-index: 2;
}
.profile-order-filter li.active {
  border-bottom: 1px solid #009B4D;
  color: #009B4D;
}
.profile-order-filter li.active:before {
  width: 100%;
}
.profile-order-filter.justify-around {
  position: sticky;
  top: 0;
  background: #F4F5F6;
  z-index: 10;
}
.profile-order-filter.justify-around li {
  margin: 0 1.5rem;
  font-size: 1rem;
  position: relative;
}
.profile-order-filter.justify-around li:before {
  bottom: -1px;
}
.profile-order-filter.justify-around li.active {
  border-bottom: none;
}
.profile-order-filter.justify-around li.active:before {
  width: calc(100% + 48px);
  left: -24px;
}
.profile-order-filter.justify-around a:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.profile-order__header {
  background: #F4F5F6;
  border-radius: 8px 8px 0 0;
}
.profile-order__header .btn-style {
  font-size: 0.75rem;
}
.profile-order__bottom {
  background: #F4F5F6;
  border-radius: 0 0 8px 8px;
}
.profile-order__code {
  font-size: 0.875rem;
  white-space: nowrap;
}
.profile-order__code div {
  border-right: 1px solid #B1B5C4;
}
.profile-order__status {
  font-family: "AvertaStdCY-Semibold_1";
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.profile-order__status.delivering, .profile-order__status.waiting-goods {
  color: #FFB600;
}
.profile-order__status.wait, .profile-order__status.pending {
  color: #777E91;
}
.profile-order__status.complete {
  color: #009B4D;
}
.profile-order__status.cancel {
  color: #F80000;
}
.profile-order__total {
  font-size: 1rem;
}
.profile-order__total span {
  font-size: 1.25rem;
  font-family: "AvertaStdCY-Extrabold_1";
  color: #F80000;
}
.profile-order__total span.black {
  color: #000;
}
.profile-order__btn .btn-style {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.profile-order__btn .btn-no-bg {
  color: #000;
  background: #fff;
  border-color: #B1B5C4;
}
.profile-order__product-price {
  color: #000;
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 1.125rem;
}
.profile-order__product-name {
  font-size: 1.125rem !important;
}
.profile-order__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.profile-order__attribue {
  font-size: 0.875rem;
  color: #B1B5C4;
  line-height: 14px;
  margin-top: 0.2rem;
}
.profile-order__attribue span {
  color: #000;
  font-family: "AvertaStdCY-Semibold_1";
  padding-left: 0.3rem;
}
.profile-order__attribue.bd-r {
  border-right: 1px solid #B1B5C4;
}

.color-blue {
  color: #0072F8;
}
.color-blue:hover {
  color: #0072F8;
}

.color-danger {
  color: #F80000;
}
.color-danger:hover {
  color: #F80000;
}

.notitfication {
  position: relative;
}
.notitfication:before {
  position: absolute;
  content: "";
  background: #F80000;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 1.4rem;
  border-radius: 50%;
  transform: translateY(-50%);
  display: none;
}
.notitfication__content {
  width: calc(100% - 93px);
}
.notitfication__name {
  color: #353945;
  line-height: 20px;
}
.notitfication__time {
  font-size: 0.875rem;
  color: #777E91;
}
.notitfication.active {
  background: #E6F5ED;
}
.notitfication.active:before {
  display: block;
}
.notitfication.active .notitfication__name {
  font-family: "AvertaStdCY-Semibold_1";
}
.notitfication__icon {
  background: #0072F8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notitfication__icon.green {
  background: #09B530;
}
.notitfication label {
  padding: 0 !important;
  margin: 0 !important;
}

.form-otp input {
  font-family: "AvertaStdCY-Bold_1";
  letter-spacing: 3px;
}
.form-otp input::placeholder {
  font-family: "AvertaStdCY-Regular_3";
  letter-spacing: 0.4px;
}
.form-otp__description {
  font-size: 0.875rem;
}
.form-otp__description span {
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
  cursor: pointer;
}
.form-otp__description span:hover {
  color: #FFB600;
}
.form-otp .btn-style {
  background: #009B4D;
}

#count-time-otp, #count-time-otp-v2 {
  color: #F80000;
  font-family: "AvertaStdCY-Bold_1";
}

.profile-address-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #353945;
  font-size: 0.875rem;
}
.profile-address-v2.active .default {
  display: inline-block;
}
.profile-address-v2.active .delete {
  display: none;
}
.profile-address-v2__name {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 1rem;
  color: #000;
}
.profile-address-v2 .default {
  color: #0072F8;
  background: #E6F1FE;
  border-radius: 8px;
  padding: 0.3rem 0.875rem;
  font-size: 0.75rem;
  display: none;
}
.profile-address-v2__btn {
  font-family: "AvertaStdCY-Semibold_1";
  color: #009B4D;
  cursor: pointer;
  margin-left: 1rem;
}
.profile-address-v2__btn:hover {
  color: #FFB600;
}
.profile-address-v2__btn.delete {
  color: #F80000;
}
.profile-address-v2__btn-add {
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.profile-address-v2__btn-add:hover {
  color: #FFB600;
}

.store-btn .btn-style {
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
}

.select2-selection {
  border: 1px solid #e2e3e5 !important;
  border-radius: 8px !important;
  padding: 0 1rem !important;
}
.select2-selection__rendered {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.select2-selection__placeholder {
  color: #9ca3af !important;
}

.select2-dropdown {
  border: 1px solid #e2e3e5 !important;
  border-top: none !important;
  border-radius: 8px;
}

.select2-search__field {
  border: 1px solid #b7b8ba !important;
  border-radius: 4px;
  padding: 0.25rem 0.5rem !important;
}

.select2-container:focus-visible {
  outline: none !important;
}

.selection:focus-visible {
  outline: none !important;
}

.select2-container--focus {
  outline: none !important;
}

.select2-results__message {
  font-size: 0.875rem;
}

.group-city.group-invalid .select2-selection, .group-district.group-invalid .select2-selection, .group-ward.group-invalid .select2-selection {
  border: 1px solid #F80000 !important;
}

#list-address {
  overflow: auto;
  max-height: 700px;
  display: grid;
}
#list-address .profile-address-v2 {
  order: 1;
}
#list-address .profile-address-v2.active {
  order: 0;
}

.order-info__title {
  font-family: "AvertaStdCY-Bold_1";
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.125rem;
}
.order-info__title-child {
  font-family: "AvertaStdCY-Semibold_1";
  color: #353945;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}
.order-info__description {
  color: #353945;
  font-size: 0.875rem;
}
.order-info__description span {
  font-family: "AvertaStdCY-Semibold_1";
}
.order-info__success {
  text-transform: uppercase;
  color: #009B4D;
  font-style: italic;
  font-size: 0.85rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.order-info__success.Unpaid {
  color: #FFB600;
}
.order-info__success.Cancel {
  color: #F80000;
}

.total-detail-item {
  border-bottom: 1px solid #E6E8EC;
  text-align: right;
  padding: 1rem 0;
}
.total-detail-item:last-child {
  border: none;
}
.total-detail-item span {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 1.125rem;
  display: inline-block;
  min-width: 150px;
}

.total-order-detail {
  background: #F4F5F6;
  font-family: "AvertaStdCY-Bold_1";
  text-align: right;
  font-size: 1.125rem;
}
.total-order-detail span {
  color: #F80000;
  min-width: 150px;
  display: inline-block;
  font-size: 1.4rem;
}

.text-gray {
  color: #23262F;
}

.product-album {
  transition: all 0.3s;
  overflow: hidden;
}
.product-album.remove {
  height: 0;
  padding: 0 1.5rem;
}
.product-album .rating-sold {
  margin-top: 0.3rem;
}
.product-album .rating-sold div {
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  border-right: 1px solid #e2e3e5;
  line-height: 12px;
}
.product-album .rating-sold div:last-child {
  border: none;
}
.product-album .rating-sold i {
  position: relative;
  top: -1px;
}
.product-album .rating-sold .box-product__sold {
  position: relative;
  top: -1px;
}

.group-history {
  position: relative;
}
.group-history.show .more-history.view {
  opacity: 0;
  visibility: hidden;
}
.group-history.show .more-history.hidden {
  opacity: 1;
  visibility: visible;
}
.group-history.show .order-history li:nth-child(2):before {
  display: block;
}
.group-history.show .order-history li:nth-child(n+3) {
  display: block;
}

.order-history li {
  padding: 0.5rem 0 1.25rem 2.25rem;
  font-size: 0.875rem;
  line-height: 22px;
  font-family: "AvertaStdCY-Semibold_1";
  position: relative;
  color: #656565;
}
.order-history li:nth-child(2):before {
  display: none;
}
.order-history li:nth-child(n+3) {
  display: none;
}
.order-history li:before {
  position: absolute;
  content: "";
  background: #B1B5C4;
  width: 1px;
  height: 76px;
  top: 26px;
  left: 9.8px;
}
.order-history li.active {
  color: #009B4D;
}
.order-history li.active .order-history__circle {
  background: #c6e6d5;
}
.order-history li.active .order-history__circle:before {
  background: #009B4D;
}
.order-history li:last-child:before {
  display: none;
}
.order-history span {
  font-weight: 400;
  display: block;
  font-size: 0.75rem;
}
.order-history__circle {
  position: absolute;
  left: 0;
  top: 10px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #e2e3e5;
}
.order-history__circle:before {
  position: absolute;
  content: "";
  background: #777E91;
  width: 11px;
  height: 11px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#size-history-shipping {
  max-height: 335px;
  overflow-y: auto;
  position: relative;
}
#size-history-shipping::-webkit-scrollbar {
  width: 5px;
  background-color: #e2e3e5;
  border-radius: 5px;
}
#size-history-shipping::-webkit-scrollbar-thumb {
  background: #B1B5C4;
  border-radius: 5px;
}
#size-history-shipping .order__title {
  position: sticky;
  top: 8px;
  background: #fff;
  z-index: 2;
}
#size-history-shipping .order__title:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 20px;
  top: -20px;
  left: 0;
}

.group-rating {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
}
.group-rating .profile-order__attribue {
  border-right: 0;
}
.group-rating:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.rating-by-prod {
  padding-right: 0.5rem;
  padding-left: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.rating-by-prod__avatar {
  margin-right: 0.75rem;
}
.rating-by-prod__name {
  font-family: "AvertaStdCY-Semibold_1";
  line-height: 19px;
}
.rating-by-prod .fa-star {
  color: #FFB600;
  font-size: 0.7rem;
  margin-right: 0.15rem;
}
.rating-by-prod .fa-star.gray {
  color: #B1B5C4;
}
.rating-by-prod__time {
  font-size: 0.75rem;
  color: #353945;
}
.rating-by-prod__content {
  width: calc(100% - 50px);
}
.rating-by-prod__comment {
  font-size: 0.875rem;
}

#view-rating-list {
  max-height: 550px;
  overflow-y: auto;
}

.voucher-custom .voucher__icon {
  width: 120px;
  background-size: cover;
  height: 120px;
}
.voucher-custom .voucher__content {
  width: calc(100% - 120px);
}

.more-info-detail {
  cursor: pointer;
  font-size: 0.875rem;
  color: #0072F8;
  font-style: italic;
  text-decoration: underline;
  margin-top: 0.75rem;
  margin-left: 1.5rem;
  position: relative;
}
.more-info-detail:before {
  position: absolute;
  content: "";
  background: #0072F8;
  width: 6px;
  height: 1px;
  top: 50%;
  left: -8px;
  transform: translateX(-100%);
}
.more-info-detail:first-child {
  margin-left: 0;
}
.more-info-detail:first-child:before {
  display: none;
}
.more-info-detail img {
  width: 28px;
}

.user_rank {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.75rem;
  margin: 0.2rem 0;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}
.user_rank.Silver span {
  background: -webkit-linear-gradient(#b0bcc5, #a5adb6, #525b69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank.Normal span {
  background: -webkit-linear-gradient(#e2c18c, #d99a64, #4a2009);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank.Gold span {
  background: -webkit-linear-gradient(#fcf565, #efbe20, #a86a01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank.Platinum span {
  background: -webkit-linear-gradient(#cde2e7, #99c8d7, #637dae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank.Diamond span {
  background: -webkit-linear-gradient(#d8b9e5, #9c7bdc, #5233c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank img {
  width: 18px;
}
.user_rank i {
  color: #0072F8;
  font-size: 0.875rem;
  position: relative;
  top: 1px;
}
.user_rank:hover .user_rank-note {
  opacity: 1;
  visibility: visible;
  bottom: 27px;
}

.user_rank-note {
  position: absolute;
  bottom: 35px;
  right: -15px;
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  padding: 0.875rem;
  min-width: 240px;
  font-size: 0.75rem;
  transition: all 0.2s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  line-height: 18px;
  font-family: "AvertaStdCY-Regular_3";
}
.user_rank-note:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  bottom: -9px;
  right: 14.3px;
  transform: rotate(180deg);
}
.user_rank-note:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  bottom: -7.6px;
  right: 15px;
  transform: rotate(180deg);
}
.user_rank-note p {
  position: relative;
  font-size: 0.8rem;
  padding-left: 0.75rem;
}
.user_rank-note p:before {
  position: absolute;
  content: "";
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  top: 6px;
}
.user_rank-note strong {
  color: #009B4D;
}
.user_rank-note div {
  font-size: 0.85rem;
}
.user_rank-note div.flex {
  font-family: "AvertaStdCY-Semibold_1";
}
.user_rank-note div.Silver span {
  background: -webkit-linear-gradient(#b0bcc5, #a5adb6, #525b69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank-note div.Normal span {
  background: -webkit-linear-gradient(#e2c18c, #d99a64, #4a2009);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank-note div.Gold span {
  background: -webkit-linear-gradient(#fcf565, #efbe20, #a86a01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank-note div.Platinum span {
  background: -webkit-linear-gradient(#cde2e7, #99c8d7, #637dae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user_rank-note div.Diamond span {
  background: -webkit-linear-gradient(#d8b9e5, #9c7bdc, #5233c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.voucher {
  display: flex;
}
.voucher.voucher-current {
  /*.save-coupon {
      display: none;
  }*/
}
.voucher.voucher-current .use-now {
  display: flex;
}
.voucher.disable .voucher__icon {
  filter: grayscale(100%);
  opacity: 0.4;
}
.voucher.disable .voucher__content {
  background: #F4F5F6;
}
.voucher.disable .voucher__use-now {
  /* display: none;*/
}
.voucher__icon {
  background: url(../image/logo-icon/profile/bg-ticket.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.7rem;
  text-align: center;
}
.voucher.voucher-Shipping .voucher__icon {
  background: url(../image/logo-icon/profile/bg-ticket-2.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.voucher__content {
  border: 1px solid #E6E8EC;
  border-left: none;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.voucher__name {
  font-family: "AvertaStdCY-Semibold_1";
}
.voucher__description {
  font-size: 0.85rem;
  color: #B1B5C4;
}
.voucher__description.hsd {
  font-size: 0.75rem;
}
.voucher__description.amount-discount {
  font-size: 0.75rem;
  color: red;
}
.voucher__note {
  color: #F80000;
  font-size: 0.75rem;
}
.voucher__note-plus {
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 0.75rem;
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  min-width: 244px;
}
.voucher__use-now {
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.875rem;
}
.voucher__use-now:hover {
  color: #FFB600;
}
.voucher__use-now.btn-style {
  color: #fff;
  padding: 0.3rem 0.875rem;
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.75rem;
  border-radius: 5px;
}
.voucher__use-now.btn-style--transparent {
  color: #009B4D;
  padding: 0.3rem 0.475rem;
}
.voucher .fa-exclamation-circle {
  color: #0072F8;
}
.voucher__condition {
  color: #0072F8;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.875rem;
}
.voucher__condition:hover {
  color: #FFB600;
}
.voucher__info {
  position: relative;
  cursor: pointer;
}
.voucher__info:hover .info-voucher {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.info-voucher {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  padding: 0.75rem 0.875rem;
  min-width: 240px;
  font-size: 0.75rem;
  transition: all 0.2s ease 0s;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0px 0px;
  z-index: 2;
}
.info-voucher li {
  list-style: disc;
  margin-left: 0.875rem;
  color: #23262F;
  padding: 0.1rem 0;
}

.show-messager .messager {
  right: 0.75rem;
  opacity: 1;
  visibility: visible;
}

.scale-messager .messager {
  width: calc(100% - 1.5rem);
  height: 100%;
  border-radius: 0;
}
.scale-messager .messager__header {
  border-radius: 0;
}
.scale-messager .content-left {
  width: 25%;
}
.scale-messager .content-right {
  width: 75%;
}
.scale-messager .messager__content {
  height: calc(100vh - 190px);
}
.scale-messager .group-messager-user {
  max-height: calc(100vh - 140px);
}
.scale-messager .zoom-messager .img-2 {
  opacity: 1;
  visibility: visible;
}
.scale-messager .zoom-messager .img-1 {
  opacity: 0;
  visibility: hidden;
}

.messager {
  position: fixed;
  bottom: 0;
  right: -100%;
  width: 800px;
  border-radius: 8px 8px 0 0;
  background: #fff;
  z-index: 99;
  filter: drop-shadow(0px 8px 24px rgba(19, 19, 19, 0.08));
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  max-width: 100%;
  max-height: 100%;
}
.messager__header {
  padding: 0.5rem 0.75rem;
  border-radius: 8px 8px 0 0;
  background: #009B4D;
  border-color: #009B4D;
}
.messager__header .img-avatar-user {
  border: 2px solid #fff;
}
.messager__header .username-message {
  color: #fff;
}
.messager__header button {
  height: 36px;
  width: 38px;
  border-radius: 8px;
  transition: all 0.2s;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.messager__header button img, .messager__header button i {
  height: 16px;
  font-size: 1.3rem;
}
.messager__header button i {
  position: relative;
}
.messager__search {
  padding: 0.75rem;
}
.messager__search input {
  height: 36px;
  width: 100%;
  padding: 0.4rem 1rem;
  padding-left: 2.6rem;
  font-size: 0.875rem;
}
.messager__search button {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
}
.messager__item {
  position: relative;
  cursor: pointer;
  padding: 0.75rem;
  transition: all 0.2s;
  border-left: 2px solid #fff;
}
.messager__item:hover {
  background: #d5f1e2 !important;
  border-color: #d5f1e2;
}
.messager__item:hover.active {
  border-color: #d5f1e2;
}
.messager__item:hover .action-message {
  background: #d5f1e2 !important;
  opacity: 1;
  visibility: visible;
}
.messager__item:hover .time {
  opacity: 0;
}
.messager__item.active {
  background: #E6F5ED;
  border-color: #E6F5ED;
}
.messager__item.active .action-message {
  background: #E6F5ED;
}
.messager__item.isJoin {
  border-color: #009B4D;
}
.messager__item .time {
  font-size: 0.6rem;
}
.messager__item span {
  color: #B1B5C4;
  font-size: 0.75rem;
}
.messager__item.no-hover .action-message {
  opacity: 1;
  visibility: visible;
  align-items: end;
}
.messager__item.no-hover .action-message .ul-language {
  top: 20px;
}
.messager__item.no-hover:hover {
  background: none !important;
  border-left-color: #fff !important;
}
.messager__item.no-hover:hover .action-message {
  background: #fff !important;
}
.messager__item .font-bold {
  font-size: 0.8rem;
}
.messager__item .font-bold.name {
  font-size: 0.875rem;
}
.messager__item .action-message {
  position: absolute;
  bottom: 0.875rem;
  right: 0.7rem;
  height: 20px;
  width: 28px;
  text-align: right;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  align-items: baseline;
}
.messager__item .action-message ul {
  text-align: left;
}
.messager__item:last-child .ul-language {
  top: unset;
  bottom: 20px;
}
.messager__item:last-child .ul-language:before {
  top: unset;
  bottom: -6px;
  transform: rotate(180deg);
}
.messager__item:last-child .ul-language:after {
  top: unset;
  bottom: -5px;
  transform: rotate(180deg);
}
.messager .total-unread-message {
  position: relative;
  top: 2px;
  background: #F80000;
  font-size: 0.7rem;
  color: #fff;
  margin-left: auto;
  font-size: 0.6rem;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.messager .total-unread-message.hidden {
  opacity: 0;
  visibility: hidden;
}
.messager__content {
  padding: 0.75rem;
  height: 460px;
  overflow: auto;
}
.messager__content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 5px;
}
.messager__content::-webkit-scrollbar-thumb {
  background: #B1B5C4;
  border-radius: 5px;
}
.messager__time {
  color: #B1B5C4;
  font-size: 0.7rem;
  display: inline-block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.3px;
  position: relative;
  top: -2px;
}

.messager-main-content {
  position: relative;
}
.messager-main-content:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
}
.messager-main-content:after {
  position: absolute;
  content: "";
  background: transparent;
  width: 30px;
  height: 30px;
  background: url("../image/logo-icon/ring-resize.svg") no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: none;
}
.messager-main-content.show-loading-message:before {
  display: block;
}
.messager-main-content.show-loading-message:after {
  display: block;
}
.messager-main-content .btn-scroll-last-message {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  width: 38px;
  transition: all 0.2s;
}
.messager-main-content .btn-scroll-last-message img {
  border: 2px solid #E6F5ED;
  border-radius: 50%;
}
.messager-main-content .btn-scroll-last-message:hover {
  transform: scale(1.05);
}

.customer-message-group {
  text-align: right;
}
.customer-message-group .message {
  text-align: left;
}

.store-message-group {
  text-align: left;
}

.logo-chat {
  position: relative;
}
.logo-chat:before {
  position: absolute;
  content: "";
  background: #B1B5C4;
  width: 12px;
  height: 12px;
  border: 2px solid #FCFCFD;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  display: none;
}
.logo-chat.online:before {
  background: #009B4D;
}

.message {
  max-width: 65.5%;
  padding: 8px 1rem;
  margin: 0.2rem 0 0.2rem;
  display: table;
  font-size: 0.875rem;
  word-break: break-all;
}
.message.img {
  padding: 0.2rem;
}
.message.img a {
  margin: 0.2rem;
  display: inline-block;
}
.message.img img {
  width: 150px;
  height: 190px;
  object-fit: cover;
  display: inline-block;
}

.customer-messager {
  background: #0072F8;
  color: #fff;
  margin-left: auto;
  border-radius: 16px 16px 0 16px;
}
.customer-messager.img {
  text-align: right;
  background: #E6F1FE;
}
.customer-messager.img img {
  border-radius: 16px 16px 0 16px;
}

.store-messager {
  background: #E6E8EC;
  border-radius: 16px 16px 16px 0;
}
.store-messager.img {
  text-align: left;
}
.store-messager.img img {
  border-radius: 16px 16px 16px 0;
}

.messager-product {
  background: #F4F5F6;
  padding: 1rem 1.25rem;
  position: relative;
}
.messager-product button {
  position: absolute;
  top: 0.875rem;
  right: 1.25rem;
}

.messager__send {
  padding: 0.5rem 0.75rem 1rem;
}
.messager__send .avatar-layout {
  display: flex;
  justify-content: center;
  align-items: center;
}
.messager__send .avatar-layout__upload {
  background: none;
  right: 50%;
  transform: translateX(30%);
}
.messager__send .border {
  border-color: #009B4D;
  border-radius: 24px;
  width: calc(100% - 50px);
}
.messager__send button {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
}
.messager__send button:hover {
  transform: translateY(-50%);
}
.messager__send input {
  height: 38px;
  border-radius: 24px;
  padding: 0.3rem 3rem 0.3rem 1.25rem;
  font-size: 0.875rem;
}

.group-messager-user {
  overflow: auto;
  max-height: 510px;
}
.group-messager-user::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 5px;
}
.group-messager-user::-webkit-scrollbar-thumb {
  background: #B1B5C4;
  border-radius: 5px;
}
.group-messager-user .empty-box {
  font-size: 0.75rem;
}
.group-messager-user .empty-box img {
  width: 150px;
}

.zoom-messager {
  position: relative;
}
.zoom-messager img {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.zoom-messager .img-2 {
  opacity: 0;
  visibility: hidden;
}

.chat-btn {
  background: #009B4D;
  color: #fff;
  padding: 0.65rem 1.25rem;
  position: fixed;
  bottom: 0;
  z-index: 98;
  right: 0.75rem;
  border-radius: 6px 6px 0 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-btn span {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  transform: translate(40%, -40%);
  background: #F80000;
  font-size: 0.7rem;
  border: 1px solid #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.chat-btn.has-unread span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-without-room {
  min-height: 590px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-without-room span {
  position: relative;
  top: -60px;
}
.content-without-room img {
  width: 200px;
}

#app-preloader-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.action-message {
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-message:before {
  position: absolute;
  content: "";
  background: transparent;
  width: 130px;
  height: 30px;
  top: 0;
  display: none;
  right: 0;
}
.action-message .ul-language {
  min-width: 130px;
}
.action-message .ul-language li {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
}
.action-message .ul-language i {
  display: inline-block;
  width: 18px;
}
.action-message .ul-language:before {
  right: 9px;
  top: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #E6E8EC;
}
.action-message .ul-language:after {
  right: 10px;
  top: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
}
.action-message:hover .ul-language {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.action-message:hover:before {
  display: block;
}

.modal-open {
  padding-right: 0 !important;
  overflow: visible;
}

body {
  padding: 0 !important;
}

.modal {
  padding-right: 0 !important;
}
.modal input, .modal select, .modal textarea {
  padding: 0.4rem 1rem;
  outline: none;
  resize: none;
}
.modal select {
  font-size: 15px;
}
.modal label {
  margin-bottom: 0.6rem;
  display: inline-block;
  color: #23262F;
  font-size: 0.875rem;
}
.modal label.block {
  display: block;
}
.modal label.mb-0 {
  margin-bottom: 0;
}
.modal .description {
  font-size: 0.875rem;
  max-width: 85%;
  line-height: 20px;
}
.modal .description.max-w-full {
  max-width: 100%;
}
.modal #list-address .list-address-item {
  order: 1;
}
.modal #list-address .list-address-item:last-child {
  border: none !important;
}
.modal #list-address .list-address-item.active {
  order: 0;
}

.modal-title {
  font-size: 1.4rem;
  font-family: "AvertaStdCY-Bold_1";
}

.modal-content {
  padding: 1.25rem 1.4rem;
  border: none;
  position: relative;
}

.modal-add-new {
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
}

.modal-dialog {
  max-width: 615px;
}

.modal-max-500 .modal-dialog {
  max-width: 500px !important;
}

.btn-update-address {
  position: absolute;
  top: 0;
  right: 0;
  color: #009B4D;
  font-size: 0.875rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.btn-update-address:hover {
  color: #FFB600;
}

.default-address {
  color: #0072F8;
  background: #E6F1FE;
  font-size: 0.75rem;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-family: "AvertaStdCY-Semibold_1";
  position: relative;
  top: -2px;
}

.star {
  color: #F80000;
}

.type-address li {
  border-radius: 8px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.type-address li.active {
  border-color: #009B4D;
  color: #009B4D;
}

.input-search-address input {
  padding: 0.5rem 1rem;
  padding-left: 3rem;
  height: 40px;
  font-size: 0.875rem;
}
.input-search-address input:focus {
  border-color: #009B4D;
}
.input-search-address button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 40px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-address-item {
  font-size: 0.875rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.search-address-item:hover {
  background: #E6F1FE;
}

.custom-scroll {
  max-height: 360px;
  overflow: auto;
}
.custom-scroll::-webkit-scrollbar {
  width: 8px;
  background-color: #D9D9D9;
  border-radius: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #141416;
  border-radius: 5px;
  border-radius: 5px;
}

.modal-dialog-update-info {
  max-width: 450px;
}
.modal-dialog-update-info .modal-title {
  color: #009B4D;
}

.rating-modal i {
  color: #FFB600;
  font-size: 1.65rem;
  margin: 0 0.2rem;
}

.rating-reason {
  text-align: center;
}
.rating-reason li {
  font-size: 0.875rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid #E6E8EC;
  margin: 0.45rem 0.3rem;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s;
}
.rating-reason .active {
  color: #fff;
  background: #009B4D;
  border-color: #009B4D;
}

.modal-confirm .modal-content {
  text-align: center;
  position: relative;
}
.modal-confirm .btn-close {
  position: absolute;
  top: -4px;
  right: -4px;
}
.modal-confirm__title {
  color: #009B4D;
  font-size: 1.25rem;
  font-family: "AvertaStdCY-Semibold_1";
}
.modal-confirm .description {
  max-width: 100%;
}
.modal-confirm .modal-dialog {
  max-width: 440px;
}
.modal-confirm .modal-footer {
  justify-content: center;
}

#selectCalendar #calendar #calendar-grid {
  grid-template-rows: repeat(5, 1fr);
}
#selectCalendar .myCalendarWrapper-custom-arrow #navigation-wrapper {
  top: 23px;
}

#searchAddress .select2-container--default .select2-selection--single {
  border-color: #e2e3e5 !important;
}

#list-location-search {
  max-height: 380px;
  overflow: auto;
}
#list-location-search li {
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
#list-location-search span {
  display: block;
  font-size: 0.92rem;
}
#list-location-search .no-content {
  color: #F80000;
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

#list-rating-products {
  max-height: 600px;
  overflow-y: auto;
  /*padding-right: 1rem;*/
  /* Rating Star Widgets Style */
  /* Idle State of the stars */
  /* Hover state of the stars */
  /*.rating-stars > li.star.hover > i.fa {
      transition: all .2s;
      color: $yellow;
  }*/
  /* Selected state of the stars */
}
#list-rating-products::-webkit-scrollbar {
  width: 0;
}
#list-rating-products .profile-order__attribue.bd-r {
  border: none;
  margin-top: 0.25rem;
  font-family: "AvertaStdCY-Regular_3";
  font-size: 0.8rem;
}
#list-rating-products textarea {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
#list-rating-products .rating-stars {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
}
#list-rating-products .rating-stars > li.star {
  display: inline-block;
  cursor: pointer;
}
#list-rating-products .rating-stars > li.star > i.fa {
  font-size: 1.65rem; /* Change the size of the stars */
  color: #ccc; /* Color on idle state */
}
#list-rating-products .rating-stars > li.star.selected > i.fa {
  color: #FFB600;
}

.btn-add-img {
  color: #F80000;
  font-size: 0.8rem;
  border: 1px solid #F80000;
  padding: 0.45rem 1rem;
  border-radius: 4px;
}

.rating-form {
  border-bottom: 1px solid #e2e3e5;
  margin-bottom: 1rem;
}
.rating-form:last-child {
  border: none;
}

.show-loading-modal .loadding-modal {
  display: flex;
}

.loadding-modal {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  height: 100%;
  width: 100%;
  z-index: 2;
  border-radius: 4.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.loading-modal-spin {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  top: -20px;
}
.loading-modal-spin::after {
  content: "";
  width: 50px;
  height: 50px;
  left: 0;
  bottom: 0;
  position: absolute;
  border-radius: 50% 50% 0;
  border: 15px solid #009B4D;
  transform: rotate(45deg) translate(0, 0);
  animation: animMarker 0.6s ease-in-out infinite alternate;
}
.loading-modal-spin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 150%;
  width: 50px/2;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  animation: animShadow 0.6s ease-in-out infinite alternate;
}

@keyframes animMarker {
  0% {
    transform: rotate(45deg) translate(5px, 5px);
  }
  100% {
    transform: rotate(45deg) translate(-5px, -5px);
  }
}
@keyframes animShadow {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
#modalVideo .modal-dialog {
  max-width: 60%;
}
#modalVideo .modal-content {
  padding: 1.25rem;
}
#modalVideo .btn-close {
  position: absolute;
  top: 4px;
  right: 4px;
  transform: translate(50%, -50%);
  background: #fff;
  border: 1px solid #e2e3e5;
  opacity: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
#modalVideo .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
#modalVideo .embed-responsive::before {
  display: block;
  content: "";
}
#modalVideo .embed-responsive .embed-responsive-item,
#modalVideo .embed-responsive iframe,
#modalVideo .embed-responsive embed,
#modalVideo .embed-responsive object,
#modalVideo .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#modalVideo .embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}
#modalVideo .embed-responsive-16by9::before {
  padding-top: 56.25%;
}
#modalVideo .embed-responsive-4by3::before {
  padding-top: 75%;
}
#modalVideo .embed-responsive-1by1::before {
  padding-top: 100%;
}

#leaveRoom .modal-header {
  justify-content: center;
}
#leaveRoom .modal-content {
  padding: 0;
}
#leaveRoom .modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#leaveRoom .btn-close {
  top: 5px;
  right: 5px;
}

.market-filter {
  font-size: 0.875rem;
}
.market-filter__title {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 1rem;
}
.market-filter__title span {
  color: #F80000;
}
.market-filter input, .market-filter select {
  font-size: 0.9rem;
}
.market-filter input:focus, .market-filter select:focus {
  outline: none;
}
.market-filter .select2 {
  max-width: 100%;
}
.market-filter .select2-selection__placeholder {
  font-size: 0.9rem !important;
  color: #000 !important;
}
.market-filter .select2-selection__rendered {
  font-size: 0.9rem !important;
  color: #000 !important;
}
.market-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
}
.market-filter .invalid .select2-selection {
  border-color: #F80000 !important;
}

.color-green {
  color: #009B4D;
}

.table-custom td {
  border: 1px solid #E6E8EC;
  border-collapse: collapse;
}

td[role=row] {
  display: none;
}

#calendar {
  /*.checkbox-calendar {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
  }

  .checkbox input[type=checkbox] + label::before {
      width: 20px;
      height: 20px;
      font-size: 0.875rem;
      top: 0px;
      padding-top: 0.1rem;
      top: 50%;
      transform: translateY(-50%);
      left: 0.75rem;
  }

  .checkbox input[type=checkbox] + label {
      height: 100%;
  }

  .fc-view-harness {
      max-height: 910px;
  }

  .fc-scrollgrid-sync-table {
      height: 807px !important;
  }

  .fc-scroller {
      &::-webkit-scrollbar {
          width: 0;
      }
  }

  .fc-header-toolbar {
      justify-content: flex-end;
      margin-bottom: 1rem;

      .fc-toolbar-chunk {
          &:last-child {
              display: block;
          }

          .fc-today-button {
              display: none;
          }
      }
  }

  button:focus {
      box-shadow: none;
  }

  .fc-prev-button, .fc-next-button {
      background: none;
      color: $dark;
      border: none;
      padding: 0.4em 0.55em;
      font-size: $font-default;
  }

  .fc-today-button {
      background: $white;
      font-size: $font-normal;
      color: $dark;
      border-color: $gray-prod;
      border-radius: 8px;
      padding: .3rem 1rem;
      @include font-semi-bold;

      &:disabled {
          cursor: not-allowed;
          opacity: .5;
      }
  }

  .fc-toolbar-title {
      @include font-bold;
      color: $green;
      font-size: $font-big;
      margin-left: 1rem;
  }

  .fc-button-group {
      margin-left: 1rem;
  }

  .fc-col-header-cell {
      padding: 1.25rem 2rem;
      @include font-bold;
      font-size: $font-big;
      position: relative;
  }

  table {
      border-color: #E6E8EC;

      td, th {
          border-color: #E6E8EC;
      }
  }

  .fc-day-today {
      background: none;
  }

  .fc-col-header-cell-cushion {
      font-size: $font-small;

      span {
          @include center-item(flex, center, center);
          @include circle(32px, 32px, 50%);
          @include font-bold;
          font-size: $font-big;
          margin-top: .3rem;
      }
  }

  .fc-day-today {
      .fc-col-header-cell-cushion {
          span {
              background: $green;
              color: $white;
          }
      }
  }

  .fc-daygrid-body, .fc-scrollgrid-sync-table, .fc-col-header {
      width: 100% !important;
  }

  .fix-height-empty-order {
      height: 420px !important;
      max-height: 420px !important;

      .fc-scrollgrid-sync-table {
          height: 300px !important;
      }
  }
  .fc-scrollgrid-sync-table {
      tr.hidden {
          display: revert;
      }
  }*/
  grid-template-columns: auto;
}
#calendar #navigation-wrapper {
  position: absolute;
  top: 32px;
  right: 0.875rem;
  flex-direction: initial;
  padding: 0;
}
#calendar #navigation-wrapper button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F4F5F6;
  font-size: 0.875rem;
  margin-left: 0.75rem;
}
#calendar #navigation-wrapper button#previous-month {
  transform: rotate(90deg);
}
#calendar #navigation-wrapper button#next-month {
  transform: rotate(-90deg);
}
#calendar #navigation-wrapper button:disabled {
  color: gray;
  cursor: not-allowed;
  opacity: 0.8;
}
#calendar #calendar-days {
  border: 1px solid #E6E8EC;
  padding: 0;
}
#calendar #calendar-days span {
  font-family: "AvertaStdCY-Bold_1";
  color: #B1B5C3;
}
#calendar #calendar-grid {
  padding: 0;
  /*border: 1px solid black;*/
  /*grid-gap: 1px;*/
  /*background-color: $black;*/
}
#calendar #calendar-grid .disabled {
  background: #fff !important;
  color: #B1B5C3;
}
#calendar #calendar-grid time {
  border: none !important;
  box-shadow: none !important;
  /*border: 0.5px solid #E6E8EC !important;*/
  border-bottom: 1px solid #E6E8EC !important;
  border-right: 1px solid #E6E8EC !important;
  margin: 0;
  width: 100%;
  font-size: 1rem;
  height: 90px;
  border-radius: 0 !important;
  position: relative;
  font-family: "AvertaStdCY-Semibold_1";
}
#calendar #calendar-grid time:before {
  position: absolute;
  content: "";
  background: #009B4D;
  width: 16px;
  height: 16px;
  background: url("../image/logo-icon/profile/hoanthanh.svg") no-repeat;
  background-size: contain;
  top: 0.5rem;
  left: 0.5rem;
  border-radius: 50%;
  display: none;
}
#calendar #calendar-grid time:nth-child(1), #calendar #calendar-grid time:nth-child(8), #calendar #calendar-grid time:nth-child(15), #calendar #calendar-grid time:nth-child(22), #calendar #calendar-grid time:nth-child(29) {
  border-left: 1px solid #E6E8EC !important;
}
#calendar #calendar-grid time:nth-child(29) {
  border-radius: 0 0 0 8px !important;
}
#calendar #calendar-grid time:nth-child(35) {
  border-radius: 0 0 8px 0 !important;
}
#calendar #calendar-grid time.selected {
  border: none !important;
  border-bottom: 1px solid #E6E8EC !important;
  border-right: 1px solid #E6E8EC !important;
  background: #E6F5ED;
  color: #009B4D;
}
#calendar #calendar-grid time.selected:before {
  display: block;
}
#calendar #calendar-grid time.MT:before {
  content: "S";
  background: #009B4D;
  color: #fff;
  top: 0.25rem;
  left: 0.25rem;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#calendar #calendar-grid time.AT:before {
  content: "C";
  background: #FEAC1C;
  color: #fff;
  top: 0.25rem;
  left: 0.25rem;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#calendar #calendar-grid time.ET:before {
  content: "T";
  background: #2163A3;
  color: #fff;
  top: 0.25rem;
  left: 0.25rem;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#calendar-wrapper {
  display: initial;
}
#calendar-wrapper header {
  border-bottom: none;
  padding: 0.875rem;
  border: 1px solid #E6E8EC;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
#calendar-wrapper header h4 {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.05rem !important;
}

.product-market {
  min-height: 185px;
}
.product-market .flex-item {
  font-size: 0.75rem;
  margin: 0.2rem 0;
}
.product-market .name {
  display: block;
  font-size: 0.875rem;
  width: calc(100% - 78px);
  cursor: pointer;
}
.product-market .box-product__tag {
  position: static;
}
.product-market .btn-style {
  width: 47%;
  border-radius: 4px;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
}

.custom-btn-table td {
  padding: 0.65rem;
  text-align: center;
  border-bottom: none;
  height: 53px !important;
  border-top: 0;
}
.custom-btn-table button {
  margin: auto;
  border-radius: 6px;
}

.custom-table-size {
  font-family: "AvertaStdCY-Semibold_1";
}
.custom-table-size td {
  background: #E6F5ED !important;
  color: #009B4D;
  text-align: center;
  padding: 0.75rem;
  height: 50px;
  vertical-align: middle !important;
}

.btn-add-product-to-market {
  font-size: 0.75rem;
  width: 100%;
}

.overlay-drawer {
  background: #23262F;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 998;
  position: fixed;
  visibility: hidden;
  transition: all 0.2s;
}

.show-drawer-market .overlay-drawer {
  opacity: 0.4;
  visibility: visible;
}
.show-drawer-market .drawer {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.show-drawer-market .drawer__footer {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.drawer {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  width: 740px;
  background: #fff;
  z-index: 999;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}
.drawer #size-img-drawer {
  width: 200px;
  height: 200px;
  background: #F4F5F6;
  border-radius: 8px;
}
.drawer__header {
  padding: 1rem;
  border-bottom: 1px solid #B1B5C4;
}
.drawer__title {
  font-size: 1.225rem;
  font-family: "AvertaStdCY-Bold_1";
}
.drawer .fa-times {
  font-size: 1.3rem;
  cursor: pointer;
}
.drawer .btn-search {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.drawer label {
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}
.drawer label.hidden {
  display: none;
}
.drawer input, .drawer select {
  outline: none;
}
.drawer input:read-only {
  background: #F4F5F6;
}
.drawer .img-main-prod {
  object-fit: cover;
  border-radius: 8px;
  width: 200px;
  height: 200px;
  border: 1px solid #e2e3e5;
}
.drawer .box-product__tag {
  position: static;
}
.drawer__footer {
  position: fixed;
  bottom: 0;
  padding: 1rem;
  width: 100%;
  z-index: 1000;
  width: 700px;
  right: -100%;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.drawer__footer .btn-style {
  font-size: 0.875rem;
  height: 40px;
  margin-left: 0.875rem;
  min-width: 100px;
  font-family: "AvertaStdCY-Semibold_1";
}
.drawer .custom-input-number button {
  width: 47px;
}

#product-list-add {
  max-height: 650px;
  overflow-y: auto;
  padding-right: 0.75rem;
}
#product-list-add::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #e2e3e5;
  border-radius: 5px;
}
#product-list-add::-webkit-scrollbar-thumb {
  background: #B1B5C4;
  border-radius: 5px;
}
#product-list-add .cart__price {
  margin: 0 1rem;
}
#product-list-add .cart__price.bold {
  margin: 0;
}
#product-list-add .cart__item:last-child .drop-variant ul {
  bottom: 24px;
  top: unset;
}
#product-list-add .cart__item:last-child .drop-variant ul:before {
  top: unset;
  bottom: -9px;
  transform: rotate(180deg);
}
#product-list-add .cart__item:last-child .drop-variant ul:after {
  top: unset;
  bottom: -8px;
  transform: rotate(180deg);
}
#product-list-add .cart__price {
  font-size: 0.9rem;
}
#product-list-add .checkbox input[type=checkbox] + label {
  margin: 0;
  padding: 0 0.2em 0 0;
}
#product-list-add .checkbox input[type=checkbox]:checked + label::before {
  padding-right: 1px;
}
#product-list-add .checkbox input[type=checkbox]:disabled + label::before {
  background-color: #e2e3e5 !important;
  border-color: #B1B5C4 !important;
  cursor: not-allowed !important;
}

#search-prod-size {
  position: relative;
}
#search-prod-size input, #search-prod-size select, #search-prod-size .select2-selection__placeholder {
  font-size: 0.875rem;
}

.product-search-results {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  border: 1px solid #E6E8EC;
  background: #fff;
  box-shadow: 0px 4px 12px rgba(19, 19, 19, 0.12);
  border-radius: 10px;
  padding: 1rem 0.875rem;
  z-index: 2;
  max-height: 700px;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.1s;
  visibility: hidden;
}
.product-search-results::-webkit-scrollbar {
  width: 5px;
  background-color: #e2e3e5;
  border-radius: 5px;
}
.product-search-results::-webkit-scrollbar-thumb {
  background: #B1B5C4;
  border-radius: 5px;
}
.product-search-results.show {
  opacity: 1;
  visibility: visible;
}
.product-search-results .checkbox input[type=checkbox] + label::before {
  padding-right: 1px;
}
.product-search-results .cart__item:last-child .drop-variant ul {
  bottom: 24px;
  top: unset;
}
.product-search-results .cart__item:last-child .drop-variant ul:before {
  top: unset;
  bottom: -9px;
  transform: rotate(180deg);
}
.product-search-results .cart__item:last-child .drop-variant ul:after {
  top: unset;
  bottom: -8px;
  transform: rotate(180deg);
}

.drop-variant {
  position: relative;
  cursor: pointer;
}
.drop-variant .cart__product-name-variant {
  white-space: nowrap;
}
.drop-variant:after {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 18px;
  bottom: -18px;
  left: 0;
}
.drop-variant:hover ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.drop-variant ul {
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  padding: 0.3rem 0;
  border: 1px solid #E6E8EC;
  box-shadow: 0px 4px 12px rgba(19, 19, 19, 0.12);
  min-width: 200px;
  border-radius: 6px;
  z-index: 3;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
}
.drop-variant ul:before {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #E6E8EC;
  top: -9px;
  left: 14px;
}
.drop-variant ul:after {
  position: absolute;
  content: "";
  background: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  top: -7.6px;
  left: 15px;
}
.drop-variant ul li {
  font-size: 0.85rem;
  font-family: "AvertaStdCY-Regular_3";
  cursor: pointer;
  padding: 0.45rem 0.75rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drop-variant ul li i {
  display: none;
  font-size: 0.75rem;
}
.drop-variant ul li:hover {
  background: rgb(241, 242, 244);
}
.drop-variant ul li.active {
  color: #009B4D;
}
.drop-variant ul li.active i {
  display: inline-block;
}
.drop-variant .fa-sort-down {
  position: relative;
  top: -2px;
}

.btn-show-modal-calendar {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.875rem;
}
.btn-show-modal-calendar i {
  color: #8ABE69;
  font-size: 1rem;
}

.btn-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 30px;
  border-radius: 0;
  font-size: 0.875rem;
}
.btn-nav.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.market-time {
  color: #009B4D;
  font-family: "AvertaStdCY-Semibold_1";
}

.table-order {
  border-collapse: collapse;
}
.table-order td, .table-order th {
  border: 1px solid #E6E8EC;
  text-align: center;
  width: 14.2857142857%;
}
.table-order td {
  padding: 0.1rem;
  vertical-align: top;
}
.table-order th {
  padding: 1rem 0.75rem;
}
.table-order th span {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.7rem;
}
.table-order th div {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.35rem;
}

#selectCalendar .btn-close {
  top: 12px !important;
  right: 6px !important;
}
#selectCalendar .modal-title {
  font-size: 1.25rem;
}
#selectCalendar .modal-dialog {
  max-width: 748px;
}

.remove-menu-day:hover {
  color: #F80000;
}

#recommendProducts .cart__product .product-price {
  padding-top: 0.3rem !important;
}
#recommendProducts .cart__product img.object-cover {
  border: 1px solid #e2e3e5;
}
#recommendProducts .cart__quantity {
  padding-top: 0.75rem;
}

.affiliate-logo {
  width: 260px;
}

.affiliate-title {
  font-family: "AvertaStdCY-Bold_1";
  font-size: 1.65rem;
  border-left: 1px solid #fff;
  padding-left: 3rem;
  margin-left: 3rem;
  line-height: 64px;
}

.affiliate-user {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.affiliate-user img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 0.65rem;
}
.affiliate-user span {
  font-size: 0.875rem;
  font-family: "AvertaStdCY-Semibold_1";
}

.affiliate-form {
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
}
.affiliate-form h2 {
  font-size: 1.25rem;
  font-family: "AvertaStdCY-Bold_1";
  margin-bottom: 0.35rem;
}
.affiliate-form h2 .green {
  color: #009B4D;
}
.affiliate-form h2 .yellow {
  color: #FFB600;
}
.affiliate-form p {
  font-size: 0.875rem;
  line-height: 18px;
}
.affiliate-form label {
  margin-bottom: 0.6rem;
  display: inline-block;
  color: #23262F;
  font-size: 0.875rem;
}
.affiliate-form input {
  padding: 0.4rem 1rem;
  outline: none;
  font-size: 0.875rem;
}
.affiliate-form .btn-style {
  font-family: "AvertaStdCY-Semibold_1";
  font-size: 0.875rem;
  width: 180px;
  height: 44px;
  background: #009B4D;
}
.affiliate-form .btn-style--transparent {
  background: #fff;
}
.affiliate-form .checkbox label {
  font-size: 0.875rem !important;
}
.affiliate-form .checkbox a {
  color: #0072F8;
  text-decoration: underline;
  padding: 0 0.4rem;
}
.affiliate-form .custom-checkbox-aff label {
  padding-top: 0 !important;
  margin-right: 0 !important;
}
.affiliate-form .custom-checkbox-aff label:before {
  margin-right: 0.4rem !important;
  top: 2px !important;
}

.bg-affiliate {
  background: url("../image/logo-icon/bg-search-order.png") no-repeat;
  background-size: cover;
  height: calc(100vh - 130px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-affiliate .order-search {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border: none;
  position: relative;
}
.bg-affiliate .order-search label {
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}
.bg-affiliate .back-link {
  font-size: 1.6rem;
  position: absolute;
  top: 2.25rem;
  left: 1.25rem;
  cursor: pointer;
}
.bg-affiliate .order-search__description {
  font-size: 0.875rem;
}
.bg-affiliate .checkbox input[type=checkbox] + label {
  white-space: break-spaces;
}

.body-affiliate {
  height: 100vh;
}

.affiliate-success {
  max-width: 500px;
  margin: auto;
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
}
.affiliate-success__title {
  text-align: center;
  font-family: "AvertaStdCY-Bold_1";
  color: #009B4D;
  font-size: 1.4rem;
}
.affiliate-success__description {
  font-size: 0.875rem;
  text-align: center;
  color: #23262F;
}

@font-face {
  font-family: "AvertaStdCY-Bold_1";
  src: url("../webfonts/AvertaStdCY-Bold_1.otf") format("opentype");
}
@font-face {
  font-family: "AvertaStdCY-Extrabold_1";
  src: url("../webfonts/AvertaStdCY-Extrabold_1.otf") format("opentype");
}
@font-face {
  font-family: "AvertaStdCY-Regular_3";
  src: url("../webfonts/AvertaStdCY-Regular_3.otf") format("opentype");
}
@font-face {
  font-family: "AvertaStdCY-Semibold_1";
  src: url("../webfonts/AvertaStdCY-Semibold_1.otf") format("opentype");
}
.font-semi-bold {
  font-family: "AvertaStdCY-Semibold_1";
}

.font-bold-big {
  font-family: "AvertaStdCY-Extrabold_1";
}

.font-bold {
  font-family: "AvertaStdCY-Bold_1";
}

.font-normal {
  font-family: "AvertaStdCY-Regular_3";
}

.payment-bg {
  background: url("../image/logo-icon/bg-search-order.png") no-repeat;
  background-size: cover;
  padding: 5rem 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-form {
  background: #FCFCFD;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.12), 0px 4px 8px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  width: 440px;
  max-width: 100%;
}
.success-form .blue {
  color: #0072F8;
  white-space: nowrap;
}
.success-form__title {
  color: #009B4D;
  font-size: 1.25rem;
  font-family: "AvertaStdCY-Bold_1";
}
.success-form__description {
  font-size: 0.875rem;
  line-height: 20px;
}

@media only screen and (max-width: 600px) {
  .payment-bg {
    padding: 2rem 0.75rem;
  }
  .success-form {
    padding: 1.25rem 0.875rem;
  }
  .success-form__img {
    width: 70px;
  }
}
@media only screen and (max-width: 1600px) {
  .container {
    max-width: 1366px !important;
  }
  .header__search {
    width: 540px;
  }
  .logo-main {
    width: 240px;
  }
  .logo-abc {
    /*width: 180px;*/
    width: 150px;
  }
  .banner-index {
    height: 170px;
  }
  .banner-owl img {
    height: 363px;
  }
  .banner-body {
    height: 193px;
  }
  .banner-footer {
    height: 192px;
  }
  .background-cover {
    min-height: 210px;
  }
  .background-store {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .cart-colume-1 {
    width: 380px;
  }
  .cart-colume-2 {
    width: 177px;
  }
  .cart-colume-3 {
    width: 144px;
  }
  .cart-colume-4 {
    width: 100px;
  }
  .colume-1 {
    width: 40px;
  }
  .colume-2 {
    width: 350px;
  }
  .colume-3 {
    width: 160px;
  }
  .colume-4 {
    width: 160px;
  }
  .colume-5 {
    width: 100px;
  }
  .colume-6 {
    width: calc(100% - 800px);
  }
  .product-owl-img {
    height: 516px;
  }
  .profile-order-filter.justify-around li.active:before {
    width: 100%;
    left: 0;
  }
  .product__certification {
    height: 292px;
  }
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1280px !important;
  }
  .header__search {
    width: 450px;
  }
  .category {
    padding: 1rem;
  }
  .box-product {
    padding: 0.875rem;
    min-height: 366px;
  }
  .box-product img {
    height: 230px;
  }
  .banner-index {
    height: 160px;
  }
  .banner-owl img {
    height: 344px;
  }
  .banner-body {
    height: 178px;
  }
  .banner-footer {
    height: 178px;
  }
  .background-cover {
    min-height: 185px;
  }
  .background-store {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
  }
  .product-owl-img {
    height: 500px;
  }
  .res-block {
    display: block;
  }
  .product__attribute li {
    margin-right: 1rem;
  }
  .img-ingredient {
    width: 130px;
    height: 100px;
  }
  .cart-colume-1 {
    width: 350px;
  }
  .cart-colume-2 {
    width: 162px;
  }
  .cart-colume-3 {
    width: 134px;
  }
  .cart-colume-4 {
    width: 100px;
  }
  .colume-1 {
    width: 40px;
  }
  .colume-2 {
    width: 310px;
  }
  .colume-2 img {
    width: 70px;
    height: 70px;
  }
  .colume-3 {
    width: 160px;
  }
  .colume-4 {
    width: 138px;
  }
  .colume-5 {
    width: 100px;
  }
  .colume-6 {
    width: calc(100% - 748px);
  }
  .profile__title {
    font-size: 1.25rem;
  }
  .profile-order__header .btn-style {
    height: 24px;
  }
  .custom-flex-market-mb {
    display: block;
  }
  .custom-flex-market-mb span {
    display: flex;
  }
  .custom-flex-market-mb span span {
    padding-left: 0.2rem;
  }
  .product__certification {
    height: 270px;
  }
  .video__img {
    height: 106px;
  }
  #addUpdateAddress .modal-body {
    overflow: auto;
    max-height: 560px;
  }
  .box-article img {
    height: 190px;
  }
}
@media only screen and (max-width: 1366px) {
  .logo-main {
    width: 230px;
  }
  .logo-abc {
    /*width: 160px;*/
    width: 140px;
  }
  .header__icon a {
    height: 44px;
    font-size: 0.875rem;
  }
  .header__icon .icon {
    width: 44px;
    height: 44px;
  }
  .header__icon .select-location {
    width: auto;
  }
  .header__search input {
    height: 44px;
  }
  .header__search .btn-style {
    right: 6px;
  }
  .box-product {
    min-height: 330px;
  }
  .box-product img {
    height: 212px;
  }
  .box-product__name {
    font-size: 0.9rem;
  }
  .box-product__price {
    font-size: 1.125rem;
  }
  .box-product__origin {
    font-size: 0.75rem;
  }
  .profile-order-filter.justify-around li {
    margin: 0 1rem;
  }
  .category {
    padding: 0.75rem 0.875rem;
  }
  .category__title {
    font-size: 1rem;
  }
  .category img {
    width: 86px;
    height: 86px;
  }
  .main-menu a {
    font-size: 0.875rem;
  }
  .product__certification {
    height: 263px;
  }
  .show-hidden-catalog .btn-style {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .show-hidden-catalog .btn-style i {
    position: relative;
    top: 2px;
  }
  .catalog {
    padding: 0.875rem;
  }
  .catalog a {
    height: 54px;
    font-size: 0.9rem;
    padding: 0.2rem 0.75rem;
  }
  .catalog img {
    height: 38px !important;
    width: 38px !important;
  }
  .sub-menu {
    padding: 0.35rem 0;
  }
  .sub-menu a {
    height: 40px;
  }
  .title-main {
    font-size: 0.8rem;
  }
  .title-main h2 {
    font-size: 1.25rem;
  }
  .subscribe-send input {
    min-width: 560px;
  }
  .header__top a {
    font-size: 0.8rem;
  }
  .header__icon li {
    margin-left: 1.25rem;
  }
  .title-ft {
    font-size: 0.9rem;
  }
  footer {
    font-size: 0.875rem;
  }
  footer .ul-block a {
    font-size: 0.85rem;
  }
  .background-cover {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .background-store {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .background-store .btn-style {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
  }
  .store__name {
    font-size: 1.25rem;
  }
  .store__address {
    font-size: 0.875rem;
  }
  .show-box-chat {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .total-message {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
  .product__name {
    font-size: 1.6rem;
  }
  .product__price {
    font-size: 1.6rem;
  }
  .product__price span {
    font-size: 1.6rem;
  }
  .product__root-price {
    font-size: 1.25rem;
  }
  .cart-colume-1 {
    width: 340px;
  }
  .colume-2 {
    width: 300px;
  }
  .colume-2 img {
    width: 70px;
    height: 70px;
  }
  .rating__filter li {
    width: 100px;
    height: 34px;
  }
  .video__play img {
    width: 40px !important;
  }
  #modalVideo .modal-dialog {
    max-width: 70%;
  }
  #addUpdateAddress .modal-body {
    overflow: auto;
    max-height: 500px;
  }
}
@media only screen and (max-width: 1280px) {
  .container {
    max-width: 1200px !important;
  }
  .header__search {
    width: 380px;
  }
  .logo-main {
    width: 220px;
  }
  .logo-abc {
    /*width: 150px;*/
    width: 140px;
  }
  .banner-index {
    height: 145px;
  }
  .banner-owl img {
    height: 313.5px;
  }
  .banner-body {
    height: 167px;
  }
  .banner-footer {
    height: 167px;
  }
  .box-article img {
    height: 170px;
  }
  .product__certification {
    height: 240px;
  }
  .background-cover {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    min-height: 175px;
  }
  .fixed-filter {
    position: relative;
  }
  .filter__title {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.125rem;
  }
  .filter__category li {
    font-size: 0.875rem;
    padding: 0.4rem 0;
  }
  .filter__sort {
    font-size: 0.875rem;
  }
  .text-result-search {
    font-size: 0.875rem;
  }
  .checkbox input[type=checkbox] + label {
    font-size: 0.875rem;
  }
  .filter__rating {
    padding: 0.4rem;
  }
  .background-store {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .box-product {
    padding: 0.75rem;
    min-height: 336px;
  }
  .cart-colume-1 {
    width: 320px;
  }
  .cart-colume-2 {
    width: 115px;
  }
  .cart-colume-3 {
    width: 115px;
  }
  .cart-colume-4 {
    width: 100px;
  }
  .colume-2 {
    width: 280px;
  }
  .colume-2 img {
    width: 70px;
    height: 70px;
  }
  .colume-3 {
    width: 110px;
  }
  .colume-4 {
    width: 120px;
  }
  .colume-5 {
    width: 100px;
  }
  .colume-6 {
    width: calc(100% - 660px);
  }
  .profile__title {
    font-size: 1.125rem;
  }
  .profile .btn-style.py-2.text-sm {
    padding: 0.5rem 0.875rem;
  }
  .category-support {
    font-size: 1rem;
  }
  .article-nav-header {
    font-size: 1rem;
  }
  .article-nav-header img {
    width: 20px;
  }
  .article-nav-ul li {
    padding: 0.3rem 1rem;
  }
  .article-nav-ul a {
    font-size: 0.875rem;
  }
  .profile-order-filter.justify-around li {
    font-size: 0.875rem;
  }
  #modalVideo .modal-content {
    padding: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    max-width: 960px !important;
  }
  .header__search {
    width: 360px;
  }
  .header__search input {
    height: 38px;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    padding-right: 2.5rem;
  }
  .header__search .btn-style {
    width: 30px;
    height: 30px;
    right: 4.5px;
  }
  .list-autocomplete {
    font-size: 0.875rem;
  }
  .list-autocomplete li {
    padding: 0.45rem 0.6rem 0.45rem 0.2rem;
  }
  .header__icon li {
    margin-left: 0.875rem;
  }
  .header__icon a {
    height: 38px;
  }
  .header__icon .icon {
    width: 38px;
    height: 38px;
  }
  .header__icon .select-location {
    padding: 0;
  }
  .header__icon .select-location span {
    display: none;
  }
  .header__icon .select-location img {
    opacity: 1;
    visibility: visible;
  }
  .header__icon img {
    height: 18px;
  }
  .ul-profile li {
    margin-left: 0;
  }
  .logo-main {
    width: 160px;
    margin-top: 0.2rem;
  }
  .logo-abc {
    /*width: 140px;*/
    width: 130px;
    margin-top: 0;
  }
  .header__cart-total {
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
  }
  .group-search li {
    margin-right: 1rem;
  }
  .group-search a {
    font-size: 0.75rem;
  }
  .banner-index {
    height: 115px;
  }
  .banner-owl img {
    height: 245px;
  }
  .banner-body {
    height: 132px;
  }
  .banner-footer {
    height: 136px;
  }
  .category {
    padding: 0.5rem 0.75rem;
  }
  .category__title {
    font-size: 0.8rem;
  }
  .category img {
    width: 66px;
    height: 66px;
  }
  .category__total-product {
    font-size: 0.75rem;
  }
  .box-product img {
    height: 210px;
  }
  .subscribe-send input {
    min-width: 410px;
    font-size: 0.875rem;
    height: 44px;
  }
  .subscribe-send .btn-style {
    right: 6px;
  }
  .subscribe-text {
    font-size: 1.24rem;
  }
  .subscribe-text p {
    line-height: 24px;
  }
  .box-product__action li {
    width: 36px;
    height: 36px;
  }
  .box-product__action img {
    height: 18px !important;
  }
  .catalog {
    padding: 0.3rem 0.6rem;
  }
  .catalog img {
    height: 30px !important;
    width: 30px !important;
  }
  .catalog a {
    min-width: 250px;
    height: 40px;
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
  }
  .catalog i {
    font-size: 0.875rem;
  }
  .catalog > li i {
    right: 12px;
  }
  .sub-menu {
    padding: 0.4rem 0;
  }
  .sub-menu li {
    padding: 0 0.55rem;
  }
  .sub-menu a {
    font-size: 0.75rem;
    height: 32px;
  }
  .show-hidden-catalog .btn-style {
    padding: 0.4rem 0.875rem;
  }
  .box-product {
    min-height: 321px;
  }
  .background-cover {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    min-height: 140px;
  }
  .main-category-title {
    font-size: 1.4rem;
  }
  .breadcrumb {
    margin-top: 0 !important;
  }
  .breadcrumb li {
    margin-right: 2rem;
    font-size: 0.875rem;
  }
  .breadcrumb li:before {
    right: -19px;
  }
  .filter__title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
  }
  .checkbox input[type=checkbox] + label {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .checkbox input[type=checkbox] + label::before {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 5px;
  }
  .filter__rating {
    padding: 0.2rem 0.4rem;
    min-height: 32px;
  }
  .filter__rating i {
    font-size: 0.7rem;
  }
  .filter__rating span {
    font-size: 0.75rem;
  }
  .filter__rating .close {
    width: 18px;
    height: 18px;
  }
  .pagination .pagination-item {
    width: 30px;
    height: 30px;
  }
  .store__info {
    display: block;
  }
  .store__info li {
    border: none;
    margin: 0 0 0.3rem;
    text-align: right;
    font-size: 0.75rem;
  }
  .store__info li:last-child {
    margin: 0;
  }
  .store__info li:before {
    display: none;
  }
  .store__info span {
    padding-top: 0;
  }
  .product__list-image {
    width: 90px;
  }
  .product__list-image img {
    height: 80px;
  }
  .product__slide {
    width: calc(100% - 90px);
    padding-left: 0.45rem;
  }
  .product-owl-img {
    height: 410px;
  }
  .product__slide .variant-img {
    padding-left: 0;
  }
  .product__name {
    font-size: 1.45rem;
  }
  .product__certificate {
    font-size: 0.75rem;
  }
  .product__price {
    display: block;
  }
  .product__description {
    font-size: 1rem;
  }
  .product__description.bold {
    font-size: 1rem;
  }
  .product__view-more {
    font-size: 0.875rem;
  }
  .product .res-block .flex {
    display: block;
    padding: 0.2rem 0;
  }
  .product .res-block .flex-last {
    display: flex;
  }
  .product__title {
    font-size: 1.125rem;
  }
  .content-detail p, .content-detail span {
    font-size: 0.875rem;
    line-height: 20px;
    margin-bottom: 0.875rem;
  }
  .img-ingredient {
    width: 100px;
    height: 80px;
  }
  .product-ul li {
    font-size: 0.875rem;
  }
  .custom-row-product .col-4-custom {
    max-width: calc(100% - 50px);
  }
  .custom-row-product .col-1-custom {
    width: 225px;
    position: relative;
    left: -50px;
  }
  .btn-link {
    font-size: 0.875rem;
  }
  .certification i {
    font-size: 1.125rem;
  }
  .rating__avatar {
    width: auto;
    margin-right: 1rem;
  }
  .rating__description {
    line-height: 20px;
  }
  .rating__time {
    font-size: 0.75rem;
  }
  .rating__content {
    font-size: 0.875rem;
  }
  .cart-colume-1 {
    width: 373px;
  }
  .cart-colume-2 {
    width: 130px;
  }
  .cart-colume-3 {
    width: 146px;
  }
  .colume-2 {
    width: 330px;
  }
  .colume-3 {
    width: 130px;
  }
  .colume-4 {
    width: 150px;
  }
  .colume-5 {
    width: 130px;
  }
  .colume-6 {
    width: calc(100% - 780px);
  }
  .delivery {
    display: block;
  }
  .delivery .flex {
    margin-bottom: 0.4rem;
  }
  .img-product-order {
    width: 54px;
    height: 54px;
  }
  .nav-profile-mobile {
    position: fixed;
    top: 24vh;
    left: -100%;
    z-index: 10;
    height: 365px;
    transition: all 0.2s;
    opacity: 0;
    visibility: hidden;
    width: 230px;
  }
  #btn-show-nav-profile {
    position: fixed;
    top: 45vh;
    left: -4px;
    z-index: 8;
    padding: 0.7rem 1rem;
    opacity: 0.3;
  }
  #btn-show-nav-profile:hover {
    opacity: 1;
  }
  .show-nav-profile .nav-profile-mobile {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .show-nav-profile #btn-show-nav-profile {
    left: 225px;
    opacity: 1;
  }
  .show-nav-profile #btn-show-nav-profile i {
    transform: rotate(180deg);
  }
  .nav-profile li {
    font-size: 0.875rem;
    padding: 0.6rem 0.5rem;
  }
  .nav-profile img {
    width: 20px;
  }
  .nav-profile__group {
    width: 28px;
  }
  .nav-profile .fa-chevron-down {
    right: 0;
  }
  .nav-profile-child a {
    font-size: 0.875rem;
  }
  .profile-order__product-name {
    font-size: 1rem !important;
  }
  .profile-order__product-price {
    font-size: 1rem;
  }
  .profile-order__total {
    font-size: 1rem;
  }
  .profile-order__total span {
    font-size: 1.25rem;
  }
  .user-name-buy {
    font-size: 1.1rem;
  }
  .ul-support li {
    font-size: 0.875rem;
  }
  #article-nav {
    padding: 0.75rem;
  }
  .article-nav-header {
    font-size: 0.875rem;
  }
  .category-support {
    font-size: 0.9rem !important;
  }
  .logo {
    font-size: 1rem;
  }
  .auth-form {
    width: 430px;
  }
  .auth-form label {
    margin-bottom: 0.3rem;
  }
  .btn-login-social {
    font-size: 0.875rem;
  }
  .over-table-1024 {
    width: 100%;
    overflow: auto;
  }
  .w-custom-1400 {
    width: 1400px;
  }
  .rating-modal i {
    font-size: 1.35rem;
    margin: 0 0.1rem;
  }
  .rating-reason li {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    margin: 0.3rem 0.2rem;
  }
  .btn-view-more-category {
    font-size: 0.875rem;
  }
  .grid-product-detail__left {
    width: 400px;
  }
  .grid-product-detail__right {
    width: calc(100% - 400px);
  }
  .grid-product-detail .product__slide {
    width: 100%;
  }
  .product__certification {
    height: 170px;
  }
  .certification button {
    height: 30px;
  }
  .product__title-description {
    font-size: 0.875rem;
  }
  .profile-order-filter.justify-around {
    display: none;
  }
  .breadcrumb-product-v2 {
    display: block;
  }
  .breadcrumb-product-v2 li {
    display: inline-block;
  }
  .owl-certification__img {
    height: 105px;
  }
  .grid-prodduct-info__left {
    width: calc(100% - 360px);
  }
  .grid-prodduct-info__right {
    width: 360px;
  }
  .grid-prodduct-info__right .store__info li {
    text-align: left;
  }
}
@media only screen and (max-width: 960px) {
  .container {
    max-width: 768px !important;
    padding-left: 8px;
    padding-right: 8px;
  }
  .header__search {
    width: 300px;
  }
  .header__icon .go-market {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
  }
  .header__icon .go-market span, .header__icon .go-market i {
    display: none;
  }
  .header__icon .go-market img {
    margin: 0;
  }
  .header__icon .select-location {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 0;
  }
  .header__icon .select-location span, .header__icon .select-location i {
    display: none;
  }
  .header__icon .select-location img {
    margin: 0;
  }
  .subscribe-text {
    text-align: center;
    margin-bottom: 1rem;
  }
  .subscribe-send input {
    width: 100%;
  }
  .cart-colume-1 {
    width: 373px;
  }
  .cart-colume-2 {
    width: 130px;
  }
  .cart-colume-3 {
    width: 146px;
  }
  .colume-2 {
    width: 260px;
  }
  .colume-2 img {
    width: 50px;
    height: 50px;
  }
  .colume-3 {
    width: 100px;
  }
  .colume-4 {
    width: 130px;
  }
  .colume-5 {
    width: 120px;
  }
  .colume-6 {
    width: calc(100% - 650px);
  }
  .img-store-cart {
    width: 45px;
    height: 45px;
  }
  .cart__item .custom-befo span {
    font-size: 1.125rem;
  }
  .profile-order-filter li {
    font-size: 0.875rem;
    margin-right: 1.5rem;
  }
  .profile-order__product-name {
    font-size: 0.9rem !important;
    line-height: 18px !important;
  }
  .notitfication__name {
    font-size: 0.875rem;
  }
  #btn-show-nav-profile {
    top: 40vh;
  }
  .icon-profile:before {
    width: 52px;
    height: 57px;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding-bottom: 0.5rem;
  }
  .logo-main {
    width: 124px;
    margin-top: 0.4rem;
  }
  .logo-abc {
    margin-top: 0;
    width: 100px;
  }
  .header__top a {
    font-size: 0.75rem;
  }
  .header__top i {
    font-size: 0.7rem;
  }
  .header__top img {
    height: 12px;
  }
  .group-search .ul-reset {
    display: none;
  }
  .box-article img {
    height: 150px;
  }
  .box-article__time {
    width: 56px;
    height: 56px;
  }
  .box-article__time div:first-child {
    height: 36px;
    font-size: 1.25rem;
  }
  .box-article__time div:last-child {
    height: 20px;
    font-size: 0.7rem;
  }
  .box-article__content {
    padding: 0.75rem;
  }
  .box-article__title {
    font-size: 0.875rem;
    line-height: 18px;
    height: 34px;
    margin-bottom: 0.5rem;
  }
  .box-article .befo-line {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
  .box-article__calendar.green {
    display: none;
  }
  .header__center {
    padding-bottom: 0 !important;
  }
  .catalog img {
    height: 28px !important;
    width: 28px !important;
  }
  .catalog a, .catalog span {
    min-width: 200px;
    font-size: 0.75rem;
    height: 38px;
  }
  .catalog i {
    right: 0.7rem;
  }
  .sub-menu {
    padding: 0.2rem 0;
  }
  .sub-menu a {
    height: 30px;
  }
  .banner-index {
    height: 92px;
  }
  .banner-owl img {
    height: 196px;
  }
  .banner-body {
    height: 100px;
  }
  .banner-footer {
    height: 105px;
  }
  .category img {
    width: 56px;
    height: 56px;
  }
  .main-menu li {
    margin-right: 1.25rem;
  }
  .main-menu a {
    font-size: 0.8rem;
  }
  .show-hidden-catalog .btn-style {
    padding: 0.3rem 0.875rem;
    font-size: 0.8rem;
  }
  .category {
    padding: 0.4rem 0.7rem;
  }
  .title-main {
    font-size: 0.75rem;
  }
  .title-main h2 {
    font-size: 1.125rem;
  }
  .btn-owl-nav {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .nav-tabs .nav-item {
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
  }
  .category-owl .owl-nav {
    top: -43px;
  }
  .category-owl .owl-nav button {
    font-size: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .btn-owl-nav {
    width: 32px;
    height: 32px;
  }
  .category-introduce {
    padding: 1rem;
    height: 100%;
    height: calc(100% - 1.2rem);
  }
  .category-introduce__description {
    font-size: 0.75rem;
  }
  .category-introduce h3 {
    margin-bottom: 1.125rem;
    font-size: 1rem;
    margin-top: 0 !important;
  }
  .category-introduce .btn-style {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    max-width: 130px;
  }
  .category-introduce.mt-2 {
    margin-top: 0.2rem;
  }
  .box-product {
    padding: 0.5rem;
    min-height: 245px;
  }
  .box-product.mt-2 {
    margin-top: 0.2rem;
  }
  .box-product img {
    height: 152px;
  }
  .box-product__tag {
    margin-top: 0.5rem !important;
    margin-bottom: 0.3rem !important;
    font-size: 0.75rem;
  }
  .box-product__tag img {
    height: 14px !important;
    width: 38px !important;
  }
  .box-product__tag i {
    font-size: 0.6rem;
  }
  .box-product__name {
    font-size: 0.7rem;
  }
  .box-product__price {
    font-size: 0.9rem;
    margin-top: 0 !important;
    display: flex;
    white-space: nowrap;
  }
  .box-product__price span {
    font-size: 0.9rem;
  }
  .box-product__price b {
    font-size: 0.75rem;
    top: 1.25px;
  }
  .box-product__price b span {
    font-size: 0.75rem;
  }
  .box-product__origin {
    font-size: 0.7rem;
    line-height: 15px;
  }
  .box-product__origin span {
    display: inline-block;
  }
  .box-product .rating-sold div {
    padding-right: 0.4rem;
    margin-right: 0.4rem;
  }
  .box-product__rating i {
    font-size: 0.6rem;
  }
  .box-product__sold {
    border: none;
    font-size: 0.65rem;
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-top: 0.3rem;
    top: -1px !important;
  }
  .custom-owl-nav .owl-nav {
    top: -34px;
  }
  .custom-owl-nav .owl-nav button {
    width: 28px !important;
    height: 28px !important;
    margin-left: 0.7rem !important;
    font-size: 0.875rem !important;
  }
  .btn-owl-nav {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.875rem !important;
  }
  .nav-tabs {
    margin-right: 5.5rem;
  }
  .filter__title {
    font-size: 0.8rem;
  }
  .filter__category li {
    font-size: 0.75rem;
    padding: 0.3rem 0;
  }
  .filter__sort {
    font-size: 0.75rem;
  }
  .filter__sort select {
    min-width: 180px !important;
    padding: 0.4rem 0.875rem;
  }
  .text-result-search {
    font-size: 0.75rem;
  }
  footer {
    padding: 1.35rem 0 1.125rem;
  }
  .store__avatar {
    width: 110px;
    height: 110px;
  }
  .store__name {
    margin-bottom: 0 !important;
    font-size: 1.125rem;
  }
  .store .box-product__tag {
    margin-top: 0.2rem !important;
    margin-bottom: 0 !important;
  }
  .store__address {
    margin-left: 0.2rem !important;
    font-size: 0.75rem;
  }
  .store__info span {
    font-size: 0.875rem;
  }
  .background-store {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
    background-position-x: 23%;
  }
  .product-owl-img {
    height: 560px;
  }
  .product__slide {
    padding: 0;
  }
  .arrow-slide {
    top: 56%;
  }
  .product__list-image a {
    width: 84px;
    min-width: 84px;
  }
  .custom-row-product .col-2 {
    width: 190px;
  }
  .store .btn-style {
    font-size: 0.75rem;
  }
  .cart-colume-1 {
    width: 302px;
  }
  .cart-colume-2 {
    width: 100px;
  }
  .cart-colume-3 {
    width: 125px;
  }
  .modal-title {
    font-size: 1.25rem;
    line-height: 22px;
  }
  .voucher__icon {
    background-size: cover;
  }
  .order-info__title {
    font-size: 1rem;
  }
  .order-info__title-child {
    font-size: 0.85rem;
    line-height: 18px;
  }
  .order-info__description {
    font-size: 0.75rem;
  }
  #size-history-shipping .order__title {
    font-size: 1rem;
  }
  .order-history li {
    font-size: 0.75rem;
    line-height: 16px;
  }
  .order-history span {
    font-size: 0.7rem;
    padding-top: 0.3rem;
  }
  .total-detail-item {
    font-size: 0.875rem;
  }
  .total-detail-item span {
    font-size: 1rem;
  }
  .total-order-detail__info {
    font-size: 1rem;
  }
  .total-order-detail__info span {
    font-size: 1.125rem;
  }
  .market-filter input, .market-filter select {
    font-size: 0.875rem;
  }
  .filter-nav-mobile {
    position: fixed !important;
    left: -100%;
    min-width: 200px;
    background: #fff;
    box-shadow: 0px 8px 12px rgba(19, 19, 19, 0.04);
    border: 1px solid #e2e3e5;
    z-index: 3;
    padding: 0.75rem;
    height: 100%;
    top: 0 !important;
    overflow: auto;
    padding-bottom: 3rem;
    transition: all 0.2s;
    z-index: 1000;
  }
  #btn-show-nav-filter {
    position: fixed;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0.6rem 0.875rem;
    opacity: 0.3;
    font-size: 0.875rem;
    transition: all 0.2s;
  }
  #btn-show-nav-filter:hover {
    opacity: 1;
  }
  .show-filter-category .filter-nav-mobile {
    left: 0;
  }
  .show-filter-category #btn-show-nav-filter {
    opacity: 1;
    left: 196px;
  }
  .show-filter-category #btn-show-nav-filter i {
    transform: rotate(180deg);
  }
  #list-product-search .box-product img {
    height: 220px;
  }
  .grid-product-detail {
    display: block;
  }
  .grid-product-detail__left {
    width: 100%;
  }
  .grid-product-detail__right {
    width: 100%;
    padding: 0.75rem 0 0 0;
  }
  .res-block {
    display: flex;
  }
  .product .res-block .flex {
    display: flex;
  }
  .product .res-block .flex #form-to {
    margin-right: 0.75rem;
  }
  .grid-prodduct-info {
    display: block;
  }
  .grid-prodduct-info__left {
    width: 100%;
  }
  .grid-prodduct-info__right {
    width: 100%;
    padding: 0;
  }
  .grid-prodduct-info__right .store__info {
    display: flex;
  }
  .grid-prodduct-info__right .store__info li {
    text-align: center;
  }
  #image-store img {
    height: 108px;
  }
  .product__certification {
    height: 244px;
  }
  #modalVideo .modal-dialog {
    max-width: 95%;
  }
  #modalVideo .modal-dialog .modal-content {
    padding: 0.875rem;
  }
  .bag__title .group {
    padding: 5px 10px;
  }
  .delivery {
    padding: 0.6rem 0.7rem;
  }
  .delivery.free-box {
    display: flex;
  }
  .coupon-by-store {
    padding-top: 0.3rem;
  }
}
@media only screen and (max-width: 600px) {
  .show-menu .over-layout {
    right: 0;
    opacity: 0.3;
    visibility: visible;
  }
  .show-menu .menu-mobile {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .over-layout {
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999998;
    transition: all 0.2s;
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  .menu-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 78%;
    background: #009B4D;
    z-index: 999999;
    height: 100%;
    overflow: auto;
    padding: 0.5rem 1rem 3rem;
    transition: all 0.2s;
  }
  .menu-mobile .catalog {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0.3rem 0;
  }
  .menu-mobile .catalog .active {
    background: none;
  }
  .menu-mobile .catalog a, .menu-mobile .catalog span {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 70px);
  }
  .menu-mobile .catalog a:hover, .menu-mobile .catalog span:hover {
    background: none;
  }
  .menu-mobile .catalog li {
    display: block;
    position: relative;
  }
  .menu-mobile .catalog li i {
    position: absolute;
    top: 0.35rem;
    right: 0;
  }
  .menu-mobile .catalog li.drop > .sub-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
  }
  .menu-mobile .catalog li.drop > i {
    transform: rotate(90deg);
  }
  .menu-mobile .catalog li.has-item i {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu-mobile .catalog > li {
    position: relative;
    margin: 0;
    padding: 0.35rem 0 0.1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  }
  .menu-mobile .catalog i {
    width: 40px;
    height: 38px;
    z-index: 10;
    color: #fff;
  }
  .menu-mobile .sub-menu {
    background: none;
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 1.7rem;
    transform: scaleY(0);
    transform-origin: 0 0;
    max-height: 0;
    overflow: hidden;
    display: block !important;
  }
  .menu-mobile .sub-menu li {
    padding-right: 0;
    margin: 0.15rem 0;
  }
  .menu-mobile .sub-menu li i {
    height: 30px;
    top: 0;
  }
  .menu-mobile .sub-menu span {
    height: 30px;
  }
  .menu-mobile .sub-menu .sub-menu {
    padding-left: 1rem;
    border-left: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 0;
    display: block !important;
  }
  .menu-mobile .header__icon {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    padding: 0.35rem 0 0.75rem;
  }
  .menu-mobile .header__icon li {
    display: block;
  }
  .menu-mobile .header__icon li:first-child {
    margin-left: 0;
  }
  #addToCartVariant .btn-close {
    top: -8px;
  }
  .ul-profile {
    top: 125%;
    right: -5px;
  }
  .ul-profile li {
    padding: 0.25rem 0.75rem;
  }
  .ul-profile li, .ul-profile a {
    font-size: 0.75rem;
  }
  .not-logged-in {
    top: 125%;
    right: -5px;
    padding: 0.3rem 0;
    min-width: 158px;
  }
  .not-logged-in a {
    font-size: 0.75rem;
  }
  .banner-owl img {
    height: 170px;
  }
  .banner-index {
    height: 74px;
  }
  .category__title {
    line-height: 14px;
  }
  .category img {
    width: 46px;
    height: 46px;
  }
  #list-product-search .box-product img {
    height: 180px;
  }
  .title-main {
    font-size: 0.65rem;
  }
  .title-main h2 {
    font-size: 1rem;
  }
  .auth-form .btn-login-social {
    width: 165px;
  }
  header {
    padding-bottom: 0;
    height: 54px;
  }
  .header__icon .go-market {
    transition: all 0.2s;
    width: 100px !important;
  }
  .header__icon .icon {
    width: 34px;
    height: 34px;
  }
  .header__icon img {
    height: 16px;
  }
  .header__cart-total {
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
  }
  .header__top, .group-search, .header__bottom {
    display: none;
  }
  .header-sticky .header__icon .go-market {
    padding: 0;
    height: 30px;
    width: 30px !important;
  }
  .header-sticky .header__icon .go-market img {
    margin: 0;
  }
  .header-sticky .header__icon .go-market span {
    display: inline-block;
    visibility: hidden;
    opacity: 0;
    width: 0;
    overflow: hidden;
  }
  .header-sticky .bar-mobile {
    margin-left: 0.25rem;
  }
  .bar-mobile {
    display: block;
    margin-left: 0.75rem;
  }
  .logo-main {
    margin: 0;
  }
  .logo-abc {
    width: 75px;
    top: 0 !important;
  }
  .header__center {
    align-items: center !important;
    padding: 0.45rem 8px !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 54px;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #e2e3e5;
  }
  .header__icon li {
    display: none;
  }
  .header__icon li:first-child, .header__icon li:nth-child(2) {
    display: block;
  }
  .header__icon .icon {
    background: #fff;
    border-color: #fff;
  }
  .header__icon .go-market {
    width: auto;
    height: 30px;
    border-radius: 50px;
    padding: 0 0.75rem;
  }
  .header__icon .go-market span {
    display: inline;
    font-size: 0.7rem;
    white-space: nowrap;
    position: relative;
    top: 1px;
  }
  .header__icon .go-market img {
    margin-right: 0.4rem;
  }
  .header__icon .select-location {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0 0.75rem;
    border: 1px solid #e2e3e5;
  }
  .btn-view-more-category {
    font-size: 0.75rem;
  }
  .banner-owl .owl-item img {
    border-radius: 8px;
  }
  .banner-owl .owl-dots {
    bottom: 0.75rem;
  }
  .banner-owl .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
  }
  .col-banner-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.65rem;
  }
  .col-banner-mobile #banner-right-1, .col-banner-mobile #banner-right-2 {
    width: 48.8%;
  }
  .col-banner-mobile #banner-right-1 img, .col-banner-mobile #banner-right-2 img {
    border-radius: 8px;
  }
  .btn-owl-nav {
    width: 28px;
    height: 28px;
    font-size: 0.7rem !important;
  }
  .btn-owl-nav i {
    position: relative;
    top: 0.5px;
  }
  .btn-owl-nav.mr-3 {
    margin-right: 0.35rem;
  }
  .title-main h2 {
    line-height: 24px;
  }
  .block-item-mobile {
    display: block;
  }
  .nav-tabs {
    margin: 0.55rem 0 0.75rem !important;
    justify-content: flex-start;
  }
  .nav-tabs .nav-item:first-child {
    margin: 0;
  }
  .category-owl .owl-nav button.owl-next, .category-owl .owl-nav button.owl-prev {
    width: 28px;
    height: 28px;
    margin-left: 0.35rem !important;
  }
  .category-introduce {
    height: 130px;
  }
  .category-introduce h3 {
    margin-bottom: 0.75rem;
  }
  .category-introduce .btn-style {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
    max-width: 115px;
  }
  .category-introduce .btn-style i {
    position: relative;
    top: 1px;
  }
  .nav-tabs-category-best-sell {
    margin: 0 !important;
    display: block;
  }
  .nav-tabs-category-best-sell .nav-item {
    margin-bottom: 0.4rem;
    display: inline-block;
    margin-left: 0;
    border-color: #d2d3da;
    margin-right: 0.4rem !important;
  }
  .nav-tabs-category-best-sell .nav-item:first-child {
    margin-bottom: 0.5rem;
  }
  .search-top-owl .owl-stage-outer {
    padding-bottom: 0;
  }
  .subscribe-text {
    margin-bottom: 0.75rem;
  }
  .subscribe-text p {
    font-size: 1.125rem;
    margin: 0;
  }
  .subscribe-text span {
    font-size: 0.75rem;
  }
  .subscribe-send input {
    min-width: auto;
    height: 40px;
  }
  .subscribe-send .btn-style {
    width: 32px;
    height: 32px;
  }
  #banner-introduce-1 img {
    height: 174px;
  }
  .banner-footer {
    height: 66px;
  }
  .box-product__delivery {
    font-size: 0.875rem;
  }
  .box-product__price {
    font-size: 0.875rem;
  }
  .banner-footer {
    height: 88px;
  }
  #banner-body-bottom-2 img {
    height: 174px;
  }
  .title-ft {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
  .footer-copyright {
    font-size: 0.75rem;
  }
  footer p {
    font-size: 0.875rem;
    line-height: 20px !important;
  }
  footer .ul-block li {
    margin: 0.2rem 0;
    font-size: 0.75rem;
  }
  .icon-profile:before {
    width: 46px;
    height: 48px;
  }
  .background-cover {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
    min-height: 100px;
  }
  .main-category-title {
    font-size: 1.125rem;
  }
  .breadcrumb li {
    font-size: 0.75rem;
  }
  .checkbox input[type=checkbox] + label::before {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }
  .checkbox input[type=checkbox] + label::before {
    font-size: 0.65rem;
    padding-top: 2.5px;
  }
  .custom-owl-nav .owl-nav {
    top: 40%;
    left: 0;
    right: 0;
  }
  .custom-owl-nav .owl-nav button {
    margin-left: 0 !important;
    position: absolute;
    font-size: 0.7rem !important;
  }
  .custom-owl-nav .owl-nav button.owl-prev {
    left: -4px;
  }
  .custom-owl-nav .owl-nav button.owl-next {
    right: -4px;
  }
  .custom-owl-nav .owl-nav button i {
    position: relative;
    top: 0.5px;
  }
  .box-product {
    min-height: 283px;
  }
  .box-product img {
    height: 180px;
  }
  .box-product__action li {
    width: 30px;
    height: 30px;
  }
  .box-product__action li:first-child img {
    height: 15px !important;
  }
  .box-product__action li img {
    height: 15px !important;
  }
  .box-product__price span {
    font-size: 0.75rem !important;
    top: -1px;
  }
  .box-product__price b {
    font-size: 0.75rem;
  }
  .filter__sort {
    margin-top: 0.5rem;
  }
  .filter__sort span {
    display: none;
  }
  .filter__sort select {
    width: 100%;
    margin: 0;
  }
  .over-table {
    width: 100%;
    overflow: auto;
  }
  .w-custom {
    min-width: 752px;
  }
  .img-store-cart {
    width: 32px;
    height: 32px;
  }
  .cart__item .custom-befo span {
    font-size: 1rem;
    padding-top: 0.25rem;
  }
  .cart__product-name, .cart__price, .cart__delete {
    font-size: 0.8rem;
  }
  .cart__header .checkbox input[type=checkbox] + label {
    font-size: 0.875rem;
  }
  .cart__price.bold {
    font-size: 0.875rem;
  }
  .cart__item .custom-befo:before {
    top: 12px !important;
  }
  .cart-quatity input {
    font-size: 0.875rem;
  }
  .colume-2 img {
    width: 40px;
    height: 40px;
  }
  .cart__content {
    padding: 0.75rem;
  }
  .cart__header {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  .cart__total {
    padding: 0.25rem 0.875rem;
  }
  .cart__total li {
    font-size: 1rem;
    padding: 0.65rem 0;
  }
  .img-place {
    height: 25px;
  }
  .img-place-18 {
    height: 18px;
  }
  .order__title {
    font-size: 1rem;
    white-space: nowrap;
  }
  .order__note {
    font-size: 0.75rem;
    line-height: 18px;
  }
  .transport-methods {
    display: block;
    height: auto !important;
  }
  .transport-methods .color-danger {
    position: static;
    margin-top: 0.2rem;
    display: inline-block;
  }
  .check-radio input[type=radio] + label:before {
    width: 18px;
    height: 18px;
  }
  .delivery {
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
    margin-left: 0;
    margin-top: 0.2rem;
    max-width: 100%;
  }
  .img-product-order {
    width: 46px;
    height: 46px;
  }
  .icon-payment {
    width: 25px;
  }
  .payment-methods {
    width: 100% !important;
  }
  .cart__total li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
  }
  .cart__total .transport__item {
    font-size: 1rem;
  }
  .btn-style.w-full {
    padding: 0.5rem 1.25rem;
  }
  .modal-content {
    padding: 0.875rem 1rem;
  }
  .modal-body {
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .modal-title {
    font-size: 1.18rem;
  }
  .icon-address-mobile {
    width: 14px;
  }
  .modal input, .modal select, .modal textarea {
    font-size: 0.875rem;
    padding: 0.4rem 0.875rem;
  }
  .modal .description {
    font-size: 0.75rem;
    line-height: 16px;
  }
  .modal label {
    font-size: 0.75rem;
  }
  .modal .btn-style {
    font-size: 0.75rem;
    padding: 0.4rem 1.25rem;
  }
  .btn-update-address {
    font-size: 0.75rem;
  }
  .address-modal-name {
    font-size: 0.875rem;
  }
  .default-address {
    font-size: 0.65rem;
  }
  .form-otp__description {
    font-size: 0.75rem;
  }
  .voucher__icon {
    font-size: 0.75rem;
  }
  .voucher__content {
    width: calc(100% - 100px) !important;
  }
  .voucher__use-now, .voucher__condition {
    font-size: 0.75rem;
  }
  .voucher__description {
    font-size: 0.75rem;
  }
  .cart__product-name {
    padding: 0;
  }
  .nav-profile-mobile {
    top: 16vh;
  }
  .btn-style {
    font-size: 0.8rem;
  }
  .avatar-layout {
    width: 110px;
    height: 110px;
  }
  .avatar-layout__upload {
    width: 26px;
    height: 26px;
  }
  .flex-custom-left {
    width: 100%;
  }
  .profile label {
    font-size: 0.75rem;
  }
  .profile input {
    height: 40px;
    font-size: 0.875rem;
  }
  .nav-profile li {
    padding: 0.5rem 0.4rem;
  }
  .nav-profile a {
    font-size: 0.8rem;
  }
  .nav-profile .total-notification {
    font-size: 0.65rem;
  }
  .nav-profile__group {
    width: 24px;
  }
  .nav-profile__group img {
    width: 18px;
  }
  .btn-update-info-profile {
    font-size: 0.72rem;
  }
  .sub-user__name {
    font-size: 0.875rem;
  }
  .sub-user__edit {
    font-size: 0.75rem;
  }
  .sub-user__edit img {
    width: 12px;
    position: relative;
    top: 1px;
  }
  .profile-address-v2 {
    display: block;
  }
  .profile-address-v2 .default {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }
  .profile-address-v2.active .default {
    display: block;
    width: 70px;
    text-align: center;
    margin: 0;
    margin-top: 0.3rem;
  }
  .profile-address-v2__description {
    font-size: 0.75rem;
  }
  .profile-address-v2__name {
    font-size: 0.875rem;
  }
  .profile-address-v2__btn-add {
    font-size: 0.875rem;
  }
  .profile-address-v2__btn {
    display: inline-block;
    margin-top: 0.5rem;
    margin-left: 0;
    font-size: 0.75rem;
  }
  .profile-address-v2__btn.delete {
    margin-left: 0.875rem;
  }
  .profile-order-filter li {
    padding: 0.3rem;
    margin-right: 1rem;
  }
  .profile-order-filter li:last-child {
    margin-right: 0;
  }
  .notitfication:before {
    right: 0.875rem;
  }
  .notitfication__icon {
    width: 36px !important;
    height: 36px !important;
  }
  .show-nav-profile-child.show .nav-profile-child {
    height: 115px;
  }
  .nav-profile-child li:first-child {
    margin-top: 0.5rem;
  }
  .w-custom-500 {
    min-width: 500px;
  }
  .profile .show-hidden-password i {
    font-size: 0.875rem;
  }
  .profile-order__status {
    font-size: 0.875rem;
  }
  .custom-flex-mb {
    display: block;
  }
  .custom-flex-mb .profile__title {
    font-size: 1rem;
  }
  .custom-flex-mb .profile-order__status {
    justify-content: flex-start;
    margin: 0.3rem 0 0 0;
  }
  .show-box-chat {
    right: 0.875rem;
    bottom: 0.875rem;
  }
  .show-box-chat i {
    margin: 0;
    font-size: 1.125rem;
  }
  .store__avatar {
    width: 90px;
    height: 90px;
  }
  .store__name {
    font-size: 0.9rem;
  }
  .store__info {
    display: flex;
    margin-top: 0.5rem;
    justify-content: space-between;
  }
  .store__info li {
    text-align: center;
    margin-bottom: 0;
  }
  .order-search__title {
    font-size: 1.25rem;
  }
  .order-search input {
    font-size: 0.875rem;
  }
  .order-search .order-input img {
    width: 22px;
  }
  .user-name-buy {
    font-size: 1rem;
  }
  .market-filter__title {
    font-size: 0.875rem;
  }
  .drawer {
    width: 100%;
    z-index: 1000;
  }
  .drawer__header {
    padding: 0.7rem 0.75rem;
  }
  .tag-link {
    font-size: 0.75rem;
  }
  .auth-form {
    padding: 0.875rem;
    max-width: 100%;
  }
  .auth-form__title {
    font-size: 1.25rem;
  }
  .auth-form__description {
    font-size: 0.8rem;
  }
  .auth-form .show-hidden-password i {
    font-size: 0.875rem;
  }
  .auth-form input {
    height: 40px;
    font-size: 0.875rem;
  }
  .auth-form .btn-login-social {
    font-size: 0.75rem;
    height: 40px;
  }
  .back-link {
    top: 1.25rem;
    left: 0.875rem;
  }
  .category-support {
    font-size: 0.8rem !important;
  }
  .category-support__circle {
    width: 40px;
    height: 40px;
  }
  .category-support__circle img {
    width: 20px;
  }
  #article-nav {
    padding: 0 0.4rem 0.5rem;
  }
  .logo {
    font-size: 0.875rem;
  }
  .article-nav-ul accent-color, .article-nav-ul span {
    font-size: 0.875rem;
  }
  .breadcrumb-product, .breadcrumb-product-v2 {
    display: inline;
  }
  .breadcrumb-product li, .breadcrumb-product-v2 li {
    display: inline;
  }
  .breadcrumb-product-v2 {
    margin-left: 0.75rem;
  }
  .product__list-image {
    display: none;
  }
  .product__slide {
    width: 100%;
    padding: 0;
  }
  .product__share li {
    margin-right: 0.75rem;
  }
  .product__share img {
    width: 26px;
  }
  .product__name {
    font-size: 1.35rem;
    line-height: 24px;
    margin-bottom: 0;
  }
  .product__price {
    font-size: 1.25rem;
  }
  .product__price.small {
    font-size: 1.25rem;
  }
  .product__price span {
    font-size: 1.25rem;
  }
  .product__root-price {
    font-size: 1.125rem;
  }
  .product__root-price span {
    font-size: 1.125rem;
  }
  .product__description {
    font-size: 0.875rem;
  }
  .product__certificate {
    font-size: 0.875rem;
  }
  .product__title-description {
    font-size: 0.875rem;
  }
  .product__coupon {
    display: block;
  }
  .product__coupon li {
    display: inline-block;
    margin: 0.3rem 0.2rem;
    width: 87px;
    height: 31px;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.4rem 0;
  }
  .product__coupon li:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .product__attribute {
    display: block;
  }
  .product__attribute li {
    display: inline-block;
    margin: 0.3rem 0.2rem;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.25rem 0;
  }
  .product__attribute li:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .btn-cart {
    height: 40px;
  }
  .product-owl-img {
    height: 300px;
    border-radius: 4px !important;
  }
  .custom-row-product .col-4-custom {
    max-width: 100%;
  }
  .custom-row-product .col-1-custom {
    width: 100%;
    left: 0;
  }
  .breadcrumb li, .breadcrumb a {
    white-space: nowrap;
  }
  .breadcrumb li:last-child {
    margin: 0;
  }
  .rating__filter {
    width: 550px;
  }
  .rating__time {
    text-align: left;
    margin-top: 0.3rem;
  }
  .messager {
    height: calc(100% - 54px);
  }
  .messager__header {
    padding: 0.75rem 0.875rem;
  }
  .select2-selection__placeholder {
    font-size: 0.875rem;
  }
  .select2-selection__rendered {
    font-size: 0.875rem;
  }
  .select2-results__option[aria-selected] {
    font-size: 0.875rem;
  }
  .box-product__tag {
    bottom: 0;
  }
  .input-search-address input {
    padding-left: 2.6rem;
  }
  .input-search-address button {
    width: 44px;
  }
  .group-property span {
    font-size: 0.7rem;
    margin-right: 0.75rem;
    width: 70px;
    height: 28px;
  }
  .empty-btn {
    width: 210px;
    height: 42px;
  }
  .empty-box {
    font-size: 0.875rem;
  }
  .empty-box img {
    width: 200px;
  }
  .valid-size.show {
    margin-bottom: 1rem;
  }
  .valid-size:before {
    height: calc(100% + 18px);
  }
  .valid-size .error-message {
    top: -2px;
    font-size: 0.75rem;
  }
  .certification button {
    height: 30px;
  }
  .store-info-cart span {
    font-size: 1rem;
  }
  .product__certification {
    height: 169px;
  }
  .video__img {
    height: 190px;
  }
  #image-store img {
    height: 70px;
  }
  .product__list-image {
    display: flex;
  }
  .product__list-image a {
    width: 70px;
    min-width: 70px;
    margin-right: 0.5rem;
  }
  .product__list-image img {
    height: 70px;
  }
  .arrow-slide {
    width: 26px;
    height: 28px;
  }
  .res-block {
    display: block;
  }
  .product .res-block .flex {
    display: block;
  }
  .product .res-block #price-sale {
    display: flex;
  }
  .product__view-more {
    top: 0 !important;
  }
  .checkbox .error-message.warning, .checkbox .sales-location-detail {
    display: block;
    padding-left: 0 !important;
  }
  .checkbox .error-message.warning.hidden, .checkbox .sales-location-detail.hidden {
    display: none;
  }
  .nav-tabs-article, #title-article-home {
    margin-bottom: 0 !important;
  }
  #info-address {
    padding: 0 !important;
  }
  #info-address select {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 393px) {
  .banner-owl img {
    height: 175px;
  }
  .banner-index {
    height: 67px;
  }
  .banner-body {
    height: 82px;
  }
  #banner-introduce-1 img {
    height: 165px;
  }
  #banner-body-bottom-2 img {
    height: 165px;
  }
  .banner-owl .owl-dots {
    bottom: 0.4rem;
  }
  .modal-content {
    padding: 0.875rem 1rem;
  }
  .search-address-item {
    padding: 0.4rem 0.5rem;
  }
  .custom-scroll::-webkit-scrollbar {
    width: 5px;
  }
  .tag-link {
    display: none;
  }
  .product-owl-img {
    height: 275px;
  }
  .rating {
    display: block !important;
  }
  .rating__avatar {
    justify-content: flex-start !important;
    margin-bottom: 0.75rem;
  }
  .rating__content {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  header {
    height: 48px;
  }
  .header__center {
    height: 48px;
  }
  .banner-owl img {
    height: 162px;
  }
  .banner-index {
    height: 65px;
  }
  .banner-body {
    height: 77px;
  }
  #banner-introduce-1 img {
    height: 156px;
  }
  .banner-footer {
    height: 82px;
  }
  #banner-body-bottom-2 img {
    height: 154px;
  }
  .nav-tabs .nav-item {
    padding: 0.3rem 0.75rem;
  }
  .modal-body {
    max-height: 420px;
  }
  .btn-apply {
    width: 80px !important;
    font-size: 0.75rem !important;
  }
  .fix-witdh-ip {
    width: calc(100% - 90px) !important;
  }
  .btn-update-address {
    font-size: 0.75rem;
  }
  .modal-add-new {
    font-size: 0.85rem;
  }
  .min-w-auto {
    min-width: initial;
  }
  .auth-form .btn-login-social {
    width: 155px;
  }
  .product-owl-img {
    height: 260px;
  }
  .product__rating li {
    white-space: nowrap;
    font-size: 0.7rem;
    padding-right: 0.5rem;
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 340px) {
  .banner-owl img {
    height: 130px;
  }
  .banner-index {
    height: 56px;
  }
  .category__title {
    font-size: 0.75rem;
  }
  .category__total-product {
    font-size: 0.6rem;
  }
  .title-main {
    font-size: 0.6rem;
  }
  .box-product__price {
    font-size: 0.75rem;
  }
  .box-product__delivery {
    font-size: 0.75rem;
  }
  #banner-introduce-1 img {
    height: 134px;
  }
  .banner-body {
    height: 66px;
  }
  .banner-footer {
    height: 70px;
  }
  #banner-body-bottom-2 img {
    height: 132px;
  }
  .box-product img {
    height: 120px;
  }
  .custom-scroll {
    max-height: 310px;
  }
  .modal-content {
    padding: 0.75rem 0.875rem;
  }
  .voucher__condition {
    position: static;
  }
  .voucher__use-now {
    margin: 0 !important;
  }
  .voucher__icon {
    height: 106px !important;
    background-size: cover;
  }
  .voucher__content {
    padding: 0.5rem !important;
    height: 106px;
  }
  .bag__title {
    font-size: 0.75rem !important;
  }
  .bag__title .group {
    margin-right: 0.5rem;
  }
  .modal-title {
    font-size: 1.125rem;
  }
  .address-modal-description {
    font-size: 0.75rem !important;
  }
  .back-link {
    font-size: 1.25rem;
  }
  .auth-form .btn-login-social {
    width: 130px;
  }
  .product-owl-img {
    height: 230px;
  }
}
