/* =====================================================
   CUSTOM THEME
   Load AFTER app.css
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #0D374F;
  --sidebar-bg: #dbe3ef;
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #f59e0b;
  --info: #0891b2;
  --link-hover: #f9b49b;
  --white: #ffffff;
  --line: #e9ecef;

  --card-bg: #fff;
  --card-border: #dbe3ef;
  --header-bg: #dbe3ef;  
  --table-header: #dbe3ef;
  --table-row-hover: #f8fafc;
  --form-border: #cbd5e1;
  --form-focus: #0D374F;
  --breadcrumb-bg: #dbe3ef;
  --filter-bg: #dbe3ef;
  --icon-bg: #61768C;
  --pagination-hover-bg: #61768C;
  --smenu-hover-bg: #dbe3ef;
}
/*---------- Reset Css ----------- */
     html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
          margin: 0;
          padding: 0;
          border: 0;
          outline: 0;
          font-size: 100%;
          font: inherit;
          vertical-align: baseline;
          font-family: inherit;
          font-size: 100%;
          font-style: inherit;
          font-weight: inherit;
     }
     article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
          display: block;
     }
     /* Elements -------------------------------------------------------------- */
     html {
          margin-right: 0 !important;
          scroll-behavior: smooth;
     }
body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--main);
  background-color: var(--white);
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: "Montserrat", sans-serif;
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Montserrat", sans-serif;
  border: 1px solid var(--line);
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: .6rem 1rem;
  width: 100%;
  background: var(--white);
  color: #333;
  font-weight: 400;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  border-color: var(--line);
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: var(--text-2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form-control,
.form-select {
  font-family: "Montserrat", sans-serif;
  border: 1px solid var(--line);
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  background: var(--white);
  color: var(--text-2);
  font-weight: 400;
  border-radius: 3px !important;
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
  padding: .6rem 1rem !important;
}

/* Select2 CSS */
/* ==========================================
   Select2 Custom Theme
   ========================================== */

.select2-container {
    width: 100% !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
}
.filter-dropdown .select2-container .select2-selection--single {
    width: 250px !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
}
.select2-container .select2-search--inline .select2-search__field{
  margin: 0px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: var(--primary) !important;
}
/* ==========================================
   Single Select
   ========================================== */

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid var(--line) !important;
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;

    height: auto !important;
    min-height: 46px;

    padding: .6rem 1rem !important;

    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
    line-height: 24px !important;

    display: flex;
    align-items: center;
}

/* Selected Text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    padding: 0 !important;
    line-height: 26px !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
}

/* Placeholder */
.select2-container--default .select2-selection__placeholder {
    color: #999;
    font-family: "Montserrat", sans-serif;
}

/* Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px !important;
    top: 7px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent;
}

/* ==========================================
   Multiple Select
   ========================================== */

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid var(--line) !important;
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;

    min-height: 46px;

    padding: .4rem .8rem !important;

    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
    line-height: 24px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #f5f5f5;
    border: 1px solid var(--line);
    color: #333;
    border-radius: 3px;
    padding: 3px 8px;
    margin: 3px;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #777;
    margin-right: 6px;
}

/* ==========================================
   Dropdown
   ========================================== */

.select2-dropdown {
    border: 1px solid var(--line) !important;
    border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;

    /* background: #fff; */
    color: var(--primary) !important;

    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
}

/* ==========================================
   Search Box
   ========================================== */

.select2-search--dropdown .select2-search__field {
    background: #fff;

    border: 1px solid var(--line) !important;
    border-radius: 3px !important;
    padding: .6rem .8rem;
    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
    line-height: 24px !important;
}

/* ==========================================
   Options
   ========================================== */

.select2-results__option {
    padding: .6rem 1rem;
    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
    line-height: 24px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--primary) !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ==========================================
   Focus
   ========================================== */

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
    border: 1px solid var(--line) !important;
    outline: none;
    box-shadow: none;
}

/* ==========================================
   Disabled
   ========================================== */

.select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background: #f8f8f8;
    cursor: not-allowed;
    opacity: .75;
}

textarea {
  height: 112px;
  resize: none;
}

.view-boq td a {
  color: var(--primary);
}
.view-boq td a:hover {
  color: var(--link-hover);
}

 .steps {
     width: 100%;
  padding: 25px;
}
 .step {
     width: 25%;
     padding: 10px;
     text-align: center;
     font-size: 16px;
     font-weight: 400;
     border: 1px solid var(--primary);
}
 .step.active {
     background-color: var(--primary);
     color: #fff;
}

/* Placeholder color */
::-webkit-input-placeholder {
  color: var(--text-2);
}

:-moz-placeholder {
  color: var(--text-2);
}

::-moz-placeholder {
  color: var(--text-2);
  opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
  color: var(--text-2);
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
/* #boqForm .card {
  height: 100vh;
  overflow-y: auto;
} */

.card-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--card-border);
  font-weight: 600;
  color: #1e293b;
}
/* #boqForm .card-header {
  position: sticky;
  top: 0;
  z-index: 10;
} */

.card-title {
  color: #1e293b;
}

.card-footer {
  background: #fafafa;
  border-top: 1px solid var(--card-border);
}

.card-primary:not(.card-outline)>.card-header {
  background: var(--primary);
  color: #fff;
}

.card-success:not(.card-outline)>.card-header {
  background: var(--success);
  color: #fff;
}

.card-danger:not(.card-outline)>.card-header {
  background: var(--danger);
  color: #fff;
}

.card-warning:not(.card-outline)>.card-header {
  background: var(--warning);
  color: #000;
}

.card-info:not(.card-outline)>.card-header {
  background: var(--info);
  color: #fff;
}

.card-outline.card-primary {
  border-top: 3px solid var(--primary);
}

.card-outline.card-success {
  border-top: 3px solid var(--success);
}

.card-outline.card-danger {
  border-top: 3px solid var(--danger);
}

.card-outline.card-warning {
  border-top: 3px solid var(--warning);
}

.card-outline.card-info {
  border-top: 3px solid var(--info);
}

/* Buttons */
.card-primary, .bg-primary, .text-bg-primary {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show{
  background-color: var(--link-hover);
  border-color: var(--link-hover);
}
.btn-primary,
.btn-save {
  background: var(--primary);
  border-color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  color: var(--white);
}

.btn-primary:hover,
.btn-save:hover {
  background: var(--link-hover);
  border-color: var(--link-hover);
}
.btn-default-primary{
  background-color: var(--link-hover);
  border-color: var(--link-hover);
  padding: 6px 12px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  color: var(--white);
}
.btn-default-primary:hover{
   background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-secondary {
  padding: 6px 12px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.btn-success {
  background: var(--success);
  border-color: var(--success);
}

.btn-danger {
  background: var(--danger);
  border-color: var(--danger);
   padding: 6px 12px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

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

.btn-info {
  background: var(--info);
  border-color: var(--info);
}

.btn-outline-primary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
  padding: 6px 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

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


.btn-icon {
  padding: 8px 8px;
  color: var(--white);
  background-color: var(--icon-bg);
  font-size: 12px;
  line-height: 12px;
  border: 1px solid var(--icon-bg);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.btn-icon:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-delete,
.btn-deactive,
.btn-unapprove{
  padding: 8px;
  color: var(--white);
  background-color: var(--danger);
  font-size: 12px;
  line-height: 12px;
  border: 1px solid var(--danger);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.btn-active-icon{
  padding: 8px;
  color: var(--white);
  background-color: var(--success);
  font-size: 12px;
  line-height: 12px;
  border: 1px solid var(--success);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.btn-active-icon:hover{
  background-color: #0d7c36;
  border: 1px solid #0d7c36;
  color: var(--white);
}
.btn-delete:hover,
.btn-deactive:hover,
.btn-unapprove {
  background-color: var(--danger);
  color: var(--white);
}

.btn-active,
.btn-approve {
  padding: 6px 12px;
  color: var(--white);
  background-color: var(--success);
  border: 1px solid var(--success);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn-active:hover,
.btn-approve:hover {
  background-color: var(--success);
  color: var(--white);
}
.text-danger {
 color: var(--danger);
}
.text-success {
  color: var(--success);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: 600;
}

a {
  text-decoration: none;
}

[type=checkbox]:checked, [type=radio]:checked {
  background-color: var(--primary) !important;
}

.focus\:ring-indigo-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: var(--primary) !important;
}

.content-header h1 {
  color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
  border-radius: 6px;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary) !important;
}

.breadcrumb-item a:hover {
  color: var(--link-hover) !important;
}

.breadcrumb-item.active {
  color: #f9b49b;
	font-weight: 500;
}
.breadcrumbs {
  background: var(--breadcrumb-bg);
  border-radius: 6px;
  font-size: 14px;
    list-style: none;
   display: flex;
    flex-wrap: wrap;
}

.breadcrumbs-items a {
  color: var(--primary) !important;
  text-decoration: none;
}

.breadcrumbs-items a:hover {
  color: var(--link-hover) !important;
}

.breadcrumbs-items.active {
  color: #475569;
}
.breadcrumbs-items + .breadcrumbs-items {
    padding-left: 0.5rem;
}
.breadcrumbs-items + .breadcrumbs-items::before {
  float: left;
  padding-right: 0.5rem;
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

/* Table Heading & Row CSS */
.table {
    width: 100%;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid var(--table-border, #dee2e6);
    border-collapse: collapse;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.table thead th {
    background: var(--table-header) !important; 
    color: var(--primary) !important;
    font-weight: 600;
    padding: 5px;
    border: 1px solid var(--table-header) !important;
    vertical-align: middle;
    white-space: nowrap;
}

.table thead th a {
    color: var(--primary) !important;
    text-decoration: none;
}

.table thead th a:hover {
    color: var(--link-hover) !important;
}

.table tbody td {
    padding: 5px;
    border: 1px solid var(--table-border, #dee2e6) !important;
    vertical-align: middle;
    background: var(--white);
}

.table tfoot th,
.table tfoot td {
    padding: 5px;
    border: 1px solid var(--table-border, #dee2e6) !important;
    font-weight: 600;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #f8f9fa;
}

.table-hover > tbody > tr:hover > * {
    background-color: var(--table-row-hover);
    transition: background-color .2s ease;
}

.table tbody tr:hover td {
    background-color: var(--table-row-hover);
}

.table-responsive {
    border-radius: 4px;
    overflow: hidden;
}

.table > :not(caption) > * > * {
    border-color: var(--table-border, #dee2e6);
}

.modal-table {
    margin-bottom: 0;
    padding: 0;
}

/* Forms */
.form-control,
.custom-select,
select {
  border: 1px solid var(--form-border);
  border-radius: 6px;
}

.form-control:focus,
.custom-select:focus,
select:focus {
  border-color: var(--form-focus);
  box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .2);
}

.form-group label {
  font-weight: 600;
  color: #334155;
}

.input-group-text {
  background: #f8fafc;
  border-color: var(--form-border);
}
.filter-dropdown span.select2-selection.select2-selection--single{
  width: 300px !important;
}
/* Checkbox */
.custom-control-input:checked~.custom-control-label::before {
  background: var(--primary);
  border-color: var(--primary);
}

/* Pagination */
.page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

.page-link {
  color: var(--primary);
}

/* Nav Pills - Tabbing Menu */
.sub-nav-link {
    display: block;
    padding: 0;
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--primary);
    text-decoration: underline;
    background: none;
    border: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.nav-pills .nav-link {
    color: var(--primary);
}
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background: var(--primary);
    color:  var(--white);
}

/* Badges */
.badge-primary {
  background: var(--primary);
}

.badge-success {
  background: var(--success);
}

.badge-danger {
  background: var(--danger);
}

.badge-warning {
  background: var(--warning);
}

.badge-info {
  background: var(--info);
}
.badge.bg-primary {
  font-weight: 400;
    padding: 5px;
    line-height: 9px;
    font-size: 10px;
}
/* navbar */
.navbar {
  --bs-navbar-padding-y: 0.8rem;
}

/* sidebar */
.bg-body-secondary{
background-color: var(--sidebar-bg) !important;
}
.sidebar-brand {
  padding: 0.8rem 0.8rem;
  height: 7.1rem;
  border: none;
}

.sidebar-brand .brand-link .brand-image {
  max-height: 100px;
}

.sidebar-wrapper .sidebar-menu>.nav-item>.nav-link {
  color: var(--primary);
  font-weight: 500;
}

.sidebar-wrapper .nav-treeview>.nav-item>.nav-link {
  color: var(--primary);
}

.sidebar-wrapper .nav-treeview>.nav-item>.nav-link {
  color: var(--primary);
}

.sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:hover, .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
    color: var(--white);
    background-color: var(--primary);
}
.sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover, .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:focus {
    color: var(--white);
    background-color: var(--primary);
}

.sidebar-wrapper .nav-treeview>.nav-item>.nav-link {
    color: var(--primary);
}

.dropdown-item:hover, .dropdown-item:focus {
    color: var(--white);
    background-color: var(--primary);
}

/* Card Title */
.card-title {
  font-size: 18px;
  line-height: 30px;
  color: var(--primary);
  font-weight: 500;
}

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

.project-link {
  display: grid;
}

.card-action {
  padding-top: 20px;
  justify-content: right;
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100%;
}

.datepicker-dropdown {
  padding: 10px !important;
}
input#mobile_no {
    padding-left: 74px !important;
}


.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}



.pagination .page-item .page-link:hover {
  color: var(--white) !important;
  background-color: var(--pagination-hover-bg) !important;
}

/* Product */
.product-grid {
  text-align: center;
}

.product-grid .article-thumb {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.product-grid a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.product-grid .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
 
}
.product-grid img{
  max-width: 100%;
    transform: scale(1);
    vertical-align: middle;
}
.product-link {
  width: 100%;
  height: 100%;
}

.product-link:hover {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

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

.product-title a {
  color: var(--primary);
  margin-top: 5px;
  padding: 5px 0px;
  font-weight: 500;
}

.product-title a:hover {
  color: var(--link-hover);
}

/* Products Left side Filter, List and Grid Layout */
    
.listLayout-wrapper #product-count-grid {
  display: none;
}

.listLayout-wrapper #product-count-list {
  display: block;
}

.gridLayout-wrapper #product-count-grid {
  display: block;
}

.gridLayout-wrapper #product-count-list {
  display: none;
}

.card-product.list-layout {
  gap: 20px;
}

.card-product.list-layout:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.card-product.list-layout .countdown-box {
  bottom: 56px;
}

.card-product.list-layout {
  display: flex;
  gap: 15px;
}

.card-product.list-layout .card-product-wrapper {
  max-width: 338px;
  width: 20%;
}

.card-product.list-layout .card-check {
  width: 2%;
}

.card-product.list-layout .card-check input[type="checkbox"], .form-check-input[type=checkbox] {
  /* width: 20px; */
  /* height: 20px; */
  /* background-color: var(--header-bg) !important; */
}



.meta-filter-shop .count-text {
  font-size: 16px;
  line-height: 26px;
  color: var(--primary);
  padding-right: 12px;
  position: relative;
}

.meta-filter-shop .count-text::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  display: block;
  content: "";
  background-color: var(--line);
}

.meta-filter-shop .count-text .count {
  color: var(--main);
  display: inline-block;
  margin-right: 2px;
}

.meta-filter-shop #applied-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-filter-shop .filter-tag {
  font-size: 14px;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 1000px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.meta-filter-shop .filter-tag .remove-tag {
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-filter-shop .filter-tag:hover {
  border-color: var(--main);
}

.meta-filter-shop .color-tag {
  gap: 8px;
}

.meta-filter-shop .color-tag .color {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 1000px;
}

.meta-filter-shop .remove-all-filters .icon {
  font-size: 10px;
}

.meta-filter-shop .remove-all-filters:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.loadItem.hidden {
  display: none !important;
}

.loadItem.card-product.style-list:not(.hidden) {
  display: flex !important;
}

.sidebar-filter {
  background-color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay-filter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background-color: var(--backdrop);
  visibility: hidden;
  opacity: 0;
}

.overlay-filter.show {
  opacity: 1;
  visibility: visible;
}

.tf-shop-control {
  margin-bottom: 30px;
  gap: 5px;
}

.tf-control-layout {
  display: flex;
  gap: 12px;
  list-style: none;
}

.tf-control-layout .tf-view-layout-switch .item {
  color: var(--primary);
  opacity: 0.4;
  padding: 0 5px;
  min-height: 34px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-control-layout .tf-view-layout-switch .item:hover{
  color: var(--link-hover);
}
.tf-control-layout .tf-view-layout-switch:hover .item,
.tf-control-layout .tf-view-layout-switch.active .item {
  opacity: 1;
  /* color: var(--link-hover); */
}

.tf-pagination-wrap {
  padding-top: 45px;
}

.tf-pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
  gap: 4px;
  list-style: none !important;
}

.tf-pagination-list .pagination-link {
  width: 45px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: var(--main);
  border: 1px solid;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  font-weight: 500 !important;
}

.tf-pagination-list .pagination-link .icon {
  font-size: 12px;
}

.tf-pagination-list .active .pagination-link {
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 10px 0px;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--white);
  font-weight: 500 !important;
}
.tf-pagination-list .pagination-link:hover{
  background-color: var(--link-hover) !important;
  color: var(--white)  !important;
  font-weight: 500 !important;
}
.widget-facet {
  margin-bottom: 26px;
  padding-bottom: 26px;
}

.widget-facet .facet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;

}

.widget-facet .facet-title .icon {
  transition: transform 0.35s linear;
  font-size: 8px;
}

.widget-facet .facet-title.collapsed .icon {
  transform: rotate(180deg);
}

.widget-facet.wd-categories {
  border-bottom: 1px solid var(--line);
}

.widget-facet:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.widget-facet .cate-item a {
  display: flex;
  color: var(--primary);
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 500;
}
.widget-facet .cate-item a:hover {
  color: var(--link-hover);
}
.widget-facet .cate-item.current a {
  color: var(--link-hover);
}

.widget-facet .cate-item:not(:first-child) {
  margin-top: 10px;
}

.widget-facet .list-item .label {
  display: flex;
  color: var(--main);
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 500;
}

.widget-facet .list-item:not(:first-child) {
  margin-top: 10px;
}

.widget-facet .current-scrollbar {
  list-style: none;
  margin-right: 5px;
  margin-left: 10px;
}
.tf-list-layout .form-check .form-check-input{
  margin-left: 0px !important;
}
.widget-facet .current-scrollbar::-webkit-scrollbar {
  width: 2px;
}

.widget-facet .current-scrollbar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.15);
}

.widget-facet .current-scrollbar::-webkit-scrollbar-thumb {
  background: var(--main);
}

.widget-facet .filter-color {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-facet .filter-color .list-item {
  margin: 0;
}

.widget-featured-products {
  display: grid;
  gap: 15px;
}

.widget-featured-products .featured-product-item {
  display: flex;
  gap: 15px;
}

.widget-featured-products .featured-product-item .card-product-wrapper {
  width: 92px;
  min-width: 92px;
  border-radius: 10px;
  overflow: hidden;
}

.widget-featured-products .featured-product-item .card-product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-featured-products .featured-product-item .card-product-info .title {
  font-size: 16px;
  line-height: 19.2px;
  margin-bottom: 1px;
}

.widget-featured-products .featured-product-item .card-product-info .price {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}

.widget-iconbox-list {
  display: grid;
  gap: 18px;
}

.widget-iconbox-list .iconbox-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.widget-iconbox-list .iconbox-item .box-icon {
  border: 1px solid var(--line);
}

.widget-iconbox-list .iconbox-item .iconbox-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-iconbox-list .iconbox-item .iconbox-content .iconbox-title {
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 600;
}

.widget-iconbox-list .iconbox-item .iconbox-content .iconbox-desc {
  color: var(--text-3);
}

.widget-price {
  margin-top: 24px;
  margin-bottom: 35px;
}

.widget-price .box-title-price {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-price .caption-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-price .caption-price .price-val {
  width: 120px;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.widget-price .caption-price .price-val::after {
  content: attr(data-currency);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.widget-price .price-val-range {
  padding: 0px 10px;
}

.wrapper-shop {
  transition: all 0.3s ease-in-out;
  animation: fadeShop 0.5s ease-in-out;
}

@keyframes fadeShop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.listLayout-wrapper #product-count-grid {
  display: none;
}

.listLayout-wrapper #product-count-list {
  display: block;
}

.gridLayout-wrapper #product-count-grid {
  display: block;
}

.gridLayout-wrapper #product-count-list {
  display: none;
}

.meta-filter-shop {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  /* margin-bottom: 30px; */
}


.meta-filter-shop #applied-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-filter-shop .filter-tag {
  font-size: 14px;
  line-height: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 1000px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.meta-filter-shop .filter-tag .remove-tag {
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-filter-shop .filter-tag:hover {
  border-color: var(--main);
}

.meta-filter-shop .color-tag {
  gap: 8px;
}

.meta-filter-shop .color-tag .color {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 1000px;
}


.meta-filter-shop .remove-all-filters .icon {
  font-size: 16px;  
}

.meta-filter-shop .remove-all-filters:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.tf-row-flex .tf-shop-sidebar {
  width: calc(25% - 15px);
}
.sidebar-bg{
  background-color: #fbfbfb;
  padding: 20px;
}
.tf-row-flex {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  row-gap: 30px;
}

.tf-grid-layout {
  display: grid;
  gap: 35px;
}

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

.tf-grid-layout.tf-col-2 {
  grid-template-columns: 1fr 1fr;
}

.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}

.tf-row-flex .tf-shop-sidebar {
  width: calc(25% - 15px);
}

.tf-row-flex .tf-shop-content {
  width: calc(75% - 15px);
}

.card-product {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: start;
}

.card-product .product-img {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  align-items: stretch;
}

.card-product .marquee-product {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  width: 100%;
  transform: none;
  padding: 7px 0px;
}

.card-product .marquee-product .marquee-child-item svg {
  width: 15px;
  fill: currentColor;
}

.card-product .marquee-product .marquee-child-item .on-sale-badge {
  border-radius: 15px;
  line-height: 21px;
  font-size: 12px;
  padding: 0 10px;
  background-color: #fc5732;
  color: var(--white);
}

.card-product .marquee-product .marquee-wrapper {
  flex: 0 0 auto;
  min-width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: infiniteScroll 18s linear 0s infinite;
  animation-play-state: running;
  animation-delay: 0s;
  animation-direction: normal;
}

.card-product.has-marquee:hover .marquee-product {
  opacity: 0;
  visibility: hidden;
}

.card-product .card-product-wrapper {
  position: relative;
  /* border-radius: 10px;
     */
  overflow: hidden;
  z-index: 20;
}

.card-product .card-product-wrapper .sold-out {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-11);
  border-radius: 999px;
  height: 73px;
  width: 73px;
  padding: 0 5px;
}

.card-product .card-product-wrapper .sold-out span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  background-color: var(--bg-11);
  position: relative;
  z-index: 12;
}

.card-product .card-product-wrapper .sold-out::after {
  height: 1px;
  width: calc(100% - 16px);
  position: absolute;
  z-index: 1;
  opacity: 0.1;
  content: "";
  background-color: var(--main);
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.card-product .card-product-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-product .card-product-wrapper .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.card-product .card-product-wrapper:hover .product-img .img-product {
  opacity: 0;
}

.card-product .card-product-wrapper:hover .product-img .img-hover {
  display: block;
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}

.card-product .card-product-wrapper .size-list {
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-product .card-product-wrapper .list-product-btn {
  z-index: 10;
  position: absolute;
  bottom: 48px;
  left: 15px;
  right: 15px;
}

.card-product .card-product-wrapper .list-product-btn.absolute-2 {
  bottom: 25px;
}

.card-product .card-product-wrapper .list-product-btn.absolute-3 {
  bottom: 57px;
}

.card-product .card-product-wrapper .on-sale-wrap {
  position: absolute;
  top: 5px;
  right: 5px;
  left: 5px;
  z-index: 5;
}

.card-product .card-product-wrapper .on-sale-wrap .on-sale-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
  padding: 0 6px;
  min-width: 40px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  position: relative;
  background-color: #fc5732;
  color: var(--white);
  border-radius: 999px;
}

.card-product .card-product-wrapper .on-sale-wrap .new {
  background-color: #ff3232;
}

.card-product .card-product-wrapper .on-sale-wrap .best-seller {
  background-color: #44ad55;
}

.card-product .card-product-wrapper .on-sale-wrap .recommend {
  background-color: #bea36e;
}

.card-product .card-product-wrapper .on-sale-wrap .pre-order {
  background-color: #55a653;
  color: var(--white);
}

.card-product .card-product-wrapper .column-left {
  bottom: unset !important;
  right: unset !important;
  top: 15px;
}

.card-product .card-product-wrapper .column-right {
  bottom: unset !important;
  left: unset !important;
  top: 15px;
}

.card-product .btn-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  z-index: 12;
  height: 32px;
  background-color: var(--main);
  color: var(--white);
  font-size: 12px;
  line-height: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product .card-product-info {
  padding-top: 10px;
  gap: 8px;
  display: grid;
}

.card-product .card-product-info .title {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.card-product .card-product-info .old-price {
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}

.card-product .card-product-info .new-price {
  color: var(--red_1);
}

.card-product .card-product-info.has-padding {
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 30px;
}

.card-product-info .title {
  color: var(--primary);
}

.card-product-info .title:hover {
  color: var(--link-hover);
}

.card-product .countdown-box {
  position: absolute;
  z-index: 3;
  left: 5px;
  right: 5px;
  text-align: center;
  pointer-events: none;
  transition: 0.4s ease-out 0s;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
  max-height: 40px;
  background-color: var(--white);
  border-radius: 3px;
}

.card-product .countdown-box .countdown__timer {
  display: flex;
  gap: 4px;
}

.card-product .countdown-box .countdown__item {
  font-size: 14px;
  line-height: 22.4px;
  color: var(--primary);
  font-weight: 600;
}

.card-product .description {
  display: none;
  font-size: 14px;
  line-height: 22.4px;
  margin-top: 2px;
}


/*------------ slider banner ---------------- */
.wrap-slider {
  position: relative;
}
.wrap-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-slider .box-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wrap-slider .box-content .heading, .wrap-slider .box-content h1 {
  margin-bottom: 18px;
}
.wrap-slider .box-content .heading.mb_38, .wrap-slider .box-content h1.mb_38 {
  margin-bottom: 38px;
}
.wrap-slider .box-content p {
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 24px;
}
.wrap-slider .box-content p.mb_15 {
  margin-bottom: 15px;
}
.wrap-slider .box-content p.sale_off {
  background-color: #ff5c39;
  padding: 5px 20px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.tf-slideshow {
  overflow: hidden;
}
.tf-slideshow .wrap-pagination {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 0;
  right: 0;
}
.tf-slideshow .wrap-pagination .sw-dots {
  margin-top: 0;
}
.tf-slideshow .sw-absolute-3 {
  right: 3%;
  left: unset;
  width: auto;
}
.tf-slideshow .sw-absolute-3 .sw-dots {
  flex-direction: column;
}
.tf-slideshow .card-box {
  padding: 64px 48px 70px;
  border-radius: 10px;
  max-width: 550px;
}
.tf-slideshow .card-box .heading {
  margin-bottom: 38px;
}
.tf-slideshow .subheading {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 22.4px;
}

.slider-electric-bike .card-box {
  padding: 76px 53px;
  max-width: 552px;
}
.slider-electric-bike .card-box .heading {
  font-size: 52px;
  line-height: 62px;
}

.slider-skincare .sw-absolute-3 {
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
}

.slider-effect-fade .swiper-slide .fade-item {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slider-effect-fade .swiper-slide .fade-item.fade-box {
  transition-delay: 0.4s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-1 {
  transition-delay: 0.5s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-2 {
  transition-delay: 0.6s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-3 {
  transition-delay: 0.7s;
}
.slider-effect-fade .swiper-slide .fade-item.fade-item-4 {
  transition-delay: 0.8s;
}
.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.slider-giftcard .wrap-slider {
  height: 350px;
}
.slider-giftcard .wrap-slider .heading {
  margin-bottom: 18px;
  font-weight: 500;
}

.hover-sw-nav .sw-dots {
  margin-top: 15px;
  position: relative;
  z-index: 10;
  display: none;
  transform: unset !important;
  bottom: unset;
}

.slider-effect {
  position: relative;
}
.slider-effect.wrap-slider {
  height: auto !important;
}
.slider-effect .content-left {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  background-color: rgb(238, 241, 224);
}
.slider-effect .content-left .box-content {
  position: unset;
  transform: unset;
}
.slider-effect .content-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-effect .img-slider {
  width: 50%;
  margin-left: auto;
}

.swiper-slide .box-content {
  opacity: 0;
}
.swiper-slide.swiper-slide-active .box-content {
  opacity: 1;
}

.slideshow-effect-zoom {
  padding-top: 74px;
  padding-bottom: 100px;
}
.slideshow-effect-zoom .content-left {
  padding: 20px;
  padding-left: 0;
}
.slideshow-effect-zoom .content-left .desc {
  margin-top: 18px;
  font-size: 20px;
  line-height: 32px;
  color: rgb(84, 84, 84);
}
.slideshow-effect-zoom .content-left .tf-btn {
  margin-top: 48px;
}
.slideshow-effect-zoom .wrap-content {
  display: flex;
  align-items: center;
}
.slideshow-effect-zoom .wrap-content .content-left,
.slideshow-effect-zoom .wrap-content .content-right {
  width: 50%;
}

.grid-img-group {
  position: relative;
}
.grid-img-group .item-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  width: 51%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.grid-img-group .item-1:hover {
  z-index: 2;
}
.grid-img-group .item-2 {
  margin-left: auto;
  width: 84%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.grid-img-group .item-2:hover {
  z-index: 2;
  position: relative;
}
.grid-img-group .img-style {
  border-radius: 10px;
}
.grid-img-group.style-ter-1 {
  padding-bottom: 66px;
}
.grid-img-group.style-ter-1 .item-1 {
  width: 53%;
  align-items: end;
}
.grid-img-group.style-ter-1 .item-2 {
  width: 79%;
}
.grid-img-group.type-1 {
  padding-bottom: 70px;
}
.grid-img-group.type-1 .item-1 {
  width: 79%;
  position: relative;
}
.grid-img-group.type-1 .item-2 {
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.tf-slideshow .box-content .subheading {
  margin-bottom: 14px;
}
.tf-slideshow .banner-wrapper {
  position: relative;
}
.tf-slideshow .banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-slideshow .banner-wrapper .box-content {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.tf-slideshow .banner-wrapper .description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 19.2px;
}
.tf-slideshow .banner-wrapper .tf-btn {
  margin-top: 30px;
}
.tf-slideshow.about-us-page .text {
  font-size: 68px;
  line-height: 81.6px;
}
.tf-slideshow.about-us-page img {
  max-height: 860px;
}
.tf-slideshow .text-in-right .box-content {
  left: unset;
}

.slider-video .tf-btn {
  margin-top: 28px;
}

.slider-radius {
  padding: 0 40px;
}
.slider-radius .tf-sw-slideshow {
  border-radius: 60px;
}
.slider-radius .tf-sw-slideshow .heading {
  margin-bottom: 38px;
}
.slider-radius .tf-sw-slideshow .subheading {
  font-size: 14px;
  line-height: 22.4px;
}
.slider-radius .row-end .box-content {
  left: unset;
}

.autoplay-linear .swiper-wrapper {
  transition-timing-function: linear;
}

.slideshow-men .tf-sw-slideshow {
  padding-top: 60px;
  margin-top: -60px;
}
.slideshow-men .wrap-slider {
  position: relative;
}
.slideshow-men .lookbook-1 .lookbook-item {
  position: absolute;
}
.slideshow-men .lookbook-1 .item-1 {
  top: 8%;
  left: 60%;
}
.slideshow-men .lookbook-1 .item-2 {
  top: 35%;
  left: 50%;
}
.slideshow-men .lookbook-2 .lookbook-item {
  position: absolute;
}
.slideshow-men .lookbook-2 .item-1 {
  top: 36%;
  left: 50%;
}
.slideshow-men .wrap-pagination {
  bottom: 45px;
}

.slideshow-lookbook .wrap-slider {
  position: relative;
}
.slideshow-lookbook .lookbook-1 .lookbook-item {
  position: absolute;
}
.slideshow-lookbook .lookbook-1 .item-1 {
  top: 39%;
  left: 35%;
}
.slideshow-lookbook .lookbook-1 .item-2 {
  top: 59%;
  left: 60%;
}
.slideshow-lookbook .lookbook-1 .item-3 {
  top: 26%;
  left: 74%;
}
.slideshow-lookbook .wrap-pagination {
  bottom: 45px;
}

.banner-hero-collection-wrap {
  position: relative;
}
.banner-hero-collection-wrap .box-content {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-hero-collection-wrap .card-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px 15px;
}
.banner-hero-collection-wrap .card-box .subheading {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 700;
}
.banner-hero-collection-wrap .card-box .heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 28.8px;
  margin-top: 16px;
}
.banner-hero-collection-wrap .card-box .text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--text);
}
.banner-hero-collection-wrap .card-box .tf-btn {
  margin-top: 20px;
}
.banner-hero-collection-wrap .img-wrap {
  height: 450px;
  width: 100%;
}
.banner-hero-collection-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-parallax {
  height: 350px;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-skateboard .wrap-slider .box-content {
  top: unset;
  transform: unset;
  bottom: 10%;
}

.tf-slideshow .card-box-2 .title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
}
.tf-slideshow .card-box-2 .price {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.tf-slideshow .card-box-2 .old-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}
.tf-slideshow .text-extra-heading {
  font-size: 200px;
  line-height: 180px;
  text-transform: uppercase;
  margin-bottom: 120px;
  margin-left: -10px;
}

.flat-testimonial-bg {
  padding: 40px 0px 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.flat-testimonial-bg-1 {
  background-image: url(../images/slider/image_bg_testimonials.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.height-auto {
  height: auto;
}
.height-auto > .h-100 {
  height: 100% !important;
}

.slideshow-tee .wrap-slider .box-content .heading {
  font-size: 34px;
  line-height: 40.8px;
}
.slideshow-tee .wrap-slider .box-content p {
  font-size: 34px;
  line-height: 40.8px;
}
.slideshow-tee.tf-slideshow .wrap-slider {
  height: 400px;
}

.flat-testimonial-bg-v2 {
  padding: 50px 0px 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.flat-testimonial-bg-v2 .wrap-content-left .rating {
  margin-bottom: 10px;
}
.flat-testimonial-bg-v2 .wrap-content-right {
  margin-top: 15px;
}
.flat-testimonial-bg-v2 .wrap-content-right .box-sw-navigation {
  margin-top: 30px;
}

.slider-sock .img-mb {
  display: none;
}

.slider-accessories {
  position: relative;
}
.slider-accessories .wrap-slider .box-content {
  top: 10%;
  transform: unset;
}
.slider-accessories .wrap-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 50;
}
.slider-accessories .nav-sw {
  position: absolute;
}
.slider-accessories .nav-next-slider {
  left: 6%;
}
.slider-accessories .nav-prev-slider {
  right: 6%;
}

.slider-camp-and-hike .wrap-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 50;
}
.slider-camp-and-hike .nav-sw {
  position: absolute;
}
.slider-camp-and-hike .nav-next-slider {
  left: 6%;
}
.slider-camp-and-hike .nav-prev-slider {
  right: 6%;
}

.slider-personalized-pod .wrap-navigation {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 50;
}
.slider-personalized-pod .nav-sw {
  position: absolute;
}
.slider-personalized-pod .nav-next-slider {
  left: 7%;
}
.slider-personalized-pod .nav-prev-slider {
  right: 7%;
}
.slider-personalized-pod .box-content {
  transform: none;
  top: unset;
  bottom: 11%;
}
.slider-personalized-pod .box-content .heading {
  margin-bottom: 18px;
}
.slider-personalized-pod .box-content .sub {
  margin-bottom: 48px;
}
.slider-personalized-pod .box-content .desc {
  margin-bottom: 15px;
}
.slider-personalized-pod .box-content .text {
  font-size: 16px;
  line-height: 19px;
}
.slider-personalized-pod .box-content a {
  background-color: rgb(179, 28, 27);
}

.slider-gaming-accessories {
  position: relative;
}
.slider-gaming-accessories > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-parallax {
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-parallax .heading {
  margin-bottom: 18px;
}
.slider-parallax .desc {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 19.2px;
}

.slider-supplement .container {
  place-items: end;
}
.slider-supplement .container .wrap {
  text-align: center;
}
.slider-supplement .wrap-slider .box-content .subheading {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 14px;
}
.slider-supplement .wrap-slider .box-content .heading {
  margin-bottom: 38px;
}



/* --------- */


/*------------ product ---------------- */
.thumbs-slider1,
.thumbs-slider2,
.thumbs-slider3,
.thumbs-slider4,
.thumbs-slider {
  display: flex;
  gap: 10px;
}

.tf-product-media-thumbs {
  width: calc(14% - 10px);
  max-height: 846px;
}
.tf-product-media-thumbs .swiper-slide {
  height: max-content;
}
.tf-product-media-thumbs .swiper-slide .item {
  position: relative;
  height: 100%;
}
.tf-product-media-thumbs .swiper-slide .item img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-product-media-thumbs .swiper-slide .item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
  border: 2px solid var(--main);
}

.thumbs-bottom .thumbs-slider {
  flex-direction: column;
}
.thumbs-bottom .thumbs-slider .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}
.thumbs-bottom .thumbs-slider .tf-product-media-thumbs .swiper-slide {
  width: 119px;
}
.thumbs-bottom .thumbs-slider .tf-product-media-main {
  width: 100%;
}
.thumbs-bottom .thumbs-slider1 {
  flex-direction: column;
}
.thumbs-bottom .thumbs-slider1 .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}
.thumbs-bottom .thumbs-slider1 .tf-product-media-thumbs .swiper-slide {
  width: 119px;
}
.thumbs-bottom .thumbs-slider1 .tf-product-media-main1 {
  width: 100%;
}
.thumbs-bottom .thumbs-slider2 {
  flex-direction: column;
}
.thumbs-bottom .thumbs-slider2 .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}
.thumbs-bottom .thumbs-slider2 .tf-product-media-thumbs .swiper-slide {
  width: 119px;
}
.thumbs-bottom .thumbs-slider2 .tf-product-media-main2 {
  width: 100%;
}
.thumbs-bottom .thumbs-slider3 {
  flex-direction: column;
}
.thumbs-bottom .thumbs-slider3 .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}
.thumbs-bottom .thumbs-slider3 .tf-product-media-thumbs .swiper-slide {
  width: 119px;
}
.thumbs-bottom .thumbs-slider3 .tf-product-media-main3 {
  width: 100%;
}
.thumbs-bottom .thumbs-slider4 {
  flex-direction: column;
}
.thumbs-bottom .thumbs-slider4 .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}
.thumbs-bottom .thumbs-slider4 .tf-product-media-thumbs .swiper-slide {
  width: 119px;
}
.thumbs-bottom .thumbs-slider4 .tf-product-media-main4 {
  width: 100%;
}

.tf-product-media-main1,
.tf-product-media-main2,
.tf-product-media-main3,
.tf-product-media-main4,
.tf-product-media-main {
  width: 86%;
  border-radius: 10px;
}
.tf-product-media-main1 .item,
.tf-product-media-main2 .item,
.tf-product-media-main3 .item,
.tf-product-media-main4 .item,
.tf-product-media-main .item {
  width: 100%;
  height: auto;
  max-height: 846px;
}
.tf-product-media-main1 .item img,
.tf-product-media-main2 .item img,
.tf-product-media-main3 .item img,
.tf-product-media-main4 .item img,
.tf-product-media-main .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tf-product-info-list {
  padding-left: 25px;
}
.tf-product-info-list > div:not(:last-child) {
  margin-bottom: 30px;
}

.tf-product-info-title {
  margin-bottom: 20px !important;
}

.tf-product-info-badges {
  margin-bottom: 18px !important;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.tf-product-info-badges .badges {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--main);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 29px;
}
.tf-product-info-badges .product-status-content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.tf-product-info-badges .product-status-content svg {
  animation: tf-ani-flash 2s infinite;
}
.tf-product-info-badges .product-status-content i {
  font-size: 20px;
  color: var(--primary);
  animation: tf-ani-flash 2s infinite;
}

.tf-product-info-price {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tf-product-info-price .price {
  color: var(--main);
  font-size: 28px;
  line-height: 28px;
}
.tf-product-info-price .price-on-sale {
  color: var(--primary);
  font-size: 30px;
  line-height: 30px;
}
.tf-product-info-price .compare-at-price {
  color: rgba(0, 0, 0, 0.55);
  font-size: 20px;
  line-height: 20px;
  text-decoration: line-through;
}
.tf-product-info-price .badges-on-sale {
  background-color: rgb(252, 87, 50);
  border-radius: 28px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  color: var(--white);
}

.tf-product-info-liveview {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tf-product-info-liveview .liveview-count {
  display: flex;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  line-height: 24px;
  color: var(--white);
  background-color: var(--main);
  border-radius: 3px;
  font-weight: 600;
}

.tf-product-info-countdown .countdown-wrap {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid var(--primary);
  border-radius: 2.5px;
  text-align: center;
  min-width: 367px;
}
.tf-product-info-countdown .countdown-wrap .countdown-title {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.tf-product-info-countdown .countdown-wrap .countdown-title i {
  font-size: 14px;
  color: var(--main);
}
.tf-product-info-countdown .countdown-wrap .countdown-title p {
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
}

@-webkit-keyframes tf-ani-tada {
  from, to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
@keyframes tf-ani-tada {
  from, to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
.tf-ani-tada {
  -webkit-animation: tf-ani-tada 2s infinite;
  animation: tf-ani-tada 2s infinite;
}

.tf-product-info-variant-picker {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.tf-product-item-property input {
  height: 42px;
}
.tf-product-item-property label {
  font-weight: 400;
  color: var(--text-3);
}

.tf-product-info-quantity .quantity-title {
  margin-bottom: 5px;
}

.tf-product-info-buy-button form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tf-product-info-buy-button form .btns-full {
  width: 100%;
  margin-top: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: 44px;
  background-color: #ffc520;
  border-radius: 3px;
  font-weight: 500;
  color: rgb(37, 59, 128);
}
.tf-product-info-buy-button form .btns-full:hover {
  background-color: #f6b600;
}
.tf-product-info-buy-button form .payment-more-option {
  width: 100%;
  margin-top: 10px;
  text-decoration: underline;
  color: rgb(134, 134, 134);
  text-align: center;
}

.btns-sold-out {
  opacity: 0.3;
}
.btns-sold-out::after {
  display: none;
}

.tf-pickup-availability {
  display: flex;
  gap: 10px;
}
.tf-pickup-availability a {
  font-size: 12px;
  line-height: 20px;
  text-decoration: underline;
}

.tf-pickup-availability-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tf-pickup-availability-list .tf-pickup-availability-location {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
}
.tf-pickup-availability-list .tf-pickup-availability {
  margin-top: 15px;
  margin-bottom: 20px;
}
.tf-pickup-availability-list .tf-btn {
  margin-top: 14px;
}

.tf-product-info-extra-link {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.tf-product-info-extra-link .tf-product-extra-icon {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tf-product-info-extra-link .tf-product-extra-icon i {
  font-size: 18px;
}
.tf-product-info-extra-link .tf-product-extra-icon:hover {
  color: var(--primary);
}

.tf-product-delivery {
  padding: 30px 28px;
  text-align: center;
  display: flex;
  gap: 16px;
  flex-direction: column;
  border-radius: 2.5px;
  border: 1px solid var(--line);
}
.tf-product-delivery i {
  font-size: 29px;
}

.tf-product-order {
  display: flex;
  gap: 14px;
  align-items: center;
}
.tf-product-order .icon i {
  font-size: 24px;
}

.tf-product-info-trust-seal {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.tf-product-info-trust-seal .tf-product-trust-mess {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tf-product-info-trust-seal .tf-product-trust-mess i {
  font-size: 21px;
  color: var(--main);
}

.find-size {
  text-decoration: underline !important;
  text-underline-offset: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.find-size:hover {
  color: var(--primary);
}

.variant-picker-item .variant-picker-label {
  margin-bottom: 15px;
}
.variant-picker-item .variant-picker-values {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.variant-picker-item .variant-picker-values input {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}
.variant-picker-item .variant-picker-values input:checked + label:not(.color-btn) {
  border-color: var(--main);
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1019607843);
}
.variant-picker-item .variant-picker-values input:checked + label.style-text:not(.color-btn) {
  background-color: var(--main);
}
.variant-picker-item .variant-picker-values input:checked + label.style-text:not(.color-btn) p {
  color: var(--white);
}
.variant-picker-item .variant-picker-values label {
  position: relative;
  width: 36px;
  height: 36px;
  text-align: center;
  padding: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 400;
  line-height: 22.4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.variant-picker-item .variant-picker-values label:hover {
  border-color: var(--main);
}
.variant-picker-item .variant-picker-values label .btn-checkbox {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(134, 134, 134, 0.12);
}
.variant-picker-item .variant-picker-values label.style-text {
  min-width: 45px;
  height: 38px;
  width: max-content;
  border: 1px solid rgba(134, 134, 134, 0.12);
  border-radius: 3px;
  padding: 7px 15px;
}
.variant-picker-item .variant-picker-values label.style-text:hover {
  border-color: var(--main);
}
.variant-picker-item .variant-picker-values label.style-image {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(134, 134, 134, 0.12);
  border-radius: 3px;
  padding: 5px;
  width: 90px;
  height: unset;
}
.variant-picker-item .variant-picker-values label.style-image .image img {
  height: 112.5px;
}
.variant-picker-item .variant-picker-values label.style-image p {
  font-size: 12px;
  font-weight: 600;
  line-height: 19px;
  color: var(--main);
  margin-top: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}
.variant-picker-item .variant-picker-values label.image-rounded {
  width: 56px;
  height: 56px;
}
.variant-picker-item .variant-picker-values label.image-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}
.variant-picker-item .variant-picker-values label.sold-out {
  opacity: 0.5;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: line-through;
  pointer-events: none;
}
.variant-picker-item .variant-picker-values label.sold-out-line::after {
  content: "";
  width: 90%;
  height: 1px;
  background: rgb(34, 34, 34);
  display: block;
  position: absolute;
  z-index: 22;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.variant-picker-item .variant-picker-values label .tooltip {
  left: 50%;
  transform: translateX(-50%);
}
.variant-picker-item .variant-picker-values label.rectangle-color {
  display: flex;
  align-items: center;
  gap: 4px;
}
.variant-picker-item .variant-picker-values label.rectangle-color > span {
  width: 15px;
  height: 15px;
}
.variant-picker-item .color-btn.active {
  border-color: var(--main) !important;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1019607843);
}
.variant-picker-item .color-btn.style-text.active {
  background-color: var(--main);
  border-color: var(--main);
}
.variant-picker-item .color-btn.style-text.active p {
  color: var(--white);
}

.tf-product-bundle-wrap {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 2.5px;
}
.tf-product-bundle-wrap > .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--main);
  margin-bottom: 25px;
}
.tf-product-bundle-wrap .tf-btn {
  height: 49px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

.tf-bundle-product-item {
  display: flex;
  gap: 20px;
}
.tf-bundle-product-item.type-lg {
  gap: 37px;
  margin-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--line);
}
.tf-bundle-product-item.type-lg img {
  width: 160px;
  min-width: 160px;
  max-width: unset;
  max-height: 223px;
}
.tf-bundle-product-item.type-lg .tf-product-bundle-title {
  margin-bottom: 10px;
}
.tf-bundle-product-item.type-lg .tf-product-bundle-price {
  margin-bottom: 17px;
}

.tf-product-bundle-image img {
  width: 83px;
  min-width: 83px;
  max-width: 83px;
  border-radius: 2.5px;
}

.tf-product-bundle-infos > a:hover {
  color: var(--primary);
}
.tf-product-bundle-infos .tf-product-bundle-title {
  margin-bottom: 5px;
}
.tf-product-bundle-infos .tf-product-bundle-variant {
  margin-bottom: 10px;
}
.tf-product-bundle-infos .tf-product-bundle-variant select {
  height: 40px;
}
.tf-product-bundle-infos .tf-product-bundle-price {
  display: flex;
  gap: 5px;
}
.tf-product-bundle-infos .tf-product-bundle-price .compare-at-price {
  color: var(--main);
  text-decoration: line-through;
}
.tf-product-bundle-infos .tf-product-bundle-price .price-on-sale {
  font-weight: 600;
  color: var(--primary);
}
.tf-product-bundle-infos .tf-product-bundle-price .price {
  font-weight: 600;
  color: var(--main);
}

.tf-product-bundle-total-submit {
  display: flex;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
}
.tf-product-bundle-total-submit .text {
  margin-right: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--main);
}
.tf-product-bundle-total-submit .compare-at-price {
  margin-right: 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 45px;
  color: var(--primary);
}
.tf-product-bundle-total-submit .price-on-sale {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: line-through;
}

.tf-bundle-check input {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}
.tf-bundle-check input:checked + label {
  background-color: var(--primary);
  border-color: var(--primary);
}
.tf-bundle-check input:checked + label i {
  transform: scale(1);
}
.tf-bundle-check label {
  width: 19px;
  height: 19px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.tf-bundle-check label i {
  display: block;
  color: var(--white);
  transform: scale(0);
  transition: 0.25s ease-in-out;
  font-size: 8px;
}

.item-has-checkox {
  opacity: 0.2;
}
.item-has-checkox.check {
  opacity: 1;
}

.tf-product-fbt-wrap {
  margin-top: 50px;
}
.tf-product-fbt-wrap > .title {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: var(--main);
  margin-bottom: 40px;
}
.tf-product-fbt-wrap form {
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
}
.tf-product-fbt-wrap form .tf-product-fbt-list {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: max-content;
}
.tf-product-fbt-wrap form .tf-product-fbt-list img {
  width: 122px;
  max-width: 122px;
  height: 170.5px;
  object-fit: cover;
}
.tf-product-fbt-wrap form .tf-product-fbt-list .tf-product-fbt-plus {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.tf-product-fbt-wrap form .tf-fbt-swatches {
  margin-top: 22px;
  margin-bottom: 22px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos:not(:last-child) {
  margin-bottom: 12px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos .tf-bundle-check {
  margin-right: 5px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos .tf-product-bundle-variant,
.tf-product-fbt-wrap form .tf-product-bundle-infos .tf-product-bundle-title {
  margin-bottom: 0;
  margin-right: 20px;
}
.tf-product-fbt-wrap form .tf-fbt-col-total-price {
  padding: 40px 20px;
  background-color: rgb(242, 242, 242);
  height: max-content;
}
.tf-product-fbt-wrap form .tf-fbt-col-total-price .text {
  width: 100%;
}
.tf-product-fbt-wrap form .tf-fbt-col-total-price .tf-btn {
  height: 49px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}

.tf-product-inventory svg {
  color: rgb(66, 132, 69);
}

.tf-progress-bar {
  height: 4px;
  width: 100%;
  background-color: var(--line);
  position: relative;
}
.tf-progress-bar span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #eb001b;
  border-radius: 3px;
}
.tf-progress-bar .progress-car {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 26px;
  color: #eb001b;
  border: 1px solid #eb001b;
  border-radius: 2.5px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tf-product-notify-stock {
  padding: 36px;
  border: 1px solid var(--main);
}
.tf-product-notify-stock .tf-product-notify-stock-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--main);
}
.tf-product-notify-stock .tf-product-notify-stock-heading div {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--main);
}
.tf-product-notify-stock p {
  margin-bottom: 20px;
}
.tf-product-notify-stock input,
.tf-product-notify-stock select {
  width: 100%;
  margin-bottom: 20px;
  height: 50px;
}

.tf-qol-head {
  display: flex;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.tf-qol-head > div {
  width: 25%;
}
.tf-qol-head p {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.tf-quick-order-list-total {
  position: sticky;
  position: -webkit-sticky;
  bottom: 0;
}
.tf-quick-order-list-total .tf-total-wrap {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  background-color: var(--white);
}
.tf-quick-order-list-total .tf-total-wrap > div {
  width: 25%;
}
.tf-quick-order-list-total .tf-total-item-inner {
  width: 109px;
  text-align: center;
}
.tf-quick-order-list-total .tf-total-price {
  text-align: end;
}
.tf-quick-order-list-total .tf-total-price .price {
  font-size: 18px;
  line-height: 29px;
}
.tf-quick-order-list-total .tf-total-price p {
  color: var(--text);
}
.tf-quick-order-list-total .tf-total-price a {
  color: var(--text);
  text-decoration-line: underline;
  text-underline-offset: 3px;
}
.tf-quick-order-list-total .tf-total-price a:hover {
  color: var(--main);
  text-decoration-thickness: 2px;
}

.tf-variant-item:not(:last-child) {
  border-bottom: 1px dashed var(--line);
}
.tf-variant-item > * {
  width: 25%;
  padding: 17px 0;
}
.tf-variant-item input {
  pointer-events: none;
}
.tf-variant-item .tf-variant-item-media {
  display: flex;
  gap: 18px;
  align-items: center;
}
.tf-variant-item .tf-variant-item-media .tf-variant-item-image-container {
  width: 80px;
  height: 111.7px;
}
.tf-variant-item .tf-variant-item-media .tf-variant-item-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-variant-item .tf-price-list {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
}
.tf-variant-item .tf-price-list .price-on-sale {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: line-through;
}
.tf-variant-item .tf-price-list .compare-at-price {
  font-weight: 600;
  color: var(--primary);
  line-height: 13px;
}

.wrap-btn-viewer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.wrap-btn-viewer i {
  font-size: 20px;
}
.wrap-btn-viewer.style-video .icon {
  width: 20px;
  height: 20px;
  padding-left: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 2px solid var(--main);
  border-radius: 50%;
}
.wrap-btn-viewer.style-video .icon i {
  font-size: 8px;
}
.files-section .fa-file-pdf{
  color: var(--primary);
  font-size: 20px;
}
.tf-product-btn-wishlist {
  width: 49%;
  height: auto;
  flex-shrink: 0;
  font-size: 16px !important;
  font-weight: 600;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.tf-product-btn-wishlist .icon,
.tf-product-btn-wishlist i {
  font-size: 18px;
  color: var(--main);
}
.tf-product-btn-wishlist:hover {
  border-color: var(--main);
}
.tf-product-btn-wishlist .tooltip {
  top: -100%;
  margin-top: 5px;
}
.tf-product-btn-wishlist .tooltip::before {
  top: unset;
  bottom: -4px;
}

.btn-icon-action > *:last-child {
  display: none;
}
.btn-icon-action.active > *:first-child {
  display: none;
}
.btn-icon-action.active > *:last-child {
  display: block;
}

.wg-quantity {
  width: 127px;
  display: flex;
  justify-content: space-between;
  background-color: rgb(242, 242, 242);
  border-radius: 3px;
  overflow: hidden;
}
.wg-quantity input {
  width: 51px;
  height: 46px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--main);
}
.wg-quantity .btn-quantity {
  width: 38px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--main);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wg-quantity .btn-quantity:hover {
  color: var(--primary);
}
.wg-quantity.small {
  width: 109px;
  height: 30px;
}
.wg-quantity.small .btn-quantity {
  width: 27px;
  height: 30px;
  font-size: 20px;
}
.wg-quantity.small input {
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
}

@keyframes tf-ani-flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.tf-product-des-demo {
  display: grid;
  gap: 30px;
  grid-template-columns: 4fr 8fr;
}
.tf-product-des-demo h3 {
  margin-bottom: 22px;
  line-height: 19px;
}
.tf-product-des-demo ul {
  margin-top: 15px;
  margin-bottom: 30px;
}
.tf-product-des-demo ul li {
  color: var(--text-2);
  line-height: 25px;
  position: relative;
  padding-left: 20px;
}
.tf-product-des-demo ul li:not(:last-child) {
  margin-bottom: 15px;
}
.tf-product-des-demo ul li::before {
  position: absolute;
  content: "";
  left: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--text-2);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.tf-product-des-demo .left .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--main);
}
.tf-product-des-demo .left .icon i {
  font-size: 12px;
}
.tf-product-des-demo .left span {
  color: var(--text-2);
}

.tf-pr-attrs {
  border-spacing: 0;
  border-collapse: collapse;
  width: 80%;
  border-radius: 5px;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem var(--line);
  color: var(--text-2);
}
.tf-pr-attrs tr {
  border: 1px solid var(--line);
  vertical-align: middle;
}
.tf-pr-attrs tr th {
  padding: 10px;
  border-right: 1px solid var(--line);
  font-weight: 700;
}
.tf-pr-attrs tr td {
  padding: 10px;
}

.tf-page-privacy-policy .title {
  margin-bottom: 26px;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
}
.tf-page-privacy-policy p {
  margin-bottom: 24px;
  line-height: 24px;
  color: var(--text-2);
}
.tf-page-privacy-policy p:last-child {
  margin-bottom: 0;
}

.stagger-wrap .stagger-item {
  transition: 0.3s ease-in-out;
  transform: scale(0.5) rotate(90deg) skew(15deg);
  opacity: 0;
}
.stagger-wrap .stagger-item.stagger-finished {
  transform: scale(1) rotate(0deg) skew(0deg);
  opacity: 1;
}

.card-product {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: start;
}
.card-product .product-img {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  align-items: stretch;
}
.card-product .marquee-product {
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  width: 100%;
  transform: none;
  padding: 7px 0px;
}
.card-product .marquee-product .marquee-child-item svg {
  width: 15px;
  fill: currentColor;
}
.card-product .marquee-product .marquee-child-item .on-sale-badge {
  border-radius: 15px;
  line-height: 21px;
  font-size: 12px;
  padding: 0 10px;
  background-color: #fc5732;
  color: var(--white);
}
.card-product .marquee-product .marquee-wrapper {
  flex: 0 0 auto;
  min-width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: infiniteScroll 18s linear 0s infinite;
  animation-play-state: running;
  animation-delay: 0s;
  animation-direction: normal;
}
.card-product.has-marquee:hover .marquee-product {
  opacity: 0;
  visibility: hidden;
}
.card-product .card-product-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 20;
}
.card-product .card-product-wrapper .sold-out {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-11);
  border-radius: 999px;
  height: 73px;
  width: 73px;
  padding: 0 5px;
}
.card-product .card-product-wrapper .sold-out span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  background-color: var(--bg-11);
  position: relative;
  z-index: 12;
}
.card-product .card-product-wrapper .sold-out::after {
  height: 1px;
  width: calc(100% - 16px);
  position: absolute;
  z-index: 1;
  opacity: 0.1;
  content: "";
  background-color: var(--main);
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.card-product .card-product-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.card-product .card-product-wrapper .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.card-product .card-product-wrapper:hover .product-img .img-product {
  opacity: 0;
}
.card-product .card-product-wrapper:hover .product-img .img-hover {
  display: block;
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}
.card-product .card-product-wrapper .size-list {
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 0;
  right: 0;
}
.card-product .card-product-wrapper .list-product-btn {
  z-index: 10;
  position: absolute;
  bottom: 48px;
  left: 15px;
  right: 15px;
}
.card-product .card-product-wrapper .list-product-btn.absolute-2 {
  bottom: 25px;
}
.card-product .card-product-wrapper .list-product-btn.absolute-3 {
  bottom: 57px;
}
.card-product .card-product-wrapper .on-sale-wrap {
  position: absolute;
  top: 5px;
  right: 5px;
  left: 5px;
  z-index: 5;
}
.card-product .card-product-wrapper .on-sale-wrap .on-sale-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
  padding: 0 6px;
  min-width: 40px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  position: relative;
  background-color: #fc5732;
  color: var(--white);
  border-radius: 999px;
}
.card-product .card-product-wrapper .on-sale-wrap .new {
  background-color: #ff3232;
}
.card-product .card-product-wrapper .on-sale-wrap .best-seller {
  background-color: #44ad55;
}
.card-product .card-product-wrapper .on-sale-wrap .recommend {
  background-color: #bea36e;
}
.card-product .card-product-wrapper .on-sale-wrap .pre-order {
  background-color: #55a653;
  color: var(--white);
}
.card-product .card-product-wrapper .column-left {
  bottom: unset !important;
  right: unset !important;
  top: 15px;
}
.card-product .card-product-wrapper .column-right {
  bottom: unset !important;
  left: unset !important;
  top: 15px;
}
.card-product .btn-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  z-index: 12;
  height: 32px;
  background-color: var(--main);
  color: var(--white);
  font-size: 12px;
  line-height: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-product .card-product-info {
  padding-top: 10px;
  gap: 8px;
  display: grid;
}
.card-product .card-product-info .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 19.2px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.card-product .card-product-info .price {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.card-product .card-product-info .old-price {
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.card-product .card-product-info .new-price {
  color: var(--red_1);
}
.card-product .card-product-info.has-padding {
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 30px;
}
.card-product .countdown-box {
  position: absolute;
  z-index: 3;
  left: 5px;
  right: 5px;
  text-align: center;
  pointer-events: none;
  transition: 0.4s ease-out 0s;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
  max-height: 40px;
  background-color: var(--white);
  border-radius: 3px;
}
.card-product .countdown-box .countdown__timer {
  display: flex;
  gap: 4px;
}
.card-product .countdown-box .countdown__item {
  font-size: 14px;
  line-height: 22.4px;
  color: var(--primary);
  font-weight: 600;
}
.card-product .description {
  display: none;
  font-size: 14px;
  line-height: 22.4px;
  margin-top: 2px;
}
.card-product.none-hover .card-product-wrapper:hover .img-product {
  opacity: 1;
}
.card-product.none-hover .card-product-wrapper:hover .img-hover {
  display: none;
}
.card-product.style-4 .size-list {
  transition: 0.4s ease 0.1s;
}
.card-product.style-5 .list-product-btn .box-icon {
  border-radius: 0;
}
.card-product.style-5 .list-product-btn .box-icon:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.card-product.style-5 .list-product-btn .box-icon:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.card-product.style-6 .btn-quick-add {
  position: relative;
  border-radius: 3px;
  background-color: var(--white);
  color: var(--main);
  border: 1px solid var(--main);
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
}
.card-product.style-6 .btn-quick-add:hover {
  background-color: var(--main);
  color: var(--white);
}
.card-product.style-7 .btn-quick-add {
  position: relative;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  border-radius: 3px;
}
.card-product.style-7 .card-product-info {
  padding-top: 5px;
  transition: 0.4s ease 0s;
  position: relative;
  padding-bottom: 6px;
}
.card-product.style-8 {
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 5px 5px 20px;
}
.card-product.style-8 .card-product-info {
  padding-left: 5px;
  padding-right: 5px;
}
.card-product.style-8 .card-product-info .tf-btn {
  justify-content: center;
  border: 1px solid var(--line-2);
  font-size: 12px;
  line-height: 42px;
  font-weight: 700;
  background-color: var(--white);
  padding: 0 10px;
  border-radius: 999px;
}
.card-product.style-8 .card-product-info .tf-btn:hover {
  background-color: var(--main);
  color: var(--white);
}
.card-product.style-8 .progress {
  --bs-progress-height: 6px;
  --bs-progress-bar-bg: var(--primary);
  --bs-progress-bg: var(--line-2);
  --bs-progress-border-radius: 3px;
}
.card-product.style-8 .pr-stock {
  margin-top: 10px;
  display: grid;
  gap: 5px;
}
.card-product.style-8 .pr-stock-status span {
  font-size: 14px;
  line-height: 22.4px;
}
.card-product.style-8 .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.style-9 {
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 5px 5px 20px;
}
.card-product.style-9 .card-product-info {
  padding-left: 5px;
  padding-right: 5px;
}
.card-product.style-9 .box-icon {
  border-radius: 50%;
}
.card-product.style-9 .card-product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.card-product.style-9 .card-product-info .inner-info {
  display: grid;
  gap: 12px;
}
.card-product.style-9 .card-product-info .box-icon {
  position: relative;
  z-index: 50;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: var(--primary);
  width: 32px;
  height: 32px;
  color: var(--white);
}
.card-product.style-9 .card-product-info .box-icon .tooltip {
  margin: 0;
  top: -70%;
}
.card-product.style-9 .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.style-10 {
  padding: 10px;
  padding-bottom: 0px;
  background-color: var(--white);
  border: 1px solid var(--line);
}
.card-product.style-10 .card-product-info {
  padding: 10px;
}
.card-product.style-10 .card-product-info .btn-add-cart {
  height: 32px;
  border-radius: 3px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-weight: 700;
  font-size: 12px;
  line-height: 32px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.card-product.style-10 .card-product-info .btn-add-cart:hover {
  color: var(--primary);
}
.card-product.style-10 .card-product-wrapper {
  border-radius: 0;
  aspect-ratio: 1;
}
.card-product .wrapper-border-box {
  padding: 10px;
  border: 1px solid var(--line);
}
.card-product .wrapper-border-box .card-product-wrapper {
  border-radius: 0;
  aspect-ratio: 1;
}
.card-product.lg .card-product-info {
  margin: auto;
  max-width: 277px;
}
.card-product.lg .pr-stock {
  margin-top: 0px;
  margin-bottom: 20px;
  gap: 8px;
}
.card-product.list-layout {
  display: flex;
  gap: 15px;
}
.card-product.list-layout .card-product-wrapper {
  max-width: 338px;
  width: 20%;
}
.card-product.list-layout .card-product-info {
  flex: 1 1 auto;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: self-start;
  max-width: 70%;
}
.card-product.list-layout .list-product-btn {
  margin-top: 10px;
}
.card-product.list-layout .list-color-product {
  margin-top: 10px;
}
.card-product.list-layout .size-list {
  background-color: transparent;
  height: auto;
}
.card-product.list-layout .size-list span {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: var(--main);
  gap: 10px;
}
.card-product.list-layout:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line-2);
}
.card-product.style-price {
  background-color: var(--bg-2);
}
.card-product.style-price .card-product-info {
  padding: 26px 37px 0;
  gap: 10px;
}
.card-product.style-price .card-product-info .vendor {
  color: #545454;
  line-height: 17px;
}
.card-product.style-price .card-product-info .title {
  font-size: 20px;
}
.card-product.style-price .card-product-info .price {
  font-size: 20px;
  line-height: 20px;
  margin-top: 6px;
}
.card-product.style-price .card-product-info ul {
  margin-top: 6px;
}
.card-product.style-price .tf-price-table-contents {
  padding: 20px 37px 48px 37px;
}
.card-product.style-price .tf-price-table-contents ul {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.card-product.style-price .tf-price-table-contents ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 26px;
  color: #545454;
}
.card-product.style-price .tf-price-table-contents ul li .icon {
  font-size: 12px;
  color: #303030;
}
.card-product.style-price .tf-price-table-contents .tf-price-table-btn {
  margin-top: 38px;
}
.card-product.style-price.bg_black {
  background-color: #141414;
}
.card-product.style-price.bg_black .tf-price-table-contents ul li,
.card-product.style-price.bg_black .tf-price-table-contents .icon,
.card-product.style-price.bg_black .vendor,
.card-product.style-price.bg_black .title,
.card-product.style-price.bg_black .price {
  color: var(--white);
}
.card-product.style-price.bg_black .tf-price-table-contents ul {
  border-top-color: #333333;
}
.card-product.style-price.bg_black .list-color-product .list-color-item.active,
.card-product.style-price.bg_black .list-color-product .list-color-item:hover {
  border-color: var(--white);
}
.card-product.style-price.bg_red-4 .tf-price-table-contents ul li,
.card-product.style-price.bg_red-4 .tf-price-table-contents .icon,
.card-product.style-price.bg_red-4 .vendor,
.card-product.style-price.bg_red-4 .title,
.card-product.style-price.bg_red-4 .price {
  color: var(--white);
}
.card-product.style-price.bg_red-4 .tf-price-table-btn a {
  background-color: var(--white);
  color: var(--main);
}
.card-product.style-price.bg_red-4 .tf-price-table-contents ul {
  border-top-color: #eee;
}
.card-product.style-price.bg_blue-6 .tf-price-table-contents ul li,
.card-product.style-price.bg_blue-6 .tf-price-table-contents .icon,
.card-product.style-price.bg_blue-6 .vendor,
.card-product.style-price.bg_blue-6 .title,
.card-product.style-price.bg_blue-6 .price {
  color: var(--white);
}
.card-product.style-price.bg_blue-6 .tf-price-table-btn a {
  background-color: var(--white);
  color: #1c355e;
}
.card-product.style-price.bg_blue-6 .tf-price-table-contents ul {
  border-top-color: #fff;
}
.card-product.style-price.bg_blue-6 .list-color-product .list-color-item.active,
.card-product.style-price.bg_blue-6 .list-color-product .list-color-item:hover {
  border-color: var(--white);
}
.card-product.style-price.bg_blue-6 .list-color-product .list-color-item.active .swatch-value,
.card-product.style-price.bg_blue-6 .list-color-product .list-color-item:hover .swatch-value {
  border-color: #1c355e;
}
.card-product.style-price.bg_blue-6 .list-product-btn .box-icon {
  color: #1c355e;
}
.card-product.style-price.bg_blue-6 .list-product-btn .box-icon:hover {
  background-color: #1c355e !important;
  color: var(--white);
}
.card-product.style-price .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.style-skincare {
  background-color: var(--white);
  border-radius: 10px;
}
.card-product.style-skincare .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.style-skincare .card-product-info {
  padding: 20px 0;
}
.card-product.style-skincare .tf-size-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.card-product.style-skincare .tf-size-list .tf-size-list-item {
  font-size: 12px;
  line-height: 30px;
  border: 1px solid var(--line);
  padding: 0px 10px;
}
.card-product.style-skincare .tf-size-list .tf-size-list-item:hover {
  border-color: var(--main);
}
.card-product.style-skincare .tf-product-btns {
  margin-top: 15px;
}
.card-product.style-giftcard {
  padding: 10px;
  border: 1px solid var(--line);
}
.card-product.style-giftcard .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.style-giftcard .card-product-info {
  padding: 16px 13.5px 23.5px;
}
.card-product.style-giftcard .card-product-info .price span {
  font-size: 10px;
  line-height: 10px;
}
.card-product.style-giftcard .tf-product-btns a {
  border: 2px solid var(--primary);
  line-height: 40px;
}
.card-product.style-line-hover .card-product-wrapper {
  border-radius: 0;
  border: 1px solid var(--main);
  aspect-ratio: unset;
}
.card-product.style-line-hover .card-product-wrapper:hover .img-hover {
  -webkit-transform: unset;
  transform: unset;
}
.card-product.style-line-hover .card-product-wrapper img {
  transition: all 0.3s ease;
}
.card-product.type-line-padding {
  border: 1px solid var(--line);
  border-left: 0;
  margin-top: -1px;
  padding: 20px 10px;
}
.card-product.type-line-padding .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.type-line-padding-2 {
  border: 1px solid var(--line);
  padding: 10px;
}
.card-product.type-line-padding-2 .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.type-line-padding-2 .card-product-info {
  padding-bottom: 10px;
}
.card-product.style-brown .card-product-wrapper {
  aspect-ratio: unset;
}
.card-product.style-brown .list-product-btn .box-icon {
  color: #85715e;
}
.card-product.style-brown .list-product-btn .box-icon:hover {
  background-color: #85715e !important;
  color: var(--white);
}
.card-product.style-brown .list-color-item.active, .card-product.style-brown .list-color-item:hover {
  border-color: var(--white);
}
.card-product.style-brown .list-color-item.active .swatch-value, .card-product.style-brown .list-color-item:hover .swatch-value {
  border-color: #85715e;
}
.card-product .tf-countdown-v2 .countdown__item .countdown__label {
  text-transform: uppercase;
  color: var(--main);
}
.card-product.type-1 {
  background-color: #f3f5f5;
  padding: 5px 5px 20px;
  border-radius: 10px;
}
.card-product.type-1 .card-product-wrapper {
  aspect-ratio: 1/1;
}
.card-product.type-1 .card-product-wrapper img {
  background-color: transparent;
}
.card-product.type-1 .card-product-wrapper:hover img {
  background-color: var(--white);
}

.list-color-product {
  display: flex;
  gap: 8.5px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.list-color-product .list-color-item {
  width: 26px;
  height: 26px;
  padding: 3px;
  border: solid 1px rgb(238, 238, 238);
  background-color: transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.list-color-product .list-color-item .swatch-value {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.list-color-product .list-color-item .sold-out::after {
  content: "";
  width: 90%;
  height: 1px;
  background: rgb(34, 34, 34);
  display: block;
  position: absolute;
  z-index: 22;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.list-color-product .list-color-item img {
  visibility: hidden;
  width: 18px;
  height: 18px;
  position: absolute;
}
.list-color-product .list-color-item.active, .list-color-product .list-color-item:hover {
  border-color: var(--main);
}
.list-color-product .list-color-item.active .swatch-value, .list-color-product .list-color-item:hover .swatch-value {
  border-color: var(--white);
}
.list-color-product .list-color-item:hover .tooltip {
  opacity: 0.9;
  visibility: visible;
}
.list-color-product .list-color-item .tooltip {
  text-transform: capitalize;
  margin-top: 5px;
  padding: 7px 10px;
}
/*Price value */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  position: absolute;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: 0;
  left: auto;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal {
  height: 3px;
}

.noUi-target {
  border: 0;
}

.noUi-base .noUi-connects {
  border-radius: 999px;
  background-color: var(--line);
}

.noUi-connect {
  background-color: var(--primary);
}

.noUi-horizontal .noUi-handle,
.noUi-vertical .noUi-handle {
  height: 14px;
  width: 14px;
  border-radius: 50px;
  border-color: var(--primary);
  background-color: var(--primary);
  box-shadow: unset;
  cursor: pointer;
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after,
.noUi-vertical .noUi-handle::before,
.noUi-vertical .noUi-handle::after {
  content: none;
}

/* Mega menu css start ---------------------------------------------- */
/* =========================================================
   Mega menu styles — every selector is scoped under classes
   prefixed "smega-" so nothing here touches AdminLTE's own
   .navbar / .dropdown-menu / .nav-item / etc.
   Wrap your <ul class="smega-nav"> anywhere in your existing
   topbar/navbar; these rules are self-contained.
   ========================================================= */
.bdr{
  border: 1px solid red !important;
}
.smega-nav{
  --smega-brand: #0D374F;
  --smega-text: #283e4a;
  --smega-border: #efefef;

  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  /* font-family: 'Segoe UI', Roboto, Arial, sans-serif; */
  position: relative;
  background-color: var(--smenu-hover-bg);
}

.smega-nav .smega-item{
  position: relative;
  display: flex;
  padding: 10px 10px;
  width: auto;
}

.smega-nav .smega-link{
  display: flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
}
.smega-nav .smega-item.smega-show > .smega-link,
.smega-nav .smega-link:hover{
  color: #fff;
  background-color: var(--primary);
}

.smega-nav .smega-caret{
  margin-left: 5px;
  font-size: 20px;
  display: inline-block;
  transition: transform .2s ease;
}
.smega-nav .smega-item.smega-show .smega-caret{ transform: rotate(180deg); }

/* ---- Mega panel ---- */
.smega-nav .smega-panel{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--smega-border);
  box-shadow: 0 10px 20px rgba(0,0,0,.09);
  padding: 22px 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
  z-index: 1051;
}
.smega-nav .smega-item.smega-show .smega-panel{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Grid: auto-adjusting columns, top-to-bottom flow ---- */
.smega-nav .smega-grid{
  columns: 7 190px;       /* aim for 7 columns, min 190px wide — auto-reduces on narrower panels */
  column-gap: 28px;
}

.smega-nav .smega-col{
  break-inside: avoid;    /* keeps a single item (incl. wrapped 2-line titles) from splitting across columns */
  margin-bottom: 4px;
}

.smega-nav .smega-col-title{
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 5px;
  padding: 0px;
}

.smega-nav .smega-col-title a{
  color: var(--primary);
}
.smega-nav .smega-col-title a:hover{
  color: var(--link-hover);
}

.smega-nav .smega-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.smega-nav .smega-list li a{
  display: block;
  padding: 0px;
  font-size: 14px;
  font-weight: 300;
  color: var(--smega-text);
  text-decoration: none;
  border-radius: 4px;
}
.smega-nav .smega-list li a:hover{
  color: var(--link-hover);
}

/* ---- Simple (non-mega) dropdown ---- */
.smega-nav .smega-simple-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--smega-border);
  box-shadow: 0 10px 20px rgba(0,0,0,.09);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
  z-index: 1051;
}
.smega-nav .smega-item.smega-show .smega-simple-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.smega-nav .smega-simple-menu li a{
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--smega-text);
  text-decoration: none;
  white-space: nowrap;
}
.smega-nav .smega-simple-menu li a:hover{
  color: var(--smega-brand);
  background: #f4fafd;
}
.smega-nav .smega-menu-right{ left: auto; right: 0; }

/* ---- Mobile ---- */
@media (max-width: 991.98px){
  .smega-nav{ flex-direction: column; width: 100%; }
  .smega-nav .smega-item{ flex-direction: column; }
  .smega-nav .smega-panel,
  .smega-nav .smega-simple-menu{
    position: static;
    box-shadow: none;
    transform: none;
    display: none;
  }
  .smega-nav .smega-item.smega-show .smega-panel,
  .smega-nav .smega-item.smega-show .smega-simple-menu{
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .smega-nav .smega-grid{ columns: 1; }
}

/* ---- Tablet: fewer columns before hitting the mobile breakpoint ---- */
@media (max-width: 1400px) and (min-width: 992px){
  .smega-nav .smega-grid{ columns: 5 170px; }
}
/* Mega menu css end ---------------------------------------------- */

/* Dipak CSS Start */
.text-primary{
  color: var(--primary) !important;
}
/* Dipak CSS End */


	/* Go to Up  */
	#goTop.show {
    opacity: 1;
    visibility: visible;
}
#goTop {
    position: fixed;
    padding: 0;
    bottom: 90px;
    right: 40px;
    width: 38px;
    height: 38px;
    background: var(--white);
    color: black;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#goTop .border-progress {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 3px;
    border: 1px solid #000000;
    mask-image: conic-gradient(#000000 var(--progress-angle, 0deg), transparent 0);
    -webkit-mask-image: conic-gradient(#000000 var(--progress-angle, 0deg), transparent 0);
    content: "";
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#goTop .icon {
    font-size: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.icon-arrow-up:before {
    content: "\e907";
}

.sectionDiv header.level1_div_{
    background-color: var(--primary);
    padding: 10px 5px 10px 10px;
    color: #fff;
}
.sectionDiv header.level1_div_ h5,
.sectionDiv header.level1_div_ h6,
.sectionDiv header.level1_div_ span
{
    color: #fff;
}
.editQtyModalDiv .row_qty, 
.editQtyModalDiv .col-sm-1,
.editQtyModalDiv .col-sm-2,
.editQtyModalDiv .col-sm-3{
    margin: 0px;
}

.app-main .app-content-header {
  padding: 1rem 0.5rem; 
}


/* modal scroll */
/* .search_table {
    width: 100%;
}

.search_table thead,
.search_table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.search_table tbody {
   display: block;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
} 

.search_table thead {
    width: calc(100% - 6px);
} */
.search_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.search_table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}
.search_table_wrapper {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
}

.app-header{
  position: sticky;
  top: 0;
}
#contact_phone{
  padding-left: 74px !important;
}