:root {
  --fw-bold: 700;
  --fw-medium: 500;
  --fw-regular: 400;
  --primary-color: #0e3eda;
  --bg-color: white;
  --primary-hover-color: #0b2fa6;
  --primary-focus-color: #082480;
  --primary-disable-color: #d0d7f3;
  --secondary-color: #f473b9;
  --secondary-hover-color: #cc609b;
  --secondary-focus-color: #a64e7d;
  --border-default-color: #e4e5f0;
  --border-hover-color: #a7abc3;
  --global-font: "Roboto";
  --focus-color: #1990ff;
  --text-color: #434657;
  --text-title-color: #1b1d29;
  --text-blur: #a7abc3;
  --invalid-color: #da4343;
  --input-disable-color: #f3f3f7;
  --button-disable-color: #dcdee9;
  --button-text-disable-color: #a7abc3;
  --ghost-border-default-color: #bcbfd6;
  --ghost-border-hover-color: #82869e;
  --w-ghost-hover-color: #f8f8fc;
  --w-ghost-focus-color: #f3f3f7;
  --text-link-default-color: #82869e;
  --text-link-hover-color: #1473cc;
  --status-success-color: #30cd60;
  --status-yellow-color: #ffa940;
  --status-red-color: #f83142;
  --status-sd-success-color: #f5fdf7;
  --status-sd-danger-color: #fdf6f6;
  --status-sd-yellow-color: #fffbf5;
  --status-sd-red-color: #fff5f6;
  --status-sd-blue-color: #e8f4ff;
  --status-outline-red-color: #df2c3b;
  --disable-switch-color: #e8ebf9;
  --bg-notify-color: #e3e3e3;
  --box-shadow-default: 0 2px 4px rgba(0, 0, 0, 0.05);
  --text-cash-back: #e6983a;
  --th-table-color: #fbfbfd;
  --filter-text-color: invert(25%) sepia(17%) saturate(560%) hue-rotate(194deg)
    brightness(97%) contrast(90%);
  --filter-primary-color: invert(22%) sepia(98%) saturate(2861%)
    hue-rotate(225deg) brightness(81%) contrast(115%);
  --filter-focus-color: invert(48%) sepia(75%) saturate(2985%)
    hue-rotate(190deg) brightness(98%) contrast(107%);
  --filter-link-default-color: invert(53%) sepia(19%) saturate(394%)
    hue-rotate(194deg) brightness(98%) contrast(80%);
  --filter-link-hover-color: invert(33%) sepia(74%) saturate(1284%)
    hue-rotate(185deg) brightness(95%) contrast(96%);
  --filter-button-disable-color: invert(84%) sepia(6%) saturate(259%)
    hue-rotate(193deg) brightness(106%) contrast(92%);
}

body {
  font-family: var(--global-font), sans-serif;
  font-style: normal;
  color: var(--text-color);
  line-height: 20px;
  font-size: 13px;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-title-color);
  margin: 0;
}

h1 {
  font-size: 48px;
  line-height: 64px;
}

h2 {
  font-size: 40px;
  line-height: 56px;
}

h3 {
  font-size: 36px;
  line-height: 48px;
}

h4 {
  font-size: 32px;
  line-height: 40px;
}

p,
span,
a {
  font-size: 13px;
  line-height: 20px;
  color: var(--text-color);
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--border-default-color);
}

input[type="text"],
input[type="password"],
textarea,
select {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-color);
  line-height: 20px;
  background: #fff;
  border: 1px solid var(--border-default-color);
  padding: 10px 12px;
  border-radius: 8px;
  height: 40px;
  outline: none;
  transition: border-color ease 0.15s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select {
  text-indent: 1px;
  text-overflow: "";
}

.toggle-password,
.copy-input {
  position: relative;
  width: 100%;
}

.toggle-password:before,
.copy-input:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  filter: var(--filter-link-default-color);
}

.toggle-password.copy-input:after {
  right: 40px;
}

.toggle-password:before {
  background-image: url(../image/svg/eye-hide.svg);
}

.copy-input:after {
  background-image: url(../image/svg/copy.svg);
}

.toggle-password.is_show:before {
  background-image: url(../image/svg/eye-show.svg);
}

.toggle-password input,
.copy-input input {
  padding-right: 44px;
}

.toggle-password.copy-input input {
  padding-right: 66px;
}

.t-capitalize {
  text-transform: capitalize;
}

input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover {
  border: 1px solid var(--border-hover-color);
}

.swiper {
  overflow-x: hidden;
  position: relative;
  max-height: 300px;
  opacity: 0;
  transition: 0.3s;
  padding-bottom: 2px;
}

.swiper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper::-webkit-scrollbar {
  display: none;
}

.swiper.swiper-container-horizontal,
.swiper.swiper-container-vertical {
  opacity: 1;
  max-height: inherit;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
  color: var(--text-blur);
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  border: var(--focus-color) solid 1px;
  color: var(--text-color);
}

a:hover {
  text-decoration: none;
}

input.invalid,
select.invalid,
textarea.invalid {
  border: 1px solid var(--invalid-color);
}

input:disabled,
select:disabled,
textarea:disabled,
input:hover:disabled,
select:hover:disabled,
textarea:hover:disabled {
  padding: 10px 12px;
  background-color: var(--input-disable-color);
  box-shadow: none;
  outline: none;
  border: none;
}

input.date-right {
  padding-right: 2.5rem;
  background-image: url(../image/svg/calendar.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
}

input.date-left {
  padding-left: 2.5rem;
  background-image: url(../image/svg/calendar.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
}

input.date-right.date-left {
  background-image: url(../image/svg/calendar.svg),
    url(../image/svg/calendar.svg);
  background-position: calc(100% - 10px) 50%, 10px 50%;
}

input.vnd {
  padding-right: 24px;
  background-image: url(../image/svg/d.svg);
  background-size: 8px 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) 50%;
}

.btn.sm {
  padding: 6px 16px !important;
  line-height: 20px !important;
  height: 32px;
}

.btn.xl {
  padding: 12px 16px !important;
  line-height: 24px !important;
  height: 48px;
}

button {
  /* all:unset; */
}

button:focus {
  outline: none;
}

.btn {
  border-radius: 0.5rem;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  border: none;
  box-sizing: border-box;
  height: 40px;
}

.btn:focus {
  box-shadow: none;
}

.btn:disabled {
  opacity: 1;
}

.btn.primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn.primary:hover,
.btn.secondary:hover {
  background-color: var(--primary-hover-color);
  color: #fff;
}

.btn.primary:active,
.btn.secondary:active {
  background-color: var(--primary-focus-color);
  color: #fff;
}

.btn.primary:disabled,
.btn.primary:hover:disabled {
  background-color: var(--button-disable-color);
  color: var(--button-text-disable-color);
}

.btn.secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
}

.btn.secondary:disabled,
.btn.secondary:hover.disabled {
  border: 1px solid var(--button-disable-color);
  color: var(--button-disable-color);
}

.btn.pink {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn.pink:hover {
  background-color: var(--secondary-hover-color);
  color: #fff;
}

.btn.pink:active {
  background-color: var(--secondary-focus-color);
  color: #fff;
}

.btn.pink:disabled {
  background-color: var(--button-disable-color);
  color: var(--button-text-disable-color);
}

.btn.ghost {
  border: 1px solid var(--ghost-border-default-color);
  color: var(--text-color);
  padding: 8px 16px;
}

.btn.ghost:hover {
  border: 1px solid var(--ghost-border-hover-color);
  color: var(--text-color);
}

.btn.ghost:active {
  border: 1px solid var(--ghost-border-hover-color);
  color: var(--text-color);
}

.btn.ghost:disabled,
.btn.ghost:hover:disabled {
  border: 1px solid var(--button-disable-color);
  color: var(--button-disable-color);
}

.btn.w-ghost {
  background-color: #fff;
  color: var(--primary-color);
}

.btn.w-ghost:hover {
  background-color: var(--w-ghost-hover-color);
  color: var(--primary-color);
}

.btn.w-ghost:active {
  background-color: var(--w-ghost-focus-color);
  color: var(--primary-color);
}

.btn.w-ghost:disabled,
.btn.w-ghost:hover.disabled {
  background-color: var(--button-disable-color);
  color: var(--button-text-disable-color);
}

.btn.two-line {
  height: 60px;
  padding: 8px;
}

.btn.two-line .line-1 {
  display: block;
  font-weight: 700;
  line-height: 24px;
  font-size: 15px;
  color: #fff;
}

.btn.two-line .line-2 {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #fed6d9;
  line-height: 20px;
}

.btn.two-line.primary .line-2 {
  color: #fed6d9;
}

.btn.two-line.pink .line-2 {
  color: var(--disable-switch-color);
}

.btn.two-line:disabled .line-1,
.btn.two-line:disabled .line-2 {
  color: var(--button-text-disable-color);
}

.breadcrumb-list {
  padding: 8px 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.breadcrumb-list .breadcrumb-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 0;
}

.breadcrumb-list .breadcrumb-item .breadcrumb-link {
  color: var(--text-link-default-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  transition: color ease 0.15s;
}

.breadcrumb-list .breadcrumb-item .breadcrumb-link:hover {
  color: var(--text-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(../image/svg/breadcrumb.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.link {
  color: var(--text-link-default-color);
  transition: color ease 0.15s;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
}

.link:hover {
  text-decoration: none;
  color: var(--text-color);
}

.link.arr-right,
.link.arr-left {
  position: relative;
}

.link.arr-right {
  padding-right: 20px;
}

.link.arr-left {
  padding-left: 20px;
}

.link.arr-right:after,
.link.arr-left:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  background-color: var(--text-link-default-color);
}

.link.blue.arr-right:after,
.link.blue.arr-left:before {
  background-color: var(--focus-color);
}

.link.arr-right:after {
  -webkit-mask-image: url(../image/svg/link-arrow-right.svg);
  margin-left: 0.25rem;
}

.link.arr-left:before {
  -webkit-mask-image: url(../image/svg/link-arrow-left.svg);
  transform: translate(calc(-100% - 0.25rem), -50%);
}

.link.arr-right:hover:after,
.link.arr-left:hover:before {
  background-color: var(--text-color);
}

.link.blue.arr-right:hover:after,
.link.blue.arr-left:hover:before {
  background-color: var(--text-link-hover-color);
}

.link.arr-right.disabled:after,
.link.arr-right.disabled:hover:after,
.link.arr-left.disabled:before,
.link.arr-left.disabled:hover:before {
  background-color: var(--button-disable-color);
}

.link.blue {
  color: var(--focus-color);
}

.link.blue:hover {
  color: var(--text-link-hover-color);
}

.link.blue:before {
  filter: var(--filter-focus-color);
}

.link.blue:hover:before {
  filter: var(--filter-link-hover-color);
}

.link.disabled,
.link.disabled:hover {
  color: var(--button-disable-color);
}

.link.eye {
  padding-right: 20px;
  position: relative;
}

.link.eye:before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-image: url(../image/svg/eye-show.svg);
  background-size: 16px 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tag {
  display: inline-block;
  background-color: #fff;
  padding: 5px 35px 5px 11px;
  border: 1px solid var(--border-default-color);
  border-radius: 24px;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  background-image: url(../image/svg/close-tag.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: calc(100% - 18px + 8px) 50%;
  transition: border-color ease 0.15s;
  text-decoration: none;
  cursor: pointer;
}

.tag:hover {
  border: 1px solid var(--ghost-border-default-color);
}

.tag.sz-s {
  font-size: 12px;
  line-height: 16px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs.size-auto {
  display: table;
  table-layout: fixed;
}

.nav-tabs.size-auto .nav-item {
  display: table-cell;
}

.nav-tabs.size-auto .nav-item .tab {
  width: 100%;
  text-align: center;
}

a.tab {
  text-decoration: none;
}

.tab {
  display: inline-block;
  position: relative;
  color: var(--text-link-default-color);
  padding: 10px 10px 9px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  border-bottom: 1px solid var(--border-default-color);
  transition: border-color linear 0.15s;
  cursor: pointer;
  white-space: nowrap;
  height: 40px;
}

.tab .icon-custom {
  padding-left: 48px;
  position: relative;
}

.tab .icon-custom:hover,
.tab.active .icon-custom {
  color: var(--primary-color);
}

.tab .icon-custom:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: var(--path-icon);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.tab .icon-custom:hover:after,
.tab .icon-custom:active:after,
.tab.active .icon-custom:after {
  filter: var(--filter-primary-color);
}

.tab:active,
.tab.active,
.tab:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.tab.info {
  padding-left: 40px;
  height: 40px;
}

.tab.info:after {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../image/svg/tab-info.svg);
  -webkit-mask-size: 24px 24px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--text-link-default-color);
}

.tab.info:hover:after,
.tab.info.active:after {
  background-color: var(--primary-color);
}

.tab.notify {
  padding-right: 32px;
}

.tab.notify:before {
  content: attr(data-notity);
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--invalid-color);
  border-radius: 100%;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.tab:not(.active):hover:before,
.tab:not(.active):hover:after {
  top: calc(50% + 0.5px);
  padding-bottom: 8px;
}

.tab:active,
.tab.active {
  font-weight: 500;
}

.tab-round {
  display: inline-block;
  padding: 6px 12px;
  color: var(--text-link-default-color);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.54;
  text-align: center;
  transition: all ease 0.15s;
  cursor: pointer;
}

.tab-round:hover,
.tab-round.active {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 100px;
}

.value-sort .selection.xl {
  padding: 18px 12px;
  height: 56px;
}

.value-sort .selection.lg {
  padding: 14px 10px;
  height: 48px;
}

.value-sort .selection.md {
  padding: 10px;
  height: 40px;
}

.value-sort .selection {
  display: inline-block;
  color: var(--text-color);
  padding: 5px 11px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border-default-color);
  transition: all ease 0.15s;
  min-width: 119px;
  text-align: center;
}

.value-sort .selection:hover {
  text-decoration: none;
  border: 1px solid var(--ghost-border-default-color);
  color: var(--text-color);
}

.value-sort .selection.active,
.value-sort .selection:active {
  border: 1px solid var(--primary-color);
  color: var(--primary-hover-color);
}

.value-sort .selection.dropdown {
  padding-right: 39px;
  position: relative;
}

.value-sort .selection.dropdown:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-image: url(../image/svg/selection-button-dropdown.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  background-color: var(--button-text-disable-color);
}

.value-sort .selection.active.dropdown:after,
.value-sort .selection.dropdown:active:after {
  background-color: var(--primary-color);
}

.modal .modal-dialog {
  margin: auto;
}

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

#accShowAttribulteDetail .modal-dialog {
  max-width: 800px !important;
}

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

.modal-content {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  border: none;
}

.modal-header {
  position: relative;
  padding: 0;
  border-bottom: none;
}

.modal-header .modal-title {
  margin-top: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  width: 100%;
}

.modal-header .close {
  position: absolute;
  padding: 0;
  margin: 0;
  background-image: url(../image/svg/close-modal.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  opacity: 1;
  outline: none;
  z-index: 1;
  cursor: pointer;
}

.modal-header .modal-title.center {
  text-align: center;
}

.modal-backdrop {
  background: rgba(67, 70, 87, 0.5);
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-footer {
  padding: 0;
  justify-content: space-between;
  border-top: none;
  flex-wrap: nowrap;
}

.modal-footer > * {
  margin: 0;
}

.modal-footer .btn {
  width: calc(50% - 6px);
}

.modal-footer > .btn:last-child:nth-child(odd) {
  width: 100%;
}

input[type="radio"] {
  display: none;
}

.input-radio {
  position: relative;
}

.input-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid var(--ghost-border-default-color);
  border-radius: 100%;
  transition: all ease 0.15s;
}

.input-radio:hover .checkmark {
  border: 1px solid var(--ghost-border-hover-color);
}

.input-radio .checkmark:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

input[type="radio"]:disabled ~ .checkmark {
  background-color: var(--input-disable-color);
  border: 1px solid var(--border-default-color);
}

input[type="radio"]:checked ~ .checkmark {
  border: 1px solid var(--primary-color);
}

input[type="radio"]:checked ~ .checkmark:after {
  background-color: var(--primary-color);
}

input[type="radio"]:disabled:checked ~ .checkmark:after,
input[type="radio"]:disabled:checked ~ .checkmark:hover:after {
  background-color: var(--primary-disable-color);
}

input[type="radio"]:disabled:checked ~ .checkmark,
input[type="radio"]:disabled:checked ~ .checkmark:hover {
  border: 1px solid var(--primary-disable-color);
}

input[type="radio"]:checked ~ .checkmark:hover {
  border: 1px solid var(--primary-hover-color);
}

input[type="radio"]:checked ~ .checkmark:hover:after {
  background-color: var(--primary-hover-color);
}

input[type="radio"]:disabled ~ .text-label {
  color: var(--text-blur);
}

input[type="checkbox"] {
  display: none;
}

.input-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
}

.input-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid var(--ghost-border-default-color);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: all ease 0.15s;
}

.input-checkbox:hover .checkmark {
  border: 1px solid var(--ghost-border-hover-color);
}

.input-checkbox .checkmark:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-mask-image: url(../image/svg/checkbox-check.svg);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.input-checkbox.v2 .checkmark:after {
  -webkit-mask-image: url(../image/svg/checkbox-check-v2.svg);
}

input[type="checkbox"]:disabled ~ .checkmark {
  background-color: var(--input-disable-color);
  border: 1px solid var(--border-default-color);
}

input[type="checkbox"]:checked ~ .checkmark {
  border: none;
}

input[type="checkbox"]:checked ~ .checkmark:after {
  background-color: var(--primary-color);
}

input[type="checkbox"]:disabled:checked ~ .checkmark:after,
input[type="checkbox"]:disabled:checked ~ .checkmark:hover:after {
  background-color: var(--primary-disable-color);
}

input[type="checkbox"]:disabled:checked ~ .checkmark,
input[type="checkbox"]:disabled:checked ~ .checkmark:hover {
  border: none;
}

input[type="checkbox"]:checked ~ .checkmark:hover {
  border: none;
}

input[type="checkbox"]:checked ~ .checkmark:hover:after {
  background-color: var(--primary-hover-color);
}

.text-label {
  position: relative;
  display: inline-block;
  margin-left: calc(16px + 12px);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-color);
}

input[type="checkbox"]:disabled ~ .text-label {
  color: var(--text-blur);
}

.form-search {
  display: flex;
  align-items: center;
  position: relative;
}

input[type="search"] {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  padding: 10px 4px 10px 12px;
  background-color: var(--w-ghost-focus-color);
  border-radius: 8px;
  border: none;
  width: 100%;
}

input[type="search"]::placeholder {
  color: var(--text-blur);
}

input[type="search"]:focus {
  outline: none;
  color: var(--text-color);
  border: 1px solid var(--border-default-color);
  padding: 9px 3px 9px 11px;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background: url(../image/svg/search-cancel.svg) no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}

input[type="search"]:focus::-webkit-search-cancel-button {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

input[type="search"].search {
  padding-left: 40px;
  background-image: url(../image/svg/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 10px 50%;
}

input[type="search"].search:focus {
  padding-left: 39px;
  background-position: 9px 50%;
}

input[type="search"].has-submit {
  padding-right: 44px;
}

input[type="search"].has-submit:focus {
  padding-right: 43px;
}

input[type="search"].has-submit ~ button[type="submit"] {
  background-color: var(--primary-color);
  position: absolute;
  padding: 16px;
  border-radius: 8px;
  outline: none;
  right: 4px;
}

input[type="search"].has-submit ~ button[type="submit"]:hover {
  background-color: var(--primary-hover-color);
}

input[type="search"].has-submit ~ button[type="submit"]:active {
  background-color: var(--primary-focus-color);
}

input[type="search"].has-submit ~ button[type="submit"]:before {
  content: "";
  background-color: #fff;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../image/svg/icon-search.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}

.input-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}

.input-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}

.input-switch .slider {
  position: absolute;
  cursor: pointer;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-default-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.input-switch input:disabled ~ .slider {
  cursor: default;
}

.input-switch .slider:hover {
  background-color: var(--ghost-border-default-color);
}

.input-switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100%;
}

.input-switch input:checked + .slider {
  background-color: var(--primary-color);
}

.input-switch input:checked + .slider:hover {
  background-color: var(--primary-hover-color);
}

.input-switch input:disabled:checked + .slider {
  background-color: var(--disable-switch-color);
}

.input-switch input:disabled + .slider,
.input-switch input:disabled + .slider:hover {
  background-color: var(--input-disable-color);
}

.input-switch input:disabled + .slider,
.input-switch input:disabled + .slider:hover {
  background-color: var(--border-default-color);
}

.input-switch input:checked + .slider:before {
  --value: calc(48px - 20px - 8px);
  -webkit-transform: translate(var(--value), -50%);
  -ms-transform: translate(var(--value), -50%);
  transform: translate(var(--value), -50%);
}

.input-switch.sz-s {
  width: 36px;
  height: 22px;
}

.input-switch.sz-s .slider:before {
  width: 14px;
  height: 14px;
}

.input-switch.sz-s input:checked + .slider:before {
  --value: calc(36px - 14px - 8px);
  -webkit-transform: translate(var(--value), -50%);
  -ms-transform: translate(var(--value), -50%);
  transform: translate(var(--value), -50%);
}

.pagination-custom {
  justify-content: center;
}

.page-item .page-link {
  border: 1px solid var(--border-default-color);
  padding: 8px 0;
  border-radius: 4px;
  color: var(--text-color);
  margin: 0 4px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  outline: none;
  box-shadow: none;
  height: 40px;
  width: 40px;
  text-align: center;
}

.page-item .page-link:hover {
  border: 1px solid var(--border-hover-color);
  background-color: #fff;
}

.page-item.active .page-link,
.page-item:active:not(.disabled) .page-link {
  background-color: var(--text-color);
  color: #fff;
  border: 1px solid var(--text-color);
}

.page-item.disabled span.page-link {
  border: none;
}

.page-item.pre-2 .page-link,
.page-item.next-2 .page-link,
.page-item.pre-1 .page-link,
.page-item.next-1 .page-link {
  position: relative;
}

.page-item.pre-2 .page-link:before,
.page-item.next-2 .page-link:before,
.page-item.pre-1 .page-link:before,
.page-item.next-1 .page-link:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-item.pre-2 .page-link:before {
  background-image: url(../image/svg/pagination-pre-2.svg);
}

.page-item.next-2 .page-link:before {
  background-image: url(../image/svg/pagination-nexr-2.svg);
}

.page-item.pre-1 .page-link:before {
  background-image: url(../image/svg/pagination-pre-1.svg);
}

.page-item.next-1 .page-link:before {
  background-image: url(../image/svg/pagination-next-1.svg);
}

.page-item.disabled.pre-2 .page-link,
.page-item.disabled.next-2 .page-link,
.page-item.disabled.pre-1 .page-link,
.page-item.disabled.next-1 .page-link {
  background-color: var(--button-disable-color);
}

.bottom-sheet {
  display: none;
}

.footer-mobile {
  display: none;
}

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

label {
  margin-bottom: 0;
}

.input-group {
  margin-bottom: 8px;
}

.form-label {
  font-weight: 500;
  color: var(--text-title-color);
  margin-bottom: 4px;
}

.text-error {
  color: var(--invalid-color);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.js_sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  transition: top linear 0.3s;
}

.scale-thumb img {
  transition: transform linear 0.3s;
}

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

.step,
.head-mobile {
  display: none;
}

.navigation {
  visibility: hidden;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(220, 222, 233, 0.5);
  background-image: url(../image/svg/navigation-swiper.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 100% 100% 0;
  cursor: pointer;
  z-index: 10;
}

.navigation.slider-next {
  transform: rotate(-180deg);
}

.swiper:hover .navigation {
  visibility: visible;
}

.swiper-banner .navigation.slider-next {
  right: 0;
}

.swiper-banner .navigation.slider-prev {
  left: 0;
}

.card {
  border: 1px solid var(--border-default-color);
  box-shadow: var(--box-shadow-default);
  border-radius: 12px;
}

.card.card-dark {
  background-color: var(--w-ghost-hover-color);
  box-shadow: none;
}

.card .card-body {
  padding: 12px;
}

.card .card-footer {
  background-color: #fff;
  border-top: none;
  padding: 8px 0;
}

.see-more {
  display: inline-block;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.see-more:hover {
  color: var(--primary-hover-color);
}

.see-more:active {
  color: var(--primary-focus-color);
}

.see-more:before {
  content: attr(data-content);
}

.see-more:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../image/svg/see-more.svg);
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-position: 100% center;
  transition: transform 0.15s linear;
  transform-origin: center center;
}

.see-more.hide:after {
  transform: translateY(-50%) rotate(-180deg);
}

.see-more-nick {
  display: inline-block;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.see-more-nick:hover {
  color: var(--primary-hover-color);
}

.see-more-nick:active {
  color: var(--primary-focus-color);
}

.see-more-nick:before {
  content: attr(data-content);
}

.see-more-nick:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../image/svg/see-more.svg);
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-position: 100% center;
  transition: transform 0.15s linear;
  transform-origin: center center;
}

.see-more-nick.hide:after {
  transform: translateY(-50%) rotate(-180deg);
}

.datetime,
.author {
  color: var(--text-link-default-color);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding-left: 20px;
  position: relative;
}

.datetime:before,
.author:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.datetime:before {
  background-image: url(../image/svg/datetime.svg);
}

.author:before {
  background-image: url(../image/svg/author.svg);
}

.text-title {
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

.text-title.secondary {
  color: var(--secondary-color);
}

.text-title-bold {
  color: var(--text-title-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

.text-title-bold.secondary {
  color: var(--secondary-color);
}

.text-title.center,
.text-title-bold.center {
  text-align: center;
}

.icon-default {
  width: 24px;
  height: 24px;
  transition: transform linear 0.15s;
}

.icon-default.size-20 {
  width: 20px;
  height: 20px;
}

.icon-default:after {
  width: 100%;
  height: 100%;
  background-image: var(--path);
  filter: var(--filter-text-color);
}

i {
  position: relative;
}

i:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

i.title-info:after {
  margin-left: 8px;
  width: 20px;
  height: 20px;
  background-image: url(../image/svg/service-select-mobile.svg);
}

.icon-title {
  display: block;
  width: 32px;
  height: 32px;
  background-image: var(--path);
  border-radius: 5.33px;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: center;
}

.transaction-manager .icon-sidebar {
  margin-right: 0;
}

.icon-sidebar {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  background-color: var(--w-ghost-focus-color);
  border-radius: 8px;
  padding: 8px;
  position: relative;
}

.icon-sidebar:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: var(--path);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  filter: var(--filter-text-color);
}

.sidebar-item:hover .icon-sidebar:before,
.sidebar-item.active .icon-sidebar:before {
  filter: var(--filter-primary-color);
}

.sidebar-item.active .icon-sidebar,
.sidebar-item:hover .icon-sidebar {
  background-color: var(--disable-switch-color);
}

.c-history-left {
  flex-basis: 32%;
}

.g-history-left {
  flex-basis: 100%;
  padding: 16px;
}

.c-history-right {
  flex: 1;
}

.c-history-right-body {
  background: #fff;
}

.c-history-title h3 {
}

.c-history-title {
  border-bottom: 1px solid #e4e5f0;
}

.background-history {
  background: #f5f5f5;
}

.x-center,
.y-center {
  display: flex;
}

.x-center {
  justify-content: center;
}

.y-center {
  align-items: center;
}

.scrollbar {
  overflow-y: hidden !important;
  padding-right: 12px;
}

.scrollbar:hover {
  overflow-y: scroll !important;
  padding-right: 4px;
}

.scrollbar:hover::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
  width: 8px;
}

.scrollbar:hover::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
  background: rgba(188, 191, 214, 0.5);
  border-radius: 14px;
}

.scrollbar:hover::-webkit-scrollbar-thumb:active,
.scrollbar:hover::-webkit-scrollbar-thumb:active {
  background: #bcbfd6;
}

.js-copy-text {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  background-image: url(../image/svg/copy.svg);
  filter: var(--filter-link-default-color);
  cursor: pointer;
}

.history-detail-attr .card-attr {
  display: flex;
  align-items: center;
}

.card-attr.active .js-copy-text {
  filter: var(--filter-primary-color);
}

.card-attr.active .card__info {
  color: var(--primary-color);
}

.cards-bought {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cards-bought .history-detail-info-block {
  width: calc(50% - 8px);
}

.cards-bought .history-detail-info-block:last-child:nth-child(odd) {
  width: 100%;
}

.cards-bought
  .history-detail-info-block:nth-child(2)
  ~ .history-detail-info-block {
  margin-top: 16px;
}

.js-quantity.sm {
  width: 96px;
  height: 32px;
}

.js-quantity.sm .js-quantity-input {
  width: 40px;
  padding: 4px 0;
  font-size: 13px;
  line-height: 24px;
}

.js-quantity {
  display: flex;
  border: 1px solid var(--border-default-color);
  border-radius: 4px;
  height: 40px;
  background-color: #fff;
  width: 132px;
}

.js-quantity.disabled {
  background-color: var(--input-disable-color);
  pointer-events: none;
}

.js-quantity:not(.disabled):hover {
  border-color: var(--focus-color);
}

.js-quantity.invalid,
.js-quantity.invalid:hover {
  border-color: var(--invalid-color);
}

.js-quantity .js-quantity-input {
  all: unset;
  display: inline-block;
  padding: 8px 0;
  text-align: center;
  width: 76px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

.js-quantity .js-quantity-input:hover,
.js-quantity .js-quantity-input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.js-quantity .js-quantity-minus,
.js-quantity .js-quantity-add {
  width: 28px;
  cursor: pointer;
  position: relative;
}

.js-quantity .js-quantity-minus {
  border-right: 1px solid var(--border-default-color);
}

.js-quantity .js-quantity-add {
  border-left: 1px solid var(--border-default-color);
}

.js-quantity .js-quantity-minus:before,
.js-quantity .js-quantity-add:before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.js-quantity.disabled .js-quantity-minus:before,
.js-quantity.disabled .js-quantity-add:before {
  filter: var(--filter-button-disable-color);
}

.js-quantity .js-quantity-minus:before {
  background-image: url(../image/svg/minus.svg);
}

.js-quantity .js-quantity-add:before {
  background-image: url(../image/svg/add.svg);
}

.status {
  display: inline-block;
  padding: 0 0.25rem;
  font-weight: 500;
  font-size: 10px;
  border-radius: 4px;
  line-height: 1.6;
}

.status.success {
  background: var(--status-success-color);
  color: #fff;
}

.status.danger {
  background: var(--invalid-color);
  color: #fff;
}

@media (min-width: 1200px) {
  .c-container {
    max-width: 1264px;
  }

  .c-container-side {
    max-width: 1024px;
  }
}

@media screen and (max-width: 992px) {
  .navigation {
    display: none;
  }

  .layout {
    margin-bottom: 84px;
  }

  .scrollbar {
    overflow-y: scroll !important;
    padding-right: 4px !important;
  }

  .card {
    border-radius: 8px;
  }

  .breadcrumb-list {
    display: none;
  }

  .bottom-sheet {
    display: block;
  }

  .page-item .page-link {
    width: 32px;
    height: 32px;
    font-size: 13px;
    line-height: 20px;
    padding: 6px 0;
  }

  .page-item:first-child .page-link:before,
  .page-item:last-child .page-link:before,
  .page-item:nth-child(2) .page-link:before,
  .page-item:nth-last-child(2) .page-link:before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }

  .bottom-sheet:not([aria-hidden="true"]) .layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(67, 70, 87, 0.5);
    z-index: 1099;
    transition: all linear 0.2s;
  }

  .bottom-sheet .content-bottom-sheet {
    position: relative;
    background-color: #fff;
    z-index: 1100;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
    transition: transform linear 0.5s;
    height: 10vh;
    max-height: 100vh;
    width: 100vw;
  }

  .bottom-sheet .content-bottom-sheet:not(.not-selectable) {
    transition: height 0.5s;
  }

  .bottom-sheet .content-bottom-sheet.bar-slide:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -8px;
    width: 32px;
    height: 4px;
    background: #fff;
    border-radius: 24px;
    transform: translateX(-50%);
  }

  .bottom-sheet:not([aria-hidden="true"]) .content-bottom-sheet {
    transform: translateY(12px);
  }

  .status-bottom-sheet {
    display: none;
  }

  .bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .bottom-sheet[aria-hidden="true"] {
    visibility: hidden;
  }

  .sheet-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 11px;
    border-bottom: 1px solid var(--border-default-color);
  }

  .sheet-header .close {
    position: absolute;
    margin-bottom: 0;
    width: 24px;
    height: 24px;
    right: 16px;
    top: 12px;
    background-image: url(../image/svg/close-bottom-sheet.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
  }

  .sheet-body {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 16px;
    padding: 16px;
    overflow: auto;
  }

  .bottom-sheet[aria-hidden="true"] .sheet-footer {
    transform: translateY(100%);
  }

  .sheet-footer {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 16px 44px;
    background-color: #fff;
  }

  .sheet-footer.v2 {
    box-shadow: 0 -2px 4px #e8e8e8;
  }

  .sheet-footer .btn {
    width: calc(50% - 6px);
  }

  .sheet-footer .btn:last-child:nth-child(odd) {
    width: 100%;
  }

  .step {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(130%);
    transition: all ease 0.4s;
    z-index: 1000;
    box-shadow: -2px 0 8px rgba(45, 42, 42, 0.25);
  }

  .head-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 56px;
    background-color: #fff;
    z-index: 1000;
  }

  .head-mobile.box-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .head-mobile .head-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .head-mobile .link-back {
    display: block;
    position: absolute;
    background-image: url(../image/svg/head-mobile-back.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }

  .head-mobile .notify {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url(../image/svg/bell.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
  }

  .head-mobile .home {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url(../image/svg/home.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
  }

  .head-mobile .notify:before {
    content: attr(data-notify);
    display: block;
    width: 16px;
    height: 16px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 100px;
    background-color: var(--invalid-color);
  }

  .body-mobile {
    position: absolute;
    background-color: #fff;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding-bottom: 88px;
  }

  .footer-mobile {
    display: block;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 -2px 4px #e8e8e8;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px;
    z-index: 101;
  }

  .footer-mobile.footer-mobile-acc {
    display: none;
  }

  .footer-mobile.group-btn {
    display: flex;
  }

  .footer-mobile.v2 {
    position: fixed;
    background-color: #fff;
    box-shadow: none;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
  }

  .cards-bought .history-detail-info-block {
    width: 100%;
  }

  .cards-bought
    .history-detail-info-block:nth-child(1)
    ~ .history-detail-info-block {
    margin-top: 16px;
  }

  .js-quantity {
    width: 110px;
    height: 32px;
  }

  .js-quantity .js-quantity-input {
    font-size: 12px;
    line-height: 16px;
    width: 54px;
  }

  .tab .icon-custom:after {
    display: none;
  }

  .scale-thumb:hover img {
    transform: unset;
  }
}

@media screen and (max-width: 768px) {
  #noticeModal img {
    width: 100%;
    height: auto;
  }
}

ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}
