@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Convergence&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {font-family: "Roboto-Thin";	src: url(../fonts/Roboto-Thin.ttf) format("opentype");}
@font-face {font-family: "Roboto-Light";src: url(../fonts/Roboto-Light.ttf) format("opentype");}
@font-face {font-family: "Roboto-Regular";src: url(../fonts/Roboto-Regular.ttf) format("opentype");}
@font-face {font-weight: 600;src: url(../fonts/Roboto-Medium.ttf) format("opentype");}
@font-face {font-family: "Roboto-Bold";	src: url(../fonts/Roboto-Bold.ttf) format("opentype");}
@font-face {font-family: "Roboto-Black";src: url(../fonts/Roboto-Black.ttf) format("opentype");}

@font-face {font-family: "Poppins-Light";src: url(../fonts/Poppins-Light.ttf) format("opentype");}
@font-face {font-family: "Poppins-Regular";src: url(../fonts/Poppins-Regular.ttf) format("opentype");}
@font-face {font-family: "Poppins-Medium";src: url(../fonts/Poppins-Medium.ttf) format("opentype");}
@font-face {font-family: "Poppins-SemiBold";src: url(../fonts/Poppins-SemiBold.ttf) format("opentype");}
@font-face {font-family: "Poppins-Bold";src: url(../fonts/Poppins-Bold.ttf) format("opentype");}
@font-face {font-family: "Poppins-Black";src: url(../fonts/Poppins-Black.ttf) format("opentype");}

* {box-sizing: border-box;}
body {margin: 0; padding: 0;/*font-family: "Roboto", sans-serif;font-family: "Poppins", sans-serif;font-family: "Roboto-Regular";*/font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;color:#25262B;font-size:18px;line-height:28px;}
ul {list-style: none; margin: 0;padding: 0;}
a {text-decoration: none;}
.desktopShowBox{}
.mobileShowBox{display:none;}
.section-header{}
.section-header .title{font-size:36px;line-height:42px;color: #25262B;font-weight:700;margin-bottom:5px;font-family: "Convergence", sans-serif;/*letter-spacing: 0.29px;text-shadow: 0px 3px 6px #0000001F;font-family: "Poppins-SemiBold";*/}
.section-header .title2{font-size:24px;line-height:30px;color: #25262B;font-weight:600;margin-bottom:5px;font-family: "Convergence", sans-serif;/*letter-spacing: 0.19px;text-shadow: 0px 3px 6px #0000001F;font-family: "Poppins-SemiBold";*/}
.section-header .para{font-size:18px;line-height:26px;color: #25262B;/*letter-spacing: 0.14px;text-shadow: 0px 3px 6px #0000001F;font-family: "Roboto-Medium";*/}
/* ==========================================================================
  PRELOAD ANIMATION
 ========================================================================== */
 
.loading--theme .loader { 
  border-color: transparent #ed3237; 
}

.loading--theme .loader::after {
  border-color: transparent rgba(237, 50, 55, .15); 
}

#loading {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  z-index: 99999999;
}
#loading { 
  background-color: #25262B;
}
#loading-center {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100px;
  width: 100px;
  margin-top: -50px;
  margin-left: -50px;
  -webkit-animation: loading-center-absolute 1s infinite;
  animation: loading-center-absolute 1s infinite;
}
.loader {
  border: 2px solid;
  border-color: transparent #ed3237;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 50px solid;
  border-color: transparent rgba(237, 50, 55, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

/* ==========================================================================
  BACK TO TOP CSS
 ========================================================================== */

.progressParent {
    position: fixed;
    right: 30px;
    bottom: 70px;
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px #ed3237;
    box-shadow: inset 0 0 0 2px #ed3237;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progressParent.rn-backto-top-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.progressParent::after {
    position: absolute;
        font-family: "Font Awesome 7 Pro";
    content: "\f062";
    text-align: center;
    line-height: 36px;
    font-size: 20px;
    color: #ed3237;
    left: 0;
    top: 0;
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-weight: 900;
}
.progressParent svg path {
    fill: none;
}
.progressParent svg.backCircle path {
    stroke: #ed3237;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.customeAppModal{font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}
.customeAppModalDiolog{}
.customeAppModalContent{}
.customeAppModal.show .customeAppModalContent{}
.customeAppModalHeader{}
.customeAppModalHeader .modal-title{
    font-size: 18px;
    line-height: 24px;	
}
.customeAppModalHeader .btn-close{
    width: 16px;
    height: 16px;
    /* background-size: contain; */
    background-position: 50% 50%;
    padding: 0px;
    opacity: 1;
    margin-right: 0px;	
}
.customeAppModalBody{
    padding: 10px 15px;
    font-size: 16px;
    line-height: 22px;	
}
.customeAppModalFooter{
	padding: 10px 15px;	
	display:block;
}



/* web header */

.innerPage-app-header{display:none;}


.web-header {/*position: absolute;top: 0;left: 0;width: 100%;z-index:10;*/position: sticky;top: 0;z-index:10;}

.web-header-bottom{/*width: 100%;border-radius: 40px;padding: 0px 30px;box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.28);border-radius: 0px 0px 48px 48px;background-color:#25262B;*/}
.web-header-bottom {width: 100%;padding: 0px 30px;box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12); background-color: #fff;}
.web-header-bottom-inner{}
.web-header-search{width: 257px;height: 38px;background: #FAFAFA 0% 0% no-repeat padding-box;box-shadow: 0px 2px 4px #0000001F;border-radius: 30px;position:relative;}
.web-header-search .searchInput{background-color:transparent;border:0;width:100%;height:100%;font-size:14px;padding:6px 30px 6px 20px;}
.web-header-search .searchInput:focus{outline:none;}
.web-header-search .icon{position:absolute;top:4px;right:15px;}
.web-header-search .icon img{}
.web-header-bottom-inner .nav-item {padding: 0 15px; position: relative;}
/*.web-header-bottom-inner .nav-item:last-child {padding-right: 0;}*/
.web-header-bottom-inner .nav-item:last-child::before {display: none;}
.web-header-bottom-inner .nav-item .nav-link {font-size: 18px; color: #AAAAAA;color: #000;padding:30px 0 ; transition: all .3s ease-in-out;position:relative;}
.web-header-bottom-inner .nav-item .nav-link:after{content:'';position:absolute;bottom:15px;left:0;background-color:#ed3237;width:0%;height:2px;transition: all .3s ease-in-out;}
.web-header-bottom-inner .nav-item .nav-link:hover {color: #ed3237;}
.web-header-bottom-inner .nav-item .nav-link:hover:after {color: #ed3237;width:100%;}
.web-header-bottom-inner .nav-item.active .nav-link:after {color: #ed3237;width:100%;}
.web-header-bottom-inner .navbar-nav {margin-left: auto;}
.web-header-bottom-inner .navbar {padding: 0;}
.web-header-bottom-inner .navbar .leftPart{flex:1;}
.web-header-bottom-inner .navbar-brand {padding: 0;}
.web-header-bottom-inner .navbar .navbar-collapse{flex-grow: inherit;}

.sub-menu {position: absolute;top: 100%;/*left: -125%;*/right:0;width: 200px;background: #fff;color:#25262B;padding: 0px 0;text-align: left;box-shadow: 0 3px 25px 0 rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;-webkit-box-shadow: 0 3px 25px 0 rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;border-radius: 6px;/*-webkit-transform: rotateX(-90deg);transform: rotateX(-90deg);-webkit-transform-origin: 0 0;transform-origin: 0 0;*/opacity: 0;visibility: hidden;/*-webkit-transform-origin: top;transform-origin: top;-webkit-animation-fill-mode: forwards;animation-fill-mode: forwards;*/ transition: all .5s ease;-webkit-transition: all .5s ease;-moz-transition: all .5s ease;-o-transition: all .5s ease;-ms-transition: all .5s ease;transition: all .5s ease-out;-moz-transition: all .5s ease-out;-ms-transition: all .5s ease-out;}
.web-header-bottom-inner .nav-item:hover .sub-menu {opacity: 1;display: block;visibility: visible;height: auto;/* -webkit-transform: rotateX(0);transform: rotateX(0);*/}
.dropdown_menu {}
.dropdown_menu:after {content: '\f107  ';position: absolute;z-index: 1;top: 30px;right: -2px;font-family: FontAwesome;font-size: 14px;color: #AAAAAA;transition: all ease-in-out .3s;-moz-transition: all ease-in-out .3s;-webkit-transition: all ease-in-out .3s;z-index:2;}
.sub-menu>li {padding: 0;border-bottom: 1px solid #ddd;}
.sub-menu>li:last-child {border-bottom: none;}
.sub-menu>li {list-style: none;padding: 0px !important;}
.sub-menu>li>a {display: block;color: #25262B;padding: 8px 12px;font-size: 14px;line-height: 20px;}
.sub-menu>li>a:before, .sub-menu>li>a:after {display: none;}
.sub-menu>li.active a, .sub-menu>li>a:hover, .sub-menu>li>a:focus {text-decoration: none;color: #000;}
.sub-menu>li:last-child a {padding-right: 10px;}
.sub-menu>li>a:before {display: none;}

.web-header-bottom-inner .rightPart{margin-left:15px;align-items:center;flex:1;}
.web-header-user-dropdown{}
.web-header-user-dropdown-toogler{width: auto; height: 38px; background: transparent; box-shadow: none;border-radius: 30px;display: flex;align-items: center; padding: 0px 20px;font-size: 16px;font-weight: 600;}
.web-header-user-dropdown-toogler .loginLink a {color: #000;padding-left: 20px;}
.web-header-user-dropdown-toogler .loginLink a.loginHedaerLink{}
.web-header-user-dropdown-toogler .loginLink a.loginHedaerLink .icon{}
.web-header-user-dropdown-toogler .loginLink a.loginHedaerLink .txt{display:none;}

.web-header-user-dropdown-toogler .loginLink a.registerHedaerLink{}
.web-header-user-dropdown-toogler .loginLink a.registerHedaerLink .icon{}
.web-header-user-dropdown-toogler .loginLink a.registerHedaerLink .txt{}


.web-header-user-dropdown-toogler .userName{color: #000 !important;}
.web-header-user-dropdown-toogler .arrow i {color: #000;font-size: 13px;}
.web-header-user-dropdown .arrow img {filter: invert(0) !important;}
.web-header-user-dropdown .web-header-user-dropdown-menu { padding: 10px 0;border-radius: 5px;background-color: #fff !important;}
.web-header-user-dropdown .dropdown-item {padding: 0px 16px !important;}
.web-header-user-dropdown .dropdown-item a {text-decoration: none;color: #000 !important;font-size: 14px;/*font-family: "Roboto-Medium";*/}
.web-header-user-dropdown .dropdown-item a:hover {background-color: transparent !important;color: #eb3237 !important;}
.web-header-user-dropdown-toogler .userIcon{display:none;}
.web-header-user-dropdown-toogler .arrow{padding-left: 5px;}
.web-header-user-dropdown-menu{display:none;}
.logout-btn-sec {color: #000 !important;font-size: 14px;background: transparent;border: 0;padding: 0;width: 100%;text-align: left;/*font-family: "Roboto-Medium";*/}
.logout-btn-sec:hover {color: #eb3237 !important;background-color: transparent !important;}
.cart-count-badge {background: #ed3237;color:#fff;width: 18px;height: 18px;display: flex;align-items: center;justify-content: center;font-size: 12px;font-weight: 600;border-radius: 50%;position: absolute;top: -6px;right: -11px;}

.web-header-bottom-inner .topcart {padding: 0 0px 0 0px;}
.cart-toggler{color:#000;}
.cart-toggler .content-cart{}
.cart-toggler .my-cart{}
.cart-toggler .my-cart img{}
.cart-toggler .my-cart .desktopIcon{}
.cart-toggler .my-cart .fontcart{display:none;}
.web-header-bottom-inner .topcart .qty-count {font-size: 14px; position: relative;top: -10px;}
.web-header-bottom-inner .search-switcher{padding:0 0px 0 20px;}
.web-header-bottom-inner .search-switcher .search-opener{font-size: 14px; color: #000;}
.webHeaderMobileSearchArea{display:none;}

 /* Basic styling for the dropdown */
.web-header-user-dropdown { position: relative; display: inline-block;}
.web-header-user-dropdown .web-header-user-dropdown-menu { display: none; position: absolute;left:-15%; background-color: #000; color: #fff;  min-width: 160px;  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); z-index: 1;}
.web-header-user-dropdown:hover .web-header-user-dropdown-menu {display: block; }
.web-header-user-dropdown .dropdown-item {padding: 8px 16px;}
.web-header-user-dropdown .dropdown-item a {text-decoration: none; color: #000;display: block;}
.web-header-user-dropdown .dropdown-item .icon{margin-right:5px;}
.web-header-user-dropdown .dropdown-item a:hover {background-color: #444;color: #000;}
.web-header-user-dropdown .userName { cursor: pointer; color: #000; }
.web-header-user-dropdown .arrow img {filter: invert(1); }




.hpmePanerBannerSliderItem{background-position: 50% 50%;background-repeat: no-repeat;background-size: cover;position:relative;}
.hpmePanerBannerSliderItem:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#20242B;opacity:0.4;}
.hpmePanerBannerSliderIteminner{height:800px;padding:100px 0;position:relative;}
.hpmePanerBannerSliderIteminner .rowBox{align-items:center;}
.hpmePanerBannerSliderThmnail{text-align:center;}
.hpmePanerBannerSliderThmnail img{max-width:80%;}
.hpmePanerBannerSliderContent{}
.hpmePanerBannerSliderContent .title{font-size:32px;line-height:42px;/*font-family: "Poppins-SemiBold";*/font-weight:700;color:#fff;}
.hpmePanerBannerSliderContent .para{font-size:18px;line-height:28px;font-weight: 600;color:#fff;}
.hpmePanerBannerSliderContent .hpmePanerBannerBtns{}
.hpmePanerBannerSliderContent .hpmePanerBannerBtn{min-width: 192px;height: 38px;display:inline-flex;justify-content:center;align-items:center;padding:5px 10px;background-color: #FAFAFA ;border-radius: 30px;font-weight:600;/*box-shadow: 0px 2px 4px #0000001F;text-shadow: 0px 3px 6px #00000061;letter-spacing: 0.14px;*/color: #25262B;}
.custom-dots{padding-top:10px;}
.custom-dots .owl-dots{text-align:left;}
.custom-dots .owl-dots .owl-dot span{width:24px;height:24px;}
.homeCategorySec{}
.homeCategorySecinner{}
.homeCategorySecinner .rowBox{}
.homeCategorySecinner .columnBox{}
.homeCategorySecinner .homeCategoryBox{}
.homeCategoryBoxinner{display: block;box-shadow: 20px 4px 8px #25384F1F;border-radius: 16px;position:relative;overflow:hidden;}
.homeCategoryThumnail{overflow:hidden;border-radius;15px;}
.homeCategoryThumnail img{height:100%;width:100%;object-fit:cover;}
.homeCategoryOverlayCintent{position:absolute;left:0;bottom:0;width:100%;background-color: #20242B ;border-radius: 0px 0px 16px 16px;opacity: 0.47;opacity: 0.6;padding:5px 5px 10px;}
.homeCategoryOverlayCintent .title{font-size:24px;line-height:30px;/*letter-spacing: 0.22px;font-family: "Poppins-SemiBold";text-shadow: 0px 3px 6px #0000001F;*/font-weight:600;color:#fff;}
.homeCategorySliderArea{position:relative;}
.homeCategorySliderArea .swiper-pagination{position: relative;margin-top: 15px;}
.homeCategorySliderArea .swiper-pagination-bullet{}
.homeCategorySliderArea .swiper-pagination-bullet-active{background-color:#ed3237;}
.homeCategorySliderArea .custom-navigation-button{ position: absolute;top: 35%;border: 1px solid #606a78;background-color: transparent;color: #606a78;border-radius: 50%;width: 35px;height: 35px; cursor: pointer;z-index: 1;}
.homeCategorySliderArea .custom-navigation-button.custom-prev{left: -5%;}
.homeCategorySliderArea .custom-navigation-button.custom-next{right: -5%;}




.aboutSec{background-position: 50% 50%; background-repeat: no-repeat; background-size: cover;	position:relative;}
.aboutSec:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#20242B;opacity:0.7;display:none;}
.aboutSecinner{position:relative;}
.aboutContent{}
.aboutContent .title{font-size:36px;line-height:40px;letter-spacing: 0.29px;color: #FFFFFF;text-shadow: 0px 3px 6px #0000001F;font-family: "Poppins-SemiBold";}
.aboutContent .para{font-size:18px;line-height:28px;letter-spacing: 0.22px;color: #FFFFFF;text-shadow: 0px 3px 6px #0000001F;}

.home-aboutUsSec{}
.aboutUsSecinner{}
.aboutUsSecinner rowBox{}
.aboutUsSecinner .columnBox{}
.aboutUsSecinner .home-aboutUsThumnailBox{}
.home-aboutUsThumnailBoxinner{
    aspect-ratio: 3 / 3;
    overflow: hidden;
    border-radius: 30px;	
}
.home-aboutUsThumnailBoxinner img{
    height: 100%;
    width: 100%;
    object-fit: cover;	
}
.mn-about-img {
    position: sticky;
    top: 30px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(50% - 12px));
    grid-row-gap: 24px;
    grid-column-gap: 24px;
	
    grid-template-columns: repeat(auto-fill, calc(50% - 20px));
    grid-row-gap: 10px;
    grid-column-gap: 10px;	
	
}
.mn-about-img img {
	aspect-ratio: 3 / 3;
    width: 100%;
	height:100%;
	object-fit:cover;
    border-radius: 15px;
}
.aboutUsSecinner .home-aboutUsContentBox{}
.home-aboutUsContent{
    height: 100%;
    background-color: #f5f0fa;
    padding: 40px;
    border-radius: 30px;	
}
.home-aboutUsContent .about-meta {
    color: #ed3237;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    display: flex;
font-family: "Convergence", sans-serif;	
}
.home-aboutUsContent .about-meta::before {
    width: 10%;
    content: "";
    min-height: 20px;
    mask-size: 20px;
    mask-repeat: repeat-x;
    background-color: rgb(0, 0, 0);
    mask-image: url(../images/illastrate.svg);
    display: inline-block;
    height: 20px;
    margin-top: 5px;
}
.home-aboutUsContent .about-meta .about-meta-inner{margin-left: 5px;}
.home-aboutUsContent .title{
     font-size: 28px;
    line-height: 34px;
    color: #2d465e;
    /* font-family: "Convergence", sans-serif; */
    font-weight: 600;
    margin-bottom: 10px;
}
.home-aboutUsContent .title-2{
     font-size: 36px;
    line-height: 40px;
    /* letter-spacing: 0.29px; */
    color: #25262B;
    /* text-shadow: 0px 3px 6px #0000001F; */
    font-family: "Convergence", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
.home-aboutUsContent .para{
    font-size: 20px;
    line-height: 26px;	
}
.home-aboutUsContent .viewAllBtnArea{margin-top:30px;}
.home-aboutUsContent .viewAllBtnArea .viewAllBtn{height:50px;}

.partnersSec{}
.partnersSeciner{}
.partnersSec .btmpara {font-size: 18px;line-height: 26px;margin-top: 20px;}
.partnersThumnail{height: 105px; display: flex;justify-content: center;align-items: center;padding:0 20px;}
.partnersThumnail img{height: 100%;width: 100%;object-fit: contain;}
.homeFeatureSec{background-position: 50% 50%; background-repeat: no-repeat; background-size: cover;	position:relative;}
.homeFeatureSec:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#20242B;opacity:0.7;display:none;}
.homeFeatureSecinner{position:relative;}
.homeFeatureContent{}
.homeFeatureContent .title{font-size:36px;line-height:42px;color: #FFFFFF;font-weight:700;font-family: "Convergence", sans-serif;/*letter-spacing: 0.29px;text-shadow: 0px 3px 6px #0000001F;font-family: "Poppins-SemiBold";*/}
.homeFeatureContent .para{font-size:18px;line-height:24px;color: #FFFFFF;/*letter-spacing: 0.22px;text-shadow: 0px 3px 6px #0000001F;*/}
.homeFeatureSlider .owl-nav{	
  margin: 0px;	
}
.homeFeatureSlider .owl-nav .owl-prev, .homeFeatureSlider .owl-nav .owl-next{position: absolute; bottom: 0%;width: 38px;height: 38px;border-radius: 50%;background-color: transparent !important;color: #DBDBDB !important;border: 3px solid #DBDBDB !important;font-size: 22px !important;display: inline-flex;align-items: center;justify-content: center;}
.homeFeatureSlider .owl-nav .owl-prev{left: 42%;}
.homeFeatureSlider .owl-nav .owl-next{right: 42%;}
.homeFeatureSlider .owl-dots{margin-top:50px;}
.homeFeatureSlider .owl-dots .owl-dot{}
.homeFeatureSlider .owl-dots .owl-dot span{width:24px;height:24px;}
.homeFeatureSlider .owl-dots .owl-dot.active{}
.productListingSec{}
.productListingSecinner{}
.productListTabNav{text-align:center;margin-bottom:20px;}
.productListTabNav .nav-pills{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;	
}
.productListTabNav .nav-pills .nav-item{margin-right:3px;}
.productListTabNav .nav-pills .nav-item:last-child{margin-right:0px;}
.productListTabNav .nav-pills .nav-link{
    font-size: 18px;
    line-height: 26px;    
    color: #AAAAAA;
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
    padding: 5px 12px;	
}
.productListTabNav .nav-pills .nav-link.active, .productListTabNav .nav-pills .show>.nav-link{
    border-color: #25262B;
    background-color: #25262B;
    color: #fff;	
}
.productListTabNvContent{}
.productListingSliderArea{position:relative;}
.productListingSliderArea .swiper-pagination{position: relative;margin-top: 15px;}
.productListingSliderArea .swiper-pagination-bullet{}
.productListingSliderArea .swiper-pagination-bullet-active{background-color:#ed3237;}
.productListingSliderArea .custom-navigation-button{ position: absolute;top: 35%;border: 1px solid #606a78;background-color: transparent;color: #606a78;border-radius: 50%;width: 35px;height: 35px; cursor: pointer;z-index: 1;}
.productListingSliderArea .custom-navigation-button.custom-prev{left: -5%;}
.productListingSliderArea .custom-navigation-button.custom-next{right: -5%;}
.productBox{}
.product-list-section .productBox{margin-bottom:25px;}
.productBoxinner{
    border: 1px solid rgba(34, 31, 32, .1);
    padding: 6px 8px 8px;
    border-radius: 22px;
    box-shadow: 0 0 14.604644775390625px #221f2014;
    position: relative;
    background: #fff;   	
}
.productBoxinner .productThumnail{text-align:center; overflow: hidden;aspect-ratio:9/11;}
.productBoxinner .productThumnail img{max-width:100%;width:auto;display: inline-block;height: 100%;}
.productBoxinner .productContent{padding:15px 0 0;}
.productBoxinner .proTitle{
    font-size: 16px;
    line-height: 24px;
    color: #25262B;
    font-weight: 600;
    margin-bottom: 15px;
    /* letter-spacing: 0; 
    height: 45px;*/
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;	
}

.productBoxinner .proPrice{}
.productBoxinner .proPrice .regularPrice{font-size:14px;line-height:20px;letter-spacing: 0px;color: #20242B;font-weight: 600;}
.productBoxinner .productBoxBtm{display:flex;justify-content:space-between;align-items:center;}
.productBoxinner .productBoxBtm .cart-btn{display: inline-flex;align-items: center;background: linear-gradient(275.76deg, #221f20 -33.36%, #505050 139.52%);border-radius: 8px;padding: 5px 10px 7px;font-weight: 500;}
.productBoxinner .productBoxBtm .cart-btn i{}
.productBoxinner .productBoxBtm .cart-btn svg{width:18px;height:18px;margin-right:2px;}

.viewAllBtnArea{}
.viewAllBtnArea .viewAllBtn{display:inline-flex;align-items:center;justify-content:center;min-width: 255px;height: 38px;background: #25262B;background: linear-gradient(275.76deg, #221f20 -33.36%, #505050 139.52%);box-shadow: 0px 2px 4px #0000001F;border-radius: 30px;border-radius: 8px;letter-spacing: 0.14px;color: #FFFFFF;text-shadow: 0px 3px 6px #00000061;font-weight: 600;}
.productListingSlider .owl-item{padding:0 10px;}

.product-list-section .rightProductListingColumn .productCatTitle {
    font-size: 20px;
    line-height: 26px;
    /* letter-spacing: 0.29px; */
    color: #25262B;
    text-transform: capitalize;
    /* text-shadow: 0px 3px 6px #0000001F; */
    /* font-family: "Poppins-SemiBold"; */
    font-weight: 700;	
}
.combinationNotAvailableAlert{margin-top: 15px;margin-bottom: 15px;padding: 12px 15px;border-radius: 5px;font-size: 14px;line-height: 20px;animation: slideDown 0.3s ease;}
.combinationNotAvailableAlert i{}


.web-footer{background-position: 50% 50%; background-repeat: no-repeat; background-size: cover;padding:50px 0 50px;	position:relative;}
.web-footer:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#20242B;opacity:0.91;}
.web-footer-inner{position:relative;}
.webFooterTopArea{}
.webFooterTopArea .rowBox{}
.webFooterTopArea .columnBox{}
.webFooterTopArea .firstColumn{}
.webFooterTopArea .secondColumn{}
.webFooterTopArea .rowBox2{}
.webFooterTopArea .columnBox2{}
.webFooterTopArea .footerBox{margin-bottom:30px;}
.footerBoxinner{}
.footerBoxinner .footerTitle{font-size:18px;line-height:27px;letter-spacing: 0px;color: #EEEDED;text-shadow: 0px 3px 6px #00000029;font-family: "Convergence", sans-serif;margin-bottom:15px;}
.footerBoxinner .usefulLinks{}
.footerBoxinner .usefulLinks li{margin-bottom:5px;}
.footerBoxinner .usefulLinks li:last-child{margin-bottom:0px;}
.footerBoxinner .usefulLinks li a{font-size:14px;line-height:21px;letter-spacing: 0px;color: #FFFFFF;text-shadow: 0px 3px 6px #00000029;}
.footerBoxinner .usefulLinks li a:hover{color:#ed3237;}
.footerContactArea{}
.footerContactItem{margin-bottom:20px;}
.footerContactArea .footerContactItem:last-child{}
.footerContactItem p{font-size:14px;line-height:21px;letter-spacing: 0px;color: #FFFFFF;text-shadow: 0px 3px 6px #00000029;}
.footerContactItem p a{color: #fff;}
.footerContactItem p a:hover{color: #ed3237;}
.aboutFooterArea{}
.footerLogo{text-align:center;margin-bottom:30px;}
.footerLogo img{}
.aboutFooterArea .ftsocialLinks{text-align:center;}
.aboutFooterArea .ftsocialLinks li{display:inline-block;margin-right:10px;}
.aboutFooterArea .ftsocialLinks li:last-child{margin-right:0px;}
.aboutFooterArea .ftsocialLinks li a{font-size:18px;line-height:40px;display:inline-block;width:40px;height:40px;background-color:#fff;color:#000;border-radius:50%;text-align:center;}
.aboutFooterArea .ftsocialLinks li a:hover{}
.webFooterBottomArea{}
.copyRightText{font-size:18px;line-height:28px;letter-spacing: 0px;color: #FFFFFF;}
.copyRightText a{color: #FFFFFF;}
.copyRightText a:hover{color: #ed3237;}


.combo-products-horizontal{}
.combo-products-horizontal .combo-other-product .proThumnailArea{overflow:hidden;aspect-ratio:3/4;}
.combo-products-horizontal .combo-other-product .proThumnailArea img{width: 100%; height: 100%; object-fit: cover;}









@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0)
    }
    100% {
        opacity: 1;
        transform: none
    }
}

.owl-item .slider-content * {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-item.active .slider-animated-1 h1 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.owl-item.active .slider-animated-1 .hpmePanerBannerBtns a {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.owl-item.active .slider-animated-1 span {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.owl-item.active .slider-animated-1 p {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}



@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.animations-disabled, .animations-disabled [data-animation] {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
          animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.fadeOut {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  animation-direction: reverse;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

.zoomOut {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  animation-direction: reverse;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
}

.zoomReverseOut {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
  animation-direction: reverse;
}

.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}




/*

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.4;}
}
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}


@keyframes rotation {
    0% {
    transform: rotate(0);
}
to {
    transform: rotate(359deg);
}
}@keyframes ripple {
    0%, 35% {
    transform: scale(0);
    opacity: 1;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  to {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); } }

@keyframes bounce {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  to {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); } }
			
			

@keyframes off-on {
    0% {
    opacity: 0;
}
75% {
    opacity: 1;
}
to {
    opacity: 0;
}
}
*/

@-webkit-keyframes bounce {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    to {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

@keyframes bounce {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    to {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}




@-webkit-keyframes animate-1 {
    0%,
    to {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0)
    }
    50% {
        -webkit-transform: translateY(-1.5vh) translateX(5vmin);
        transform: translateY(-1.5vh) translateX(5vmin)
    }
}

@keyframes animate-1 {
    0%,
    to {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0)
    }
    50% {
        -webkit-transform: translateY(-1.5vh) translateX(5vmin);
        transform: translateY(-1.5vh) translateX(5vmin)
    }
}

@-webkit-keyframes animate-2 {
    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-15vmin);
        transform: translateY(-15vmin)
    }
}

@keyframes animate-2 {
    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-15vmin);
        transform: translateY(-15vmin)
    }
}

@-webkit-keyframes animate-3 {
    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5vmin);
        transform: translateY(-5vmin)
    }
}

@keyframes animate-3 {
    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5vmin);
        transform: translateY(-5vmin)
    }
}

@-webkit-keyframes animate-4 {
    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(10vmin);
        transform: translateY(10vmin)
    }
}

@keyframes animate-4 {
    0%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(10vmin);
        transform: translateY(10vmin)
    }
}

@-webkit-keyframes animate-5 {
    0%,
    to {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0)
    }
    50% {
        -webkit-transform: translateY(-1.5vh) translateX(5vmin);
        transform: translateY(-1.5vh) translateX(5vmin)
    }
}

@keyframes animate-5 {
    0%,
    to {
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0)
    }
    50% {
        -webkit-transform: translateY(-1.5vh) translateX(5vmin);
        transform: translateY(-1.5vh) translateX(5vmin)
    }
}

@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateIt2 {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes movescale {
    0% {
        transform: scale(.6)
    }
    50% {
        transform: scale(.8)
    }
    to {
        transform: scale(.6)
    }
}

@keyframes movescale {
    0% {
        transform: scale(.6)
    }
    50% {
        transform: scale(.8)
    }
    to {
        transform: scale(.6)
    }
}


@keyframes movebounce {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(8px)
    }
    to {
        transform: translateY(0)
    }
}

@keyframes moveleftbounce {
    0% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(8px)
    }
    to {
        transform: translateX(0)
    }
}

.blackColor {color: #25262B !important;font-weight:600;}
.exchange-text {color: #25262B !important; font-size: 16px !important;}
.inner-web-header {position: relative;}
.bedcum-inner {display: flex;align-items: center;justify-content: space-between;}
.bed-cum-list ul {display: flex;align-items: center;}
.bed-cum-list ul li,.bed-cum-list ul li a,.bed-cum-list ul li span {font-size: 18px;font-weight: 600;letter-spacing: 0.14px;color: #25262B;}
.product-list-tp-right {display: flex;align-items: center;gap: 47px;}
.result-sec p {font-size: 14px;color: #AAAAAA;margin: 0;}
.result-sec p span {color: #25262B;}
.short-btn {border: 1px solid #E4E4E4;background: #fff;display: flex;align-items: center;padding: 3px 12px;border-radius: 6px;gap: 40px;font-size: 14px;}
.short-btn::after {display: none;}
.short-btn i {font-size: 14px;color: #AAAAAA;}
.bedcum-sec {padding: 28px 0 28px !important;}
.product-list-inner {width: 100%;display: flex;}
.product-list-filter-sec {width: 100%;padding: 0px 12px 24px;position: relative;font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}

.product-list-filter-sec::before {content: "";position: absolute;width: 386px;height: 100%;left: -118px;top: 0;width: 342px;box-shadow: 0px 2px 6px #5978960F;border: 1px solid #F8F9FA;border-radius: 12px 12px 0px 0px;display:none;}

.product-list-filter-sec h3 {font-size: 18px;font-weight: 600;text-shadow: 0px 3px 6px #0000001F;letter-spacing: 0.14px;margin-bottom: 18px;}
.product-filter-box h4 {text-shadow: 0px 3px 6px #0000001F;letter-spacing: 0.14px;font-size: 18px;border-bottom: 1px solid #F8F9FA;padding-bottom: 6px;
    text-shadow: 0px 3px 6px #0000001F;
    letter-spacing: 0.14px;
    font-size: 16px;
    border-bottom: 1px solid #F8F9FA;
    padding: 10px 15px;
    background-color: #f5f5f5;
}
.product-filter-box-bottom {padding: 0px 0 0 0;}
.product-filter-box {padding: 15px 0;
    padding: 10px !important;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    min-height: 100px;
}
.company-checkbox {display: block;position: relative;padding-left: 35px;margin-bottom: 12px;cursor: pointer;font-size: 14px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;letter-spacing: 0.11px;}

.company-checkbox input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}

.company-checkmark {position: absolute;top: 2px;left: 0;height: 25px;width: 25px;box-shadow: 0px 1px 2px #00000029;border: 1px solid #BABABA;border-radius: 4px;background: #fff;}

.company-checkbox input:checked ~ .company-checkmark {background-color: #25262B;border-color: #20242B;}

.company-checkmark:after {content: "";position: absolute;display: none;}

.company-checkbox input:checked ~ .company-checkmark:after {display: block;}

.company-checkbox .company-checkmark:after {left: 9px;top: 3px;width: 7px;height: 13px;border: solid white;border-width: 0 3px 3px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);
}

.add-more-sec {display: flex;align-items: center;padding-left: 30px;}

.add-more-sec button {font-size: 14px;color: #6D6D6D;background: #fff;border: 0;padding: 0;letter-spacing: 0.11px;}

.filter-radio {display: block;position: relative;padding-left: 35px;margin-bottom: 12px;cursor: pointer;font-size: 14px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;letter-spacing: 0.11px;}
.filter-radio input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}
.filter-checkmark {position: absolute;top: 2px;left: 0;height: 25px;width: 25px;box-shadow: 0px 1px 2px #00000029;border: 1px solid #BABABA;border-radius: 50%;background: #fff;}

.filter-checkmark:after {content: "";position: absolute;display: none;}

.filter-radio input:checked ~ .filter-checkmark:after {display: block;}

.filter-radio .filter-checkmark:after {top: 2px;left: 2px;width: 19px;height: 19px;border-radius: 50%;background: #25262B;}

.product-list-right {width: 75%;}
.product-list-box {
	/*width: 100%;box-shadow: 0px 1px 4px #00000014;border: 1px solid #F8F8F8;border-radius: 8px;padding: 6px 6px 12px 6px; transition: all .3s ease-in-out;margin-bottom: 28px;box-shadow: 0px 0px 20px 4px rgb(230, 49, 54, 0.1);*/
	    border: 1px solid rgba(34, 31, 32, .1);
    padding: 6px 8px 8px;
    border-radius: 22px;
    box-shadow: 0 0 14.604644775390625px #221f2014;
    position: relative;
    background: #fff;
	}

.product-list-box:hover {box-shadow: 0px 12px 12px #0000001F;}

.product-list-right {width: 80%;padding-left: 18px;}

.product-list-box-info {padding: 11px 6px 0 6px;}

.product-list-box-info .proTitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}
.product-list-box-info .productBoxBtm{
    display: flex;
    justify-content: space-between;
    align-items: center;	
}
.product-list-box-info .proTitle a {color: #25262B;}

.rating-color-sec {display: flex;align-items: center;justify-content: space-between;margin-bottom: 15px;}

.rating-color-sec .rating-sec {font-size: 12px;display: flex;align-items: center;gap: 5px;margin-bottom: 0;}

.rating-color-sec .rating-sec span {font-weight: 600;}

.rating-color-sec .rating-sec i {color: #FFAB2A;}

.color-sec p {display: flex;align-items: center;margin: 0;font-size: 14px;color: #6D6D6D;}

.color-sec p span {color: #25262B;font-weight: 600;margin-right: 4px;}

.rupess-btn-sec {display: flex;align-items: center;justify-content: space-between;}

.rupess-btn-sec p {font-size: 18px;line-height: 24px;letter-spacing: 0px;color: #20242B;font-weight: 600;margin-bottom: 0;}

.cart-btn {
    background: #25262B;
    border: 0;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px 7px;
    border-radius: 8px;
    line-height: 16px;
    display: inline-flex;
    justify-content: center;	
    align-items: center;
    background: linear-gradient(275.76deg, #221f20 -33.36%, #505050 139.52%);
    font-weight: 600;
}
.cart-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 2px;
}
.pagination-inner ul {display: flex;align-items: center;justify-content: center;gap: 10px;}
.pagination-inner ul li .pagination-arrow {width: 38px;height: 38px;display: flex;align-items: center;justify-content: center;border: 2px solid #25262B;color: #25262B;border-radius: 50%;}

.pagination-inner ul li .active {width: 38px;height: 38px;display: flex;align-items: center;justify-content: center;color: #25262B;border: 1px solid #25262B;box-shadow: 0px 1px 2px #00000029;border-radius: 4px;font-size: 18px;}

.pagination-list {font-size: 18px;color: #20242B;}
.pagination-sec {padding: 48px 0;}

.product-list-sec {padding-bottom: 48px;}

.filter-btn {border: 1px solid #E4E4E4;background: #fff;border-radius: 5px;display: none;}

.product-details-one-box-inner a {display: flex;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;align-items: center;justify-content: center;}

.product-details-two-box-inner {display: flex;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;align-items: center;justify-content: center;padding: 0 10px;}

.product-details-slider-two {padding-top: 24px;}

.product-details-two-box {padding: 0 10px;}

.product-details-two-wrapper .product-details-two-box.slick-current .product-details-two-box-inner {border: 1px solid #25262B;}

.aboutFooterArea .ftsocialLinks li a {display: flex;align-items: center;justify-content: center;}

/* product details */
.product-details-right{font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}
.product-details-right h3 {font-size: 20px;font-weight: 600;}
.product-details-right p.productCat {font-size: 16px;font-weight: 500;color: #AAAAAA;margin-bottom: 10px;}
.rating-sec {display: flex;align-items: center;gap: 8px;color: #25262B;font-size: 18px;margin-bottom: 45px; height: 2rem;background-color: rgb(252, 252, 253); backdrop-filter: blur(4px); border: 1px solid rgb(227, 229, 233); padding: 0.5rem 0.625rem; border-radius: 30px;}
.rating-sec p {color: #25262B; margin-bottom: 0;}
.rating-sec i {font-size: 13px;color: #FFAB2A;}
.rating-sec a {font-size: 16px;color: #25262B;font-weight: 200;text-decoration: underline;display:none;}
.details-color-sec p {font-size: 16px;color: #25262B;margin-bottom: 5px;}
.color-bottom {display: flex;align-items: center;gap: 15px;}
.color-box {display: flex; align-items: center;gap:8px;}
.color-container {width: 36px;height: 36px;display: block;position: relative;cursor: pointer;font-size: 22px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.product-details-right h3.product-unit-price{font-size:16px;}
.product-details-right p.total-product-unit-price{font-size:16px;}
.variationNotFoundAlert{font-size: 14px;line-height: 18px;padding: 10px;font-weight: 400;}

.product-details-right .blackColor{	
    color: rgb(41, 45, 53) !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 16px;
}
.product-attribute-block .attributeHeadingSec .sizeGuideBtn{font-size: 16px;font-weight: 600;color: rgb(32, 123, 180);display:none;}
.product-attribute-block .attributeHeadingSec .selectItem{display:inline-block;font-size: 14px;font-weight: 400;margin-bottom:0px;}
.product-attribute-block .attributeHeadingSec .selectItem strong{font-weight:600;}
.product-attribute-block.Size .attributeHeadingSec .sizeGuideBtn{display:inline-block;}
.product-attribute-block.Size .attributeHeadingSec .selectItem{display:none;}
.product-attribute-block.febric  .size-container{width:70px;}


.color-container input {position: absolute;opacity: 0;cursor: pointer;}

.color-checkmark {position: absolute;top: 0;left: 0;height: 36px !important;width: 36px !important;border-radius: 6px !important;border: 1px solid rgb(227, 229, 233);}

.color-checkmark:after {content: "";position: absolute;display: none;}

.color-container input:checked ~ .color-checkmark:after {display: block;}

.color-container .color-checkmark:after {top: 0px;left: 0px;width: 34px;height: 34px;border-radius: 6px;}

.color-container .color-checkmark.blackbgColor:after {border-color: #363E5D;}
.color-container .color-checkmark.bluebgColor:after {border-color: #537DCC;}
.color-container .color-checkmark.deepBluebgColor:after {border-color: #A9C6F7;}

.blackbgColor {background-color: #363E5D;}
.bluebgColor {background-color: #537DCC;}
.deepBluebgColor {background-color: #A9C6F7;}
.color-right p {font-size: 16px;color: #AAAAAA;font-weight: 200;margin: 0;padding-bottom: 8px;}
.details-color-sec {margin-bottom: 40px;}
.size-sec {width: 340px;margin-bottom: 40px;}
.size-top {display: flex;align-items: center;justify-content: space-between;margin-bottom: 15px;}
.size-top h4 {font-size: 16px;margin: 0;}
.size-top a {font-size: 16px;color: #6D6D6D;text-decoration: underline;}
.size-container {display: block;position: relative;cursor: pointer;min-width: 40px;min-height: 40px;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.size-container input {position: absolute;opacity: 0;cursor: pointer;}
.size-checkmark {position: absolute;top: 0;left: 0;height: 100%;width: 100%;background-color: #fff;border:1px solid rgb(227, 229, 233);border-radius: 6px;color: #25262B;font-size: 16px; display: flex;align-items: center;justify-content: center}
.size-bottom {display: flex;align-items: center;gap: 12px;}
.size-container input:checked ~ .size-checkmark {background-color: #20242B;color: #fff;}
.product-bottom-sec {display: flex;align-items: center;justify-content: space-between;margin-bottom: 70px;}
.product-bottom-sec p {font-size: 28px;font-weight: 600;color: #25262B;margin: 0;}
.share-btn {
    width: 60px;
    height: 56px;
    border: 1px solid #25262B;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0px 3px 6px #00000029; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background-color: rgb(254, 254, 254);
    border: 1px solid rgb(232, 232, 232);	
}
.deliveryText{font-size:14px;}
.product-bottom-sec-inner {display: flex;align-items: center;gap: 28px;}
.product-quantity {width: 100%;height: 45px;border: 1px solid #25262B;border-radius: 30px !important;overflow: hidden;    display: flex;align-items: center;}
.product-quantity button {border: 0;background: #fff;color: #6D6D6D;font-size: 21px;width: 100%px;height: 100%;display: flex;align-items: center;justify-content: center;font-size: 17px;}
.sub {padding: 0 15px 0 15px;border-right: 1px solid #25262B !important;}
.add {padding: 0 15px 0 15px;border-left: 1px solid #25262B !important;}
.product-quantity input {width: 59px;height: 100%;border: 0;text-align: center;outline: none;}
.buy-now-btn {
	font-size:16px;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 8px;
    height: 45px !important;
    background-color: #25262B;
    font-weight: 600;	
}
.buy-now-btn:hover{ background-color: rgb(128, 0, 0);}

.product-bottom-sec .btn.disabled{background-color: #cfcccc !important;border-color: #ddd !important;}

.product-bottom-sec .btn.disabled:hover{background-color: #cfcccc !important;border-color: #ddd !important;}



.add-tocart-btn {
	font-size:16px;
    padding:10px 20px;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 8px;
    height: 45px !important;
    background-color: #25262B;
    font-weight: 600;	
}
.add-tocart-btn:hover{ background-color: rgb(128, 0, 0);}



.brownColor {color: #AAAAAA;}
.delivery-sec {display: flex;align-items: center;justify-content: space-between;}
.delivery-sec p {color: #25262B;margin: 0;}
.delivery-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #25262B;
    border: 1px solid rgb(232, 232, 232);
    width: 100%;	
}
.delivery-box input {
    width: 300px;
    height: 46px;
    border: 0;
    background: #fff;
    outline: none;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 16px;	
}
.delivery-box .check-btn {
    height: 100%;
    background: transparent;
    border: 0;
    /* border-left: 1px solid #25262B; */
    font-size: 16px;
    color: #25262B;
    position: absolute;
    right: 0px;
    top: 0;
    padding: 3px 18px;
    font-weight: 600;
    color: rgb(32, 123, 180);	
}

.kh-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;  
}
.kh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 10px;
  max-width: 600px;
}
.kh-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.kh-label {
  display: block;
  font-size: 13px;
  color: #777;
}
.kh-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-top: 2px;
}

.sizeGuideModal{}
.sizeGuideModalDiolog{max-width: 360px;width: 100%;}
.sizeGuideModalContent{}
.sizeGuideModalHeader{padding:10px 15px;}
.sizeGuideModalHeader .modal-title{font-size:18px;}
.sizeGuideModalHeader .btn-close{padding: 0px}
.sizeGuideModalBody{}
.sizeGuideThumnail{}
.sizeGuideThumnail img{max-width: 150px;}
.sizeGuideDetailsArea{}
.sizeGuideTabNavArea{margin-bottom:10px;}
.sizeGuideTabNavArea .nav-pills{justify-content:center;}
.sizeGuideTabNavArea .nav-pills .nav-item{margin-right:5px;}
.sizeGuideTabNavArea .nav-pills .nav-item:last-child{margin-right:0px;}
.sizeGuideTabNavArea .nav-pills .nav-link{
    padding: 5px 15px;
    font-size: 12px;
    line-height: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #000;
    font-weight: 500;	
}
.sizeGuideTabNavArea .nav-pills .nav-link.active, .sizeGuideTabNavArea .nav-pills .show>.nav-link{
 background-color: #000;
    border: 1px solid #000;
    color: #fff;	
}
.sizeGuideTabContentArea{}
.sizeGuide_table {}
.sizeGuide_table th, .sizeGuide_table td{font-size: 12px;line-height: 16px;padding: 4px;text-align: center;}
.sizeGuide_table thead tr th{}
.sizeGuide_table tbody tr td{}




.product-details-one-box-inner a img {height: 437px;}
.product-details-bottom-box {padding: 44px 0;font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}
.product-details-bottom-box h2 {font-size: 18px;font-weight: 700;}
.speacification-table table {width: 100%;}
.speacification-table {overflow: hidden;border-radius: 12px;}
.speacification-table table tbody tr td.Specification-box  {background: #F0F0F0;padding: 12px;font-size: 14px;font-weight:500;  border: 1px solid #F0F0F0;}
.speacification-table table tbody tr {border: 1px solid #EBEBEB;}
.speacification-table table tbody tr td {border: 1px solid #EBEBEB;padding: 12px 50px;}
.product-details-bottom-box-heading {display: flex;align-items: center;justify-content: space-between;margin-bottom:10px;}
.product-details-bottom-box-heading a {font-size: 16px;font-weight: 600;color: #25262B;/* text-decoration: underline; */color: rgb(32, 123, 180);}
.quary-sec ul li {border-bottom: 1px solid #EBEBEB;padding: 12px 0;}
.quary-sec ul li h3 {font-size: 18px;color: #232F34;}
.quary-sec ul li p {font-size: 18px;font-weight: 500;margin: 0;}
.border0 {border: 0 !important;}
.review-sec ul li {border-bottom: 1px solid #EBEBEB;padding: 14px 0;}
.review-sec ul li h3 {font-size: 18px;}
.review-secound-sec {display: flex;align-items: center;justify-content: space-between;}
.review-rating {display: flex;align-items: center;}
.review-rating p {font-size: 16px;margin: 0;margin-right: 5px;}
.review-rating i {font-size: 13px;color: #FFAB2A;}
.review-secound-sec p {font-size: 14px;color: #AAAAAA;margin: 0;}
.review-sec ul li p {font-size: 16px;margin-right: 10px;}
.review-image-sec {display: flex;align-items: center;gap: 15px;}
.review-img-box a {width: 130px;height: 116px;border: 1px solid #EBEBEB;border-radius: 8px;display: inline-block;}
.review-img-box a img {width: 100%;height: 100%;object-fit: contain;}

/* cart sec */
.cart-details-list {display: flex;align-items: center;justify-content: space-between;position:relative;}
.cart-details-list-left {display: flex;align-items: center;gap: 25px;}
.cart-details-list-left .main-product-display{display: flex;}
.cart-img {width: 100px;height:120px;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;display: flex;justify-content: center;}
.cart-img img {width: 90px;height:175px;object-fit: contain;}
.cart-details-list-left .cart-img{margin-right:20px;}
.cart-details-list-left .cart-info-box{ -webkit-box-flex: 1; -ms-flex: 1; flex: 1;}
.cart-details-list-left .cart-info-box .leftSide{padding-right:50px;}
.cart-details-list-left .cart-info-box .rightSide{padding-right:50px;}
.cart-info-box h3 {font-size: 18px;line-height: 24px;font-weight:600;margin-bottom: 3px; 
display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.cart-info-box p {font-size: 16px;line-height: 22px;color: #AAAAAA;margin-top: 0px;margin-bottom: 5px;}
.size-delite-sec {display: flex;align-items: center;margin-bottom: 10px;gap: 15px;margin-bottom: 10px;margin-top: 5px;}
.size-delite-sec .proSize{ font-size: 16px;}
.cart-details-list-left .main-product-display .product-quantity {
    width: 90px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;    
}
.cart-details-list-left .main-product-display .product-quantity .count {
    width: 40px;
    height: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}
.cart-details-list-left .main-product-display .product-quantity button {    
    font-size: 10px;
    padding: 5px 5px;
}
.cart-details-list-left .main-product-display .product-quantity button.sub {border-right: 1px solid #ddd !important;}
.cart-details-list-left .main-product-display .product-quantity button.add {border-left: 1px solid #ddd !important;}
.cart-details-list-left .cart-info-box .rightSide .combo-product-price{display: flex;justify-content: center;align-items: center;gap: 5px;}
.cart-details-list-left .cart-info-box .rightSide .combo-product-price .price{font-size: 14px;font-weight: 600;}
.cart-details-list-left .cart-info-box .rightSide .combo-product-price .size{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    line-height: 14px;
    font-weight: 700;
    width: 14px;
    height:14px;
    background-color: #000;
	border:1px solid #000;
    color: #fff;
    border-radius: 50%;	
}
.cart-details-list-left .cart-info-box .rightSide .combo-product-price .size .Large{}
.cart-details-list-left .cart-info-box .rightSide .combo-product-price .color{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 17px;
    font-weight: 600;
    width:14px;
    height: 14px;
    background-color: #fff;
	border:1px solid #ddd;
    color: #000;
    border-radius: 50%;	
}
.cart-details-list-left .cart-info-box .rightSide .combo-product-price .color.Green{
	background-color: #198754;
	border:1px solid #198754;
    color: #fff;	
}

.size-box {width: 73px;height: 36px;border: 1px solid #25262B; display: flex;align-items: center;justify-content: center;border-radius: 30px;}
.delite-btn {width: 32px;height: 32px;background: #F9F9F9;border: 0; box-shadow: 0px 3px 6px #00000029;border-radius: 50%;display: flex;align-items: center;justify-content: center;font-size: 15px;color: #C60B0B;}
.cart-details-list .delite-btn{position:absolute;top:0;right:0;}
.cart-info-box p {font-size: 16px;color: #25262B;margin: 0;margin-top: 10px;}
.cart-price-sec {/*width: 250px;*/}
.cart-peice-box ul li {display: flex;align-items: center;justify-content: space-between;margin-bottom: 5px;}
.cart-peice-box ul li p {font-size: 14px;line-height:20px;color: #BABABA;margin: 0;}
.cart-peice-box ul li span {font-size: 16px;line-height:22px;font-weight: bold;}
.cart-peice-box ul li .rupess {font-size: 16px;line-height:22px;color: #232F34 !important;font-weight: bold;}
.cart-peice-box {/*padding: 5px 0;border-bottom: 1px solid #EBEBEB;*/}
.cart-peice-box .subColor {font-size: 16px;font-weight: 600;color: #232F34;}
.cart-details-list-box {padding: 10px 0;border-bottom: 1px solid #EBEBEB;}

.cart-delivery-sec {display: flex;align-items: center;justify-content: space-between;}
.total-sec {display: flex;align-items: center;justify-content: space-between;padding: 5px 0;border-bottom: 1px solid #EBEBEB;}
.total-left {display: flex;align-items: center;gap: 15px;}
.total-left p {font-size: 16px;line-height:24px;font-weight: 600;}
.cart-delivery-sec p {color: #AAAAAA;}
.place-btn-sec {text-align: right;padding-top: 20px;}
.cart-details-sec {padding-bottom: 80px;font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}
.cart-details-sec .place-btn-sec .add-tocart-btn{height: auto !important;}

.cart-info-box p {font-size: 16px;line-height:22px;color: #AAAAAA;margin-bottom: 10px;}
.cart-details-list-left .color-right .colorText{}
.cart-details-list-left .color-right .colorIcon.White{}
.cart-details-list-left .color-right .colorText.White{}
.cart-details-list-left .color-right .colorIcon.Green{}
.cart-details-list-left .color-right .colorText.Green{}
.cart-details-list-left .color-right .colorIcon.Maroon{}
.cart-details-list-left .color-right .colorText.Maroon{}
/* address sec */

.address-wrapper {display: flex;}
.address-left {width: calc(100% - 360px);padding-right: 18px;}
.address-right {width: 360px;}
.address-left-inner {width: 100%;background: #fff;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;}
.address-left-header {display: flex;align-items: center;justify-content: space-between;}
.address-header-left h2 {font-size: 22px; margin-bottom: 12px;}
.address-header-left ul {display: flex;align-items: end;}
.address-header-left ul li {font-size: 14px;font-family: "Poppins-Regular";padding: 0 14px;}
.address-header-left ul li:first-child {padding-left: 0;}
.address-header-left ul li:last-child {padding-right: 0;}
.add-address-btn {display: block;width: auto;height: 32px;padding: 0 10px;background-color: #F0F0F0;font-size: 12px;font-weight: 600;border: 1px solid #25262B;border-radius: 100px;letter-spacing: 1px;text-align: center;color: #25262B;
    height: auto;
    padding: 4px 10px 5px;
    background-color: #fff;
	border: 1px solid #d63035;
	color: #d63035;
    font-size: 12px;
    line-height: 16px;       
    border-radius: 30px;
	letter-spacing:0px; 
    text-align: center;
    
}
.gstn-btn {background-color: #fff;margin-top: 0px; padding: 0 30px 0 12px;}
.address-left-bottom table {width: 100%;}
.address-left-bottom table tbody tr td address p {font-size: 14px;font-family: "Poppins-Regular";margin: 0;}
.action-btn-sec {display: flex;align-items: center;justify-content: center;}
.action-btn-sec .edit-btn {margin-right: 24px;color: #25262B !important;}
.address-left-bottom table tbody tr td:first-child {width: 19%;padding:10px 15px;}
.address-left-bottom table tbody tr td:nth-child(2) {width: 40%; padding:10px 15px;}
.address-left-bottom table tbody tr td:nth-child(3) {width: 20%;padding: 0 12px;}
.address-left-bottom table tbody tr td:last-child {width: 20%; padding:10px 15px;}
.address-left-bottom table tbody tr td .filter-checkmark {left: 50%;transform: translate(-50%, -50%);}

.address-left-bottom.payment-method-table table tbody tr td:first-child {width: auto;}
.address-left-bottom.payment-method-table table tbody tr td:nth-child(2) {width: 100%;padding:10px 15px;}
.address-left-bottom.payment-method-table table thead tr th:first-child{width: auto;text-align:center;}
.address-left-bottom.payment-method-table table thead tr th:nth-child(2){text-align:left;}




.address-left-header {border-bottom: 1px solid #EBEBEB;padding: 10px 15px;align-items:center;}
.address-left-header .address-header-right{display: flex;gap: 5px;}
.address-delivery-sec p {font-size: 16px;color: #AAAAAA;margin: 0;margin-top: 16px;}
.address-right-top {box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;padding: 6px 0;}
.address-right-top h3 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    border-bottom: 1px solid #EBEBEB;
    padding: 5px 15px 11px;	
}
.address-right-box {padding: 8px 15px;border-bottom: 1px solid #EBEBEB;}
.address-right-box h4 {font-size: 12px;line-height:16px;font-weight: 600;}
.address-right-box ul li {display: flex;align-items: center;justify-content: space-between;}
.address-right-box ul li p {font-size: 14px;line-height:20px;color: #AAAAAA;color: #585757;font-weight: 500;margin: 0;}
.address-right-box ul li span {font-size: 14px;font-weight: 500;font-weight: 600;}
.total-text {font-family: "Poppins-SemiBold" !important;}
.address-right-bottom {display: flex;align-items: center;justify-content: space-between;margin-top: 18px;}
.address-right-bottom button {width: 100%;}
.shopping-btn {height: 36px;border: 1px solid #25262B;font-size: 14px;font-family: "Poppins-SemiBold" !important;border-radius: 100px;background: #fff;}
.address-sec {padding-bottom: 50px;font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}
.address-table-header {display: none;}
.address-table-header th {font-size: 14px;font-weight: 400;font-family: "Poppins-Regular";padding: 15px;white-space: nowrap;}
.address-right-box-inner{gap: 12px;}
.address-right-box-inner .leftPart{gap:5px;}
.address-right-box-inner .cart-image{width: 40px; height: 60px; flex-shrink: 0;}
.address-right-box-inner .cart-image img{width: 100%; height: 100%; object-fit: cover; border-radius: 4px;}
.address-right-box-inner .cart-icon{width: 60px; height: 60px; flex-shrink: 0; background: #f5f5f5;color: #ccc;display: flex; align-items: center; justify-content: center; border-radius: 4px;}
.address-right-box-inner .rightPart{}
.address-right-box-inner .rightPart .proPrice{font-size: 16px;line-height: 20px;}




/* address add btn */

.address-add-form {/*background: #fff;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;*/}
.address-add-form h2 {font-size: 22px;font-weight: 600;text-align: center;padding: 11px 0;border-bottom: 1px solid #EBEBEB;margin: 0;}
.address-add-from-inner {padding: 20px 15px 20px;}
.address-add-from-inner .rowBox{margin-left:-10px;margin-right:-10px;}
.address-add-from-inner .columnBox{padding-left:10px;padding-right:10px;}
.address-add-from-inner .address-form-box{margin-bottom:20px;}
.address-form-box label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;	
}
.address-form-box input,.address-form-box select {
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding: 4px 20px;
    outline: none;
    appearance: none;	
}
.capta-form {position: relative;}
.capta-form .capta-box {width: 264px;position: absolute;left: 4px;top: 4px;background: #000;height: 37px;border-radius: 100px;}
.capta-form input { padding-left: 278px;text-align: right;}
.address-add-btn-sec {display: flex;align-items: center;justify-content: center;gap: 12px;padding-top: 10px;}
.address-add-btn-sec button {
    min-width: 140px;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 15px;
    height: auto !important;	
}
.address-add-sec {font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;padding-bottom: 50px;}
.gstn-from {color: #004392;}
 

/* payment sec */
.payment-table-top tr  th {font-size: 14px;font-weight: 400;font-family: "Poppins-Regular";padding: 5px 15px;white-space: nowrap;text-align: center;}
.payment-table-top tr {border-bottom: 1px solid #EBEBEB;}
.payment-table-top tr th:first-child {width: 20%;}
.payment-table-top tr th:last-child {width: 80%;text-align: left;}
.payment-table tbody tr td {padding: 10px 15px;}
.payment-table tbody tr td .payment-box {display: flex; align-items: center;}
.payment-box p {font-size: 14px;font-family: "Poppins-SemiBold";margin: 0;}
.payment-box img {margin-left: 46px;}
.payment-box select {width: 132px;height: 20px;background: #F0F0F0;border: 1px solid #25262B;outline: none;font-size: 12px;color: #596477;border-radius: 100px;padding: 0px 5px;margin-left: 46px;}
.payment-left .address-left-inner {height: 315px;}
.place-btn {padding: 4px 23px;}

/* order list */

.date-short-sec {display: flex;align-items: center;gap: 28px;}
.date-sec {height: 28px;display: flex;align-items: center;border: 1px solid #E4E4E4;border-radius: 100px;overflow: hidden;}
.date-input-box input {font-size: 14px;font-weight: 600;padding: 3px 7px;appearance: none;border: 0;border-right: 1px solid #E4E4E4;}
.date-input-box {position: relative;}
.date-input-box i {position: absolute;right: 6px;top: 9px;font-size: 16px;}
.date-sec button {font-size: 15px;border: 0;color: #AAAAAA;background: #F0F0F0;padding: 5px 10px;}
.yellowColor {color: #F29201 !important;}
.grenColor {color: #349529 !important;}
.blueColor {color: #004392 !important;}
.order-list-inner ul li {width: 100%;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;padding:15px 20px;margin-bottom: 20px;display: flex;}
.order-list-inner ul li:last-child {margin-bottom: 0;}
.order-list-box {width: 33.33%;}
.order-list-box h3{ margin-bottom: 10px;font-size: 18px;line-height: 24px;}
.order-list-box h3 a {display: inline-block;color: #25262B;font-family: "Poppins-SemiBold";margin-bottom: 3px;}
.total-order-sec {display: flex;align-items: center;gap: 60px;}
.total-order-sec p {font-size: 16px;line-height:22px;margin: 0;font-weight: 600;}
.total-time-sec {display: flex;align-items: center;gap: 30px;}
.total-time-sec p {font-size: 16px;line-height:22px;color: #596477;font-weight: 600;margin-bottom:10px;}
.order-status {font-size: 16px;font-weight: 600;margin-bottom: 0;}
.grandtotal {font-size:18px !important;margin: 0;display: flex;gap: 16px;justify-content: end;}
.grandtotal span {font-family: "Roboto-Bold";color: #004392;}
.order-list-sec {margin-bottom: 50px;}
.disable {border-color: #DBDBDB !important;color: #DBDBDB !important;}
.order-list-wrapper {width: 100%;display: flex;}
.order-list-box .viewOrderBtnArea{margin-bottom: 0px;}
.order-list-box .viewOrderBtnArea .order-dtl-btn{padding: 3px 10px 4px;font-size: 14px; line-height: 20px;}

.order-list-box .badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.order-list-box .badge{
    font-weight: 500;
    padding: 2px 10px 5px;
    font-size: 12px;
    line-height: 16px;	
}
.order-list-box .badge.Delivered{
	background-color:#dc3545  !important;
	border-color:#dc3545  !important;	
    color: #fff !important;	
}
.order-list-box .grenColor{
	background-color:#04AA71 !important;
	border-color:#04AA71 !important;	
    color: #fff !important;	
}
.order-list-box .yellowColor{
	background-color:#F29201 !important;
	border-color:#F29201 !important;	
    color: #fff !important;	
}


/* order diapatch sec */

.order-place-inner {box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;}
.dispatch-top {padding:15px 20px;border-bottom: 1px solid #EBEBEB;}
.dispatch-center {padding: 15px 20px;border-bottom: 1px solid #EBEBEB;display: flex;justify-content: space-between;gap: 10px;}
.diapatch-center-box {/*width: 33.33%;*/}
.order-btn {height: 28px;box-shadow: 0px 2px 4px #0000001F;border-radius: 100px;background: #FAFAFA;border: 0;font-size: 14px;font-weight: 600;padding: 0px 17px;}
.dispatch-right {display: flex;align-items: center;justify-content: end;gap: 25px;}
.invoice-btn {
    height: 28px;
    font-size: 14px;
    line-height: 18px;
    padding: 5px 24px;
    height: auto !important;
    font-weight: 500;
    text-transform: capitalize;	
}
.diapatch-center-box p {font-weight: 600;margin: 0;}
.dispatch-bottom {padding: 0 24px;}
.order-place-sec {padding-bottom: 50px;font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}

/* customer-review-sec */

.order-tab-top {display: flex;align-items: center;}
.order-tab-top ul {display: flex;align-items: center;}
.order-tab-top ul li {width: 176px;height: 36px;border: 1px solid #25262B;font-family: "Poppins-SemiBold";font-size: 14px;padding: 3px 28px;text-align: center;border-radius: 100px;cursor: pointer;margin-right: 28px;}
.again-btn {width: 176px;height: 36px;border: 1px solid #25262B;font-family: "Poppins-SemiBold";font-size: 14px;padding: 3px 28px;text-align: center;border-radius: 100px;}
.star-btn-sec {width: 305px !important;display: flex;align-items: center;text-align: left;gap: 18px;}
.star-sec i {font-size: 15px;color: #E9E9E9;}
.order-bottom {box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;padding: 18px 28px;margin-top: 18px;}
.return-top {display: flex;align-items: center;justify-content: space-between;margin-bottom: 10px;}
.return-top-left select {width: 460px;height: 36px;outline: none;border: 1px solid #25262B;border-radius: 100px;font-size: 16px;color: #25262B;padding: 5px 32px;}
.return-top-right select {width: 203px;height: 36px;outline: none;border: 1px solid #25262B;border-radius: 100px;font-size: 16px;color: #25262B;padding: 5px 18px;}
.return-top-right button {width: 203px;height: 36px;border: 1px solid #BABABA;font-family: "Poppins-SemiBold";font-size: 14px;padding: 3px 14px;text-align: center;border-radius: 100px;color: #25262B;}
.return-top-right {display: flex;gap: 25px;}
.description-sec {box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;display: flex;align-items: center;padding: 0 28px;}
.description-sec p {font-size: 16px;font-weight: 600;margin: 0;margin-right: 6px;}
.description-sec input {width: 89%;height: 54px;border: 0;outline: none;color: #232F34;font-size: 16px;}
.return-center {margin-bottom: 20px;}
.return-bottom {display: flex;align-items: center;justify-content: space-between;}
.return-upload-img-sec {display: flex;align-items: center;gap: 12px;}
.upload-img-box {width: 87px;height: 78px;border-radius: 8px;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;padding: 0 10px;position: relative;}
.upload-img-box img {width: 100%;height: 100%;object-fit: contain;}
.cross {font-size: 14px;color: #E30D0D;position: absolute;right: -8px;top: -16px;cursor: pointer;}
.address-right-btn {gap: 9px;}
.address-right-btn button {width: 176px;}
.order-tab-top ul li.current {background-color: #25262B; color: #fff;}
.tab-content {display: none;}
.tab-content.current {display: block;}
.order-tab-top ul li.current .star-sec i {color: #F29201;}
.ratings-heading {display: flex;align-items: center;gap: 10px;}
.ratings-heading p {font-size: 16px;margin: 0;}

.rate:not(:checked) > input {position: absolute;top: -9999px;}
.rate:not(:checked) > label {float: right;width: 1em;overflow: hidden;white-space: nowrap;cursor: pointer;font-size: 22px;color: #ccc;}
.rate:not(:checked) > label:before {content: "★ ";}
.rate > input:checked ~ label {color: #FFAB2A;}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {color: #FFAB2A;}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {color: #FFAB2A;}
.return-border-top {display: flex;align-items: center;gap: 28px;}
.return-date-sec {width: 279px;height: 36px;border: 1px solid #25262B;font-family: "Poppins-SemiBold";font-size: 14px;padding: 3px 28px;text-align: center;border-radius: 100px;}
.return-review-sec {width: 305px;height: 36px;border: 1px solid #25262B;font-family: "Poppins-SemiBold";font-size: 14px;padding: 3px 28px;text-align: center;border-radius: 100px;display: flex;align-items: center;color: #25262B;gap: 10px;}
.return-review-sec .star-sec i {color: #F29201;}
.return-border-bottom {display: flex;align-items: center;padding-top: 27px;}
.return-bottom-box {width: 33.33%;}
.redColor {color: #E30D0D !important;}
.return-bottom-box p {font-weight: 600;margin: 0;}
.return-ammount {font-size: 24px;font-family: "Roboto-Bold";}

/* portfolio sec */

.portfolio-banner-sec {position: relative;}
.portfolio-banner-overlay {position: absolute;top: 0;left: 0;width: 100%;}
.portfolio-banner-inner {padding: 184px 0 50px;}
.portfolio-banner-inner h1 {font-size: 40px;color: #FFFFFF;/*letter-spacing: 0.38px;text-shadow: 0px 3px 6px #00000061;*/font-weight:700;text-align: center;margin-bottom: 15px;}
.portfolio-banner-inner h2 {font-size: 40px;color: #FFFFFF;/*letter-spacing: 0.38px;text-shadow: 0px 3px 6px #00000061;*/font-weight:700;text-align: center;margin-bottom: 15px;}
.portfolio-banner-inner p {font-size: 20px;line-height: 26px;color: #FFFFFF;/*letter-spacing: 0.22px;text-shadow: 0px 3px 6px #00000061;*/text-align: center;}

/* uniform sec  */

.uniform-left-right-wrapper {width: 100%;display: flex;align-items: center;margin-bottom: 18px;}
.uniform-left {width: 30%;}
.uniform-right {width: 70%;padding-left: 40px;}
.uniform-right p {font-size: 24px;font-weight: 600;margin: 0;}
.uniform-img img {width: 100%;height: 292px;object-fit: cover;box-shadow: 12px 4px 8px #25384F1F;border-radius: 16px;}
.uniform-left-right-wrapper.direction-change {flex-direction: row-reverse;}
.uniform-left-right-wrapper.direction-change .uniform-right {padding-left: 0;padding-right: 40px; }
.quote-btn-sec {text-align: center;padding-top: 44px;}
.quote-btn-sec button {width: 255px;}
.uniform-left-right-inner {border-bottom: 1px solid #EBEBEB;}
.testimonials-header {margin-bottom: 32px;}
.testimonials-header h2 {font-size: 32px;font-family: "Poppins-SemiBold";text-align: center;margin-bottom: 24px;text-shadow: 0px 3px 6px #0000001F;}
.testimonials-header p {font-size: 24px;font-family: "Poppins-SemiBold";text-align: center;text-shadow: 0px 3px 6px #0000001F;}
.testimonials-box  {width: 100%;height: 238px;box-shadow: 0px 4px 12px #25384F14;border: 1px solid #E1E1E1;border-radius: 16px;padding: 18px;}
.testimonials-top {display: flex;justify-content: space-between;}
.testimonials-top-left h4 {font-size: 18px;font-weight: 600;padding-bottom: 9px;margin: 0;}
.testimonials-border {box-shadow: 0px 4px 8px #00000047;width: 100%;height: 2px;background-color: #AAAAAA;border-radius: 100px;}
.testimonials-top-left { width: 80%;}
.testimonials-top-right {width: 17%;}
.user-img {width: 52px;height: 52px;box-shadow: 0px 3px 6px #00000029;border-radius: 50%;overflow: hidden;}
.user-img img {width: 100%;height: 100%;object-fit: cover;}
.testimonials-center {padding: 12px 0;padding-bottom: 0;position: relative;}
.testimonials-center p {font-size: 12px;letter-spacing: 0.1px;color: #25262B;text-align: center;font-weight: 600;margin-bottom: 12px;}
.testimonials-bottom {position: relative;}
.quotation-box {width: 23px;height: 23px;display: flex;align-items: center;justify-content: center;background: #25262B;border-radius: 50%;padding: 5px;position: absolute;top: -10px;right: 10px;}
.quotation-box img {filter: brightness(0) saturate(100%) invert(100%) sepia(98%) saturate(0%) hue-rotate(2deg) brightness(104%) contrast(102%);}
.testimonials-bottom p {font-size: 18px;font-weight: 600;margin-top: 12px;margin-bottom: 0;}
.testimonials-box-inner {width: 100%;height: 100%;display: flex;flex-direction: column;justify-content: space-between;}
.testimonials-inner {/*padding-bottom: 50px;border-bottom: 1px solid #EBEBEB;*/}

.testimonials-wrapper .owl-stage {padding: 10px 0;display: flex;}
.testimonials-wrapper .owl-item{padding:40px 10px 10px;}
.testimonialsBox{height:100%;}
.testimonialsBoxinner{
    background-color: #fff;
    box-shadow: 0px 4px 12px #25384F14;   
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #E1E1E1; */
    border-radius: 8px;
    padding: 45px 20px 20px;
    position: relative;
    text-align: center;
    height: 100%;
}
.testimonialsBoxinner .user-thumb{
    display: inline-block;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;	
}
.testimonialsBoxinner .user-thumb img{
    height: 100%;
    width: 100%;
    object-fit: cover;	
}
.testimonialsBoxinner .testimonials-content{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;	
}
.testimonialsBoxinner .testimonials-content p{}
.testimonialsBoxinner .testimonials-Info{}
.testimonialsBoxinner .testimonials-Info h4{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0px;	
}
.testimonialsBoxinner .testimonials-Info p{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;	
}




.choose-wrapper {width: 100%; display: flex;margin: 0 -12px;}
.choose-box {width: 20%;padding: 0 12px;text-align: center;}
.choose-box p {font-size: 16px;line-height:22px;font-weight:600;margin-top: 15px;}
.choose-inner {padding-top: 30px;}
.handel-wrapper {width: 100%;display: flex;flex-wrap: wrap;justify-content: space-between;}
.handel-box {width: 26%;flex: 0 0 26%;position: relative;margin-bottom: 44px;}
.handel-top {text-align: center;}
.handel-top img {width: 80px;}
.handel-bottom {width: 100%;height: 38px;background: #F8F8F8;box-shadow: 0px 2px 4px #0000001F;border-radius: 100px;text-align: center;position: relative;padding: 5px 0;font-size: 15px;font-weight:600;margin-top: 12px;}
.handel-icon {width: 38px;height: 38px;display: flex;align-items: center;justify-content: center;box-shadow: 0px 2px 4px #0000001F;border-radius: 100px;font-size: 18px;font-family: "Poppins-Bold";position: absolute;left: 0;top: 0;}
.handel-arrow {width: 93px;color: #3CA621;position: absolute;bottom: 8px;right: -119px;}
.handel-last-box .handel-arrow {display: none;}

.handel-header {text-align: center;position: relative;margin-bottom: 66px;}
.handel-header-top {display: inline-block;box-shadow: 0px 12px 12px #25384F1F;border: 1px solid #E4E7EA;border-radius: 100px;font-size: 36px;font-family: "Poppins-SemiBold";padding: 14px 83px;}
.handel-header-top h2 {margin: 0;}
.handel-header::before {content: "";position: absolute;left: 0;top: 50%;background-color: #E4E7EA;height: 2px;width: 146px;transform: translate(0, -50%);}
.handel-header::after {content: "";position: absolute;right: 0;top: 50%;background-color: #E4E7EA;height: 2px;width: 146px;transform: translate(0, -50%);}
.touch-sec {width: 100%;background-image: url(../images/Whoarewebg.png);background-repeat: no-repeat;background-size: cover;padding: 48px 0;}
.touch-inner h2 {font-size: 32px;color: #FFFFFF;font-family: "Poppins-SemiBold";margin-bottom: 12px;}
.touch-inner p {font-size: 23px;color: #fff;font-family: "Poppins-Medium";margin-bottom: 12px;}
.contact-btn {height: 38px;display: inline-block;box-shadow: 0px 2px 4px #0000001F;border-radius: 100px;background: #fff;letter-spacing: 0.14px;color: #25262B;font-size: 18px;padding: 5px 28px;text-shadow: 0px 3px 6px #00000061;}
.faq-header h2 {text-align: left;}

.accordion-button.collapsed {box-shadow: 0px 12px 12px #25384F1F;border: 1px solid #E4E7EA;border-radius: 100px !important;background: #fff;}
.accordion-button {background: #F9F9F9 !important;box-shadow: none !important;border-radius: 100px !important;box-shadow: 0px 12px 12px #25384F1F;border: 1px solid #E4E7EA;}
.accordion-button::after {display: none;}

.accordion-item {background-color: transparent;border: 0;}
.accordion-button.collapsed .plus-icon {display: block;}
.accordion-button.collapsed .minus-icon {display: none;}

.faq-inner .accordion span {font-size: 22px;letter-spacing: 0.19px;color: #25262B;font-family: "Poppins-SemiBold";}
.faq-inner .accordion i {font-size: 22px;color: #25262B;margin-right: 18px;}
.faq-inner button.accordion .minus-icon {display: none;}
.faq-inner button.accordion.is-open .plus-icon {display: none;}
.faq-inner button.accordion.is-open .minus-icon {display: block;}
.accordion-button .plus-icon {display: none}
.accordion-body {box-shadow: 0px 12px 12px #25384F1F;border: 1px solid #E4E7EA;border-radius: 24px;background: #F9F9F9;margin-top: 12px;    padding: 0;}
.accordion-body p {font-size: 20px;letter-spacing: 0.19px;color: #25262B;margin: 0;padding: 28px 65px;font-family: "Poppins-SemiBold";}
.accordion-item {margin-bottom: 12px;}

/* our service sec */
.service-overlay {background: #20242bbd;}
.service-banner-sec img {width: 100%;height: 484px;object-fit: cover;}
.service-img {width: 100%;height: 386px;box-shadow: 0px 12px 12px #25384F1F;border-radius: 16px;overflow: hidden;position: relative;}
.service-img::before {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #20242b57;}
.service-img img {width: 100%;height: 100%;object-fit: cover;}
.service-box-bottom {padding: 18px 0;}
.service-box-bottom p {font-size: 18px;font-family: "Poppins-Medium";text-align: center;margin-bottom: 28px;}
.service-list-sec {display: flex;align-items: center;justify-content: space-between;}
.service-list-sec li {box-shadow: 0px 2px 4px #0000001F;border-radius: 100px;padding: 7px 27px;background: #F8F8F8;display: flex;align-items: center;gap: 10px;}
.service-list-sec li i {font-size: 25px;color: #3CA621;}
.service-list-sec li span {font-size: 15px;font-family: "Poppins-Medium";}
.service-bottom {box-shadow: 0px 12px 12px #25384F1F;border: 1px solid #E4E7EA;border-radius: 100px;margin-top: 28px;align-items: center;display: flex;overflow: hidden;}
.service-bottom h3 {width: 70%;font-size: 26px;font-family: "Poppins-SemiBold";text-align: center;margin: 0;}
.service-bottom-right {width: 30%;background: #F8F8F8;border-radius: 100px;padding: 26px 28px;}
.service-bottom-right ul {display: flex;align-items: center;justify-content: space-between;}
.service-bottom-right ul li {font-size: 16px;font-family: "Poppins-Medium";position: relative;}
.service-bottom-right ul li::before {content: "";position: absolute;top: 13px;right: -27px;width: 19px;height: 2px;border: 1px dashed #3CA621;}
.service-bottom-right ul li:last-child::before {display: none;}
.service-box {padding: 24px 0;}
.sevice-image-heading {position: absolute;bottom: 0;z-index: 3;width: 100%;background: #20242b94;box-shadow: 0px 12px 12px #25384F1F;border-radius: 0px 0px 16px 16px;padding: 8px 0;}
.sevice-image-heading {letter-spacing: 0.22px;color: #FFFFFF;/*text-shadow: 0px 3px 6px #0000001F;font-family: "Poppins-SemiBold";*/font-weight:600;text-align: center;}

/* login sec */

.login-sec {width: 100%;height: 100vh;background: #fff;display: flex;align-items: center;justify-content: center;}
.login-inner{display: flex;height:100%;width:100%;}
.login-inner .leftPart{
    height: 100%;
    padding: 40px 40px;
    width: 50%;
    background-color: #000;
    background-image: url(../images/dresscote.jpg);
    background-position: 50% 40%;
    background-size: cover;
    background-repeat: no-repeat;	
    display: flex;
    align-items: center;
    justify-content: center;	
}
.login-inner .leftPart .fxt-intro {
    max-width: 500px;
    width: 100%;
    padding: 30px;
}
.login-inner .leftPart .fxt-intro .sub-title {
    font-weight: 300;
    font-size: 40px;
    color: #fff;
    line-height: 1.5;
}
.login-inner .leftPart .fxt-intro h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}
.login-inner .leftPart .fxt-intro p {
    color: #fff;
}
.login-inner .rightPart{
    height: 100%;
    width: 50%;
    padding: 40px 125px;
    display: flex;
    align-items: center;
    justify-content: center;	
	
}
.login-inner .rightPart .login-card {
    width: 100%;
}
.login-inner .rightPart .input-group .input-group-text{height: 45px;font-size: 14px;background-color: transparent;border-radius: 6px 0 0 6px;}
.login-inner .rightPart .input-group .input-group-text img{height:16px;margin-right:8px;}
.login-inner .rightPart .input-group .form-control{height: 45px;box-shadow:none;}
.login-inner .rightPart .input-group .form-control:focus{outline:none;}
.otpInputArea{}
.otpInputArea .rowBox{
    margin-left: -5px;
    margin-right: -5px;	
}
.otpInputArea .columnBox{
	padding-left: 5px;
    padding-right: 5px;		
}
.otpInputArea .otpInputBox{}
.otpInputArea .otpInputBox .otp-input{
    box-shadow: none;
    text-align: center;
    color: #000;
    font-weight: 500;
    padding: 6px 6px;
    height: 50px;
}

.login-card {/*width: 450px;background: #fff;margin: 0 auto;border-radius: 15px;padding: 38px;*/}
.login-card-inner-top {text-align: center;}
.login-card-inner-top h2 {font-size: 23px;font-weight: 600;margin: 10px 0;}
.login-card-inner-top p {font-size: 15px;}
.textfield-box {margin-bottom: 20px;}
.textfield-box input {border: 1px solid #8692A6;border-radius: 10px;width: 100%;height: 50px;font-size: 16px;padding: 4px 20px;outline: none;}
.login-btn {width: 100%;height: 50px;background: #25262B;border: 0;color: #fff;border-radius: 10px;font-size: 18px;padding: 4px 59px;}
.new-text {font-size: 16px;text-align: center;margin: 0;margin-top: 15px;}
.new-text a {color: #ed3237;}

.service-banner-sec {height: 420px;}
.service-overlay {height: 100%;}
.service-banner-sec img {height: 100%;}
.apply-filter-btn {position: relative;background: #25262B;border-color: #25262B;}
.apply-filter-btn:hover {background: #25262B;border-color: #25262B;}
.product-list-box-img{border-radius: 16px;overflow:hidden;aspect-ratio: 9 / 11;position:relative;}
.product-list-box-img a img {width: 100%;height: 100%;object-fit: cover;}
.product-list-box-img .fit-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #ddd;
    color: #000;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    border-radius: 4px;
    position: absolute;
    top: 5px;
    left: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;       
}
.product-list-box-img .rating-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    /* font-family: system-ui, sans-serif; */
    position: absolute;
    bottom: 9px;
    left: 10px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
}
.product-list-box-img .rating-pill .star {
  font-size: 14px;
  color: #ffc107;                
  margin-right: 4px;
}
.product-list-box-img .rating-pill .rating-value {
  font-size: 14px;
  font-weight: 600;
  color: #222222;                
}


.profile-back-btn {width: 176px;text-align: center;color: #25262B;padding-top: 2px;}
.order-dtl-btn {background: #25262B;border-color: #25262B;}
.order-dtl-btn:hover {background: #25262B;border-color: #25262B;}
.date-input-box input {border-radius: 0;}
.date-sec button:hover {color: #AAAAAA; background: #F0F0F0;}
.order-tracker .progress-line {top: 49px !important;}
.product-quantity .count { width: 100%;height: 100%; text-align: center;}
.address-left-header h2 {font-size: 16px;line-height:22px;margin-bottom: 0px;}
.web-footer::before {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(32, 36, 43, 0.74); /* Same as #20242bbd */}
.color-container .color-checkmark:after {border: 1px solid #20242B;}
.sub {border-right: 1px solid #25262B !important;}
.product-quantity button {border-radius: 0;}
.product-quantity button:hover {background-color: transparent; color: #6D6D6D;}
.continue-shopping-btn {background: #25262B;color: #fff;border: 1px solid #25262B;}
.continue-shopping-btn:hover {background: #25262B;color: #fff;border: 1px solid #25262B;}
.add-tocart-btn:hover {background: #25262B;border-color: #25262B;}
.product-details-left{position: sticky;top: 15px;}
.product-details-image-sec {display: flex;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;align-items: center;justify-content: center;aspect-ratio: 3 / 3;}
.product-details-image-sec img{
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;	
}
.product-details-image-two-sec {display: flex;box-shadow: 0px 1px 4px #00000014;border: 1px solid #EBEBEB;border-radius: 8px;align-items: center;justify-content: center;padding: 0 10px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    width: 90px;
    height: 90px;
    border: 2px solid #fff;
    transition: 0.2s;
}
.product-details-image-two-sec img{
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    width: 90px;
    height: 90px;
    border: 2px solid #fff;
    transition: 0.2s;	
}

.singleProductDtlsAccordian{}
.custom-accordion .accordion-item {
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;  
}
 .custom-accordion .accordion-button {
  background: #fff;
  padding: 16px;
  box-shadow: none !important;
  border: none;
  background: #fff !important;
  border-radius: 0px !important; 
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
}
.accordion-button .icon-box {
  width: 36px;
  height: 36px;
  background: #f5f7fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #555;
}
.accordion-button .title {
  font-size: 16px;
  font-weight: 600;
}
.accordion-button .subtitle {
  font-size: 13px;
  color: #6c757d;
  margin-top:2px;
}
.accordion-button .subtitle a{ color: #6c757d;}
.accordion-button .subtitle a:hover{color: rgb(128, 0, 0);}
.accordion-button .accordion-button::after {
  font-size: 14px;
}

.custom-accordion .accordion-body {
    box-shadow: none;
    border: 0;
    border-radius: 0px;
    background: transparent;
    margin-top: 0;
    padding: 15px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    font-weight: 400;
}
.custom-accordion .accordion-body p{padding:0px;font-size: 14px;font-weight: 400; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;  }


.order-sucess-box {display: inline-block;border: 1px solid transparent;background-color: #fff;box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);padding: 25px 20px;border-radius: 15px;}

.user-icon {
    display: none;
}

.company-size-radio-sec {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.company-size-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px !important;
    width: 24px !important;
    border-radius: 50%;
    box-shadow: 0px 1px 2px #00000029;
    border: 1px solid #BABABA;
    background-color: #fff;
}

.company-size-radio-sec li {
    margin-right: 0px;
}

.company-checkbox input:checked ~ .company-size-checkmark {
  background-color: #25262B;color: #fff;
}

.company-size-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.company-checkbox input:checked ~ .company-size-checkmark:after {
  display: block;
}

.company-checkbox .company-size-checkmark:after {
 	top: 5px;
    left: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}

.company-checkbox.Size{padding-left: 0px;}
.company-checkbox.Size .company-size-checkmark{
  position: relative;
    height: auto !important;
    width: auto !important;
    border-radius: 4px;
    padding: 1px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px !important;		
}
.company-checkbox.Size .company-size-checkmark:after{border-radius: 4px;}
.company-checkbox.Size .company-size-checkmark:after{background: transparent;}
.company-checkbox.Size input:checked ~ .company-size-checkmark {background-color: #25262B; color: #fff;}
.company-checkbox.colour{padding-left: 0px;}
.company-checkbox.colour .company-size-checkmark{
    position: relative;
    height: auto !important;
    width: auto !important;
    border-radius: 4px;
    padding: 1px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px !important;	
}
.company-checkbox.colour .company-size-checkmark:after{border-radius: 4px;}
.company-checkbox.colour .company-size-checkmark:after{background: transparent;}
.company-checkbox.colour input:checked ~ .company-size-checkmark {background-color: #25262B; color: #fff;}
.company-checkbox.febric{padding-left: 0px;}
.company-checkbox.febric .company-size-checkmark{
    position: relative;
    height: auto !important;
    width: auto !important;
    border-radius: 4px;
    padding: 1px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px !important;	
}
.company-checkbox.febric .company-size-checkmark:after{border-radius: 4px;}
.company-checkbox.febric .company-size-checkmark:after{background: transparent;}
.company-checkbox.febric input:checked ~ .company-size-checkmark {background-color: #25262B; color: #fff;}
.company-checkbox.Pattern {
    padding-left: 0px;
}
.company-checkbox.Pattern .company-size-checkmark{
    position: relative;
    height: auto !important;
    width: auto !important;
    border-radius: 4px;
    padding: 1px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px !important;	
}
.company-checkbox.Pattern .company-size-checkmark:after {
    background: transparent;
}
.portfolio-banner-sec img {
    width: 100%;
}

.profile-back-btn {
    height: 36px;
    border: 1px solid #25262B;
    font-size: 14px;
    font-family: "Poppins-SemiBold" !important;
    border-radius: 100px;
    background: #fff;
    color: #25262B;
    width: 176px;
    line-height: 30px;
}

.address-delete-btn {
    width: 32px;
    height: 32px;
    padding: 3px 6px;
    background: #F9F9F9;
    color: #25262B !important;
    border-radius: 50%;
    border: 0;
    box-shadow: 0px 3px 6px #00000029;
}


.product-price-row {  
  font-size: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-price-row .current-price {
  font-size: 14px;
  line-height:20px;
  font-weight: 700;
  color: #222;
}
.product-price-row .old-price {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}
.product-price-row .discount {
  font-size: 14px;
  font-weight: 600;
  color: #0a9b1f;
}
.product-price-row .tax-text {
  font-size: 13px;
  color: #999;
}
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: system-ui, sans-serif;
  color: #1f9d1f; /* green */
  font-weight: 700;
  font-size: 14px;
}

.offer-badge .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  background: #e9f8e9;
  color: #1f9d1f;
  border-radius: 4px;
  font-weight: bold;
}
.product-list-box .product-price-row .current-price{font-size:14px;}
.product-list-box .product-price-row .offer-badge{font-size:12px;}

.last-bought-txt {
    display: flex;
    gap: 4px;
    align-items: center;
    background: linear-gradient(90deg, rgb(185, 228, 255) 0%, rgba(185, 228, 255, 0) 60%);
    border-radius: 4px;
    width: 100%;
    padding: 6px 0px 6px 8px;
}
.last-bought-txt .txt{
    white-space: normal;
    overflow: hidden;
    max-width: 65ch;
    text-overflow: ellipsis;
    text-transform: none;
    color: rgb(28, 108, 158);	
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;	
}
.qualityFeatureBedgeArea{}
.qualityFeatureBedgeArea .qualityBedge {
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
    width: fit-content;
    border-radius: 6px;
    padding: 6px;
    background: rgb(249, 249, 251);
    color: rgb(112, 128, 155);
    border: 0.5px solid rgb(232, 235, 240);
}
.qualityFeatureBedgeArea .qualityBedge .txt{
    white-space: normal;
    overflow: hidden;
    max-width: 65ch;
    text-overflow: ellipsis;
    text-transform: none;
    color: rgb(112, 128, 155);
    font-size: 12px;
    font-weight: 600;	
}
.product-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    /* gap: 12px;*/	
}   
.product-gallery .thumbs-wrapper {
    width: 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 10px; */
    position: relative;
    padding: 0 8px;
}
.product-gallery .thumbs-swiper {
height: 520px;
width: 100%;
}

.product-gallery .thumbs-swiper .swiper-slide {
height: auto !important;
opacity: 0.5;
cursor: pointer;
border-radius: 12px;
overflow: hidden;
border: 2px solid transparent;
transition: 0.2s;
}
.product-gallery .thumbs-swiper .swiper-slide-thumb-active {
opacity: 1;
border-color: #111827;
}
.product-gallery .thumbs-swiper .small-thumb{height:100px;}
.product-gallery .thumbs-swiper img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.product-gallery .thumbs-more-btn {
width: 32px;
height: 32px;
border-radius: 999px;
border: 1px solid #d1d5db;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: #f9fafb;
font-size: 14px;
}
.product-gallery .thumbs-wrapper .swiper-button-next, .product-gallery .thumbs-wrapper .swiper-button-prev{
position: absolute;
top: 50%;		
transform: translateY(-50%);
width: 24px;
height: 24px;
border-radius: 999px;
background: #ffffff;
color:#000;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
border: none;
}
.product-gallery .thumbs-wrapper .swiper-button-next {}
.product-gallery .thumbs-wrapper .swiper-button-next:after{display:none;}
.product-gallery .thumbs-wrapper .swiper-button-next i{}
.product-gallery .thumbs-wrapper .swiper-button-prev {}
.product-gallery .thumbs-wrapper .swiper-button-prev:after{display:none;}
.product-gallery .thumbs-wrapper .swiper-button-prev{}
@media (min-width: 992px) {     
.product-gallery .thumbs-wrapper .swiper-button-next {top: inherit; bottom:2%;left:34%;transform: translateY(2%);}	
.product-gallery .thumbs-wrapper .swiper-button-next i{rotate: -90deg;}
.product-gallery .thumbs-wrapper .swiper-button-prev {top: 2%;left: 34%;transform: translateY(2%);}	
.product-gallery .thumbs-wrapper .swiper-button-prev i{rotate: -90deg;}
}
.product-gallery .main-wrapper {
    /* flex: 1; */
    position: relative;
    width: 84%;
    padding: 0 8px;
}
.product-gallery .fit-pill {
position: absolute;
top: 16px;
left: 16px;
z-index: 10;
padding: 5px 10px;
border-radius: 999px;
border: 1px solid #111827;
background: #ffffff;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.05em;
}
.product-gallery .main-swiper {
width: 100%;
height: 520px;
border-radius: 18px;
overflow: hidden;
}
.product-gallery .main-swiper .big-thumb{height:100%;}
.product-gallery .main-swiper img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}    
.product-gallery .swiper-button-next-custom,
.product-gallery .swiper-button-prev-custom {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 38px;
height: 38px;
border-radius: 999px;
background: #ffffff;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
border: none;
}
.product-gallery .swiper-button-next-custom {
right: 18px;
}
.product-gallery .swiper-button-prev-custom {
left: 18px;
}
.product-gallery .swiper-button-next-custom::after,
.product-gallery .swiper-button-prev-custom::after {
content: "";
}
.product-gallery .arrow-icon {
border: solid #111827;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 4px;
}
.product-gallery .arrow-right {
transform: rotate(-45deg);
}
.product-gallery .arrow-left {
transform: rotate(135deg);
}    


@media (max-width: 991px) {  
.product-gallery {
flex-direction: column;
max-width: 100%;
margin: 0 0px;
}
.product-gallery .thumbs-wrapper {
order: 2;
width: 100%;
}
.product-gallery .thumbs-swiper {
height: 110px;
width: 100%;
}
.product-gallery .main-wrapper {
order: 1;
width: 100%;
}
.product-gallery .thumbs-wrapper .swiper-button-next, .product-gallery .thumbs-wrapper .swiper-button-prev{
top: 70%;
transform: translateY(-70%);
width: 24px;
height: 24px;
font-size: 14px;
}
.product-gallery .swiper-button-next-custom, .product-gallery .swiper-button-prev-custom {}
.product-gallery .thumbs-wrapper .swiper-button-next{}
.product-gallery .thumbs-wrapper .swiper-button-next i{rotate: 180deg;}
.product-gallery .thumbs-wrapper .swiper-button-prev{}
.product-gallery .thumbs-wrapper .swiper-button-prev i{rotate: 180deg;}	  
}

.combo-quick-view-btn {
    background: #25262B;
    border-color: #25262B;
}
.combo-quick-view-btn:hover {
    background: #25262B;
    border-color: #25262B;
}
.combo-offer-top {
    padding: 16px;
    box-shadow: none !important;
    border: none;
    background: #fff !important;
    border-radius: 0px !important;
    width: 100%;
    border: 1px solid #E4E7EA;
    border-radius: 5px !important;
    cursor: auto !important;
}
.combo-offer-top .icon-box {
    width: 36px;
    height: 36px;
    background: #f5f7fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
}
.combo-offer-top .title {
    font-size: 16px;
}
.combo-offer-top .subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-top: 2px;
}
.combo-offer-top .badge {
    font-size: 13px;
}
.combo-offer-card {
    border-radius: 5px !important;
    background-color: #fff;
    border: 1px solid #E4E7EA !important;
}
.product-price-row .discount {
    font-size: 10px !important;
    font-weight: 600;
    color: #fff;
}
#comboQuickViewModal .current-price {
    color: #222 !important;
}
#comboQuickViewModal .add-tocart-btn {
    background: #25262B !important;
}
#comboQuickViewModal .add-tocart-btn:hover {
    box-shadow: none !important;
}
#comboQuickViewModal .btn:hover {
    background: #25262B !important;
}
#comboQuickViewModal .product-quantity {
    padding: 0 !important;
    border: 1px solid #25262B !important;
}
.product-quantity button {
    border-radius: 0 !important;
}
#comboQuickViewModal .product-quantity button:hover {
    background-color: #fff !important;
}
.review-filters .btn.active {
    background-color: #000 !important;
    border-color: #000 !important;
}

.address-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.address-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.address-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #25262B;
}
.address-checkbox input:checked ~ .address-checkmark {
  background-color: #25262B;
}
.address-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.address-checkbox input:checked ~ .address-checkmark:after {
  display: block;
}
.address-checkbox .address-checkmark:after {
 	top: 5px;
    left: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: white;
}

.form-select {
    border-color: #8692A6 !important;
    outline: 0 !important;
    box-shadow: none !important; 
}

.reset-btn {
    font-size: 16px;
    padding: 6px 20px;
    display: inline-block;
    text-transform: uppercase;
    color: #25262B;
    border: 1px solid #25262B;
    border-radius: 8px;
    height: 45px !important;
    background-color: #fff;
    font-weight: 600;
}

.address-save-btn {
    background: #25262B;
    border-color: #25262B;
}

.address-save-btn:hover {
    background: #25262B;
    border-color: #25262B;
}

.save-address-box .address-checkbox {
    top: 14px;
    left: 85%;
    transform: translate(-50%, -50%);
}

.pending-btn {
    background: #AAAAAA !important;
    color: #fff !important;
    border-color: #AAAAAA !important;
}

.cart-iteam-right-box {
    width: 90%;
    padding-right: 0px;
}

.cartRightSideAreainner{position: sticky;top: 30px;margin-bottom:30px;font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;}
.address-right-top .add-tocart-btn{padding: 10px 15px;height: 50px !important;}

.combo-product-quantity {
  width: 128px !important;
}


.applyCouponModal{}
.applyCouponModalDiolog{}
.applyCouponModalContent{position: relative; z-index: 1056;}
.applyCouponModalHeader{border-bottom: 1px solid #e0e0e0; padding: 20px; position: relative; z-index: 1;}
.applyCouponModalHeader .modal-title{font-size: 18px;} 
.applyCouponModalHeader .btn-close{position: relative; z-index: 10;}
.applyCouponModalBody{padding: 20px; position: relative; z-index: 1;}
.applyCouponModalInputGroup{position: relative; z-index: 10;}
.applyCouponModalInputGroup .couponCodeInput{flex: 1; position: relative; z-index: 10;}
.applyCouponModalInputGroup .checkCouponBtn{background: #e91e63; color: white; border: none; padding: 8px 20px; font-weight: 600; position: relative; z-index: 10;}
.applyCouponAleart{display: none; margin-bottom: 20px;}
.availableCouponsListArea{}
.availableCouponsListArea .coupon-item{}
.availableCouponsListArea .coupon-item .canApplyText{position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.8); z-index: 1; border-radius: 8px; pointer-events: none;}
.availableCouponsListArea .coupon-item:last-child{}
.coupon-item-inner{position: relative; z-index: 10; pointer-events: auto;}
.coupon-radio-box{position: relative; z-index: 100;}
.coupon-radio-box .coupon-radio{width: 20px; height: 20px; accent-color: #e91e63; cursor: pointer; position: relative; z-index: 100; pointer-events: auto;}
.coupon-radio-content{}
.coupon-code-box{border: 1px dashed #e91e63; border-radius: 4px; padding: 10px; display: inline-block; background: #fff;}
.coupon-code-box-txt{color: #e91e63; font-size: 16px;}
.coupon-radio-content .saveAmountText{color: #e91e63;}
.coupon-radio-content .coupon-details{font-size: 14px; color: #666;}
.coupon-radio-content .coupon-expiry{font-size: 12px; color: #999;}
.coupon-radio-content .shopAmountText{font-size: 13px;}
.coupon-radio-content .shopAmountText{font-size: 13px;}
.shopemptyCouponText{}
.applyCouponBtmFooter{border-top: 1px solid #e0e0e0; position: relative; z-index: 10;}
.applyCouponBtmFooter .couponSavingText{}
.applyCouponBtmFooter .couponSavingText .maxSavingsTxt{color: #e91e63;}
.applyCouponBtmFooter .applyCouponBtns{}
.applyCouponBtmFooter .applyCouponBtns .applySelectedCouponBtn{background: #e91e63; color: white; border: none; padding: 10px 30px; font-weight: 600; font-size: 16px; position: relative; z-index: 10; cursor: pointer;}

#applyCouponModal .modal-content {
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        z-index: 1055;
    }
    
    #applyCouponModal .modal-header {
        background: #fff;
    }
    
    #applyCouponModal .modal-body {
        max-height: 70vh;
        overflow-y: auto;
        position: relative;
        z-index: 1;
    }
    
    #applyCouponModal .modal-dialog {
        z-index: 1055;
    }
    
    /* Fix modal backdrop - make it non-interactive but visible */
    body.modal-open .modal-backdrop {
        /*z-index: 9998 !important;*/
        pointer-events: none !important;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    /* Ensure modal is clickable and above backdrop and footer */
    #applyCouponModal {
        z-index: 9999 !important;
        pointer-events: auto !important;
    }
    
    #applyCouponModal .modal-dialog {
        z-index: 10000 !important;
        position: relative;
        pointer-events: auto !important;
    }
    
    #applyCouponModal .modal-content {
        z-index: 10001 !important;
        position: relative;
        pointer-events: auto !important;
    }


/*******
* Blog Card
*******/
.blog-card {
position: relative;
z-index: 1;
margin-bottom: 116px;
}
.blog-card__image {
position: relative;
overflow: hidden;
}
.blog-card__image__inner img {
object-fit: cover;
width: 100%;
}
.blog-card__image__inner--1 {
transform: translateY(0%);
transition: all 0.6s ease-in-out;
}
.blog-card__image__inner--2 {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
transform: translateY(100%);
transition: all 0.6s ease-in-out;
z-index: 1;
}
.blog-card__image__link {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: rgba(var(--zoomvilla-black5-rgb, 30, 31, 36), 0.8);
position: absolute;
top: 0;
left: 0;
opacity: 0;
transform: translateY(-25%);
z-index: 1;
transition: opacity 500ms ease 0ms, transform 500ms ease 0ms;
}
.blog-card__image__link::before, .blog-card__image__link::after {
content: "";
width: 25px;
height: 2px;
background-color: var(--zoomvilla-white, #FFFFFF);
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card__content {
position: absolute;
bottom: -60px;
left: 15px;
right: 15px;
background-color: var(--zoomvilla-white, #FFFFFF);
padding: 15px 15px;
border-radius: 10px;
z-index: 2;
border: 3px solid var(--zoomvilla-white, #FFFFFF);
border-bottom: none;
transition: all 0.4s ease-in-out;
filter: drop-shadow(0px 0px 3px rgba(171, 171, 171, 0.25));
}
@media (max-width: 1199px) and (min-width: 767px), (max-width: 425px) {
.blog-card__content {
left: 10px;
right: 10px;
padding: 20px 10px;
}
}
.blog-card__meta__list {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: start;
gap: 6px;
margin-bottom:10px;
}
.blog-card__meta__list li a {
display: flex;
align-items: center;
gap: 6px;
color: #636363;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.blog-card__title {
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 22px;
padding-left: 15px;
border-left: 3px solid #D7984E;
margin-bottom: -20px;
transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 767px), (max-width: 425px) {
.blog-card__title {
font-size: 18px;
}
}
.blog-card__title a {
color: inherit;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.blog-card__title a:hover {
background-size: 100% 1px;
}
.blog-card .zoomvilla-btn {
display: inline-flex;
align-items: center;
justify-content: center;
/* min-width: 255px; */
/* height: 38px; */
background: #dd3136;
box-shadow: 0px 2px 4px #0000001F;
border-radius: 30px;
letter-spacing: 0.14px;
color: #FFFFFF;
padding: 5px 10px;
font-size: 14px;
line-height: 20px;
text-shadow: 0px 3px 6px #00000061;
font-weight: 600;
margin-bottom: -50px;
opacity: 0;
transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 767px), (max-width: 425px) {
.blog-card .zoomvilla-btn {
padding-left: 20px;
padding-right: 20px;
font-size: 14px;
}
}
.blog-card .zoomvilla-btn::before {
background-color: var(--zoomvilla-white, #FFFFFF);
}
.blog-card .zoomvilla-btn::after {
background-color: var(--zoomvilla-black3, #1E1F24);
}
.blog-card .zoomvilla-btn:hover {
color: var(--zoomvilla-black3, #1E1F24);
}
.blog-card:hover .blog-card__image::before {
background-color: var(--zoomvilla-base, #D7984E);
}
.blog-card:hover .blog-card__content {
background-color: var(--zoomvilla-black3, #1E1F24);
}
.blog-card:hover .blog-card__meta__list a {
color: var(--zoomvilla-white, #FFFFFF);
}
.blog-card:hover .blog-card__meta__list a i {
color: var(--zoomvilla-base, #D7984E);
}
.blog-card:hover .blog-card__title {
color: var(--zoomvilla-white, #FFFFFF);
}
.blog-card:hover .blog-card__title {
margin-bottom: 20px;
}
.blog-card:hover .blog-card__image__inner--1 {
transform: translateY(-100%);
}
.blog-card:hover .blog-card__image__inner--2 {
transform: translateY(0%);
}
.blog-card:hover .blog-card__image__link {
opacity: 1;
transform: translateY(0);
transition-delay: 200ms;
}
.blog-card:hover .zoomvilla-btn {
opacity: 1;
margin-bottom: 0;
}
.blog-list-card {
position: relative;
z-index: 1;
}
.blog-list-card__image {
position: relative;
overflow: hidden;
}
.blog-list-card__image img {
object-fit: cover;
width: 100%;
transition: all 0.5s ease-in-out;
transform: scale(1);
}
.blog-list-card__image__link {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: rgba(var(--zoomvilla-black5-rgb, 30, 31, 36), 0.8);
position: absolute;
top: 0;
left: 0;
opacity: 0;
transform: translateY(-25%);
z-index: 1;
transition: opacity 500ms ease 0ms, transform 500ms ease 0ms;
}
.blog-list-card__image__link::before, .blog-list-card__image__link::after {
content: "";
width: 25px;
height: 2px;
background-color: var(--zoomvilla-white, #FFFFFF);
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.blog-list-card__image__link::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.blog-list-card__content {
padding-top: 30px;
}
.blog-list-card__meta {
margin-bottom: 21px;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 25px;
margin-bottom: 21px;
}
.blog-list-card__category {
color: var(--zoomvilla-white, #FFFFFF);
border-radius: 30px;
font-family: var(--zoomvilla-heading-font, "Readex Pro", sans-serif);
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
padding: 7px 32px;
background-color: var(--zoomvilla-base, #D7984E);
}
.blog-list-card__category::after, .blog-list-card__category::before {
display: none;
}
.blog-list-card__category:hover {
background-color: var(--zoomvilla-black, #222222);
}
.blog-list-card__info__date {
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin: 0;
}
.blog-list-card__info {
display: flex;
align-items: center;
}
.blog-list-card__info__text {
margin: 0;
position: relative;
color: var(--zoomvilla-text, #92918F);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
font-family: var(--zoomvilla-font, "Saira", sans-serif);
}
.blog-list-card__info__text:not(:last-child)::after {
content: "/";
margin-left: 6px;
margin-right: 6px;
font-size: 16px;
color: var(--zoomvilla-text, #92918F);
font-weight: 400;
}
.blog-list-card__info__text a {
color: inherit;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.blog-list-card__info__text a:hover {
background-size: 100% 1px;
}
.blog-list-card__info__text a:hover {
color: var(--zoomvilla-base, #D7984E);
}
.blog-list-card__comment {
margin: 0;
position: relative;
color: var(--zoomvilla-text, #92918F);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
font-family: var(--zoomvilla-font, "Saira", sans-serif);
}
.blog-list-card__comment a {
color: inherit;
}
.blog-list-card__comment__icon {
color: var(--zoomvilla-base, #D7984E);
margin-right: 5px;
}
.blog-list-card__title {
margin: 0;
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 100%;
text-transform: capitalize;
margin-bottom: 12px;
max-width: 674px;
width: 100%;
}
.blog-list-card__title a {
color: inherit;
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
transition: all 500ms ease;
}
.blog-list-card__title a:hover {
background-size: 100% 1px;
}
.blog-list-card__title a:hover {
color: var(--zoomvilla-base, #D7984E);
}
.blog-list-card__text {
margin-bottom: 40px;
max-width: 700px;
width: 100%;
}
.blog-list-card .zoomvilla-btn {
background-color: var(--zoomvilla-black, #222222);
}
.blog-list-card .zoomvilla-btn::after {
background-color: var(--zoomvilla-base, #D7984E);
}
.blog-list-card .zoomvilla-btn::before {
background-color: var(--zoomvilla-base, #D7984E);
}
.blog-list-card .zoomvilla-btn:hover::after {
background-color: var(--zoomvilla-white, #FFFFFF);
}
.blog-list-card:hover .blog-list-card__image img {
transform: scale(1.1);
}
.blog-list-card:hover .blog-list-card__image .blog-list-card__image__link {
opacity: 1;
visibility: visible;
transform: translateY(0%);
}
.blog-list-card:hover .blog-list-card__image::after {
transform: translate(0%, 0%);
opacity: 1;
visibility: visible;
}



.singleBlogPage{}
.single-blog-details-area{font-size: 16px;line-height: 22px;}

.single-blog-image{overflow: hidden; border-radius: 15px;margin-bottom:20px;}
.single-blog-image img{
	width:100%;
}
.single-blog-details-area .blog-meta{margin-bottom:15px;}
.single-blog-details-area .blog-meta ul li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
}
.single-blog-details-area .blog-meta ul li:last-child{margin-right:0px;}
.blog-meta ul li a {color: #000d83;font-weight: 500;}
.single-blog-title{
    font-size: 26px;
    font-weight: 600;	
}
.single-blog-content{}
.single-blog-content p{}
.single-blog-comments-area{}
.single-blog-comments-area .comments-title{
    font-size: 24px;
    font-weight: 600;	
}
.single-blog-comments-area .comment-reply-title{
	 font-size: 22px;
    font-weight: 600;	
}
.single-blog-comments-area .comment-list{}
.single-blog-comments-area .comment-form-area{}
.single-blog-comments-area .comment-form-area .comment-form-comment label{}
.single-blog-comments-area .comment-form-area .comment-form-comment textarea{}
.single-blog-comments-area .comment-form-area .comment-form-comment input{}
.single-blog-comments-area .comment-form-area .comment-form-comment{}
.single-blog-comments-area .comment-form-area .comment-form-comment label{}
.single-blog-comments-area .comment-form-area .comment-form-comment textarea{
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 150px;
    padding: 6px 12px;	
 width: 100%;		
}
.single-blog-comments-area .comment-form-area .comment-form-author{}
.single-blog-comments-area .comment-form-area .comment-form-author label{display:block;margin-bottom:5px;}
.single-blog-comments-area .comment-form-area .comment-form-author input{
	border: 1px solid #ddd;
    border-radius: 6px;
    height: 36px;
    padding: 6px 12px;	
	width: 100%;		
}
.single-blog-comments-area .comment-form-area .comment-form-email{}
.single-blog-comments-area .comment-form-area .comment-form-email label{display:block;margin-bottom:5px;}
.single-blog-comments-area .comment-form-area .comment-form-email input{
border: 1px solid #ddd;
    border-radius: 6px;
    height: 36px;
    padding: 6px 12px;	
	width: 100%;		
}
.single-blog-comments-area .comment-form-area .comment-form-url{}
.single-blog-comments-area .comment-form-area .comment-form-url label{display:block;margin-bottom:5px;}
.single-blog-comments-area .comment-form-area .comment-form-url input{
border: 1px solid #ddd;
    border-radius: 6px;
    height: 36px;
    padding: 6px 12px;			
	 width: 100%;	
}
.single-blog-comments-area .comment-form-area .comment-form-cookies-consent{}
.single-blog-comments-area .comment-form-area .comment-form-cookies-consent label{}
.single-blog-comments-area .comment-form-area .comment-form-cookies-consent input{}
.single-blog-comments-area .comment-form-area .form-submit{}
.single-blog-comments-area .comment-form-area .form-submit .submit{
    background: #000;
    border: 0;
    color: #fff;
    height: 40px;
    padding: 3px 15px;
    border-radius: 6px;	
   	
}
.single-blog-comments-area .comment-form-area .form-submit .submit:hover{
  background: #000;
}
.single-blog-sidebar{}
.single-blog-related-posts-Area{}
.single-blog-related-posts-widget{}
.single-blog-related-title{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 15px;	
}
.single-blog-related-items{}
.single-blog-related-items .single-blog-related-item{}
.single-blog-related-items .single-blog-related-item:last-child{}
.single-blog-related-item-inner{color: #000;}
.single-blog-related-thumb{width:90px;height:75px;overflow:hidden;border-radius:6px;}
.single-blog-related-thumb img{height:100%;width:100%;}
.single-blog-related-info{ -webkit-box-flex: 1; -ms-flex: 1; flex: 1;}
.single-blog-related-post-title{
    font-size: 16px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
    margin-bottom: 3px;	
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;		
	
}
.single-blog-related-date{
    font-size: 14px;
	line-height:20px;
    font-weight: 500;	
}
.cartRightSideAreainner .coupon-section .applyCopunBox{}
.cartRightSideAreainner .coupon-section .applyCopunBoxinner{padding: 15px; background: #fff; border-radius: 8px; border: 1px solid #e0e0e0;}
.cartRightSideAreainner .coupon-section .applyCopunBox .applyCopunInputGroup{gap: 10px;}
.cartRightSideAreainner .coupon-section .applyCopunBox .applyCopunInputGroup .ticketIcon{}
.cartRightSideAreainner .coupon-section .applyCopunBox .applyCopunInputGroup .apply-coupon-link{text-decoration: none; color: #212529; font-weight: 600; font-size: 16px;}
.cartRightSideAreainner .coupon-section .applyCopunBox .apply-coupon-btn{border: 2px solid #e91e63; background: #fff; color: #e91e63; font-weight: 600; padding: 8px 20px; border-radius: 4px; font-size: 14px; text-transform: uppercase;}
.cartRightSideAreainner .coupon-section .applyCopunBox .apply-coupon-btn:hover{border: 2px solid #e91e63; background: #fff; color: #e91e63;}

.addAdressModal {}
.addAdressModalDiolog{
    max-width: 800px;
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;	
}
.addAdressModalContent{}
.addAdressModalHedear{padding: 10px 15px;}
.addAdressModalHedear .modal-title{font-size: 20px;line-height: 26px;font-weight: 600;}
.addAdressModalHedear .btn-close{}
.addAdressModalBody{padding:0px;}
.addAdressModalBody .address-add-from-inner{padding: 15px 15px 15px;}
.addAdressModalBody .address-add-from-inner .address-form-box {margin-bottom: 10px;}

@media(max-width:799px) {
.addAdressModalDiolog{
    max-width: 100%;
    width: auto;
}	
}

@media(max-width: 575px) {
    .user-icon {
        display: block;
    }
    .user-text {
        display: none;
    }
    .web-header-user-dropdown-toogler {
        width: auto !important;
    }
    .web-header-bottom-inner .search-switcher {
        padding: 7px 0px 0 10px !important;
    }
}

@media(max-width: 480px) {
    .order-sucess-btn-sec {display: flex;align-items: center;justify-content: space-between;}
    .order-sucess-btn-sec a {width: 48%;font-size: 12px;padding: 10px 12px !important;border-radius: 23px;}
    .order-success-sec {padding-top: 110px !important;padding-bottom: 45px !important;}
    .main-product-display {flex-wrap: wrap;}
    /*.cart-img { width: 50% !important;}*/
    .cart-info-box {flex-wrap: wrap;}
    .cart-iteam-right-box {width: 100%;}
}

.userAddressListItem { 
	cursor: pointer; 
	position:relative; 
    border-bottom: 1px solid #ddd;	
}
.userAddressListItem input {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;
}
.userAddressListIteminner{
    font-size: 14px;
    line-height: 20px;
    font-family: "Poppins-Regular";
    margin: 0px;	
    padding: 15px 15px;	
}
.addressrAdioCcustom {
display:inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: border-color 0.3s ease;
}
.addressrAdioCcustom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #d63035;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s ease;
}
.userAddressListItem input:checked + .userAddressListIteminner .addressrAdioCcustom::after {
  transform: translate(-50%, -50%) scale(1);  
}
.userAddressListItem input:checked + .userAddressListIteminner .addressrAdioCcustom {
  animation: pulse 0.4s ease;
  border-color:#d63035;
}
.userAddressDtlsArea .userAddressLeftSide .userAddressDtls p{margin-bottom:5px;}
.userAddressDtlsArea .userAddressLeftSide .userAddressDtls p:last-child{margin-bottom:0px;}
.userAddressListIteminner .userAddressDtlsArea{
    gap: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;	
}
.userAddressListIteminner .userAddressDtlsArea .userAddressLeftSide{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;	
}


.radioStyle_1Box{position:relative;margin:0px;} 
.radioStyle_1Box input{
	position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;	
} 
.radioStyleCircle {
display:inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: border-color 0.3s ease;
}
.radioStyleCircle::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #d63035;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s ease;
}
.radioStyle_1Box input:checked + .radioStyleCircle::after {
  transform: translate(-50%, -50%) scale(1);  
}
.radioStyle_1Box input:checked + .radioStyleCircle {
  animation: pulse 0.4s ease;
  border-color:#d63035;
}
.address-add-sec .address-right-top{padding: 0px;}
.address-add-sec .address-right-top h3 {margin-bottom: 0px;}
.address-add-sec .userAddressRightSide{text-align:right;}
.address-add-sec .userAddressRightSide .userAddressRightSideBtns{}
.address-add-sec .userAddressRightSide .userAddressRightSideBtns .edit-address-btn{
    padding: 0px 0px;
    font-size: 18px;
    line-height: 22px;
    background-color: transparent;
    border: 0;
    color: #0d6efd;	
}
.address-add-sec .userAddressRightSide .userAddressRightSideBtns .delete-address-btn{
    padding: 0px 0px;
    font-size: 18px;
    line-height: 22px;
    background-color: transparent;
    border: 0;
    color: #dc3545;	
}

/* Payment Mode Section */
.payment-mode-section {
margin-bottom: 20px;
}
.payment-mode-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 15px;
}
.payment-mode-header h4 {
margin: 0;
font-weight: 600;
color: #333;
font-size: 18px;
}
.recommended-badge {
background: #ff6b6b;
color: white;
padding: 4px 12px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
display: inline-flex;
align-items: center;
}
.recommended-badge i {
font-size: 9px;
margin-right: 4px;
}
/* Payment Options List */
.payment-options-list {
margin-bottom: 20px;
}
.payment-option-item {
border: 1px solid #e0e0e0;
background: white;
border-radius: 8px;
padding: 15px;
margin-bottom: 12px;
cursor: pointer;
transition: all 0.3s;
}
.payment-option-item:hover {
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.payment-option-item.selected {
border: 2px solid #ed3237;
background: #fff5f8;
}
.payment-option-label {
display: flex;
align-items: center;
margin: 0;
cursor: pointer;
width: 100%;
}
.payment-option-label input[type="radio"] {
display: none;
}
.payment-radio-custom {
width: 18px;
height: 18px;
border: 2px solid #ccc;
border-radius: 50%;
margin-right: 12px;
position: relative;
flex-shrink: 0;
transition: all 0.3s;
}
.payment-option-label input[type="radio"]:checked + .payment-radio-custom {
border-color: #ff6b9d;
}
.payment-option-label input[type="radio"]:checked + .payment-radio-custom::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: #ff6b9d;
border-radius: 50%;
}
.payment-icon {
font-size: 20px;
margin-right: 12px;
color: #666;
width: 24px;
text-align: center;
}
.payment-option-item.selected .payment-icon {
color: #ed3237;
}
.payment-name {
flex: 1;
font-weight: 500;
color: #333;
font-size: 15px;
}
/* Recommended Payment Panel */
.recommended-payment-panel {
background: #fff5f8;
border: 2px solid #ed3237;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
}
.recommended-payment-panel h5 {
font-weight: 600;
color: #333;
margin-bottom: 15px;
font-size: 16px;
}
.selected-payment-label {
display: flex;
align-items: center;
margin-bottom: 10px;
cursor: pointer;
}
.selected-payment-label input[type="radio"] {
display: none;
}
.selected-payment-label .payment-radio-custom {
width: 18px;
height: 18px;
border: 2px solid #ff6b9d;
border-radius: 50%;
margin-right: 12px;
position: relative;
flex-shrink: 0;
}
.selected-payment-label input[type="radio"]:checked + .payment-radio-custom::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background: #ff6b9d;
border-radius: 50%;
}
.selected-payment-icon {
font-size: 20px;
margin-right: 12px;
color: #ed3237 !important;
width: 24px;
text-align: center;
}
.selected-payment-name {
font-weight: 600;
color: #333;
font-size: 15px;
}
.selected-payment-desc {
color: #666;
font-size: 14px;
margin: 0;
margin-left: 50px;
}
.place-order-btn {
width: 100%;
background: #333;
color: white;
border: none;
padding: 12px 20px;
border-radius: 30px;
font-weight: 600;
font-size: 16px;
margin-top: 15px;
cursor: pointer;
transition: all 0.3s;
}
.place-order-btn:hover:not(:disabled) {
background: #000;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.place-order-btn:disabled {
background: #ccc;
color: #999;
cursor: not-allowed;
filter: blur(3px);
opacity: 0.5;
pointer-events: none;
}
.address-right-box.border0 {
border: none;
padding-top: 10px;
margin-top: 5px;
border-top: 2px solid #333;
}
/* Buttons */
.address-right-bottom {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid #e0e0e0;
}
.place-btn-sec {
width: 100%;
}
.btn-container {
width: 100%;
}
.shopping-btn-custom {
background: #333;
border: 1px solid #333;
color: white;
padding: 12px 20px;
border-radius: 30px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
font-size: 14px;
width: 100%;
text-align: center;
display: block;
}
.shopping-btn-custom:hover {
background: #000;
border-color: #000;
color: white;
}

.quantityPriceListArea{}
.quantityPriceListArea .ttl{
    font-size: 16px;
    line-height: 22px;	
}
.quantityPriceListAreainner{   
}
.quantityPriceList{display:flex;flex-wrap:wrap;gap:5px;}
.quantityPriceList .quantityPriceListItem{}
.quantityPriceListIteminner{
    width: 125px;    
    text-align: center;
    background-color: #f3f1f1;
    color: #000;
    padding: 8px 10px;
    border-radius: 2px;
}
.quantityPriceListIteminner .proQuantity{
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 0px;	
}
.quantityPriceListIteminner .prPrice{
    color: #ed3237;
    font-size: 20px;
    font-weight: 600;	
}
.selectSizeListArea{}
.selectSizeList{display:flex;flex-wrap:wrap;gap:5px;}
.selectSizeListItem{position:relative;}
.selectSizeList .selectSizeListItem{}
.selectSizeList .selectSizeListItem:last-child{}
.selectSizeListItem .radioInput{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;}
.selectSizeListIteminner{margin:0px;}
.selectSizeListIteminner .sizeName{
    width: 100%;
    background-color: #fbf1f1;
	color:#000;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;	
}
.selectSizeListIteminner .qtyInput{
    width: 42px;
    height: 30px;
    padding: 3px;
    border: 1px solid #333;
    border-radius: 4px;
    text-align: center;
    position: relative;
    z-index: 1;
    font-size: 14px;	
}
.selectSizeListItem .radioInput:checked + .selectSizeListIteminner .sizeName{background-color: #333;color:#fff;}
.proEmbroideryArea{}
.proEmbroideryTopArea{}
.proEmbroideryTopArea .form-check{font-size: 14px;line-height: 20px;}
.proEmbroideryTopArea .form-check-label{font-weight: 600;}
.proEmbroideryTopArea .form-check-input{ border-color: #747474;box-shadow:none;}
.proEmbroideryTopArea .form-check-input:checked {background-color: #000;border-color: #000;}
.proEmbroideryDtlsArea{padding: 10px 0 0;}
.proEmbroideryDtlsArea .form-group{margin-bottom: 10px;}
.proEmbroideryDtlsArea .form-group .labelName{font-size: 14px;line-height: 20px;font-weight: 600;margin-bottom: 5px;}
.proEmbroideryDtlsArea .form-group .form-control{font-size: 14px;}
.proEmbroideryPriceContent{}
.proEmbroideryPriceContent p{font-size: 14px;line-height: 20px;margin-bottom:0px;}
.proEmbroideryPriceContent p:last-child{margin-bottom:0px;}
.proEmbroideryPriceContent p strong{}


.checkout-cart {}
.checkout-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 10px;
}
.checkout-cart-header .title{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 0px;	
}
.checkout-cart-header .cart-count {
  background: #1e2329;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight:600;
}
.checkout-cart-table {  
}
.checkout-cart-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 0.8fr 1fr; 
  border-bottom: 1px solid #e6e6e6;
}
.checkout-cart-row.head {
    font-weight: 700;
    font-size: 14px;
}
.checkout-cart-row.head .th{ padding: 5px 5px;}
.checkout-cart-row.head .th:first-child{text-align:left;}
.checkout-cart-row.head .th:nth-child(2){text-align:right;}
.checkout-cart-row.head .th:nth-child(3){text-align:center;}
.checkout-cart-row.head .th:last-child{text-align:right;}
.checkout-cart-row.body .td{ 
    padding: 5px 5px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    font-weight: 500;
}
.checkout-cart-row.body .td:first-child{text-align:left;}
.checkout-cart-row.body .td:nth-child(2){text-align:right;}
.checkout-cart-row.body .td:nth-child(3){text-align:center;}
.checkout-cart-row.body .td:last-child{text-align:right;}
.checkout-cart-row .product p {
  margin: 2px 0;  
}
.checkout-cart-row .price, .checkout-cart-row .qty, .checkout-cart-row .total {
  font-size: 14px;
}
.checkout-cart-summary .summary {
  padding: 15px 0px;
}
.checkout-cart-summary .line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
    font-size: 14px;
    line-height: 20px;
}
.checkout-cart-summary .bold {
  font-weight: bold;
}
.checkout-cart-summary .line .muted {
  color: #999;}

.checkout-cart-grand-total{
    background: #ff9f9f;
    background: #d63035;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    padding: 10px 15px;
    font-size: 20px;    
}
.checkout-cart-grand-total .ttl{ font-weight: 700;}
.checkout-cart-grand-total .txt{ font-weight: 600;}
.checkout-cart-grand-total .txt strong{ font-weight: 600;}

.purchaseOptionModal{}
.purchaseOptionModal .customeAppModalDiolog{width: 100%;max-width: 420px;}
.purchaseOptionModal .customeAppModalFooter{}
.purchaseOptionModal .customeAppModalFooter .proceedCheckoutBtn{background-color: #25262B;border-color:#25262B;color:#fff;padding: 7px 5px 8px;font-weight: 600;}
.purchaseOptionModal .customeAppModalFooter .proceedCheckoutBtn:hover{background-color: #25262B;border-color:#25262B;color:#fff;}
.option-product-wrapper {}
.option-product-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #e5e7eb;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.option-product-wrapper .option-product-card:last-child{margin-bottom: 0px;}
.option-product-card:hover {border-color: #e5e7eb;}
.option-product-card input {display: none;}
.option-product-card .radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #d63035;
  border-radius: 50%;
  position: relative;
}
.option-product-card input:checked + .radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #d63035;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.option-product-info {flex: 1;}
.option-product-info h4 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 2px;
}
.option-product-info p { 
  font-size: 12px;
  line-height:16px;
  color: #6b7280;
}
.option-product-info .title{}
.option-product-info .para{}


.option-price-area {text-align: right;}
.option-price-area .price {font-size: 16px;font-weight: 700;}
.option-price-area .badge {
  display: inline-block;
  margin-top: 4px;
  background: #fde68a;
  color: #92400e;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.option-price-area .badge.badge-orange {
  background: #fed7aa;
  color: #9a3412;
}
.option-price-area .priceOff{}
.loginModal{}
.loginModal .customeAppModalDiolog{
    width: 100%;
    max-width: 420px;	
}
.login-otp-info-text{font-size: 14px;line-height: 18px;margin-bottom: 10px;}
.login-otp-info-text a{color: #ed3237;}
.login-otp-info-text .editBtn{color: #ed3237;}
.login-otp-wrapper .form-group{margin-bottom:10px;}
.login-otp-wrapper .form-group .input-label{
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 5px;	
}
.login-otp-wrapper .form-group p{
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;	
}
.login-otp-wrapper .form-group a{color: #ed3237;}
.login-otp-wrapper .form-group .resendBtn{color: #ed3237;font-weight: 500;	}
.login-input-box {
     display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 0px 10px;
}
.login-input-box .country-code {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin-right: 0px;
    color: #000;
}
.login-input-box .form-control {   
    outline: none;
    width: 100%;
    font-size: 15px;
    border: 0;
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
}
.login-otp-btn-area{}
.login-otp-btn-area .login-otp-btn{
	width: 100%;
    padding: 12px;
    background-color: #25262B;
	border:1px solid #25262B;
	color: #fff;   
    font-weight: 600;
    border: none;
    border-radius: 8px;
    font-size: 16px;    
}
.login-otp-btn-area .login-otp-btn:hover{}
.login-otp-btn-area .login-otp-btn.disable{
	 cursor: not-allowed;	
}
.login-otp-terms{
    font-size: 12px;
    line-height: 16px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 0px;	
}
.login-otp-terms br{}
.login-otp-terms a{color: #000;text-decoration: underline;}
.login-otp-terms a:hover{}


.choose-address-wrapper {}
.choose-address-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* padding: 14px; */
    /* border: 1px solid #e0e0e0; */
    /* border-radius: 6px; */
    margin-bottom: 10px;
    cursor: pointer;
}

.choose-address-card input {
  margin-top: 8px;
}
.choose-address-card input[type="radio"] {
  accent-color: red;
}
.choose-address-content p {
    margin: 4px 0;
    color: #000;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.choose-address-content .title {
    display: block;
    font-size: 12px;
    line-height: 16px;
	font-weight:700;
	color:#000;
    margin-bottom: 4px;
}
.choose-address-content .edit-link {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #e91e63;
    text-decoration: none;
}
.choose-address-content .edit-link:hover {
  text-decoration: underline;
}
.choose-add-address-btn-area{}
.choose-add-address-btn-area .choose-add-address-btn {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #25262B;
    background: #25262B;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.choose-add-address-btn-area .choose-add-address-btn span {
  font-size: 18px;
  font-weight: bold;
}
.applyCouponCodeModal{}
.applyCouponCodeArea{}
.applyCoupo-cart-box { 
    background: #fff;
    padding: 0px 0px 15px;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
    border-bottom: 1px solid #ddd;
}
.applyCoupo-cart-box .cart-text {
  margin: 0 0 10px;
  font-size: 14px;
  color: #2c3e50;
}
.applyCoupo-cart-box .cart-text strong {
  font-weight: 600;
  color: #000; 
}
.applyCoupo-cart-box .coupon-box {
  display: flex;
  border: 1px solid #dcdde1;
  border-radius: 10px;
  overflow: hidden;
}
.applyCoupo-cart-box .coupon-box input {
  flex: 1;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
}
.applyCoupo-cart-box .coupon-box button {
  border: none;
  background: transparent;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  color: #7f8fa6;
  cursor: pointer;
}
.applyCoupo-cart-box .coupon-box button:hover {
  color: #2f3640;
}
.applyCoupon-card {
    /* background: #fff; */
    /* border-radius: 10px; */
    padding: 10px 0;    
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
    border-bottom: 1px solid #ddd;
}
.applyCouponCodeArea .applyCoupon-card:last-child{border-bottom:0;}
.applyCoupon-card.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.applyCoupon-card .tag {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
.applyCoupon-card .tag.green {
  color: #1aa260;
}
.applyCoupon-card .desc {
    font-size: 12px;
    line-height: 16px;
    color: #666;
    margin: 0px 0 4px;
}
.applyCoupon-card .tc {
    display: inline-block;
    font-size: 10px;
    line-height: 14px;
    font-weight: 500;
    color: #777;
    cursor: pointer;
}
.applyCoupon-card .badge {
    display: inline-block;
    font-size: 10px;
    line-height: 14px;
    font-weight: 600;
    background: #e1dfdf;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.applyCoupon-card .badge.dark {
  background: #222;
  color: #fff;
}
.applyCoupon-card h3 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    color: #000;
    margin: 3px 0 3px;
}
.applyCoupon-card h3.blue {
  color: #d63035;
}
.applyCoupon-card .btn {
    border: none;
    background: #d63035;
    color: #fff;
    padding: 5px 12px 6px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 14px;
    font-weight: bold;
    cursor: pointer;
    height: fit-content;
}
.applyCoupon-card .btn.outline {
  background: transparent;
  color: #d63035;
  border: 1px solid #d63035;
}


.applyCoupon-btn-area{}
.applyCoupon-btn-area .applyCoupon-btn {
  border: none;
  background: #1a5fd0;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  height: fit-content;
}


.trendingProductSec{}
.trendingProductSecinner{}

.trendingProductSecinner .swiper {
  width: 100%;
  padding-top: 20px;
}
.trendingProductSecinner .swiper-wrapper{height:auto;}
.trendingProductSecinner .swiper-pagination-bullet,
.trendingProductSecinner .swiper-pagination-bullet-active {
  background: #fff;
}

.trendingProductSecinner .swiper-pagination {
  bottom: 1.25rem !important;
}
.trendingProductSliderArea{position:relative;}
.trendingProductSliderArea .swiper-pagination{position: relative;margin-top: 30px;}
.trendingProductSliderArea .swiper-pagination-bullet{background: #ddd;opacity: 1;height: 10px;width: 10px;}
.trendingProductSliderArea .swiper-pagination-bullet-active{background-color:#ed3237;}
.trendingProductSliderArea .custom-navigation-button{ position: absolute;top: 35%;border: 1px solid #606a78;background-color: transparent;color: #606a78;border-radius: 50%;width: 35px;height: 35px; cursor: pointer;z-index: 1;}
.trendingProductSliderArea .custom-navigation-button.custom-prev{left: -5%;}
.trendingProductSliderArea .custom-navigation-button.custom-next{right: -5%;}


.trendingProductSecinner .swiper-slide {
  /*width: 18.75rem;
  height: 28.125rem;*/
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;    
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover; 
background-image:inherit !important;
    border-radius: 30px;
    overflow: hidden;	
}

.trendingProductSecinner .swiper-slide img{border-radius:10px;}
.trendingProductSecinner .swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  padding: 0 0 0 1.563rem;
  text-transform: uppercase;
}

.trendingProductSecinner .swiper-slide p {
  color: #dadada;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  padding: 0 1.563rem;
  line-height: 1.6;
  font-size: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trendingProductSecinner .swiper-slide a {
  margin: 1.25rem 1.563rem 3.438rem 1.563rem;
  padding: 0.438em 1.875rem;
  font-size: 0.9rem;
}

.trendingProductSecinner .swiper-slide a:hover {
  color: #005baa;
}

.trendingProductSecinner .swiper-slide div {
  display: none;
  opacity: 0;
  padding-bottom: 0.625rem;
}

.trendingProductSecinner .swiper-slide-active div {
  display: block;
  opacity: 1;
}

/*.trendingProductSecinner .swiper-slide--one {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("https://images.unsplash.com/photo-1628944682084-831f35256163?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80") no-repeat 50% 50%/cover;
}

.trendingProductSecinner .swiper-slide--two {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("https://images.unsplash.com/photo-1515309025403-4b0184873cef?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=735&q=80") no-repeat 50% 50%/cover;
}

.trendingProductSecinner .swiper-slide--three {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("https://images.unsplash.com/photo-1545671913-b89ac1b4ac10?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80") no-repeat 50% 50%/cover;
}

.swiper-slide--four {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("https://images.unsplash.com/photo-1598977123118-4e30ba3c4f5b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80") no-repeat 50% 50%/cover;
}

.trendingProductSecinner .swiper-slide--five {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url("https://images.unsplash.com/photo-1570481662006-a3a1374699e8?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=765&q=80") no-repeat 50% 50%/cover;
}
*/
.trendingProductSecinner .swiper-3d .swiper-slide-shadow-left,
.trendingProductSecinner .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.homeBlogSec{}
.homeBlogSecinner{}
.homeBlogSecinner .rowBox{}
.homeBlogSecinner .columnBox{}
.homeBlogSecinner .homeBlogBox{}
.homeBlogBoxinner{}
.homeBlogBoxinner .thumbnail{overflow:hidden;border-radius:8px;aspect-ratio:3/2;}
.homeBlogBoxinner .thumbnail img{width:100%;height:100%;object-fit:cover;}
.homeBlogBoxinner .content{padding:15px 0 0;}
.homeBlogBoxinner .content .btmList{margin-bottom:5px;}
.homeBlogBoxinner .content .btmList li{font-size:16px;line-height:22px;}
.homeBlogBoxinner .content .btmList li:last-child{}
.homeBlogBoxinner .content .title{
	font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #25262B;	
}
.homeBlogBoxinner .content .title a{color: #25262B;}
.homeBlogBoxinner .content .title a:hover{color: #25262B;}
.homeBlogBoxinner .content .para{
	font-size:16px;
	line-height:22px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;	
}
.homeFaqSec{}
.homeFaqSecinner{}
.homeFaqSecinner .card{margin-bottom:10px;}
.homeFaqSecinner .card-header{
    padding: 0px;
    background-color: transparent;
    border: 0;	
}
.homeFaqSecinner .card-header .btn{
    padding: 10px 15px;
    display: flex;
	justify-content:space-between;
	gap:5px;
    border: 0;
    background-color: transparent;
    text-align: left;
	font-size: 18px;
    line-height: 24px;	
	font-weight:600;	
}
.homeFaqSecinner .card-header .btn[aria-expanded="false"] .downArrow i{
     rotate: 0deg;
}
.homeFaqSecinner .card-header .btn[aria-expanded="true"] .downArrow i{
     rotate: 180deg;
}
.homeFaqSecinner .collapse{border-top: 1px solid rgba(0, 0, 0, 0.176);}
.homeFaqSecinner .card-body{
    padding: 15px 15px;
    font-size: 16px;
    line-height: 22px;	
}

.ourKeyServiceSec{}
.ourKeyServiceSecinner{}
.ourKeyServiceSecinner .rowBox{}
.ourKeyServiceSecinner .columnBox{}
.ourKeyServiceSecinner .ourKeyServiceBox{}
.ourKeyServiceBoxinner{}
.ourKeyServiceBoxinner .icon{}
.ourKeyServiceBoxinner .icon img{}
.ourKeyServiceBoxinner .content{}
.ourKeyServiceBoxinner .content .title{}

.order-step-sec{}
.order-step-inner{}
.order-step-inner .rowBox{margin-left:-10px;margin-right:-10px;}
.order-step-inner .columnBox{padding-left:10px;padding-right:10px;}
.order-step-inner .order-step-box{margin-bottom:20px;}
.order-step-boxinner{
    border: 1px solid rgba(34, 31, 32, .1);
    border-radius: 8px;
    box-shadow: 0 0 14.604644775390625px #221f2014;
    position: relative;
    background: #fff;
    padding: 20px 20px;
    height: 100%;
}
.order-step-boxinner .icons-area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;	
}
.order-step-boxinner .icons{
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.4s;
    background: #fff;
    display: inline-block;	
}
.order-step-boxinner .icons img{}
.order-step-boxinner .number{
    color: #ffe7ee;
    font-size: 40px;
    transition: all 0.4s;
    font-family: "Convergence", sans-serif;	
}
.order-step-boxinner .content-area{}
.order-step-boxinner .content-area .title{
    font-size: 16px;
    line-height: 22px;
    color: #000;
    transition: all 0.4s;
    font-family: "Convergence", sans-serif;	
}
.order-step-boxinner .content-area .title br{}


.clientSliderWrapper{
    overflow: hidden;
    position: relative;	
}
.clientSliderWrapper:after, .clientSliderWrapper:before {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    background-image: linear-gradient(85.97deg, #fafeff 2.91%, rgba(250, 254, 255, .5) 47.75%, rgba(250, 254, 255, 0) 96.42%);
    background-image: linear-gradient(85.97deg, #ffffff 2.91%, rgba(255, 255, 255, .5) 47.75%, rgba(255, 255, 255, 0) 96.42%);
    z-index: 9;
}
.clientSliderWrapper:before {
    left: 0;
}
.clientSliderWrapper:after {
    right: 0;
    transform: rotate(180deg);
}


.clientSliderWrapper .swiper-container {
	width: 100%;
	overflow: hidden;
}
.clientSliderWrapper .swiper-wrapper {
	transition-timing-function: linear !important;
	position: relative;
}
.clientSliderWrapper .swiper-slide {
	text-align: center;
	font-size: 33px;
	/*background: #fff;*/
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	position: relative;
	overflow: hidden;
	padding: 0 10px;
}
 
.client_logo_bx {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 8px 15px;
	background-color: #fff;	
	margin-bottom:20px;
	border-radius:20px;
}
.client_logo_bxinner {
	text-align:center;
}
.client_logo_bxinner .client_logo_bx_thumnail {
	width:150px;
	display: inline-block;
}
.client_logo_bx_thumnail img {
	max-width:100%;
	cursor: pointer;
 transition: all .3s;
 -webkit-transition: all .3s;
 -moz-transition: all .3s;
 -o-transition: all .3s;
 -ms-transition: all .3s;
	display: inline-block;
}
@-webkit-keyframes line-slide {
 0% {
 background-position: -5% 0;
}
 100% {
 background-position: 100% 0;
}
}
 @keyframes line-slide {
 0% {
 background-position: -5% 0;
}
 100% {
 background-position: 100% 0;
}
}










.web-footer{}
.mob-footer{display:none;}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,172,229,0.5); }
  100% { box-shadow: 0 0 0 6px rgba(56,172,229,0); }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.tearms-inner h2 {
    text-align: center;
    font-size: 33px;
    margin-bottom: 22px;
}

.tearms-inner p {
    font-size: 15px;
}

.tearms-box {
    margin-bottom: 20px;
}

.tearms-box {
    margin-bottom: 20px;
}

.tearms-box h3 {
    font-size: 21px;
}

.tearms-box ul li {
    padding-left: 22px;
    font-size: 15px;
    position: relative;
}

.tearms-box ul li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 6px;
    top: 11px;
    background-color: #25262B;
}

.tearms-box p a {
    color: #ed3237;
}

.bedcum-sec {
    /*background: #000;*/
    background-image: url(https://kidzz.in/mafatlal/public/uploads/about/1762590153.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.bedcum-inner-sec {
    text-align: center;
}

.bedcum-inner-sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bedcum-inner-sec ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #ed3237;
}

.bedcum-inner-sec ul li {
    font-size: 16px;
    font-weight: 500;
}




@media (max-width: 768px) {
.address-wrapper {
flex-direction: column;
}
.address-right {
margin-left: 0 !important;
margin-top: 30px;
}
.address-right-bottom {
flex-direction: column;
}
.shopping-btn {
width: 100%;
}
}

@media(max-width: 480px) {
    .tearms-sec {
        padding-top: 33px !important;
        padding-bottom: 0px !important;
    }
    .tearms-inner h2 {
        font-size: 26px;
    }
    .tearms-inner p {
        font-size: 14px;
    }
    .tearms-box h3 {
        font-size: 17px;
    }
    .tearms-box ul li {
        font-size: 14px;
    }
}

