:root {
    --primary-color: #ef9820;
    --secondary-color: #6ca242;
	--third-color: #14bbe2;
    --white-color: #fff;
	
}

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

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

.text-second {
    color: var(--secondary-color) !important;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color)
}

.text-right {
    text-align: right !important;
}

.text-first {
    color: var(--primary-color) !important;
}

.bg-first {
    background: var(--primary-color) !important;
}

.bg-success {
    background: #7ED321 !important;
}

.bg-white {
    background: #fff !important;
}

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

label.label {
    display: inline-block;
    text-align: center;
    font-size: 0.75rem;
    padding: .2rem .8rem;
}

.label-secondary {
    background: var(--secondary-color);
    color: #000;
}

.label-info {
    background: #50E3C2;
    color: #fff;
}

.label-success {
    background: #7ED321;
    color: #fff;
}

.label-warning {
    background: #FFAA16;
    color: #fff;
}

.label-danger {
    background: #FF1616;
    color: #fff;
}

.label-light {
    background: #dadada;
    color: #000;
}

.label-dark {
    background: #454545;
    color: #fff;
}

.btn-light {
    background-color: #dadada;
}

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

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

.btn-active {
    background: #38a638;
    color: #fff;
}

.btn-inactive {
    background: #778899;
    color: #fff;
}

.top-header {
    background: var(--primary-color);
    padding: 10px 0;
}

ul.list-style {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.text-left {}

.text-left ul li {
    display: inline-block;
    margin-right: 15px;
}

.text-left ul li a {
    transition: .3s;
    color: #eee;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
}


.social-icons ul li {
    display: inline-block;
    margin-left: 7px;
}

.social-icons ul li a {
    color: #eee;
    font-size: 14px;
    transition: .3s;
}

.social-icons ul li a:hover {
    color: #fff;
}

.text-left ul li a:hover {
    color: #fff;
}

.mainheader {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
    width: 100%;
    background: #fff;
    transition: .3s;
}

.navabr-div {
    justify-content: end;
    display: flex;
    align-items: center;
}

.navabr-div .navlist {}

.navabr-div .navlist ul {
    list-style: none;
    gap: 0 32px;
    display: flex;
}

.navabr-div .navlist ul li {
    position: relative;
    transition: all 0.6s;
}

.navabr-div .navlist ul li a {
    text-align: left;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    color: #3e3d3d;
    padding: 35px 0px;
    transition: all 0.3s;
    text-transform: capitalize;
    position: relative;
    display: block;
}

.navabr-div .navlist ul li:hover .sub-menu {
    display: block;
}

.navabr-div .navlist ul.sub-menu {
    width: 185px;
    position: absolute;
    top: 94px;
    left: 0;
    box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
    display: none;
    z-index: 2;
    border: 1px solid #ecf3fa;
    padding-left: 0;
    background-color: #fff;
    border-radius: 6px;
    transition: all .2s ease-in-out;
}

.navabr-div .navlist ul.sub-menu li {
    list-style: none;
    border-bottom: 1px solid #ecf3fa;
    padding: 0;
}

.navabr-div .navlist ul.sub-menu li .sub-item {
    font-size: 14px;
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ecf3fa;
    padding: 9px 15px 9px 15px;
    white-space: nowrap;
    color: #000;
}

.navabr-div .navlist ul.sub-menu li.nav-items.menu-drop.inner-menu-drop .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.navabr-div .navlist ul.sub-menu li .sub-item:hover {
    background: var(--third-color);
    color: #fff;
}

.navabr-div .navlist .sub-menu li.nav-items.menu-drop.inner-menu-drop:hover .sub-menu {
    display: block;
}

.mainheader .logo-div img {
    width: 154px;
}

.navabr-div .right-opts {
    margin-left: 50px;
}

.navabr-div .right-opts ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.i-box {
    overflow: hidden;
    position: relative;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 50px;
    background-color: transparent;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #4f536b4d;
    transition-duration: 800ms;
    transition: all;
    -webkit-transition-duration: 800ms;
    z-index: 1;
}

.i-box i {
    color: var(--secondary-color);
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    vertical-align: middle;
    line-height: 54px;
    padding-top: 14px;
}

.login-btn {
    display: flex;
    gap: 8px;
    font-size: 18px;
    align-items: center;
    padding-bottom: 4px;
    font-weight: 500;
    position: relative;
    color: var(--primary-color);
    border-bottom: 1px solid #4f536b4d;
}

.login-btn i {
    color: #000;
}

.navabr-div .navlist ul li a i {
     margin-left: 4px;
    font-size: 11px;
}
.mainheader.fixed-header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9;
}

footer {
    background: #023350;
    position: relative;
    z-index: 1;
}

footer:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
   /* background-image: url(../image/f-bg.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .25;
    z-index: -1;
}

.top-footer {
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer-widget {
    margin-bottom: 20px;
}

.f-logo {
    margin-bottom: 20px;
}

.f-logo img {
    width: 185px;
    background: #fff;
    padding: 7px 7px;
    border-radius: 9px;
}

p.f-abt {
    color: #ffffff;
    font-size: 14px;
}

.f-media-list {}

.f-media-list li {
    margin-bottom: 10px;
}

.f-media-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.f-media-list li a i {
    padding: 10px;
    width: 35px;
    height: 35px;
    font-size: 15px;
    margin-right: 6px;
    border-radius: 50px;
    background: var(--primary-color);
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
}

.footer-widget .social-icons {
    margin-top: 17px;
}

.footer-widget .social-icons li {
    margin-left: 0px;
    margin-right: 8px;
}

.footer-widget .social-icons li a {
    display: inline-block;
    font-size: 16px;
    height: 38px;
    padding: 11px;
    width: 38px;
    line-height: 22px;
    text-align: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all .5s ease-in-out;
}

.footer-widget {}

.footer-widget .footer-widget-title {
    color: #ffffff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    z-index: 1;
}

.footer-widget .footer-widget-title:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: #03a297;
    border-radius: 50px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer-widget .footer-widget-title:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    bottom: 0;
    left: 14px;
    z-index: -1;
}

.widget-list ul li a {
    font-size: 16px;
    position: relative;
    color: #ffffff;
    transition: all .5s ease-in-out;
}

.widget-list ul li {
    margin-bottom: 8px;
}

.footer-copyright {
    padding: 28px 0;
    border-top: 1px solid #ffffff1f;
}

.footer-copyright .cpy-text {
    margin-bottom: 0px;
    color: #f5faff;
    font-size: 16px;
}

.footer-copyright .cpy-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-widget .social-icons li a:hover {
    background: var(--primary-color);
}
.i-box:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 0px;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: var(--secondary-color);
} 

.i-box:hover {
    color: #ffffff;
}

.i-box:hover i {
    color: #fff;
}

.i-box:hover::before {
    width: 100%;
    height: 100%;
    right: 0;
    border-radius: 0;
}/*
.navabr-div .navlist ul.sub-menu li.nav-items.menu-drop.inner-menu-drop:first-child .sub-item {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.navabr-div .navlist ul.sub-menu li.nav-items.menu-drop.inner-menu-drop:last-child .sub-item {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}*/
ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0px; 
    z-index: 1;
    padding: 0;
    transform: translate(-50%, 0);
}

ul.slick-dots li {
    margin-right: 6px;
    border-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active { 
    border-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color); 
}

.slider-img {
    width: 100%;
}

.slick-slide {
    height: auto;
}
 .slick-arrow {
    border-radius: 50%;
    position: absolute;
    left: 14px;
    top: 50%;
    font-size: 18px;
    background: var(--secondary-color);
    padding: 12px 13px;
    color: #fff;
    border: 1px solid var(--secondary-color);
    z-index: 1;
}

.banner-slider .NextArrow.slick-arrow {
    right: 10px;
    left: unset;
}

button.PrevArrow.slick-arrow {
    left: 10px;
}
.default-padding {
    padding: 60px 0;
}

.sec-title {
    margin-bottom: 26px;
}

.sec-title h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.cat-box {
    text-align: center;
    margin-bottom: 30px;
}

.cat-box .cat-img img {
    width: 175px;
    border-radius: 50%;
    -webkit-transition: all .3s 0s ease-out;
    -moz-transition: all .3s 0s ease-out;
    -ms-transition: all .3s 0s ease-out;
    -o-transition: all .3s 0s ease-out;
    transition: all .3s 0s ease-out;
}

.cat-box .cat-img {
    overflow: hidden;
    margin-bottom: 10px;
    width: 175px;
    border-radius: 50%;
}

.cat-box h5 {
    font-size: 17px;
    margin-bottom: 9px;
    color: #000;
}

.cat-box:hover {}

.cat-box:hover .cat-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.filter-by-div {
    text-align: center;
} 
.filter-by-div ul {
	    margin-bottom: 20px; 
}

.filter-by-div ul li {
    display: inline-flex;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 99px;
    padding: 2px;
}

.filter-by-div ul li a {
    border-radius: 99px;
    padding: 8px 22px;
    color: var(--secondary-color);
    position: relative;
    background: #efffe2;
    font-weight: 500;
	    font-size: 14px;
}
.filter-by-div ul li a:before{
    position: absolute;
    content: '';
    inset: -2px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.filter-by-div ul li a:after{
        position: absolute;
    content: '';
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 0%;
    border-radius: 99px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: linear-gradient(270deg, var(--secondary-color) 0%, #BDFFF5 48.94%, var(--secondary-color) 98.88%);
    animation: bghover 5s linear infinite;
    background-size: 400% 400%;
    opacity: 0;
}




.filter-by-div ul li a:hover {}

.filter-by-div ul li a:hover::after {
    height: calc(100% + 4px);
    opacity: 1;
}

.product-box {
    border-radius: 16px;
    background-color: #ffffff;
	box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.09);
	    overflow: hidden;
		    margin-bottom: 18px;
}

.product-box .up-div{
    position: relative; 
    overflow: hidden;
    z-index: 1;
    aspect-ratio: 0 !important;
}

.product-box .img-div .img-product {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition-duration: 700ms;
    transform: scale(1);
    vertical-align: middle;
}

.product-box .img-div .img-hover {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition-duration: 700ms;
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-box  .on-sale-wrap {
    position: absolute;
    z-index: 5;
    display: flex;
    gap: 6px;
    top: 20px;
    right: auto;
    left: 20px;
}

.product-box .on-sale-wrap .on-sale-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    word-break: break-word;
    padding: 0px 10px;
    min-width: 50px;
    font-size: 13px;
    font-weight: 500;
    line-height: 26px;
    height: 26px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    background-color: #ff6f61;
    color: #ffffff;
    border-radius: 22px;
}

.product-box  ul.list-product-btn {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 6;
    top: 20px;
    right: 20px;
    gap: 16px;
    padding: 0px;
    margin: 0px;
}

.product-box ul.list-product-btn li.wishlist {
	list-style:none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product-box ul.list-product-btn li.wishlist .box-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    color: #000000;
    position: relative;
    border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
}

span.icon.icon-heart2 {}

.product-box .pr-dt-div {
	text-align:center;
    padding: 20px 12px 22px;
}

.product-box .pr-dt-div h4 {
	    color: #000;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 25.6px;
}

.product-box .pr-dt-div p.price-wrap {
    font-size: 16px;
    line-height: 19.2px;
    color: #000000;
}

.product-box .pr-dt-div p.price-wrap .price-new {
    margin-right: 4px;
    color: var(--secondary-color);
    font-weight: 500;
}

.product-box .pr-dt-div p.price-wrap .price-old {
    color: #000000;
    opacity: 0.6;
    position: relative;
    text-decoration: line-through;
}

.product-box  .btn-flex {
	    display: flex;
    justify-content: space-evenly;
}
 

.product-box .up-div .img-div {
    display: flex;
    width: 100%;
    /* height: 100%; */
    position: relative;
    align-items: stretch;
}
a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    cursor: pointer;
} 

.default-padding.product-section { 
}
.btn:focus {
    box-shadow: none;
}.btn.btn2 {
        border: 1px solid var(--primary-color);
    background: #fff2e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 19px;
    position: relative;
}
.btn.btn1 {
    border: 1px solid var(--third-color);
    color: #fff;
    background: var(--third-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 19px;
    position: relative;
}.btn.btn1:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.btn2:hover {
    background: var(--primary-color);
    color: #fff;
}
.product-box:hover .list-product-btn li.wishlist {.product-box:
    hover .list-product-btn;
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}  
.product-box:hover .img-div .img-product {
    opacity: 0;
}

.product-box:hover .img-div .img-hover {
    display: block;
    z-index: 1;
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.filter-by-div ul li.active a::after {
    height: calc(100% + 4px);
    opacity: 1;
}
.br-15 {
    border-radius: 15px!important;
}
.product-slider .slider-item {
    margin: 10px 10px 15px 10px;
}

.product-slider ul.slick-dots {
    display: none!important;
}
.product-slider .NextArrow.slick-arrow {
    right: -48px;
    left: unset;
}

.product-slider .PrevArrow.slick-arrow {
    left: -48px;
}

.product-slider .slick-arrow {
    top: 43%;
}

.blog-box {
    position: relative;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
}

.blog-box img {
    border-radius: 10px;
}

.blog-box .blog-content {
    margin-top: -66px;
}

.blog-box .blog-content .date-div {
    margin-right: 6px;
    margin-bottom: 17px;
    width: max-content;
    border-radius: 7px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    margin-left: auto;
}

.blog-box .blog-content .date-div span {
    display: block;
}

.blog-box .blog-content .date-div span.date {
    color: var(--secondary-color);
    background: #eee;
    text-align: center;
    font-size: 20px;
    padding: 2px 13px;
}

.blog-box .blog-content .date-div span.month {
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 13px;
    font-size: 12px;
}

.blog-box .blog-content .blog-title {
    color: #000;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 9px;
}

.blog-box .blog-content p.desc {
    margin-bottom: 14px;
    font-size: 13px;
    color: #000;
} 

.blog-box:hover .blog-title {
    color: var(--primary-color);
}

.or-div {
    display: flex;
    justify-content: space-around;
    background: var(--secondary-color);
    padding: 47px 47px;
    border-radius: 30px;
}

.or-div .inner-div {
    text-align: center;
    width: 25%;
    border-right: 1px solid #eee;
}

.or-div .inner-div h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 9px;
    font-size: 28px;
}

.or-div .inner-div p {
    margin-bottom: 0px;
    font-size: 16px;
    color: #eee;
}

.or-div .inner-div:last-child {
    border-right: none;
}
.or-div .inner-div i {
    color: #fff;
    font-size: 55px;
    margin-bottom: 13px;
    display: block;
}

.navabr-div .navlist ul li:hover a.nav-link {
    color: var(--primary-color);
}
.widget-list ul li a:hover {
    color: var(--primary-color);
}
.scroll-top {
    width: 30px;
    height: 30px;
    font-size: 11px;
    display: flex
;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 50px;
    border-radius: 50%;
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: var(--primary-color);
    transition: 1s ease;
}
.scroll-top:before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top:hover {
    background: var(--secondary-color);
    color: #fff;
}
.login-page {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.login-page .inner-div {
    display: flex;
    align-items: center; 
}

.login-page .inner-div .login-form {
    padding: 0 49px;
    width: 50%;
}

.login-page .inner-div .login-img {
    width: 50%;
}

.login-page .inner-div .login-form h4 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 17px;
}

.login-page .inner-div .login-form .form-group {
    margin-bottom: 15px;
}

.login-page .inner-div .login-form .form-group label {
    font-size: 14px;
    margin-bottom: 7px;
}

.login-page .inner-div .login-form .form-group .form-control {
    font-size: 13px;
    padding: 11px 15px;
    border-radius: 8px;
    background: #eeeeee6e;
}
.forgot-text {
    font-size: 13px;
    margin-bottom: 16px;
    margin-top: 8px;
}
.forgot-text a {
    color: var(--primary-color);
    font-weight: 600;
}
.login-page .inner-div .l-logo {
    width: 154px;
    margin-bottom: 10px;
    margin-left: auto;
    text-align: right;
    display: block;
    margin-right: auto;
}
.form-control:focus { 
    border-color: var(--third-color); 
    box-shadow: none;
}
section.breadcrumb {
    margin-bottom: 0px;
    background: #f5f5f575;
    padding: 9px 0;
}
.breadcrumb-content .breadcrumb-menu li {
    display: inline-block;
    margin: 0 9px;
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}
.breadcrumb-content .breadcrumb-menu li a {
    position: relative;
    font-weight: 400;
    color: #282c3f;
}
.breadcrumb-content .breadcrumb-menu li a:after {
    content: '';
    position: absolute;
    top: 4px;
    right: -11px;
    height: 15px;
    width: 1px;
    transform: rotate(22deg);
    background-color: var(--secondary-color);
}
.breadcrumb-content .breadcrumb-menu li:first-child {
    margin-left: 0px;
}

.search-box-div {
    position: relative;
    z-index: 9999;
    height: 100%;
    margin-top: 100px;
}
.search-box-div .search-inner {
    position: relative;
    width: 100%;
}
.search-box-div .search-inner .form-control {
    border: 1px solid #c9c9c9;
    padding: 11px 20px 12px 20px;
    border-radius: 30px;
}
.search-box-div .search-inner .srh-btn {
    border: none;
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 6px;
    border-radius: 50%;
    top: 5px;
}
.searched-result-div { 
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .05);
}
.searched-result-div .inner-div {
    display: block;
    padding-bottom: 10px;
}
.searched-result-div .inner-div a {
    display: flex
;
    width: 100%;
    align-items: center;
    padding: 8px 22px;
    gap: 19px;
}
.searched-result-div .inner-div a .search-icon {
    font-size: 12px;
    color: #b4b6bb;
}
.searched-result-div .inner-div .text {
    font-size: 13px;
    color: #535766;
    font-weight: 500;
}
.searched-result-div .inner-div .text .product-num {
    padding-left: 10px;
    font-size: 11px;
    color: #94969f;
}
.searched-result-div .inner-div a:hover {
    background: #f6f6f6;
}

body.act_searchbar {}

.search-section {
    position: absolute;
    width: 100%;
    height: 100%; 
    top: 0;
}

.search-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000082;
    top: 0px;
    z-index: 999;
}
body.act_searchbar .search-section {
    display: block!important;
}
.search-close {
    cursor: pointer;
    position: absolute;
    right: 26px;
    top: 26px;
    background-color: #fff;
    border: none;
    padding: 0px;
    height: 40px;
    width: 40px;
    font-size: 24px;
    z-index: 9999;
    display: flex
;
    align-items: center;
    justify-content: center;
    line-height: 0px;
    border-radius: 50%;
}
.social-icons li a.facebook {
    background-color: #1877F2;
}

.social-icons li a.twitter {
    background-color: #1A1A1A;
}

.social-icons li a.whatsapp {
    background-color: #25D366;
}

.social-icons li a.insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.category-siebar {
    
}
.sidebar-block {
    background: #fff;
    padding: 16px 12px 15px 20px;
    border-bottom: 1px solid #e9e9ed; 
}
.sidebar-block.filter-div {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.sidebar-block.filter-div h5 {
    margin-bottom: 0pc;
    font-size: 19px;
}
.sidebar-block.filter-div i {
    color: var(--primary-color);
}
.filter-close {
    display: none;
}
 
.sidebar-block .title-div {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-block .title-div h4 {
    margin-bottom: 0px;
    font-size: 17px;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    color: #282c3f;
    width: -webkit-fill-available;
} 
.sidebar-block .title-div .dropdown {
    font-size: 15px;
    color: var(--primary-color);
}
.sidebar-block .title-div .dropdown {
    font-size: 12px;
    color: #717288;
    transition: 0.3s ease;
}
.sidebar-block .inner-div.sub-menu {
    overflow: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.sidebar-block .inner-div .cat-menu-list {
    margin-top: 17px;
}
.sidebar-block .inner-div .cat-menu-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.sidebar-block .inner-div .cat-menu-list li a {
    width: 100%;
    color: #5a5a5a;
    font-size: 14px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
}
.sidebar-block .inner-div .cat-menu-list li.has-item .sub-item-div {
    overflow: hidden;
    opacity: 0;
    padding-left: 1rem;
    height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.sidebar-block .inner-div .cat-menu-list li.has-item .sub-item-div ul {
    padding-bottom: 5px;
    padding-top: 10px;
}
.sidebar-block .inner-div.sub-menu.active {
    overflow: visible;
    height: auto;
    opacity: 1;
}
.sidebar-block .inner-div .cat-menu-list li .form-check .form-check-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 0px);
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}
.sidebar-block .inner-div .cat-menu-list li .form-check .form-check-label span {
    float: right;
    color: #94969f;
    font-size: 11px;
}
.sidebar-block .inner-div .cat-menu-list {
    margin-top: 17px;
}

.sidebar-block .search-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
}
.sidebar-block .search-price-box .form-control {
    padding: 7px 15px;
    font-size: 14px;
}
.sidebar-block .search-price-box .btn.btn1 {
    font-size: 12px;
    padding: 7px 15px; 
    border-radius: 4px;
} 
.showing-results {
    font-size: 15px;
    color: #6c6c6c;
    font-weight: 500;
}

.orderby.form-control {
    padding-right: 30px;
    position: relative;
	    margin-bottom: 15px;
}
.ml-auto {
    margin-left: auto !important;
}
.w-max {
    width: max-content !important;
}
.pagination-more-btn {
    text-align: center;
    margin-top: 25px;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: #606060;
    font-size: 14px;
    padding: 8px 10px;
    letter-spacing: 3px;
    text-decoration: none;
    font-weight: 500;
}

.pagination i {
    font-size: 11px;
}

.pagination a.active {
    color: var(--primary-color);
    font-weight: 600;
}
.product-details-gallery {
    position: relative;
}

.product-gallery-slider img {
    width: 100%;
    min-height: 100%;
}

.product-gallery-slider-nav {
    margin: auto;
}

.product-gallery-slider-nav .item-slick img {
    max-width: 100%;
    background-size: cover;
    background-position: center;
}

.product-gallery-slider-nav .item-slick {
    max-width: 109px !important;
    margin-right: 8px !important;
    outline: none !important;
    cursor: pointer;
}

.product-gallery-slider-nav .slick-arrow {
    display: block !important;
}


.product-gallery-slider-nav img {
    padding: 2px 2px;
    border: 1px solid #e5e7e8;
    border-radius: 4px;
}

.product-gallery-slider {
    margin-bottom: 20px;
}

.product-gallery-slider img {
    width: -webkit-fill-available !important;
    padding: 0 30px;
}

.gallery-img {
    border: 1px solid #eee;
}

.item-detail-box {}

.item-detail-box .brand-name {
    font-size: 16px;
    margin-bottom: 8px;
    color: #535665;
}

.item-detail-box .product-name {
    font-size: 31px;
    margin-bottom: 9px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-div {
    display: flex;
    gap: 13px;
    margin-bottom: 8px;
    align-items: baseline;
}

.price-div .final-pr {
    color: #282c3f;
    font-size: 23px;
    font-weight: 500;
}

.price-div .older-price {
    color: #696e79;
    font-size: 15px;
    font-weight: 500;
    text-decoration: line-through;
}

.price-div .off-price {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #ff905a;
}

.item-detail-box .sub-heading {
    margin-bottom: 13px;
    text-transform: uppercase;
    font-size: 14px;
    color: #3e3d3d;
}

/**/
.item-detail-box p {
    font-size: 13px;
    color: #6c6c6c;
}
 
.seprator {
    border-bottom: 1.5px solid #eaeaec;
    margin: 22px 0;
}
.item-detail-box .btn-div {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
    gap: 20px;
}
.item-detail-box .del-upto {
    font-size: 15px;
    margin-bottom: 10px;
}
 
.item-detail-box .btn-div .btn {
    width: 50%;
    padding: 12px 20px;
    font-size: 15px;
}

.item-detail-box .btn-div .btn i {
    margin-right: 9px;
} 

ul.delivery-info {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
}

ul.delivery-info li {
    margin-bottom: 0px;
    text-align: center;
    justify-content: center;
}

ul.delivery-info li .icon-img {
       width: 44px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 9px;
}

ul.delivery-info li span {
    font-weight: 500;
    font-size: 14px;
    color: #656060;
}
#productModal .modal-dialog {
    max-width: 600px;
}
#productModal .modal-dialog {
    top: 7%;
}
#productModal .modal-content {
    height: auto;
    border-radius: 10px;
    background-color: #fefefe;
    margin: unset;
    border: 1px solid #888;
    width: 100%;
    overflow: visible;
}
#productModal .modal-content .modal-header {
    border-bottom: 0px;
    padding-bottom: 0px;
    position: relative;
}

#productModal .modal-content .modal-header .sucess-label {
    width: 100%;
    padding: 9px 14px;
    background: #b0d6b042;
    border-radius: 5px;
}
#productModal .modal-content .modal-header .sucess-label p {
    margin-bottom: 0px;
    color: green;
    font-weight: 600;
}
#productModal .modal-content .modal-header .close {
    position: absolute;
    top: -15px;
    right: -13px;
    font-size: 23px;
    background-color: #fff;
    z-index: 1;
    height: auto;
    padding: 6px 6px 9px 6px;
    line-height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 20px 0px rgb(82 63 105 / 10%);
}
#productModal .modal-dialog .modal-content .modal-body {
    padding: 0;
}
#productModal .product-detail {
    padding: 20px;
    display: flex
;
    border-bottom: 1px solid #dee2e6;
    align-items: center;
}
#productModal .bottom-btns {
    padding: 14px 17px;
}
#productModal .product-detail .pr-img img {
    height: auto;
    width: 100%;
    border-radius: 10px;
}

.item-detail-box.product-content {
    margin-left: 15px;
}
.item-detail-box.product-content .brand-name {
    font-size: 13px;
    margin-bottom: 1px;
}
.item-detail-box.product-content h3.product-name {
    font-size: 17px;
    margin-bottom: 3px;
    font-weight: 600;
}
.item-detail-box.product-content .price-div {
    margin-bottom: 0px;
}
.item-detail-box.product-content .price-div .final-pr {
    font-size: 18px;
}
.item-detail-box.product-content p.desc1 {
    margin-bottom: 0px;
    font-size: 14px;
} 

#productModal .product-detail .pr-img {
    width: 120px;
}

#productModal .bottom-btns .btn.continue {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.select-bottle {
    display: flex;
    justify-content: space-between;
    gap: 17px;
}

.select-bottle .bottle-box {
    width: 33%;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 15px 45px 15px;
    background: #eeeeee70;
    position: relative;
}

.select-bottle .bottle-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--third-color);
}

.select-bottle .bottle-box h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.select-bottle .bottle-box h6 {
    font-size: 14px;
}

.select-bottle .bottle-box .dis-pr {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #f00;
}

.select-bottle .bottle-box .old-price {
    font-size: 12px;
    margin-bottom: 4px;
}

.select-bottle .bottle-box .old-price span {
    text-decoration: line-through;
}

.select-bottle .bottle-box .b-f-div {
    position: absolute;
    background: var(--secondary-color);
    left: 0px;
    width: 100%;
    bottom: 0px;
    padding: 6px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
} 

.select-bottle .bottle-box.selected {
    border: 1px solid var(--secondary-color);
}

.select-bottle .bottle-box.selected:before {
    content: 'Selected';
    position: absolute;
    right: 9px;
    top: -9px;
    background: #f00;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    width: 69px;
    padding: 0px 1px 2px 1px;
    text-align: center;
    border-radius: 20px;
}
.feature-div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.feature-div .fbox {
    width: 25%;
    background: #eef2ff;
    padding: 13px 12px;
    text-align: center;
    border-radius: 14px;
    margin-bottom: 20px;
}

.feature-div .fbox img {
    width: 62px;
    margin-bottom: 10px;
}

.feature-div .fbox p {
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
}
.accordion-button {
    font-size: 16px;
    padding: 13px 17px;
    font-weight: 500;
}

.accordion-body {
    padding: 11px 11px;
}

.accordion-body ul {
    margin-bottom: 8px;
}

.accordion-body ul li {
    font-size: 15px;
    margin-bottom: 7px;
}
.accordion-item .accordion-button::after {
    background-size: 15px;
}

.accordion-button:not(.collapsed) {
    color: var(--third-color);
    background-color: #e0f9ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: none;
}
 

.ingredient table {
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 1.4rem;
    border-style: hidden;
    border: 1px solid #718a8f;
    background: #ffffff;
} 

.ingredient table:not([class]) td, table:not([class]) th {
    padding: 1em;
    font-size: 14px;
    border: 0.1rem solid #1a323233;
}
.contact-float {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.whatsapp-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.whatsapp-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #25d366;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: .5;
}

.whatsapp-ring-circle-fill,
.whatsapp-ring-img-circle {
     background:#25d366;
    background: #25d366;
}

.whatsapp-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    position: absolute;
    background-color: #25d366;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.whatsapp-btn-icon {
    display: flex;
    text-decoration: none;
}

.whatsapp-ring-img-circle .whatsapp-btn-icon i {
    font-size: 30px;
    color: white;
}

.whatsapp-ring-img-circle {
    background-color: #25d366;
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -webkit-opacity: .1
    }
    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -webkit-opacity: .5
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6
    }
    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .6
    }
}
.fixed-bottombar {
    position: fixed;
    bottom: 0px;
    background: #fff;
    z-index: 11;
    width: 100%;
    /* box-shadow: 0 -2px 2px 2px rgb(0 0 0 / 0.05); */
    border-top: 1px solid #ddd;
}

.fixed-bottombar .inner-flex {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 30px;
}

.fixed-bottombar .inner-flex .product-div {
    width: 33.3%;
}

.fixed-bottombar .inner-flex .pr-type {
    width: 33.3%;
}

.fixed-bottombar .inner-flex .btn-div {
    width: 33.3%;
}

.fixed-bottombar .inner-flex .product-div .prd-decsc {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fixed-bottombar .inner-flex .product-div .prd-decsc .pr-img {
    width: 67px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.product-div .prd-decsc .txt {}

.product-div .prd-decsc .txt h4 {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--primary-color);
}

.product-div .prd-decsc .txt .price-div {
    margin-bottom: 0px;
    gap: 6px;
}

.product-div .prd-decsc .txt .price-div span.final-pr {
    font-size: 18px;
}

.product-div .prd-decsc .txt .price-div span.older-price {
    font-size: 12px;
    opacity: .6;
}

.fixed-bottombar .inner-flex .pr-type .form-group {
    border: 1px solid #ced4da;
    padding: 7px 13px;
    border-radius: 6px;
}

.fixed-bottombar .inner-flex .pr-type .form-group label {
    display: block;
    width: 100%;
    font-size: 11px;
    opacity: .6;
    color: #000;
    margin-bottom: 2px;
}

.fixed-bottombar .inner-flex .pr-type .form-group .form-control {
    border: none;
    padding: 0px;
    font-size: 13px;
    font-weight: 500;
}

.fixed-bottombar .inner-flex .btn-div .btn.btn1 {
    width: 100%;
    padding: 10px 19px;
}
body.product-details-page {
    margin-bottom: 88px;
} 

.faq .accordion-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,.125);
}
.faq .accordion-item:first-of-type {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.faq .accordion-item .accordion-body p {
    font-size: 14px;
    margin-bottom: 8px;
} 

.reviews-col .review-box {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    padding: 13px 18px;
    border-radius: 5px;
    margin-bottom: 13px;
}

.reviews-col .review-box h4 {
    font-size: 18px;
    color: var(--third-color);
    margin-bottom: 9px;
}

.reviews-col .review-box .txt {
    font-size: 15px;
    color: #464545;
}

.reviews-col .review-box .user-dt {}

.reviews-col .review-box .user-dt .review-star {}

.reviews-col .review-box .user-dt .review-star i {
    font-size: 13px;
    color: #ffaa00;
}

.reviews-col .review-box .user-dt h6 {
    color: var(--secondary-rcolor);
    font-size: 17px;
}
.write-review {
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.09);
    overflow: hidden;
    margin-bottom: 40px;
    padding: 35px;
}

.write-review h3 {
    font-size: 27px;
    font-weight: 600;
    text-transform: uppercase;
}
.write-review .btn.btn1 {
    font-size: 16px;
    padding: 7px 19px;
}
.write-review .form-group {
    margin-bottom: 15px;
}

.write-review label {
    font-size: 13px;
    font-weight: 500;
	    margin-bottom: 6px;
    display: block;
}

.write-review .form-group .form-control {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 7px;
}
.select-star i {
    color: #ffaa00;
	      cursor: pointer;
} 
.select-star i:hover::before {
    content: "\f586";
}
.select-star i.selected::before {
    content: "\f586";
}

.d-sidebar {
    border: 1px solid #ededed;
    overflow: hidden;
    border-radius: 13px;
}

.d-sidebar ul {}

.d-sidebar ul li {
    border-bottom: 1px solid #ededed;
}

.d-sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 15px 18px;
    position: relative;
    transition: .3s;
}

.d-sidebar ul li a .icon {
    font-size: 18px;
    margin-top: 3px;
    color: var(--primary-color);
}

.d-sidebar ul li a .text {
    width: -webkit-fill-available;
}

.d-sidebar ul li a .text h6 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;
    color: #282C3F;
}

.d-sidebar ul li a .text p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #94969F;
    display: none;
}

.d-sidebar ul li a .right-arrow {
    font-size: 11px;
    position: absolute;
    right: 11px;
    top: 39%;
}

.d-sidebar ul li a .right-arrow i {
    color: #282C3F;
}

.d-sidebar ul li:last-child {
    border-bottom: none;
}

.d-sidebar ul li a:hover {
    background: #F5F5F6;
}
.white-box {
    background-color: #fff;
    box-shadow: #0000001c 0px 4px 12px;
    overflow: hidden;
    border-radius: 9px;
    padding: 22px 22px;
    margin-bottom: 20px;
}

.white-box .title {
    font-size: 21px;
    margin-bottom: 17px;
    color: var(--secondary-color);
    font-weight: 700;
}
.dash-user-dt {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.dash-user-dt .flex-div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.dash-user-dt .flex-div img {
    width: 62px;
}

.dash-user-dt .flex-div h4 {
    font-size: 19px;
    margin-bottom: 3px;
    color: var(--secondary-color);
}

.dash-user-dt .flex-div p {
    margin-bottom: 0px;
    font-size: 11px;
}
.dashbox {
    border: 1px solid #ededed;
    padding: 16px 20px;
    text-align: center;
    border-radius: 10px;
	    transition: .3s;
}

.dashbox h4 {
    font-size: 15px;
    margin-bottom: 0px;
    margin-top: 11px;
    color: var(--primary-color);
}
.dashbox .img-div {
    width: 73px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.dashbox:hover {
    background: var(--secondary-color);
}
.data-table .table>thead {
    background: #f4f6ff;
}

.data-table .table thead th {
    vertical-align: top;
    font-size: 15px;
}

.data-table tr td {
    vertical-align: middle;
    font-size: 15px;
    padding: 11px 14px;
}
.product-div {
    display: flex;
    align-items: center;
}

.product-div .product-thumb img {
    height: 74px;
    width: 100%;
    border-radius: 6px;
}

.product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1d2025;
    border-radius: 6px;
    width: 118px;
    background-color: #f7f8fd;
}

.product-quantity button {
    color: var(--secondary-color);
    font-size: 16px;
    border: none;
    width: 26%;
    height: 32px;
    outline: none;
    background-color: transparent;
    border-radius: 2px;
}

.product-quantity .qty {
    border: none;
    background: transparent;
    width: 58%;
    text-align: center;
}

.data-table .price-div .final-pr {
    font-size: 20px;
    color: var(--secondary-olor);
}
 

.item-detail-box.product-content .price-div span.older-price {
    font-size: 13px;
}
.white-box .form-group {
    margin-bottom: 15px;
}
.white-box .form-group .form-control {
     border: 1.5px solid #eaeaec;
    padding: 9px 15px;
    border-radius: 7px;
    font-size: 15px;
}
.white-box .form-group label {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--third-color);
}
.address-div {
    width: 100%;
    background: var(--secondary-color);
    padding: 22px 22px;
    border-radius: 11px;
    margin-bottom: 15px;
}

.address-div h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.address-div h5 {
    color: #dcdcdc;
    font-size: 15px;
    margin-bottom: 6px;
}

.address-div h6 {
    color: #eeee;
    margin-bottom: 5px;
    font-size: 13px;
}

.address-div p {
        margin-bottom: 1px;
    color: #eee;
    font-size: 13px;
}
.defaultModal {}

.defaultModal .modal-header {
    padding: 15px 16px;
    background: var(--secondary-color);
}

.defaultModal .close {
    background: transparent;
    padding: 0px;
    border: none;
    font-size: 22px;
    line-height: 8px;
    color: #fff;
}

.defaultModal .modal-header .modal-title {
    font-size: 21px;
    line-height: 21px;
    color: #fff;
}

.defaultModal .modal-body {
    padding: 17px;
}

.defaultModal .modal-body .form-group {
    margin-bottom: 10px;
}
.defaultModal .modal-body .form-group label {
    font-size: 13px;
    margin-bottom: 8px;
}
.tracking-div {
    padding-top: 30px;
}
.tracking-div .tracking-inner {}

.tracking-div .tracking-inner ul {
    display: flex;
    list-style: none;
    padding: 0px;
}

.tracking-div .tracking-inner ul li.bullet-1 {
    position: relative;
    width: 25%;
}

.tracking-div .tracking-inner ul li.bullet-1 .check-tick {
    background-color: var(--primary-color);
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    position: relative;
}

.tracking-div .tracking-inner ul li.bullet-1 .check-tick i {
    color: #fff;
    font-size: 17px;
    position: relative;
    top: 4px;
}

.tracking-div .tracking-inner ul li.bullet-1:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 7px;
    background: #ddd;
    top: 8px;
}

.tracking-div .tracking-inner ul li.bullet-1 .txt {
    margin-top: 15px;
}

.tracking-div .tracking-inner ul li.bullet-1 .txt img {
    width: 65px;
    margin-bottom: 8px;
}

.tracking-div .tracking-inner ul li.bullet-1 .txt span {
    display: block;
    font-size: 15px;
    line-height: 17px;
}

.tracking-div .tracking-inner ul li.bullet-1.active::before {
    background: var(--primary-color);
}

.tracking-div .tracking-inner ul li.bullet-1:last-child::before {
    content: none;
}
.slick-arrow:hover {
    background: var(--third-color);
}
.contact-div {
    text-align: center;
}

.contact-div .cn-iocn {
    margin-bottom: 12px;
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    margin-left: auto;
    border-radius: 50%;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-div .cn-iocn i {
    font-size: 29px;
    color: #fff;
}

.contact-div .txt {
    color: #000;
    font-size: 17px;
    font-weight: 400;
}
.summary-box {
    padding: 24px 26px;
    background: var(--secondary-color);
    border-radius: 17px;
    margin-left: 25px;
}

.summary-box h4 {
    font-size: 21px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 11px;
    font-weight: 600;
}

.summary-box ul.sum-list {
    padding: 0px;
    list-style: none;
}

.summary-box ul.sum-list li {
    color: #eee;
    width: 100%;
    align-items: center;
    display: inline-flex;
    justify-content: space-between;
    margin-bottom: 13px;
}

.summary-box ul.sum-list li p.list-txt {
    color: #fff;
    font-weight: 500;
}

.summary-box ul.sum-list li p {
    font-size: 15px;
    margin-bottom: 0px;
}

.summary-box ul.sum-list li p.ord-amt {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
}

.summary-box ul.sum-list li.total {
    border-top: 1px solid #eee;
    padding-top: 7px;
    margin-bottom: 6px;
}

.summary-box ul.sum-list li.total p.list-txt {
    color: #ffff;
    font-size: 20px;
    font-weight: 500;
}

.summary-box ul.sum-list li p.list-txt2 {
    font-size: 11px;
}

.summary-box ul.sum-list li.total .ord-amt {
    font-size: 20px;
    color: #ffff;
}
.summary-box .product-div .product-thumb img {
    width: 156px;
}

.summary-box .product-div .item-detail-box.product-content {
    margin-left: 12px;
}

.summary-box .product-div h3.product-name {
    font-size: 16px;
}

.summary-box  .item-detail-box.product-content .price-div .final-pr {
    font-size: 14px;
    color: #fff;
}

.summary-box .item-detail-box.product-content .price-div .older-price {
    color: #fff;
    font-size: 10px;
}
.summary-box .product-div {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 15px;
}
.payement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
    padding: 12px 0;
    margin-bottom: 10px;
}

.payement-item label {
    margin-left: 10px;
}

.payement-item strong {
    color: var(--primary-color);
    font-size: 20px;
}

.agree-check .form-check {
    text-align: right;
}

.text-right.agree-check .form-check-input {
    float: unset;
}

.agree-check .form-check .form-check-label {
    font-size: 15px;
    color: #000;
    margin-left: 7px;
}

.agree-check .form-check .form-check-label a {
    color: var(--primary-color);
}

.edit-cart-div {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edit-cart-div p a {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 500;
}

.edit-cart-div .btn.btn1 {
    width: auto;
    border-radius: 30px;
    padding: 10px 28px;
}
.animatemodal .close {
    padding: 0px;
    background: transparent;
    border: none;
    font-size: 25px;
    line-height: 0px;
}

.animatemodal .modal-header {
    padding: 14px 18px;
}

.animatemodal .modal-dialog {
    border-radius: 22px;
}

.animatemodal .modal-header .modal-title {
    font-size: 19px;
    color: var(--secondary-color);
}

.animatemodal .qr-img {
    max-width: 318px;
    height: auto;
    margin: 0 auto;
    padding: 27px 0;
}
.contact-form {
	    margin-top: 30px;
}
.contact-form .sec-title {
    margin-bottom: 16px;
}

.contact-form .sec-title h3 {
    font-size: 32px;
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form .form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
}

.contact-form .form-group .form-control {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 9px;
}
.if-box {
    margin-top: 20px;
    padding: 15px 15px;
    border-radius: 15px;
    border: 1px solid #e7e7e7;
    background: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 5px 0 #225ab60a, 0 0 4px 0 #295cb012;
}

.if-box iframe {
    width: 100%;
    height: 430px;
}
p.desc1 {
    text-align: justify;
    font-size: 16px;
}
.br-20 {
    border-radius: 20px;
}





@media only screen and (max-width: 1366px) {
	
	.text-left ul li a{
		font-size: 12px;
	}
	.top-header ul {
    line-height: 7px;
}
.navabr-div .navlist ul li a{
	    padding: 23px 0px;
		    font-size: 14px;
}
.mainheader .logo-div img {
    width: 125px;
}
.navabr-div .navlist ul { 
    gap: 0 27px;
}
.i-box { 
    width: 37px;
    height: 37px; 
    line-height: 37px;
}
.i-box i{
	    line-height: 37px;
    padding-top: 12px;
    font-size: 12px;
}
.navabr-div .right-opts ul { 
    gap: 15px;
}
.navabr-div .navlist ul.sub-menu{
	top: 67px;
}
.navabr-div .navlist ul.sub-menu li .sub-item{
	padding: 8px 10px 8px 10px;
	    font-size: 12px;
}

	
}


@media only screen and (max-width: 767px) {
    .navabr-div {
        display: none;
        left: -100%;
        top: 0px;
        position: fixed;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
        width: calc(100% - 60px);
        max-width: 341px;
        height: 100% !important;
        background: #fff;
        padding: 30px;
        animation: slide-in-left 1s forwards;
        z-index: 999;
    }

    .toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
        margin-top: 6px;
    }

    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }

    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }

    .toggle-icon span:first-child {
        top: 0;
    }

    .toggle-icon span:nth-child(2) {
        top: 44%;
    }

    .toggle-icon span:last-child {
        bottom: 2px;
    }

    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }

    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }

    .mobile-menu .navabr-div {
        display: block !important;
        overflow-y: auto;
    }

    .navabr-div .navlist ul {
        display: block;
    }

    .navabr-div .navlist ul li a {
        padding: 7px 0px;
        font-size: 15px;
        font-weight: 400;
    }

    .navabr-div .navlist ul li a i {
        position: absolute;
        right: 0px;
        top: 10px;
        font-size: 13px;
    }

    .navabr-div .navlist ul.sub-menu {
        margin-left: 20px;
        position: relative;
        top: 4px;
        box-shadow: none;
        left: 0;
        border: none;
        width: auto;
    }

    .navabr-div .navlist ul.sub-menu li.nav-items.menu-drop.inner-menu-drop .sub-menu {
        top: 4px;
        position: relative;
        left: 0;
    }
    .mainheader {
        padding: 11px 0;
    }
    .text-left ul li { 
        margin-right: 10px;
    }
    .text-left ul li a { 
        font-size: 14px; 
        gap: 4px;
    }
    .social-icons ul li { 
        margin-left: 3px;
    }
    .social-icons ul li a { 
        font-size: 13px; 
    }
    .top-header { 
        padding: 8px 0;
    }
    .mobile-quick-menu {
        display: none;
    }
    .footer-widget .footer-widget-title .mobile-quick-arrow.link {
        display: inline-flex;
        padding-left: 10px;
        float: right;
    }
    
    .footer-widget .footer-widget-title .mobile-quick-arrow.link i {
        display: block!important; 
    }
    
    .widget-list.mobile-quick-menu.active {
        display: block !important;
        margin-bottom: 28px;
    }
    .widget-list ul li a {
        display: block;
        line-height: 20px;
        font-size: 14px;
    }
    
    .footer-widget .footer-widget-title {
        padding-bottom: 12px;
    }
    .footer-copyright {
        padding: 21px 0; 
    }
    ul.slick-dots li{
        width: 6px;
        height: 6px;
        margin-right: 5px;
    }
    .slick-arrow{
        padding: 10px 10px;
        top: 34%;
        font-size: 13px;
    }
    .default-padding {
        padding: 45px 0;
    }
    .sec-title h3 {
        font-size: 30px;
    }
    .cat-box h5 {
        font-size: 13px;
        margin-bottom: 0;
    
    }
    .cat-box { 
        margin-bottom: 20px;
    }
    .cat-box .cat-img img {
        width: 100%;
    }
    .cat-box .cat-img {  
        width: 90px;
    }
    .filter-by-div ul li a{
        font-size: 12px;
        padding: 6px 16px;
    }
    .product-box{
        margin-bottom: 15px;
    }
    .product-box .pr-dt-div { 
        padding: 14px 7px 14px;
    }
    .product-box .pr-dt-div h4{
        font-size: 15px;
    line-height: 20px;
    }
    .product-box .pr-dt-div p.price-wrap {
        font-size: 14px;
    }
    .product-box .btn-flex .btn {
        font-size: 11px;
        padding: 5px 15px;
    }
    .product-box .on-sale-wrap .on-sale-item{
        font-size: 9px; 
    line-height: 19px;
    height: 22px;
    }
    .product-box .on-sale-wrap{
        top: 7px;
        left: 7px;
    }
    .of-bn-section .br-15 {
        margin-bottom: 15px;
    }
    .mb-p-0 {
        padding: 0px!important;
    }
    .sec-title p {
        font-size: 13px;
    }
    .blog-box {
        margin-bottom: 16px;
    }
    .blog-box .blog-content .blog-title { 
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 5px;
    }
    .btn.btn2 {
        font-size: 13px;
        padding: 5px 15px;
    }
    .product-slider .slider-item {
        margin: 10px 5px 0px 10px;
    }
    .or-div{
        display: block;
        padding: 40px 68px;
    }
    .or-div .inner-div {
        padding-bottom: 15px; 
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
        border-right:none;
        width: 100%;
    }
    .or-div .inner-div h5 br {
        display: none;
    }
    .or-div .inner-div h5 { 
        margin-bottom: 9px;
        font-size: 17px;
    }
    .or-div .inner-div i { 
        font-size: 45px;
    }
    .or-div .inner-div:last-child {
        border-right: none;
        border: none;
        padding: 0px;
        margin: 0px;
    }
    .footer-copyright .cpy-text {
        text-align: center;
        margin-bottom: 0px; 
        font-size: 14px;
    }
    .footer-widget .social-icons { 
        margin-bottom: 30px;
    }
    .navabr-div .right-opts {
        margin-left: 0px;
        margin-top: 15px;
    }
    .navabr-div .navlist ul.sub-menu li .sub-item:hover {
        background: transparent;
        color: var(--third-color);
    }

    .product-slider .slick-arrow{
        display:none!important;
    }
	.login-page .inner-div {
    display: block;
	}
	.login-page .inner-div .login-form {
    padding: 22px 33px;
    width: 100%;
}
.login-page .inner-div .login-img {
    width: 100%;
}
.sidebar-block.filter-div {
    margin-bottom: 25px;
    background-color: #dcf8ff;
    padding: 16px 20px;
    border-radius: 10px;
		display: flex !important;
	align-items: center;
	justify-content: space-between;
}
.category-siebar .inner-box {
    display: none;
    position: fixed;
    top: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    padding: 10px;
    left: -450px;
    background: #fff;
    z-index: 99999;
    overflow-x: hidden;
    box-shadow: 5px 0px 13px -7px rgb(0 0 0 / 10%);
    overflow-y: auto;
    transition: .5s all;
}

.category-siebar .inner-box .filter-close {
    display: block!important;
    font-size: 24px;
    line-height: 0px;
    text-align: right;
    margin-bottom: 13px;
} 
body.categoryFilter .category-siebar .inner-box {
    left: 0px;
    display: block !important;
    padding-bottom: 100px;
} 

.category-siebar .inner-box .apply-filter-btn {
    display: block!important;
    padding: 11px;
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 9;
    border-top: 1px solid var(--secondary-color);
}

.category-siebar .inner-box .apply-filter-btn .btn.btn1 {
    width: 100%;
    border-radius: 5px;
}
.row.mb-less>* {
        padding-left: 5px;
        padding-right: 5px;
    }
	.category-show-prdt {
    padding: 0 10px;
}
 .fixed-bottombar .inner-flex { 
    display: flex; 
    padding: 7px 0;
    gap: 22px;
}
body.product-details-page .contact-float {
    bottom: 76px;
}
.fixed-bottombar .inner-flex .btn-div {
    width: 50%;
}
.fixed-bottombar .inner-flex .pr-type { 
    display: none;
}
.fixed-bottombar .inner-flex .product-div .prd-decsc .pr-img {
    display: none;
}
.fixed-bottombar .inner-flex .product-div {
    width: 50%;
}
.product-div .prd-decsc .txt .price-div span.final-pr {
    font-size: 16px;
}
.product-div .prd-decsc .txt .price-div span.older-price {
    font-size: 11px;
}
.product-div .prd-decsc .txt h4 {
    font-size: 14px;
}
body.product-details-page .scroll-top {
    bottom: 93px;
    right: 27px;
}
.item-detail-box {
    margin-top: 30px;
}
.item-detail-box .product-name {
    font-size: 26px;
}
.price-div .final-pr{
	    font-size: 23px;
}
.price-div .older-price{
	    font-size: 14px;
}
.item-detail-box p {
    font-size: 12px;
}
.feature-div {
    flex-wrap: wrap;  
    gap: 10px; 
	margin-bottom: 20px;
}
.feature-div .fbox {
    width: 48%;
	    margin-bottom: 8px;
}body.product-details-page {
    margin-bottom: 76px;
}
.d-sidebar {
    margin-bottom: 20px;
}
.dashbox {
    margin-bottom: 19px;
}    .data-table tr td {
    font-size: 13px;
    padding: 8px 8px;
}
.data-table .table thead th {
    font-size: 12px;
}
.white-box .title {
    font-size: 19px;
    margin-bottom: 13px;
}
.data-table td .product-div {
    width: max-content;
}
.product-div .product-thumb img {
    height: 73px;
}
.form-group .form-control {
    padding: 11px 13px;
    font-size: 14px;
}
.white-box p.desc1 {
    font-size: 14px;
    margin-bottom: 15px;
}
.tracking-div .tracking-inner ul {
    display: block;
}
.tracking-div .tracking-inner ul li.bullet-1 {
    position: relative;
    width: 100%;
    margin-left: 40px;
    display: flex
;
    padding-bottom: 21px;
}
    .tracking-div .tracking-inner ul li.bullet-1:before {
    width: 6px;
    height: 100%;
    background: #ddd;
    top: 8px;
    left: 8px;
}
.tracking-div .tracking-inner {
margin-top: 20px;
}
.tracking-div .tracking-inner ul li.bullet-1.active::before {
background: var(--primary-color);
}
.tracking-div .tracking-inner ul li.bullet-1 .txt {
    margin-top: 0px;
    margin-left: 20px;
}
    .tracking-div .tracking-inner ul li.bullet-1 .txt img {
    width: 51px;
}
.fl-div {
    width: 500px;
    overflow-x: auto;
    margin-bottom: 21px;
}
.filter-by-div ul {
	    margin-bottom: 10px;
    display: flex;
}
.data-table {
        margin-bottom: 20px;
    }

    .summary-box {
        padding: 25px 24px;
        margin-left: 0px;
    }
	.edit-cart-div {
    margin-top: 30px;
    margin-bottom: 30px;
	}
	.white-box .form-group a {
    font-size: 15px;
}



}

@keyframes slide-in-left {
    0% {
        left: -100%;
    }

    100% {
        left: 0px;
    }
}