@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap');

.scaling { -webkit-animation: scale 3s infinite linear; animation: scale 15s infinite linear; }
.movebounce { -webkit-animation: movebounce-up 6s infinite linear; animation: movebounce-up 6s infinite linear; }
.moving { -webkit-animation: moveIn-to 20s infinite linear; animation: moveIn-to 20s infinite linear; }
.rotated { -webkit-animation: rotated360 25s infinite linear; animation: rotated360 25s infinite linear; }
.rotated30 { -webkit-animation: rotated30 5s infinite linear; animation: rotated30 5s infinite; }
@-webkit-keyframes movebounce-up { 
  0% { -webkit-transform: translateY(0px); transform: translateY(0px) }
  50% { -webkit-transform: translateY(-30px); transform: translateY(-30px) }
  100% { -webkit-transform: translateY(0px); transform: translateY(0px) } 
}
@keyframes movebounce-up {
  0% { -webkit-transform: translateY(0px); transform: translateY(0px) }
  50% { -webkit-transform: translateY(-30px); transform: translateY(-30px) }
  100% { -webkit-transform: translateY(0px); transform: translateY(0px) }
}
@-webkit-keyframes moveIn-to {
  0% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
  50% { -webkit-transform: translate(50px, 0); transform: translate(50px, 0) }
  100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
}
@keyframes moveIn-to {
  0% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
  50% { -webkit-transform: translate(50px, 0); transform: translate(50px, 0) }
  100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
}
@-webkit-keyframes rotated360 {
  0% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg) }
  100% { -webkit-transform: rotateZ(-360deg); transform: rotateZ(-360deg) }
}
@keyframes rotated360 {
  0% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg) }
  100% { -webkit-transform: rotateZ(-360deg); transform: rotateZ(-360deg) }
}
@-webkit-keyframes rotated30 {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
  100% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg) }
  100% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
}
@keyframes rotated30 {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
  50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg) }
  100% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
}
@-webkit-keyframes scale {
  0% { -webkit-transform: scale(1); transform: scale(1) }
  100% { -webkit-transform: scale(1.3); transform: scale(1.3) }
  100% { -webkit-transform: scale(1); transform: scale(1) }
}
@keyframes scale {
  0% { -webkit-transform: scale(1); transform: scale(1) }
  50% { -webkit-transform: scale(1.3); transform: scale(1.3) }
  100% { -webkit-transform: scale(1); transform: scale(1) }
}

/*1. Animate css, 2. Smartmenus css, 3. Slick css, 4. Reset css, 5. Core css, 6. custom css*/

/* =================animate css starts here================= */
.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; }
@-webkit-keyframes fadeInUp {
  from { opacity: 0; -webkit-transform: translate3d(0, 30px, 0); transform: translate3d(0, 30px, 0); }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp {
  from { opacity: 0; -webkit-transform: translate3d(0, 30px, 0); transform: translate3d(0, 30px, 0); }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
.fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; }

/* =================animate css ends here================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Nunito Sans', sans-serif;
}
a{ text-decoration:none; }
img{ max-width:100%; }
ul {
    padding: 0;
    margin: 0;
}
.top_header_wrp {
    background: #31135E;
    padding: 12px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.top_header {
    align-items: center;
    justify-content: space-between;
}

.t_srchbx input {
    border-radius: 5px;
    background: #FFF;
    height: 42px;
    width: 420px;
    font-size: 14px;
    padding: 0 30px 0px 10px;
    border: 0;
}

.srchform {
    position: relative;
}

.srchform img {
    position: absolute;
    right: 10px;
    top: 11px;
}

input:focus {
    box-shadow: none;
    border: 0;
    outline: none;
}

.top_hdr_items p {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 208.333% */
    margin-bottom: 0;
    text-transform: uppercase;
}

.top_hdr_items {
    text-align: center;
    padding: 0 15px;
}


/*menu css */



/* navbar */

.navbar {
  background: #ffffff;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}


/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width:20px;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width:20px;
  height: 0.1rem;
  background: #fff;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}


.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #112f48;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}
.expand-btn:after {
  content: " \25BE";
  opacity: 1;
  margin-left: 5px;
}

.navbar .dropdown-menu, .menu-right {
  position: absolute;
  background: #e9ecef;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 65px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}
.navbar .dropdown-menu,.menu-left {
  left: unset;
  right: 0;
}
.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
}
.navbar .menu-item:hover {
  color: #B9833B;
}

.menu-item.first-item {
    padding: 7px 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    text-transform: uppercase;
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;
  background: #fff;
  left: 0;
  width: 100%;
  top: 65px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  display: flex;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 1rem;
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height:3rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: auto;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.content .col .menu-title {
  color: #ff5722;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}


.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff5722;
}

/* container */


/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(0.5rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #000;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #000;
}

/* Responsive style */

@media screen and (max-width: 1024px) {
  .navbar {
    padding: 10px 20px;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
    position: absolute;
    left: 20px;
    top: -72px;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 65px;
    left: 0;
    background: #fcfcfc;
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top:0px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 0.5rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }
  .col .mega-links li {
    margin: 0;
  }
}


.mega-links a.menu-item {
    justify-content: flex-start;
}

ul.mega-links.stylelisting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mega-links a.menu-item {
    padding: 0 !important;
    align-items: center;
}

ul.mega-links.stylelisting li {
    flex: 0 0 48%;
}


.menu-title p {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.menu-title p:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #3F2561;
}
ul.menu-items li, ul.menu-items li a { transition:all 0.5s; }
ul.menu-items li:hover > a {
    color: #B9833B;
}
ul.menu-items li > a.first-item {
      border-bottom: 3px solid transparent;
}
ul.menu-items li:hover > a.first-item {
    border-bottom: 3px solid #B9833B;
}

ul.mega-links li {
    padding:7px 0;
}
.gemlistng a.menu-item img {
    margin-right: 5px;
}

.stylelisting a.menu-item img {
    margin-right: 6px;
}

.stylelisting li {
    padding: 10px 0 !important;
}
.mob_visible { display:none; }
.bnrimg img {
    width:100%;
}

.sect-padd { padding-top:15px; padding-bottom:15px; }

.sitehdng_row {
    text-align: center;
}

h2.sitehdng {
    color:#31135E;
    text-align: center;
    font-size: 40.303px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.505px;
}

.sitehdng_row p {
    color: #222;
    text-align: center;
    font-size: 18.136px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.sitehdng_row {
    text-align: center;
}

h2.sitehdng {
    color: #31135E;
    text-align: center;
    font-size: 40.303px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.505px;
}

.sitehdng_row p {
    color: #222;
    text-align: center;
    font-size: 18.136px;
    font-style: normal;
    margin-bottom:30px;
    font-weight: 400;
    line-height: normal;
}
.bgarrvl img:hover, .smarrvlbx img:hover {
    transition: all 0.5s;
    transform: scale(1.1);
}
.bgarrvl img {
    transition: all 0.5s;
}

.smarrvlbx {
  overflow: hidden;
    flex: 0 0 33.33%;
}

.sm_arvl_wrp {
    flex-wrap: wrap;
}

.smarrvlbx img {
    width: 100%;
    transition: all 0.5s;
    height: 100%;
    max-height: 215px;
    object-fit: cover;
}

a.na_btn {
    border-radius: 55.705px 55.705px 55.705px 11.141px;
    background: #31135E;
    color: #fff;
    padding: 8px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
}

.bgarrvl {
  overflow: hidden;
    position: relative;
}


.bgarrvl img {
    width: 100%;
}
.spotbx img:hover {
    transform: scale(1.1);
}
.spotbx {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.spotxt_link {
    position: absolute;
    bottom: 0;
    padding: 0 12px;
    width: 100%;
    align-items: center;
}

.spotext {
    color: #fff;
}

.spotbx img {
    width: 100%;
    transition: all 0.5s;
}
a.sptlink {
    color: #fff;
}
.spotext h5 {
    color: #FFF;
    font-family: Alethia Next;
    font-size: 19.125px;
    font-style: normal;
    font-weight: 350;
    line-height: 30.6px; /* 160% */
    margin: 0;
    letter-spacing: 0.574px;
}

.spotext p {
    color: #FFF;
    text-align: center;
    font-size: 11.096px;
    font-style: normal;
    margin-bottom: 8px;
    font-weight: 300;
    line-height: 17.754px; /* 160% */
    letter-spacing: 0.333px;
}


.site_fullad img {
    width: 100%;
}

.spotxt h5 {
    color: #222;
    text-align: center;
    font-family: Nunito Sans;
    font-size: 22px;
    margin-top: 8px;
}

.sllr_img:hover img { transform:scale(1.1); }
.sllr_img img {
    width: 100%;
    transition: all 0.5s;

}

.sellertxt h6 {
    color: #222;
    font-family: Nunito Sans;
    font-size: 15.866px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.533px; /* 135.714% */
}

.sellertxt {
    padding: 10px 0;
}

h5.prc {
    color: #222;
    font-size: 18.133px;
    font-weight: 700;
    line-height: 21.533px; /* 118.75% */
}

ul.s_tags {
    display: flex;
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ul.s_tags li {
    color: #222;
    font-size: 13.6px;
    font-weight: 700;
    line-height: 18.133px; /* 133.333% */
    text-transform: capitalize;
    padding-right: 8px;
    margin-right: 10px;
    border-right: 2px solid;
}

ul.s_tags li:last-child {
    border: none;
}

a.sitebtn {
    border-radius: 32px;
    border: 1.133px solid #BF804A;
    background: #B9833B;
    display: block;
    color: #FFF;
    text-align: center;
    font-family: Nunito Sans;
    padding: 6px;
    font-size: 15.866px;
    font-style: normal;
    transition: all 0.5s;
    font-weight: 700;
    line-height: 31.733px; /* 200% */
    letter-spacing: 0.792px;
}
.listingbox {
    margin-bottom: 20px;
}

.evrdbox img {
    width: 100%;
}

.evrdbox {
    margin-bottom: 15px;
}

.callbacksect{
  background-image: url('images/callback.png');
    background-position: center bottom;
    padding: 50px 0;
    height: 300px;
}

.cllbk_txt {
    text-align: center;
}

.cllbk_txt p {
    color: #000;
    text-align: center;
    font-size: 19.636px;
    font-weight: 400;
    line-height: 27px; /* 137.5% */
}

a.cb_btn {
    border-radius: 30px;
    background: #31135E;
    padding: 10px 20px;
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-family: Nunito Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.btns_clm {
    margin-top: 16px;
    display: inline-block;
}

.vw_all {
    max-width: 250px;
    margin: 20px auto 0 auto;
}
.pcbox.btmlift {
    margin-top: -50px;
}
.mb50 { margin-bottom:60px; }

.rcmdbx {
    border-radius: 0px 0px 8.129px 8.129px;
    border: 1px solid #31135E;
    background: #FFF;
    transition: all 0.5s;
}
.rcmdbx:hover {
    border: 1px solid #B9833B;
    box-shadow: 0px 4px 9px 4px rgba(185, 131, 59, 0.30);
}
.rcmdbx .sellertxt {
    padding: 14px;
    border-top: 1px solid #31135E;
}

a.sitebtn.tbtn {
    color: #31135E;
    background: transparent;
    border-color: #31135E;
}

.bgpink_grad {
    background: linear-gradient(0deg, #FFF 0%, #FDF1F2 100%);
}

.cardbx {
    background: #FFF;
    box-shadow: 0px 1px 8px 0px rgba(161, 161, 161, 0.50);
    text-align: center;
    padding: 50px 0px 42px 0px;
}

.cardbx p {
    color: #222;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px; /* 130% */
}

.cardbx img {
    margin-bottom: 15px;
}


.visitstore img {
    width: 100%;
}

.strtxt {
    text-align: center;
}

.strtxt h3 {
    color: #000;
    text-align: center;
    font-size: 38.072px;
    font-weight: 700;
    line-height: 49.494px; /* 130% */
}

.strtxt p {
    color: #000;
    text-align: center;
    font-size: 16.592px;
    font-weight: 600;
    line-height: 32.157px; /* 193.804% */
}

.strtxt a.cb_btn {
    max-width: 250px;
    width: 100%;
}

.social_hdng img {
    width: 25px;
}

footer {
    background: #F6EFF6;
    padding: 30px 0;
}

.flogo {
    margin-bottom: 30px;
}

.fmenu h5 {
    color: #B9833B;
    font-size: 20.624px;
    font-weight: 500;
    line-height: 30.936px; /* 150% */
}

.fmenu a, .fmenu p, .fmenu span {
    color: #3F2561;
    font-size: 18.046px;
    font-weight: 400;
    line-height: 30.092px; /* 200% */
}

.fmenu {
    margin-bottom: 20px;
}


ul.sclmedia {
    display: flex;
}

ul.sclmedia li {
    padding: 0 5px;
}

.fmenu small {
    color: #31135E;
    font-size: 13px;
    font-weight: 600;
    line-height: 19px; /* 146.154% */
}

.cpywt p {
    color: #B9833B;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 15.71px; /* 142.818% */
}

.cpywt ul {
    display: flex;
}

.cpywt ul li {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #231535;
    line-height: 11px;
}


.dvlp {
    color: #31135E;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    line-height: 11px; /* 100% */
    text-transform: uppercase;
}
.cpywt ul li:last-child {
    border: 0;
}

.cpywt ul li a {
    color: #231535;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px; /* 110% */
    text-transform: uppercase;
}

.innerbnr img {
    width: 100%;
}

.breadcrumb ul {
    display: flex;
}

.breadcrumb ul li {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid;
    line-height: 18px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.breadcrumb ul li:last-child {
    border: 0;
}

.breadcrumb li.current {
    color: #B9833B;
}

.prd_name h3 {
    color: #222;
    font-size: 35px;
    font-weight: 400;
    display: inline-block;
    line-height: normal;
}

span.prdt_numbr {
    color: #222;
    font-size: 20.864px;
    font-weight: 400;
    line-height: normal;
    padding-left: 12px;
    margin-left: 10px;
    border-left: 1px solid #222;
    position: relative;
    top: -4px;
}

.filterbox {
    display: flex;
}

.filterbox .accordion-collapse {
    position: absolute;
    top: 50px;
    width: 250px;
    background: #fff;
    z-index: 99;
}

.accordion-item {
    position: relative;
    min-width: 145px;
    margin-right: 10px;
}
.filterbox .accordion-collapse .accordion-body {
    padding: 15px;
}

.filterbox .accordion-collapse .accordion-body .form-item {
    margin-bottom: 7px;
}

#sub-filter .accordion-collapse {
    position: relative;
    top: 0;
    width: auto;
    background: #fff;
    z-index: 99;
}

.filter_sortby {
    background: #31135E;
    padding: 15px 0;
}

.col-sm-10.filterbox {
    justify-content: flex-start;
}

.filterbox .accordion-item button {
    background: #fff;
    border: 0;
    height: 35px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
    line-height: normal;
}
.accordion-button::after {
    width: 0.75rem;
    height: 0.75rem;
    background-size: 0.75rem;
 }

select.sortbyfilt {
    background: #fff;
    border: 0;
    height: 35px;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
    width: 100%;
    line-height: normal;
    border-radius: calc(.25rem - 1px);
}



.filtrappld p {
    color: #000;
    font-family: Nunito Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    padding-right: 10px;
}

.filtrappld {
    margin-top: 20px;
    align-items: center;
}

ul.filtrby {
    display: flex;
}

ul.filtrby li {
    margin-right: 10px;
    border-radius: 11px;
    background: #B9833B;
    color: #fff;
    padding: 2px 8px;
    min-width: 100px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}
span.cutfilt {
    position: absolute;
    right: 8px;
    top: 2px;
    cursor: pointer;
}
.bgbtn {
    background: #31135E !important;
    border-color: #31135E !important;
}

.listingbox:hover .bgbtn {
    background-color: #6727C8 !important;
    border-color: #6727C8 !important;
}
span.cutprice {
    color: #A09090;
    font-family: Nunito Sans;
    font-size: 11.745px;
    font-style: normal;
    font-weight: 600;
    line-height: 13.947px; /* 118.75% */
    text-decoration: line-through;
}

.wishlist {
    position:absolute;
    top:5px;
    right:8px;
}

.wishlist i { cursor:pointer; }

.sllr_img {
    position: relative;
    overflow: hidden;
}
.list_ad img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.seemore a {
    display: inline-block;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px; /* 200% */
}

.seemore {
    text-align: center;
}
.product_list_description {
    border-radius: 10px;
    border: 1px solid #B9833B;
    background: #FFF;
    padding: 20px 30px;
}

.product_list_description h5 {
    color: #31135E;
    font-family: Nunito Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
    text-decoration-line: underline;
}

.product_list_description p {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 169.231% */
    color: #222;
}
h3.sitehdng {
    color: #31135E;
    font-family: Nunito Sans;
    font-size: 30px;
    font-style: normal;
    font-weight: bold;
    line-height: 28px; /* 120% */
    letter-spacing: 1px;
    text-align: left;
}


#faqs button.accordion-button {
    color: #3F2561;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px; /* 187.5% */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

#faqs button.accordion-button:focus {
    box-shadow: none;
}

#faqs .accordion-item {
    border-radius: 8px;
    border-bottom: 1px solid #B9833B;
}

.poplr_items ul li {
    color: #0070D2;
    padding-right: 10px;
    margin-right: 10px;
    font-size: 13px;
    border-right: 1px solid;
    margin-bottom: 8px;
    line-height: 12px;
}

.poplr_items ul li:last-child {
    border-right: none;
}

.slider-for-prod.pro_dtlimg {
    position: relative;
}






.product-detail-img .pro_dtlimg img {
    min-height: 380px;
    max-height: 380px;
    object-fit: contain;
    left: 0;
}

.smlthumbs { margin-top:20px; }

.smlthumbs img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

a.elevatezoom-gallery.active img {border: 2px solid #333 !important;}

    
.elevatezoom-gallery img {
     min-height: 60px;
     max-height: 60px;
     object-fit: contain;
}


#gallery_01 img {
  border: 2px solid white;
  width: 96px;
}

#gallery_01 .active img {
  border: 2px solid #333;
}



.thumbwrpr {
    display: flex;
    flex-direction: column;
}

.w30 {
    width: 30%;
    text-align: center;
}

.thumbwrpr a.elevatezoom-gallery {
    margin-bottom: 10px;
}

.w70 {
    width:70%;
    text-align: center;
}



.top_rvw_write .rvw_count {
    color: #222;
    font-family: Nunito Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 11px; /* 68.571% */
    border-radius: 6px;
    border: 1px solid #3F2561;
    padding: 2px 5px;
}

a.rvw_count i {
    color: #B9833B;
    font-size: 10px;
    position: relative;
    top: -3px;
}

a.top_rvw {
    color: #B9833B;
    font-family: Nunito Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 10px;
}

.toprvw_share {
    margin-bottom: 12px;
}

.shar_wish i {
    padding: 0 5px;
    font-size: 18px;
}

h2.prdtname {
    color: #222;
    font-size: 35px;
    font-weight: 600;
    border-bottom: 1px solid #B9833B; /* 68.571% */
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.abt_prd p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

h3.prdbgprice {
    color: #222;
    font-size: 27px;
    font-weight: 600;
    line-height: normal;
    padding: 0 10px;
    margin: 0;
}

span.chrgoff {
    border-radius: 11.5px;
    background: #E6D3FF;
    color: #31135E;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    padding: 4px 10px;
}

.pricerow p {
    margin: 0;
}

.pricerow {
    margin-bottom: 5px;
}

.prcblw_txt p {
    color: #222;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-right: 6px;
}

select.form-select {
    border-radius: 7.64px;
    border: 1px solid #E2E2E2;
}
.prcblw_txt a {
    color: #B9833B;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
.abt_prd label{
  color: #000;
  font-family: Nunito Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.cstmselect.qnty {
    margin-left: 15px;
}

.weight_qnty {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #B9833B;
}
div#custom_variant button {
    background: transparent;
    padding: 0 5px 10px;
    border: 0;
    box-shadow: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

#custom_variant .accordion-item {
    border: 0;
}



#custom_variant  .accordion-body {
    padding:  0 0;
}

.cstmradio {
    border-radius: 5px;
    background: #F5EEFF;
    padding: 0 10px;
}

#custom_variant .cstmselect {
    margin-right: 10px;
}

.daimond_variant {
    margin-top: 10px;
}

.daimond_variant .cstmradio {
    display: inline-flex !important;
}

.daimond_variant .daimond {
    margin-right: 10px;
}

.daimond span {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    padding-left: 4px;
}

.daimond img {
    width: 10px;
}

#custom_variant{
    margin-bottom: 15px;
    border-bottom: 1px solid #B9833B;
    padding-bottom: 15px;

}
.locateme label {
    color: #B9833B;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.locateme .form-control {
    border: 0;
    padding: 0;
}

.locateme input {
    border-radius: 7.636px;
    border: 1.091px solid #E2E2E2;
    background: #F5EEFF;
    padding:  5px 12px;
    color: #2D2D2D;
    font-size: 13.091px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.locateme {
    margin-bottom: 15px;
}
.locateme i { position:relative; left:-18px; font-size:12px; }

.prodt_btns a { flex: 0 0 48%; }

.prodt_btns {
    justify-content: space-around;
}

a.adcart {
    border-radius: 11px;
    border: 1px solid #B9833B !important;
    color: #B9833B !important;
}

a.bggrnbtn.buynow {
    border-radius: 11px;
    background: #1AA179;
    border-color: #1AA179;
}


.prdctdtlboxes {
    padding: 15px 0;
}

.pd_box {
    border-radius: 5.371px;
    border: 1.074px solid #E2E2E2;
    background: #FFF;
    flex: 0 0 48%;
    padding:  15px 10px;
}

.pdb_imgtxt {
    align-items: flex-start;
}

.pdbtxt p {
    color: #000;
    font-size: 17.188px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.pdbtxt {
    margin-left: 10px;
}

.pdbtxt span {
    color: #000;
    font-size: 12.891px;
    font-weight: 400;
    line-height: normal;
}

.pdb_imgtxt img {
    width: 32px;
}

.pdb_btn a {
    border-radius: 11px;
    border: 1px solid #1AA179;
    color: #1AA179;
    font-size: 17px;
    font-weight: 600;
    line-height: normal;
    display: block;
    text-align: center;
    padding: 5px 5px;
}

.pdb_btn {
    margin-top: 15px;
}

.strvisit + .pdb_btn a {
    color: #B9833B;
    border-color: #B9833B;
}
.cstmradio .form-check {
    margin-right: 10px;
}

.cstmradio .form-check .form-check-input {
    margin-left: -20px;
}

table {
    width: 100%;
}

.prcbrk_table th {
    background: #EFE4FF;
    color: #31135E;
    padding: 7px;
}

.prcbrk_table td {
    padding: 7px;
    color: #3F2561;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.prcbrk_table tr {
    border: 0;
}

tr.borderbtm {
    border-bottom: 1px solid #E2E2E2;
}

tr.bordertop {
    border-top: 1px solid #D7BDF9;
}
h4.subhdng {
    color: #000;
    font-family: Nunito Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.rwvcnt {
    display: flex;
    align-items: center;
}

.rwvcnt h3 {
    margin: 0 6px;
    color: #000;
    font-size: 40.086px;
    font-weight: 400;
    line-height: normal;
}

.rwvcnt i {
    color: #B9833B;
    font-size: 28px;
}

.rvwbtn_box span {
    font-size: 14.467px;
    font-weight: 400;
    line-height: normal;
}

.rvwbtn_box {
    width: 30%;
    padding-right: 20px;
}

.rvw_ftrimg {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rvwbtn_box a.cb_btn {
    border-radius: 9px;
    padding: 7px;
    width: 100%;
    margin-top: 6px;
}


.top_reviews {
    margin-top: 20px;
    border-top: 1px solid #D7BDF9;
}

.rvw_topbx {
    padding: 15px 0;
    border-bottom: 1px solid #E2E2E2;
}

.trvw {
    border-radius: 3px;
    background: #B9833B;
    padding: 3px 7px;
    color: #fff;
    margin-right: 5px;
}

.rwv_maincmnt {
    align-items: center;
    margin-bottom: 10px;
}

.rwv_maincmnt p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.trvw i {
    color: #fff;
    font-size: 11px;
    position: relative;
    top: -2px;
}

.tprvw_txt p {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
}

.rwvby_ceftf span, .rwvby_ceftf p {
    color: #000;
    font-family: Nunito Sans;
    font-size: 10.198px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.rwvby_ceftf {
    margin-top: 10px;
}

.rwvby_ceftf span {
    margin-right: 10px;
}

.allreviews {
    background: #F5F3F8;
    margin-top: 10px;
    padding: 10px;
    align-items: center;
}

.allreviews a {
    color: #0070D2;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.allreviews span i {
    font-size: 12px;
}








.siml_products h6.name {
    font-size: 10px;
}

.siml_products .sellertxt {
    padding: 8px;
}

.siml_products h5.prc {
    font-size: 12.239px;
}

.siml_products span.cutprice {
    font-size: 9px;
}

.siml_products ul.s_tags li {
    font-size: 9px;
    line-height: 10px;
}

.siml_products ul.s_tags {
    margin-bottom: 15px;
}

.siml_products a.sitebtn.bgbtn {
    font-size: 10.709px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.418px; /* 200% */
}
.rat_revw {
    margin-bottom: 20px;
}



.mainmenu {
    margin-top: 94px;
}

.prdt_img_left {
    position: sticky;
    top: 120px;
}
.jwlbxPromise {
    background: #F8F2FF;
    margin-top: 30px;
    padding: 20px;
}

.ftricntxt span {
    color: #31135E;
    text-align: center;
    font-size: 14px;
    line-height: 28px; /* 200% */
}

.ftricntxt {
    margin-right: 12px;
}

.jwlbxPromise h5 {
    color: #31135E;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px; /* 175% */
}
.ftrs { margin-bottom:15px; }

.crtf_img img {
    padding: 0 8px;
    max-width: 95px;
}



.dateselect  span {
    color: #3F2561;
    font-size: 14.118px;
    font-weight: 600;
    line-height: normal;
}

.dateselect p {
    color: #3F2561;
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
}

label.btn {
    border-radius:13.235px;
    border:1px solid #3F2561;
    background:#F7F3FA;
}


.timeselect label {
    color:#3F2561;
    font-size:14px;
    margin-bottom:5px;
    font-weight:700;
    line-height:normal;
}

.timeselect {
    justify-content:space-around;
}


















@media(min-width:1024px){

  .mainmenu .navbar .menu-items {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
  }
	.w-35 { flex: 0 0 35%; }

	.w-18 {
	    flex: 0 0 18%;
	}

	.w-12 {
	    flex: 0  0 12%;
	}

}

#exampleModal1 .modal-body { padding-top: 0; }
#exampleModal1 label.btn {
    padding: 3px 8px;
}

#exampleModal1 label.btn p {
    font-size: 18px !important;
}

#exampleModal1 label.btn span {
    font-size: 13px;
}

.dateselect {
    justify-content: space-between;
}

.cart-pic img {
    width: 150px;
}

.cart-pic {
  flex: 0 0 22%;
    margin-right: 15px;
}

.cart-prdt {
    flex: 0 0 78%;
}

.pincode {
    position: relative;
}

.pincode i {
    position: absolute;
    left: 26px;
    top: 14px;
}

.pincode input {
    padding-left: 25px;
}

.cart-text h4 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    margin: 0;
}

span.weight {
    color: #989898;
    font-size: 18px;
    font-weight: 400;
    line-height: 35.882px; /* 171.429% */
}

.cart-text h5 {
    color: #222;
    font-size: 23px;
    font-weight: 600;
    margin: 0;
    line-height: normal;
}

span.qty {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 35.882px; /* 199.346% */
}

.cartremoveBox img {
    width: 18px;
}
.welcome_box .submit {
    border-radius: 6px;
    background: #3F2561;
    color: #fff;
    padding: 10px;
    flex: 0 0 30%;
    text-align: center;
}
.summery_box {
    padding-top: 10px;
}
.button_box a.cb_btn {
    border-radius: 5px;
}





.Delivery-info {
    display:flex;
    align-items:center;
}

.Delivery-info p {
    color: #31135E;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.pincode input {
    margin:0px 10px 0px 20px;
    border-radius:5px;
    border:1px solid #3F2561;
    display:inline-block;
    padding:8px;
    padding-left:25px ;
}

.Delivery-info .submit {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 35.882px;
    border-radius: 5px;
    background: #31135E;
    padding: 3px 38px 3px 38px;
    text-decoration: none;
}
.submit:hover {
    background-color: white;
    color: purple;
    border: 1px solid purple;
}
.submit a {
    text-decoration: none;
    color: #FFF;
}

.cartrow {
    padding: 55px 0px 25px 0px;
    display: flex;
}

.custom_checkbox label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.custom_checkbox input {
    background-color:purple;
    width:15px;
    height:15px;
    margin-right:6px;
    display:inline-block;
}
.custom_checkbox{
    display:flex;
    align-items:center;
}
.welcome_box span {
    font-size: 10px;
}
.login{
    border-radius: 16px;
    border: 1px solid #E2E2E2;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.login a{
    color: #B9833B;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}
.login p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
} 
.cartMainBox{
    display: flex;
    justify-content: space-between;
}
.apply_box{
    background-color: #F8F2FF;
    padding: 15px;
    width: 100%;
    border-radius: 3px;
}
.coupon_subBox{
   border-radius: 8px;
   border: 1px solid #D7BDF9;
   padding: 19px 13px;
}
.welcome_box{
    border-radius: 8px;
    border: 1px solid #D7BDF9;
    padding: 12px 10px;
    display: flex;
    align-items: center;
}
.welcome_content h4 {
    color: #222;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    line-height: 15px;
}
.welcome_content p{
    padding-top: 2px;
    color: #222;
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
}
.welcome_box a{
    margin-left: 8px !important;
}
.welcome_content {
    background-color: #fff;
    padding: 6px 6px 0;
    flex: 0 0 68%;
    border-radius: 7px;
}
.summery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
}
.summery h5{
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.summery h6{
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.apply_box h3{
    color: #31135E;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
}
.ruppess{
    color: #ED2224 !important;
}
.sub_Border{
    border: 1px solid #D7BDF9;
    display: block;
    margin: 0 0 15px 0px;
 }
.button_box a:first-child{
    padding:10px 44px 10px 44px !important;
}
.secondryButton{
    background-color:#fff;
    color:#31135E;
    padding:10px 44px 10px 44px !important;
    border-radius:5px;
    border:1px solid #31135E;
}
.secondryButton:hover{
    background-color:#31135E;
    color:#fff; 
}
.register_box {
    display:flex;
    flex-direction:column;
    padding-left: 10px;
}
.cart {
    padding:55px 0px;
}
.ApplyCouponMainBox{
    display:flex;
    margin-top:32px !important;
}
.removeBox{
    margin-top:35px !important;
}


.remove span{
    color: #000;
    font-size: 14.764px;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
 }



.registered-users form {
    margin-top: 20px;
    max-width: 450px;
}

input.form-control {
    border-radius: 7.62px;
    border: 1.089px solid #E2E2E2;
    background: #F5EEFF;
    height: 44px;
    max-width: 340px;
}

span.login-mobile-user {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.customCheckbox label {
    color: #000;
    font-size: 15.241px;
    font-weight: 400;
}

form p {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    line-height: normal;
}

form p a {
    color: #B9833B;
    padding: 0 5px;
}

button.btn.ckoutbtn {
    border-radius: 7.62px;
    padding: 10px;
    background: #31135E;
    color: #fff;
    width: 100%;
    max-width: 340px;
    text-align: center;
}

.inputs input{width:40px;height:40px}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;-moz-appearance: none;appearance: none;margin: 0}

.addrssradio  .form-check {
    border-radius: 21px;
    border: 1px solid #E2E2E2;
    max-width: 235px;
    margin-right: 15px;
    padding: 12px 0  12px 35px;
}

.addrssradio label.form-check-label span {
    color: #989898;
    text-align: justify;
    font-size: 12px;
    font-weight: 600;
    line-height: normal; 
}


.addrssradio strong {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.addrssradio {
    padding-left: 35px;
}

.addrs_colm h4 {
    color: #000;
    font-size: 25px;
    font-weight: 700;
    line-height: normal;
}

.addrs_colm h4 img {
    width: 30px;
    position: relative;
    top: -2px;
}

.btnbox a {
    display: inline-block;
    flex: 0 0 48%;
    margin-right: 15px;
}

.btnbox{
    max-width:600px;
    margin-top:15px;
}

.delver_wrpr.addrs_colm {
    margin-bottom:60px;
    position: relative;
}

a.addrs_btn {
    border-radius: 6px;
    background: #3F2561;
    color: #fff;
    padding: 8px 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
}

.add_adrrs {
    position: absolute;
    right: 20px;
    top: 30px;
}

.delver_wrpr form {
    padding-left:40px;
    max-width:620px;
}

button.btn.newaddres {
    border-radius:6px;
    border:1px solid #3F2561;
    width:100%;
    padding:10px;
    margin-top:20px;
}

select.form-select {
    background: #f5eeff;
    height: 44px;
}
.fullwidth {
    width: 100% !important;
}


 
.posrel {
  position: relative;
  width: fit-content;
}
.posrel img {
  width: 100%;
}
.posabs {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 73px;
  display: flex;
  align-items: center;
}

.banner-text {
  color: #dcc04e;
  font-size: 51.881px;
  font-weight: 400;
  line-height: normal;
}
.banner-text2 {
  color: #dcc04e;
  font-size: 51.881px;
  font-weight: 350;
  line-height: normal;
}
.texthead {
  color: #3f2561;
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}
.texticon {
  color: #3f2561;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
}
.text-sub {
  color: #222;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}
.mx-500 {
  max-width: 960px;
  text-align: center;
}
.stylepad {
  background: #3f2561;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.stylepad img {
  width:60px;
}

.onlymobvisible { display:none !important; }

.filtrbody {
    display: none;
    position: absolute;
    background: #fff;
    z-index: 999;
    left: 0;
    max-width: 250px;
    padding: 0;
    width: 250px;
    top: 36px;
}
.filtrbody .accordion-body {
    padding: 10px 10px;
}
.filtrshow + .filtrbody { display:block !important; }

.filterbox .accordion-button {
    border-top-left-radius:calc(0.25rem - 1px);
    border-top-right-radius:calc(0.25rem - 1px);
}
.accordion-button:focus{
   box-shadow:none ;
}



.filter-btn {
    display: none;
    background-color: #E3CEFF;
    color: #31135E;
    font-size: 15.57px;
    font-weight: 600;
    line-height: 31.139px;
    padding: 9px 22px;
    border-radius: 4px;
    transition: all .3s ease-in;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    letter-spacing: .5px;
}


.accordion-button:not(.collapsed) { box-shadow:none;  }








@media only screen and (max-width: 767px) {
  .posabs {
    max-width: 350px;
  }
  .banner-text {
    font-size: 25px;
  }
  .banner-text2 {
    font-size: 25px;
  }
  .text-sub {
    font-size: 20px;
  }
}


@media(min-width:576px){
/*  .modal-dialog {
      max-width:550px !important;
  }*/
}

@media(max-width:767px){

  .wrt_rvw_imgs {flex-direction: column;justify-content: center;/* align-items: center; */}

  .rvw_ftrimg {
      flex-wrap: wrap;
      width: 100%;
      justify-content: flex-start;
  }

  .crtf_img img {
      max-width: 75px;
  }

  .rvwbtn_box {
      width: 100%;
      position: relative;
      margin-bottom: 15px;
      padding: 0;
  }

  .rvwbtn_box a.cb_btn {
      position: absolute;
      right: 15px;
      width: auto;
      top: 10px;
  }

  .rvw_ftrimg img {
      max-width: 70px;
      margin-right: 10px;
  } 
    
  



  .filterbox .accordion-item {
    min-width: auto !important;
    width: 100%;
    border: 0;
    padding: 14px 0px 10px 0;
    border-bottom: 1px solid #e2e2e2;
  }
  .filterbox .filtrbody {
      position: relative;
      top: 0;
  }

  .filter-btn.show {display: inline-flex;}
  .filter-area-close { width: 24px; height: 24px; position: absolute; right: 18px; top: 15px; background-color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .filter-area-close img { width: 12px; vertical-align: baseline; filter: brightness(0) invert(1); }

  .filter-area { position:fixed; top:0; bottom:0; width:320px; left: 0; z-index:999999999; background-color: #fff; padding: 20px;
   height:100vh; transform:translateX(-100%); transition:all .3s ease-in; box-shadow: 5px 0px 20px rgb(0 0 0 / 5%); }

  .filter-area { width:100%; height:calc(100vh - 60px); bottom:0; top:auto; border-radius:20px 20px 0 0; transform:translateY(100%);}
  
  .filter-area.show { transform:translateY(0px); }
  
  .filter-body { height:auto; padding:14px 20px; }
  
  .filter-btn { font-size:16px; padding:8px 20px; } 

  .hdr_catgories_mobile img {
      width: auto !important;
  }
  .hdr_catgories_mobile .top_hdr_items {
      border-radius: 6px;
      background: #F5EEFF;
      margin: 0 8px;
      width: 150px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hdr_catgories_mobile {
      padding: 20px 5px;
  }

  .hdr_catgories_mobile .top_hdr_items p {
      color: #31135E;
      font-size: 12px;
      font-weight: 400;
      line-height: 25px; /* 208.333% */
      text-transform: uppercase;
  }

  .onlymobvisible { display:flex !important; }
  .mainmenu {
    position:fixed;
    z-index:9999999;
    top:3px;
  }
  .hdr_catgories_mobile {
    margin-top:130px;
  }
  .navbar.sticky {
    padding:0;
    height:auto;
 }
  h2.sitehdng {
    font-size:25px;
 }
 .mob_visible { display:block; }
 ul.mega-links {
    margin-bottom:15px;
 }
 .callbacksect {
    padding: 20px 15px 0px 15px;
 }
 .d-flex.top_header {
      flex-wrap: wrap;    
      padding-top: 8px;
 }
 .hdr_ctg_wrp {
      display: none;
 }
 .b_logo {
      flex:0 0 40%;
      order:1;
      margin-left:40px;
 }
  .hdr_catgories {
      flex:0 0 46%;
      order:2;
      justify-content:flex-end;
  }

  .t_srchbx {
      order: 3;
      flex: 0 0 100%;
  }

  .t_srchbx input {
      width: 100%;
      font-size: 12px;
  }

  .top_header_wrp {
      padding: 0;
  }

  .top_hdr_items {
      padding: 0 5px;
  }

  .top_hdr_items p {
      font-size: 10px;
      line-height: normal;
  }

  .top_hdr_items img {
      width: 16px;
  }

  .srchform {
      padding: 15px 8px;
  }

  .srchform img {
      top: 28px;
      right: 18px;
      width: 16px;
  }
  ul.mega-links.stylelisting li {
      flex: 0 0 100%;
      margin-top: 0;
      padding: 3px 0;
  }

  ul.menu-items {
      top: 0 !important;
  }

  .mobmenubg {
      background: #EEBD7C;
      padding-top: 38px;
      padding-bottom: 12px;
  }

  .menu-btn.open {
      top: -85px;
  }
  .mob_ad p {
      margin: 0;
      color: #222;
      text-align: center;
      font-size: 16px;
      padding: 0 8px;
      font-weight: 500;
  }

  .mob_ad a {
      border-radius: 19px;
      border: 1px solid #000;
      color: #222;
      font-size: 11px;
      height: 27px;
      margin-top: 5px;
      line-height: normal;
      margin-left: 9px;
      padding: 5px 10px;
      display: inline-block;
  }

  .mobmenubg  a.menu-item {
      text-align: center;
      font-style: normal;
      padding: 4px 8px !important;
      font-weight: 600;
      line-height: 18px; /* 128.571% */
      text-transform: uppercase;
  }

.filterbox {
    flex-wrap: wrap;
}

/*select.sortbyfilt {
    position: fixed;
    bottom: 25px;
    right: 28px;
    width: 100px;
    background: #E3CEFF;
    z-index: 9999;
}*/

.ftricntxt {
    margin-right: 0;
}
.jwlbxPromise {
  display: none;
    padding: 10px;
}

.cstmradio .form-check {
    margin-right: 5px;
}
h2.prdtname {
    font-size: 25px;
}

span.chrgoff {
    position: absolute;
    top: 0;
}

.pricerow {
    position: relative;
    padding-top: 30px;
}
.prodt_btns a {
    flex: 0 0 98%;
    margin-top: 15px;
}

.prodt_btns.d-flex {
    flex-wrap: wrap;
}

.pd_box {
    margin-bottom: 15px;
    flex: 0 0 98%;
}

.prdctdtlboxes {
    flex-wrap: wrap;
}

.prcbrk_table th {
    font-size: 11px;
    padding: 4px;
}

.prcbrk_table td {
    padding: 4px;
    font-size: 11px;
}


}