:root {
  --white-color: #fff;
  --black-color: #000;
  --golden-color: #D8B270;
  --bg-color-black-light: #333;
  --bg-color-black: #000;
  --bg-color-white: #fff;
   --header-height: 108px; /* Default value, will be overwritten by JS */
}

 .office-menu-container {
    display: none;
  }
.use-header-height {
  top: var(--header-height);
}
.header-v2 {
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  position: fixed;
  z-index: 9998;
  padding: 0;
  color: var(--white-color);
  background-color: var(--bg-color-black);
}

.header-v2 li {
  list-style-type: none;
}
.header .container {
  max-width: 95%;
  margin: auto;
  height: 100%;
  position: relative;
}

.header .row {
  display: flex;
}

.header .v-center {
  align-items: center;
  justify-content: end;
}

.header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.header a {
  text-decoration: none;
}

.header .logo {
  position: absolute;
  left: 0;
  top: 0;
}

.header .logo a img {
  width: 80px;
}
.della-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.71);
  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;
}
.topbar-menu-right-v2 .dropdown-account a:hover {
  color: var(--golden-color);
}

.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.1);
  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 {
  width: auto;
  position: relative;
  padding-right: 15px;
  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: 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;
  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;
}
.sbu-submenu-v2-fullwidth {
  padding: 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;
  transition: all 0.2s linear;
  transition-delay: 0.1s;
} */

.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;
} */

.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;
  }
  

    #whatsapp-button {
        position: fixed;
        top: 55%;
        right: 10px;
        z-index: 1000;
    }

    /* .header .logo .township-logo {
        width: 95px !important;
    } */

    #whatsapp-button img {
        width: 40px;
        height: 41px;
    }

    #whatsapp-button img:hover {
        transform: scale(1.1);
        transition: transform 0.2s;
    }

    @media screen and (max-width: 1200px) {

        #cookiescript_badge {

            z-index: 1 !important;
        }
    }

    .attr_string {
        font-size: 12px;
        color: #999;
    }

    .projectlogoimg {
        width: 220px !important;
    }

    .product-inner-btm-wrp {
        background-color: #f6f6f6;
    }

    .product-inner-btm-wrp .accordion-button,
    .product-inner-btm-wrp .accordion-collapse {
        background-color: #f6f6f6;
    }

    .product-inner-btm-wrp .accordion-button:focus {
        border-color: transparent;
        box-shadow: none;
        color: #000;
    }

    .product-inner-btm-wrp .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
        transform: scale(.7) !important;
    }

    .product-inner-btm-wrp .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    }

    .product-inner-btm-wrp .accordion-button {
        font-size: 32px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    label.quantity-box {
        margin-top: 10px;
    }

    #productQuantity {
        padding: 15px;
    }

    .product-inner-rhs h2.product-inner-title {
        margin-bottom: 0px;
    }

    .prod-inner-sku {
        font-size: 12px;
        color: #aaa;
    }

    .row-cover-product-wrp .accordion-button {
        background-color: transparent;
        border: 0px;
    }

    .row-cover-product-wrp .accordion-collapse.collapse.show {
        border-top: 0px;
    }

    .row-cover-product-wrp .accordion-item {
        border: 0px;
    }

    .row-cover-product-wrp .accordion-button:focus {
        box-shadow: none;
    }

    .row-cover-product-wrp .accordion-button:not(.collapsed) {
        box-shadow: none;
    }

    .row-cover-product-wrp .inner-rhs-desc button {
        background: #fff;
        border: 1px solid #e4e4e4;
        border-radius: 5px;
        padding: 8px;
        text-align: left;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .row-cover-product-wrp .inner-rhs-desc button:hover,
    .row-cover-product-wrp .inner-rhs-desc button.active {
        border: 1px solid #000;
    }

    .attribute_numerical {
        padding: 4px 20px;
        display: inline-block;
        font-size: 20px;
        border-right: 1px solid #999;
        margin-right: 20px;
        margin-bottom: 12px;
        margin-top: 10px;
    }


    .prodcatbox {
        margin-bottom: 30px;
    }

    .prodcatbox .hide {
        display: none !important;
    }

    .colcatname {
        font-size: 11px;
        text-align: center;

        color: #000;
    }

    .prodcatbox h6 {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        margin-top: 15px;
    }

    .prodcatbox .prodSKU {
        text-align: center;
    }


    .four_grid_layout a h3 {
        text-transform: uppercase;
        font-size: 1.1rem;
        color: #ffffff;
        margin-top: 10px;
        font-weight: 300;
        color: #ffffff;
    }


    #Download-Cat {
        padding-top: 70px;
        padding-bottom: 70px;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .bg_white {
        background-color: #ffffff !important;
    }

    .bg_black {
        background-color: #000000 !important;
    }

    .collection_click_without_anchor:hover {
        cursor: pointer;
    }

    .agDropdown-wrp .wrapper-dropdown {
        font-size: 11px !important;
    }

    .sel-wrp:hover {
        background-color: #000;
    }

    .agDropdown-wrp .wrapper-dropdown:hover {
        color: #1c1d1d;
        border: 1px solid #bbbbbb;
    }

    .agDropdown-wrp .wrapper-dropdown:hover .selected-display,
    .agDropdown-wrp .wrapper-dropdown:hover small {
        color: #fff !important;
    }

    .selectBoxes .sel-wrp {
        margin-bottom: 10px;
    }


    #inner-product-innerpage .collectionbt {
        text-align: start !important;
        padding: 20px 0px;
    }

    .dgwt-wcas-search-wrapp {
        max-width: 230px !important;
    }

    .woocommerce img,
    .woocommerce-page img {
        max-width: 60%;
    }

    .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
        min-width: 38px !important;
        padding: 0 6px !important;
    }


    .dgwt-wcas-search-wrapp {
        min-width: 220px !important;
    }

    .view_all_sc {
        float: right;
        background-color: #000;
        padding: 3px 10px;
        color: #fff !important;
        font-size: 16px;
    }

    .logo-img-brand {
        height: 100% !important;
        margin-top: 0px;
        object-fit: cover;
        aspect-ratio: 3/2;
    }

    @media (max-width: 480px) and (min-width: 320px) {
        .logo-img-brand {
            margin-top: 0px;
            object-fit: cover;
        }

    }

    .collection_viewall_in_products_block {
        text-align: center;
    }

    .collection_viewall_in_products {
        background: #333;
        color: #fff !important;
        padding: 5px 10px;
        display: inline-block;
        text-align: center;
    }


    @media (min-width: 320px) and (max-width: 480px) {

        #landing-banner {
            margin-top: 50px;
        }

        .shopbycollectionBox h6 {
            font-size: 22px;
            line-height: 10px;
        }

        .shopbycollectionBox .prodSKU {
            font-size: 13px;
            font-weight: bold;
        }

        .CategoryThumbList {
            padding: 20px 25px;
        }

        .dgwt-wcas-search-wrapp {
            margin: 0px auto 2px !important;
        }

        .search_sls {
            margin-top: 8px;
            margin-right: 8px;
        }

        .logo-img-brand {
            height: 100%;
        }

        a.print-bt {
            display: none;
        }

        .dgwt-wcas-search-wrapp {
            min-width: 10px !important;
        }

    }

    .shopbycollection .view_all_sc {
        background-color: transparent !important;
    }

    .ham-meu {
        position: relative;
        width: 86px;
        height: 86px;
    }

    .outer-circle {
        width: 80px;
        height: 80px;
        position: absolute;
        top: -2px;
        left: -16px;
        background-image: url('<?php echo get_stylesheet_directory_uri() ?>/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('<?php echo get_stylesheet_directory_uri() ?>/assets/images/menu-text-2.svg');
        background-repeat: no-repeat;
        background-position: 0px 0px;
        animation: rotate-right-animation 10s infinite linear;
        background-size: contain;
    }



    @keyframes rotate-left-animation {
        100% {
            transform: rotate(-360deg);
        }
    }

    @keyframes rotate-right-animation {
        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes rotate-left-animation {
        100% {
            transform: rotate(-360deg);
        }
    }


    .screen-reader-text {
        display: none !important;
    }

    .dgwt-wcas-search-wrapp {
        margin: 0px !important;
    }

    .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
    .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
        height: 35px;
    }

    .dgwt-wcas-mobile-overlay-trigger-active .dgwt-wcas-search-icon img {
        opacity: 0.5;
    }


    .menu-item-has-children .readmore {
        color: #d8b270;
    }


    .readmore::before {
        background-color: unset !important;
    }

    .dgwt-wcas-layout-icon-flexible .dgwt-wcas-search-form,
    .dgwt-wcas-layout-icon-flexible-inv .dgwt-wcas-search-form {
        opacity: 1 !important;
    }

    .header-panel-logo-v2 img {
        width: auto !important;
        max-height: 70px;
    }


    .blink-text {
        animation: blink-text 1s infinite !important;
    }
	@keyframes blink-text {
        0% {
            color: #D8B270;
        }

        50% {
            color: #ffffff;
        }

        100% {
            color: #D8B270;
        }
    }

    .office-mega-menu {
        width: auto;
        color: #fff;
        display: flex;
        justify-content: end;
    }
    .office-mega-menu-list {
        display: flex;
        align-items: center;
        position: relative;
        gap: 0 10px;
        width: auto;
        border-top: solid 1px #555;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .office-mega-menu-list-item>a {
        color: var(--white-color);
        font-size: 12px;
        white-space: nowrap;
        text-transform: capitalize;
    }

    .office-mega-menu-list-item {
        position: relative;
    }
    
    .office-mega-menu-list-item.active>a {
        color: #D8B270 !important;
    }

    .office-mega-menu-list-item:hover .office-submenu {
        visibility: visible;
        opacity: 1;
        transition-delay: 0.1s;
        top: 30px;
    }
    .office-mega-menu-list-item:last-child .office-submenu {
        right: 0;
        left: auto;
    }

  @media screen and (max-width: 1200px) 
{
	.MidNav {
		display: block !important;
		border-top: none;
		margin-top: 0
	}

	.MidNav .MidNavList-item {
		padding: 3px 0 !important;
	}

}

@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;
  }
  .NavImgHoverContainer {
      background-color: #fff;
  }
  .NavImgHoverContainer.della-av-automation {
    padding-bottom: 30px;
  }

  .header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover  .NavImgHoverContainer.activeFirst{
    display: flex;
  }
  .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 {
    max-width: none !important;
    height: auto;
    display: flex;
    right: 0;
    left: auto;
  }
  .firstActiveBlock {
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
  }
  .NavImgHoverblock {
    background-color: #fff;
  }
.header-panel-right-v2 .sbu-main-menu-v2 .sbu-main-menu-list-v2 .sbu-main-menu-list-item-v2:hover .firstActiveBlock{
  display: block;
}


 .sbu-submenu-v2-fullwidth .NavImgHoverContainer {
    height: calc(100% - 10px);
    align-items: center;
    justify-content: center;
 }
  .sbu-submenu-v2-fullwidth .NavImgHoverContainer img {
    object-fit: contain;
    max-height: 250px;
  }
  .sbu-submenu-v2-fullwidth .NavImgHoverContainer.activeFirst img {
    max-height: 230px;
    box-shadow: 4px 4px 8px #0006;
    width: auto;
  }
  .sbu-submenu-v2-fullwidth .NavImgHoverContainer.activeFirst .navimgtext {
    font-size: 13px;
  }

  .sbu-submenu-v2-fullwidth .list-item.NavhoverImg {
   flex: 0 0 300px;
  }

  

  .header--placeholder {
    height: 100px;
  }

  .header-v2 {
    height: auto !important;
  }

  #della-furniture .office-splash,
  #portfolio-banner {
    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;
    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;
  } */
  .allProductsMobileWrap .sbu-main-menu-list-item-v2:last-child .sbu-submenu-v2 {
    right: 0; left: auto;
  }


}


@media screen and (max-width: 1199px) {
  .allProductsMobileWrap .sbu-main-menu-list-item-v2:hover .sbu-heading-v2 .sbu-main-menu-a-v2{
    position: relative;
  }
  .allProductsMobileWrap .sbu-main-menu-list-item-v2 .sbu-heading-v2 .sbu-main-menu-a-v2:focus::after, 
  .allProductsMobileWrap .sbu-main-menu-list-item-v2 .sbu-heading-v2 .sbu-main-menu-a-v2:hover::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
   border-bottom: 1px solid #BDA371;
   animation: border_anim 1s linear forwards;
  }
  @keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
  .officeProductsMenuWrap {
    display: block !important;
  }
  .officeProductsMenuWrap .sbu-submenu-list-v2 {
    display: none;
    transition: all .5s ease;
  }
  .home-allproductsHeight {

  }

  .topbar-v2 {
    display: none;
  }

  .topbar-menu-right-v2 {
    position: absolute;
    top: 40px;
    right: 120px;
  }

  .header-panel-logo-v2 img {
    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;
	max-height: calc(100vh - 366px);
  }
    .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%;
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .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-panel-right-v2 .all-products-list {
    padding-top: 35px;
  }

  /* 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 - 366px);
    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: 13px !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;
  }

  .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 {
    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-icon {
    background-color: #000;
    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-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 .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;
  }

  .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: 13px;
    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);
  }

  .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;
    margin: -0 0 0 -10px !important;
    min-width: 119px;
    max-width: 119px;
    position: absolute;
    bottom: 45px;
    border-radius: 3px;
    display: none;
  }
  .user-profile-dropdown li{
    padding: 5px 10px;
      text-align: left;
      border-bottom: solid 1px rgba(255, 255, 255, 0.1019607843);

  }
  .user-profile-dropdown li a {
    color: #fff;
    text-align: left;
    font-size: 14px;
  }
  .profileDownArrow, .currencyDownArrow {
    margin-left: .25rem;
  }
  .profileDownArrow.rotate, .currencyDownArrow.rotate {
    transform: rotate(180deg);
  }


}

	
	@keyframes rotate-left-animation {
	100% {
	transform:rotate(-360deg)
	}
	}
	
	@keyframes rotate-right-animation {
	100% {
	transform:rotate(360deg)
	}
	}
	
	@keyframes rotate-left-animation {
	100% {
	transform:rotate(-360deg)
	}
	}
	
	.search-query {
	padding-right:3px;
	padding-right:4px \9;
	padding-left:3px;
	padding-left:4px \9;
	margin-bottom:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	font-size:14px;
	padding-left:10px;
	width:200px;
	max-width:100%;
	height:29px;
	background-color:#ffffff1a;
	border:none
	}
	
	.moreLinks {
	right:0!important
	}
	
	.outer-circle {
	width:80px;
	height:80px;
	position:absolute;
	top:-2px;
	left:0;
	background-image:url('https://www.della.in/wp-content/themes/dellastore/assets/images/menu-text-1.svg');
	background-repeat:no-repeat;
	background-position:0 0;
	animation:rotate-left-animation 10s infinite linear
	}
	
	.inner-circle {
	width:40px!important;
	height:40px!important;
	position:absolute;
	top:18px!important;
	left:4px!important;
	background-image:url('https://www.della.in/wp-content/themes/dellastore/assets/images/menu-text-2.svg');
	background-repeat:no-repeat;
	background-position:0 0;
	animation:rotate-right-animation 10s infinite linear
	}


	.dgwt-wcas-search-wrapp {
		max-width: 230px !important;
	}

	.woocommerce img,
	.woocommerce-page img {
		max-width: 60%;
	}

	.dgwt-wcas-search-wrapp {
		min-width: 220px !important;
	}

	.view_all_sc {
		float: right;
		background-color: #000;
		padding: 3px 10px;
		color: #fff !important;
		font-size: 16px;
	}

			#wpadminbar {
			display: none;
		}

		.banner-area-wrp {
			margin-top: 0px;
		}

		a.cart-conter span {
			color: red !important;
			position: absolute;
			top: 1px;
			left: 21px;
			font-size: 9px;
			background-color: white !important;
			padding: 3px;
			display: inline-block;
			border-radius: 100px;
			line-height: 12px;
			width: 17px;
			height: 17px;
			text-align: center;
		}


		.logo-img-brand {
		height: 70px !important;
		margin-top: 0px;
		object-fit: cover;
		aspect-ratio: 6 / 2;
	}


	@media (max-width: 480px) and (min-width: 320px) {
		.logo-img-brand {
			height: 100% !important;
			margin-top: 0px;
			object-fit: cover;
		}

	}

	.collection_viewall_in_products_block {
		text-align: center;
	}

	.collection_viewall_in_products {
		background: #333;
		color: #fff !important;
		padding: 5px 10px;
		display: inline-block;
		text-align: center;
	}

	.listitemhoverblock {
		position: relative;
		margin: 0 auto;
	}

	.office-furnituremenu {
		position: unset !important;
	}

	.NavImgHoverblock {
		position: absolute;
		left: 0px;
		top: 10px;
		z-index: 9998;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.5s cubic-bezier(0.9, 0.01, 0.37, 0.99), visibility 0.5s cubic-bezier(0.9, 0.01, 0.37, 0.99), top 0.5s cubic-bezier(0.9, 0.01, 0.37, 0.99);
		height: 100%;
		padding-top: 0px;
		text-align: center;
		margin-top: 100px;
		width: 100%;
		margin-left: 0;
		max-height: calc(100% - 110px);
	}

	.NavImgHoverblock img {
		max-width: 100%;
		max-height: 100%;
	} 

  /* office menu dropdown styles date 31 July 25 */
  .officeProductsMenuWrap {
    position: absolute;
    top: 60px;
    width: 90vw;
    /* left: 0; */
    right: 0;
    z-index: 10;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    /* transform: translate(-45%, 10px); */
		height: auto;
		max-height: 100vh;
    top: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    padding-right: 10px;
    max-width: 1400px;
  }
.officeProductsMenuWrap-left {
    width: 68%;
    text-align: left;
}
.grid-container-item {
    background-color: #f5f5f5;
    padding: 8px;
}
.office-heading-wrap .product-heading {
  font-size: 12px;
  color: #000;
  font-family: "Figtree";
  font-weight: 800;
  line-height: normal;
}
.office-heading-wrap .shopbyroomText {
    font-size: 12px;
    text-decoration: underline;
    color: #D8B370;
    font-family: "Figtree";
    font-weight: 800;
}

.officeProductsMenuWrap .grid-container-item ul {
  text-align: left;
}
.grid-container-item .subcat-link-v2 {
  color: #000;
  text-transform: uppercase;
  font-size: 11px;
}
.officeProductsMenuWrap-right {
    width: 32%;
}
.shopby-cta-wrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.shopby-collection-link {
    font-size: 11px;
    width: 190px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 11px 11px;
    background-color: #C2A14B1F;
    border-radius: 3px;
    color: #C2A14B;
    border: 1px solid #C2A14B;
    white-space: nowrap;
    font-weight: bold;
}
.shop-by-select {
  border: 1px solid black;
  text-align: left;
  color: #BDA371;
  width: 180px;
  height: 46px;
  font-size: 11px;
  /* font-weight: bold; */
    border-radius: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 4px;
}

.office-furnituremenu:hover .officeProductsMenuWrap {
  opacity: 1;
  visibility: visible;
}


	.shopbycollection .view_all_sc {
		background-color: transparent !important;
	}

	@media (min-width: 320px) and (max-width: 480px) {


		.shopbycollectionBox h6 {
			font-size: 22px;
			line-height: 10px;
		}

		.shopbycollectionBox .prodSKU {
			font-size: 13px;
			font-weight: bold;
		}

		.CategoryThumbList {
			padding: 20px 25px;
		}

		.dgwt-wcas-search-wrapp {
			margin: 0px auto 2px !important;
		}

		.search_sls {
			margin-top: 8px;
			margin-right: 8px;
		}

		.logo-img-brand {
			height: 100%;
		}

		.mobile_hide {
			display: none;
		}

		.mobile_show {
			display: block;
		}

		.shopbycollection {
			margin-top: 10px !important;
		}

		.subgroups {
			display: none;
		}

	
		.navwrp .nav-item {
			width: 27px !important;
		}

		.dgwt-wcas-search-wrapp {
			min-width: 10px !important;
		}

	}

	.shopbycollection .view_all_sc {
		background-color: transparent !important;
	}



	.screen-reader-text {
		display: none !important;
	}

	.dgwt-wcas-search-wrapp {
		margin: 0px !important;
	}

	.account-bt .account-nav {
		position: absolute;
		top: 72px;
		left: -28px;
		width: 100px;
		background-color: #FFF;
		border: solid 1px #e4e4e4;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s ease;
		z-index: 9999;
	}

	.account-bt:hover .account-nav {
		opacity: 1 !important;
		visibility: visible !important;
	}

	.navwrp .nav-item {
		position: relative;
		float: left;
	}

	a.cart-conter {
		position: relative;
	}

	a.cart-conter span {
		color: red;
		position: absolute;
		top: 0px;
		right: 0px;
		font-size: 9px;
		background-color: white;
		padding: 3px;
		display: inline-block;
		border-radius: 100px;
		line-height: 12px;
		width: 17px;
		height: 17px;
		text-align: center;
	}

	.accnt_cart .nav-link {
		padding: 0px 2px;
	}

	.account-bt .account-nav {
		position: absolute;
		top: 32px;
		left: -25px;
		width: 100px;
		background-color: #FFF;
		border: solid 1px #e4e4e4;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s ease;
		z-index: 9999;
	}

	.account-bt .account-nav::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;
	}

	.account-bt .account-nav a {
		display: block;
		border-bottom: solid 1px #e4e4e4;
		font-size: 12px;
		padding: 6px 10px;
		width: 100%;
		height: auto;
		color: #000;
		margin: 0px;
		text-align: center;
	}

	.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
	.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
		height: 35px;
	}

	.dgwt-wcas-mobile-overlay-trigger-active .dgwt-wcas-search-icon img {
		opacity: 0.5;
	}


	.menu-item-has-children .readmore {
		color: #d8b270;
	}


	.blink-text {
		animation: blink 1s infinite;
	}


	a.cart-conter span {
		top: 4px !important;
	}


	header .accordion-button:not(.collapsed)::after {
		filter: brightness(100) !important;
	}

	header .accordion-button::after {
		filter: brightness(100) !important;
		background-size: 13px;
		background-position: center;
	}

	.accordion-collapse.collapse.show {
		border-top: 0px;
	}

	.hr-divider {
		width: -webkit-fill-available;
		position: absolute;
		right: 0;
	}

	
	.clicked-disabled {
		pointer-events: auto;
	}



	.dgwt-wcas-layout-icon-flexible .dgwt-wcas-search-form,
	.dgwt-wcas-layout-icon-flexible-inv .dgwt-wcas-search-form {
		opacity: 1 !important;
	}

	.office-furnituremenu {
		position: unset !important;
	}

	.grid-container {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}



	@media (min-width: 320px) and (max-width: 480px) {
	

		.clicked-disabled {
			pointer-events: none;
		}

	}

	@media screen and (max-width: 75rem) {

		.clicked-disabled {
			pointer-events: none;
		}

	}


	.header-panel-logo-v2 img {
		width: 220px;
	}

	@media screen and (max-width: 1280px) {
		header .common-container {
			max-width: 1050px;
		}

		.websitebackbutton.common-container {
			max-width: 1050px;
		}
	}

/* Header e-store css end*/
