:root {
    --primary-color: #223a5e;
	--secondary-color:#223a53;
    --black-color: #000000;
	--white-color:#ffffff;
	--grey-color:#7a7a7a;
	--blue-color:#4169e1;
	--dark-grey-color:#e9ebee;
	--light-green-color:#61ce70;
}
html, body {
	margin:0;
	padding:0;
	overflow-x:hidden;
	overflow-y:auto;
	font-family: "Prompt", sans-serif;
	background-color:#e9ebee;
}
a {
	text-decoration: none;
	color:var(--blue-color);
}

#back-to-top {
	display:none;
}
.cursor-pointer {
    cursor: pointer;
}
.home-slider  .swiper-button-next,
.home-slider .swiper-button-prev {
	display:none;
}

/*Button*/
.primary-btn {
	font-size: 16px;
	fill:var(--primary-color);
	color:var(--primary-color);
	background-color:var(--white-color);
	border:1px solid var(--primary-color);
	border-radius:5px !important;
    padding: 8px 25px;
    transition: 0.15s;
}
.primary-btn:hover {
	background-color:var(--primary-color);
    color: var(--white);
}
.secondary-btn {
	color:var(--white-color);
    background: var(--light-green-color);
    padding: 12px 24px;
    font-family: 'Roboto', sans-serif;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
}
/*Top Menu*/
.top-menu-container {
	background-color:var(--primary-color);
	padding:20px;
}
.top-menu-contact {
	display:flex;
	justify-content: flex-end;
	gap:16px;
}
.top-menu-contact-info {
	display:flex;
	gap:16px;
	align-items: center;
}
.top-menu-contact-info h2 {
	color:var(--white-color);
	font-size:0.89rem;
	font-weight:500;
	margin-bottom:0;
}
.top-menu-contact-info a {
	color:var(--white-color);
}
.top-menu-contact-info a i{
	font-size:16px;
}
/*Section*/
.section {
    padding-top: 50px;
    padding-bottom: 50px;
}
/*Inner Section*/
.inner-heading-wrapper{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--primary-color);
}

.inner-heading{
    color: var(--white);
    margin-bottom: 0;
}

.inner-section-title {
    font-size: 24px;
    font-weight: bold;
}

.inner-banner-bg {
	width:100%;
	height:700px;
}
.inner-section-container {
	position:relative;
	top:300px;
	left:100px;
}
.inner-section-content h3 {
	color:var(--white-color);
	font-size:24px;
	font-weight:600;
}
.inner-section-content p {
	font-size:16px;
	color:var(--white-color);
	font-weight:400;
	margin:16px 0 24px;
	font-family: "Prompt", sans-serif;
}
.inner-section {
	width:1140px;
	max-width:100%;
}
/*Inner section banner*/
.inner-section-banner {
	height:258px;
	display:flex;
	align-items:center;
}
.inner-banner-title {
	font-size:2rem;
	color:var(--white-color);
	font-weight:600;
	font-family: "Raleway",sans-serif;
}

.inner-section-banner.category{
    height: auto;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.inner-section-banner.category img{
    width: 100%;
}

.inner-section-banner.category .wrapper{
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
}

/*Background*/
.grey-bg {
	background-color:var(--dark-grey-color);
}

/*Product*/
.product-img {
	width:470px;
	height:100%;
	display:block;
	margin:auto;
}
.product-content-wrapper {}
.product-content-wrapper h1 {
	color:var(--secondary-color);
	font-size:1.5rem;
	font-weight:700;
}
.product-content-wrapper hr {
	border:1px solid var(--primary-color);
}
.product-desc p {
	text-align:justify;
	color:var(--primary-color);
	font-weight:400;
	line-height:1.5;
	margin-block:32px;
}
.product-detail-content p {
	color:var(--primary-color) !important;
	font-weight:bold;
}
.product-detail-content a {
	background-color:#61ce70;
	color:var(--white-color);
	font-weight:500;
	padding:12px 24px;
	border-radius:3px;
}
.product-detail-content ul {
	margin-bottom:50px;
}
/*Lightbox*/
.lightbox-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.lightbox-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

/* Apply overlay effect ONLY when there is an image inside */
.lightbox-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
  pointer-events:none;
}

.lightbox-wrapper:hover::before {
  opacity: 1;
}

/*Certification carousel*/
.certification-carousel .owl-carousel .owl-item img {
	width:60%;
	margin:auto;
}

/*Footer*/
.footer-section {
	background-color:var(--primary-color);
	padding:50px 0 10px;
}
.footer-container {
	display:flex;
	justify-content:center;
}
.footer-title , 
.footer-nav-title .footer-listing .nav-item a {
	font-size:16px;
	font-weight:600;
	color:var(--white-color);
	text-transform:uppercase;
}
.footer-nav-title .footer-listing,
.footer-nav-title .footer-listing .nav-item{
	margin-bottom:8px
}
.footer-nav .footer-listing .nav-item a {
	color:var(--white-color);
	font-size:.75rem;
	font-weight:500;
}
.footer-socmed-title {
	color:var(--white-color);
	font-size:.75rem;
	font-weight:400;
	letter-spacing:1px;
}
.footer-copyright-section {
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:10px;
	padding-top:20px;
}
.footer-copyright-info-title {
	color:var(--white-color);
	font-size:.85rem;
	font-weight:500;
	letter-spacing:1.5px;
	line-height:1em;
}
.footer-copyright-title {
	color:var(--white-color);
	font-size:.75rem;
	font-weight:500;
	letter-spacing:1.5px;
	line-height:1em;
}
.footer-divider div.divider {
	border-color:var(--white-color);
}
.footer-logo {
	width:100%;
	max-width:80%;
}

/*Carousel*/
.inner-carousel-title {
	font-size:24px;
	color:var(--black-color);
	line-height:26px;
	text-align:center;
	font-weight:600;
	margin:20px 0;
}
.inner-carousel-title  a {
	font-size:18px;
	color:var(--black-color);
}
.product-carousel-section .owl-carousel .owl-item {
	text-align:center;
}
.product-carousel-section .owl-carousel .owl-item div{
	cursor:pointer;
}

/*Our Products*/
.our-products-wrapper span {
	color:var(--black-color);
	display:block;
	text-align:center;
}
.our-product-carousel .owl-carousel .owl-next,
.our-product-carousel .owl-carousel .owl-prev {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: var(--white-color) !important;
  width: 45px !important;
  font-size: 35px !important;
}
.product-btn-wrapper {
	margin-top:50px;
}
.product-detail-title {
	color:var(--primary-color);
}
.product-detail-right ul li span {
	color:var(--primary-color);
}
.product-detail-right .line-divider {
	border:1px solid var(--primary-color);
	opacity:1;
}

.product-stick h2 {
	color:var(--primary-color);
	font-size:16px;
	font-weight:700;
}
.product-stick h3 {
	color:var(--primary-color);
	font-size:16px;
	font-weight:400;
}
.product-detail-list {
	margin:0 0 1.5em 3em;
}
.product-detail-list li, .product-stick p {
	color:var(--primary-color);
}
/*breadcrumbs*/
.breadcrumbs-container {
	padding:20px 0;
}
.breadcrumbs-container .breadcrumbs span {
	color:var(--primary-color);
	font-size:1rem;
	font-weight:500;
}
.breadcrumbs-wrapper {
	background-color:var(--white-color);
}
/*Blog*/
.post-wrapper{
    height: 100%;
}

.post-wrapper img{
    aspect-ratio: 1/1;
    object-fit: cover;
}
.blog-section {
	border-top:3px solid #F1F1F1;
}
.blog-post-title {
	font-size:2rem;
	font-weight:700;
	color:var(--primary-color);
	text-align:center;
}
.blog-post-date {
	font-size:1rem;
	font-weight:600;
	color:var(--primary-color);
	text-align:center;
	padding:10px 0;
}
.blog-post-img {
	display:block;
	margin:auto;
	width:30%;
	max-width:100%;
}
.blog-post-content p{
	font-size:17px;
	text-align:justify;
	margin:16px 0 24px;
	color:var(--black-color);
}

.blog-post-content ul,
.blog-post-content  ol {
	margin:0 0 1.5em 3em;
}

.blog-post-content ul li,
.blog-post-content  ol li {
	font-size:17px;
	text-align:justify;
	color:var(--black-color);
}
.blog-img {
	width:100%;
	max-width:100%;
	height:360px;
	object-fit:contain;
}
.blog-post-slider .swiper-slide img {
	width:100%;
	max-width:100%;
	height:450px;
	object-fit:contain;
}
/*Tips and care*/
.tips-care p {
	color:var(--grey-color);
	font-weight:400;
	font-size:16px;
}
.tips-care a {
	color:var(--blue-color);
	font-weight:400;
	font-size:16px;
}


/*Buy section*/
.product-description-div {
	margin-top:50px;
	padding:0;
}
.product-description-div ul:first-of-type {
	background-color:var(--primary-color);
	padding:15px;
	text-align:center;
}
.product-description-div ul:first-of-type li {
	color:var(--white-color);
	list-style-type:none;
	border-bottom:1px solid var(--white-color);
	padding-bottom:4px;
	display:inline-block;
	width:auto;
	font-weight:700;
}
.product-description-div ul:nth-of-type(2) {
	padding:30px 300px;
}
.product-description-div ul:nth-of-type(2) li {
	color:var(--primary-color);
}

.bottom-carousel {
	background-color:var(--white-color);
	padding:5px;
}
.footer-column {
	display:flex;
	justify-content:center;
	align-items:center;
}
/*Media Query*/
@media only screen and (max-width: 1200px) {
	.inner-banner-bg {
		height:375px;
	}
	.inner-section-container {
		top:0;
		left:0;
	}
	.footer-column {
		display:flex;
		justify-content:start;
		align-items:center;
	}
}
@media only screen and (max-width: 991px) {
	.inner-section-container {
		top:50px;
	}
	.footer-column {
		display:flex;
		justify-content:start;
		align-items:center;
	}
}

@media only screen and (max-width: 767px) {
	.product-description-div ul:nth-of-type(2) {
	    padding:50px;
     }
}

@media only screen and (max-width: 575px) {
	.inner-section-container {
		top:0;
	}
	.inner-section-content p {
		font-size:14px;
	}
}

@media only screen and (max-width: 430px) {
	
}

@media only screen and (max-width: 340px) {
 
}

/*Cart*/
.right_cart_checkout {
    border-radius: 0 !important;
}

.right-search-title {
    color: var(--black-color);
    display: flex;
    align-items: center;
}

.btn-show-more {
    font-size: 13px;
}

.price-range-text {
    display: block;
    margin: auto;
}

.product-list-card {
    height: 100%;
	transition:all 500ms ease;
	/*border:1px solid #00000038;*/
	border-radius:0 !important;
}
/*.product-list-card:hover {
	border: 1px solid #dddddd;
    -webkit-box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
}*/
.border-box {
    /*box-shadow: 0 0 10px 3px rgba(90, 99, 89, 0.08);*/
    border-radius: 15px;
}
/*Offer Content Carousel*/
.offer-content-carousel > .row > .col-12 > .tab-content > .tab-pane > .owl-carousel > .owl-nav {
    margin-top: 0;
    display: none;
}

.offer-content-carousel > .row > .col-12 > .tab-content > .tab-pane > .owl-carousel > .owl-nav .owl-prev i,
.offer-content-carousel > .row > .col-12 > .tab-content > .tab-pane > .owl-carousel > .owl-nav .owl-next i {
    display: none;
}

.offer-content-carousel > .row > .col-12 > .nav-tabs {
    background: yellow;
    display: none;
}
/*Scrollable Tabs*/
.scrollable-tabs {
    margin-bottom: 25px;
}

/*Discount Label*/
.discount-label-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: -10px;
    right: 0;
    position: absolute;
}

.discount-label-wrapper i {
    color: var(--primary-red-color);
}
.discounted-price-label {
    padding: 0;
    color: #000;
    font-size: 14px;
}
/*Product Listing*/
.product-listing-text {
    color: var(--primary-color);
	text-align:center;
	display:block;
}
.product-listing-price small {
    display: block;
    text-align: left;
    padding: 0 10px;
}

.product-title {
    padding: 0 10px;
}

.product-title a {
    text-decoration: none;
}

.product-tags-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.product-tags-discount {
    background-color: var(--primary-red-color);
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    width: 60px;
    height: 16px;
    display: block;
    text-align: center;
}

.product-free-shipping {
    display: block;
    text-align: center;
    color: #4eb038;
    width: 70px;
    height: 13px;
    font-size: 10px;
    box-shadow: 0 0 0 2px #4CAF50, 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.variation_selection {
    padding: 0 20px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f7f7f7;
}

::-webkit-scrollbar-thumb {
    background: #dcdcdc;
}

.swiper-slide img {
    width: 100%;
    border-radius: 10px;
}

.flipdown {
    display: flex;
    align-items: center;
}

/*Category*/
.collection-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

input[type="number"] {
    text-align: center;
}

/*Product Tab*/
.product-tab-padding-center {
    background-color: var(--white-color);
    width: 100%;
    text-align: center;
    border: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-tab-padding-left {
    background: var(--white);
    width: 100%;
    display: block;
    margin: auto;
    margin-top: 25px;
}

.product-tab-padding-center .nav-item {
    display: block;
}

.product-tab-padding-center .nav-link {
    width: 100%;
    color: var(--black-color);
    font-weight: bold;
    padding: 5px 16px;
    border: 2px solid transparent;
    border-radius: 50px;
    width: 100%;
}

.nav-tabs.product-tab-padding-center .nav-link.active {
    border: 2px solid var(--black-color);
    width: 100%;
}

.nav-tabs.product-tab-padding-center .nav-link .desc-caret-icon {
    display: none;
}

.nav-tabs.product-tab-padding-center .nav-link .spec-caret-icon {
    display: none;
}


.product_var_color_wrapper {
    border-radius: 50%;
    border: 1px solid #eee;
}

.product_var_color_wrapper .color_wrapper {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
}

.btn_quick_view {
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0;
    max-width: 165px;
    margin: 0 auto;
}
/*Floating Action Bar*/
.floating-action-bar-wrapper {
    max-width: 120px;
    max-height: 120px;
    position: fixed;
    bottom: 140px;
    right: 15px;
    float: right;
    z-index: 999;
}

@media only screen and (min-width: 767px) {
    .floating-action-bar-wrapper {
        right: 20px;
    }

}

.floating-action-bar-wrapper.hide {
    display: none;
}

.floating-action-bar-frame {
    width: 100px;
    height: 100px;
}
/*Fontawesome*/
.fab-image {
    max-width: 85px;
    max-height: 85px;
    margin-top: 5px;
    border-radius: 75px;
}

.fab-owl .item img {
    opacity: 1;
}

.fab-owl .item:hover img {
    border: unset;
}

.fab-close {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
}

.frame-blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
/*Category Filter*/
.category-filter .ui-slider .ui-slider-handle {
    width: 10px;
    height: 18px;
    border-radius: 0 !important;
    background: #e5e5e5;
    margin-left: 0;
    top: -7px;
}

.category-filter .slider-range {
    border-radius: 0;
}

.category-filter .ui-slider-horizontal {
    background-color: #e5e5e5;
    border: 0;
    height: 3px;
}

/*Price Amount*/
.price-amount-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}
/*Discount Label*/
.discount-label {
    top: 10px;
    right: 0;
    background-color: var(--primary-red-color);
    color: white;
    padding: 0px 10px;
    border-radius: 50px;
    font-size: 13px;
}

.color-active {
    outline: 2px solid #c20000 !important;
}
/*Product variation*/
.product_var_color_wrapper {
    border-radius: 50%;
    outline: 2px solid transparent;
    border: 1px solid var(--white);
    cursor: pointer;
}

.product_var_color_wrapper .color_wrapper {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.15);
}

.btn_quick_view {
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0;
    max-width: 165px;
    margin: 0 auto;
}

.btn-blinking {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: .5;
    }
}

.product-description-wrapper img {
    max-width: 100%;
}

.brand-arrows-owl .tabs_carousel_tabs_content .owl-carousel-center .owl-nav {
    top: 20% !important;
}
/*Inner Product Category*/
.inner-product-category-list ul {
    padding-left: 20px;
}

.inner-product-category-list li {
    list-style: none;
}

.category-filter .row {
    direction: ltr;
    text-align: left;
    padding-left: 10px;
}

.site-nav-height {
    /*height: 500px;*/
    overflow: auto;
}
/*Quantity Control*/
.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.quantity-control input {
    width: 80px;
    text-align: center;
    border: 1px solid #ccc;
    height: 40px;
}

.quantity_minus {
    border-right: none !important;
}

.quantity_plus {
    border-left: none !important;
}

.product_add_to_cart, .product_add_to_cart:hover {
    border-radius: 0;
    padding: 0;
}

.message-type.text-danger p, .message-type.text-danger button {
    color: red !important;
}
/*Compare Product*/
.compare-product {
    margin-bottom: 50px;
}

.compare-product table td {
    padding: 10px 24px;
}

.compare-product table tbody tr th, .compare-product table tbody td {
    text-align: left;
    border-bottom: 2px solid #f3f3f3;
    padding: 12px;
    width: 50%;
    font-weight: normal;
}

.compare-product table tbody tr {
    border-top: 2px solid #f3f3f3;

}

.compare-product table tbody tr:nth-child(1) td:nth-child(2) a {
    color: var(--bs-link-color);
    font-weight: 600;
}

.compare-product table tbody tr:nth-child(2) td:nth-child(2) a {
    font-weight: 600;
}

.compare-product table tbody tr td:last-child {
    border-left: 1px solid #f3f3f3;
}

.compare-product table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.btn-go-compare {
    color: #0d6efd;
}

.sticky-element {
    position: sticky;
    bottom: 0;
    z-index: 100;
    background-color: white;
    padding: 20px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
/*Product Price*/
.product-price-container {
    display: flex;
    gap: 5px;
}

.product-price {
    font-weight: 400 !important;
}


.product-price-container span {
    font-weight: bold;
}

.product-price-container .text-secondary {
    display: inline-block;
    color: #B9B9B9;
    font-size: 18px;
    margin-right: 10px;
}

.product-price-container .discounted-price-label {
    color: var(--black);
    font-size: 18px;
}

.box-shadow {
    -webkit-box-shadow: 0 0 10px 3px rgba(90, 99, 89, 0.08);
    -moz-box-shadow: 0 0 10px 3px rgba(90, 99, 89, 0.08);
    box-shadow: 0 0 10px 3px rgba(90, 99, 89, 0.08)
}
/*Feature Brand Product*/
.featured-brand-product-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 15px;
}

.featured-brand-product-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5em;
}
/*Checkout*/
.checkout-wrapper {
    border: 1px solid #dee2e6;
    border-radius: 5px;
}
/*Side Navigation*/
.sidenav {
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 350px;
    right: -450px;
    background-color: #ffffff;
    border-left: 1px solid #D3D3D3;
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}

.sidenav > div {
    padding: 10px;
}

.sidenav a,
.sidenav a:hover {
    color: black;
    text-decoration: unset;
}

.sidenav .close-rightbox {
    padding: 15px;
}

/*Right cart*/
.right-cart-sub-total {
    border-top: 1px solid #DCDCDC;
    width: 100%;
    background-color: #ffffff;
    padding: 10px;
}

.right_cart {
    overflow-y: auto;
    overflow-x: hidden;
}

.right_cart_form {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.right_cart_form .cart_right_quantity {
    width: 100% !important;
}

.disable-scroll {
    overflow: hidden;
}

.cart-right-quantity-group {
    position: relative;
    width: 100%;
}

.cart_right_quantity {
    border: 0;
}

.cart_right_quantity:focus {
    outline: unset;
    box-shadow: unset;
}

.cart-right-quantity-group .right-cart-plus {
    all: unset;
    position: absolute;
    top: 20%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 0;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    color: #adadad;
    transition: 0.1s;
    cursor: pointer;
}

.cart-right-quantity-group .right-cart-minus {
    all: unset;
    position: absolute;
    top: 20%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 0;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    color: #adadad;
    transition: 0.1s;
    cursor: pointer;
}

.right-cart-view-more {
    text-align: center;
}

.cart-item-thumb {
    border: 1px solid #a3a3a3;
    border-radius: 5px;
}
/*Select Card*/
.select-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.select-card.selected {
    background-color: #e9f5ff;
    border-color: #1a73e8 !important;
}

.select-details {
    max-width: 80%;
}

.select-price {
    font-weight: bold;
    color: #1a73e8;
}

.select-card .icon {
    display: none;
}

.select-card.selected .icon {
    display: inline-block;
    color: #1a73e8;
}
/*Dropdown Item*/
.dropdown-item .row {
    display: flex;
    flex-direction: column;
}

.dropdown-item .row div {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: none;
}
/*Offcanvas*/
.offcanvas-body .offcanvas-overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    height: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 5;
}

.offcanvas-body .offcanvas-overlay.show {
    opacity: 30%;
    visibility: visible;
}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 575px) {
    .variation_selection {
        display: flex;
        overflow-x: hidden;
        width: 145px;
        padding: 0;
        justify-content: center;
        margin: auto;
    }

    .variation_selection::-webkit-scrollbar {
        width: 2px;
        height: 5px;
    }

    .variation_selection::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px grey;

    }

    .variation_selection::-webkit-scrollbar-thumb {
        background: var(--primary-red-color);

    }
}


.btn-order-status {
    float: left;
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #999;
    cursor: pointer;
}

.order-active, .btn-order-status:hover {
    background-color: var(--black);
    color: white;
    border: 1px solid var(--black);
}

/*Snackbar*/
.snackbar-container {
    transition: all 500ms ease;
    transition-property: top, right, bottom, left, opacity;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    min-height: 14px;
    background-color: #070b0e;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    line-height: 22px;
    padding: 18px 24px;
    bottom: -100px;
    top: -100px;
    opacity: 0;
    z-index: 9999;
}

.snackbar-container .action {
    background: inherit;
    display: inline-block;
    border: none;
    font-size: inherit;
    text-transform: uppercase;
    color: #4caf50;
    margin: 0 0 0 24px;
    padding: 0;
    min-width: min-content;
    cursor: pointer;
}

@media (min-width: 640px) {
    .snackbar-container {
        min-width: 288px;
        max-width: 568px;
        display: inline-flex;
        border-radius: 2px;
        margin: 24px;
    }
}

@media (max-width: 640px) {
    .snackbar-container {
        left: 0;
        right: 0;
        width: 100%;
    }
}

.snackbar-pos.bottom-center {
    top: auto !important;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.snackbar-pos.bottom-left {
    top: auto !important;
    bottom: 0;
    left: 0;
}

.snackbar-pos.bottom-right {
    top: auto !important;
    bottom: 0;
    right: 0;
}

.snackbar-pos.top-left {
    bottom: auto !important;
    top: 0;
    left: 0;
}

.snackbar-pos.top-center {
    bottom: auto !important;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.snackbar-pos.top-right {
    bottom: auto !important;
    top: 0;
    right: 0;
}

@media (max-width: 640px) {
    .snackbar-pos.bottom-center, .snackbar-pos.top-center {
        left: 0;
        transform: none;
    }
}

.product_description img {
    width: 100%;
}
/*Carousel*/
.carousel-item img {
    width: 100%;
	height:440px;
	object-fit:contain;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

/*Thumbnail*/
.thumbnail-wrapper {
    overflow-x: auto;
}

.thumbnail-wrapper::-webkit-scrollbar, .scrollable-tabs::-webkit-scrollbar {
    height: 6px;
    cursor: pointer;
}

.thumbnail-wrapper::-webkit-scrollbar-track, .scrollable-tabs::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.thumbnail-wrapper::-webkit-scrollbar-thumb, .scrollable-tabs::-webkit-scrollbar-thumb {
    background: #dcdcdc;
}

.thumbnail-indicators {
    padding: 20px 0 0 0;
    white-space: nowrap;
}

.thumbnail-indicators .item {
    display: inline-block;
    margin-right: 10px;

}

.thumbnail-indicators .item.active video, .thumbnail-indicators .item.active img {
    border-color: var(--black);
}

.thumbnail-indicators img, .thumbnail-indicators video {
    cursor: pointer;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid transparent
}

.thumbnail-indicators img {
    vertical-align: baseline
}


.thumbnail-indicators::-webkit-scrollbar {
    display: none;
}

.member-login {
    padding: 35px;
    background-color: rgb(51 51 51 / 5%);
}
.error-message {
    display: block;
    font-size: 12px;
    margin-top: 10px
}

.breadcrumbs {
    display: none;
    margin: 0;
}


.border-box {
    padding: 10px 10px
}

.border-box.checkout-wrapper {
    border: 0;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px
}

.checkout-wrapper .cart-item-thumb {
    border-color: #ccc
}

.checkout-wrapper .product-title {
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px
}

.checkout-wrapper .error-message {
    text-align: right
}

.attribute-title {
    color: #646464;
    font-size: 14px;
    margin-right: 10px;
    min-width: 70px
}

.variation_item_selection {
    color: #646464;
    font-size: 14px;
    padding: 5px;
    min-width: 150px;
    margin: 0
}

.btn_cart_remove {
    font-size: 10px;
    color: #003DD9
}

.checkout-price-wrapper label {
    font-weight: bold;
}

.checkout-price-wrapper label.discounted-price-label {
    padding: 0;
    font-size: 16px;
    color: var(--black);
    font-weight: bold
}


.checkout-wrapper .quantity-control {
    justify-content: flex-end;
    margin-top: 15px;
}

.checkout-wrapper .quantity-control * {
    margin-left: -1px;
    font-weight: bold
}

.quantity-control input {
    width: 40px !important;
    border-left: 0 !important;
    border-right: 0 !important
}

.quantity-control button.minus {
    border-right: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.quantity-control button.plus {
    border-left: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.sub-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.owl-stage .item {
    padding: 10px
}

.gray-card {
    background-color: #FAFAFA;
    padding: 20px;
    border-radius: 20px;
}

.section-title {
    font-weight: bold
}

.selected_wrapper.delivery .select-card {
    margin-bottom: 0
}

.selected_wrapper.delivery .select-card:first-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.selected_wrapper.delivery .select-card:last-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.checkout-page .checkout-item {
    display: flex;
    gap: 20px;
}

.checkout-page .checkout-item:last-child {
    margin-bottom: 0
}

.checkout-page .checkout-item .product-title {
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px
}

.checkout-item-desc-title div {
    color: #646464
}

.checkout-page .price-wrapper {
    text-align: right;
}

.checkout-page .price-wrapper p {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 0;
}

.d-flex > .section-title {
    margin-bottom: 0
}

.checkout-page .form-control, .checkout-page .selectize-input {
    border-radius: 5px;
    height: unset
}

.btn.text-primary {
    padding: 0;
    font-size: 12px;
    margin-top: 10px
}


textarea.form-control {
    height: unset;
}

.modal-body input, .modal-body textarea, .modal-body .selectize-input, .modal-body .form-select {
    margin-top: 10px;
    height: unset;
    border-radius: 5px
}

.modal-body .form-select {
    height: 46px
}

.same_as_shipping_address_wrapper {
    font-size: 14px;
}

.location-wrapper > div:last-child .select-card {
    margin-bottom: 0
}

.blue-text-link, .blue-text-link:hover {
    padding: 0px;
    font-size: 12px;
    color: #003DD9;
    border-bottom: 1px solid #003DD9;
    padding-bottom: 0px 0px 1px 0px;
}

.checkout-page .accordion-button:not(.collapsed) {
    background-color: #f9f9f9;
}

.gateway_form .accordion-button:focus, .payment-gateway-accordion .accordion-button:focus {
    box-shadow: none
}

.gateway_form label, .payment-gateway-accordion label {
    display: flex;
    align-items: center;
    min-height: 60px;
    cursor: pointer;
}

.gateway_form label img, .payment-gateway-accordion label img {
    padding: 10px;
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.public-voucher-wrapper .dropdown-toggle {
    font-size: 14px;
    text-align: left;
    border: 1px solid var(--bs-border-color);
    border-radius: 5px;
    padding: 10px 10px
}

.input-group .primary-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.total-price {
    font-size: 20px
}

.mobile-shorcut-menu {
    display: none;
}

.checkout-wrapper .checkout-item {
    padding: 0
}

.order-item-list.gray-card {
    padding: 20px !important
}

@media (max-width: 767px) {

    body, small {
        font-size: 14px;
    }

	.footer-title {
		margin:20px 0 24px 0;
	}
	.footer-listing li a {
		font-size:16px;
	}
    .primary-btn, .primary-btn:hover {
        padding: 8px 10px;
        font-size: 14px;
    }

    .secondary-btn, .secondary-btn:hover {
        padding: 8px 10px;
        font-size: 14px;
    }

    .shocking-sale-wrapper, .weekly-featured-wrapper {
        padding: 15px;
    }


    .border-box.checkout-wrapper img {
        width: 50px;
        margin-bottom: 10px
    }

    .border-box.checkout-wrapper .btn_cart_remove {
        text-align: right;
        margin-top: 15px
    }

    .border-box.checkout-wrapper .primary-btn {
        width: 100%;
    }

    .checkout-item-image-wrapper {
        min-width: 70%
    }

    .checkout-item-desc {
        justify-content: flex-end
    }

    .sticky-element {
        bottom: 49px !important;
        padding: 10px
    }

    .mobile-shorcut-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        width: 100%;
        background-color: var(--white);
        border-top: 1px solid #F1F1F1;
        z-index: 999;
		display:none;
    }

    .mobile-shorcut-menu > div {
        width: 20%;
        text-align: center;
        padding: 10px
    }

    .mobile-shorcut-menu i {
        height: 20px;
        font-size: 24px
    }

    .mobile-shorcut-menu a, .mobile-shorcut-menu p {
        font-size: 8px;
        margin: 0
    }

    .mobile-shorcut-menu i, .mobile-shorcut-menu p {
        cursor: pointer;
    }

    .product-title, .product-listing-price small {
        padding: 0;
    }

    .border-box {
        padding: 10px;
    }

    .img-box img {
        height: 150px;
        object-fit: contain;
    }

    .discount-label-wrapper {
        top: 0;
        font-size: 10px;
    }

    .discount-label-wrapper .discount-label {
        font-size: 10px;
    }

    .product-price-container {
        flex-direction: column;
        text-align: right;
        gap: 0;
    }

    .product-price-container .text-secondary {
        margin: 0;
    }

    .product-price-container * {
        font-size: 14px;
    }

}


.product-stick .product-ori-price, .product-stick .discounted-price-label {
    font-size: 24px;
    font-weight: bold;
}

.product-stick .product_var_color_wrapper {
    margin-right: 10px;
}

.product-stick .discounted-price-label {
    display: inline-block;
    color: var(--black);
    margin-left: 10px;
}

.sku_update_class {
    margin-bottom: 20px;
}

.product-stick .quantity-control * {
    height: 46px;
}

.btn_add_to_compare {
    background-color: transparent;
    border: 1px solid #0d6efd;
    font-size: 14px;
}

.btn_add_to_compare.btn-outline-danger {
    background-color: #0d6efd;
    color: var(--white);
    border-color: #0d6efd;
}

.btn-go-compare {
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #0d6efd;
    border-radius: 0;
    margin-left: 20px;
}

.product-stick .primary-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.sticky-element .primary-btn {
    padding: 7px 35px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    max-height: 40px;
}

.mobile-primary-btn-border {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}


.social-media-container > div {
    cursor: pointer;
}

.variation_selection {
    min-height: 36px;
}

.feature_product_carousel_wrapper_owl_carousel .owl-dots {
    display: none;
}

.category-filter {
    margin-bottom: 35px;
}

.category-filter .form-control {
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.category-filter li label {
    font-size: 14px;
    color: var(--primary-color);
}

.category-filter .btn-show-more {
    color: #A0A0A0;
    font-size: 12px;
}

.category-filter .price-range-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


.offcanvas-body .category-filter .row {
    padding: 0;
}

.feature-brand-wrapper {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.075);
}

.feature-brand-wrapper .owl-carousel img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.feature-brand-wrapper .owl-carousel .owl-dots {
    display: none;
}


.box-classes .border-box.product-list-card {
    padding: 30px 20px !important
}

.discover-section .owl-nav {
    margin: 0
}

.discover-section .owl-stage .item {
    padding: 0 3px;
}

.feature_product_carousel_wrapper_owl_carousel .owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background: #dddddd;
    border-radius: 10px;
    margin: 0 5px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px
}

.feature_product_carousel_wrapper_owl_carousel .owl-carousel button.owl-dot.active {
    background: var(--black) !important
}

.swiper-pagination-bullet-active {
    background: #000 !important;
}

.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
    font-size: 25px
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 17px !important;
    color: var(--black) !important
}

@media (min-width: 991px) {
    .d-flex:has(.desktop-hide) span {
        display: none;
    }
}


@media (max-width: 575px) {
    .auth-slider-wrapper .swiper {
        height: 200px;
    }

    .auth-slider-wrapper .swiper-wrapper {
        height: 200px !important;
    }

    .auth-slider-wrapper .swiper-slide {
        height: 200px !important;
    }

    .auth-slider-wrapper .swiper-coverflow .swiper-slide-active {
        transform: scale(1.5) !important;
        height: 200px !important;
    }

    .auth-slider-wrapper .swiper-coverflow .swiper-slide-active img {
        height: 100%;
        object-fit: cover;
    }


}

.text-truncate--2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: left;
}

@media (max-width: 991px) {
    .text-truncate--2 {
        -webkit-line-clamp: 2;
        height: 45px;
    }

    .sort_by {
       border: var(--bs-border-width) solid var(--bs-border-color);
    }

    .mobile-hide-qty {
        display: none;
    }
}

.btn-secondary {
    padding: 10px 35px;
    border-radius: 5px;
}

.voucher {
    display: flex;
    flex-direction: column;
    border-radius: .25rem;
    padding: 0;
}

.voucher-body,
.voucher-footer {
    display: flex;
    position: relative;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    transition: box-shadow .3s ease;
}

.voucher-body {
    overflow: hidden;
    flex-direction: column;
    box-shadow: inset 0px 0px 0px 1px #e5e9ec;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.voucher-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: .5rem;
    box-shadow: inset 0px -1px 0px 1px #e5e9ec;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.voucher:hover .voucher-footer {
    box-shadow: inset 0px -1px 0px 1px #e5e9ec, 0 0.125rem 0.25rem rgba(33, 37, 41, 0.075) !important;
}

.voucher-text {
    flex: 1 1 auto;
    padding: .5rem 1.5rem;
    min-height: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.voucher-img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.voucher-border-left,
.voucher-border-right {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voucher-border-right {
    right: 0;
}

.voucher-border-left:before,
.voucher-border-right:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid #e5e9ec;
    border-radius: 50%;
    background: #f8f9fa;
}

.voucher-border-left:before {
    left: -15px;
}

.voucher-border-right:before {
    right: -15px;
}

.voucher-details .details-icon,
.voucher-details .details-text {
    display: inline-block;
    vertical-align: middle;
    margin-right: -4px;
}

.voucher-details .details-icon {
    margin-right: 8px;
    width: 24px;
}

.voucher-details .text-title {
    font-size: 10px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: rgba(0, 0, 0, 0.38);
}

.voucher-details .text-description {
    display: flex;
    justify-content: flex-start;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
}

.voucher-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voucher:hover .voucher-overlay {
    opacity: 1;
    visibility: visible;
}

.bg-orange-gradient {
    background: #EB3833;
    background-image: linear-gradient(to right bottom, #ff541e, #ff4835, #fc3d47, #f63657) !important;
}

.owl-theme .owl-nav [class*=owl-] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.more-popup .offcanvas-body {
    padding: 0;
}

.more-popup a {
    display: block;
    font-size: 14px;
    text-align: left;
    padding: 15px 15px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-top: -1px;
}

.more-popup a:hover {
    background-color: var(--black);
    color: var(--white);
}

/* 2024-11-13 */
.scrollable-tabs {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.scrollable-tabs .nav-link {
    display: inline-block;
	font-size:12px;
	font-weight:bold;
	color:var(--black-color);
}
.scrollable-tabs .nav-link.active {
	color:var(--primary-color);
}

.border-title{
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    fill: #223a5e;
    color: #223a5e;
    background-color: #fff;
    padding: 8px 12px;
    border: 3px solid var(--primary-color);
}

.pagination{
    justify-content: center;
}

.page-item a{
    color: var(--black);
    border: 1px solid #e5e5e5;
    transition: 0.15s;
    margin-left: -1px;
}


.page-item.active > a, .page-link:hover{
    display: block;
    color: var(--white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.2rem 0.75rem !important;
  
}

.contact-infos div{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    
}

.contact-infos div i{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 25px;
}

.contact-infos div a{
    color: var(--grey-color);
}

.form-control{
    margin-top: 5px;
}

.product-detail-title , .product-detail-right h3{
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.product-detail-right ul li{
    color: var(--primary-color);
}

.product-description-div p{
    padding-left: 50px;
    padding-right: 50px;
}

.cert-logo{
    height: 100px;
    object-fit: contain;
}

@media (max-width: 991px){
    .product-detail-right{
        margin-bottom: 0;
    }

    .product-description-div{
        margin-top: 0;
    }
}


.owl-nav .owl-next, .owl-nav .owl-prev {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}