@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@font-face {
  font-family: 'Audrey';
  src: url('../fonts/Audrey-Bold.eot');
  src: url('../fonts/Audrey-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Audrey-Bold.woff2') format('woff2'),
    url('../fonts/Audrey-Bold.woff') format('woff'),
    url('../fonts/Audrey-Bold.ttf') format('truetype'),
    url('../fonts/Audrey-Bold.svg#Audrey-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --baseFont: "Karla", sans-serif;
  --titleFont: 'Audrey';
  --primary: #BD7C28;
  --primaryLightBg: #FDF3EB;
  --primaryLightBgRGB: 253, 243, 235;
  --primaryDarktBg: #4B382E;
  --white: #FFFFFF;
  --black: #000000;
  --border: #C9C9C9;
  --transition: 400ms ease-in-out 0s;
  --primaryLightBgGrdient: linear-gradient(to right, rgba(var(--primaryLightBgRGB), 0.7) 0%, rgba(var(--primaryLightBgRGB), 1) 26%, rgba(var(--primaryLightBgRGB), 1) 100%);
  /* Inner pages variables*/
  --success: #008000;
  --error: #FF2C2C;
  --ratting: #f1a400;
  --grayDark: #575757;
  --primaryDarkHover: #4B382E;
  --cream: #fff;
  --lightBg: #fff;
  --ink: #261711;
  --dark: #050505;
}
body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--black); 
  font-family: var(--baseFont);
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--titleFont);
}

/* ===== Scrollbar CSS ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--darkBg);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: var(--darkBg);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 0px;
  border: 1px solid var(--darkBg);
}
.primaryLightBg {
  background-color: var(--primaryLightBg);
}
/* Btn */
.btn {
  padding: 14px 32px;
  border-radius: 0;
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 500;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.btnText {
  position: relative;
  z-index: 2;
}
.btn:hover {
  transition-delay: 0.25s;
}
.btn:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 0;
  transition: all 0.3s ease;
  transition-delay: 0ms;
  z-index: 1;
}
.btn:hover:before {
  height: calc(100% + 2px);
  transition-delay: 0.15s;
}
.btnPrimary {
  color: var(--white);
  background-color: var(--primary);
}
.btn.btnPrimary:hover {
  color: var(--white) !important;
}
.btnPrimary::after {
  background-color: var(--primary);
}
.btnPrimary:hover:before {
  background-color: var(--primaryDarktBg);
}
.btnLight {
  color: var(--black);
  background-color: var(--primaryLightBg);
}
.btnLight:hover {
  color: var(--white);
}
.btnLight:after {
  background-color: var(--primaryLightBg);
}
.btnLight:hover:before {
  background-color: var(--primary);
}


/* Header */
.logo {
  width: auto;
}
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
	padding: 0 0 20px;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
.headerMainCol {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--primaryLightBg);
  padding: 10px 40px;
}
.noticeInHeaderFlow > [data-container-otpAlert] {
  margin: -10px -40px 10px;
}
.noticeInHeaderFlow .oa-notice-alert {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 40px;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 4px;
  font-size: 16px;
  line-height: 1.35;
  z-index: 1;
}
.noticeInHeaderFlow .oa-notice-alert .alert-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.noticeInHeaderFlow .oa-notice-alert .alert-link:hover {
  text-decoration: underline;
}
.noticeInHeaderFlow ~ main .bannerSection {
  margin-top: 0 !important;
}
.navLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navLogo img {
  display: block;
  width: auto;
  max-width: 76px;
  max-height: 64px;
  object-fit: contain;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}
.navItems a.navItem {
  font-weight: 500;
  --pVal: 5px 0;
  padding: var(--pVal);
  position: relative;
  display: block;
  text-transform: uppercase;
}
.navItems a.navItem:hover, .navItems a.navItem.active {
  color: var(--primary);
}
.headerRightOption {
  display: flex;
  column-gap: 40px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 500;
}
.cartCol {
  position: relative;
  display: block;
}
.cartIcon {
	display: block;
}
.cartCount {
  color: var(--white);
  background-color: var(--primary);
  font-size: 12px;
  padding: 2px 4px;
  position: absolute;
  top: -5px;
  right: -5px;
  line-height: 1;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  font-weight: 600;
}
.navItemIcon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--black);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.8);
}
.socialIcons > ul{
  width: 100%;
  display: flex;
}
.socialIcons > ul > li {
  position: relative;
  padding-right: 30px;
}
.socialIcons > ul > li:last-child {
  padding-right: 0;
}
.socialIcons > ul > li::before {
  content: "";
  position: absolute;
  left: 55%;
  right: auto;
  top: 50%;
  background-color: var(--black);
  height: 1px;
  width: 40%;
  margin-left: -4px;
  transform: translate(0, 50%);
}
.socialIcons > ul > li:last-child:before {
  display: none;
}
.socialIcons > ul > li > a {
  transition: var(--transition);
}
.socialIcons > ul > li > a:hover {
  color: var(--primary);
}
/* Header */

/* footer */
.footerColMain {
  color: var(--white);
  font-size: 16px;
  background-color: var(--primaryDarktBg);
  --pd: 50px;
}
.footerCol .xsTitle {
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
}
.ftLeftCol {
  padding-right: var(--pd);
  text-align: left;
}
.ftRightCol {
  text-align: left;
}
.ftRightCol .xsTitle {
	text-align: center;
}
.footerCol ul > li + li {
  border-top: 0;
}
.footerQuickLinksList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: fit-content;
  margin: 0 auto;
  font-size: 16px;
}
.footerActionLink a {
  color: inherit;
  transition: var(--transition);
}
.footerActionLink a:hover {
  color: var(--primary);
}
.footerTop {
  padding: 100px 0;
}
.ftCol > h4 {
	font-family: inherit;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
	padding-bottom: 10px;
}
.addressCol {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 30px;
}
.footerCol p {
  padding: 0;
  margin-top: 0;
}
.footerCol.footerLCol {
	max-width: 200px;
	margin: 0 auto;
}
.footerCol .socialMenu ul {
	justify-content: center;
}
.footerQuickLinksList li {
	margin: 0 !important;
	padding: 0 !important;
}
.footerLCol .socialMenu ul li {
	margin-top: 0;
}
.footerCol ul > li {
	padding-top: 0;
	margin-top: 0;
}
.footerActionLink {
	margin-top: 20px;
}
.copyrightCol {
  font-size: 16px;
}
.socialMenu {
  margin-top: 40px;
}
.socialMenu ul li + li {
  margin-left: 20px;
  border: 0;
}
.socialMenu a {
  --whIcon: 40px;
  transition: var(--transition);
  width: var(--whIcon);
  height: var(--whIcon);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
  background-color: transparent;
}
.socialMenu a:hover {
  color: var(--black);
	background-color: var(--primaryLightBg);
}
.newsLetterCol {
  position: relative;
}
.newsLetterCol .form-control {
  background-color: transparent;
  color: var(--white);
  padding: 15px 50px 15px 20px;
  border-radius: 0;
}
.newsLetterCol .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--white);
}
.newsLetterCol .form-control::-moz-placeholder { /* Firefox 19+ */
  color: var(--white);
}
.newsLetterCol .form-control:-ms-input-placeholder { /* IE 10+ */
  color: var(--white);
}
.newsLetterCol .form-control:-moz-placeholder { /* Firefox 18- */
  color: var(--white);
}
.newsLetterCol svg.fieldIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.footerBtm {
  padding: 20px 0;
}
.powerdBy {
  text-align: right;
}
.powerdBy img {
  filter: brightness(0);
  margin-left: 5px;
  max-width: 150px;
}
.footerLinks > ul {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
.footerLinks > ul > li {
  position: relative;
}
.footerLinks > ul > li+li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 7px;
  bottom: 0;
  width: 1px;
  background-color: var(--black);
  height: 15px;
}
/* footer */

/*-------------------------------
  MEDIA QAURY START
--------------------------*/

@media (max-width:1199px) {
  .footerColMain {
    --pd: 30px;
  }
}
@media (max-width: 991px) {
  .logo > a > img, .logo > a > svg {
    filter: brightness(0);
  }
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--black);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
    transform: translateX(-200%);
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px;
    overflow: auto;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    max-width: 160px;
  }
  .sidebarLogo img {
    filter: brightness(0) invert(1);
  }
  .navItems {
    flex-direction: column;
  }
  .navItems > li {
    display: block;
    width: 100%;
  }
  .navItems a.navItem {
    --pVal: 12px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.4);
  }
  .navItems .socialLinks {
    position: static;
    transform: none;
    padding-top: 20px;
  }
  .footerTop {
    padding: 60px 0;
  }
  .footerCol {
    text-align: center;
  }
  .ftLeftCol {
    padding-right: 0;
  }
  .addressCol {
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
  .footerCopyright, .powerdBy {
    text-align: center;
  }
  .footerLinks {
    padding: 10px 0;
  }
  .ftRightCol {
    padding-left: 0;
  }
  .socialMenu ul li + li {
    margin-left: 10px;
  }
  .footerTop {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .newsLetterCol .form-control {
    padding: 12px 50px 12px 15px;
    font-size: 14px;
  }
}




/************************************************/
/* button inner */
.btn_primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn_primary:hover {
  background-color: var(--primaryDarkHover);
  color: var(--white);
}
.btn.btn_primary.xsBtn {
  padding: 10px;
}
.btn_primary .btnIcon {
  color: var(--white);
  background: var(--dark);
}
.btn_primary:hover .btnIcon {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(184, 59, 36, 0.11);
}
.btn.btn_primary:not(:disabled):not(.disabled):active, 
.btn.btn_primary:not(:disabled):not(.disabled).active {
  background: var(--primaryDarkHover);
  color: var(--white);
}
.btn_primary > span {
  display: inline-block;
  vertical-align: middle;
}
.btn_primary > span > img {
  display: block;
  filter: blur(0);
}
.btn_primary:before {
  display: none;
}
.btn_primary.smBtn.disabled,
.btn_primary.smBtn:disabled {
  opacity: 0.8;
}
.btn_primary.smBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  min-width: 88px;
  min-height: 36px;
  padding: 3px 4px 3px 14px;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(38, 23, 17, 0.08);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.btn-dark {
  color: var(--white);
  background-color: var(--dark);
}
.btn_outline {
  border: 1px solid var(--primary-theme-color);
  color: var(--primary-theme-color);
}
.btn_outline:hover {
  background-color: var(--primary-theme-color);
  color: var(--white);
}
.btn.btn-success {
  background-color: var(--success);
  padding: 10px 15px;
}



/******************************
****** MODALS ******
******************************/
.modalNewstyle .btn::before {
	z-index: -1;
}
.modalNewstyle {
  --xSpace: 34px;
  --ySpace: 32px;
  --modalPrimary: var(--primary);
  --modalDark: var(--ink);
  --modalWhite: #fff;
  --modalPanel: #fffdf8;
  --modalText: var(--ink);
  --modalMuted: var(--muted);
  --modalBorder: rgba(38, 23, 17, 0.14);
  --modalError: #dc3545;
  z-index: 2055;
  pointer-events: auto;
}
.modal-backdrop.show {
  background-color: rgba(38, 23, 17, 0.72);
  opacity: 1;
  pointer-events: auto;
}
.modalNewstyle .modal-dialog {
  width: min(100%, calc(100vw - 24px));
  margin-right: auto;
  margin-left: auto;
  pointer-events: auto;
}
.modalNewstyle .modal-md {
  max-width: 600px;
}
.modalNewstyle .modal-lg {
  max-width: 800px;
}
.modalNewstyle .modal-content {
  color: var(--modalText);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 253, 248, 0.98) 100%),
    var(--modalWhite);
  border: 1px solid rgba(38, 23, 17, 0.12);
  border-radius: 34px;
  box-shadow: 0 38px 110px rgba(38, 23, 17, 0.34);
  pointer-events: auto;
}
.modalNewstyle .modal-header,
.modalNewstyle .modal-body {
  position: relative;
  padding: var(--ySpace) var(--xSpace);
}
.modalNewstyle .modal-header {
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  background:#fff;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(38, 23, 17, 0.1);
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: var(--ySpace);
  padding-bottom: calc(var(--ySpace) + 6px);
  background: var(--modalPanel);
}
.modalNewstyle .modal-title {
  color: var(--modalDark);
  font-family: var(--titleFont);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}
.modalNewstyle .modal-subtitle {
  color: var(--modalMuted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
.modalNewstyle .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  color: var(--modalDark);
  background-color: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(38, 23, 17, 0.12);
  border-radius: 50%;
  opacity: 0.80;
  background-size: 12px 12px;
  box-shadow: 0 12px 28px rgba(38, 23, 17, 0.08);
  transition: opacity 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.modalNewstyle .btn-close:hover {
  opacity: 1;
  background-color: var(--white);
  box-shadow: 0 16px 34px rgba(38, 23, 17, 0.14);
}
.modalNewstyle .modalForm {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.modalNewstyle .formStyle .row {
  align-items: flex-start;
}
.modalNewstyle .formStyle .form-control,
.modalNewstyle .formStyle .form-select {
  width: 100%;
  min-height: 56px;
  color: var(--modalDark);
  background-color: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--modalBorder);
  border-radius: 999px;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.35;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.modalNewstyle .formStyle .form-control,
.modalNewstyle .formStyle textarea.form-control {
  padding: 13px 48px 13px 18px;
}
.modalNewstyle .formStyle .form-select {
  padding: 13px 48px 13px 18px;
}
.modalNewstyle .formStyle textarea.form-control {
  min-height: 96px;
  border-radius: 24px;
  resize: vertical;
}
.modalNewstyle .formStyle .form-control:focus,
.modalNewstyle .formStyle .form-select:focus {
  border-color: var(--modalPrimary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(184, 59, 36, 0.1);
}
.modalNewstyle .formStyle .form-control::placeholder {
  color: rgba(38, 23, 17, 0.64);
}
.modalNewstyle .rightIconFld {
  position: relative;
}
.modalNewstyle .inputFieldIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  pointer-events: none;
  z-index: 2;
}
.modalNewstyle textarea + .inputFieldIcon {
  top: 28px;
  transform: none;
}
.modalNewstyle .fieldIcon {
  display: block;
  width: 20px;
  height: auto;
  opacity: 0.78;
}
.modalNewstyle .form-label,
.modalNewstyle .labelStyle {
  color: var(--modalDark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 8px;
}
.modalNewstyle .form-check {
  text-align: left;
  padding-left: 25px;
  position: relative;
}
.modalNewstyle .form-check-input {
  border-color: rgba(38, 23, 17, 0.38);
  box-shadow: none;
  margin-left: auto;
  position: absolute;
  left: 0;
  top: 5px;
  margin: 0;
}
.modalNewstyle .form-check-input:checked {
  background-color: var(--modalPrimary);
  border-color: var(--modalPrimary);
}
.modalNewstyle .form-check-label {
  color: var(--modalDark);
  font-size: 14px;
  line-height: 1.55;
}
.modalNewstyle [data-message],
.modalNewstyle .text-danger,
.modalNewstyle .errorMsg {
  color: var(--modalError) !important;
  font-size: 13px;
  line-height: 1.35;
}
.modalNewstyle .btnPrimary {
  min-height: 56px;
  padding: 12px 30px;
  color: var(--white);
  background-color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 0;
  box-shadow: 0 16px 34px rgba(184, 59, 36, 0.18);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}
.modalNewstyle .btnPrimary:hover,
.modalNewstyle .btnPrimary:focus-visible,
.modalNewstyle .btnPrimary:active {
  color: var(--modalWhite) !important;
  background-color: var(--modalDark) !important;
  border-color: var(--modalDark) !important;
  box-shadow: 0 18px 38px rgba(38, 23, 17, 0.22);
  transform: translateY(-2px);
}
.modalNewstyle .btnDarkOutline {
  /* min-height: 54px;
  padding: 12px 24px; */
  color: var(--modalDark);
  background-color: rgba(255, 250, 242, 0.76);
  border: 2px solid rgba(38, 23, 17, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(38, 23, 17, 0.06);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.modalNewstyle .btnDarkOutline:hover,
.modalNewstyle .btnDarkOutline:focus-visible {
  color: var(--modalDark);
  background-color: var(--white);
  border-color: var(--modalPrimary);
}
.modalNewstyle .simpleLink {
  color: var(--modalPrimary);
  font-weight: 700;
  text-decoration: none;
  transition: color 260ms ease;
}
.modalNewstyle .simpleLink:hover {
  color: var(--modalDark);
}
.modalNewstyle .textPrimary {
  color: var(--modalPrimary) !important;
}
.modalNewstyle .sideLinesDivider {
  position: relative;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
.modalNewstyle .sideLinesDivider > .dividerText {
  color: var(--dark);
  opacity: 0.5;
  padding: 0 15px;
}
.sideLinesDivider > .dividerText {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c1c5d0;
  font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
}
.modalNewstyle .sideLinesDivider > .dividerText::before,
.modalNewstyle .sideLinesDivider > .dividerText::after {
  z-index: -1;
  border-top: 1px solid var(--border);
  margin: 0;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.modalNewstyle .recaptchaCol {
  display: inline-flex;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.modalNewstyle img[data-captcha] {
  height: 50px;
  background: var(--modalDark);
  border-radius: 999px !important;
  padding: 0 !important;
}
.modalNewstyle button .fa-refresh,
.modalNewstyle button .fa-spinner {
  color: currentColor;
}
.modalNewstyle button[type="button"]:has(.fa-refresh) {
  width: 50px;
  min-height: 50px;
  padding: 0;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(38, 23, 17, 0.1);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(38, 23, 17, 0.08);
}
.modalNewstyle .titleLbl {
  color: var(--modalDark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.modalNewstyle .openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  color: var(--modalDark);
  font-size: 15px;
  line-height: 1.65;
}
.modalNewstyle .modalAddress {
  padding: 22px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(38, 23, 17, 0.1);
  border-radius: 24px;
}
.modalNewstyle .hrs {
  padding: 22px;
  background: rgba(255, 250, 242, 0.58);
  border: 1px solid rgba(38, 23, 17, 0.08);
  border-radius: 24px;
}
.modalNewstyle .simpleList > li + li {
  margin-top: 8px;
}
#loginModal .modal-dialog {
  max-width: 600px;
}
#loginModal .text-center.fw-medium,
#registerModal .text-center.fw-medium {
  color: var(--modalDark);
  font-size: 17px;
  font-weight: 700 !important;
}
#quicklogincode #timer {
  color: var(--modalDark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
#otpVerifyModal .labelStyle em {
  display: block;
  margin-top: 6px;
  color: var(--modalPrimary);
  font-style: normal;
}
.modalNewstyle .modal-header-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
button.btn.refreshIcon {
  height: 50px;
  width: 50px;
  padding: 8px;
  min-height: auto;
  box-shadow: 0px 0px 2px rgba(0,0,0,0.4);
}
/* User Login CSS */

.userLogin {
  position: relative;
}
.userLogin .dropMenu {
  position: absolute;
  top: 100%;
  background: var(--cream);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  width: 210px;
  text-align: left;
  right: 0;
  display: none;
  z-index: 9;
  padding: 6px 0;
  border-radius: 8px;
}
.userLogin > a {
  padding: 8px 25px 8px 0;
  display: flex;
  align-items: center;
  column-gap: 6px;
  position: relative;
}
.userLogin > a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 8px;
  vertical-align: 3px;
  position: absolute;
  right: 0;
}
.userLogin .userName {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--ink);
	font-size: 14px;
  line-height: 1.2;
	font-weight: normal;
  transition: padding-left var(--transition), background-color var(--transition);
}
.userLogin .dropMenu a:hover {
	background-color: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
  color: var(--primary);
}
/* back to top */
#backToTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	width: 50px;
	height: 50px;
	border: 4px double var(--white);
	color: white;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--primaryDarktBg);
}
#backToTop:hover {
  opacity: 0.8;
}
/* back to top */

/******************************
****** MEDIA QUARY *******
******************************/

@media (max-width: 1499px) {
  .headerMainCol {
    padding: 10px 15px;
  }
  .noticeInHeaderFlow > [data-container-otpAlert] {
    margin-right: -15px;
    margin-left: -15px;
  }
  .navItems, .headerRightOption {
    column-gap: 18px;
  }
}
@media (max-width: 1199px) {
  .navItems {
    justify-content: space-around;
  }
  .userLogin > a::before {
    display: none;
  }
  .userLogin > a {
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .userLogin .userName {
    display: none;
  }
  .modalNewstyle .modal-title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 12px 30px;
    font-size: 16px;
    letter-spacing: 0px;
  }
}
@media (max-width: 480px) {
  .modalNewstyle {
    --xSpace: 20px;
    --ySpace: 24px;
  }
  .modalNewstyle .modal-title {
    font-size: 24px;
  }
}
