:root {
  --white-color: #fff;
  --black-color: #000;
  --golden-color: #D8B270;
  --bg-color-black-light: #333;
  --bg-color-black: #000;
  --bg-color-white: #fff;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

.header-v2 {
  color: var(--white-color);
  background-color: var(--bg-color-black);
}

.header-v2 li {
  list-style-type: none;
}

.della-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7098039216);
  margin-top: 10px;
  margin-bottom: 5px;
  margin-left: 0;
}

.topbar-v2 {
  background-color: var(--bg-color-black-light);
}

.topbar-v2 .topbar-wrapper-v2 {
  padding-right: 18px;
  min-height: 30px;
}

.topbar-menu-v2 {
  display: flex;
  gap: 16px;
}

.topbar-menu-v2>.topbar-menu-item-v2 {
  padding: 0;
  display: flex;
  align-items: center;
}

.topbar-menu-v2>.topbar-menu-item-v2>a {
  color: var(--white-color);
  font-size: 12px;
  text-transform: uppercase;
}

.topbar-menu-v2>.topbar-menu-item-v2:hover>a {
  color: var(--golden-color);
}

.topbar-menu-v2>.topbar-menu-item-v2:hover .submenu-wrapper-v2 {
  visibility: visible;
  opacity: 1;
  text-align: left;
  transition-delay: 0.1s;
  top: 30px;
}

.topbar-menu-right-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-menu-right-v2>li {
  position: relative;
}

.topbar-menu-right-v2>li>a {
  display: flex;
}

.topbar-menu-right-v2>li:hover .dropdown-lang {
  opacity: 1;
  visibility: visible;
}

.topbar-menu-right-v2>li:hover .dropdown-account {
  opacity: 1;
  visibility: visible;
}

.topbar-menu-right-v2 i {
  font-size: 12px;
}

.topbar-menu-right-v2 .cart-conter-v2 span {
  position: absolute;
  left: 14px;
  top: -6px;
  font-size: 9px;
  padding: 3px;
  display: inline-block;
  border-radius: 100px;
  line-height: 12px;
  width: 17px;
  height: 17px;
  text-align: center;
  color: red;
  background-color: #fff;
}

.dropdown-lang {
  position: absolute;
  top: 18px;
  left: -44px;
  width: 100px;
  background-color: #fff;
  border: solid 1px #e4e4e4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9999;
}

.dropdown-lang::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #FFF;
  top: -5px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.dropdown-lang a {
  display: block;
  border-bottom: solid 1px #e4e4e4;
  font-size: 12px;
  padding: 6px 10px;
  width: 100%;
  color: #000;
  text-align: center;
}

.dropdown-account {
  position: absolute;
  top: 18px;
  left: -44px;
  width: 100px;
  background-color: #fff;
  border: solid 1px #e4e4e4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9999;
}

.dropdown-account::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #FFF;
  top: -5px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.dropdown-account a {
  display: block;
  border-bottom: solid 1px #e4e4e4;
  font-size: 12px;
  padding: 6px 10px;
  width: 100%;
  color: #000;
  text-align: center;
}

.submenu-wrapper-v2 {
  min-width: 200px;
  position: absolute;
  z-index: 500;
  background-color: #202020;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3019607843);
  padding: 10px 15px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
  top: 50px;
  left: 0;
}

.submenu-wrapper-right-v2 {
  right: 0 !important;
  left: auto;
}

.submenu-v2 li {
  text-align: left;
}

.submenu-v2 li a {
  color: var(--white-color);
  transition: color 0.3s ease;
  padding: 10px 0;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 1px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1019607843);
  display: flex;
}

.submenu-v2 li a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 2;
  bottom: 0;
  margin: auto;
  background-image: url(https://www.della.in/wp-content/themes/dellastore/newhome/images/nav-dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: 0.5s;
}

.submenu-v2 li a:hover::before {
  right: 0;
  opacity: 1;
}

.submenu-v2 li:hover a {
  color: var(--golden-color);
}

.submenu-v2 li:last-child a {
  border-bottom: none;
}
/* main header top panel about dropdown */
.homepage-aboutus-submenu li a {
  font-size: 12px;
}

.header-panel-logo-v2 a {
  padding: 0 !important;
  margin: 0 !important;
}

.header-panel-logo-v2 img {
  max-width: 220px;
}

.header-panel-logo-v2 .township-logo {
  max-width: 100%;
  max-height: 90px;
}

.header-panel-right-v2 {
  display: block;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 {
  position: relative;
  gap: 30px 10px;
  display: flex;
  text-align: center;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 {
  position: relative;
  line-height: normal;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2 a {
  color: var(--white-color);
  font-size: 12px;
  white-space: nowrap;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2:hover .sbu-main-menu-a-v2 {
  color: var(--golden-color);
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2.active .sbu-heading-v2 .sbu-main-menu-a-v2 {
  color: var(--golden-color);
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2.active .sbuMainArrow,
.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .sbuMainArrow {
  color: var(--golden-color);
}

.sbu-heading-v2 .sbuMainArrow {
  color: var(--white-color);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .sbu-submenu-v2 {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
  top: 25px;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .officesubmenu-v2 {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
  top: 30px;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .homepage-submenu-v2 {
  top: 83px;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list2-v2 {
  /* padding-top: 25px; */
  padding-top: 15px;
  padding-bottom: 10px;
}

.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list2-v2::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #555;
  top: 12px;
  left: 0;
  width: 100%;
}

.sbu-submenu-v2 {
  text-align: left;
  transition-delay: 0.1s;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  min-width: 200px;
  /* max-width: 200px; */
  background-color: #202020;
  position: absolute;
  left: -50px;
  top: 50px;
  z-index: 500;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3019607843);
  padding: 10px 15px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  max-height: 500px;
  overflow: auto;
  /* max-height: 0; */
}


.sbu-submenu-v2.homepage-submenu-v2 {
  top: 100px;
}

.sbu-submenu-v2 .readmore {
  color: #d8b270;
}

.sbu-submenu-v2 .readmore:hover {
  padding-left: 0;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li {
  text-align: left;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li a {
  color: var(--white-color);
  transition: color 0.3s ease;
  padding: 10px 0;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 1px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1019607843);
  display: flex;
  line-height: 20px;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 2;
  bottom: 0;
  margin: auto;
  background-image: url(https://www.della.in/wp-content/themes/dellastore/newhome/images/nav-dropdown-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: 0.5s;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li .readmoreAfterArrowHide {
  font-size: 14px !important;
  font-weight: normal !important;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li .readmoreAfterArrowHide img {
  max-width: 10px;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li .readmoreAfterArrowHide::before {
  display: none !important;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li a:hover {
  color: var(--golden-color);
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li .readmoreAfterArrowHide:hover img {
  max-width: 12px;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li a:hover::before {
  right: 0;
  opacity: 1;
}

.sbu-submenu-v2 .sbu-submenu-list-v2 li:last-child a {
  border-bottom: none;
}

.officesubmenu-v2 {
  position: absolute;
  top: 50px;
  left: -50%;
  padding: 15px;
  background-color: var(--bg-color-white);
  transform: translate(-50%);
  transition: all 0.3s ease;
  width: 90vw;
  max-height: 100vh;
  display: grid;
  grid-template-columns: 70% 30%;
}

.officesubmenu-v2 .officesubmenu-left {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.officesubmenu-v2 .officesubmenu-left .officesubmenu-column {
  text-align: left;
  background-color: #ddd;
  padding: 8px;
}

.officesubmenu-v2 .officesubmenu-left .officesubmenu-column .column-heading {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.officesubmenu-v2 .officesubmenu-left .officesubmenu-column .column-heading a {
  color: var(--bg-color-black);
}

.officesubmenu-v2 .officesubmenu-left .officesubmenu-column .column-heading span {
  color: var(--golden-color);
  text-decoration: underline;
}

.officesubmenu-v2 .officesubmenu-left .officesubmenu-column .officesubmenu-column-list li a {
  font-family: "Figtree";
  font-size: 12px;
  color: var(--bg-color-black);
  text-transform: uppercase;
  display: flex;
  padding: 4px 0;
}

.officesubmenu-v2 .officesubmenu-right .NavImgHoverblock {
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.officesubmenu-v2 .officesubmenu-right .NavImgHoverblock img {
  width: 100%;
}

.header-v2 .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-item-v2:hover .sub-menu {
  top: 60px;
}

.navimgtext {
  color: #000;
}

.main-header-v2 .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-item-v2 .homepage-submenu-v2 {
  transition-delay: 0.1s !important;
  top: 100px;
}

.main-header-v2 .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-item-v2:hover .homepage-submenu-v2 {
  top: 40px;
}

.homepage-submenu-v2 .readmore-arrow-v2 {
  line-height: normal;
}

.e-store-logo-v2 {
  background-color: red !important;
}

.e-store-logo-v2 .navbar-brand {
  padding: 0 !important;
}

.outer-circle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -2px;
  left: -16px;
  background-image: url(wp-content/themes/dellastore/assets/images/menu-text-1.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  animation: rotate-right-animation 10s infinite linear;
}

.inner-circle {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  left: 2px;
  background-image: url(wp-content/themes/dellastore//assets/images/menu-text-2.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  animation: rotate-right-animation 10s infinite linear;
  background-size: contain;
}

.header-v2 .mobile-menu-trigger .outer-circle,
.header-v2 .mobile-menu-trigger .inner-circle {
  animation: rotate-right-animation 10s infinite linear !important;
}

/* Mobile view homepage header */
.header-v2 .mobile_tabs .nav-tabs {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.readmore-arrow-v2 .readmore {
  display: flex;
  align-items: center;
}

.MidNav .MidNavList-item .readmore {
  display: flex;
  align-items: center;
}

.office-furnituremenu:hover .mega-menu-column-4 {
  visibility: visible !important;
  opacity: 1 !important;
  /* max-width: 100%;
  width: 90vW; */
}

.all-products-list .sbu-main-menu-list2-v2 .other-menu .sbu-submenu-v2 {
  left: -142px !important;
}

  .view-all-link {
    display: flex;
  }
  .view-all-arrow {
     max-width: 10px;
  }

  

@media screen and (min-width: 1200px) {
  .main-header-v2 .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2 a {
    font-size: 13px;
  }
  .main-header-v2  .sbu-submenu-v2 .sbu-submenu-list-v2 li a {
    font-size: 14px !important;
  }
  .sbu-submenu-v2 .sbu-submenu-list-v2 li a {
    font-size: 12px !important;
  }
  .NavImgHoverContainer.activeFirst {
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2:hover .sbuMainArrow {
    transform: rotate(180deg);
  }

  .sbu-submenu-v2-fullwidth {
    width: 1125px !important;
    max-width: none !important;
    /* left: -740px; */
    height: auto;
    display: flex;
    right: 0;
    left: auto;
  }

  /* .NavImgHoverContainer {
    display: none;
}
.NavImgHoverContainer.default-show, .NavImgHoverContainer.active {
    display: block;
} */
  .sbu-submenu-v2-fullwidth .NavImgHoverContainer img {
    object-fit: contain;
    max-height: 250px;
  }

  .sbu-submenu-v2-fullwidth .list-item.NavhoverImg {
    flex: 1;
  }

  .sticky-nav-new {
    display: none !important;
  }

  .header--placeholder {
    height: 100px;
  }

  .header-v2 {
    height: auto !important;
  }

  #della-furniture .office-splash,
  #portfolio-banner,
  .breadcrumb-full.kinjal {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Others menu remove on hover effect */

  .header-v2 .other-menu .accordion-item {
    background-color: transparent;
    border: none;
  }

  .menu-item-has-children.other-menu>a {
    font-size: 12px !important;
  }

  .other-menu .accordion-header .accordion-button-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #202020;
    color: #fff;
    border-bottom: 1px solid #363636;
    font-size: 11px;
    /* padding-top: 13px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px; */
    cursor: pointer;
    padding: 0;
  }

  .other-menu .accordion-header .accordion-button-wrap a {
    display: flex;
    color: #fff;
    font-size: 11px;
    line-height: normal !important;
    flex: 1;
  }

  .other-menu .accordion-header .accordion-button-wrap .accordion-button {
    padding: 10px;
    width: auto;
    background-color: transparent;
    color: #fff !important;
  }

  .other-menu .accordion-header .accordion-button-wrap .accordion-button::before {
    background-color: transparent;
    color: #fff !important;
    font-size: .7rem;
  }

  .other-menu .accordion-button::after {
    display: none !important;
  }

  .down-arrow-nursery {
    background-color: transparent;
    color: #fff !important;
    font-size: 12px;
  }

  .other-menu .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #fff;
  }

  .other-menu .accordion-button.collapsed .down-arrow-nursery::before {
    content: "\f107";
  }

  .other-menu .accordion-button:not(.collapsed) .down-arrow-nursery::before {
    content: "\f106";
  }


  .officeProductsMenuWrap .grid-container .subcat-link-v2 {
    text-transform: uppercase !important;
    font-size: 11px !important;
  }

  /* .header-v2 .menu > ul > li.menu-item-has-children.other-menu:hover .sub-menu {
    visibility: hidden;
    opacity: 0;
  } */
  /* #accordionFlushExample .accordion-item:hover {
    visibility: hidden;
    opacity: 0;
  } */
}

/*# sourceMappingURL=desktop-header.css.map */

@media screen and (max-width: 1199px) {
  .officeProductsMenuWrap {
    display: block !important;
  }
  .officeProductsMenuWrap .sbu-submenu-list-v2 {
    display: none;
    transition: all .5s ease;
  }
  .home-allproductsHeight {

  }
  /* .search-mobile .dgwt-wcas-search-wrapp {
    min-height: 35px;
  } */
  .topbar-v2 {
    display: none;
  }

  .topbar-menu-right-v2 {
    position: absolute;
    top: 40px;
    right: 120px;
  }

  .header-panel-logo-v2 img {
    /* max-width: 90px; */
    margin: 0 !important;
    max-height: 50px !important;

  }

  .projectlogoimg {
    width: auto !important;
  }

  .header-panel-logo-v2 img {
    width: auto !important;
  }

  .header-v2 .mobile_tabs .tab-content .readmore {
    padding-inline: 0 !important;
  }

  .header--placeholder {
    height: auto;
  }

  .office-menu-container {
    display: none;
  }

  .sticky-nav-new {
    display: none !important;
  }

  .sbu-submenu-v2 {
    opacity: 1;
    visibility: visible;
    position: static;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    display: none;
  }
  
  .sbu-submenu-v2.homepage-submenu-v2 {
    display: block;
    padding: 0;
  }
  .sbu-submenu-v2.homepage-submenu-v2 .sbu-submenu-list-v2{
    display: none;
    padding: 10px 15px;
  }
    .sbu-submenu-v2.sixteenSbuWrap {
    display: block;
    padding: 0;
  }
  .sbu-submenu-v2.sixteenSbuWrap .sbu-submenu-list-v2{
    display: none;
    padding: 10px 15px;
  }

 

  .mobile-hamburger-wrappe {
    display: flex;
    align-items: center;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2>a {
    text-align: left;
    height: auto;
    line-height: normal;
    padding: 8px 0;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    text-transform: capitalize !important;
  }

  .sbu-heading-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sbu-heading-v2 .sbu-main-menu-a-v2 {
    text-transform: capitalize !important;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2 .sbu-main-menu-a-v2 {
    font-size: 14px;
    padding: 5px 0;
  }
  .main-header-v2 .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2 .sbu-main-menu-a-v2 {
     font-size: 16px;
  }

  .sbu-heading-v2 .sbuMainArrow {
    font-size: 16px;
  }
  .sbu-heading-v2 .sixteenSbuArrow  {
    position: relative;
    right: 8px;
  }

  .sbu-heading-v2 .sbuMainArrow.rotated {
    transform: rotate(180deg);
  }

  .sbu-main-menu-v2 {
    position: fixed;
    width: 80%;
    background-color: rgba(0, 0, 0, .98);
    left: 0;
    top: 0;
    height: 100%;
    /* transform: translateY(100%); */
    transition: all 0.5s ease;
    z-index: 1099;
    /* display: none; */
  }

  .sbu-main-menu-list-v2 {
    padding: 20px;
    flex-direction: column;
  }

  .mobile-menu-close-v2 {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1;
  }

  .all-products-list .sbu-submenu-v2 {
    padding-top: 0 !important;
  }

  .all-products-list .sbu-submenu-v2 .sbu-submenu-list-v2 li a {
    padding: 5px 0;
    border-bottom: none;
    font-size: 12px !important;
  }

  /* .header .menu>ul>li .menu-e-store-a {
    font-size: 12px !important;
  } */

  .header-panel-right-v2 .all-products-list {
    padding-top: 35px;
    /* max-height: calc(100vh - 30px);
    overflow-y: auto; */
    /* position: sticky;
    top: 0; */
  }

  /* Styling apply only on main header not on e-store-header Starts*/
  .main-menu-wrap-v2 {
    padding-top: 50px;
  }

  .main-header-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 {
    padding: 4px 10px !important;
    border-bottom: 1px solid #303030;
    text-align: left;
  }

  .main-header-v2 .sbu-submenu-v2 .sbu-submenu-list-v2 li a {
    border-bottom: none !important;
    padding: 6px 0;
    font-size: 14px !important;
  }

  /* Styling apply only on main header not on e-store-header Ends */

  .all-products-list>.all-products-list-item {
    padding: 12px 10px;
    border-bottom: 1px solid #303030;
    text-align: left;
  }
  .all-products-list .allProductScroll {
    max-height: calc(100vh - 310px);
    overflow: auto;
  }

  .all-products-list .all-products-list-item>a{
    line-height: normal;
    height: auto;
    padding: 0 50px 0 0;
    font-size: 16px !important;
    display: flex;
    text-transform: uppercase !important;
  }
  #allProductsMobileTitle {
    position: relative;
  } 
  #allProductsMobileTitle a {
    color: #fff;
    font-size: 16px !important;
    display: flex;
    text-transform: uppercase !important;
    line-height: normal;
    height: auto;
   }
   #allProductsMobileTitle .allProductsArrow {
        right: 20px;
        position: absolute;
        font-size: 16px;
    }

  .all-products-list .all-products-list-item .fa {
    height: auto;
    width: auto;
    line-height: normal;
    /* transform: none; */
  }

  .all-products-list .all-products-list-item .allProductsArrow {
    right: 20px;
    transform: none;
  }

  .sbu-main-menu-list-item-v2 {
    text-transform: capitalize;
    font-size: 14px;
  }

  .all-products-list .all-products-list-item .aboutUsArrow {
    transform: none;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 {
    padding: 0 10px;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 {
    /* padding: 0 10px; */
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 {
    gap: 0;
  }

  .main-header-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2.search-mobile {
    padding: 10px 0 !important;
  }

  .search-mobile .dgwt-wcas-search-wrapp {
    max-width: 100% !important;
  }

  .search-mobile .dgwt-wcas-search-form {
    max-width: 100% !important;
    width: 100% !important;
  }

  .search-mobile .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    border-radius: 3px !important;
  }


  /* .search-mobile .dgwt-wcas-search-wrapp{
    background-color: #fff;
    display: flex;
    justify-content: end;
  } */
  .search-mobile .dgwt-wcas-search-icon {
    background-color: #000;
    /* padding: .25rem; */
    width: 15%;
    display: flex;
    justify-content: center;

  }

  .search-mobile .dgwt-wcas-search-icon img {
    max-width: 24px !important;
  }

  .aboutUsMobileSubmenu {
    visibility: visible;
    opacity: 1;
    display: none;
  }

  .aboutUsMobileSubmenuList {
    gap: 10px;
  }

  .aboutUsMobileSubmenuList li {
    text-align: left;
    padding: 6px 10px;
  }
  .aboutUsMobileSubmenuList li a{
    font-size: 14px;
    color: #fff;
  }
  

  .header-v2 {
    height: auto !important;
  }

  .header-v2 .common-container-menu {
    width: 100%;
    padding: 0 15px;
    max-width: 100%;
  }

  /* .header-panel-right-v2 {
    display: none;
  } */

  .header-panel-logo-v2 {
    justify-content: center;
  }

  .mobile-menu-trigger-v2 {
    z-index: 999;
    position: relative;
  }

  .mobile-menu-trigger-v2 .outer-circle {
    position: static;
    width: 50px;
    height: 50px;
    background-size: 100%;
  }

  .mobile-menu-trigger-v2 .inner-circle {
    top: 12px !important;
    left: 12px !important;
    width: 25px !important;
    height: 25px !important;
  }

  .topbar-wrapper-v2 {
    display: none !important;
  }

  .topbar-menu-right-v2 {
    position: static;
    justify-content: end;
    padding-right: 15px !important;
  }


  .mobile-menu-trigger-v2,
  .header-panel-logo-v2,
  .topbar-menu-right-v2 {
    flex: 1;
  }

  .sbu-submenu-v2 .sbu-submenu-list-v2 li a {
    font-size: 12px !important;
  }

  .office-furnituremenu .mega-menu-column-4 {
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Office products menu styling */

  .office-furnituremenu .mega-menu-column-4 {
    transform: none !important;
  }

  .header-v2 .header-panel-right-v2 .all-products-list .office-furnituremenu .officeProductsMenuWrap {
    transform: none !important;
    padding: 0px !important;
    background-color: rgba(0, 0, 0, .98);
    position: static;
    max-height: 250px;
  }

  .office-furnituremenu .officeProductsMenuWrap .grid-container {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .office-furnituremenu .officeProductsMenuWrap .list-item {
    width: 100% !important;
  }

  .office-furnituremenu .officeProductsMenuWrap .menu-column {
    background-color: rgba(0, 0, 0, .98);
    padding-left: 30px !important;
    padding-top: 0 !important;
  }

  .officeProductsMenuWrap .grid-container .menu-column ul li:first-child {
    margin-left: -15px;
  }


  .officeProductsMenuWrap .grid-container .menu-column ul li {
    padding: 5px 0;
  }
  .officeProductsMenuWrap .grid-container .menu-column ul li + li {
   display: none !important;
  }

  .office-furnituremenu .officeProductsMenuWrap .menu-column a {
    color: #fff !important;
    font-size: 12px;
  }

  .office-furnituremenu .officeProductsMenuWrap .heading {
    color: #fff !important;
  }

  .office-furnituremenu .officeProductsMenuWrap .heading .shopbyroomText {
    font-size: 12px !important;
    display: none !important;
  }

  .office-furnituremenu .officeProductsMenuWrap .heading a {
    font-weight: normal !important;
    font-size: 14px !important;
  }

  .officeProductsMenuWrap .listitemhoverblock {
    width: 100%;
    padding: 0 0 15px 15px !important;
  }

  .officeProductsMenuWrap .shopBy {
    margin-top: 0px !important;
    gap: 10px;
  }

  .officeProductsMenuWrap .shopBy li {
    margin-top: 10px;

  }

  .officeProductsMenuWrap .shopBy li a {
    height: 35px !important;
    padding: 5px 0 !important;
    font-weight: normal !important;
  }

  .officeProductsMenuWrap .shopBy li select {
    border: 1px solid #BDA371 !important;
    color: #BDA371 !important;
    width: 190px !important;
    text-align: left;
    height: 35px;
    background-position: top 12px right 15px;
    background-size: 10px;
    line-height: 22px;
  }

  /* .officeProductsMenuWrap .shopBy li:nth-child(2) {
    margin-top: 10px;
  } */

  .listitemhoverblock .NavImgHoverblock {
    display: none !important;
  }

  .all-products-list .clicked-disabled {
    pointer-events: auto;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list2-v2::before {
    display: none;
  }

  .header-v2 .header-panel-right-v2 .all-products-list-item .allProductsMobileWrap {
    display: none;
  }

  .aboutUsArrow {
    right: 20px !important;
  }

  .other-menu .accordion-header .accordion-button-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .other-menu .accordion-header .accordion-button-wrap a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: left;
    height: auto;
    line-height: normal;
    padding: 8px 0;
    display: flex;
    font-size: 16px;
    text-transform: capitalize !important;
  }

  .other-menu .accordion-header .accordion-button-wrap .accordion-button {
    padding: 10px 0;
    width: auto;
    background-color: transparent;
    color: #fff !important;
  }

  .other-menu .accordion-header .accordion-button-wrap .accordion-button::after {
    display: none !important;
  }

  .header-v2 .header-panel-right-v2 .othersSubmenuAccordion .accordion-body-menu>ul>li a {
    font-size: 12px !important;
    padding-left: 15px;
  }

  .header-v2 .header-panel-right-v2 .other-menu .single-column-menu {
    width: 100% !important;
    padding: 0 0 0 15px !important;
    background-color: transparent;
    max-width: 100%;
  }

  .search-mobile .dgwt-wcas-search-wrapp {
    max-width: 100% !important;
  }

  .search-mobile .dgwt-wcas-enable-mobile-form {
    display: none !important;
  }

  .search-mobile .dgwt-wcas-search-icon {
    display: none !important;
  }

  .search-mobile .dgwt-wcas-search-form {
    display: block !important;
    position: static !important;
  }

  html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-form {
    min-width: 100% !important;
  }

  .sbu-main-menu-v2 {
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
    opacity: 0;
  }

  .sbu-main-menu-v2.activeMenu {
    transform: translateX(0);
    opacity: 1;
  }
  .estore-firstlevel-wrap {
    justify-content: space-between;
  }
  .estore-firstlevel-wrap .estore-firstlevel-link, .estore-firstlevel-link-gallery {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;

  }
  .estore-firstlevel-link-gallery:focus, .estore-firstlevel-link-gallery:active {
    color: #fff !important;
  }
  .estore-firstlevel-wrap .estore-firstlevel-arrow {
    right: 20px;
    position: relative;
    font-size: 16px;
  }
   .design-platform-arrow {
    display: flex;
    align-items: center;
   }
  .design-platform-arrow img {
    max-width: 10px;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2 .sbu-heading-v2:hover .sbu-main-menu-a-v2 {
    color: var(--white-color);
    /* border-bottom: 1px solid var(--golden-color); */
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .sbu-heading-v2 .sbu-main-menu-a-v2 {
    color: var(--white-color);
  }
  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .sbuMainArrow {
    color: var(--white-color);
  }
  
  .dropdown-heading-menu {
    display: block !important;
    transition: all 0.5s ease;
  }
  .dropdown-heading-menu.open {
    max-height: 100% !important;
    
  }
  .sbu-submenu-v2-fullwidth { 
    max-height: calc(100vh - 300px);
  }

  .mob-user-panel {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
    gap: 10px;
    position: absolute;
    bottom: 0;
  }
  .mob-user-panel .user-panel-btn {
    border: 1px solid #303030;
    padding: 5px 10px;
    border-radius: 5px;
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  .user-profile-dropdown {
    background-color: #202020;
    /* border: 1px solid #303030; */
    margin: -0 0 10px -10px !important;
    min-width: 118px;
    max-width: 118px;
    /* transition: all .5s ease; */
  }
  .user-profile-dropdown li{
    padding: 5px 10px;
      text-align: left;
      border-radius: .25rem;
      /* border-bottom: 1px solid #303030; */
      border-bottom: solid 1px rgba(255, 255, 255, 0.1019607843);

  }
  .user-profile-dropdown li a {
    color: #fff;
    text-align: left;
    font-size: 14px;
  }

}

/* .della-breadcrum-wrap {

}
.collection-load-container .della-breadcrum-nav {
    background-color: #000;
} */
