@font-face {
    font-family: 'ID00 Serif';
    src: url('../fonts/IDSerif-Light.eot');
    src: url('../fonts/IDSerif-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/IDSerif-Light.woff2') format('woff2'),
        url('../fonts/IDSerif-Light.woff') format('woff'),
        url('../fonts/IDSerif-Light.ttf') format('truetype'),
        url('../fonts/IDSerif-Light.svg#IDSerif-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Theinhardt';
    src: url('../fonts/Theinhardt-Rg.eot');
    src: url('../fonts/Theinhardt-Rg.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Theinhardt-Rg.woff2') format('woff2'),
        url('../fonts/Theinhardt-Rg.woff') format('woff'),
        url('../fonts/Theinhardt-Rg.ttf') format('truetype'),
        url('../fonts/Theinhardt-Rg.svg#Theinhardt-Rg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Theinhardt';
    src: url('../fonts/Theinhardt-Md.eot');
    src: url('../fonts/Theinhardt-Md.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Theinhardt-Md.woff2') format('woff2'),
        url('../fonts/Theinhardt-Md.woff') format('woff'),
        url('../fonts/Theinhardt-Md.ttf') format('truetype'),
        url('../fonts/Theinhardt-Md.svg#Theinhardt-Md') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Theinhardt';
    src: url('../fonts/Theinhardt-LtIt.eot');
    src: url('../fonts/Theinhardt-LtIt.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Theinhardt-LtIt.woff2') format('woff2'),
        url('../fonts/Theinhardt-LtIt.woff') format('woff'),
        url('../fonts/Theinhardt-LtIt.ttf') format('truetype'),
        url('../fonts/Theinhardt-LtIt.svg#Theinhardt-LtIt') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

:root {
  --baseFont: 'Theinhardt'!important;
  --titleFont: 'ID00 Serif'!important;
  --baseColor: #000!important;
  --white: #fff;
  --black: #000!important;
  --footerBg: var(--black);
}
html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: clip;
}
body {
  font-family: var(--baseFont);
  color: var(--baseColor);
}
a {
  color: inherit;
  text-decoration: none;
}
a, .btn {
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
img {
  max-width: 100%;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
h1, h2, h3, h4, h5 {
  font-family: var(--titleFont);
}

.btn {
	font-size: 16px;
  line-height: normal;
	border-radius: 40px;
	/*padding: 10px 40px;*/
  padding: 15px 30px 11px 30px;
}
.btnDark {
  height: 2.75rem;
  background-color: var(--black);
  color: var(--white)!important;
  display: inline-flex;
  padding: 15px 30px 11px 30px!important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px!important;
  background: var(--Black, #020100)!important;
}
.btnDark:hover {
  padding: 18px 33px 14px 33px!important;
  background-color: var(--black);
  color: var(--white);
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
/*.minWdBtn {
  min-width: 240px;
}*/

h1, h2, h3, h4 {
  font-family: var(--titleFont);
  font-weight: 300;
  line-height: 1;
}
.xlTitle {
  font-size: 64px;
}
.lgTitle {
  font-size: 32px;
}

/* Menu toggle */
.menuToggle {
	position: relative;
	width: 40px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	max-width: 100%;
  z-index: 5;
}
.menuToggle span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--white);
  border-radius: 10px;
  transition: 0.5s;
}
.menuToggle span:nth-child(1) {
  -webkit-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  transform: translateY(-7px);
  /* width: 20px;
  left: 5px; */
}
.activeMenu .menuToggle span:nth-child(1) {
  /* width: 30px; */
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  -webkit-transition-delay: 0.125s;
  -o-transition-delay: 0.125s;
  transition-delay: 0.125s;
}
.menuToggle span:nth-child(2) {
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px);
  /* width: 15px;
  left: 5px; */
}
.activeMenu .menuToggle span:nth-child(2) {
  /* width: 30px; */
  -webkit-transform: translateY(0) rotate(315deg);
  -ms-transform: translateY(0) rotate(315deg);
  transform: translateY(0) rotate(315deg);
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.activeMenu .menuToggle span:nth-child(3) {
  -webkit-transform: translateX(60px);
  -ms-transform: translateX(60px);
  transform: translateX(60px);
}


.menuCol ul > li {
  display: inline-block;
}
/*.menuCol ul > li + li {
	padding-left: 25px;
}*/
.menuCol ul > li > a {
	color: inherit;
	font-size: 18px;
	font-family: var(--baseFont);
  color: var(--white);
	display: block;
	position: relative;
}
.menuCol ul > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 54px;
  border-top: 3px solid;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.menuCol ul > li > a[data-depth="0"]:hover::before, .menuCol ul > li > a[data-depth="0"].active::before {
  left: 0;
  right: 0;
}
.menuCol {
	text-align: center;
}



.headerCol {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
  color: #fff;
}
.fixedHeader .headerCol {
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	/*background-color: #10243e;*/
}
.hTopLinks > li, .hRightIcons > li {
	display: inline-block;
}
.hTopLinks a, .hRightIcons a {
  color: inherit;
}
.hTopLinks a:hover, .hRightIcons a:hover {
  color: inherit;
  opacity: 0.7;
}
.hTopLinks > li + li {
	padding-left: 25px;
}
.hRightIcons > li + li {
  padding-left: 15px;
}
.headerTopCol {
	padding: 15px 0 10px;
}
.headerBtmCol {
	padding: 10px 0 10px;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.loginLink {
  margin-left: 80px;
}
.lightBg {
  background-color: #DFDCCE;
}



.bannerSection {
	position: relative;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center top;
  color: var(--white);
}
/*.bannerSection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(23,60,104,0.5);
}*/
.bannerContentMain {
	padding: 200px 0 100px;
	position: relative;
	min-height: 100vh;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
	justify-content: center;
}
.bannerContent > h4 {
	padding-bottom: 60px;
}
.bannerContent > p + .btn {
  margin-top: 40px;
}
.bannerContent, .sIndicator {
	max-width: 430px;
	text-align: center;
	margin: 0 auto;
}
.bannerSection .carousel-indicators {
	bottom: 40px;
	margin: 0;
}



.sectionSpace {
	padding: 120px 0;
}
.sectionSpaceSm {
  padding: 60px 0;
}

.tabLinks > li {
  display: inline-block!important;
}
.tabLinks > li + li {
  padding-left: 24px!important;
}
.tabLinks a {
  font-size: 32px!important;
  font-family: var(--titleFont)!important;
  color: #9A9999!important;
}
.tabLinks a.active, .tabLinks a:hover {
  color: var(--black)
}
.uLink {
  text-decoration: underline;
  color: #020100!important;
}
.uLink:hover {
  color: #020100!important;
  opacity: 0.7!important;
}

.mb-cs {
	margin-bottom: 55px;
}

.imgCol1 img {
	width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.imgCol1 img, .sliderContentMain {
  height: 970px!important;
}
.sliderContentMain {
  padding: 50px 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.sliderContent {
	margin: 0 auto;
	max-width: 430px;
	text-align: center;
}
.sliderContent > p {
	padding: 60px 0 40px;
}
.carousel-indicators.darkIndicators [data-bs-target] {
  background-color: var(--black);
}
.sliderStyle .carousel-indicators {
  bottom: 40px;
}

.proImgCol {
	overflow: hidden;
}
.proImgCol .proImg {
  background: var(--Light-Grey, #F1F1F1);
}
.proImg {
	width: 100%;
	height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: transform 800ms ease-in-out 0s;
  -o-transition: transform 800ms ease-in-out 0s;
  transition: transform 800ms ease-in-out 0s;
}
.proSlider .proImg {
  height: 500px;
  width: 100%;
  display: block !important;
}
.proCardLg .proImg {
  height: 1100px;
}
.proCardMd .proImg {
  height: 686px;
}
.proCard:hover .proImg {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.proContentCol {
	padding-top: 15px;
}
.proContentCol a:hover {
  color: inherit;
}
.proName {
  font-family: Theinhardt;
  font-weight: 400;
	line-height: 1.2;
	display: block;
  font-size: 1rem!important;
}
.priceText {
  font-size: 16px;
  font-family: Theinhardt;
	font-weight: 600!important;
}

.cardStyle2 {
  border-top: 1px solid #ccc;
}
.cs2Title {
	padding: 30px 0 20px;
}
.cs2ImgCol {
  overflow: hidden;
}
.cs2Img {
	width: 100%;
	height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: transform 800ms ease-in-out 0s;
  -o-transition: transform 800ms ease-in-out 0s;
  transition: transform 800ms ease-in-out 0s;
}
.cardStyle2:hover .cs2Img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.videoSection {
  position: relative;
}
.videoXlImg {
  width: 100%;
  height: 905px;
  -o-object-fit: cover;
  object-fit: cover;
}
.videoContentMain {
	padding: 50px 30px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
}
.videoContent {
	margin: 0 auto;
	max-width: 430px;
	text-align: center;
}
.videoContent > p {
	padding: 60px 0 40px;
}


.footerSection {
  background-color: var(--footerBg);
  color: var(--white);
  padding: 60px 0;
}
.fLogo2 img {
	width: 174px;
}
.footerBtmCol {
	padding-top: 180px;
}
.footerTitle {
	display: block;
	font-weight: 500;
}
.newsletterCol p {
	font-size: 32px;
	line-height: normal;
}
.newsletterCol p + .btn {
  margin-top: 15px;
}
.footerLogoIcon {
  width: 250px;
}
.footerLinks a {
	display: inline-block;
	text-decoration: underline;
  color: inherit;
}
.footerLinks a:hover {
	opacity: 0.7;
}

.sliderTrigger {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	width: 50%;
	margin-left: auto;
}
.searchCol {
	transform: translateY(-100%);
  opacity: 0;
  position: absolute;
  top: 100%;
  /*transition: opacity .25s, transform .25s!important;*/
  left: 0;

}
.actSearch .searchCol {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
  width: 100%;
}
.searchColInner {
	width: 100%;
	max-width: 100%;
	position: relative;
	
}
span.searchButtonTrigger a:hover {
    color: #000!important;
    opacity: 1!important;
}
span.searchButtonTrigger a {
    color: #000;
    border-radius: 40px;
    border: 1px solid black;
    padding: 8px 25px;
    align-items: center;
    display: flex;
    background: #fff;
    /*margin-right: 30px;*/
}
.searchCloseTrigger, .searchButtonTrigger {
  padding: 40px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
	opacity: 1;
	cursor: pointer;
}
.searchCloseTrigger img {
  display: block;
}
.searchColInner .form-control {
  background: black;
	border: unset;
	border-radius: 0;
	padding: 50px 60px;
	font-size: 30px;
  color: #fff;

}
.form-control:focus {
	box-shadow: none;
}



/*  */
.innerPageTopSpace {
	padding: 132px 0 0;
}
.innerPageContent {
  padding: 60px 0 150px;
}
.headerCol.lightHeader, .lightHeader .menuCol ul > li > a {
	color: var(--baseColor);
}
.lightHeader .headerBtmCol {
	border-top-color: #ccc;
	/* border-bottom-color: #020100; */
	border-bottom-color: #ccc;
}
.fixedHeader .headerCol.lightHeader, .headerCol.lightHeader {
  background-color: #fff;
}
.lightHeader .menuToggle span {
  background-color: var(--black);
}

.formStyle .form-select,
.formStyle .form-control {
	border: none!important;
	border-bottom: 1px solid #ccc!important;
	border-radius: 0;
	padding: 12px 0;
	font-size: 32px;
  line-height: normal;
  color: #000;
  background-color: transparent
}
.formStyle .form-select:focus {
	box-shadow: none;
}
.formStyle .form-select {
  background-image: url('../img/angle-down.svg');
  background-position: left center;
  padding-left: 30px;
}
.formStyle .form-control::placeholder {
  color: #ccc;
}
.fldCol {
  position: relative;
}
.requiredFldCol::before {
	content: "*";
	position: absolute;
	right: 0;
	top: 10px;
  color: black!important;
}
.requiredFldCol .form-control {
  padding-right: 15px;
}
.formVSpace {
  --bs-gutter-y: 18px;
}
.linkStyle1 {
  color: inherit;
  display: inline-block;
  text-decoration: underline;
}
.linkStyle1:hover {
  opacity: 0.8;
  color: inherit;
}
.formCol > form + .lgTitle {
	padding-top: 100px;
}

.checkStyle .form-check-input {
	width: 32px;
	height: 32px;
	border-radius: 0;
	border-color: #020100;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	/* -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); */
}
.checkStyle .form-check-label {
	padding-left: 12px;
}
.checkStyle .form-check-input[type="radio"]  {
  border-radius: 50%;
}
.form-check.checkStyle {
	padding: 6px 0 6px 32px;
	position: relative;
	line-height: normal;
  min-height: 32px;
}
.checkStyle .form-check-input:checked[type="radio"],
.checkStyle .form-check-input:checked[type="checkbox"] {
	background-color: transparent;
	background-image: none;
}
.checkStyle .form-check-input[type="radio"]  + label::before {
  border-radius: 50%;
}
.checkStyle .form-check-input + label::before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	background-color: #1DCD00;
	left: 7px;
	top: 7px;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.checkStyle .form-check-input:checked + label::before {
  opacity: 1;
}
.checkStyle .form-check-input:focus {
	box-shadow: none;
}
.nCheck {
	padding-top: 20px!important;
}
.infoConentCol {
	font-size: 24px!important;
	line-height: normal;
}
.infoSmTitle {
	font-weight: 500;
	display: block;
}
#cms .infoConentCol > p {
	margin-bottom: 25px!important;
}
.pageLeftCol {
  padding-bottom: 20px;
}



/* cart sidebar */
.cardSidebarCol {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 500px;
	background-color: #fff;
  color: var(--baseColor);
	z-index: 99;
	overflow-y: auto;
	-webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}
.activeCart .cardSidebarCol {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.cartHeader {
	padding: 50px 30px 45px;
	text-align: center;
	position: relative;
}
.cartCloseTrigger {
	position: absolute;
	left: 20px;
	top: 20px;
	padding: 10px;
	display: inline-block;
	cursor: pointer;
	z-index: 99;
}
.menuBackdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  pointer-events: none;
  opacity: 0;
}
.activeCart .menuBackdrop {
  pointer-events: initial;
  opacity: 1;
}
.activeCart {
  overflow: hidden;
}
.cartBody {
	padding: 10px 30px 30px;
  min-height: calc(100vh - 455px);
}

.cartFooter {
	padding: 30px;
	border-top: 1px solid #ccc;
	line-height: normal;
}
.fwMedium {
  font-weight: 500;
}
.cartBtmRow > li {
	padding-top: 12px;
}
.hRightIcons .cartFooter a.btn-outline-dark:hover, .hRightIcons .cartFooter a.btn-dark, .hRightIcons .cartFooter a.btn-dark:hover {
	color: #fff;
}
.cartFooter .btn {
	padding: 10px 20px;
}
.tRow {
	padding: 10px 0;
}
.tPrice {
	font-size: 40px!important;
	line-height: 1;
}
.cProDtl > span {
  display: block!important;
  line-height: normal!important;
}
.cartProductCol > li + li {
	margin-top: 20px;
}
.cProName {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 250px;
}
.cartProImg {
	display: block;
	width: 55px;
	height: 55px;
}
.cartProImg img {
	display: block;
	width: 100%;
	height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.singlePageCart .cartBody {
	min-height: auto;
	padding: 40px 0 30px;
}
.singlePageCart {
	max-width: 510px;
	margin-left: auto;
}
.singlePageCart .cartHeader {
	padding: 0;
	text-align: left;
}
.singlePageCart .cProDtl > span {
	color: #9A9999;
  font-weight: normal;
}
.singlePageCart .cProDtl > span.cProName {
  color: inherit;
}
.singlePageCart .cartFooter {
  padding: 20px 0;
}
.cartCheckboxCol {
	padding: 25px 0;
}
.formTitleSpace {
	padding: 80px 0 20px;
}
.formStyle textarea.form-control {
	border: 1px solid #ccc;
	resize: none;
	height: 240px;
  padding-left: 10px;
  padding-right: 10px;
}
.rRightCol {
	width: 320px;
}
.rRow > li {
	padding: 15px 0;
}
.rRow > li + li {
	border-top: 1px solid #ccc;
}
.lgText {
	font-size: 30px;
}
.mdText {
  font-size: 22px;
}
.form-check.checkStyle.blankCheck {
	width: 32px;
}


/* profile page */
.profileInfoCol {
  font-size: 32px;
  line-height: normal;
}
.profileTopCol {
	padding-bottom: 100px;
}
.profileList {
	-webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
	-webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  font-size: 32px;
}
.profileList > li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.profileList > li > a {
	display: block;
	padding: 10px 0 10px 60px;
  position: relative;
  color: inherit;
  line-height: normal;
}
.profileList > li > a:hover {
  opacity: 0.8;
}
.profileList > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 32px;
}
.profileBtnCol {
	padding-top: 40px;
}


/* conact page */
.headerCol.darkHeader, .darkBg {
	background-color: #020100;
  color: var(--white);
}
.contactText {
	font-size: 60px;
	line-height: normal;
	padding-top: 150px;
  font-weight: 300;
}
.contactText > li + li {
	margin-top: 50px;
}
.contactText a {
  color: #fff;
}
.contactText a:hover {
  opacity: 0.8;
}


/* product page */
.lhNormal {
  line-height: normal;
}
.backLinkCol {
  padding-bottom: 40px;
}
.backLink {
	display: inline-block;
}
.backLink > span {
	display: inline-block;
  vertical-align: middle;
}
.backLink > span + span {
  padding-left: 10px;
}
.backLink > span > img {
	display: block;
}

.detailProPrice {
	font-size: 60px;
}
.proDiscription {
	padding: 14px 0px;
}
.productLeftCol {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	max-width: 520px;
}
.proLeftBtm {
	margin-top: auto;
}
.slideProImg {
  width: 100%;
  height: 760px!important;
  -o-object-fit: cover;
  object-fit: cover;
}

.qty-container .input-group{
	width: unset!important;
}
.qtyTrigger {
	width: 24px;
	height: 24px;
  background-color: #fff;
  border: none;
}
.qtyTrigger img {
	display: block;
	margin: 0 auto;
}
.input-qty {
	height: 100%;
	border-width: 0 1px;
	border-style: none solid;
	border-color: #020100;
  padding: 5px 10px;
  text-align: center;
  width: 100%;
}
.wishlist-button-add.likeIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #020100;
	width: 44px;
	height: 44px;
	border-radius: 50%;
  margin-left: unset;
  box-shadow: unset;
}
.wishlist-button-add.likeIcon:hover {
    opacity: unset;
}
.wishlist-button-add.likeIcon img {
	width: 20px;
}
.proRightDetail {
	padding-top: 40px;
	padding-bottom: 20px;
}


.proInfoContent p {
	font-size: 24px;
}
.readMoreArrowLink {
	position: relative;
	padding-left: 30px;
	display: inline-block;
  color: inherit;
}
.readMoreArrowLink:hover {
  color: inherit;
  opacity: 0.8;
}
.readMoreArrowLink::before {
	content: "";
	position: absolute;
	left: 0;
	width: 15px;
	height: 8px;
	background-position: center;
	background-image: url('../img/angle-down.svg');
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	background-size: 15px 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.productDetailMainCol {
  --sectionSpace: 60px;
}
.specificationLbl {
	display: inline-block;
	width: 240px;
}
.optionList > li {
	padding: 20px 0;
  border-top: 1px solid #ccc;
}
.proDtlSectionSpace {
  padding: var(--sectionSpace) 0;
  border-bottom: 1px solid #ccc;
}
.proRightDetail .input-qty {
  width: 70px!important;
}

.filterTrigger, .filterMbTrigger {
  display: inline-block;
  cursor: pointer;
}
.filterTrigger:hover, .filterMbTrigger:hover {
  opacity: 0.7;
}
.filterTrigger > span, .filterMbTrigger > span {
	display: inline-block;
	vertical-align: middle;
}
.filterTrigger > span img, .filterMbTrigger > span img {
  display: block;
}
.filterIcon {
  margin-left: 10px;
  -webkit-transition: transform 300ms ease-in-out 0s;
  -o-transition: transform 300ms ease-in-out 0s;
  transition: transform 300ms ease-in-out 0s;
}
.filterDDCol a {
	font-size: 32px;
	display: block;
	line-height: 1;
	color: #9A9999;
}
.filterDDCol a:hover {
	color: #020100;
}
.filterOption {
	position: relative;
}
.filterDDCol {
	display: none;
}
.activeFilterOpt .filterIcon,
.actFilterDD .filterIcon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.resultColMain {
	padding-top: 80px;
}
.proHvrOptions > ul > li {
	display: inline-block;
  vertical-align: middle;
  padding: 4px 6px;
}
.proHvrOptions {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 20px;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-in-out 0s;
  -o-transition: opacity 500ms ease-in-out 0s;
  transition: opacity 500ms ease-in-out 0s;
}
.wishlist-button-add.likeIcon.lightLightIcon {
	background-color: #fff;
}
.wishlist-button-add.likeIcon.lightLightIcon:hover {
  background-color: #d3d4d5;
}
.proImgCol {
	position: relative;
}
.proCard:hover .proHvrOptions {
  opacity: 1;
}
.proCardLgOverview .proImg {
	height: 1086px;
}


.overviewBtmCol {
	padding-top: 80px;
}
.pagination.paginationStyle {
	--bs-pagination-border-radius: 30px;
  /* --bs-pagination-hover-color: #fff; */
  --bs-pagination-hover-bg: rgba(0,0,0,0.1);
  --bs-pagination-border-color:#020100 ;
  --bs-pagination-hover-border-color: #020100;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #020100;
  --bs-pagination-active-border-color: #020100;
}
.pagination.paginationStyle .page-link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
	justify-content: center;
	height: 44px;
	min-width: 44px;
  color: inherit;
}
.pagination.paginationStyle .page-link.active {
  color: #fff;
}
.filterTrigger {
	margin-bottom: 20px;
}
.selectedFilter {
	font-size: 48px;
}
.filterDDCol a.active {
	color: #020100;
}
.selectedFilter + .filterDDCol {
	padding-top: 15px;
}
.filterMainCol {
	position: relative;
	z-index: 1;
}

.sectionSpace.btmColSpace {
  padding-bottom: 220px;
}

.innerPageContent.overviewPageContent {
	padding-top: 20px;
}

/* media start */
@media (min-width:1600px) {
  .container {
    max-width: 1500px;
  }
  .home_category_card_wrapper .col-md-6.category_card_wrap:first-child {
    padding-right: 25px;
  }
}
@media (min-width:1901px) {
  .container {
    max-width: 1632px;
  }
}

@media (max-width:1900px) {
  .sliderContent > p {
    padding: 80px 0 80px;
  }
  .proImg {
  	height: 470px;
  }
  .proCardMd .proImg {
    height: 640px;
  }
  .proCardLg .proImg {
  	height: 1000px;
  }
  .imgCol1 img, .sliderContentMain {
  	height: 890px;
  }
  .videoXlImg {
  	height: 830px;
  }
  .cs2Img {
  	height: 415px;
  }
  .tabLinks a, .lgTitle,
  .newsletterCol p {
  	/* font-size: 28px; */
    font-size: 32px;
  }
  .footerBtmCol {
  	padding-top: 100px;
  }
  #index .featured_tab_prdts .mb-cs {
  	margin-bottom: 18px;
  }
  .mb-cs {
    margin-bottom: 40px;
  }
  .xlTitle {
  	/* font-size: 50px; */
    font-size: 54px;
  }
  .bannerContent, .sIndicator, .sliderContent {
  	max-width: 330px;
  }
  .sectionSpace {
  	padding: 100px 0;
  }
  .bannerContent > h4 {
  	padding-bottom: 80px;
    margin-bottom: 0;
  }
  .bannerContent > p + .btn {
  	margin-top: 20px;
  }

  .formStyle .form-select,
  .formStyle .form-control {
  	font-size: 26px;
  }
  .formCol > form + .lgTitle {
  	padding-top: 80px;
  }
  .nCheck {
  	padding-top: 10px;
  }

  .infoConentCol {
  	font-size: 20px!important;
  }
  .infoConentCol > p {
  	margin-bottom: 20px!important;
  }

  .cardSidebarCol {
  	/* width: 450px; */
    width: 500px;
  }
  .cartHeader {
  	padding: 40px 20px 20px;
  }
  .cartBody {
  	padding: 10px 20px 30px;
  	min-height: calc(100vh - 345px);
  }
  .cartFooter {
  	padding: 20px;
  }
  .cartBtmRow > li {
  	padding-top: 8px;
  }
  .tRow {
  	padding: 5px 0;
  }
  .tPrice {
  	/* font-size: 30px!important; */
    font-size: 40px!important;
  }
  .cartProductCol > li + li {
  	margin-top: 10px;
  }
  .cProName {
  	max-width: 200px;
  }
  .lgText {
  	font-size: 26px;
  }
  .mdText {
  	font-size: 18px;
  }
  .formTitleSpace {
  	padding: 60px 0 10px;
  }
  .rRow > li {
  	padding: 10px 0;
  }
  .singlePageCart .cartBody {
  	padding: 20px 0 20px;
  }
  .cartCheckboxCol {
  	padding: 15px 0;
  }

  .profileInfoCol, .profileList {
  	font-size: 26px;
  }
  .profileList > li > a {
  	padding: 15px 0 10px 45px;
  }
  .profileTopCol {
  	padding-bottom: 60px;
  }

  .contactText {
  	font-size: 40px;
    padding-top: 120px;
  }

  .slideProImg {
  	height: 700px!important;
  }
  .proInfoContent p {
  	font-size: 26px;
  }
  .detailProPrice {
  	font-size: 64px;
    /* font-size: 40px; */
  }

  .proCardLgOverview .proImg {
  	height: 1002px;
  }
  .resultColMain {
  	padding-top: 60px;
  }
  .selectedFilter, .filterDDCol a {
  	font-size: 30px;
  }
  .filterTrigger {
  	margin-bottom: 10px;
  }
  .selectedFilter + .filterDDCol {
  	padding-top: 10px;
  }
}

@media (max-width:1599px) {
  .proSlider .proImg, .proImg {
  	height: 410px;
  }
  .proCardMd .proImg {
  	height: 560px;
  }
  .proCardLg .proImg {
  	height: 890px;
  }
  .imgCol1 img, .sliderContentMain {
  	height: 780px;
  }
  .videoXlImg {
  	height: 720px;
  }
  .cs2Img {
  	height: 365px;
  }
  .sliderContent > p, .videoContent > p {
    padding: 40px 0 20px;
  }

  .formStyle .form-select,
  .formStyle .form-control {
  	font-size: 24px;
  }
  .formTitleSpace {
  	padding: 40px 0 0px;
  }
  .formStyle textarea.form-control {
  	height: 180px;
  }

  .profileInfoCol, .profileList {
  	font-size: 22px;
  }
  .profileList > li > a::before {
  	width: 24px;
    height: 32px;
  }
  .profileList > li {
  	margin-bottom: 5px;
  }
  .contactText {
  	font-size: 32px!important;
    padding-top: 100px;
  }
  .contactText > li + li {
  	margin-top: 40px!important;
  }
  .slideProImg {
  	height: 620px!important;
  }
  .proInfoContent p {
  	font-size: 22px;
  }
  .detailProPrice {
  	font-size: 48px;
  }
  .specificationLbl {
  	width: 180px;
  }

  .featured_product_card .proCardLgOverview .proImg {
  	height: 908px;
    object-fit: contain;
  }
  .overviewBtmCol {
  	padding-top: 60px;
  }
  .resultColMain {
  	padding-top: 40px;
  }
  .selectedFilter, .filterDDCol a {
  	font-size: 24px;
  }
}

@media (max-width:1399px) {
  .menuCol ul > li > a {
  	font-size: 16px;
  }
  .headerBtmCol {
  	padding: 15px 0 12px;
  }
  /*.bannerContent > h4 {
  	padding-bottom: 30px;
  }*/
  .bannerContent, .sIndicator, .sliderContent {
  	max-width: 250px;
  }
  /*.minWdBtn {
  	min-width: 200px;
  }*/
  .xlTitle {
    font-size: 40px;
  }
  .lgTitle {
    font-size: 30px;
  }
  .bannerContent > p + .btn {
  	margin-top: 10px;
  }
  .tabLinks a, .lgTitle, .newsletterCol p {
  	font-size: 24px!important;
  }
  .index_brand_products_wrapper .head_tl {
    margin-bottom: 38px;
  }
  .mb-cs {
  	margin-bottom: 15px;
  }
  .proSlider .proImg {
  	height: 470px;
  }
  .proImg {
  	height: 350px;
  }

  .proImg {
  	height: 700px;
  }
  .proCardLg .proImg {
  	height: 760px;
  }
  .imgCol1 img, .sliderContentMain {
  	height: 670px;
  }
  .videoXlImg {
  	height: 625px;
  }
  .proCardMd .proImg {
  	height: 470px;
  }
  .sliderContent > p, .videoContent > p {
  	padding: 80px 0 80px;
  }
  .cs2Img {
  	height: 310px;
  }
  .sectionSpace.pt-0.home_category_card_wrapper {
    padding-bottom: 85px;
  }
  .sectionSpace.index_video_wrapper {
    padding-bottom: 80px;
  }
  .sectionSpace {
  	padding: 50px 0;
  }
  .sectionSpace.ark_homeslider {
    padding-bottom: 80px;
  }
  .home_category_card_wrapper .lgTitle {
    margin-bottom: 25px;
  }
  .cs2Title {
  	padding: 20px 0 15px;
  }
  .sectionSpace.btmColSpace {
    padding-bottom: 150px;
  }
  .sectionSpace.btmColSpace {
  	padding-top: 20px;
  }
  .formStyle .form-select,
  .formStyle .form-control {
  	font-size: 22px;
  }
  .formCol > form + .lgTitle {
  	padding-top: 60px;
  }
  .formVSpace {
  	--bs-gutter-y: 10px;
  }
  #category .innerPageTopSpace {
    padding: 100px 0 0;
  }
  .innerPageTopSpace {
  	padding: 132px 0 0;
  }
  .innerPageContent {
  	padding: 10px 0 100px;
  }

  .checkStyle .form-check-input {
  	width: 28px;
  	height: 28px;
  }
  .checkStyle .form-check-input + label::before {
  	width: 16px;
  	height: 16px;
  	left: 6px;
  	top: 6px;
  }
  .form-check.checkStyle {
  	padding: 4px 0 4px 28px;
    min-height: 28px;
  }

  .proRightDetail .input-qty {
  	width: 100%!important;
  }
  .slideProImg {
  	height: 520px!important;
  }
  .proRightDetail {
  	padding-top: 30px;
  }
  .productDetailMainCol {
  	--sectionSpace: 40px;
  }
  .proInfoContent p {
  	font-size: 24px;
  }
  .optionList > li {
  	padding: 15px 0;
  }
  .backLinkCol {
  	padding-bottom: 30px;
  }

  .resultColMain .proImg {
  	/*height: 484px;*/
    height: 400px;
    object-fit: contain;
  }
  .resultColMain .featured_product_card .proCardLgOverview .proImg {
    height: 864px;
    object-fit: contain;
  } 
}

@media (max-width:1199px) {
  .proSlider .proImg {
  	height: 390px;
  }
  .proImg {
  	height: 600px;
  }
  .imgCol1 img, .sliderContentMain {
  	height: 565px;
  }
  .proCardLg .proImg {
  	height: 640px;
  }
  .videoXlImg {
  	height: 525px;
  }
  .proCardMd .proImg {
  	height: 400px;
  }
  .cs2Img {
  	height: 260px;
  }
  .newsletterCol p {
  	font-size: 18px;
  }
  .footerBtmCol {
  	padding-top: 40px;
  }

  .infoConentCol {
  	font-size: 18px;
  }
  .infoConentCol > p {
  	margin-bottom: 15px;
  }
  .cartHeader .lgTitle {
  	font-size: 28px;
  }
  .cartHeader {
  	padding: 40px 20px 15px;
  }
  .singlePageCart {
  	max-width: 410px;
  }
  .profileInfoCol, .profileList {
  	font-size: 20px;
  }
  .contactText {
  	font-size: 24px!important;
  	padding-top: 60px!important;
  }

  .proInfoContent p {
  	font-size: 18px;
  }
  .proRightDetail {
  	padding-top: 20px;
  }
  .slideProImg {
  	height: 440px!important;
  }
  .optionList > li {
  	padding: 10px 0;
  }
  .specificationLbl {
  	width: 150px;
  }

  .resultColMain .proImg {
  	height: 400px;
  }
  .resultColMain .featured_product_card .proCardLgOverview .proImg {
    height: 400px;
  }
  .sectionSpace.btmColSpace {
    padding-bottom: 120px;
  }
}

@media (max-width:991px) {
  .gy-mb {
  	--bs-gutter-y: 40px;
  }
  .lightHeader .menuCol ul > li > a {
  	color: var(--white);
  }
  html.activeMenu {
  	overflow: hidden;
  }
  .navigationColMain {
  	z-index: 99;
  	position: fixed;
  	left: 0;
  	top: 0;
  	bottom: 0;
  	background-color: var(--black);
  	width: 327px;
  	padding: 15px 20px 25px;
  	-webkit-transform: translateX(-100%);
  	-ms-transform: translateX(-100%);
  	transform: translateX(-100%);
  	-webkit-transition: all 300ms ease-in-out 0s;
  	-o-transition: all 300ms ease-in-out 0s;
  	transition: all 300ms ease-in-out 0s;
    overflow-y: auto;
  }
  .activeMenu .navigationColMain {
  	-webkit-transform: translateX(0);
  	-ms-transform: translateX(0);
  	transform: translateX(0);
  }

  .activeMenu .menuBackdrop {
  	pointer-events: initial;
  	opacity: 1;
  }
  .menuCol ul > li + li {
  	padding-left: 0;
  }
  .menuCol ul > li {
  	display: block;
  }
  .menuCol ul > li > a {
  	padding: 5px 0px!important;
    padding-bottom: 6px!important;
    font-size: 18px!important;
  }
  .menuCol ul > li > a::before {
    display: none;
  }
  .menuCol {
  	text-align: left;
  }
  .sectionSpaceSm {
  	padding: 40px 0;
  }
  .mb-cs {
  	margin-bottom: 20px;
  }

  .sectionSpace {
  	padding: 60px 0;
  }
  .proImg {
  	height: 450px;
  }
  .proCardLg .proImg {
  	height: 470px;
  }
  .videoXlImg, #index .ark_homeslider .carousel-inner .carousel-item.active img {
  	height: 400px;
  }
  .sliderContent > p, .videoContent > p {
  	padding: 15px 0 0px;
  }
  .proCardMd .proImg {
  	height: 300px;
  }
  .proCardMd .proContentCol {
  	font-size: 14px;
  }
  .cs2Title {
  	padding: 20px 0 10px;
  }
  .cs2Img {
  	height: 200px;
  }
  .cs2Title .lgTitle {
  	font-size: 20px;
  }
  .fLogoText {
  	width: 150px;
  }
  .newsletterCol {
  	padding-top: 40px;
  }
  .footerLogoIcon {
  	width: 100px;
  }

  .videoContentMain {
  	position: static;
  	width: 100%;
  }
  .sliderTrigger {
  	width: 100%;
  }
  .sliderContentMain {
  	height: auto;
  }

  .innerPageTopSpace {
  	padding: 180px 0 0;
  }
  .nCheck {
  	padding-top: 5px;
  }
  .rRow .mdText,
  .rRow .lgText {
  	font-size: 18px;
  	line-height: normal;
  }
  .rRightCol {
  	width: 100%;
  }

  .profileTopCol {
  	padding-bottom: 20px;
  }
  .profileBtnCol {
  	padding-top: 30px;
  }
  .contactText {
  	font-size: 22px;
  }
  .slideProImg {
  	height: 385px!important;
  }
  .productLeftCol .proDiscription {
  	padding: 10px 0px 0px;
  }
  .proDesRightCol {
  	padding-top: 10px;
  }
  .proDesRightCol .proDiscription {
  	padding: 5px 0px 0;
  }
  #product .detailProPrice {
    font-family: Theinhardt;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .detailProPrice {
  	font-size: 26px;
  }
  .xlTitle {
  	font-size: 34px;
  }
  .proDtlSectionSpace:last-child {
  	padding-bottom: 45px;
  }

  .resultColMain .proImg {
  	height: 450px;
  }
  .resultColMain .featured_product_card .proCardLgOverview .proImg {
  	height: 1000px;
  }
  .filterTrigger {
  	margin-bottom: 5px;
  }
  .filterDDCol {
  	padding-bottom: 15px;
  }
  .filterCol {
  	padding-top: 20px;
  	display: none;
  }
  .resultColMain {
  	padding-top: 20px;
  }
  .overviewBtmCol {
  	padding-top: 40px;
  }

  .cartCloseTrigger {
  	-webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .tabLinks.nav {
  	justify-content: flex-start;
  }
  .searchCol {
    transition: opacity .25s, transform .25s!important;
  }
  
}
.searchColInner {
  display: none;
}
.actSearch .searchColInner {
  display: block;
}

@media (max-width:767px) {
  .proSlider .proImg {
  	height: 330px;
  }
  .videoXlImg, #index .ark_homeslider .carousel-inner .carousel-item.active img {
  	height: 300px;
  }
  .cs2Img {
  	height: 280px;
  }
  .searchColInner .form-control {
  	padding: 20px 10px;
  	font-size: 20px;
  }
  .searchButtonTrigger {
    padding: 16px;
  }
  .pageLeftCol {
  	padding-bottom: 15px;
  }
  .rRow .mdText,
  .rRow .lgText {
    font-size: 16px;
  }
  /*.profileList > li > a {
  	padding: 8px 0 8px 30px;
  }*/
  .profileInfoCol, .profileList {
  	font-size: 18px;
  }

  .backLinkCol {
  	padding-bottom: 20px;
  }
  .productLeftCol {
  	padding-bottom: 20px;
  }
  .slideProImg {
  	height: 500px!important;
  }
  .proRightDetail {
  	padding-top: 15px;
  }
  .productDetailMainCol {
  	--sectionSpace: 30px;
  }

  .resultColMain .proImg {
  	height: 330px;
  }
  .resultColMain .featured_product_card .proCardLgOverview .proImg {
  	height: 700px;
  }
  .proHvrOptions {
  	right: 10px;
  	bottom: 15px;
  }
  .proHvrOptions > ul > li {
  	padding: 2px;
  }
  .viewSlideText {
  	display: inline-block;
  	margin-top: 20px;
  }
  .loginLink {
  	margin-left: 20px;
  }
}

@media (max-width:575px) {
  .tabLinks a, .lgTitle, .newsletterCol p{
  	font-size: 20px!important;
  }
  .imgCol1 img {
  	height: 410px;
  }
  .videoXlImg, .cs2Img, #index .ark_homeslider .carousel-inner .carousel-item.active img {
  	height: 200px;
  }
  .xlTitle {
  	font-size: 32px;
  }
  .sliderContent > p, .videoContent > p {
  	padding: 10px 0 0px;
  }
  .videoContentMain {
  	padding: 30px 20px;
  }
  .mb-cs {
  	margin-bottom: 15px;
  }
  .sectionSpace {
  	padding: 50px 0;
  }
  .newsletterCol {
  	padding-top: 10px;
  }
  .footerSection {
  	padding: 40px 0;
  }
  .innerPageContent {
  	padding: 30px 0 80px;
  }
  .pageLeftCol {
  	padding-bottom: 10px;
  }
  .infoConentCol {
  	font-size: 16px;
  }
  .cartBody {
  	min-height: calc(100vh - 405px);
  }
  .cardSidebarCol {
  	width: 390px;
  	max-width: 100%;
  }
  .cartCloseTrigger {
  	left: 10px;
  	top: 10px;
  }

  .profileList {
  	-webkit-column-count: 1;
  	-moz-column-count: 1;
  	column-count: 1;
  }
  .profileBtnCol {
  	padding-top: 20px;
  }
  .profileBtnCol .btn {
  	width: 100%;
  }
  .specificationLbl {
  	width: 120px;
  }
  .slideProImg {
  	height: 340px!important;
  }
  .proInfoContent p {
  	font-size: 18px;
  }

  .resultColMain .proImg {
  	height: 445px;
  }
  .resultColMain .featured_product_card .proCardLgOverview .proImg {
    height: 445px;
  }
  .proHvrOptions > ul > li {
  	padding: 2px 2px;
  }
  .selectedFilter, .filterDDCol a {
  	font-size: 20px;
  }

}

@media (min-width:375px) and (max-width:575px) {
  .container {
    max-width: 355px;
  }
  .slideProImg {
  	height: 322px!important;
  }
  .container.mbSpace0 {
  	padding: 0;
  	max-width: 100%;
  }
  .mb-cs .lgTitle {
  	font-size: 28px!important;
  }
  .proCardLg .proImg {
  	height: 445px;
  }
  .swiper.proSlider {
  	overflow: initial;
  }
  .proSlider .proImg {
  	height: 325px;
  }
  .swiper.proSlider .swiper-slide {
  	width: auto;
  }
  .swiper.proSlider .proCard {
  	width: 260px;
  }
  .videoXlImg, #index .ark_homeslider .carousel-inner .carousel-item.active img {
    height: 220px;
  }
  .proCardMd .proImg {
  	height: 400px;
  }
  .infoConentCol {
  	font-size: 18px;
  }
}

@media (max-width:374px) {
  .container.mbSpace0 {
  	padding: 0;
  	max-width: 100%;
  }
  .hTopLinks > li + li {
  	padding-left: 10px;
  }
  .imgCol1 img {
  	height: 350px;
  }
  .proCardLg .proImg {
  	height: 400px;
  }
  .videoXlImg, .cs2Img, #index .ark_homeslider .carousel-inner .carousel-item.active img {
  	height: 170px;
  }
  .tabLinks a, .lgTitle, .newsletterCol p {
  	font-size: 18px!important;
  }
  .mb-cs .lgTitle {
  	font-size: 22px;
  }
  .cProName {
  	max-width: 150px;
  }
  .cartBody {
  	padding: 10px 15px 20px;
  	min-height: calc(100vh - 365px);
  }
  .cartFooter {
  	padding: 15px;
  }
  .cartHeader {
  	padding: 30px 15px 5px;
  }
  .cartHeader .lgTitle {
  	font-size: 24px;
  }
  .formStyle .form-select, .formStyle .form-control {
  	font-size: 20px;
  }
  .contactText {
  	font-size: 18px!important;
    padding-top: 30px!important;
  }
  .contactText > li + li {
  	margin-top: 20px;
  }
  .innerPageContent {
  	padding: 30px 0 50px;
  }

  .slideProImg {
  	height: 290px!important;
  }
  .proInfoContent p {
  	font-size: 16px;
  }

  .resultColMain .proImg {
  	height: 390px;
  }
  .resultColMain .featured_product_card .proCardLgOverview .proImg {
    height: 390px;
  }
  .pagination.paginationStyle .page-link {
  	height: 40px;
  	min-width: 40px;
  }
  .swiper.proSlider {
  	padding-right: 80px;
  }
  .proSlider .proImg {
  	height: 290px;
  }




  .container.mbSpace0 {
    padding: 0;
    max-width: 100%;
  }
  .swiper.proSlider {
    overflow: initial;
  }
  .proSlider .proImg {
    height: 325px;
  }
  .swiper.proSlider .swiper-slide {
    width: auto;
  }
  .swiper.proSlider .proCard {
    width: 260px;
  }

}
/* k */

#module-thecheckout-order .checkout-area-7{
  padding-right: 65px;
}
#module-thecheckout-order .checkout-area-8{
  padding-left: 65px;
}

@media (min-width:992px) {
  #module-thecheckout-order .block-promo .promo-code form {
    text-align: left;
    display: flex;
    /* width: 509px; */
    /* height: 50px; */
    padding-bottom: 0px;
    /* flex-direction: column; */
    justify-content: center;
    align-items: flex-start;
    border-bottom: #cccccc 1px solid!important;
    gap: 12px;
  }

  #module-thecheckout-order .block-promo .promo-input {
    width: 100%!important;
    /* border-bottom: #cccccc 1px solid!important; */
    border-bottom: unset;
    border-bottom: 0px !important;
  }

  #module-thecheckout-order #promo-code button.btn.btn-primary {
    position: relative;
    top:0px;
    display: inline-flex;
    padding: 15px 30px 11px 30px;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  #module-thecheckout-order div#promo-code {
    padding: unset;
    margin-top: 0px !important;
  }

  #main .card-block {
    padding-top: 0px !important;
  }

  #module-thecheckout-order .block-promo .promo-input+button {
    border: unset;
    margin-top: 0px!important;
    margin-bottom: 15px;
    padding: 15px 30px 11px 30px!important;
  }

  #module-thecheckout-order .width-below-50pct .cart-detailed-totals {
    left: 0;
    width: 100%;
    margin-top: 54px;
  }
  #module-thecheckout-order #thecheckout-cart-summary .cart-summary {
    border-bottom: 0px !important;
  }
  #module-thecheckout-order .confirm_order_wrapper{
    display: flex;
  }
  .ps-shown-by-js button.btn.btn-primary.center-block {
    border-radius: 25px;
    padding: 12px;
    text-transform: capitalize;
    max-width: 225px;
    width: auto !important;
    height: auto;
    margin-left: 20px;
    padding: 15px 30px 11px 30px !important;
  }
  .confirm_order_wrapper #back_to_cart {
    border-radius: 25px;
    padding: 12px;
    text-transform: capitalize;
    /* max-width: 330px; */
    width: auto !important;
    /* height: auto; */
    padding: 15px 30px 11px 30px;
  }
  #thecheckout-confirm button#confirm_order, #back_to_cart {
    margin-top: 50px !important;
  }
  #blockcart-modal .modal-header {
    padding-top: 25px !important;
  }
}

@media (max-width:546px) {
  div#blockcart-modal .modal-dialog{
    transform: translate(0,0px) !important;
  }
}
@media(max-width:992px){
  .bannerStyle3  .carousel-indicators,.bannerStyle2  .carousel-indicators {
    bottom: 0px;
  }
  
  .bannerStyle3 .col-lg-6.mob_slider_indicator, .bannerStyle2 .col-lg-6.mob_slider_indicator {
    order: 3;
}
}

#product .featured-products .proCard {
    margin-bottom :1.5rem!important;
}


