/*------------------------------------------------------------------
[Table of contents]

Variables
Utilities
Layout
Page
General
Responsive
-------------------------------------------------------------------*/
/* variables */
/* Utilities */
/* input-button */
/****/
/* General */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 10px; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #3A464F;
  /* overflow-x: hidden; */
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  filter: opacity(0);
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 1020; }

a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease; user-select: none;}
  
  a:hover {
    color: var(--color-highlight); }

.dark-overlay::after {
  opacity: 1;
  filter: opacity(1);
  visibility: visible; }

.title-section {
  font-size: 42px;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 15px;
  }
button, input {
    user-select: none;
}
label {
  font-weight: 600; }

.input-opt input {
  padding: 0;
  flex: 0 0 5rem;
  max-width: 5rem;
  height: 7rem;
  border-radius: 1.5rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  border: 1px solid var(--color-main); }

.entry-choose-verify .form-check-input {
  opacity: 0;
  visibility: hidden; }
  .entry-choose-verify .form-check-input:checked ~ label.inner-verify {
    border-color: var(--color-highlight); }
    .entry-choose-verify .form-check-input:checked ~ label.inner-verify .icon-right {
      display: block; }

.entry-choose-verify .inner-verify {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--gray);
  border-radius: 0.25rem;
  cursor: pointer; }

.entry-choose-verify .icon-left {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  background-color: var(--color-highlight);
  color: var(--white);
  border-radius: 50%;
  flex: 0 0 4rem;
  margin-right: 1.5rem; }

.entry-choose-verify .icon-right {
  display: none; }

.select-items {
  border: 1px solid var(--color-highlight);
  padding: 1rem;
  border-radius: 1rem; }
  .select-items--icon {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    background-color: var(--color-highlight);
    color: var(--white);
    border-radius: 50%;
    flex: 0 0 4rem;
    margin-right: 1.5rem; }

.select2-container {
  height: 40px; }
  .select2-container .select2-selection--single {
    height: 40px;
    outline: none;
    background-color: var(--light);
    border: 2px solid #dee2e6;
    border-radius: 0; }
    .select2-container .select2-selection--single .select2-selection__arrow {
      right: 10px;
      height: 38px; }
      .select2-container .select2-selection--single .select2-selection__arrow b {
        display: none; }
      .select2-container .select2-selection--single .select2-selection__arrow::after {
        content: "\f107";
        display: block;
        font-family: "Font Awesome 6 Pro";
        font-weight: 900;
        font-style: normal;
        line-height: 38px; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      color: var(--color-text);
      line-height: 36px;
      padding-left: 15px; }

.select2-dropdown {
  border: 2px solid #dee2e6;
  border-top: none; }
  .select2-dropdown .select2-results__option {
    padding: 6px 15px;
    outline: none; }
    .select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected], .select2-dropdown .select2-results__option.select2-results__option--highlighted[data-selected] {
      background-color: var(--gray); }
  .select2-dropdown .select2-search--dropdown {
    padding: 10px 15px;
    background-color: var(--light);
    border-bottom: 1px solid #dee2e6; }
    .select2-dropdown .select2-search--dropdown .select2-search__field {
      background-color: var(--white); }

.inner-checkbox {
  padding-left: 25px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer; }
  .inner-checkbox > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden; }
    .inner-checkbox > input:disabled ~ span {
      opacity: 0.6;
      filter: alpha(opacity=60);
      pointer-events: none; }
  .inner-checkbox > span {
    border-radius: 3px;
    position: absolute;
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #e3e3e3; }
    .inner-checkbox > span::after {
      content: '';
      position: absolute;
      display: none;
      top: 50%;
      left: 50%;
      margin-left: -2px;
      margin-top: -6px;
      width: 5px;
      height: 10px;
      border-width: 0 2px 2px 0 !important;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      border: solid var(--color-main); }
  .inner-checkbox:hover > input::not([disabled]):checked ~ span,
  .inner-checkbox > input:checked ~ span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .inner-checkbox > input:checked ~ span::after {
      display: block; }

.entire-radio-inline .inner-radio {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0px; }

.inner-radio {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  text-align: left;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 18px; }

.inner-radio.inner-radio--disabled {
  opacity: 0.8;
  cursor: not-allowed; }

.inner-radio > input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.inner-radio > span {
  border: 1px solid var(--color-highlight);
  background: none;
  position: absolute;
  top: 4px;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 50% !important; }

.inner-radio > span:after {
  content: '';
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 100% !important;
  border: solid var(--color-highlight);
  background: var(--color-highlight); }

.inner-radio:hover > input:not([disabled]):checked ~ span,
.inner-radio > input:checked ~ span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none; }

.inner-radio > input:checked ~ span:after {
  display: block; }

.inner-radio > input:disabled ~ span {
  opacity: 0.6;
  pointer-events: none; }

.error-page {
  font-size: 18px; }
  .error-page i {
    font-size: 80px; }
  .error-page a {
    color: #390; }

.shadow-modal {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  padding: 5px 10px;
  border: solid 5px #797979; }

.page-404-content {
  position: relative;
  max-width: 806px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  }
  .page-404-content a {
    font-weight: 700; }
    .page-404-content a:hover {
      color: var(--color-highlight); }

.swiper-grid-column > .swiper-wrapper {
  flex-direction: unset !important; }

.ui-slider-horizontal {
  height: 0 !important; }

.ui-widget-header {
  background-color: var(--color-highlight) !important;
  top: -1px !important;
  height: 2px !important; }

.ui-slider .ui-slider-handle {
  height: 6px;
  width: 6px;
  border-radius: 0;
  border-color: var(--color-highlight);
  background-color: var(--color-highlight);
  top: -3px;
  margin-left: -1px;
  outline: 0; }

.toast-body {
  min-width: 30rem; }

#lg-share,
.lg-rotate-right,
.lg-rotate-left,
.lg-flip-hor,
.lg-flip-ver,
#lg-actual-size,
#lg-zoom-out,
#lg-zoom-in,
.lg-fullscreen,
.lg-autoplay-button,
.lg-download {
  display: none; }

.responsive-table {
  width: 100%;
  margin-bottom: 1.5em;
  border-spacing: 0; }
  .responsive-table thead {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden; }
    @media (min-width: 48em) {
      .responsive-table thead {
        position: relative;
        clip: auto;
        height: auto;
        width: auto;
        overflow: auto; } }
    .responsive-table thead th {
      background-color: var(--color-main);
      border: 1px solid var(--color-main);
      font-weight: normal;
      color: white;
      text-align: center; }
      .responsive-table thead th:first-of-type {
        text-align: left; }
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table th,
  .responsive-table td {
    display: block;
    text-align: left;
    white-space: normal; }
  @media (min-width: 48em) {
    .responsive-table tr {
      display: table-row; } }
  .responsive-table [scope="disable"] {
    display: none; }
    @media (min-width: 48em) {
      .responsive-table [scope="disable"] {
        display: table-cell; } }
  .responsive-table th,
  .responsive-table td {
    vertical-align: middle; }
    @media (min-width: 48em) {
      .responsive-table th,
      .responsive-table td {
        display: table-cell; } }
  .responsive-table caption {
    margin-bottom: 1em;
    font-weight: bold;
    text-align: center; }
  .responsive-table tfoot {
    color: var(--color-main);
    border-top: 1px solid #e3e3e3; }
    @media (min-width: 62em) {
      .responsive-table tfoot {
        border-top: 0; } }
    .responsive-table tfoot th[scope="col"] {
      position: absolute;
      clip: rect(1px 1px 1px 1px);
      padding: 0;
      border: 0;
      height: 1px;
      width: 1px;
      overflow: hidden; }
      @media (min-width: 62em) {
        .responsive-table tfoot th[scope="col"] {
          position: relative;
          clip: auto;
          height: auto;
          width: auto;
          overflow: auto; } }
    .responsive-table tfoot td[data-title]:before {
      content: attr(data-title);
      float: left;
      font-weight: bold; }
      @media (min-width: 48em) {
        .responsive-table tfoot td[data-title]:before {
          content: none; }
        .responsive-table tbody {
          display: table-row-group; }
        .responsive-table tbody tr {
          display: table-row;
          border-width: 1px; } }
  .responsive-table tbody tr:last-of-type {
    margin-bottom: 0; }
  .responsive-table tbody tr:nth-of-type(even) {
    background-color: #f1f1f1; }
    @media (min-width: 48em) {
      .responsive-table tbody tr:nth-of-type(even) {
        background-color: #f1f1f1; } }
  .responsive-table tbody th[scope="row"] a {
    color: var(--color-main); }
  @media (min-width: 48em) {
    .responsive-table tbody th[scope="row"] {
      background-color: transparent;
      color: var(--color-main);
      text-align: left; }
      .responsive-table tbody th[scope="row"] a {
        color: var(--color-main); } }
  .responsive-table tbody td {
    text-align: right; }
    @media (min-width: 48em) {
      .responsive-table tbody td {
        text-align: center; }
      .responsive-table tbody td.btn-setdafault {
        text-align: center; } }
    .responsive-table tbody td.btn-setdafault .inner-radio {
      margin-bottom: 0; }
    @media (min-width: 48em) {
      .responsive-table tbody td.text-center-table {
        text-align: center; } }
  .responsive-table tbody td[data-type=currency] {
    text-align: right; }
  .responsive-table tbody td[data-title]:before {
    content: attr(data-title);
    float: left; }
    @media (min-width: 48em) {
      .responsive-table tbody td[data-title]:before {
        content: none; } }

/* Layout */
.topbar-header {
  border-bottom: 1px solid #e3e3e3; }

.logo-section img {
  height: 5rem; }

.topbar-section {
  position: relative; }
  .topbar-section ul.topbar-dropdown {
    position: absolute;
    background: var(--white);
    min-width: 5rem;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #e3e3e3;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.15); }
    .topbar-section ul.topbar-dropdown a {
      padding: 0 1rem;
      line-height: 3rem;
      height: 3rem;
      display: block;
      color: #333;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
      .topbar-section ul.topbar-dropdown a:hover {
        background: #f4f4f4; }
  .topbar-section:hover ul.topbar-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset; }

.entire-action-header {
  padding: 0.8rem 0; }

.swiper-slide--wrap {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%); }

.swiper-slide--tile {
  font-weight: 500;
  font-size: 5rem; }

.swiper-slide--description {
  font-size: 1.8rem;
  margin-bottom: 2.5rem; }

.swiper-slide--link {
  font-size: 1.6rem;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  border: 0.1rem solid var(--color-main);
  padding: 1rem 4rem;
  color: var(--color-main); }
  .swiper-slide--link:hover {
    color: var(--white);
    background-color: var(--color-highlight);
    border-color: var(--color-highlight); }

.block-tab.nav {
  position: relative; }
  .block-tab.nav .nav-item .nav-link {
    position: relative;
    color: var(--color-text);
    font-weight: 500;
    padding: 1rem 2.5rem;
    margin-bottom: -0.1rem; }
    .block-tab.nav .nav-item .nav-link.active, .block-tab.nav .nav-item .nav-link:hover {
      color: var(--color-main); }

.tab-content {
  position: relative; }
  .tab-content img, .tab-content iframe, .tab-content video {
    max-width: 100%; }


    .newsletter--submit:hover {
      color: var(--white);
      background-color: var(--color-highlight);
      border-color: var(--color-highlight); }
  .newsletter--input {
    height: 5rem;
    line-height: 5rem; }
    .newsletter--input + .error {
      position: absolute;
      bottom: -3rem; }

.countdown {
  display: flex;
  line-height: 1; }
  .countdown--item {
    display: flex;
    border-right: 1px solid #ebebeb;
    padding-right: 2rem;
    padding-left: 2rem; }
    .countdown--item:first-child {
      padding-left: 0; }
    .countdown--item:last-child {
      border-right: 0;
      padding-right: 0; }
  .countdown--number {
    font-size: 2.4rem;
    color: var(--color-highlight);
    font-weight: 500; }
  .countdown--label {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-left: 0.3rem;
    text-transform: uppercase; }

.wrap-suggestion {
  position: absolute;
  z-index: 12;
  width: 100%;
  background-color: var(--white);
  border: 1px solid #f3f3f3; }
  .wrap-suggestion ul li:hover, .wrap-suggestion ul li.active {
    background-color: #e6e6e6; }
  .wrap-suggestion .suggest-name {
    margin-bottom: 0; }

.box-suggest .wrap-suggestion {
  border: 1px solid #e6e6e6;
  border-top: 0;
  padding: 1rem; }

.btn-action-header {
  display: flex;
  position: relative;
  padding: 0.3rem 1.5rem;
  color: var(--white); }
  .btn-action-header i {
    font-size: 1.8rem; }
  .btn-action-header:hover {
    color: var(--white); }

.btn-mini-cart {
  border-left: 1px solid #ebebeb; }

.items-number {
  position: absolute;
  top: -0.8rem;
  right: 0.5rem;
  background-color: var(--black);
  color: var(--white);
  display: inline-block;
  padding: 0.4rem 0.7rem 0.1rem;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 0.9rem; }

.breadcrumbs-section {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  line-height: 2.4rem;
  gap: 5px;
  }
  .breadcrumbs-section a, .breadcrumbs-section span {
    line-height: 2.4rem;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
    }
    .breadcrumbs-section a:hover {
      color: var(--color-main); }
  .breadcrumbs-section h1 {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 2.4rem; }
    .breadcrumbs-section h1 a::after {
      content: none; }
.categories-section li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  flex-direction: row; }
  .categories-section li:last-child {
    margin-bottom: 0; }

.categories-section a {
  padding: 0.6rem 0 0.6rem 0px;
  display: block;
  width: 100%;
  color: var(--color-text);
  font-weight: 600;
  border: 1px solid #DEEFFF;
  }
  .categories-section a:hover {
    border: 1px solid #73BEFF;
    }

.categories-section a.active {
  color: #fff;
  background: linear-gradient(93.07deg, #6C54FF -16.41%, #0972CE 99.41%) !important;
  }
  .categories-section a.active > .has-child > a {
    color: var(--color-highlight);
    font-weight: 700; }

.categories-section .list-child {
  flex: 1 1 100%;
  max-width: 100%;
  display: none; }
  .categories-section .list-child li {
    position: relative; }

.categories-section > li.has-child > ul {
  padding-left: 1.5rem; }

.categories-section > li.has-child > .list-child {
  border-top: 0;
  background-color: #f5f5f5; }
  .categories-section > li.has-child > .list-child > li.has-child > .list-child {
    padding-left: 1.5rem; }
    .categories-section > li.has-child > .list-child > li.has-child > .list-child > li.has-child > .list-child {
      padding-left: 1.5rem; }

.categories-section .dropdown-toggle {
  position: absolute;
  right: 8px;
  top: 7px;
  cursor: pointer;
  width: 3rem;
  height: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  z-index: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  }

.categories-section .dropdown-toggle.open {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.categories .categories-section > li {
  margin-bottom: 13px;
  }
  .categories .categories-section > li > a {
    position: relative;
    background: #fff;
    padding: 13px 15px;
    border-radius: 16px;
    }
  .categories .categories-section > li:last-child > a {
    border-bottom: 0; }

.categories .categories-section > .has-child > ul {
  background-color: transparent !important;
  }

.categories .categories-section .has-child > ul {
  padding-left: 12px !important;
  margin-top: 13px;
  }

.categories .categories-section > li:last-child > ul {
  border-bottom: 0; }

.tags-title {
  margin-right: 0.5rem; }

.tags li {
  display: inline-block; }
  .tags.list-unstyled li>a,
  .tags.list-unstyled li>.tag-label {
    display: block;
    color: #0972CE;
    background: #0972CE1A;
    height: 32px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    }
    .tags li a:hover {
      color: var(--color-highlight); }

.view-small .inner-image {
  width: 8rem;
  float: left;
  margin-right: 2rem; }

.view-small .inner-content {
  width: calc(100% - 10rem);
  margin-left: 10rem; }
  .view-small .inner-content .article-title {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    line-height: 1.2; }
    .view-small .inner-content .article-title a:hover {
      text-decoration: none;
      opacity: 0.8;
      filter: alpha(opacity=80); }

.entire-map {
  position: relative;
  padding-top: 36.45%; }
  .entire-map iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover; }

.title-address {
  font-weight: 600;
  color: var(--color-main); }

.entire-address {
  padding: 5rem 0; }
  .entire-address address {
    line-height: 3rem; }

.form-contact .title-section {
  padding-top: 8rem; }

.filter-member .input-group-text {
  border: 0; }

.filter-member .btn-submit {
  padding: 0 1rem; }

.table-member th i {
  font-size: 1.8rem; }

.datepicker {
  width: 26.5rem;
  padding: 1rem; }
  .datepicker.datepicker-orient-top {
    margin-top: 0.8rem; }
  .datepicker table {
    width: 100%; }
  .datepicker td, .datepicker th {
    font-weight: regular;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.3rem; }
  .datepicker thead th {
    color: #74788d; }
    .datepicker thead th.prev, .datepicker thead th.datepicker-switch, .datepicker thead th.next {
      font-weight: 500;
      color: #74788d; }
      .datepicker thead th.prev:hover, .datepicker thead th.datepicker-switch:hover, .datepicker thead th.next:hover {
        background: #f7f8fa !important; }
      .datepicker thead th.prev i, .datepicker thead th.datepicker-switch i, .datepicker thead th.next i {
        font-size: 1.2rem;
        color: #74788d; }
        .datepicker thead th.prev i::before, .datepicker thead th.datepicker-switch i::before, .datepicker thead th.next i::before {
          line-height: 0;
          vertical-align: middle; }
    .datepicker thead th.dow {
      color: #595d6e;
      font-weight: 500; }
  .datepicker tbody tr > td.day {
    color: #595d6e; }
    .datepicker tbody tr > td.day:hover {
      background: #ebedf2;
      color: #595d6e; }
    .datepicker tbody tr > td.day.old {
      color: #74788d; }
    .datepicker tbody tr > td.day.new {
      color: #595d6e; }
    .datepicker tbody tr > td.day.selected, .datepicker tbody tr > td.day.selected:hover, .datepicker tbody tr > td.day.active, .datepicker tbody tr > td.day.active:hover {
      background: #5867dd;
      color: #ffffff; }
    .datepicker tbody tr > td.day.today {
      position: relative;
      background: rgba(93, 120, 255, 0.7) !important;
      color: #ffffff !important; }
      .datepicker tbody tr > td.day.today:before {
        content: '';
        display: inline-block;
        border: solid transparent;
        border-width: 0 0 0.7rem 0.7rem;
        border-bottom-color: #ffffff;
        border-top-color: #ebedf2;
        position: absolute;
        bottom: 0.4rem;
        right: 0.4rem; }
    .datepicker tbody tr > td.day.range {
      background: #f7f8fa; }
  .datepicker tbody tr > td span.year, .datepicker tbody tr > td span.hour, .datepicker tbody tr > td span.minute, .datepicker tbody tr > td span.month {
    color: #595d6e; }
    .datepicker tbody tr > td span.year:hover, .datepicker tbody tr > td span.hour:hover, .datepicker tbody tr > td span.minute:hover, .datepicker tbody tr > td span.month:hover {
      background: #f7f8fa; }
    .datepicker tbody tr > td span.year.focused, .datepicker tbody tr > td span.year.focused:hover, .datepicker tbody tr > td span.year.active:hover, .datepicker tbody tr > td span.year.active.focused:hover, .datepicker tbody tr > td span.year.active, .datepicker tbody tr > td span.hour.focused, .datepicker tbody tr > td span.hour.focused:hover, .datepicker tbody tr > td span.hour.active:hover, .datepicker tbody tr > td span.hour.active.focused:hover, .datepicker tbody tr > td span.hour.active, .datepicker tbody tr > td span.minute.focused, .datepicker tbody tr > td span.minute.focused:hover, .datepicker tbody tr > td span.minute.active:hover, .datepicker tbody tr > td span.minute.active.focused:hover, .datepicker tbody tr > td span.minute.active, .datepicker tbody tr > td span.month.focused, .datepicker tbody tr > td span.month.focused:hover, .datepicker tbody tr > td span.month.active:hover, .datepicker tbody tr > td span.month.active.focused:hover, .datepicker tbody tr > td span.month.active {
      background: #5867dd;
      color: #ffffff; }
  .datepicker tfoot tr > th.today, .datepicker tfoot tr > th.clear {
    border-radius: 0.3rem;
    font-weight: 500; }
    .datepicker tfoot tr > th.today:hover, .datepicker tfoot tr > th.clear:hover {
      background: #ebedf2; }
  .datepicker.datepicker-inline {
    border: 1px solid #ebedf2; }

.entire-file a {
  display: inline-block;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem; }

.remove-item {
  font-size: 1.6rem;
  cursor: pointer; }
  .remove-item:hover i {
    color: var(--color-highlight); }

.pagination {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  }

    .pagination .page-item.active .page-link, .pagination .page-item:not(.disabled):hover .page-link {
      color: #ffffff;
      background: var(--color-text);
      border-color: var(--color-text);
      }
      ul.pagination .page-item {
        display: grid;
        padding-left: 5px;
        padding-right: 5px;
    }
  .pagination .page-link {
    color: var(--color-text);
    height: 40px;
    display: inline-flex;
    background: #ffffff;
    line-height: 1.2;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    font-size: 14px;
    font-weight: 600;
    }

.swiper-slider-main .swiper-slide img {
  min-height: 49.8rem; }

.toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: var(--color-highlight);
  z-index: 1; }
  .toolbar__item {
    flex: 0 0 20%;
    position: relative; }
    .toolbar__item.category-tool a span, .toolbar__item.category-tool a i {
      color: var(--color-highlight); }
    .toolbar__item.category-tool::before {
      width: 7rem;
      height: 7rem;
      background: var(--white);
      font-stretch: normal;
      font-style: normal;
      -webkit-letter-spacing: normal;
      -moz-letter-spacing: normal;
      -ms-letter-spacing: normal;
      letter-spacing: normal;
      border-radius: 50%;
      -webkit-text-decoration: none;
      text-decoration: none;
      position: absolute;
      left: calc(50% - 3.5rem);
      top: -10px;
      padding: 0;
      content: ''; }
    .toolbar__item.category-tool .before {
      position: absolute;
      bottom: 5.4rem;
      text-align: center;
      left: calc(50% - 3.5rem);
      width: 7rem;
      height: 2rem;
      z-index: -1; }
    .toolbar__item a {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -webkit-flexbox;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -moz-box-pack: center;
      -webkit-flex-pack: center;
      -ms-flex-pack: center;
      -moz-justify-content: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 7px 0; }
      .toolbar__item a i {
        font-size: 20px;
        color: var(--white); }
      .toolbar__item a span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        text-align: center;
        font-size: 1rem;
        margin-top: 0.5rem;
        color: var(--white); }

.post-date {
  color: var(--color-text);
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  }
  .post-date span {
    color: var(--color-highlight);
    font-size: 3.2rem;
    font-weight: 500;
    margin-right: 0.5rem; }

.view-small .post-date span {
  font-size: 1.8rem; }

.tag--item {
  padding: 0.7rem 2rem;
  border: 1px solid var(--color-text);
  display: inline-block;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem;
  color: #6c757d; }
  .tag--item:hover {
    border-color: var(--color-highlight);
    background-color: var(--color-highlight);
    color: var(--white); }

/*Button Contact Fixed*/
.share-buttons {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem; }
  .share-buttons .share-button {
    margin-top: 1rem; }

.share-button {
  display: block;
  position: relative;
  height: 3rem; }
  .share-button:hover {
    cursor: pointer; }
    .share-button:hover .share-button-primary {
      box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1); }
    .share-button:hover .share-button-secondary-content {
      transform: translate3d(0, 0, 0); }

.share-button-primary {
  position: absolute;
  background: var(--color-highlight);
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  left: 0;
  top: 50%;
  margin-top: -1.5rem;
  text-align: center; }

.share-button-icon {
  display: block;
  color: var(--white);
  width: 3rem;
  line-height: 3rem; }

img.share-button-icon {
  width: 2rem;
  filter: brightness(0) invert(1); }

.share-button-secondary {
  overflow: hidden;
  margin-left: 1.5rem;
  height: 3rem; }

.share-button-secondary-content {
  background: var(--color-highlight);
  display: block;
  height: 3rem;
  text-align: left;
  padding-left: 2.4rem;
  padding-right: 1.8rem;
  line-height: 3rem;
  color: var(--white);
  border-radius: 0 1.5rem 1.5rem 0;
  transform: translate3d(-100%, 0, 0);
  transition: transform 175ms ease; }

/*End Button Contact Fixed*/
.block-html--hotdeal {
  border: 1px dashed var(--color-highlight);
  border-radius: 1rem;
  padding: 3rem; }

.block-html--sologan {
  background-color: var(--color-highlight);
  padding: 1rem; }
  .block-html--sologan a {
    display: block;
    border: 1px dashed #e5e5e5;
    padding: 2rem 0; }

.block-html--underline {
  text-decoration: underline; }

.decoration-block {
  position: relative; }
  .decoration-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 0.4rem;
    width: 4rem;
    background-color: var(--color-highlight); }

.marker-image {
  height: 1.6rem;
  width: 1.6rem;
  object-fit: cover;
  margin-right: 0.5rem; }

.entire-info-website .logo-section {
  margin-bottom: 54px; }

.entire-info-website .descript-website-section {
  margin-bottom: 44px; }

.entire-info-website address p {
  margin-bottom: 14px; }
  .entire-info-website address p i {
    font-size: 20px;
    width: 30px;
    color: var(--color-main); }

.entire-info-website .title-social-footer {
  color: var(--color-main);
  margin-bottom: 30px; }

.social-footer-section {
  margin-bottom: 30px; }
  .social-footer-section ul {
    margin: 0; }
    .social-footer-section ul li {
      margin-right: 7px;
      display: inline-block; }
      .social-footer-section ul li a {
        display: block;
        font-size: 18px;
        text-align: center;
        line-height: 1; }
        .social-footer-section ul li a:hover {
          color: var(--color-main); }

.work-time .inner-time p {
  margin-bottom: 7px; }

.work-time span {
  margin-bottom: 7px;
  display: inline-block; }

.coppyright-payment {
  border-top: 1px solid rgba(102, 102, 102, 0.2); }
  .coppyright-payment .coppyright {
    margin-bottom: 0; }

.toolbar-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1050; }
  .toolbar-section .toolbar-item {
    flex: 1 0 25%; }
    .toolbar-section .toolbar-item a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: inherit;
      padding-left: 10px;
      padding-right: 10px;
      padding-bottom: 24px; }
      .toolbar-section .toolbar-item a i {
        font-size: 24px; }
      .toolbar-section .toolbar-item a span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 0;
        text-align: center;
        font-size: 12px;
        font-weight: 600; }

/* Page */
.article-item {
  margin-bottom: 0;
  background: #fff;
  border-radius: 24px;
  padding: 15px;
  height: 100%;
  border: 1px solid #fff;
  }
  .article-item .inner-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    }
    .article-item .inner-image .featured-media {
      position: absolute;
      top: 9px;
      right: 10px;
      z-index: 1; }
      .article-item .inner-image .featured-media i {
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 20px;
        background-color: rgba(255, 255, 255, 0.5);
        color: var(--color-main);
        margin: 0px 2px; }
    .article-item .inner-image img {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: 1s;
      }

  .article-item .article-info .article-category {
    display: inline-block;
    margin-right: 15px; }
    .article-item .article-info .article-category a {
      color: var(--color-highlight);
      font-weight: 600;
      line-height: 26px;
      text-transform: uppercase; }
      .article-item .article-info .article-category a:last-child .comma-item {
        display: none; }
      .article-item .article-info .article-category a:hover {
        opacity: 0.8;
        filter: alpha(opacity=80); }
  .article-item .article-info .post-date, .article-item .article-info .post-author {
    position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 26px;
    padding-left: 15px;
    margin-right: 15px; }
    .article-item .article-info .post-date::before, .article-item .article-info .post-author::before {
      content: '';
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      background-color: var(--color-text);
      height: 5px;
      width: 5px;
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%); }
  .article-item .article-info .post-author:hover {
    color: var(--color-text);
    text-decoration: underline; }
  .article-item .article-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text);
    }
.section-home-case-studies .swiper-wrapper .article-item .article-description {
    margin-bottom: 0;
}
    .article-item .article-title a {
      color: var(--color-text);
      }
      .article-item .article-title a:hover {
        color: var(--color-text);
        }
  .article-item .article-description {
    margin-bottom: 10px;
    color: #3A464F;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    }

.album-item .inner-image {
  margin-bottom: 21px; }

.album-item .album-info .album-category {
  display: inline-block;
  margin-right: 15px; }
  .album-item .album-info .album-category a {
    color: var(--color-highlight);
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase; }
    .album-item .album-info .album-category a:last-child .comma-item {
      display: none; }
    .album-item .album-info .album-category a:hover {
      opacity: 0.8;
      filter: alpha(opacity=80); }

.album-item .album-info .post-date, .album-item .album-info .post-author {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  padding-left: 15px;
  margin-right: 15px; }
  .album-item .album-info .post-date::before, .album-item .album-info .post-author::before {
    content: '';
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-text);
    height: 5px;
    width: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }

.album-item .album-info .post-author:hover {
  color: var(--color-text);
  text-decoration: underline; }

.album-item .album-title {
  line-height: 24px;
  font-weight: 600; }
  .album-item .album-title a {
    color: var(--color-main); }
    .album-item .album-title a:hover {
      text-decoration: underline; }

.album-item .album-description {
  margin-bottom: 20px; }

.read-more {
  font-weight: 700;
  color: var(--color-main);
  text-transform: uppercase;
  font-size: 12px; }

.article-content iframe, .article-content video, .article-content img, .article-content table {
  max-width: 100%; }

.article-content img {
  height: auto;
  display: block;
  }
.white-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    color: #404040 !important;
}
.social-share .list-social .btn-social {
  float: left;
  margin: 0 1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease; }
  .social-share .list-social .btn-social a {
    color: var(--color-main); }
    .social-share .list-social .btn-social a:hover {
      color: var(--color-highlight); }

/* Responsive */

.is-mobile .swiper-slider-main .swiper-slide {
  text-align: center; }
  .is-mobile .swiper-slider-main .swiper-slide .swiper-slide--wrap {
    text-align: left; }
  .is-mobile .swiper-slider-main .swiper-slide img {
    min-height: 40rem;
    object-fit: cover; }

.is-mobile .topbar-section {
  border-left: 0 !important; }

@media (max-width: 1280px) {
  html {
    font-size: 9px; } }

@media (max-width: 1200px) {
  .pagination .page-link {
    padding: 0 0.5rem;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    }
}

@media (max-width: 991px) {
  .entire-address {
    padding: 2rem 0; }
  .comment-section .list-comment .comment-content {
    margin-left: 0; }
  .list-comment .list-reply {
    margin-left: 3rem; }
  .comment-item .edit-comment {
    margin-left: 3rem; }
  .edit-comment {
    margin-bottom: 3rem; }
  .page-title-section .inner-title {
    font-size: 3rem; }
  .entry-order-review th, .entry-order-review td {
    font-size: 1.3rem;
    padding: 0.7rem 0; }
  .entry-order-review .order-total {
    font-size: 1.8rem; }
  .payment-method .tab-content, .payment-method ul {
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    border-right: 0; }
  .payment-method ul {
    border-bottom: 0.1rem solid #e3e3e3;
    padding-bottom: 3rem; }
    .payment-method ul li a.active::after {
      content: none; }
  .form-contact .title-section {
    padding-top: 3rem; } }

.is-mobile .btn-action-header {
  color: var(--black); }
  .is-mobile .btn-action-header .items-number {
    background-color: var(--color-highlight); }

@media screen and (device-aspect-ratio: 2 / 3) {
  select, textarea, input[type="text"], input[type="password"] {
    font-size: 1.6rem; } }

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {
  select, textarea, input[type="text"], input[type="password"] {
    font-size: 1.6rem; } }

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {
  select, textarea, input[type="text"], input[type="password"] {
    font-size: 1.6rem; } }

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {
  select, textarea, input[type="text"], input[type="password"] {
    font-size: 1.6rem; } }
