@import url(paymentfont.min.css);
@import url(https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap);
@import url(https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css);


/*---Admin Dashboard CSS---*/
:root {
  --bs-primary: #e6497f;
  --bs-primary-light: rgba(230,73,127,0.1);
  --bs-primary-rgb: 230,73,127;
  --bs-secondary: #1ea9a8;
  --bs-secondary-rgb:30, 169, 168;
  --bs-third: #7157a3;
  --bs-third-rgb: 113, 87, 163;
  --bs-fourth: #c58a44;
  --bs-fourth-rgb: 197, 138, 68;
  --bs-default: #757575;
  --bs-info: #0dcaf0;
  --bs-info-rgb:13, 202, 240;
  --bs-warning: #ffc107;
  --bs-success: #2aa174;
  --bs-success-rgb:42, 161, 116;
  --bs-danger: #ff6b72;
  --bs-danger-rgb:255, 107, 114;
  --bs-light: #ffffff;
  --bs-light-rgb: 255, 255, 255;
  --bs-black: #000000;
  --bs-black-rgb: 0, 0, 0;
  --bs-dark: #455560;
  --bs-dark-rgb: 69, 85, 96;
  --bs-dark-light: rgba(0, 0, 0, 0.03);
  --bs-gray:#575962;
  --bs-login-bg: #efefee;
}
html * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-position: center;
  background-color: var(--bs-light);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--bs-dark-rgb), 1);
}
dl,
ol,
ul {
  margin-top: 0;
}
a {
  text-decoration: none !important;
  color: rgba(var(--bs-dark-rgb), 1);
}
p{
  color: rgba(var(--bs-dark-rgb), 0.85);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
hr{
  color: rgba(var(--bs-dark-rgb), 0.5);
}
.padd-40{
  padding: 40px 0;
}
.heading{
  font-size: 26px;
  font-weight: 700;
  color: var(--bs-black);
  margin-bottom: 15px;
}
.title{
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-dark);
  margin-bottom: 0;
}
.navi-link{
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-weight: 500;
}

.custom-tooltip {
	--bs-tooltip-bg:rgba(var(--bs-black-rgb),0.85);
	--bs-tooltip-color: var(--bs-white);
  margin-bottom: 10px;
}
.tooltip.show{
  margin-bottom: 5px !important;
}


/* 404 Page */
.error-title{
  font-size: 100px;
}

/* Image */
figure,
img,
svg {
  max-width: 100%;
}

/* Droup down */
.dropdown-toggle::after,
.dropup .dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  border:none;
  box-shadow: 0 5px 10px rgba(var(--bs-dark-rgb), 0.15);
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
  color: var(--bs-dark);
}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  color: var(--bs-primary);
}
.dropdown-menu .dropdown-item:hover .toolbar-dropdown.cart-dropdown,
.left-category-area .category-list .c-item:hover .sub-c-box,
.left-category-area .category-list .sub-c-box .child-c-box:hover .child-category,
.mobile-cat .has-children .category_search,
.no-js .owl-carousel,
.slideable-menu .menu li,
.slideable-menu ul li.t-h-dropdown:hover .t-h-dropdown-menu {
  display: block;
}
.dropdown-menu .dropdown-item.active::before,
.dropdown:hover .dropdown-menu,
.t-h-dropdown:hover .t-h-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.t-h-dropdown .main-link {
  cursor: pointer;
  transition: 0.3s linear;
}
.t-h-dropdown {
  position: relative;
}
.t-h-dropdown .t-h-dropdown-menu {
  position: absolute;
  left: 0;
  background: var(--bs-light);
  display: block;
  width: 140px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: 999;
  padding: 10px 10px;
  visibility: hidden;
  opacity: 0;
  min-width: 220px;
  border: none !important;
  border-radius: 5px;
}

/* Form Input */
.input-group > .form-control {
  width: 100% !important;
  max-width: 100% !important;
}
.form-control {
  border: 1px solid rgba(var(--bs-dark-rgb), 0.15);
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 15px;
}
.form-control:not(textarea),
select.form-control:not([size]):not([multiple]) {
  height: 40px;
}
.form-control::-moz-placeholder {
  color: rgba(var(--bs-dark-rgb), 0.5);
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: rgba(var(--bs-dark-rgb), 0.5);
}
.form-control::-webkit-input-placeholder {
  color: rgba(var(--bs-dark-rgb), 0.5);
}
.form-control:focus {
  box-shadow: none !important;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: var(--bs-dark);
  cursor: not-allowed;
}
.form-group{
  margin-bottom: 15px;
}
.form-group label{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
select.form-control {
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-size: 10px 10px;
  background-repeat: no-repeat;
  font-weight: 600;
}
.section-title h2 {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  position: relative;
  color: var(--bs-black);
}
.section-title h2::before {
  position: absolute;
  content: "";
  border-radius: 50px;
  height: 4px;
  width: 50px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bs-primary);
}
/* Checkbox */
.form-check-input{
	width: 15px;
	height: 15px;
	border-color: rgba(var(--bs-dark-rgb), 0.25);
}
.form-check-input:checked{
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}
.form-check-input:focus{
	border-color: rgba(var(--bs-dark-rgb), 0.25);
}
.form-check-input:focus{
  box-shadow: none;
}
.form-check-label{
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.input-group .input-group-addon,
.input-group .input-group-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 9;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: max-content;
}
.input-group .input-group-addon {
  left: 15px;
  transition: color 0.3s;
  background-color: transparent !important;
  color: #999;
  z-index: 9;
}

.input-group .input-group-btn button {
  transition: color 0.3s;
  border: 0;
  background: 0;
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 16px;
}

/* Button */
.btn{
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
  transition: all 0.5s ease-in-out;
  background-color: var(--bs-primary);
  color: var(--bs-light);
}
.btn:hover,.btn:active{
  background-color: var(--bs-black) !important;
  color: var(--bs-light) !important;
}
.btn-close{
  color: var(--bs-black);
  background:none;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-close i{
  font-size: 24px;
}
.btn-sm {
  height: auto;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
}
.btn:disabled{
  background-color: rgba(var(--bs-primary-rgb), 0.8);
}
.btn-secondary {
  background-color: var(--bs-secondary) ;
}
.btn.btn-secondary:hover{
  background-color: rgba(var(--bs-secondary-rgb), 1);
  color: var(--bs-light);
}
.btn-dark {
  background-color: rgba(var(--bs-black-rgb), 0.2);
  color: var(--bs-black);
}
.btn-danger {
  background-color: rgba(var(--bs-danger-rgb), 0.2);
  color: var(--bs-danger);
}
.btn.btn-danger:hover{
  background-color: rgba(var(--bs-danger-rgb), 1);
  color: var(--bs-light);
}
.btn-info {
  background-color: rgba(var(--bs-info-rgb), 0.2);
  color: var(--bs-info);
}
.btn.btn-info:hover{
  background-color: rgba(var(--bs-info-rgb), 1);
  color: var(--bs-light);
}

/* Background Color */
.bg-success {
  background-color: rgba(var(--bs-success-rgb), 1) !important;
}
.bg-secondary {
  background-color: rgba(var(--bs-secondary-rgb), 1) !important;
}
.bg-third {
  background-color: rgba(var(--bs-third-rgb), 1) !important;
}
.bg-fourth {
  background-color: rgba(var(--bs-fourth-rgb), 1) !important;
}
.bg-info {
  background-color: rgba(var(--bs-info-rgb), 1);
}
.bg-dark {
  background-color: rgba(var(--bs-dark-rgb), 1) !important;
}
.bg-danger {
  background-color: rgba(var(--bs-danger-rgb), 1) !important;
}

/* Text Color */
.text-primary {
  color: var(--bs-primary);
}
.text-warning {
  color: var(--bs-warning);
}
.text-success {
  color: var(--bs-success);
}
.text-danger {
  color: var(--bs-danger) !important;
}
.text-dark {
  color: var(--bs-dark);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.pagination li a,
.pagination li span {
  width: 40px;
  height: 40px;
  background: rgba(var(--bs-dark-rgb), 0.05);
  color: #232323;
  cursor: pointer;
  border-radius: 5px;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
.page-item:first-child .page-link,.page-item:last-child .page-link{
  font-size: 30px;
}
.active>.page-link, .page-link.active{
  border-color: var(--bs-primary);
}

/* Table */
.table thead tr th{
  background-color: rgba(var(--bs-dark-rgb),0.04);
  vertical-align: middle;
}
.table tbody tr td{
  font-size: 15px;
  color: rgba(var(--bs-dark-rgb), 0.85);
  vertical-align: middle;
}

/* Badge */
.badge {
    margin-left: auto;
    line-height: 1;
    padding: 6px 10px;
    vertical-align: middle;
    font-weight: 500;
    font-size: 12px;
    border-radius: 5px;
}
.badge-success {
    background-color: rgba(var(--bs-success-rgb), 0.1);
    color: var(--bs-success);
}
.badge-danger {
    background-color: rgba(var(--bs-danger-rgb), 0.1);
    color: var(--bs-danger);
}
.badge-warning {
    background-color: rgba(var(--bs-warning-rgb), 0.1);
    color: var(--bs-warning);
}
.badge-third {
    background-color: rgba(var(--bs-third-rgb), 0.1);
    color: var(--bs-third);
}

/* widget */
.widget-categories ul > li.has-children.expanded > ul,
.widget-links ul > li.has-children.expanded > ul {
  max-height: 800px;
}
.widget-categories ul > li.has-children > ul,
.widget-links ul > li.has-children > ul {
  max-height: 0;
  transition: max-height 0.6s;
  overflow: hidden;
}
.widget-categories ul > li.has-children ul,
.widget-links ul > li.has-children ul {
  border-left: 1px solid rgba(var(--bs-dark-rgb), 0.2);
  padding-left: 10px;
  margin-left: 10px;
}
.has-children .subcategory,.has-children .childcategory{
  font-size: 14px;
  color: rgba(var(--bs-dark-rgb), 0.8);
}
.left-category-area .category-list .c-item,
.left-category-area .category-list .sub-c-box .child-c-box,
.widget-cart > .entry:last-child {
  border-bottom: 1px solid rgba(var(--bs-dark-rgb), 0.15);
  font-weight: 600;
  font-size: 15px;
}
.widget-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-dark);
}
.widget-links ul > li{
  padding: 3px 0;
}
.widget{
  background-color: rgba(var(--bs-dark-rgb), 0.03);
  border: 1px solid rgba(var(--bs-dark-rgb), 0.08);
}
.widget-cart > .entry .entry-thumb,
.widget-featured-posts > .entry .entry-thumb,
.widget-featured-products > .entry .entry-thumb {
  width: 90px;
}
.widget .entry:last-child{
  margin-bottom: 0 !important;
}
.widget-featured-posts > .entry .entry-title > a {
  transition: color 0.3s;
  color: rgba(var(--bs-dark-rgb),1);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}
.widget-featured-posts > .entry .entry-meta{
  color: rgba(var(--bs-black-rgb), 0.8);
  font-size: 12px;
}
.widget-order-summary .table tr:last-child > td {
  border: none;
}


/* -------------------------- Header ------------------------ */
.site-header .site-menu > ul > li .sub-menu > li.has-children:hover > .sub-menu,
.site-header .site-menu > ul > li:hover > .sub-menu,
.site-header .toolbar .toolbar-item.active > .toolbar-dropdown,
.site-header .toolbar .toolbar-item:hover > .toolbar-dropdown,
.toolbar-dropdown > li.has-children:hover > .sub-menu {
  display: block;
  -webkit-animation: 0.35s submenu-show;
  animation: 0.35s submenu-show;
}
.slideable-menu {
  position: relative;
  border-top: 1px solid rgba(var(--bs-dark-rgb), 0.2);
  background-color: var(--bs-light);
  overflow: hidden;
  padding: 10px 15px;
}
.site-header .site-menu > ul > li .sub-menu,
.toolbar-dropdown {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  width: 200px;
  padding: 10px 0;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.85);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: var(--bs-light);
  line-height: 1.5;
  box-shadow: 0 7px 22px -5px rgba(var(--bs-dark-rgb), 0.8);
}
.slideable-menu ul li a, .has-children li a,.has-children a {
  padding: 5px 0;
  font-size: 16px;
  font-weight: 600;
  display: block;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
.slideable-menu .t-h-dropdown-menu a {
  font-size: 14px;
  padding: 2px 0;
  font-weight: 500;
}
.slideable-menu ul li a:hover{
  color: var(--bs-primary);
}
.slideable-menu ul li.t-h-dropdown .t-h-dropdown-menu {
  position: relative;
  display: none;
  width: 100% !important;
}
.site-header .site-menu ul > li > a, .t-h-dropdown .t-h-dropdown-menu li a{
  transition: 0.3s;
  color: rgba(var(--bs-dark-rgb), 0.85);
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}
.mobile-cat .has-children .category_search span {
  float: right;
  background: rgba(var(--bs-dark-rgb), 0.1);
  width: 25px;
  height: 25px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Menu Top */
.track-order-link {
  font-weight: 500;
}
.track-order-link i {
  font-size: 16px;
}
.menu-top-area .main-link,
.track-order-link {
  color: var(--bs-light);
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
}

/*======= Top bar ====== */
.site-header .topbar {
  border-bottom: 1px solid rgba(var(--bs-dark-rgb), 0.15);
}
.site-header .site-branding .site-logo {
  display: block;
  width: 150px;
}
.site-header .search-box-wrap {
  width: 100%;
}
.topbar .search-box-inner .search-box select {
  background: var(--bs-light);
  border: 1px solid rgba(var(--bs-dark-rgb), 0.15);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0 10px;
  width: 120px;
}
.site-header .toolbar .toolbar-item {
  position: relative;
}
.site-header .toolbar .toolbar-item > a {
  padding: 5px;
  color: #505050;
  text-align: center;
  display: inline-block;
}
.site-header .toolbar .toolbar-item > a > div i {
  font-size: 20px;
}
.site-header .toolbar .toolbar-item .text-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.quickFilter,
.site-header .toolbar .toolbar-item > a > div > .cart-icon,
.site-header .toolbar .toolbar-item > a > div > .compare-icon {
  position: relative;
}
.site-header .toolbar .toolbar-item .count-label {
  display: block;
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--bs-light);
  font-size: 12px;
}
.toolbar-dropdown.cart-dropdown {
  right: 0;
  width: 280px;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(var(--bs-dark-rgb), 0.15);
  border: 0;
  max-height: 350px;
  overflow-y: auto;
  top: auto;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.1);
  border-radius: 5px;
  z-index: 1;
}
.toolbar-dropdown{
  left: auto;
}

/* ============= Navbar ========== */
.left-category-area .category-header h4 {
  color: var(--bs-light);
  font-size: 18px;
  padding: 15px;
  margin-bottom: 0;
}
.left-category-area .category-list .navi-link {
  padding: 0px 15px;
}
.left-category-area .category-list .sub-c-box,
.left-category-area .category-list .sub-c-box .child-c-box .child-category {
  left: 100%;
  width: 250px;
  background: right bottom no-repeat #fff;
  box-shadow: 0 5px 10px rgba(30,32,37,.12);
  display: none;
  border-radius: 5px;
  top: 0;
}
.left-category-area .category-list .navi-link img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  display: inline-block;
}
.h-feature-category:hover .img img,
.left-category-area .category-list .navi-link:hover img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.left-category-area .category-list .sub-c-box,
.left-category-area .category-list .sub-c-box .child-c-box .child-category {
  position: absolute;
  min-height: 100%;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  overflow-y: auto;
  z-index: 999999;
}
.navbar{
  padding: 0;
}
.navbar-stuck .topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  border-radius: 5px;
}
.mobile-menu,
.navbar-stuck .topbar {
  box-shadow: 0 7px 30px -6px rgba(var(--bs-dark-rgb), 0.15);
}
.mobile-menu,
.page-title {
  background-color: var(--bs-light);
}
.heading-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  color: var(--bs-light);
  background-color: rgba(var(--bs-black-rgb), 0.8);
}
.heading-area h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  color:var(--bs-light);
}
.mobile-menu-toggle a{
  font-size: 18px;
  color: var(--bs-light);
}
.nav-tabs {
  border-bottom: 0 !important;
  text-align: center;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-light);
}
.nav-tabs .nav-link {
  padding: 10px 20px;
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 16px;
  font-weight: 600;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}
.tab-content.card {
  padding: 30px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(var(--bs-dark-rgb), 0.03);
  border: 1px solid rgba(var(--bs-dark-rgb), 0.08);
}
.mobile-menu .nav-tabs li span {
  width: 100%;
  background: rgba(var(--bs-dark-rgb), 0.2);
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
  cursor: pointer;
}
.mobile-menu .nav-tabs li span.active {
  background: var(--bs-light);
}
.site-header .site-menu .t-h-dropdown-menu > li:hover > a,.t-h-dropdown-menu > li:hover > a{
  background-color: rgba(var(--bs-primary-rgb), 0.08);
}
.site-header .site-menu > ul > li > a {
  padding: 0 15px;
  font-size: 16px;
  z-index: 5;
  font-weight: 600;
}
.site-header .site-menu > ul > li:hover > .mega-menu {
  display: table;
  -webkit-animation: 0.35s submenu-show;
  animation: 0.35s submenu-show;
}
.site-header .site-menu > ul > li.has-megamenu:hover > a,
.site-header .site-menu > ul > li.has-submenu:hover > a {
  border-color: rgba(var(--bs-white-rgb), 0.8);
  background-color: var(--bs-white);
}


/* ------------------------------------ Footer ---------------------------------------- */
.site-footer {
  background-image: url(../../../assets/front/images/footer-bg.png);
  padding-top: 80px;
  position: relative;
}
.cloud-icon{
  position: absolute;
  right: 30px;
  top: -20px;
  transform: rotate(-30deg);
}
.footer-icon{
  position: absolute;
  bottom: 0;
  width: 300px;
}
.footer-copyright {
  margin: 0;
  padding: 15px 0;
  color:rgba(var(--bs-dark-rgb), 0.85);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid rgba(var(--bs-dark-rgb), 0.15);
}
.footer-copyright > a {
  transition: color 0.25s;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-social-links a,.social-links a {
  width: 35px;
  height: 35px;
  position: relative;
  background-color: var(--bs-primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  font-size: 18px;
}
.footer-social-links a span {
  position: relative;
  z-index: 1;
}
.gateway_image {
  width: 324px;
}


/* ======================================================================== Slider Section ================================================================================ */
.hero-slider .item {
  height: 600px;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: relative;
}
.hero-slider .item::after{
  position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(var(--bs-black-rgb), 0.9) 0%, rgba(var(--bs-black-rgb), 0) 100%);
}
.slider-area-wrapper .item-inner{
  position: relative;
  z-index: 1;
}
.slider-area-wrapper .title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--bs-white);
}
.slider-area-wrapper .subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--bs-white);
}
.heroslider .swiper-button-prev{
  left: 5%;
}
.heroslider .swiper-button-next{
  right: 5%;
}
.swiper-wrapper{
  height: auto;
}
.swiper-button-prev:after,.swiper-button-next:after{
  display: none;
}
.swiper-button-prev.swiper-prev,.swiper-button-prev.product-prev,.swiper-button-prev.blog-prev{
  left:-5%;
}
.swiper-button-next.swiper-next,.swiper-button-next.product-next,.swiper-button-next.blog-next{
  right: -5%;
}
.slider-img::after{
  position: absolute;
  content: "";
  background: url(../../../core/public/storage/images/flower.png);
  background-size: contain;
  padding: 25px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.slider-img:hover::after{
  background: url(../../../core/public/storage/images/flower-hover.png);
  background-size: contain;
}
.swiper-button-prev,.swiper-button-next{
  width: 44px;
  background-color: rgba(var(--bs-light-rgb), 0.5);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.swiper-button-prev:hover,.swiper-button-next:hover{
  background-color: var(--bs-light);
}
.swiper-button-prev i,.swiper-button-next i{
  font-size: 30px;
  color: var(--bs-primary);
}

/* ================================================================== Banner Section =================================================================== */
.sright-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  position: relative;
}
.sright-image::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(90deg,rgba(var(--bs-secondary-rgb),0.8) 0%, rgba(var(--bs-secondary-rgb),0) 100%);
}
.sright-image img {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  object-fit: cover;
}
.sright-image:hover img {
  transform: scale(1.1);
}
.sright-image .inner-content {
  padding: 50px;
}
.sright-image .inner-content p {
  font-size: 18px;
  color: var(--bs-light);
  margin-bottom: 15px;
  width: 60%;
}
.sright-image .inner-content h4 {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: var(--bs-light);
}

.category-list a{
      overflow: hidden;
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 10px;
}
.category-list h4{
  position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    z-index: 3;
    background: #fff;
    padding: 4px 18px;
    margin-bottom: 0;
    color: #242424;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 2px 2px 5px 0 #00000017;
}
.category-list a img{
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}
.category-list a:hover img{
  filter: grayscale(0);
}

/* ======================================================================== Specification Section ================================================================== */
.specification-details img{
  width: 60px;
}
.specification-details h2{
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--bs-black);
} 
.specification-icon{
  background-color: rgba(var(--bs-dark-rgb), 0.06);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.specification-info h3{
  font-size: 20px;
  color: var(--bs-dark);
  font-weight: 600;
}
.star-img{
  position: absolute;
  left: -50px;
  top: -50px;
  transform: rotate(-45deg);
}
.specification-img::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(var(--bs-black-rgb), 0.2);
  width: 100%;
  height: 100%;
}
.specific-line-img{
  position: absolute;
  right: 0;
  top: 0;
}
.play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  font-size: 30px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 0 0 0 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: rgba(var(--bs-primary-rgb), 1); */
}
.oto-img{
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
}

/* ====================================================================== Popular Categories ====================================================================== */
.product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bs-light);
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
  background-color: rgba(var(--bs-dark-rgb), 0.02);
}
.product-card .product-card-body,.blog-post .post-body {
  padding: 15px;
}
.product-card .product-thumb,.post-thumb {
  overflow: hidden; 
  position: relative;
  text-align: center;
}
.product-card .product-badge-left{
  right: auto;
  left: 8px;
}
 .product-gallery .product-badge-left{
  top: 50px;
 }
.product-badge {
  position: absolute;
  border-radius: 3px;
  color: var(--bs-light);
  font-size: 14px;
  font-weight: 500;
  z-index: 9;
  left: auto;
  top: 8px;
  right:8px;
  border-radius: 5px;
  padding:5px 8px;
  background-color: var(--bs-danger);
  border: 1px dashed rgba(var(--bs-light-rgb), 0.8);
}
.out-stock{
  background-color: var(--bs-danger);
}
.product-card .product-button-group .product-button {
  font-size: 18px;
  height: 40px;
  width: 40px;
  color: var(--bs-light);
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s linear;
  background-color: rgba(var(--bs-white-rgb), 0.8);
  color: var(--bs-dark);
}
.product-card .product-button-group .product-button:hover {
  background-color: var(--bs-primary);
  color: var(--bs-light);
}
.product-card .product-button-group {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
}
.product-card:hover .product-button-group {
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}
.product-card .product-thumb > img,.post-thumb > img {
  width: 100%;
  padding-top: 0;
  transform: scale(1);
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
}
.product-card:hover .product-thumb > img,.blog-post:hover .post-thumb > img {
  transform: scale(1.1);
}
.product-card .product-category a{
  width: 100%;
  margin-bottom: 4px;
  font-size: 14px;
  color: rgba(var(--bs-dark-rgb), 0.50);
  display: block;
}

.product-card .product-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
}
.product-card .product-title > a {
  transition: color 0.3s;
  color: var(--bs-dark);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  height: 42px;
  display: block;
}
.product-card .rating-stars {
  display: block;
  margin-bottom: 8px;
}
.product-card .product-price {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight:700;
  display: flex;
  gap: 10px;
}
.product-card .product-price > del {
  color: rgba(var(--bs-dark-rgb), 0.5);
  font-size: 15px;
}

/* =========================================================================== Service ==================================================================== */
.single-service{
  padding: 15px 15px 20px 15px;
  background-color: rgba(var(--bs-danger-rgb), 0.15);
  text-align: center;
  border-radius: 10px;
  height: 100%;
}
.single-service img {
  height: 60px;
  margin-bottom: 10px;
}
.single-service .content h6 {
  font-weight: 600;
  font-size: 18px;
  color: var(--bs-danger);
}
.services .col-lg-3:nth-child(2) .single-service{
  background-color: rgba(var(--bs-secondary-rgb),0.15);
}
.services .col-lg-3:nth-child(2) .single-service h6{
  color: var(--bs-secondary);
}
.services .col-lg-3:nth-child(3) .single-service{
  background-color: rgba(var(--bs-third-rgb),0.15);
}
.services .col-lg-3:nth-child(3) .single-service h6{
  color: var(--bs-third);
}
.services .col-lg-3:nth-child(4) .single-service{
  background-color: rgba(var(--bs-fourth-rgb),0.20);
}
.services .col-lg-3:nth-child(4) .single-service h6{
  color: var(--bs-fourth);
}

/* =========================================================== Special Product ==================================================================================== */
.section-title .links{
  margin-bottom: 30px;
}
.section-title .links a {
  color: var(--bs-dark);
  font-size: 18px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 5px;
  transition:all 0.3s ease-in-out;
}
.section-title .links a.active,.section-title .links a:hover{
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border: 1px dashed rgba(var(--bs-primary-rgb), 0.5);
  color: var(--bs-light);
}
.type_product_view img{
  width: 100px;
}
.feature_category_view, .popular_category_view, .type_product_view {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    z-index: 2;
}

/* ============================================================================= rich-section ==================================================================== */
.rich-info{
  padding: 50px 0;
  border-radius: 15px;
  background-color: rgba(var(--bs-black-rgb), 0.8);
  background-image: url(../../../assets/front/images/rich-bkg.png);
  background-size: cover;
  background-position: top;
  position: relative;
}
.rich-section h3{
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  color: var(--bs-light);
}
.flower-cartoon{
  position: absolute;
  top: -50px;
  left: -30px;
  z-index: 1;
  width: 100px;
  animation: rotation 5s;
}
.sun-cartoon{
  position: absolute;
  bottom: -50px;
  right: -30px;
  z-index: 1;
  width: 80px;
}
.linear {
  animation-timing-function: linear;
}

.infinite {
  animation-iteration-count: infinite;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* ========================================================== Blog ===================================================================================  */
.blog-post {
  margin-bottom: 30px;
  border-radius: 10px;
  background: rgba(var(--bs-dark-rgb), 0.02);
  display: inline-block;
  overflow: hidden;
}
.post-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-black);
}
.post-title > a {
  transition: color 0.3s;
  color: #232323;
  text-decoration: none;
  font-weight: 600;
}
.post-meta {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(var(--bs-dark-rgb), 0.2);
  list-style: none;
}
.post-meta > li {
  display: inline-block;
  margin-right: 12px;
  padding-bottom: 6px;
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 14px;
}
.post-meta > li > i {
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 14px;
}
.blog-post .post-body > p {
  margin-bottom: 0;
  color: rgba(var(--bs-dark-rgb), 0.8);
}
.blog-details-box {
  border: 1px solid rgba(var(--bs-dark-rgb), 0.08);
  background-color: rgba(var(--bs-dark-rgb), 0.03);
  border-radius: 5px;
  overflow: hidden;
}
.blog-details-box .blog-details-main-content {
  padding: 15px;
}

/* =========================================================================== Brand =============================================================================== */
.brand-section{
  background-color: rgba(var(--bs-primary-rgb), 0.03);
}
.brandslider a {
  background: rgba(var(--bs-light-rgb), 1);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.1);
  transition: 0.3s linear;
}
.brandslider a:hover{
  border: 1px solid var(--bs-primary);
}

/* ======================================================= announcement ====================================== */
.modal h4{
  font-size: 24px;
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
.alert-success {
  background-color: var(--bs-success);
  color: var(--bs-white);
}
.alert-danger {
  background-color: var(--bs-danger);
  color: var(--bs-white);
  border-radius: 10px;
}
.close {
  transition: opacity 0.50s;
  border: 0;
  color: var(--bs-white);
  background: 0;
  font-size: 24px;
  cursor: pointer;
}
.modal-backdrop.show{
  opacity: 0.5;
}
.announcement-with-content {
  display: flex;
  align-items: center;
}
.announcement-with-content .right-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 30px;
}
.announcement-with-content .right-area h3 {
  font-weight: 700;
  color: var(--bs-primary);
  font-size: 34px;
}
.announcement-with-content .right-area p{
  font-size: 16px;
}

/* ====================================================================== News Letter ================================================================================ */
.news-letter h3{
  font-size: 30px;
  color: var(--bs-black);
  font-weight: 700;
}



/* ********************* Shop Page ********************* */
/* ============================================================== Breadcrumbs ================================================================ */
.page-title {
  width: 100%;
  background: url(../../../assets/front/images/breadcrumbs-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 30px 0;
}
.page-title::after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--bs-black-rgb), 0.8);
}
.breadcrumbs {
 position: relative;
 z-index: 1;
}
.breadcrumbs > li {
  color: rgba(var(--bs-light-rgb), 0.8);
}
.breadcrumbs > li > a {
  transition: color 0.25s;
  color: var(--bs-light);
  text-decoration: none;
}

/* ================================== Page Content ===================================== */
/* Shop Filter Section */
.shop-top-filter-wrapper {
  background: rgba(var(--bs-dark-rgb), 0.05);
  border: 1px solid rgba(var(--bs-dark-rgb), 0.08);
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 10px;
}
.quickFilter .quickFilter-title {
  margin-bottom: 0;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.15);
  border-radius: 5px;
  background-color: var(--bs-light);
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
}
.quickFilter:hover #quick_filter {
  visibility: visible;
  opacity: 1;
}
.shop-sorting label {
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-size: 16px;
  font-weight: 600;
}

.shop-view > a.active {
  cursor: default;
  pointer-events: none;
  color: var(--bs-light);
}
.shop-view > a {
  width: 45px;
  height: 45px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.15);
  border-radius: 5px;
  background-color: var(--bs-light);
}
.shop-view > a:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.shop-view > a:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Shop Sidebar */

.category-scroll {
  max-height: 320px;
  overflow: auto;
}
.noUi-horizontal {
  height: 4px;
  background-color: var(--bs-primary);
  border-radius: 10px;
}
 .noUi-connect {
  background-color: rgba(var(--bs-dark-rgb), 1);
}
.noUi-base {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}
.noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
}
.noUi-horizontal .noUi-handle {
  top: 50%;
  left: -3px;
  width: 8px;
  height: 20px;
  transform: translateY(-50%);
  background-color: rgba(var(--bs-dark-rgb), 1);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.price-range-slider .ui-range-slider-footer {
  display: flex;
    width: 100%;
    padding-top: 30px;
    align-items: center;
    justify-content: space-between;
}
.ui-range-values{
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-weight: 600;
}
.product-card.product-list .product-thumb {
    border-right: 1px solid rgba(var(--bs-dark-rgb), 0.15);
    border-top-right-radius: 0;
  }

/* ========================================= Product Details Page ==================================== */
.size-chart{
     border: 1px solid var(--bs-third);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--bs-third);
    background-color: rgba(var(--bs-third-rgb), 0.1);
    gap: 10px;
    padding: 5px 10px;
    font-weight: 500;
}
.product-thumbnails{
  background-color: rgba(var(--bs-dark-rgb),0.03);
  padding: 15px;
  border: 1px solid rgba(var(--bs-dark-rgb),0.08);
  border-radius: 10px;
}
.product-thumbnails .swiper-thumbs {
  margin-top: 15px;
  display: block;
}
.product-thumbnails .swiper-thumbs .swiper-slide .item {
  border: 1.5px solid rgba(var(--bs-dark-rgb), 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px 0 #0000001c;
}
.product-thumbnails .swiper-thumbs .swiper-slide-thumb-active {
  border: 1.5px solid var(--bs-primary);
  border-radius: 10px;
}
.product-gallery .video-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}
.product-gallery .video-btn > a {
  width: 40px;
  height: 40px;
  box-shadow: 2px 2px 10px 0 rgb(0 0 0 / 15%);
}
.gallery-item > a[data-type="video"]::after,
.video-btn > a {
  border-radius: 50%;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDEyNC41MTIgMTI0LjUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTI0LjUxMiAxMjQuNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTExMy45NTYsNTcuMDA2bC05Ny40LTU2LjJjLTQtMi4zLTksMC42LTksNS4ydjExMi41YzAsNC42LDUsNy41LDksNS4ybDk3LjQtNTYuMiAgIEMxMTcuOTU2LDY1LjEwNSwxMTcuOTU2LDU5LjMwNiwxMTMuOTU2LDU3LjAwNnoiIGZpbGw9IiMzMzMzMzMiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-color: var(--bs-light);
  background-position: center;
}
.details-page-info {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.08);
  background-color: rgba(var(--bs-dark-rgb), 0.02);
}
.details-page-info h4,.blog-details-main-content h4{
  font-size: 24px;
  font-weight: 700;
  color: var(--bs-black);
  margin-bottom: 15px;
}
.rating-stars > i {
  margin-right: 2px;
  color: rgba(var(--bs-dark-rgb), 0.5);
  font-size: 15px;
}
.details-page-info .rating-stars i {
  font-size: 18px;
}
.price-area{
  font-size: 24px;
  color: rgba(var(--bs-dark-rgb), 0.5);
  font-weight: 500;
}
.main-price{
  font-weight: 700;
  margin-left: 10px;
}
.product-quantity span,.product-quantity input {
  width: 45px;
  background-color: var(--bs-light);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.2);
  color: rgba(var(--bs-dark-rgb), 0.85);
  margin: 0;
  text-align: center;
}
.product-quantity .cartsubclick{
  border-radius: 5px 0 0 5px;
  border-right: none;
}
.product-quantity .cartaddclick{
  border-radius: 0 5px 5px 0;
  border-left: none;
}
.decreaseQty{
  border-radius: 5px 0 0 5px;
}
.increaseQty{
  border-radius: 0px 5px 5px 0px;
}
.product-quantity input:focus {
  outline: 0;
  box-shadow: unset;
  border-color: unset;
}
.product-tags a {
  color: var(--bs-primary);
}
.product-tags span{
  font-weight: 600;
}
.a2a_kit a {
  width: 35px;
  height: 35px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--bs-light);
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}
.a2a_kit a:hover{
  background-color: var(--bs-black) !important;
}
.comparison-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.specifications-table thead tr th{
  /* background-color: rgba(var(--bs-primary-rgb), 0.2); */
}
.specifications-table .table-title{
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--bs-dark-rgb), 1);
}
.review-area .card{
  background-color: rgba(var(--bs-dark-rgb), 0.03);
  border: 1px solid rgba(var(--bs-dark-rgb), 0.08);
}
.rating-details h4{
  font-size: 50px;
  color: var(--bs-primary);
  margin-bottom: 0;
}
.rating-details .rating-stars i{
  font-size: 18px;
}
.rating-list label{
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
  margin-bottom: 5px;
}
.progress {
  height: 5px;
  border-radius: 10px;
  background-color: rgba(var(--bs-dark-rgb), 0.15);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 10px;
}
.progress-bar {
  height: 5px !important;
}

/* ============================ Campaign ========================= */
.deal-of-day-section .countdown span {
  display: inline-block;
  color: var(--bs-light);
  font-size: 16px;
  font-weight: 700;
  background-color: var(--bs-primary);
  padding: 5px 10px;
  border-radius: 5px;
}
.deal-of-day-section .countdown span small {
  display: inline-block;
  background: 0 0;
  color: #fff;
  margin-top: 0;
  padding: 0;
  margin-left: 3px;
}
.search-btn .form-control{
  border-radius: 5px !important;
}
.blog-cate span,.list-group-item span{
  background-color: rgba(var(--bs-dark-rgb), 0.2);
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: 700;
  color: var(--bs-dark);
  font-size: 14px;
}

.tag {
  padding: 5px 12px;
  transition: all 0.5s ease-in-out;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.2);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
.tag:hover {
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}
.entry{
    border-bottom: 1px solid rgba(var(--bs-dark-rgb), 0.15);
    padding-bottom: 10px;
}


.working-time{
  font-weight: 600;
  color: rgba(var(--bs-black-rgb), 0.8);
}
.working-time span,.list-icon{
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-weight: 600;
}


/* ============== FAQ Page =================== */
.faq-box,
.faq-box .link {
  transition: 0.3s linear;
}
.faq-box:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 15px 0 rgba(var(--bs-black-rgb), 0.1);
}
.card-title{
  font-weight: 600;
  font-size: 18px;
}
#accordion1 .card-header {
  border-bottom: 0;
}
.accordion .card-header {
  padding: 0;
  transition: background-color 0.3s;
  background-color: var(--bs-light);
}
#accordion1 .card-header .accordion-button {
  background: rgba(var(--bs-dark-rgb), 0.06);
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: block;
}
#accordion1 .card-header a {
  padding: 14px 20px;
  display: block;
  color: rgba(var(--bs-dark-rgb),1);
  font-weight: 600;
  width: 100%;
}

/* ============= Login Page =============== */
.btn.facebook-btn {
  background: #3b5998 !important;
}
.btn.facebook-btn:hover,.btn.google-btn:hover {
  background-color: var(--bs-black) !important;
}
.btn.google-btn {
  background: #dd4b39 !important;
}

/* ======== User Dashboard ========== */
.user-info-wrapper .user-info .user-avatar > img {
  border: 5px solid rgba(var(--bs-dark-rgb), 0.08);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: inline-block;
  box-shadow: 2px 2px 10px rgba(var(--bs-black-rgb),0.2);
}
.user-data h4{
  color: rgba(var(--bs-dark-rgb),0.85);
  margin-bottom: 0;
  font-weight: 600;
}
.user-info-wrapper .user-info .user-data span {
  color: rgba(var(--bs-dark-rgb), 0.6);
  font-size: 14px;
}
.list-group-item-action,
a.list-group-item {
  transition: 0.25s;
  color: rgba(var(--bs-dark-rgb), 0.85);
  font-weight: 500;
  background-color: rgba(var(--bs-dark-rgb), 0.03);
  font-size: 15px;
}
.list-group-item.active {
  border-color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  cursor: default;
  pointer-events: none;
}
.list-group-item-action:active,
.list-group-item-action:focus,
.list-group-item-action:hover,
a.list-group-item:active,
a.list-group-item:focus,
a.list-group-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  border-color: var(--bs-primary);
  border-top-width: 1px;
}
.user-order i{
  font-size: 32px;

}
.user-order .order-icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-light);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.bubble-shadow-small:before {
    position: absolute;
    top: -70%;
    right: -40%;
    width: 80px;
    height: 80px;
    content: "";
    border-radius: 50%;
    background: rgba(var(--bs-light-rgb), 0.2);
}
.bubble-shadow-small:after {
    position: absolute;
    top: -65%;
    right: 40%;
    width: 70px;
    height: 70px;
    content: "";
    border-radius: 50%;
    background: rgba(var(--bs-light-rgb), 0.2);
}
.order-count p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(var(--bs-dark-rgb), 0.85);
}
.order-count h4 {
    margin: 0;
    color: rgba(var(--bs-black-rgb), 0.85);
    font-size: 20px;
    font-weight: 700;
}
.media h4{
  font-size: 16px;
  color: var(--bs-primary);
}
.media small{
  color: rgba(var(--bs-dark-rgb), 0.6);
}
.admin-media .media{
  max-width: 80%;
  background-color: var(--bs-light);
  border:1px solid rgba(var(--bs-dark-rgb), 0.1);
  border-radius: 5px;
  padding: 15px;
}
.user-media{
  justify-content: flex-end;
  
}
.user-media .media{
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  border:1px solid rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 5px;
  padding: 15px;
  max-width: 80%;
}
.invoice-info .logo{
  width: 200px;
}
.invoice-info ul li{
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
  padding: 2px 0;
}
.invoice-info ul li span{
  color: rgba(var(--bs-black-rgb), 0.85);
  padding-right: 8px;
}
.total-amount td{
  background-color: rgba(var(--bs-success-rgb), 0.1);
}
.total-amount span{
  font-weight: 600;
  font-size: 18px;
}
.wishlist-table .product-thumb{
  width: 100px;
}
.product-info h4{
  font-size: 16px;
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
  line-height: 1.5;
}
.product-price{
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 16px;
}

/* ========== Track Order =============== */
.progress-steps .icon{
  font-size: 26px;
  font-weight: 600;
  border: 1px solid rgba(var(--bs-dark-rgb), 0.8);
  color: var(--bs-dark);
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background-color: rgba(var(--bs-dark-rgb), 0.2);
}
.progress-steps li.active .icon{
  color: var(--bs-success);
  border: 1px solid rgba(var(--bs-success-rgb), 0.8);
  background-color: rgba(var(--bs-success-rgb), 0.2);
}
.progress-title{
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
.progress-steps li{
      width: 25%;
    float: left;
    text-align: center;
    position: relative;
    list-style: none;
}
.progress-steps li:after {
    position: absolute;
    content: "";
    height: 3px;
    width: calc(100% - 40px);
    background: #dcdcdc;
    top: 25px;
    z-index: 0;
    right: calc(50% + 15px);
}

/* ====== Compare Order ========== */
.compare_remove {
  position: absolute;
  top:10px;
  right: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--bs-danger);
  color: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======= Cart ========= */
.shopping-cart img{
  width: 100px;
}
.sub-total h3{
  font-size: 22px;
}

/* ===== Check Out Page ====== */
.steps .step {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
}
.steps .step .step-title {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 700;
  color: rgba(var(--bs-dark-rgb), 0.85);
}
.steps .step.active {
  background-color: var(--bs-primary);
}
.steps .step.active .step-title {
  color: var(--bs-white);
}


/* ======== Billing Address ========== */
.free-shipping{
  background-color: rgba(var(--bs-success-rgb), 0.08);
  border: 1px solid rgba(var(--bs-success-rgb), 0.4);
  padding: 5px 10px;
  border-radius: 5px;
}

/* ======= offcanvas ====== */
.offcanvas-header{
  border-bottom: 1px solid rgba(var(--bs-dark-rgb),0.1);
}
.offcanvas-header .btn-close{
  top: auto;
}

/* ========= alert ============ */
.col-10.col-xs-11.col-sm-4.alert.animated.fadeInDown {
  max-width: 300px !important;
  padding:10px 20px !important;
  border: 0 !important;
  box-shadow: 2px 2px 5px 0 rgb(0 0 0 / 20%);
  border-radius: 10px;
}







 @media (max-width: 991px) {
  .hidden-md-down,
  .navbar {
    display: none !important;
  }
  .user-info-wrapper {
    margin-bottom: 30px;
  }
  .sidebar-offcanvas.position-right {
    right: -320px;
    transition: right 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s,
      box-shadow 0.3s 0.3s;
  }
  
  .sidebar-offcanvas.open.position-right {
    right: 0;
  }
  
  
  .sidebar-offcanvas::-webkit-scrollbar {
    display: none;
  }
 
  .sidebar-toggle.position-right {
    right: 0;
    transition: right 0.3s ease-in-out;
    border-left: 1px solid #e5e5e5;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .sidebar-toggle.position-right.sidebar-open {
    right: -46px;
  }

  .sidebar-toggle.position-left.sidebar-open {
    left: -46px;
  }
 
  body {
    padding-top: 0 !important;
  }
  
  
}


.alert-image-bg::before,
.gallery-item .caption,
.gallery-item.no-hover-effect > a::before,
.isotope-grid:not(.filter-grid) > .grid-item,
.list-group-item-danger::before,
.list-group-item-info::before,
.list-group-item-success::before,
.list-group-item-warning::before,
.navbar .categories-btn,
.navbar .toolbar,
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled,
.progress-steps li:first-child:after,
.section-title.section-title2 h2::before,
.sidebar-close,
.sidebar-toggle,
.single-review .comment .comment-body::before,
.site-header .site-menu > ul > li > a::after,
.video-btn > a::after,
.video-btn > a::before,
blockquote cite.cite-avatar::before {
  display: none;
}

/* Latest Reviews */
.comment img{
  width: 80px;
  border-radius: 8px;
}
.rating-stars i{
  color: var(--bs-danger);
  font-size: 18px;
}

/* Scroll Top Btn */
.scroll-to-top-btn {
  display: block;
  position: fixed;
  right: 16px;
  bottom: -90px;
  width: 36px;
  height: 36px;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s,
    background-color 0.3s, border-color 0.3s;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  z-index: 2000;
  text-align: center;
  text-decoration: none;
}
.scroll-to-top-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.scroll-to-top-btn.visible {
  bottom: 50px;
  opacity: 1;
}
.scroll-to-top-btn > i {
  line-height: 36px;
}
.market-button {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 14px;
  padding: 5px 14px 5px 45px;
  transition: background-color 0.3s;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background-position: center left 12px;
  background-color: #fff;
  background-size: 24px 24px;
  text-decoration: none;
}









#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999999;
  background: #fff;
}
#preloader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
}



.cookie-consent {
  position: fixed;
  background-color: #242424;
  bottom: 0;
  width: 100%;
  padding: 11px 30px 0px;
  z-index: 99;
  color: #fff;
}
.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
}
.cookie-consent .items-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
p.cookie-consent__message {
  background-color: transparent !important;
  margin-bottom: 0;
  color: #fff !important;
  font-weight: 400 !important;
}
.js-cookie-consent-agree {
  border: 0;
  border-radius: 50px;
  color: #fff;
}