/*********** MIXINS **********/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
:root {
  --clr-primary: #000000;
  --clr-secondary: #eef0f2;
  --clr-third: #000000;
  --clr-red: #da3333;
  --clr-title-text: #727580;
  --clr-title-secondary: #727580;
  --clr-text: #727580;
  --clr-text-secondary: #666c72;
  --clr-header-primary: #eeeeee;
  --clr-header-secondary: #eef0f2;
  --clr-menu-primary: #000000;
  --clr-menu-primary-hover: #000000;
  --clr-header-text: #727580;
  --clr-account-menu-text: #ffffff;
  --clr-account-menu-active: #000000;
  --clr-account-menu-bg: #727580;
  --clr-account-menu-bg-active: #ffffff;
  --clr-account-button-text: #ffffff;
  --clr-account-button-active: #727580;
  --clr-account-button-bg: #727580;
  --clr-account-button-bg-active: #ffffff;
  --clr-input-text: #727580;
  --clr-input-border: #ebebeb;
  --clr-btn-text: #21409a;
  --clr-btn-bg: #bfd730;
  --clr-btn-text-hover: #bfd730;
  --clr-btn-bg-hover: #e4e4e4;
  --clr-white: #ffffff;
  --clr-gray: #b8b8b8;
  --clr-secondary-gray: #c5c5c5;
  --clr-light-gray: #e8e8e8;
  --clr-dark-gray: #929292;
  --clr-black: #000000;
  --clr-active-step: #e8e8e8;
  --clr-checkout-primary: #eef0f2;
  --clr-checkout-primary-text: #727580;
  --clr-checkout-secondary: #e8e8e8;
  --clr-checkout-gray: #f2f2f2;
  --clr-checkout-third: #000000;
  --clr-checkout-gray-secondary: #f8f8f8;
  --clr-checkout-gray-third: #9a9797;
  --clr-totals-bg: #e8e8e8;
  --clr-category-title-header: #000000;
  --bg-caregory-item-title: #000000;
  --ff-arial: "Arial", sans-serif;
}

@media screen and (max-width: 1024px) {
  /*** HEADER NAVIGATION STYLES ***/
  .header-menu-toggle {
    z-index: 100;
    margin-left: clamp(15px, 3vw, 25px);
    display: flex;
    align-items: center;
  }
  .sublist-open .header-menu-toggle {
    z-index: 9999;
  }
  .menu-seperator {
    height: 2px;
    background-color: var(--clr-dark-gray);
  }
  .menu-toggle {
    cursor: pointer;
  }
  .menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-menu-primary);
    display: block;
    margin-bottom: 5px;
  }
  .menu-toggle span:last-child {
    margin: 0;
  }
  .menu-toggle span.si {
    transform: translateX(-10px);
    opacity: 1;
  }
  .menu-toggle.active span {
    background-color: var(--clr-black);
  }
  .menu-toggle.active span.si {
    opacity: 0;
    transform: translateX(0);
  }
  .menu-toggle.active span.fi {
    transform: scale(1) rotate(-45deg) translate(-4px, 4px);
  }
  .menu-toggle.active span.ti {
    transform: scale(1) rotate(44deg) translate(-6px, -6px);
  }
  .mobile-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 30px;
    max-height: 100%;
    background-color: var(--clr-white);
    z-index: -2;
    opacity: 0;
    overflow-y: auto;
    padding-right: 27px;
    overflow-x: hidden;
  }
  .mobile-nav-wrapper.active {
    opacity: 1;
    z-index: 99999;
  }
  .mobile-nav-wrapper.active .close-menu {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
  .mobile-nav-wrapper.active .close-menu span {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../../images/Project/Header/menu-close.svg);
  }
  .mobile-nav-container {
    padding: 0 20px;
  }
  .mobile-nav {
    margin: clamp(35px, 3.5vw, 50px) 0 0;
  }
  .mobile-menu-list > li {
    margin: clamp(18px, 1.5vw, 22px) 0;
  }
  .mobile-menu-list > li a .has-menu {
    overflow: hidden;
    display: inline-block;
  }
  .mobile-menu-list > li a .menu-pending {
    display: block;
    color: var(--clr-dark-gray);
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
    transform: translateY(-120%);
  }
  .mobile-menu-list > li a .menu-pending:focus, .mobile-menu-list > li a .menu-pending:hover {
    color: var(--clr-primary);
  }
  .mobile-menu-list > li .sublist-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-65%);
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/Themes/RDC/Content/images/Project/Header/menu-next.png);
  }
  .mobile-menu-list > li .sublist {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    padding: 70px 20px 30px;
    z-index: -2;
  }
  .mobile-menu-list > li .sublist.open {
    display: block;
    z-index: 99999;
  }
  .mobile-menu-list > li .sublist.open > li > .menu-item > a .menu-pending {
    transform: translateY(0);
  }
  .mobile-menu-list > li .sublist.open > li.sublist-previous {
    z-index: 9999;
    opacity: 1;
    display: flex;
    gap: 15px;
  }
  .mobile-menu-list > li .sublist li {
    margin: clamp(18px, 1.5vw, 22px) 0;
  }
  .mobile-menu-list > li .sublist li a .menu-pending {
    display: block;
    color: var(--clr-dark-gray);
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 400;
  }
  .mobile-menu-list > li .sublist li a .menu-pending:focus, .mobile-menu-list > li .sublist li a .menu-pending:hover {
    color: var(--clr-primary);
  }
  .mobile-menu-list > li .sublist li.sublist-previous {
    z-index: -1;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
  }
  .mobile-menu-list > li .sublist li.sublist-previous span {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .mobile-menu-list > li .sublist li.sublist-previous span.sublist-previous-icon {
    background-image: url(/Themes/RDC/Content/images/Project/Header/menu-next.png);
    transform: rotate(180deg);
  }
  .mobile-menu-list > li .sublist li.sublist-previous span.sublist-close-icon {
    background-image: url(/Themes/RDC/Content/images/Project/Header/menu-close.svg);
  }
  .mobile-menu-list > li .menu-item {
    display: inline-block;
    position: relative;
    padding-right: 30px;
  }
  .menu-open .mobile-menu-list > li > .menu-item > a .menu-pending {
    transform: translateY(0);
  }
  /*** END HEADER NAVIGATION STYLES ***/
}
/*********** MIXINS **********/
:root {
  --clr-primary: #000000;
  --clr-secondary: #eef0f2;
  --clr-third: #000000;
  --clr-red: #da3333;
  --clr-title-text: #727580;
  --clr-title-secondary: #727580;
  --clr-text: #727580;
  --clr-text-secondary: #666c72;
  --clr-header-primary: #eeeeee;
  --clr-header-secondary: #eef0f2;
  --clr-menu-primary: #000000;
  --clr-menu-primary-hover: #000000;
  --clr-header-text: #727580;
  --clr-account-menu-text: #ffffff;
  --clr-account-menu-active: #000000;
  --clr-account-menu-bg: #727580;
  --clr-account-menu-bg-active: #ffffff;
  --clr-account-button-text: #ffffff;
  --clr-account-button-active: #727580;
  --clr-account-button-bg: #727580;
  --clr-account-button-bg-active: #ffffff;
  --clr-input-text: #727580;
  --clr-input-border: #ebebeb;
  --clr-btn-text: #21409a;
  --clr-btn-bg: #bfd730;
  --clr-btn-text-hover: #bfd730;
  --clr-btn-bg-hover: #e4e4e4;
  --clr-white: #ffffff;
  --clr-gray: #b8b8b8;
  --clr-secondary-gray: #c5c5c5;
  --clr-light-gray: #e8e8e8;
  --clr-dark-gray: #929292;
  --clr-black: #000000;
  --clr-active-step: #e8e8e8;
  --clr-checkout-primary: #eef0f2;
  --clr-checkout-primary-text: #727580;
  --clr-checkout-secondary: #e8e8e8;
  --clr-checkout-gray: #f2f2f2;
  --clr-checkout-third: #000000;
  --clr-checkout-gray-secondary: #f8f8f8;
  --clr-checkout-gray-third: #9a9797;
  --clr-totals-bg: #e8e8e8;
  --clr-category-title-header: #000000;
  --bg-caregory-item-title: #000000;
  --ff-arial: "Arial", sans-serif;
}

.shoping-cart-announcement-container {
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
}

.shoping-cart-announcement-container p strong {
  color: #000;
}

/*********** GLOBAL STYLES **********/
.CookieDeclaration {
  display: none;
}

.global-extra-small-container {
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.global-small-container {
  max-width: 1510px;
  padding: 0 10px;
  margin: 0 auto clamp(50px, 6vw, 110px);
  width: 97%;
}

.global-middle-container {
  max-width: 1320px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.global-large-container {
  max-width: 1600px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.global-small-title {
  text-align: left;
  margin: 0 0 8px;
}
.global-small-title h3 {
  display: inline-block;
  color: #00baf2;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  line-height: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 700;
  position: relative;
  padding-right: clamp(35px, 6vw, 70px);
}
.global-small-title h3::after {
  content: "";
  display: block;
  position: absolute;
  width: clamp(25px, 4vw, 55px);
  height: 2px;
  background-color: #00baf2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.global-small-title.white-small-title h3 {
  color: #ffffff;
}
.global-small-title.white-small-title h3::after {
  background-color: #ffffff;
}

.global-header-wrapper {
  padding-bottom: clamp(35px, 6vw, 70px);
}
.global-header-wrapper .global-header-inner h2,
.global-header-wrapper .global-header-inner h1 {
  font-weight: 200;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-family: var(--ff-arial);
  margin-bottom: clamp(14px, 1.1vw, 20px);
  text-align: center;
}
.global-header-wrapper .global-header-inner img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.global-show-all-btn-wrapper {
  max-width: 1510px;
  margin: 0 auto;
  padding-top: 83px;
}
.global-show-all-btn-wrapper .global-show-all-btn-inner .global-show-all-btn-link {
  cursor: pointer;
  font-size: 19px;
  font-weight: bold;
  font-family: var(--ff-arial);
  background-color: black;
  color: white;
  padding: 15px 40px;
  min-width: 230px;
  border: none;
}
.global-show-all-btn-wrapper .global-show-all-btn-inner .global-show-all-btn-link:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}
.global-show-all-btn-wrapper .global-show-all-btn-inner .global-show-all-btn-link.manufacturers-all-btn-link {
  padding-inline: 80px;
}
.global-show-all-btn-wrapper .global-show-all-btn-inner .global-show-all-btn-link.manufacturers-all-btn-link:hover {
  border: 1px solid black;
}

.value-availability-1 {
  color: #5e9401;
}

.value-availability-2 {
  color: #f36a10;
}

.value-availability-3 {
  color: #eb6161;
}

.value-availability-4 {
  color: #5e9401;
}

.value-availability-5 {
  color: #5e9401;
}

.availability-1 .value {
  color: #5e9401;
}

.availability-2 .value {
  color: #f36a10;
}

.availability-3 .value {
  color: #eb6161;
}

.availability-4 .value {
  color: #5e9401;
}

.availability-5 .value {
  color: #5e9401;
}

/*********** HOMEPAGE **********/
/*** HOMEPAGE PRODUCTS STYLES ***/
.view-all-products .homepage-btn {
  margin: 0 auto;
  text-transform: uppercase;
}

/*** END HOMEPAGE PRODUCTS STYLES ***/
/*** HOMEPAGE CATEGORIES STYLES ***/
.homepage-category-grid-wrapper {
  padding: clamp(35px, 6vw, 70px) 0 clamp(100px, 11vw, 140px);
  background-color: #ffffff;
}
.homepage-category-grid-wrapper .category-header-wrapper h2 {
  color: black;
}
.homepage-category-grid-wrapper .item-grid {
  display: block;
  max-width: 1677px;
}
.homepage-category-grid-wrapper .item-grid .category-item {
  position: relative;
  background-color: black;
  padding-block: 36px 40px;
  transition: 0.2s ease-in-out;
}
.homepage-category-grid-wrapper .item-grid .category-item .title {
  width: 100%;
  z-index: 2;
  min-height: 50px;
  padding-inline: 15px;
}
.homepage-category-grid-wrapper .item-grid .category-item .title a {
  margin: 0 auto;
  display: block;
  font-family: var(--ff-arial);
  font-weight: bold;
  text-align: center;
  color: var(--clr-white);
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: clamp(1.375rem, 1.5vw, 1.625rem);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.homepage-category-grid-wrapper .item-grid .category-item .picture {
  margin: 0 auto;
  padding-bottom: 23px;
}
.homepage-category-grid-wrapper .item-grid .category-item .picture a {
  position: relative;
  display: block;
}
.homepage-category-grid-wrapper .item-grid .category-item .picture a::before {
  content: "";
  display: block;
  padding-top: 41.5%;
}
.homepage-category-grid-wrapper .item-grid .category-item .picture img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 100%;
  max-width: 70%;
  margin: 0 auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage-category-grid-wrapper .item-grid .category-item:hover {
  background-color: #929292;
}

.homepage-grid-carousel {
  padding: 0 48px;
}

.homepage-category-grid-container {
  max-width: 1510px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
  overflow: hidden;
}

.owl-prev {
  left: 0;
  background-image: url(/Themes/RDC/Content/images/Project/General/arrow-left.svg);
}

.owl-next {
  right: 0;
  background-image: url(/Themes/RDC/Content/images/Project/General/arrow-right.svg);
}

.owl-prev,
.owl-next {
  z-index: 999;
  background-color: black;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-size: clamp(10px, 1vw, 12px);
  background-position: center;
}
.owl-prev:hover,
.owl-next:hover {
  background-color: #eeeeee;
}

/*** new-products-section ***/
.new-products-section .owl-next,
.new-products-section .owl-prev {
  background-color: white;
}
.new-products-section .owl-next {
  background-image: url(/Themes/RDC/Content/images/Project/General/arrow-black-right.svg);
}
.new-products-section .owl-prev {
  background-image: url(/Themes/RDC/Content/images/Project/General/arrow-black.svg);
}

/*** END new-products-section ***/
/*** polular-products-section ***/
.polular-products-section .home-page-product-grid {
  background-image: url(/Themes/RDC/Content/images/Project/General/BgPopularProducts.jpg);
}

/*** END polular-products-section ***/
/*** offers-products-section ***/
.offers-products-section .home-page-product-grid {
  background-image: url(/Themes/RDC/Content/images/Project/General/BgOffersProducts.jpg);
}
.offers-products-section .new-products-header-inner h2 {
  color: #000000 !important;
}
.offers-products-section .new-products-header-inner img {
  filter: invert(1);
}
.offers-products-section .new-products-show-all-btn-inner .new-products-show-all-btn-link {
  background-color: transparent;
  border: 1px solid black;
  color: #000000;
}
.offers-products-section .new-products-show-all-btn-inner .new-products-show-all-btn-link:hover {
  background-color: transparent;
}

/*** END offers-products-section ***/
/*** END HOMEPAGE CATEGORIES STYLES ***/
/*** HOMEPAGE MANUFACTURERS STYLES ***/
.homepage-manufacturers-wrapper {
  padding: clamp(45px, 7vw, 80px) 0;
}

.manufacturers-header-inner h2 {
  color: #000000;
}

.home-page-manufacturer-carousel {
  max-width: 1462px;
  width: 97%;
  margin: 0 auto;
  overflow: hidden;
  padding-inline: 40px;
}
.homepage-manufacturers-all {
  margin: clamp(25px, 4vw, 45px) 0 0;
}
.homepage-manufacturers-all .manufacturers-all-btn {
  margin: 0 auto;
  text-transform: uppercase;
}

/*** END HOMEPAGE MANUFACTURERS STYLES ***/
/*** HOMEPAGE NEWS STYLES ***/
.homepage-news-wrapper {
  padding: clamp(45px, 7vw, 80px) 0;
  background-color: #eeeeee;
}
.homepage-news-wrapper .view-all {
  margin: clamp(25px, 4vw, 45px) 0 0;
}
.homepage-news-wrapper .view-all .homepage-news-btn {
  margin: 0 auto;
  text-transform: uppercase;
}

.news-header-inner h2 {
  color: black;
}

.homepage-news-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(210px, 31%, 370px), 1fr));
  grid-gap: clamp(20px, 3vw, 40px);
  font-family: var(--ff-arial);
}

.news-show-all-btn-inner .news-show-all-btn-link {
  background-color: transparent !important;
  border: 1px solid black !important;
  color: #000000 !important;
  padding: 15px 60px !important;
}

.homepage-news-item .homepage-news-image {
  margin: 0 0 clamp(15px, 2vw, 25px);
}
.homepage-news-item .homepage-news-image a {
  display: block;
  position: relative;
}
.homepage-news-item .homepage-news-image a::before {
  content: "";
  display: block;
  padding-top: 59%;
}
.homepage-news-item .homepage-news-image a img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.homepage-news-item .news-head {
  margin: 0 0 clamp(10px, 1vw, 15px);
}
.homepage-news-item .news-head .news-title {
  display: block;
  font-size: clamp(0.9375rem, 1.5vw, 1.1875rem);
  line-height: clamp(1.25rem, 2vw, 1.6875rem);
  text-align: left;
  color: black;
  font-weight: 700;
  margin: 0 0 clamp(5px, 1vw, 10px);
  min-height: 60px;
}
.homepage-news-item .news-head .news-title:hover {
  color: var(--clr-third);
}
.homepage-news-item .news-head .news-date {
  margin: 0 0 clamp(15px, 2vw, 25px);
  display: block;
  font-size: clamp(0.625rem, 1vw, 0.8125rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
  text-align: left;
  color: black;
  font-weight: normal;
}
.homepage-news-item .news-body {
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: 25px;
  text-align: left;
  color: #929292;
  font-weight: normal;
  min-height: 80px;
  overflow: hidden;
}
.homepage-news-item .news-show-more-wrapper {
  text-align: end;
  padding-block: 25px;
}
.homepage-news-item .news-show-more-wrapper a {
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  font-family: var(--ff-arial);
  font-weight: 800;
  color: #000000;
}

/*** END HOMEPAGE NEWS STYLES ***/
/*** HOMEPAGE BLOG STYLES ***/
.homepage-blog-wrapper {
  padding: clamp(35px, 5vw, 60px) 0;
}

.homepage-blog-inner-container {
  grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 27vw, 366px), 1fr));
  grid-gap: clamp(25px, 2.5vw, 35px) 0;
}

.see-all-blog-btn {
  margin: clamp(35px, 5vw, 82px) 0 0;
}
.see-all-blog-btn .homepage-blog-btn {
  margin: 0 auto;
  text-transform: uppercase;
}

.homepage-blog-item {
  padding: 0 clamp(10px, 1.5vw, 20px);
}
.homepage-blog-item .homepage-blog-image {
  margin: 0 0 clamp(15px, 1.4vw, 22px);
}
.homepage-blog-item .homepage-blog-image a {
  display: block;
  position: relative;
}
.homepage-blog-item .homepage-blog-image a::before {
  content: "";
  display: block;
  padding-top: 72%;
}
.homepage-blog-item .homepage-blog-image a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}
.homepage-blog-item .homepage-blog-date {
  margin: 0 0 clamp(14px, 1.4vw, 21px);
  text-align: left;
}
.homepage-blog-item .homepage-blog-date span {
  font-family: "Arial", sans-serif;
  color: var(--clr-dark-gray);
  font-weight: 400;
  font-size: clamp(0.7025rem, 1vw, 0.88875rem);
  line-height: clamp(0.9375rem, 1.4vw, 1.125rem);
}
.homepage-blog-item .homepage-blog-item-title {
  margin: 0 0 clamp(19px, 1.5vw, 28px);
}
.homepage-blog-item .homepage-blog-item-title h3 {
  text-align: left;
}
.homepage-blog-item .homepage-blog-item-title h3 a {
  color: var(--clr-dark-gray);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.601875rem);
  line-height: clamp(1.1875rem, 2.5vw, 1.6875rem);
  text-align: left;
}
.homepage-blog-item .homepage-blog-item-title h3 a:hover {
  color: var(--clr-primary);
}
.homepage-blog-item .homepage-blog-body p {
  font-family: "Arial", sans-serif;
  color: var(--clr-dark-gray);
  margin: 0;
  letter-spacing: 1.6px;
  font-size: clamp(0.79rem, 1vw, 1rem);
  line-height: clamp(1.29rem, 1.8vw, 1.5rem);
  text-align: left;
  font-weight: 400;
}

/*** END HOMEPAGE BLOG STYLES ***/
/*** HOMEPAGE PRODUCT CAROUSELS STYLES ***/
.global-carousel-wrapper {
  padding: clamp(25px, 4vw, 45px) 0 clamp(60px, 8vw, 120px);
}

.global-carousel-container {
  max-width: 1380px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}
.global-carousel-container .owl-carousel {
  padding: 0 clamp(17px, 2vw, 32px) 0;
}
.global-carousel-container .owl-carousel .owl-item {
  padding: 15px 0 0;
}
.global-carousel-container .owl-carousel .owl-item .item-box {
  max-width: 242px;
  margin: 0 auto;
}

/*** END HOMEPAGE PRODUCT CAROUSELS STYLES ***/
/*********** CATEGORY PAGES **********/
/*** BREADCRUMB STYLES ***/
.breadcrumb-wrapper {
  padding: clamp(10px, 1.5vw, 20px) 0 0;
}

.breadcrumb-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.breadcrumb-list li {
  margin: 0 4px 0 0;
  display: inline-flex;
}
.breadcrumb-list li:last-child {
  opacity: 0.7;
}
.breadcrumb-list li a,
.breadcrumb-list li span,
.breadcrumb-list li strong {
  color: #b0b1b2;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.64rem;
  line-height: 0.8125rem;
}
.breadcrumb-list li strong {
  color: var(--clr-third);
}
.breadcrumb-list li .delimiter {
  margin: 0 0 0 4px;
}

/*** END BREADCRUMB STYLES ***/
/*** SUB CATEGORY BOOKS PAGE STYLES ***/
.sub-category-page-wrapper {
  padding: clamp(25px, 4vw, 45px) 0 clamp(60px, 8vw, 120px);
}

.sub-category-page-container {
  max-width: 1532px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.center-1 .category-description {
  max-width: 1532px;
  margin: 0 auto;
  padding: 0 10px;
  width: 97%;
  color: #fff;
  position: relative;
  text-align: left;
}
.center-1 .category-description p {
  color: #fff;
  position: relative;
  text-align: left;
}

.center-2 .category-description {
  color: #000;
  position: relative;
  text-align: left;
  padding-block: 10px;
}
.center-2 .category-description p {
  color: #000;
  position: relative;
  text-align: left;
}
.center-2 .search-page .page-title h1,
.center-2 .search-page .page-title h2 {
  color: #000;
}

.sub-category-grid .item-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(210px, 23vw, 352px), 1fr));
  grid-gap: clamp(15px, 3vw, 40px);
}

.sub-category-books-item {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  transition: all 0.3s ease-in-out;
}
.sub-category-books-item:hover {
  transform: translateY(clamp(-7px, -0.5vw, -3px));
}
.sub-category-books-item .picture a {
  display: block;
  position: relative;
}
.sub-category-books-item .picture a::before {
  content: "";
  display: block;
  padding-top: 71.606%;
}
.sub-category-books-item .picture a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}
.sub-category-books-item .sub-category-item-books-title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.sub-category-books-item .sub-category-item-books-title .sub-category-item-books-title-inner {
  position: relative;
  text-align: left;
}
.sub-category-books-item .sub-category-item-books-title .sub-category-item-books-title-inner .sub-category-book-title {
  position: relative;
  z-index: 2;
}
.sub-category-books-item .sub-category-item-books-title .sub-category-item-books-title-inner .sub-category-book-title a {
  color: var(--clr-white);
  font-weight: 700;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.5rem);
  padding: 26px 19px clamp(16px, 3vh, 25px);
  display: block;
}
.sub-category-books-item .sub-category-item-books-title .sub-category-item-books-title-inner svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  transform: scale(1.3);
}

/*** END SUB CATEGORY BOOKS PAGE STYLES ***/
/*** SUB CATEGORY PAGE STYLES ***/
.sub-category-page {
  padding: clamp(45px, 5vw, 80px) 0;
}
.sub-category-page:before {
  content: "";
  height: 430px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000000;
  z-index: 0;
}
.sub-category-page .pager {
  max-width: 1052px;
  padding: 0 10px;
  margin: 0 auto;
}

.sub-category-page-breadcrumb-wrapper {
  position: relative;
  z-index: 1;
}
.sub-category-page-breadcrumb-wrapper .current-item {
  color: #b0b1b2;
  font-weight: 700;
  font-family: Arial, sans-serif;
  font-size: clamp(0.625rem, 1vw, 0.6875rem);
}

.sub-category-page-header-wrapper {
  position: relative;
  padding: 0;
}
.sub-category-page-header-wrapper h2 {
  color: #fff;
}

.sub-category-global-wrapper .sub-category-global-container {
  max-width: 1052px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}
.sub-category-global-wrapper .sub-category-global-container .item-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(240px, 16vw, 352px), 1fr));
}

.sub-category-item {
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e6e1e1;
  background-color: #fff;
}
.sub-category-item .title {
  position: absolute;
  right: 0;
  bottom: 15%;
  left: 0;
  width: 100%;
  padding: clamp(10px, 1vw, 10px) 10px;
  z-index: 2;
  min-height: 58px;
  max-width: 220px;
  margin: 0 auto;
}
.sub-category-item .title a {
  display: block;
  color: #000000;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: clamp(1.375rem, 1.4vw, 1.8125rem);
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.sub-category-item .picture a {
  display: block;
  position: relative;
}
.sub-category-item .picture a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sub-category-item .picture a img {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 50%;
  max-width: 30%;
  max-height: 100%;
  transform: translateX(-50%);
}

/*** END SUB CATEGORY PAGE STYLES ***/
/***  CATEGORY LIKE PRODUCT PRODUCT GRID PAGE STYLES ***/
.item-box .category-line-product-description {
  text-align: left;
  color: var(--clr-dark-gray);
  font-weight: 400;
  margin: 0 0 7px;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  line-height: clamp(0.875rem, 1.2vw, 1.125rem);
}

/***  END CATEGORY LIKE PRODUCT PRODUCT GRID PAGE STYLES ***/
/*** SEARCH PAGE STYLES ***/
.search-input {
  max-width: 700px;
  padding: 0 10px;
  margin: 0 auto;
}
.search-input .search-button {
  margin: 0 auto;
  text-transform: uppercase;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
}
.search-input .price-range-input {
  flex-basis: 49%;
}
.search-input .buttons {
  margin-bottom: 50px;
}
.search-input .fieldset .inputs .price-range {
  padding-top: 10px;
}
.search-input .fieldset .inputs label {
  color: #000;
  margin-bottom: 10px;
}
.search-input .fieldset .inputs input,
.search-input .fieldset .inputs select {
  border-radius: 0;
}

/***  CATEGORY PRODUCT GRID PAGE STYLES ***/
.columns-wrapper {
  padding: clamp(35px, 4vw, 55px) 0;
}

.columns-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.center-2 .sub-category-page-header-wrapper {
  display: none;
}
.center-2 .item-box {
  border: 1px solid #eeeeee;
}
.center-2 .category-title h2,
.center-2 .category-title h1 {
  color: #000;
}

.category-title {
  margin: 0;
  border-bottom: 2px solid #000000;
  padding-bottom: clamp(5px, 1vw, 15px);
}
.category-title h1,
.category-title h2 {
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: clamp(1.5625rem, 2vw, 2.5rem);
  font-weight: 500;
  text-transform: capitalize;
}

.center-2 .category-page .item-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 19%, 258px), 1fr));
}

.center-1 .category-page .item-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 25vw, 280px), 1fr));
}

.category-page .item-grid {
  grid-gap: clamp(10px, 1.5vw, 20px);
}
.category-page .category-description p {
  margin: 0;
}

.category-product-grid-page .page-title {
  margin: 0 0 clamp(10px, 1vw, 15px);
}
.category-product-grid-page .page-title h1 {
  text-align: left;
}

.product-selectors-wrapper {
  padding: clamp(10px, 1.5vw, 20px) 0;
}

.product-selectors > * {
  margin-bottom: 4px;
}
.product-selectors > * > * {
  color: #000000;
  font-weight: 500;
  font-family: Arial, sans-serif;
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
}
.product-selectors > * span {
  display: inline-block;
  margin: 0 clamp(10px, 1vw, 15px) 0 0;
  text-transform: uppercase;
}
.product-selectors > * select {
  position: relative;
  border: 1px solid #ded7d7;
  padding: clamp(5px, 0.5vw, 8px) clamp(8px, 1vw, 12px) clamp(4px, 0.5vw, 7px);
}
.product-selectors .product-sorting {
  margin: 0 clamp(20px, 3.5vw, 42px) 4px 0;
}

.product-grid .item-grid {
  display: grid;
}

.product-grid-pager {
  margin: 0;
  flex-basis: 30%;
}

.block-category-navigation {
  background-color: var(--clr-white);
}
.block-category-navigation .ui-accordion-header-icon {
  display: none;
}
.block-category-navigation .title {
  padding: 10px 15px;
}
.block-category-navigation .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/Themes/RDC/Content/images/Project/Category/cevron-bottom-navigation.svg);
  transition: all 0.3s ease-in-out;
  top: 50%;
  right: clamp(10px, 1vw, 15px);
  transform: translateY(-50%);
}
.block-category-navigation .title.ui-accordion-header-active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.block-category-navigation .listbox {
  padding: clamp(10px, 1vw, 15px) 0 clamp(15px, 2vw, 35px);
}
.block-category-navigation .list li {
  padding: 0 clamp(15px, 1.5vw, 25px);
  margin: 0 0 clamp(7px, 1vw, 12px);
}
.block-category-navigation .list li:last-child {
  margin: 0;
}
.block-category-navigation .list li a {
  color: var(--clr-dark-gray);
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.5rem);
}
.block-category-navigation .list > li {
  background: transparent;
}
.block-category-navigation .list > li > a {
  border: 0;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  background: transparent;
  position: relative;
}
.block-category-navigation .list > li > a .ui-accordion-header-icon {
  left: auto;
  right: 0;
  top: 50%;
  transform: rotate(0) translateY(-50%);
  background-image: url(/Themes/RDC/Content/images/Project/Category/cevron-bottom-navigation.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 12px;
  margin: -6px;
  transition: all 0.3s ease-in-out;
  transform-origin: 4px -1px;
}
.block-category-navigation .list > li > a.ui-accordion-header-active .ui-accordion-header-icon {
  transform: rotate(180deg) translateY(-50%);
}
.block-category-navigation .list .sublist {
  margin: 0;
  padding: 0;
  border: 0;
}

.columns-grid .side-2 .block-category-navigation {
  display: none;
}

.bottom-banner-wrapper {
  padding: clamp(25px, 4vw, 45px) 0 0;
}

.bottom-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.center-1 .category-title {
  display: none;
}

/*** END CATEGORY PRODUCT GRID PAGE STYLES ***/
/*********** ITEM BOX **********/
.home-page-product-grid {
  background-image: url("../images/BgNewProducts.jpg");
  background-size: cover;
  padding-block: 100px;
  padding-inline: 20px;
}

.homepage-new-products-grid-container {
  max-width: 1510px;
  margin: 0 auto;
}

.homepage-new-products-carousel {
  padding-inline: 50px;
}

.new-products-header-wrapper {
  padding-bottom: 65px;
}
.new-products-header-wrapper .new-products-header-inner h2 {
  color: white;
}

.item-box {
  position: relative;
  background-color: var(--clr-white);
  padding: clamp(10px, 1.5vw, 25px);
  transition: all 0.3s ease-in-out;
}
.item-box .ribbon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  z-index: 1;
  gap: 10px;
}
.item-box .ribbon-wrapper .ribbon {
  padding: 5px 15px;
  font-family: var(--ff-arial);
  font-weight: bold;
  font-size: 16px;
}
.item-box .ribbon-wrapper .ribbon.ribbon-new {
  background-color: black;
  color: white;
}
.item-box .ribbon-wrapper .ribbon.ribbon-hot-deal {
  background-color: #f36a10;
  color: white;
}
.item-box .ribbon-wrapper .ribbon.ribbon-offer {
  background-color: black;
  color: white;
}
.item-box .details .product-title {
  margin: 0 0 clamp(8px, 1vw, 12px);
  text-align: left;
}
.item-box .details .product-title a {
  color: black;
  font-weight: bold;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.5rem);
  text-align: center;
  display: block;
  min-height: 72px;
}
.item-box .details .availability {
  border-bottom: 1px solid #eeeeee;
  padding-block: 8px;
  margin: 0 0 clamp(10px, 1vw, 15px);
  text-align: center;
  min-height: 42px;
}
.item-box .details .availability span {
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
  line-height: clamp(1.125rem, 1.5vw, 1.5625rem);
  font-weight: 500;
}
.item-box .details .availability span.green-value {
  color: #7eb51e;
}
.item-box .details .availability span.yellow-value {
  color: #f36a10;
}
.item-box .details .availability span.red-value {
  color: #eb6161;
}
.item-box .details .sku {
  text-align: center;
  padding-block: 6px;
  min-height: clamp(15px, 1.5vw, 19px);
  border-block: 1px solid #eeeeee;
}
.item-box .details .sku span {
  display: block;
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
  font-family: var(--ff-arial);
}
.item-box .details .sku span.label {
  font-size: clamp(0.5625rem, 1vw, 0.6875rem);
  color: #929292;
  font-weight: bold;
}
.item-box .details .sku span.value {
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  color: #000000;
}
.item-box .prices {
  margin: 0 0 clamp(9px, 1.5vw, 12px);
  padding-inline: 15px;
}
.item-box .prices .actual-price {
  color: black;
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
  font-family: var(--ff-arial);
  font-weight: normal;
}
.item-box .prices .actual-price.call-for-price {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  margin: 0 auto;
}
.item-box .prices .old-price {
  color: #929292;
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: normal;
  text-decoration: line-through;
  font-family: var(--ff-arial);
  margin: 0 0 0 clamp(10px, 1vw, 15px);
}
.item-box .buttons .buttons-grid .product-box-add-to-cart-button {
  text-align: center;
  display: block;
  width: 100%;
  min-height: 52px;
  font-size: clamp(1rem, 1vw, 1.1875rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--clr-white);
  background-color: var(--clr-black);
  font-weight: 700;
  font-family: var(--ff-arial);
  transition: all 0.3s ease-in-out;
  padding: clamp(7px, 1vw, 10px) 10px;
  letter-spacing: 2.13px;
  cursor: pointer;
  border: 0;
  margin: 0 11px 0 0;
}
.item-box .buttons .buttons-grid .product-box-add-to-cart-button:hover {
  color: #000000;
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
}
.item-box .buttons .buttons-grid .product-box-no-quantity {
  text-align: center;
  display: block;
  width: 100%;
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--clr-dark-gray);
  background-color: #d4d4d4;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  padding: clamp(7px, 1vw, 10px) 10px;
  max-width: 168px;
  letter-spacing: 2.13px;
  cursor: not-allowed;
  border: 0;
  border-radius: 4px;
  margin: 0 clamp(10px, 1vw, 15px) 0 0;
  text-transform: uppercase;
}
.item-box .buttons .buttons-grid .product-box-no-quantity:hover {
  opacity: 0.6;
}
.item-box .buttons .buttons-grid .add-to-compare-list-button {
  width: clamp(18px, 2vw, 27px);
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/Themes/RDC/Content/images/Project/Category/compare-icon.svg);
  font-size: 0;
  border: 0;
  background-color: transparent;
  margin: 0 clamp(10px, 1vw, 15px) 0 0;
  display: none;
}
.item-box .buttons .buttons-grid .add-to-compare-list-button:hover {
  transform: scale(1.1);
}
.item-box .buttons .buttons-grid .add-to-wishlist-button {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(/Themes/RDC/Content/images/Project/Category/heart-icon.png);
  font-size: 0;
  border: 0;
  background-color: black;
}
.item-box .buttons .buttons-grid .add-to-wishlist-button:hover {
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
  background-image: url(/Themes/RDC/Content/images/Project/Category/heart-hover.png);
}
.item-box .buttons .buttons-grid .add-to-wishlist-button.active {
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
  background-image: url(/Themes/RDC/Content/images/Project/Category/heart-hover.png);
}
.item-box .manufacturer {
  width: 50px;
  position: absolute;
  top: 14px;
  left: 25px;
  z-index: 9999;
}
.item-box .manufacturer .label {
  display: none;
}
.item-box .manufacturer .value img {
  display: block;
  width: 100%;
}
.item-box .picture {
  margin: 0 0 clamp(7px, 1vw, 11px);
}
.item-box .picture a {
  display: block;
  position: relative;
}
.item-box .picture a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.item-box .picture a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*********** TOPIC PAGES **********/
div#ph-topic-22 {
  padding: 0;
}
div#ph-topic-22 .page-title {
  display: none;
}

.tgiannakis-giveaway-landing-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.tgiannakis-giveaway-landing-top-wrapper {
  background-color: #171717;
  padding: clamp(60px, 15vw, 170px) 0 clamp(60px, 17vw, 195px);
}

.tgiannakis-giveaway-landing-top-container {
  max-width: 878px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.tgiannakis-giveaway-landing-top-title h1 {
  color: #FBF4F4;
  font-size: clamp(25px, 4vw, 45px);
  line-height: 40px;
  margin: 0;
}
.tgiannakis-giveaway-landing-top-title h1 a {
  color: #EE8903;
  text-decoration: underline;
}

.tgiannakis-giveaway-landing-top-title {
  margin: 0 0 15px;
}

.tgiannakis-giveaway-landing-top-subtitle h3 {
  color: #FBF4F4;
  font-size: clamp(13px, 2vw, 20px);
  line-height: clamp(15px, 2vw, 22px);
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.tgiannakis-giveaway-landing-top-subtitle {
  margin: 0 0 27px;
}

.tgiannakis-giveaway-landing-top-text p {
  color: #FCF6F6;
  font-size: clamp(13px, 2vw, 27px);
  line-height: clamp(22px, 3vw, 35px);
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.tgiannakis-giveaway-landing-top-text {
  margin: 0 0 clamp(10px, 2vw, 30px);
}

.tgiannakis-giveaway-landing-top-sub-text h5 {
  color: #FBF4F4;
  font-size: clamp(12px, 2vw, 17px);
  line-height: clamp(14px, 2vw, 19px);
  font-weight: 400;
  text-align: center;
  margin: 0;
}

.tgiannakis-giveaway-landing-top-sub-text {
  margin: 0 0 clamp(20px, 4vw, 51px);
}

.tgiannakis-giveaway-landing-top-text {
  background-image: url(/Themes/RDC/Content/images/Project/General/giveaway-text-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px 0;
}

.tgiannakis-giveaway-landing-bottom-upper-inner-container {
  display: flex;
}

.tgiannakis-giveaway-landing-bottom-upper-container {
  max-width: 1652px;
  margin: 0 auto;
  padding: 0 10px;
  width: 97%;
}

.tgiannakis-giveaway-landing-bottom-upper-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tgiannakis-giveaway-landing-bottom-upper-left h3 {
  color: #171717;
  font-size: clamp(14px, 2vw, 25px);
  line-height: clamp(25px, 3vw, 35px);
  font-weight: 900;
  margin: 0 0 clamp(23px, 3vw, 48px);
}

.tgiannakis-giveaway-landing-bottom-upper-left p {
  color: #040404;
  font-size: clamp(14px, 2vw, 25px);
  font-weight: 400;
  margin: 0 0 clamp(23px, 3vw, 48px);
  line-height: clamp(25px, 3vw, 35px);
}

.tgiannakis-giveaway-landing-bottom-upper-left p:last-child {
  margin: 0;
}

.tgiannakis-giveaway-landing-bottom-lower-wrapper {
  position: relative;
}

.tgiannakis-giveaway-landing-bottom-lower-wrapper:before {
  content: "";
  display: block;
  width: 1505px;
  height: clamp(250px, 34vw, 330px);
  background-color: #EE8903;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.tgiannakis-giveaway-landing-bottom-lower-right ul li {
  color: #040404;
  margin: 0;
  font-size: clamp(14px, 2vw, 25px);
  line-height: clamp(25px, 3vw, 35px);
  letter-spacing: -0.13px;
  text-align: left;
  position: relative;
  padding-left: 15px;
}

.tgiannakis-giveaway-landing-bottom-lower-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tgiannakis-giveaway-landing-bottom-lower-right ul li:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.tgiannakis-giveaway-landing-bottom-lower-right {
  position: relative;
  padding: 0 0 80px;
}

.tgiannakis-giveaway-landing-bottom-lower-right h3 {
  margin: 0 0 5px;
  padding-left: 15px;
  font-size: clamp(14px, 2vw, 25px);
  line-height: clamp(25px, 3vw, 35px);
  letter-spacing: -0.13px;
  font-weight: 700;
  color: #040404;
}

.topic-page-full-newsletter-wrapper .newsletter-header-wrapper {
  display: none;
}

.topic-page-full-newsletter-wrapper .newsletter-content-wrapper {
  display: none;
}

.topic-page-full-newsletter-wrapper .newsletter-wrapper {
  padding: 0 !important;
  background: 0;
  background-color: #171717;
  background-image: url(/Themes/RDC/Content/images/Project/General/topic-newsletter-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 770px;
  background: 0 !important;
}

.topic-page-full-newsletter-wrapper {
  padding: 197px 0 185px;
  background: 0;
  background-color: #171717;
  background-image: url(/Themes/RDC/Content/images/Project/General/topic-newsletter-bg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 770px;
}

.topic-page-full-newsletter-wrapper .newsletter-input-container {
  flex-direction: column;
  gap: 38px;
  margin: 0 0 53px;
}

.topic-page-full-newsletter-wrapper .newsletter-input-container .newsletter-subscribe-text {
  flex-basis: 100% !important;
  width: 100%;
  padding: 17px 20px;
  border: 1px solid #F9F8F8;
  background: rgba(9, 8, 8, 0.7);
  font-size: 21px;
  color: #FBF2F2;
}

.topic-page-full-newsletter-wrapper .newsletter-input-container .newsletter-subscribe-text::-moz-placeholder {
  font-size: 21px;
  color: rgba(251, 242, 242, 0.28);
}

.topic-page-full-newsletter-wrapper .newsletter-input-container .newsletter-subscribe-text::placeholder {
  font-size: 21px;
  color: rgba(251, 242, 242, 0.28);
}

.topic-page-full-newsletter-title h2 {
  color: #FBF4F4;
  font-size: clamp(25px, 4vw, 45px);
  line-height: 40px;
  margin: 0;
}

.topic-page-full-newsletter-wrapper .newsletter-result {
  color: #fff;
}

.topic-page-full-newsletter-wrapper .newsletter-input-wrap .newsletter-inputs {
  text-align: left;
  font-size: 17px;
  color: #FBF2F2;
}

.topic-page-full-newsletter-wrapper .newsletter-input-wrap .newsletter-inputs label {
  color: #FBF2F2;
  font-size: 15px;
}

.topic-page-full-newsletter-wrapper .newsletter-input-wrap .newsletter-inputs input[type=checkbox]:checked + label::before {
  box-shadow: inset 0 0 0 3px rgb(10, 8, 8);
}

.topic-page-full-newsletter-wrapper .newsletter-input-wrap .newsletter-inputs label::before {
  border-radius: 0;
  border: 1px solid #F9F8F8;
  background: transparent;
}

.topic-page-full-newsletter-wrapper .inputs.reversed input[type=checkbox]:checked + label:before {
  background-color: #F9F8F8;
  box-shadow: inset 0 0 0 2px rgb(10, 8, 8);
}

.topic-page-full-newsletter-wrapper #newsletter-subscribe-button {
  max-width: 250px;
  width: 100%;
  padding: 14px;
  background-color: #ee8903;
  border-radius: 34px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1.1px;
}

.topic-page-full-newsletter-wrapper .newsletter-inner-container {
  max-width: 642px;
}

.tgiannakis-giveaway-landing-bottom-lower-left img {
  position: absolute;
  max-width: clamp(250px, 25vw, 429px);
  top: 0;
}

.tgiannakis-giveaway-landing-bottom-lower-left {
  position: relative;
  padding-top: 25%;
}

.tgiannakis-giveaway-landing-bottom-upper-container {
  max-width: 1652px;
  margin: 0 auto;
  padding: 0 10px;
  width: 97%;
}

.tgiannakis-giveaway-landing-bottom-lower-container {
  max-width: 1682px;
  margin: 0 auto;
  padding: 0 10px;
  width: 97%;
}

.tgiannakis-giveaway-landing-bottom-lower-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tgiannakis-giveaway-landing-bottom-lower-left {
  flex-basis: 25.81%;
}

.tgiannakis-giveaway-landing-bottom-lower-right {
  flex-basis: 30.08%;
}

.tgiannakis-giveaway-landing-bottom-upper-left {
  flex-basis: 30.63%;
}

.tgiannakis-giveaway-landing-bottom-upper-right {
  flex-basis: 30.6%;
}

.tgiannakis-giveaway-landing-bottom-upper-wrapper {
  padding: 64px 0 20px;
}

.tgiannakis-giveaway-landing-top-btn {
  max-width: 211px;
  margin: 0 auto;
  padding: 0 10px;
  width: 97%;
}

.tgiannakis-giveaway-landing-top-btn a {
  display: block;
  width: 100%;
  background-color: #EE8903;
  padding: 7px 0;
  border-radius: 34px;
  color: #000;
  font-weight: 700;
  font-size: 15px;
}

font[color*="#ff0000"] > strong {
  color: #ff0000 !important;
}

font[color*="#ff0000"] > a {
  color: #ff0000 !important;
}

span[style*="color: #ff0000"] > strong {
  color: #ff0000 !important;
}

.information-bar {
  background-color: #ed7e29;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1300px) {
  .tgiannakis-giveaway-landing-bottom-upper-left {
    flex-basis: 46.63%;
    padding: 0 0 50px;
  }
}
@media (max-width: 1024px) {
  .information-bar {
    font-size: 13px;
  }
  .tgiannakis-giveaway-landing-bottom-lower-inner-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .tgiannakis-giveaway-landing-bottom-lower-left img {
    position: unset;
    max-width: 329px;
    margin: 0 auto;
  }
  .tgiannakis-giveaway-landing-bottom-upper-inner-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .tgiannakis-giveaway-landing-bottom-upper-right-desktop img {
    max-width: 329px;
    margin: 0 auto;
  }
  .tgiannakis-giveaway-landing-bottom-lower-left {
    padding: 20px 0 0;
  }
  .tgiannakis-giveaway-landing-bottom-upper-right {
    order: -1;
    padding: 0 0 30px;
  }
  .tgiannakis-giveaway-landing-bottom-lower-wrapper:before {
    height: 369px;
  }
  .tgiannakis-giveaway-landing-bottom-upper-right-mobile img {
    max-width: 329px;
    margin: 0 auto;
  }
}
@media (max-width: 828px) {
  .tgiannakis-giveaway-landing-container-desktop {
    display: none;
  }
  .tgiannakis-giveaway-landing-bottom-upper-right-desktop {
    display: none;
  }
}
@media (min-width: 829px) {
  .tgiannakis-giveaway-landing-container-mobile {
    display: none;
  }
  .tgiannakis-giveaway-landing-bottom-upper-right-mobile {
    display: none;
  }
}
/*** GLOBAL TOPIC PAGES STYLES ***/
#ph-topic-3.page-padding {
  padding: clamp(35px, 5vw, 85px) 0;
}

.topic-page-container {
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}
.topic-page-container .page-title {
  margin: 0 0 clamp(15px, 2.5vw, 30px);
}
.topic-page-container .page-title h1,
.topic-page-container .page-title strong {
  text-align: left;
  font-family: var(--ff-arial);
  font-size: clamp(1rem, 2vw, 1.4375rem);
  color: #000;
}
.topic-page-container .page-body ul {
  padding-left: clamp(30px, 3vw, 60px);
}
.topic-page-container .page-body p {
  text-align: left;
  color: #000000;
  font-family: var(--ff-arial);
  font-size: clamp(0.75rem, 1vw, 1rem);
}
.topic-page-container .page-body p strong {
  text-align: left;
  font-family: var(--ff-arial);
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: #000;
}

/*** END GLOBAL TOPIC PAGES STYLES ***/
/*** ABOUT US PAGE STYLES ***/
#ph-topic-1 {
  background-image: url(../../images/Project/General/BgAboutUs.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 240px;
}
#ph-topic-1 .page-body {
  max-width: 700px;
  background-color: rgba(255, 255, 255, 0.87);
  padding: 60px clamp(40px, 3.3vw, 60px);
}
#ph-topic-1 .page-body .about-us-page-content-paragraph {
  margin: 0;
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: #000000;
  font-family: var(--ff-arial);
  line-height: 25px;
  text-align: left;
}
#ph-topic-1 .topic-page-full-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
}

.about-us-header-wrapper .about-us-header-inner h2 {
  text-align: center;
  text-transform: none;
  color: white;
}

/*** END ABOUT US PAGE STYLES ***/
/*********** NOT FOUND PAGE **********/
.not-found-icon {
  max-width: 100px;
  padding: 0 10px;
  margin: 0 auto clamp(20px, 3vw, 45px);
  width: 20%;
}

.not-found-page-wrapper .topic-block-body p {
  text-align: center;
}
.not-found-page-wrapper .topic-block-body ul {
  padding: 0;
  margin: 0;
}
.not-found-page-wrapper .topic-block-body ul li {
  text-align: center;
  list-style-type: none;
}

.page-not-found-button .page-not-found-btn {
  text-transform: uppercase;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
}

/*********** CONTACT PAGE **********/
.contact-page {
  padding: clamp(40px, 4vw, 75px) 0 0;
  background-image: url(../../images/Project/Contact/bleached-wood-textured-design-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.topic-page-contact {
  padding: clamp(40px, 4vw, 75px) 0 0;
  background-image: url(../../images/Project/Contact/bleached-wood-textured-design-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-header-inner h2 {
  color: #000000;
}

.contact-page-container {
  max-width: 1310px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.contact-page-form-inner-container .contact-form-title {
  margin: 0 0 clamp(35px, 5vw, 65px);
}

.contact-form {
  max-width: 440px;
  margin: 0 auto;
  padding-inline: 30px;
}
.contact-form .inputs {
  border-bottom: 1px solid #707070;
}
.contact-form .inputs input {
  border: none;
  border-radius: 0;
  padding-bottom: 0;
}
.contact-form .inputs label {
  display: none;
  text-transform: uppercase;
}
.contact-form .inputs textarea {
  resize: none;
  overflow: auto;
}
.contact-form .buttons .contact-us-button {
  width: 100%;
  padding: 16px;
  text-transform: uppercase;
  width: 100%;
  max-width: unset;
}

.contact-text-bottom-wrapper {
  padding: clamp(35px, 7vw, 95px) 0 0;
}

.contact-map-wrapper .map iframe {
  display: block;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
}
.contact-map-wrapper .map iframe.active {
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  filter: grayscale(0);
}

/*********** NEWS LIST PAGE **********/
.news-list-page {
  padding: clamp(35px, 4.5vw, 75px) 0 clamp(55px, 7vw, 135px);
}

.news-list-page-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}
.news-list-page-container .page-title h1,
.news-list-page-container .page-title h2 {
  color: #000;
}

.news-items-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(300px, 30%, 480px), 1fr));
  grid-gap: 25px;
}
.news-items-grid .news-item .news-item-image {
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 clamp(10px, 1vw, 15px);
}
.news-items-grid .news-item .news-item-image a {
  display: block;
  position: relative;
}
.news-items-grid .news-item .news-item-image a::before {
  content: "";
  display: block;
  padding-top: 59%;
}
.news-items-grid .news-item .news-item-image a img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.news-items-grid .news-item .news-head {
  margin: 0 0 clamp(10px, 1vw, 15px);
  padding: 0 0 clamp(5px, 1vw, 10px);
  border-bottom: 2px dashed var(--clr-gray);
}
.news-items-grid .news-item .news-head .news-title {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: clamp(1.1875rem, 2vw, 1.9375rem);
  text-align: left;
  color: var(--clr-dark-gray);
  font-weight: 700;
  margin: 0 0 clamp(5px, 1vw, 10px);
}
.news-items-grid .news-item .news-head .news-title:hover {
  color: var(--clr-third);
}
.news-items-grid .news-item .news-head .news-date {
  display: block;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
  text-align: left;
  color: var(--clr-third);
  font-weight: 700;
}
.news-items-grid .news-item .news-body {
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
  text-align: left;
  color: var(--clr-dark-gray);
  font-weight: 400;
}

/*********** NEWS ITEM PAGE **********/
.news-item-page {
  padding: clamp(35px, 4.5vw, 75px) 0 clamp(35px, 4.5vw, 75px);
}
.news-item-page .page-title h1 {
  text-align: left;
  text-transform: initial;
  font-size: clamp(1rem, 2vw, 1.4375rem);
  font-family: var(--ff-arial);
  color: #000;
}
.news-item-page .page-title .news-date {
  padding: 0 0 clamp(10px, 1vw, 15px);
  display: block;
  color: black;
  font-family: var(--ff-arial);
  margin: 0 0 clamp(15px, 2vw, 25px);
  text-align: left;
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.news-item-page .news-body h2,
.news-item-page .news-body h1 {
  text-align: left;
  color: black;
  font-family: var(--ff-arial);
  font-size: clamp(0.8rem, 1vw, 1rem);
  margin: 50px 0 10px;
}
.news-item-page .news-body p {
  text-align: left;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.3rem, 1.5vw, 1.875rem);
  color: black;
  font-family: var(--ff-arial);
  margin: 0 0 10px;
}
.news-item-page .news-body a {
  text-decoration: underline;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.3rem, 1.5vw, 1.875rem);
  color: black;
  font-family: var(--ff-arial);
}
.news-item-page .news-body li {
  text-align: left;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.3rem, 1.5vw, 1.875rem);
  color: black;
  font-family: var(--ff-arial);
  margin: 0;
}
.news-item-page .news-item-page-image {
  margin: 0 0 clamp(15px, 2vw, 25px);
}
.news-item-page .news-item-page-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.news-item-page-container {
  max-width: 1016px;
  padding: 0 10px;
  margin: 0 auto;
}

/*********** MANUFACTURER ALL PAGE **********/
.manufacturer-list-page {
  background-image: url(../../images/Project/General/BgManuList.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.manufacturer-list-page .global-header-inner h2 {
  color: white;
}

.manufacturer-list-container {
  max-width: 1228px;
}

.manufacturer-grid .item-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(150px, 20%, 180px), 1fr));
  grid-gap: clamp(10px, 2vw, 16px);
}
.manufacturer-grid .manufacturer-item {
  background-color: white;
}
.manufacturer-grid .manufacturer-item .picture a::before {
  padding-top: 100%;
}

.manufacturer-item {
  position: relative;
}
.manufacturer-item .title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--clr-dark-gray);
  z-index: 2;
  padding: clamp(10px, 1vw, 15px) 10px;
}
.manufacturer-item .title a {
  display: block;
  text-align: center;
  color: var(--clr-white);
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
}
.manufacturer-item .picture a {
  display: block;
  position: relative;
}
.manufacturer-item .picture a::before {
  content: "";
  display: block;
  padding-top: 73%;
}
.manufacturer-item .picture img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 60%;
  max-height: 100%;
  margin: auto;
}

/*********** LOGIN PAGE **********/
.login-page-wrapper {
  padding: 0 0 clamp(25px, 3vw, 45px);
}

.login-page-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.login-left {
  background-image: url(../../images/Project/General/BgLogin.jpg);
  flex-basis: 50%;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.login-left img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  display: none;
}

.login-right {
  flex-grow: 1;
  flex-basis: 50%;
}
.login-right .returning-wrapper {
  background-color: #000000;
  padding-block: clamp(40px, 4vw, 68px);
}
.login-right .returning-wrapper .returning-wrapper-inner {
  max-width: 301px;
  padding: 0 10px;
  margin: 0 auto;
}
.login-right .returning-wrapper .page-title {
  padding: 0;
}
.login-right .returning-wrapper .page-title h2 {
  color: white;
}
.login-right .returning-wrapper .form-fields .inputs {
  margin-bottom: 35px;
}
.login-right .returning-wrapper .form-fields .inputs:nth-child(2) {
  margin-bottom: 0;
}
.login-right .returning-wrapper .form-fields .inputs:last-child {
  margin: 0;
  margin-block: 15px;
}
.login-right .returning-wrapper .form-fields label {
  display: none;
}
.login-right .returning-wrapper .form-fields input {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #929292;
  padding-bottom: 0;
  padding-left: 0;
  color: #929292;
  font-family: Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
}
.login-right .returning-wrapper .form-fields input::-moz-placeholder {
  font-family: Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: #929292;
}
.login-right .returning-wrapper .form-fields input::placeholder {
  font-family: Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: #929292;
}
.login-right .returning-wrapper .or-word {
  opacity: 0.79;
  color: #ffffff;
  display: block;
  font-family: var(--ff-arial);
  margin-block: clamp(10px, 1vw, 15px);
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
}
.login-right .returning-wrapper .buttons .login-button {
  width: 100%;
  max-width: unset;
  background-color: white;
  color: #000000;
  border-radius: 0;
  padding-block: 18px;
}
.login-right .returning-wrapper .buttons .login-button.login-like-guest-button {
  position: relative;
  margin: 0;
  background-color: #000000;
  color: white;
  border: 1px solid white;
}
.login-right .new-wrapper {
  background-color: #eeeeee;
  padding-block: clamp(30px, 3vw, 47px);
}
.login-right .new-wrapper .new-wrapper-inner {
  max-width: 504px;
  width: 97%;
  padding: 0 10px;
  margin: 0 auto;
}
.login-right .new-wrapper .new-wrapper-inner .title {
  margin-bottom: clamp(10px, 2vw, 15px);
}
.login-right .new-wrapper .new-wrapper-inner .title h2 {
  font-family: var(--ff-arial);
  color: #000000;
  font-size: clamp(0.8rem, 1vw, 1rem);
}
.login-right .new-wrapper .new-wrapper-inner .text {
  margin: 0 0 clamp(15px, 2vw, 22px);
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
  text-align: center;
  color: var(--clr-dark-gray);
  font-weight: 400;
}
.login-right .new-wrapper .new-wrapper-inner .buttons .button-1 {
  width: 56.81%;
  max-width: unset;
  margin: 0 auto;
  border-radius: 0;
  padding-block: 18px;
}
.login-right .new-wrapper .new-wrapper-inner .buttons .register-button {
  background-color: var(--clr-third);
  color: var(--clr-white);
  border: 1px solid #fff;
}
.login-right .new-wrapper .new-wrapper-inner .buttons .register-button:hover {
  filter: invert(1);
}
.login-right .new-wrapper .new-wrapper-inner .buttons .checkout-as-guest-button {
  background-color: var(--clr-white);
  color: var(--clr-third);
  border: 2px solid var(--clr-primary);
  padding: clamp(7px, 1vw, 11px) 10px;
}
.login-right .new-wrapper .new-wrapper-inner .buttons .checkout-as-guest-button:hover {
  background-color: var(--clr-primary);
}
.login-right .checkout-as-guest-or-register-block {
  background-color: #000;
  padding-block: clamp(40px, 4vw, 68px);
}
.login-right .checkout-as-guest-or-register-block .returning-wrapper-inner {
  max-width: 301px;
}
.login-right .checkout-as-guest-or-register-block .returning-wrapper-inner .button-1 {
  width: 100% !important;
}
.login-right .inputs.reversed label {
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--clr-dark-gray);
  font-weight: 400;
}
.login-right .forgot-password {
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #ffffff;
  opacity: 0.33;
  font-weight: 400;
}

.customer-blocks-grid > div .title {
  margin: 0 0 clamp(35px, 2vw, 45px);
}
.customer-blocks-grid > div .title h2 {
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.5vw, 1.1875rem);
  text-align: center;
  color: var(--clr-dark-gray);
  font-weight: 700;
}

.register-block-text-container {
  max-width: 238px;
  padding: 0 10px;
  margin: 0 auto;
}

.register-block-inner-text {
  flex-basis: 63.3%;
}
.register-block-inner-text p {
  margin: 0;
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--clr-dark-gray);
  font-weight: 400;
}

.register-block-icon {
  flex-basis: 26.7%;
}

.login-page-left-container {
  max-width: 350px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.login-page-right-bg {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/Themes/RDC/Content/images/Project/Customer/login-bg.jpg);
  min-height: clamp(250px, 11vw, 350px);
}

.login-only-wrapper {
  max-width: 60%;
  margin: 0 auto 37px;
}
.login-only-wrapper h2 {
  line-height: 40px;
}

/*********** PASSWORD RECOVERY PAGE **********/
.password-recovery-container {
  max-width: 900px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}
.password-recovery-container .tooltip,
.password-recovery-container .result {
  color: #000;
  margin: 0 0 clamp(35px, 5vw, 75px);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
}
.password-recovery-container .inputs label {
  color: #000;
}
.password-recovery-container .inputs .email {
  border-radius: 0;
}

.password-recover-inputs-container .form-fields .inputs label {
  display: block;
}
.password-recover-inputs-container .buttons .password-recovery-button {
  width: 100%;
  max-width: unset;
  text-transform: uppercase;
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
  letter-spacing: 0;
}

/*********** REGISTRATION PAGES **********/
.registration-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}
.registration-container .result {
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1vw, 1.5625rem);
  font-family: var(--ff-arial);
  color: #000;
  margin-bottom: clamp(30px, 5vw, 80px);
}

.registration-right-wrapper {
  max-width: 304px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.registration-right-inner {
  padding-block: clamp(50px, 6vw, 100px);
}

.registration-right {
  flex-grow: 1;
  background-color: #eeeeee;
  flex-basis: 50%;
}
.registration-right .global-header-wrapper {
  padding: 0;
}
.registration-right .page-title h2,
.registration-right .page-title h1 {
  color: #000;
}

.registration-left {
  background-image: url(../../images/Project/General/registration-image.jpg);
  flex-basis: 50%;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.registration-left img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  display: none;
}

.registration-inputs-container,
.password-recover-inputs-container {
  max-width: 330px;
  margin: 0 auto;
}
.registration-inputs-container .fieldset,
.password-recover-inputs-container .fieldset {
  margin-bottom: 20px;
}
.registration-inputs-container .fieldset .inputs,
.password-recover-inputs-container .fieldset .inputs {
  margin: 0;
  margin-bottom: 35px;
}
.registration-inputs-container .fieldset .inputs:last-child,
.password-recover-inputs-container .fieldset .inputs:last-child {
  margin: 0;
  text-align: left;
}
.registration-inputs-container .fieldset .reversed label,
.password-recover-inputs-container .fieldset .reversed label {
  display: inline-block;
}
.registration-inputs-container .fieldset label,
.password-recover-inputs-container .fieldset label {
  display: none;
}
.registration-inputs-container .fieldset input,
.password-recover-inputs-container .fieldset input {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #929292;
  padding-bottom: 0;
  padding-left: 0;
  color: #929292;
  font-family: Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
}
.registration-inputs-container .fieldset input::-moz-placeholder, .password-recover-inputs-container .fieldset input::-moz-placeholder {
  font-family: Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: #929292;
}
.registration-inputs-container .fieldset input::placeholder,
.password-recover-inputs-container .fieldset input::placeholder {
  font-family: Arial, sans-serif;
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: #929292;
}
.registration-inputs-container .gender span,
.password-recover-inputs-container .gender span {
  display: inline-block;
  margin: 0 5px;
}
.registration-inputs-container .buttons .register-button,
.password-recover-inputs-container .buttons .register-button {
  font-family: var(--ff-arial);
  width: 100%;
  max-width: unset;
  color: white;
}
.registration-inputs-container .buttons .register-button:hover,
.password-recover-inputs-container .buttons .register-button:hover {
  background-color: white;
  color: #000000;
  border: 1px solid black;
}

.date-of-birth-container select {
  flex-basis: 32%;
}

/*********** BLOG PAGE **********/
/*** BLOG GRID PAGE ***/
.columns-two-grid-container .side-2 {
  flex-basis: 15.66%;
}
.columns-two-grid-container .center-2 {
  flex-basis: 82.33%;
}

.blog-post-item {
  padding: 0 0 clamp(35px, 3.5vw, 52px);
  margin: 0 0 clamp(32px, 3.5vw, 50px);
  border-bottom: 2px solid var(--clr-primary);
}
.blog-post-item .blog-post-item-container .blog-post-left {
  flex-basis: 29%;
}
.blog-post-item .blog-post-item-container .blog-post-right {
  flex-basis: 67.2%;
}
.blog-post-item .blog-post-item-container .blog-item-image {
  max-width: 290px;
  margin: 0 0 15px;
}
.blog-post-item .blog-post-item-container .blog-item-image a {
  display: block;
  position: relative;
}
.blog-post-item .blog-post-item-container .blog-item-image a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog-post-item .blog-post-item-container .blog-item-image a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}
.blog-post-item .blog-post-item-container .post-date-wrap {
  text-align: left;
  margin: 0 0 clamp(19px, 1.5vw, 29px);
}
.blog-post-item .blog-post-item-container .post-date-wrap .post-date {
  font-family: "Arial", sans-serif;
  color: var(--clr-primary);
  font-weight: 400;
  font-size: clamp(0.7025rem, 1vw, 0.88875rem);
  line-height: clamp(0.9375rem, 1.4vw, 1.125rem);
}
.blog-post-item .blog-post-item-container .post-head {
  margin: 0 0 clamp(15px, 3vw, 35px);
}
.blog-post-item .blog-post-item-container .post-head .post-title {
  text-align: left;
  color: var(--clr-dark-gray);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.601875rem);
  line-height: clamp(1.6875rem, 3vw, 2.125rem);
}
.blog-post-item .blog-post-item-container .post-head .post-title a:hover {
  color: var(--clr-primary);
}
.blog-post-item .blog-post-item-container .post-body {
  font-family: "Arial", sans-serif;
  font-size: clamp(0.79rem, 1vw, 1rem);
  line-height: clamp(0.8125rem, 1.1vw, 1.0625rem);
  color: var(--clr-dark-gray);
  font-weight: 400;
  text-align: left;
  margin: 0 0 clamp(15px, 3vw, 45px);
}
.blog-post-item .blog-post-item-container .blog-post-right-container {
  height: 100%;
}
.blog-post-item .blog-post-item-container .blog-details .buttons {
  text-align: left;
}
.blog-post-item .blog-post-item-container .blog-details .buttons .read-more {
  display: block;
  max-width: 248px;
  background-color: #f8f8f8;
  color: var(--clr-primary);
  text-align: center;
  padding: clamp(10px, 1vw, 12px) 10px;
  border: 1px solid #d1cccc;
  font-size: clamp(0.79rem, 1vw, 0.88875rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  letter-spacing: 2.13px;
  font-weight: 700;
}
.blog-post-item .blog-post-item-container .blog-details .buttons .read-more:hover, .blog-post-item .blog-post-item-container .blog-details .buttons .read-more:focus {
  border-color: var(--clr-primary);
}

.block-blog-archive .title {
  margin: 0 0 clamp(20px, 2.5vw, 39px);
  position: relative;
  padding-bottom: 10px;
  text-transform: none;
}
.block-blog-archive .title::after {
  content: "";
  display: block;
  position: absolute;
  width: clamp(19px, 2vw, 29px);
  height: 4px;
  background-color: var(--clr-primary);
  bottom: 0;
  left: 0;
  text-align: left;
}
.block-blog-archive .title .ui-accordion-header-icon {
  display: none;
}
.block-blog-archive .title strong {
  color: var(--clr-primary);
  letter-spacing: 2.13px;
  font-weight: 700;
  font-size: clamp(0.79rem, 1vw, 0.88875rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  text-transform: none;
}
.block-blog-archive .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 11px;
  transform: rotate(0) translateY(-50%);
  transform-origin: 5px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/Themes/RDC/Content/images/Project/Category/cevron-bottom-pink.svg);
  transition: all 0.3s ease-in-out;
}
.block-blog-archive .title.ui-state-active::before {
  transform: rotate(180deg) translateY(-50%);
}
.block-blog-archive .list li {
  font-family: "Arial", sans-serif;
}
.block-blog-archive .list li.year strong {
  display: block;
  color: var(--clr-dark-gray);
  font-size: clamp(0.79rem, 1vw, 0.88875rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  letter-spacing: 1.42px;
  font-weight: 700;
  margin: 0 0 clamp(10px, 1vw, 14px);
}
.block-blog-archive .list li.year .sublist {
  padding: clamp(10px, 1vw, 15px) 5px;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
}
.block-blog-archive .list li.year .sublist li.month a {
  color: var(--clr-dark-gray);
  font-size: clamp(0.7025rem, 1vw, 0.79rem);
  line-height: clamp(0.75rem, 1vw, 0.8125rem);
}

/*** END BLOG GRID PAGE ***/
/*** BLOG POST PAGE ***/
.blogpost-page .post-date {
  text-align: left;
  margin: 0 0 clamp(15px, 2vw, 30px);
}
.blogpost-page .post-date span {
  font-family: "Arial", sans-serif;
  color: var(--clr-primary);
  font-weight: 400;
  font-size: clamp(0.7025rem, 1vw, 0.88875rem);
  line-height: clamp(0.9375rem, 1.4vw, 1.125rem);
}
.blogpost-page .blogpost-page-title {
  margin: 0 0 clamp(25px, 3.5vw, 45px);
}
.blogpost-page .blogpost-page-title h1 {
  color: var(--clr-dark-gray);
  text-align: left;
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.601875rem);
  line-height: clamp(1.6875rem, 3.5vw, 2.125rem);
}
.blogpost-page .blogpost-image {
  margin: 0 0 clamp(25px, 3.5vw, 53px);
}
.blogpost-page .blogpost-image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  min-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.blogpost-page .post-body p {
  text-align: left;
  margin: 0 0 clamp(15px, 2vw, 30px);
  color: var(--clr-dark-gray);
  font-weight: 400;
  font-size: clamp(0.88875rem, 1vw, 1rem);
  line-height: clamp(1.38875rem, 1.5vw, 1.5rem);
}

/*** END BLOG POST PAGE ***/
/*********** PRODUCT PAGES **********/
.product-essential {
  padding: clamp(30px, 5vw, 65px) 0 0 0;
}

.product-essential-container {
  margin: 0 auto clamp(20px, 3.5vw, 41px);
  max-width: 1426px;
  padding-inline: 10px;
  margin: 0 auto;
  width: 97%;
}

.product-essential-grid .overview {
  flex-basis: 55%;
}
.product-essential-grid .overview .product-name-wrapper {
  margin: 0 0 clamp(15px, 2vw, 25px);
}
.product-essential-grid .overview .product-name-wrapper .product-name {
  margin: 0 0 6px;
}
.product-essential-grid .overview .product-name-wrapper .product-name h1 {
  text-align: left;
  color: var(--clr-third);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 700;
}
.product-essential-grid .overview .product-name-wrapper .product-specifications-top-grid span {
  display: inline-block;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--clr-dark-gray);
  position: relative;
}
.product-essential-grid .overview .product-name-wrapper .product-specifications-top-grid span:first-child {
  margin: 0 clamp(15px, 1.5vw, 20px) 0 0;
}
.product-essential-grid .overview .product-name-wrapper .product-specifications-top-grid span:first-child::after {
  content: "|";
  display: block;
  position: absolute;
  color: var(--clr-dark-gray);
  font-weight: 400;
  top: 50%;
  right: clamp(-15px, -1vw, -11px);
  transform: translateY(-50%);
}
.product-essential-grid .overview .short-description {
  text-align: left;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--clr-dark-gray);
  margin: 0 0 clamp(25px, 4vw, 52px);
}
.product-essential-grid .overview .prices {
  margin: 0 0 clamp(15px, 2.4vw, 35px);
}
.product-essential-grid .overview .prices .prices-grid .product-price, .product-essential-grid .overview .prices .prices-grid .non-discounted-price {
  color: var(--clr-third);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
}
.product-essential-grid .overview .prices .prices-grid .old-product-price {
  color: #b0b1b2;
  text-decoration: line-through;
  font-weight: 400;
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  display: inline-block;
  margin: 0 0 0 clamp(6px, 1vw, 12px);
}
.product-essential-grid .overview .overview-buttons {
  max-width: 429px;
}
.product-essential-grid .overview .overview-buttons .add-to-cart {
  width: calc(100% - clamp(27px, 2.5vw, 35px));
}
.product-essential-grid .overview .overview-buttons .add-to-cart .add-to-cart-grid {
  width: 100%;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .add-to-cart-grid .add-to-cart-panel {
  width: 100%;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .add-to-cart-button {
  background-color: var(--clr-primary);
  color: var(--clr-third);
  border-radius: 4px;
  padding: clamp(8px, 1vw, 13px) 10px;
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 700;
  border: 0;
  text-transform: uppercase;
  display: block;
  flex-basis: 60.08%;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .add-to-cart-button:hover {
  opacity: 0.6;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner {
  flex-basis: 35%;
  min-width: 127px;
  margin: 0 clamp(10px, 2vw, 25px) 0 0;
  display: flex;
  border: 0;
  border-bottom: 2px solid #727580;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner > * {
  width: 33.33%;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner .ui-spinner-button {
  position: static;
  background: none;
  background-color: #d6d6d6;
  height: 100%;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  transition: all 0.3s ease-in-out;
  border: 0;
  cursor: pointer;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner .ui-spinner-button:hover {
  opacity: 0.6;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner .ui-spinner-button .ui-button-text {
  display: none;
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner .ui-spinner-button.ui-spinner-up {
  order: 2;
  background-image: url(/Themes/RDC/Content/images/Project/Product/input-plus-icon.svg);
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner .ui-spinner-button.ui-spinner-down {
  order: -1;
  background-image: url(/Themes/RDC/Content/images/Project/Product/input-minus-icon.svg);
}
.product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner .ui-spinner-input {
  margin: 0;
  text-align: center;
  background-color: #efefef;
  color: var(--clr-dark-gray);
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1vw, 1.5rem);
  font-weight: 400;
}
.product-essential-grid .overview .overview-buttons .add-to-wishlist {
  margin: 0 0 0 clamp(10px, 2vw, 26px);
}
.product-essential-grid .overview .overview-buttons .add-to-wishlist .add-to-wishlist-button {
  width: clamp(27px, 2.5vw, 35px);
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: clamp(18px, 2vw, 27px);
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-icon.svg);
  font-size: 0;
  border: 0;
  background-color: transparent;
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
}
.product-essential-grid .overview .overview-buttons .add-to-wishlist .add-to-wishlist-button:hover {
  transform: scale(1.05);
}
.product-essential-grid .gallery {
  flex-basis: 42.29%;
}
.product-essential-grid .gallery .picture {
  position: relative;
}
.product-essential-grid .gallery .picture::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-essential-grid .gallery .picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.video-description-wrapper {
  padding: clamp(40px, 5vw, 85px) 0 clamp(30px, 4vw, 55px);
}

.video-description-container {
  max-width: 656px;
  margin: 0 auto;
  width: 97%;
}

.video-description iframe {
  display: block;
  height: clamp(250px, 22vw, 415px);
}

.html-product-details-page-with-attributes .product-essential-grid .overview .overview-buttons .add-to-cart .ui-spinner {
  display: none;
}
.html-product-details-page-with-attributes .product-essential-grid .overview .overview-buttons .add-to-cart .add-to-cart-button {
  flex-basis: 100%;
}
.html-product-details-page-with-attributes .attributes {
  margin: 0 clamp(10px, 1.5vw, 23px) 0 0;
}
.html-product-details-page-with-attributes .attributes dl dt {
  display: none;
}
.html-product-details-page-with-attributes .attributes dl select {
  background-color: #c9c9cb;
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  text-align: left;
  color: var(--clr-white);
  font-weight: 700;
  height: clamp(29px, 3.5vw, 41px);
  border: 0;
  border-radius: 4px;
}

.product-collateral {
  position: relative;
  padding: 0 0 clamp(45px, 5vw, 65px);
}
.product-collateral .full-description-wrapper {
  margin: clamp(30px, 4.5vw, 79px) 0 0;
}
.product-collateral .full-description-wrapper .full-description ul {
  padding-left: 15px;
}
.product-collateral .full-description-wrapper .full-description p,
.product-collateral .full-description-wrapper .full-description li {
  text-align: left;
  font-weight: 400;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--clr-dark-gray);
}
.product-collateral .product-specs-box .table-wrapper .data-table tr {
  border-bottom: 1px solid #e9e9e9;
}
.product-collateral .product-specs-box .table-wrapper .data-table td {
  text-align: left;
  color: var(--clr-dark-gray);
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
  border-bottom: 0;
}
.product-collateral .product-specs-box .table-wrapper .data-table td.spec-name {
  width: 35%;
  font-weight: 700;
}
.product-collateral .product-specs-box .table-wrapper .data-table td.spec-value {
  width: 65%;
  font-weight: 400;
}
.product-collateral .product-collateral-inner {
  max-height: clamp(150px, 40vh, 240px);
  overflow: hidden;
  position: relative;
  transition: all 0.6s ease-in-out;
}
.product-collateral .product-collateral-inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: clamp(125px, 15vw, 200px);
  background: rgb(248, 248, 248);
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 0.7427345938) 50%, rgb(248, 248, 248) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f8f8f8", endColorstr="#f8f8f8", GradientType=1);
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 1;
  transition: all 0.1s ease-in-out;
}
.product-collateral .product-collateral-inner.open {
  max-height: 2000px;
}
.product-collateral .product-collateral-inner.open::before {
  opacity: 0;
  z-index: -1;
}
.product-collateral .product-collateral-button {
  position: absolute;
  right: 0;
  bottom: 70px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.product-collateral .product-collateral-button .product-collateral-btn {
  display: block;
  max-width: 180px;
  padding: clamp(9px, 1vw, 13px) 10px;
  margin: 0 auto;
  width: 80%;
  border: 1px solid var(--clr-primary);
  background-color: #f8f8f8;
  border-radius: 4px;
  color: var(--clr-third);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.product-collateral .product-collateral-button .product-collateral-btn span.show-more {
  display: block;
}
.product-collateral .product-collateral-button .product-collateral-btn span.show-less {
  display: none;
}
.product-collateral .product-collateral-button .product-collateral-btn:hover {
  background-color: var(--clr-primary);
  opacity: 0.6;
}
.product-collateral .product-collateral-button .product-collateral-btn.active span.show-more {
  display: none;
}
.product-collateral .product-collateral-button .product-collateral-btn.active span.show-less {
  display: block;
}
.product-collateral .product-collateral-button.active {
  bottom: 0;
}

.product-small-title {
  margin: 0 0 clamp(10px, 1vw, 16px);
}
.product-small-title h2 {
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--clr-dark-gray);
  font-weight: 700;
  text-transform: uppercase;
}

.html-product-details-page .columns-container {
  max-width: 1095px;
}
.html-product-details-page .columns-grid .side-2 {
  flex-basis: 22.51%;
}
.html-product-details-page .columns-grid .center-2 {
  flex-basis: 72.65%;
}

/*********** PRODUCT PAGES **********/
.product-details-page {
  padding: clamp(30px, 6vw, 90px) 0 0;
}
.product-details-page .table-wrapper {
  width: 50%;
}
.product-details-page .product-specs-box {
  padding: 10px;
}
.product-details-page .product-specs-box table thead {
  display: none;
}
.product-details-page .product-specs-box table tbody tr {
  border-bottom: 1px solid #e4e4e4;
}
.product-details-page .product-specs-box table tbody tr td {
  text-align: left;
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
  line-height: clamp(1.3125rem, 1.5vw, 1.5625rem);
  background-color: #fff;
  height: 50px;
  font-weight: 500;
  color: #000;
}
.product-details-page .product-specs-box table tbody tr .spec-name {
  width: 50%;
}
.product-details-page .product-specs-box table tbody tr .spec-value {
  width: 50%;
}

.product-details-container {
  max-width: 1530px;
  background-color: #eeeeee;
}
.product-details-container .page-body {
  padding-block: 65px 0 0 0;
}

.product-essential-top-grid {
  padding: 0 0 clamp(20px, 3.5vw, 45px);
  margin: 0 0 clamp(20px, 3.5vw, 45px);
  gap: 36px;
}
.product-essential-top-grid .gallery-wrapper {
  position: relative;
  overflow: hidden;
}
.product-essential-top-grid .gallery-wrapper .add-to-wishlist {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.product-essential-top-grid .gallery-wrapper .add-to-wishlist .add-to-wishlist-button {
  width: clamp(16px, 1.5vw, 23px);
  height: clamp(14px, 1.5vw, 21px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-icon.svg);
  font-size: 0;
  background-color: transparent;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.product-essential-top-grid .gallery-wrapper .add-to-wishlist .add-to-wishlist-button:hover {
  transform: scale(1.2);
}
.product-essential-top-grid .gallery-wrapper .add-to-wishlist .add-to-wishlist-button.active {
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-active-icon.svg);
}
.product-essential-top-grid .gallery-wrapper.active .add-to-wishlist .add-to-wishlist-button {
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-active-icon.svg);
}
.product-essential-top-grid .gallery-wrapper .gallery .picture {
  flex-basis: 81.68%;
}
.product-essential-top-grid .gallery-wrapper .gallery .picture a {
  display: block;
  position: relative;
  background-color: #fff;
}
.product-essential-top-grid .gallery-wrapper .gallery .picture a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-essential-top-grid .gallery-wrapper .gallery .picture a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs-wrapper {
  flex-basis: 18.42%;
  overflow: hidden;
  order: -1;
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs-carousel {
  width: 550px;
  transform: rotate(90deg);
  overflow: hidden;
  margin-top: 215px;
  margin-left: -217px;
  padding: 0 clamp(25px, 5vw, 65px);
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs .owl-prev,
.product-essential-top-grid .gallery-wrapper .picture-thumbs .owl-next {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: 12px;
  z-index: 2;
  width: clamp(12px, 2vw, 24px);
  filter: invert(1);
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs .owl-prev {
  left: 92%;
  width: 36px;
  height: 36px;
  top: 37%;
  transform: rotate(180deg);
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs .owl-next {
  width: 36px;
  height: 36px;
  right: 92%;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs .thumb-item {
  position: relative;
  display: block;
  cursor: pointer;
  transform: rotate(-90deg);
  width: 113px;
  height: 113px;
  margin: auto;
}
.product-essential-top-grid .gallery-wrapper .picture-thumbs .thumb-item img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-essential-top-grid .overview .product-name {
  margin: 0 0 clamp(15px, 2.5vw, 25px);
}
.product-essential-top-grid .overview .product-name h1 {
  text-align: left;
  font-weight: 700;
  color: #000000;
  font-size: clamp(1.25rem, 1.5vw, 1.44rem);
  line-height: clamp(1.25rem, 2vw, 1.5625rem);
}
.product-essential-top-grid .overview .short-description {
  text-align: left;
  font-weight: 400;
  font-size: clamp(0.6875rem, 1vw, 0.83125rem);
  line-height: clamp(1.29rem, 1.5vw, 1.5625rem);
  color: #000000;
  margin: 0 0 clamp(50px, 6vw, 110px);
}
.product-essential-top-grid .overview .additional-details .label,
.product-essential-top-grid .overview .availability .label {
  width: 200px;
  max-width: 200px;
  text-align: left;
  font-weight: 500;
}
.product-essential-top-grid .overview .additional-details .value,
.product-essential-top-grid .overview .availability .value {
  flex-grow: 1;
  text-align: left;
  font-weight: 500;
}
.product-essential-top-grid .overview .additional-details .additional-details-item-wrapper,
.product-essential-top-grid .overview .availability .additional-details-item-wrapper {
  padding: 8px 22px;
  background-color: #ffffff;
  margin-bottom: 5px;
}
.product-essential-top-grid .overview .additional-details .additional-details-item-inner,
.product-essential-top-grid .overview .availability .additional-details-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-essential-top-grid .overview .additional-details .additional-details-item-inner .label,
.product-essential-top-grid .overview .availability .additional-details-item-inner .label {
  width: 200px;
  max-width: 200px;
  text-align: left;
  font-weight: 500;
  flex-basis: 60%;
}
.product-essential-top-grid .overview .additional-details .additional-details-item-inner .value,
.product-essential-top-grid .overview .availability .additional-details-item-inner .value {
  flex-grow: 1;
  text-align: left;
  font-weight: 500;
  flex-basis: 40%;
}
.product-essential-top-grid .overview .additional-details .product-page-manufacturer-wrapper .product-page-manufacturer-inner .value img,
.product-essential-top-grid .overview .availability .product-page-manufacturer-wrapper .product-page-manufacturer-inner .value img {
  display: block;
  max-width: 15%;
}
.product-essential-top-grid .overview .additional-details .sku span,
.product-essential-top-grid .overview .availability .sku span {
  font-size: clamp(0.79rem, 1vw, 1rem);
  line-height: clamp(1.0625rem, 1.5vw, 1.5625rem);
  color: #000000;
}
.product-essential-top-grid .overview .additional-details .sku span.label,
.product-essential-top-grid .overview .availability .sku span.label {
  font-weight: 500;
}
.product-essential-top-grid .overview .availability {
  padding: 0 0 clamp(10px, 1vw, 12px);
  margin: 0 0 clamp(10px, 1vw, 12px);
  text-align: left;
}
.product-essential-top-grid .overview .availability span {
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5625rem);
}
.product-essential-top-grid .overview .availability span.green-value {
  color: #5e9401;
}
.product-essential-top-grid .overview .availability span.red-value {
  color: #ff0000;
}
.product-essential-top-grid .overview .prices {
  margin: clamp(10px, 2vw, 30px) 0 clamp(10px, 2vw, 26px);
}
.product-essential-top-grid .overview .prices .prices-container {
  justify-content: initial;
}
.product-essential-top-grid .overview .prices .product-price, .product-essential-top-grid .overview .prices .non-discounted-price {
  color: #000000;
  display: inline-block;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.5vw, 2.07375rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5625rem);
}
.product-essential-top-grid .overview .prices .non-discounted-price {
  text-decoration: line-through;
  margin-left: clamp(10px, 1vw, 15px);
}
.product-essential-top-grid .overview .prices .old-product-price {
  display: inline-block;
  margin: 0 0 0 clamp(15px, 2vw, 30px);
  color: #929292;
  font-weight: 500;
  text-decoration: line-through;
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: clamp(1.25rem, 1vw, 1.5625rem);
}
.product-essential-top-grid .overview .product-buttons-container {
  gap: 10px;
}
.product-essential-top-grid .overview .add-to-cart {
  max-width: 554px;
  flex-basis: 90%;
}
.product-essential-top-grid .overview .compare-products {
  flex-basis: calc(10% - 10px);
}
.product-essential-top-grid .overview .compare-products .add-to-compare-list-button {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/compare-icon.svg);
  font-size: 0;
  border: 0;
  background-color: #929292;
  font-size: 0;
}
.product-essential-top-grid .overview .compare-products .add-to-compare-list-button.active {
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/compare-icon-active.svg);
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
}
.product-essential-top-grid .overview .add-to-cart-panel {
  gap: 10px;
}
.product-essential-top-grid .overview .add-to-cart-panel .add-to-cart-button {
  flex-basis: 66.67%;
  height: 52px;
  border: 0;
  background-color: #000;
  color: #fff;
  font-size: clamp(0.8125rem, 1vw, 1.2rem);
  line-height: 1.5625rem;
  text-align: center;
  font-weight: 700;
  padding-inline: 10px;
}
.product-essential-top-grid .overview .add-to-cart-panel .add-to-cart-button:hover {
  color: #000;
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner {
  display: flex;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner.ui-widget.ui-widget-content {
  max-width: 156px;
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner .ui-spinner-button {
  position: absolute !important;
  width: 52px;
  height: 52px;
  background: #000000 !important;
  background-color: #000000 !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner .ui-spinner-button .ui-icon {
  display: none;
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner .ui-spinner-up {
  order: 2;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/plus-addto.svg) !important;
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner .qty-input {
  margin: 0 !important;
  order: 1;
  height: 52px;
  border: 0 !important;
  text-align: center;
  font-size: clamp(1.5625rem, 4vw, 2.07375rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5625rem);
  color: #000000;
  background-color: #fff;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.product-essential-top-grid .overview .add-to-cart-panel .ui-spinner .ui-spinner-down {
  order: -1;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/minus-addto.svg) !important;
}
.product-essential-top-grid .overview .add-to-wishlist .add-to-wishlist-button {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/addtowishlist-icon.svg);
  font-size: 0;
  border: 0;
  background-color: #929292;
}
.product-essential-top-grid .overview .add-to-wishlist .add-to-wishlist-button.active {
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/addtowishlist-icon-active.svg);
}

.productTabs .productTabs-body .full-description p,
.productTabs .productTabs-body .custom-tab p {
  font-family: "Arial", sans-serif;
  color: var(--clr-dark-gray);
  text-align: left;
  font-size: clamp(0.79rem, 1vw, 1rem);
  line-height: clamp(1.29rem, 1.5vw, 1.5rem);
  font-weight: 400;
}

/*** SIMPLE PRODUCT STYLES ***/
.product-details-simple-page .attributes dl {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e4e4e4;
  margin: 0 0 15px;
}
.product-details-simple-page .attributes dl dt {
  margin: 0 10px 0 0;
}

.related-products-grid-wrapper,
.crossell-products-grid {
  padding: clamp(45px, 9vw, 120px) 10px;
}

.related-products-grid-container,
.crossell-products-grid-container {
  max-width: 1610px;
  padding: 0 50px;
  margin: 0 auto;
}
.related-products-grid-container .owl-related-products .owl-item,
.crossell-products-grid-container .owl-related-products .owl-item {
  padding: 12px 8px;
}

.also-purchased-products-grid {
  max-width: 1610px;
  margin: 0 auto;
}
.also-purchased-products-grid .owl-also-purchased-products .owl-item {
  padding: 12px 8px;
}

#tabs {
  padding: clamp(20px, 3.5vw, 45px) 0 0;
  margin: clamp(20px, 3.5vw, 45px) 0 0;
  border: 0;
  display: block;
  max-width: none;
}
#tabs .ui-tabs-nav {
  display: grid;
  border: 0;
  border-radius: 0;
  grid-template-columns: repeat(2, 1fr);
}
#tabs .ui-tabs-nav.ui-helper-clearfix:before {
  display: none;
}
#tabs .ui-tabs-nav li {
  border: 0 !important;
}
#tabs .ui-tabs-nav li a {
  display: block;
  float: none;
  color: #fff;
  background-color: #929292;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw, 1.2rem);
  line-height: clamp(1.29rem, 1.5vw, 1.5625rem);
  padding: clamp(10px, 1vw, 12px) 10px !important;
}
#tabs .ui-tabs-nav li.ui-state-active a, #tabs .ui-tabs-nav li:hover a {
  background-color: #000 !important;
  color: #fff;
}
#tabs .ui-tabs-panel {
  background-color: #fff;
}
#tabs .full-description {
  width: 50%;
  padding: 30px;
  margin-right: auto;
}
#tabs .full-description > div {
  text-align: left;
}
#tabs .full-description ul {
  padding-left: 15px;
}
#tabs .full-description ul li {
  margin-bottom: 0px;
  color: #000;
  text-align: left;
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
  line-height: clamp(1.375rem, 1.5vw, 1.5625rem);
  font-weight: 500;
}
#tabs .full-description p {
  margin-bottom: 0;
  color: #000;
  text-align: left;
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
  line-height: clamp(1.375rem, 1.5vw, 1.5625rem);
  font-weight: 500;
}
#tabs .full-description h1,
#tabs .full-description h2,
#tabs .full-description h3,
#tabs .full-description span,
#tabs .full-description a {
  color: #000;
  text-align: left;
  font-size: clamp(0.6875rem, 1vw, 0.833125rem);
  line-height: clamp(1.375rem, 1.5vw, 1.5625rem);
  font-weight: 500;
  margin-bottom: 5px;
}

.owl-carousel.disabled .owl-next,
.owl-carousel.disabled .owl-prev {
  display: none;
}

/*** END SIMPLE PRODUCT STYLES ***/
/*** GROUPED PRODUCT STYLES ***/
.product-variant-list-wrapper {
  padding: clamp(25px, 3.5vw, 45px) 0 clamp(40px, 5vw, 75px);
  margin: 0 0 clamp(25px, 3.5vw, 45px);
  border-bottom: 2px dashed #efe4e9;
}

.product-variant-grid {
  grid-template-columns: repeat(auto-fill, minmax(clamp(160px, 9vw, 180px), 1fr));
  grid-gap: clamp(8px, 1vw, 16px);
}
.product-variant-grid .item-box {
  padding: 0;
}
.product-variant-grid .item-box .picture {
  position: relative;
}
.product-variant-grid .item-box .picture a::before {
  padding-top: 37.42%;
}
.product-variant-grid .item-box .picture a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-variant-grid .item-box .picture .add-to-wishlist-button {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 19px;
  height: 19px;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-icon.svg);
  font-size: 0;
  z-index: 9999;
}
.product-variant-grid .item-box .picture .add-to-wishlist-button.active {
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-active-icon.svg);
}
.product-variant-grid .item-box .picture.active .add-to-wishlist-button {
  background-image: url(/Themes/RDC/Content/images/Project/Category/wishlist-active-icon.svg);
}
.product-variant-grid .item-box .details {
  padding: 0 clamp(10px, 1.5vw, 21px) clamp(10px, 1.5vw, 21px);
}
.product-variant-grid .item-box .details .product-title {
  margin: 0 0 clamp(5px, 0.5vw, 9px);
}
.product-variant-grid .item-box .details .product-title a {
  font-size: 0.7025rem;
  line-height: 1rem;
  text-align: center;
  font-weight: 700;
  display: block;
}
.product-variant-grid .item-box .details .sku {
  padding: clamp(4px, 0.5vw, 6px) 0;
}
.product-variant-grid .item-box .details .sku span {
  font-size: 0.7025rem;
  line-height: 0.9375rem;
}
.product-variant-grid .item-box .details .availability {
  padding: clamp(4px, 0.5vw, 6px) 0;
}
.product-variant-grid .item-box .details .availability span {
  font-size: 0.7025rem;
  line-height: 0.9375rem;
}
.product-variant-grid .item-box .details .add-info .prices {
  max-width: 140px;
  margin: 0 auto clamp(8px, 1vw, 13px);
}
.product-variant-grid .item-box .details .add-info .prices > .prices-container > * {
  display: inline-block;
}
.product-variant-grid .item-box .details .add-info .prices .old-product-price {
  letter-spacing: 1.12px;
  text-decoration: line-through;
  color: var(--clr-dark-gray);
  font-size: 0.7025rem;
  line-height: 0.9375rem;
  margin-left: clamp(5px, 1vw, 10px);
}
.product-variant-grid .item-box .details .add-info .prices .product-price {
  color: var(--clr-primary);
  font-weight: 700;
  font-size: clamp(0.79rem, 1.2vw, 1.125rem);
  line-height: clamp(1.0625rem, 1.5vw, 1.5rem);
}
.product-variant-grid .item-box .details .add-to-cart {
  max-width: 135px;
  margin: 0 auto;
}
.product-variant-grid .item-box .details .buttons .ui-spinner {
  flex-basis: 49%;
  display: flex;
  border: 0 !important;
  border-radius: 0 !important;
}
.product-variant-grid .item-box .details .buttons .ui-spinner .ui-spinner-button {
  position: static !important;
  width: 20px;
  height: 32px;
  background: none !important;
  background-color: #f1f1f1 !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  background-size: 8px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.product-variant-grid .item-box .details .buttons .ui-spinner .ui-spinner-button .ui-icon {
  display: none;
}
.product-variant-grid .item-box .details .buttons .ui-spinner .ui-spinner-up {
  order: 2;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/black-plus-icon.svg) !important;
}
.product-variant-grid .item-box .details .buttons .ui-spinner .qty-input {
  margin: 0 !important;
  order: 1;
  height: 32px;
  width: clamp(20px, 1.5vw, 25px);
  max-width: 25px;
  border: 0 !important;
  text-align: center;
  font-size: clamp(0.79rem, 1vw, 1rem);
  line-height: clamp(1.29rem, 1.5vw, 1.5rem);
  color: var(--clr-dark-gray);
}
.product-variant-grid .item-box .details .buttons .ui-spinner .ui-spinner-down {
  order: -1;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/black-minus-icon.svg) !important;
}
.product-variant-grid .item-box .details .buttons .add-to-cart-button {
  margin: 0 0 0 5px;
  flex-basis: 49%;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  text-align: center;
  font-weight: 700;
  height: 32px;
  font-size: 0.7025rem;
  line-height: 0.9375rem;
  letter-spacing: 1.12px;
  display: block;
  border: 0;
  width: clamp(55px, 4vw, 69px);
}
.product-variant-grid .item-box .details .buttons .add-to-cart-button:hover {
  background-color: var(--clr-gray);
  color: var(--clr-primary);
}

/*** END GROUPED PRODUCT STYLES ***/
/*** SET PRODUCT STYLES ***/
.product-set-table-wrapper {
  margin: 0 0 clamp(35px, 4vw, 65px);
  padding: 0 0 15px;
  border-bottom: 2px solid var(--clr-primary);
}

.product-set thead {
  display: none;
}
.product-set thead tr {
  border-top: 2px solid var(--clr-primary);
  border-bottom: 2px solid var(--clr-primary);
}
.product-set thead tr th {
  font-family: "Zona Pro", sans-serif;
  padding: clamp(9px, 1vw, 15px) 10px;
  color: var(--clr-primary);
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.7025rem, 1vw, 0.79rem);
  line-height: clamp(0.9375rem, 1.2vw, 1.0625rem);
  text-transform: uppercase;
}
.product-set thead tr th.set-productimage-head {
  font-size: 0;
}
.product-set tbody tr td {
  font-family: "Zona Pro", sans-serif;
  font-size: clamp(0.7025rem, 1vw, 0.79rem);
  line-height: clamp(0.9375rem, 1.2vw, 1.0625rem);
  text-align: center;
  font-weight: 400;
  padding: clamp(10px, 3vw, 34px) 10px;
}
.product-set tbody tr td.set-product {
  text-align: left;
  font-weight: 700;
  color: var(--clr-primary);
  max-width: 280px;
  width: 30%;
}
.product-set tbody tr td.set-productimage img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #e4e4e4;
}

/*** END SET PRODUCT STYLES ***/
/*** COMPARE PRODUCTS STYLES ***/
.compare-purchased-header-inner h2 {
  color: #000;
}

.compare-products-wrapper .page-body {
  padding-inline: clamp(50px, 6vw, 100px);
}

.compare-products-table {
  min-width: 650px;
}
.compare-products-table td:first-child {
  font-weight: 700;
  text-align: left;
}
.compare-products-table td {
  padding: clamp(5px, 1vw, 10px);
  border: 2px solid var(--clr-light-gray);
}
.compare-products-table td .compare-picture {
  position: relative;
}
.compare-products-table td .compare-picture .remove-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
  border: 0;
  background-color: transparent;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/bin-icon.svg);
}
.compare-products-table td .compare-picture a {
  display: block;
}
.compare-products-table td .compare-picture a img {
  display: block;
  max-width: 50%;
  height: auto;
}

.clear-comparelist-button {
  margin: 0 0 clamp(35px, 4vw, 65px);
}
.clear-comparelist-button .clear-comparelist-btn {
  max-width: 250px;
  margin: 0 auto;
  text-transform: uppercase;
  border-radius: 0;
  font-size: clamp(0.8125rem, 1vw, 1rem);
}

/*** END COMPARE PRODUCTS STYLES ***/
/*** homepage-banner-topic ***/
.homepage-banner-wrapper {
  background-image: url(../../images/Project/General/BgHomepageBanner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 110px;
}
.homepage-banner-wrapper .homepage-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  width: 97%;
}

.homepage-banner-content-wrapper {
  padding-top: 27px;
  text-align: left;
  max-width: 590px;
  width: 85%;
}

.homepage-banner-image-wrapper {
  text-align: left;
}

.homepage-banner-content-header {
  padding-bottom: 20px;
}
.homepage-banner-content-header h2 {
  font-family: var(--ff-arial);
  font-size: clamp(1.25rem, 2vw, 2.0625rem);
  color: white;
}

.homepage-banner-content-paragraph {
  padding-bottom: 27px;
}
.homepage-banner-content-paragraph p {
  margin: 0;
  font-family: var(--ff-arial);
  font-size: clamp(0.8125rem, 1.5vw, 1.4375rem);
  color: white;
  font-weight: 400;
  text-align: left;
}

.homepage-banner-content-link {
  max-width: 250px;
  padding: 16px;
  background-color: white;
  text-align: center;
}
.homepage-banner-content-link a {
  font-family: var(--ff-arial);
  font-size: clamp(0.8125rem, 1vw, 1.1875rem);
  color: black;
  font-weight: bold;
}

/*** END homepage-banner-topic ***/
/*** related-products-product-page ***/
.related-products .related-products-grid-wrapper {
  background-image: url(../../images/Project/Product/related-product-page.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.related-products .owl-next,
.related-products .owl-prev {
  background-color: #fff;
  background-image: url(/Themes/RDC/Content/images/Project/General/arrow-black.svg);
}

/*** END related-products-product-page ***/
/*** also-purchased-products-product-page ***/
.also-purchased .also-purchased-products-wrapper,
.also-purchased .crossell-products-grid,
.cross-sell-products .also-purchased-products-wrapper,
.cross-sell-products .crossell-products-grid {
  background-image: url(../../images/Project/Product/also-purchased.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.also-purchased .also-purchased-header-inner h2,
.also-purchased .crossell-products-grid-container h2,
.cross-sell-products .also-purchased-header-inner h2,
.cross-sell-products .crossell-products-grid-container h2 {
  color: #000;
  text-align: center;
}

/*** END also-purchased-products-product-page ***/
.manufacturer-description ul {
  margin: 5px !important;
}
.manufacturer-description li {
  text-align: left !important;
  margin: 0 !important;
}
.manufacturer-description a {
  text-decoration: underline;
}
.manufacturer-description p {
  text-align: left;
  padding-block: 5px;
  margin: 0;
  font-family: var(--ff-arial);
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: black;
}
.manufacturer-description p strong {
  color: black;
  font-weight: bold;
}

input:-webkit-autofill {
  padding-left: 10px !important;
}

#colorbox #cboxNext {
  top: 50%;
  right: 15px;
  left: unset;
  bottom: unset;
  transform: translateY(-50%);
  font-size: 0;
  background-image: url(../../images/Project/General/arrow-black-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
}
#colorbox #cboxPrevious {
  top: 50%;
  left: 15px;
  right: unset;
  bottom: unset;
  transform: translateY(-50%) rotate(-180deg);
  font-size: 0;
  background-image: url(../../images/Project/General/arrow-black-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
}
#colorbox #cboxCurrent {
  top: 15px;
  left: 50%;
  bottom: unset;
  transform: translateX(-50%);
  color: #000;
}
#colorbox #cboxLoadedContent {
  padding-block: 35px;
  margin: 0;
}
#colorbox #cboxTitle {
  padding-bottom: 15px;
  color: #000;
}
#colorbox #cboxClose {
  border: 0;
}

span.calc-during-chechout {
  color: #000;
  font-size: 11.11px;
  line-height: 18px;
}

.cart-total .order-subtotal span {
  color: #444;
}

.checkout-page .enter-address .edit-address-container {
  max-width: 800px;
  margin: 0 auto;
  width: 97%;
}
.checkout-page .enter-address .edit-address.grid-container {
  row-gap: clamp(40px, 3vw, 60px);
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.checkout-page .enter-address .edit-address.grid-container .inputs {
  margin-bottom: 0;
}
.checkout-page .enter-address .edit-address.grid-container .inputs input::-moz-placeholder {
  color: #929292;
}
.checkout-page .enter-address .edit-address.grid-container .inputs input::placeholder {
  color: #929292;
}

.shipping-method .shipping-notes {
  max-width: 507px;
  width: 97%;
  margin: 0 auto;
  padding-inline: 10px;
}
.shipping-method .shipping-notes textarea {
  width: 100%;
  padding: 15px;
  resize: none;
  height: 150px;
}

.ui-dialog .ui-dialog-content {
  width: 100% !important;
}

.related-products-grid .item-grid,
.cross-sell-products .item-grid {
  padding-inline: 50px;
}

.topic-global-page table td {
  padding: 10px;
  font-size: 13px;
}

.product-details-grouped-page .product-essential {
  padding-bottom: 50px;
}
.product-details-grouped-page .product-variant-list-wrapper {
  border: 0;
  margin-bottom: 0;
}
.product-details-grouped-page .product-variant-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.product-details-grouped-page .product-variant-grid .item-box {
  position: relative;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item {
  display: flex;
  gap: 26px;
  padding: clamp(20px, 2vw, 26px);
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .picture {
  flex-basis: 12%;
  margin: 0;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .picture a:before {
  padding-top: 100%;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details {
  flex-grow: 1;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-left {
  max-width: 660px;
  flex-basis: 60%;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-title {
  margin: 0;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-title a {
  font-size: clamp(20px, 2vw, 23px);
  line-height: clamp(22px, 2vw, 25px);
  color: #000;
  font-weight: 600;
  text-align: left;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .additional-details .product-page-manufacturer-wrapper {
  display: none;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .additional-details .sku {
  border: 0;
  padding: 15px 22px;
  max-width: 426px;
  background-color: #EEEEEE;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .additional-details .sku .sku-inner {
  display: flex;
  gap: 30px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .additional-details .sku .sku-inner .label {
  flex-basis: 40%;
  font-size: clamp(15px, 1vw, 16px);
  color: #000;
  font-weight: 500;
  text-align: left;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .additional-details .sku .sku-inner .value {
  flex-basis: 40%;
  font-size: clamp(15px, 1vw, 16px);
  color: #000;
  text-align: left;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .availability {
  margin: 0;
  border: 0;
  background-color: #eeeeee;
  margin-top: 12px;
  display: flex;
  align-items: center;
  padding: 15px 22px;
  max-width: 426px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .availability .additional-details-item-wrapper {
  flex-grow: 1;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .availability .additional-details-item-inner {
  display: flex;
  gap: 30px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .availability .additional-details-item-inner .label {
  flex-basis: 40%;
  font-size: clamp(15px, 1vw, 16px);
  color: #000;
  font-weight: 500;
  text-align: left;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .availability .additional-details-item-inner .value {
  flex-basis: 40%;
  font-size: clamp(15px, 1vw, 16px);
  text-align: left;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  flex-basis: 33%;
  min-width: 330px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .upper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .lower {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .upper-buttons {
  display: flex;
  gap: 12px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .prices-wrapper-container .prices {
  margin: 0;
  padding: 0;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .prices-wrapper-container .prices .prices-container {
  display: flex;
  gap: 19px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .prices-wrapper-container .prices .product-price span {
  font-size: clamp(28px, 2vw, 33px);
  color: #000;
  font-weight: 500;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .prices-wrapper-container .prices .old-product-price span {
  font-size: clamp(16px, 1vw, 19px);
  color: #929292;
  font-weight: 500;
  text-decoration: line-through;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .compare-button-container .compare-products {
  display: block;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .compare-button-container input {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/compare-icon.svg);
  font-size: 0;
  border: 0;
  background-color: #929292;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .wishlist-button-container input {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/addtowishlist-icon.svg);
  font-size: 0;
  border: 0;
  background-color: #929292;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info {
  flex-grow: 1;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart {
  max-width: unset;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel {
  gap: 12px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .add-to-cart-button {
  flex-basis: 66.67%;
  height: 46px;
  border: 0;
  background-color: #000;
  color: #fff;
  font-size: clamp(0.8125rem, 1vw, 1.2rem);
  line-height: 1.5625rem;
  text-align: center;
  font-weight: 700;
  padding-inline: 10px;
  margin: 0;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .add-to-cart-button:hover {
  color: #000;
  background-color: #fff;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2784313725);
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner {
  display: flex;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner.ui-widget.ui-widget-content {
  max-width: 138px;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner .ui-spinner-button {
  position: absolute !important;
  width: 46px;
  height: 46px;
  background: #000000 !important;
  background-color: #000000 !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer;
  background-size: 18px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner .ui-spinner-button .ui-icon {
  display: none;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner .ui-spinner-up {
  order: 2;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/plus-addto.svg) !important;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner .qty-input {
  margin: 0 !important;
  order: 1;
  height: 46px;
  border: 0 !important;
  text-align: center;
  font-size: clamp(1.5625rem, 4vw, 2.07375rem);
  line-height: clamp(1.25rem, 1.5vw, 1.5625rem);
  color: #000000;
  background-color: #fff;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  width: unset;
  max-width: unset;
}
.product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .add-info .add-to-cart .add-to-cart-panel .ui-spinner .ui-spinner-down {
  order: -1;
  background-image: url(/Themes/RDC/Content/images/Project/Checkout/minus-addto.svg) !important;
}

.product-details-page .picture {
  position: relative;
}
.product-details-page .ribbon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  z-index: 1;
  gap: 10px;
}
.product-details-page .ribbon-wrapper .ribbon {
  padding: 5px 15px;
  font-family: var(--ff-arial);
  font-weight: bold;
  font-size: 16px;
}
.product-details-page .ribbon-wrapper .ribbon.ribbon-new {
  background-color: black;
  color: white;
}
.product-details-page .ribbon-wrapper .ribbon.ribbon-hot-deal {
  background-color: #f36a10;
  color: white;
}
.product-details-page .ribbon-wrapper .ribbon.ribbon-offer {
  background-color: black;
  color: white;
}

#newslettersubscription-pupup-window {
  max-width: 500px;
  border: 0;
  background-color: #171717;
  padding: 25px;
}
#newslettersubscription-pupup-window .newslettersubscription-message .newsletter-popup-image {
  margin-bottom: 45px;
}
#newslettersubscription-pupup-window .newslettersubscription-message .newsletter-popup-content p.white-text {
  color: #FEFEFE;
  font-size: clamp(16px, 1vw, 18px);
  line-height: clamp(20px, 2vw, 22px);
  margin-bottom: 15px;
}
#newslettersubscription-pupup-window .newslettersubscription-message .newsletter-popup-content p.orange-text {
  color: #EE8903;
  font-size: clamp(24px, 2vw, 28px);
  line-height: clamp(28px, 2vw, 33px);
  margin-bottom: 25px;
  font-weight: 600;
}
#newslettersubscription-pupup-window .newslettersubscription-message .newsletter-popup-content p.orange-text strong {
  font-size: clamp(32px, 4vw, 44px);
  color: #EE8903;
}
#newslettersubscription-pupup-window .newslettersubscription-extra-text {
  max-width: 350px;
  margin: 50px auto 0;
}
#newslettersubscription-pupup-window .newslettersubscription-extra-text p {
  color: #FEFEFE;
  font-size: 10px;
  line-height: 11px;
  text-align: center;
}
#newslettersubscription-pupup-window .newslettersubscription-email {
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#newslettersubscription-pupup-window .newslettersubscription-email input {
  width: 100%;
}
#newslettersubscription-pupup-window .newslettersubscription-email #newslettersubscription-email {
  border: 0;
  padding: 7px 15px;
  text-align: center;
  font-size: 15px;
  background-color: #E3E3E3;
  border-radius: 6px;
  color: #171717;
  font-weight: 600;
}
#newslettersubscription-pupup-window .newslettersubscription-email #newslettersubscription-button {
  border-radius: 3px;
  max-width: 100px;
  margin: 0 auto;
  background-color: #ED8432;
  padding: 7px 15px;
  color: #171717;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}
#newslettersubscription-pupup-window .fns-newslettersubscription-closebutton {
  position: relative;
}
#newslettersubscription-pupup-window .fns-newslettersubscription-closebutton a {
  width: 22px;
  height: 22px;
  top: -5px;
  right: -10px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../images/Project/General/newsletter-popup-close.svg);
  font-size: 0;
}
#newslettersubscription-pupup-window #newslettersubscription-welcome p {
  color: #FEFEFE;
  font-size: 14px;
  line-height: 20px;
}
#newslettersubscription-pupup-window #newslettersubscription-welcome p strong {
  color: #EE8903;
  font-size: clamp(16px, 1vw, 18px);
  line-height: clamp(20px, 2vw, 22px);
}
#newslettersubscription-pupup-window .newslettersubscription-result {
  text-align: center;
  margin-top: 15px;
  margin-inline: 0;
}

.coupon-box {
  padding: 25px;
  background-color: #EEEEEE;
}
.coupon-box .title {
  display: none;
}
.coupon-box .hint {
  color: #000;
  font-size: clamp(15px, 1vw, 16px);
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.coupon-box .message-failure {
  color: red;
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}
.coupon-box .message-success {
  color: #5e9401;
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}
.coupon-box .current-code {
  text-align: center;
  margin-top: 5px;
  color: #000;
  font-size: 16px;
}
.coupon-box .current-code .remove-discount-button {
  background-color: transparent;
  border: 0;
  width: 17px;
  height: 17px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../../images/Project/Checkout/trash-icon.svg);
}
.coupon-box .coupon-code {
  position: relative;
}
.coupon-box .coupon-code #discountcouponcode {
  width: 100%;
  border: 0;
  color: #000;
  font-size: clamp(15px, 1vw, 16px);
  padding: 10px 180px 10px 15px;
}
.coupon-box .coupon-code #applydiscountcouponcode {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-size: clamp(15px, 1vw, 16px);
  border: 0;
  padding: 5px 15px;
  width: 100%;
  max-width: 160px;
}

/*********** MEDIA **********/
@media screen and (min-width: 481px) {
  /*********** CONTACT PAGE **********/
  .contact-info-grid {
    flex-direction: row;
  }
  .contact-info-grid .contact-info-left,
  .contact-info-grid .contact-info-right {
    flex-basis: 50%;
  }
  .contact-info-grid .contact-info-right {
    padding-left: clamp(10px, 1.2vw, 18px);
  }
  .contact-info-grid .contact-info-left {
    padding-right: clamp(10px, 1.2vw, 18px);
    border-right: 2px solid var(--clr-third);
  }
  /*********** BLOG PAGE **********/
  .blog-post-item .blog-post-item-container .blog-item-image {
    margin: 0;
  }
  .blog-post-item-container {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  /*********** CONTACT PAGE **********/
  .contact-form-inner-wrapper {
    background-image: url(/Themes/RDC/Content/images/Project/Contact/contact-bg.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: clamp(35px, 5vw, 65px);
  }
  /*********** PRODUCT PAGES **********/
  .product-essential-top-grid .gallery-wrapper {
    flex-basis: 48.93%;
  }
  .product-essential-top-grid .gallery-wrapper .gallery-inner {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .product-essential-top-grid .overview {
    flex-basis: 46.9%;
  }
}
@media screen and (min-width: 1024px) {
  .filters-mobile-button-wrapper,
  .close-filters-btn {
    display: none;
  }
  /*********** CATEGORY PAGES **********/
  /***  CATEGORY PRODUCT GRID PAGE STYLES ***/
  .columns-grid .side-2 {
    flex-basis: 23.77%;
    display: block;
  }
  .columns-grid .center-2 {
    flex-basis: 73.44%;
  }
  /*** END CATEGORY PRODUCT GRID PAGE STYLES ***/
}
@media screen and (min-width: 1025px) {
  .columns-grid .side-2 .block-category-navigation {
    display: block;
  }
  .side-2-inner {
    overflow: hidden;
    border-radius: 4px;
    margin: 0 0 20px;
    background-color: var(--clr-white);
  }
  .block-category-navigation .listbox {
    display: block;
  }
  /*********** ITEM BOX **********/
  /*********** PRODUCT PAGES **********/
  /*** SET PRODUCT STYLES ***/
  .product-set thead {
    display: table-header-group;
  }
  .product-set tbody tr {
    border-bottom: 2px dashed var(--clr-gray);
  }
  .product-set tbody tr td .set-label {
    display: none;
  }
  .product-set tbody tr td.set-productimage {
    max-width: 70px;
  }
  /*** END SET PRODUCT STYLES ***/
}
@media screen and (max-width: 1470px) {
  .gallery-inner .picture-thumbs-wrapper {
    flex-basis: 23% !important;
  }
  .gallery-inner .picture-thumbs-carousel {
    width: 500px !important;
    margin-top: 207px !important;
    margin-left: -168px !important;
  }
  .gallery-inner .thumb-item {
    width: 80px !important;
    height: 80px !important;
  }
  .gallery-inner .picture-thumbs .owl-prev {
    left: 87% !important;
    top: 33% !important;
  }
  .gallery-inner .picture-thumbs .owl-next {
    right: 87% !important;
  }
}
@media screen and (max-width: 1355px) {
  .gallery-inner .picture-thumbs-wrapper {
    flex-basis: 26% !important;
  }
  .gallery-inner .picture-thumbs-carousel {
    width: 370px !important;
    margin-top: 157px !important;
    margin-left: -118px !important;
  }
  .gallery-inner .thumb-item {
    width: 72px !important;
    height: 72px !important;
  }
}
@media screen and (max-width: 1106px) {
  .gallery-inner .picture-thumbs-wrapper {
    flex-basis: 19% !important;
  }
  .gallery-inner .picture-thumbs-carousel {
    width: 370px !important;
    margin-top: 142px !important;
    margin-left: -147px !important;
  }
}
@media screen and (max-width: 1023px) {
  #newslettersubscription-pupup-window {
    max-width: 320px;
  }
  .product-details-grouped-page .product-variant-grid .product-item .details {
    flex-direction: column;
  }
  .product-details-grouped-page .product-variant-grid .product-item .details .product-variant-inner-right {
    max-width: 330px;
  }
  .homepage-category-grid-wrapper .homepage-grid-carousel .owl-stage-outer {
    overflow: visible;
  }
  .gallery-inner {
    gap: 15px;
    flex-direction: column-reverse !important;
  }
  .gallery-inner .picture-thumbs-carousel {
    transform: rotate(0) !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .gallery-inner .picture-thumbs-carousel .thumb-item {
    transform: rotate(0) !important;
  }
  .gallery-inner .picture-thumbs .owl-prev {
    top: 29% !important;
  }
  .table-wrapper tbody tr:last-child {
    border: 0;
  }
  .filters-mobile-button-wrapper {
    position: fixed;
    z-index: 999999;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s linear;
  }
  .filters-mobile-button-wrapper.is-visible {
    visibility: visible;
    bottom: 30px;
    opacity: 1;
  }
  .filtersPanel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background-color: #fff;
    transition: all 0.6s ease-in;
    padding: clamp(25px, 9vw, 55px) clamp(25px, 5vw, 55px) clamp(35px, 5vw, 55px);
    border-bottom: 2px solid;
    transform: translateY(200%);
    overflow: auto;
  }
  .filtersPanel.open {
    transform: translateY(0);
  }
  .close-filters-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 999;
  }
  .none {
    display: none;
  }
  /*********** PRODUCT PAGES **********/
  /*** SET PRODUCT STYLES ***/
  .product-set tbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 22vw, 250px), 1fr));
    grid-gap: clamp(8px, 1vw, 16px);
  }
  .product-set tbody tr {
    display: block;
    border: 1px solid #efe4e9;
    padding: clamp(5px, 1vw, 10px);
  }
  .product-set tbody tr td {
    display: block;
    border-bottom: 1px dashed #efe4e9;
  }
  .product-set tbody tr td.set-product {
    width: 100%;
  }
  .product-set tbody tr td .set-label {
    display: block;
    font-weight: 700;
    margin: 0 0 5px;
    text-align: center;
    color: var(--clr-dark-gray);
  }
  .login-page .login-page-container {
    flex-direction: column;
  }
  .login-page .login-right .returning-wrapper-inner {
    max-width: 500px;
    width: 80%;
  }
  .login-page .login-right .new-wrapper-inner {
    max-width: 500px;
    width: 80%;
  }
  .login-page .login-left {
    background-image: none;
  }
  .login-page .login-left img {
    display: block;
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    margin: 0 auto;
    width: 100%;
  }
  .registration-page .registration-container {
    flex-direction: column;
  }
  .registration-page .registration-right .registration-right-wrapper {
    max-width: 500px;
    width: 80%;
  }
  .registration-page .registration-left {
    background-image: none;
  }
  .registration-page .registration-left img {
    display: block;
    max-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
    width: 100%;
  }
  /*** END SET PRODUCT STYLES ***/
  /*********** CATEGORY PAGES **********/
  /*** SUB CATEGORY BOOKS PAGE STYLES ***/
  .sub-category-books-item .sub-category-item-books-title .sub-category-item-books-title-inner svg {
    transform: scale(1.6);
  }
  /*** END SUB CATEGORY BOOKS PAGE STYLES ***/
}
@media screen and (max-width: 1001px) {
  .related-products .item-grid,
  .cross-sell-products .item-grid {
    padding: 0;
  }
  .related-products .item-grid .owl-stage-outer,
  .cross-sell-products .item-grid .owl-stage-outer {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .product-details-grouped-page .product-variant-grid .product-item {
    flex-direction: column;
    align-items: center;
  }
  .product-details-grouped-page .product-variant-grid .product-item .picture a {
    width: 150px;
    height: 150px;
  }
  .checkout-page .enter-address .edit-address.grid-container .inputs {
    margin-bottom: 15px;
  }
  .picture-thumbs-wrapper {
    margin-top: 10px;
  }
  .product-essential-top-grid .gallery-wrapper .gallery .picture a::before {
    padding-top: 60%;
  }
  #tabs .ui-tabs-nav {
    grid-template-columns: 1fr;
  }
  #tabs .full-description {
    width: 100%;
  }
  #tabs .table-wrapper {
    width: 100%;
  }
  #tabs .spec-name {
    width: 50%;
    display: inline-block;
    height: auto;
  }
  #tabs .spec-value {
    width: 50%;
    display: inline-block;
    height: auto;
  }
  /*********** CONTACT PAGE **********/
  .contact-form {
    margin: 0 auto;
  }
  .product-essential-grid .gallery {
    max-width: 332px;
    margin: 0 auto clamp(35px, 4vw, 55px);
    width: 97%;
  }
  .about-us-page-body {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .slider-wrapper .anywhere-slider .slick-next {
    background-size: 20px;
  }
  .slider-wrapper .anywhere-slider .slick-prev {
    background-size: 20px;
  }
  .product-buttons-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .picture-thumbs-wrapper {
    margin-top: 10px;
  }
  .selectors-with-pager {
    padding-block: 20px;
    display: block;
  }
  .product-grid-pager {
    margin-top: 10px;
  }
  .product-grid-pager ul {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .coupon-box .coupon-code {
    text-align: center;
  }
  .coupon-box .coupon-code #discountcouponcode {
    padding: 10px 15px;
  }
  .coupon-box .coupon-code #applydiscountcouponcode {
    position: relative;
    margin: 15px auto;
    padding: 10px;
  }
  .coupon-box .current-code .remove-discount-button {
    display: block;
    margin: 7px auto;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .picture a {
    width: 100px;
    height: 100px;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details {
    align-items: center;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-title {
    margin-bottom: 15px;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-title a {
    text-align: center;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right {
    min-width: unset !important;
    width: 100%;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .upper .prices-wrapper-container {
    margin-block: 20px;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .upper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .lower .add-to-cart-panel {
    flex-direction: column;
  }
  .product-details-grouped-page .product-variant-grid .item-box .product-item .details .product-variant-inner-right .lower .add-to-cart-panel .add-to-cart-button {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }
  .product-essential-top-grid .gallery-wrapper .gallery .picture a::before {
    padding-top: 100% !important;
  }
  /*********** PRODUCT PAGES **********/
  .product-details-page .product-specs-box table tbody tr td {
    display: block;
    width: 100%;
  }
  .product-essential-top-grid .gallery-wrapper .picture-thumbs-wrapper {
    max-width: 280px;
    margin: 10px auto;
  }
  /*********** CONTACT PAGE **********/
  .contact-info-grid .contact-info-left {
    padding: 0 0 clamp(15px, 2vw, 30px);
    margin: 0 0 clamp(15px, 2vw, 30px);
    border-bottom: 2px solid var(--clr-third);
  }
}
@media screen and (max-width: 403px) {
  .sub-category-item .title a {
    font-size: 19px;
  }
}
/*********** MIXINS **********/
:root {
  --ff-arial: "Arial", sans-serif;
  --fw-normal: normal;
  --fw-bold: bold;
  --clr-text-footer-cols: #000000;
  --clr-text-footer-lower: #eeeeee;
  --bg-footer-lower: #000000;
  --bg-footer-upper: #eeeeee;
  --bg-footer-icons: #000000;
}

/*********** FOOTER **********/
/*** FOOTER GENERAL STYLES ***/
.footer {
  background-color: var(--bg-footer-upper);
}

.footer-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

/***END  FOOTER GENERAL STYLES ***/
/*** NEWSLETTER STYLES ***/
.newsletter-wrapper {
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/Themes/RDC/Content/images/Project/Newsletter/BgNewsletterSection.jpg);
  padding: clamp(50px, 5vw, 85px) 0 clamp(50px, 4vw, 70px);
}

.newsletter-content-wrapper {
  padding-block: clamp(10px, 1.5vw, 25px);
  width: clamp(55%, 21vw, 85%);
  margin: 0 auto;
  text-align: center;
}
.newsletter-content-wrapper .newsletter-content-inner p {
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: #000000;
  font-family: var(--ff-arial);
}

.newsletter-inner-container {
  text-align: left;
  max-width: 500px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.newsletter-header-wrapper {
  text-align: center;
  padding-bottom: clamp(6px, 1.5vw, 20px);
}
.newsletter-header-wrapper .newsletter-header-inner h2 {
  color: #000000;
}

.newsletter-input-wrap {
  text-align: center;
}
.newsletter-input-wrap .options {
  margin: 0 0 clamp(15px, 2vw, 20px);
}
.newsletter-input-wrap .newsletter-inputs {
  margin: 0;
}
.newsletter-input-wrap .newsletter-inputs label {
  color: var(--clr-dark-gray);
  font-weight: 500;
  font-family: var(--ff-arial);
  font-size: clamp(0.5625rem, 1vw, 0.69375rem);
  line-height: clamp(1.25rem, 1vw, 1.5625rem);
  padding-left: 32px;
}
.newsletter-input-wrap .newsletter-inputs label::before {
  border-radius: 100%;
  background-color: #fff;
  width: 21px;
  height: 21px;
  border: 1px solid #c7c7c7;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.newsletter-input-wrap .newsletter-inputs label .popup-newsletter {
  text-decoration: underline;
}
.newsletter-input-wrap .newsletter-inputs input[type=checkbox]:checked + label::before {
  box-shadow: inset 0 0 0 3px rgb(255, 255, 255);
}

.newsletter-inner-grid {
  width: 100%;
}

#newsletter-subscribe-block {
  width: 100%;
}

#newsletter-subscribe-button {
  color: white;
}

.newsletter-input-container {
  margin: 0 0 clamp(20px, 3vw, 36px);
  position: relative;
}
.newsletter-input-container .newsletter-subscribe-text {
  flex-basis: 66.9%;
  height: clamp(35px, 3vw, 41px);
  background-color: #fff;
  color: var(--clr-dark-gray);
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  text-align: left;
  font-weight: 400;
  border: none;
  padding: 0 13px;
}
.newsletter-input-container .newsletter-subscribe-text::-moz-placeholder {
  color: #acacac;
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-family: var(--ff-arial);
  font-style: italic;
}
.newsletter-input-container .newsletter-subscribe-text::placeholder {
  color: #acacac;
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-family: var(--ff-arial);
  font-style: italic;
}
.newsletter-input-container .newsletter-subscribe-button {
  flex-basis: 33.1%;
  height: clamp(35px, 3vw, 41px);
  border: 0;
  background-color: var(--clr-primary);
  color: var(--clr-third);
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  line-height: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
.newsletter-input-container .newsletter-subscribe-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.newsletter-input-container .newsletter-subscribe-button:hover {
  opacity: 0.6;
}

/*** END NEWSLETTER STYLES ***/
/*** FOOTER UPPER ***/
.footer-upper {
  padding: clamp(20px, 2.5vw, 35px) 0 clamp(15px, 2vw, 25px);
}

.footer-upper-blocks-grid {
  grid-gap: clamp(15px, 3vw, 35px) clamp(15px, 2.5vw, 87px);
}

.footer-logo-block {
  max-width: 0 10px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-logo-block .footer-logo {
  margin: 0 0 clamp(20px, 2vw, 30px);
}
.footer-logo-block .footer-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-payments-wrapper {
  padding: 10px 0 0;
}
.footer-payments-wrapper .footer-payment-item {
  margin: 0 clamp(10px, 1vw, 15px);
}
.footer-payments-wrapper .footer-payment-item img {
  display: block;
}

.footer-social-wrapper {
  margin: 0 0 8px;
  padding: 0 0 clamp(20px, 2.5vw, 39px);
  border-bottom: 1px solid #899d9a;
}
.footer-social-wrapper .header-social-title {
  display: none;
}
.footer-social-wrapper .networks-list {
  justify-content: center;
}
.footer-social-wrapper .networks-list .header-social-title {
  display: none;
}
.footer-social-wrapper .networks-list li {
  margin: 0 clamp(10px, 1.5vw, 18px);
}
.footer-social-wrapper .networks-list li a {
  width: clamp(18px, 1.5vw, 23px);
  height: clamp(18px, 1.5vw, 23px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  font-size: 0;
}
.footer-social-wrapper .networks-list li a:hover {
  opacity: 0.6;
}
.footer-social-wrapper .networks-list li.facebook a {
  width: clamp(19.23px, 1.5vw, 23.27px);
  height: clamp(19.23px, 1.5vw, 23.27px);
  background-image: url(/Themes/RDC/Content/images/Project/Footer/footer-fb-icon.svg);
}
.footer-social-wrapper .networks-list li.instagram a {
  width: clamp(19.23px, 1.5vw, 23.27px);
  height: clamp(19.23px, 1.5vw, 23.27px);
  background-image: url(/Themes/RDC/Content/images/Project/Footer/footer-insta-icon.svg);
}
.footer-social-wrapper .networks-list li.youtube a {
  width: clamp(27.8px, 2vw, 31.8px);
  height: clamp(19.56px, 1.5vw, 23.56px);
  background-image: url(/Themes/RDC/Content/images/Project/Footer/footer-yt-icon.svg);
}

.footer-contact-list {
  justify-content: space-between;
}
.footer-contact-list li {
  margin: 0 5px 5px;
  color: var(--clr-text-footer-cols);
  position: relative;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.3vw, 1.1875rem);
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.footer-contact-list li a {
  font-size: 13px;
}
.footer-contact-list li span {
  display: block;
  width: 17px;
  height: 17px;
  background-color: #000000;
  border-radius: 100%;
  margin-right: 5px;
}
.footer-contact-list li span.footer-location-icon {
  background-image: url(../../images/Project/Footer/footer-location-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.footer-contact-list li span.footer-phone-icon {
  background-image: url(../../images/Project/Footer/footer-phone-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.footer-contact-list li span.footer-email-icon {
  background-image: url(../../images/Project/Footer/footer-email-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.footer-contact-list li span a {
  color: var(--clr-dark-gray);
  font-weight: 700;
  font-size: clamp(0.8rem, 1vw, 1rem);
  line-height: clamp(0.9375rem, 1.3vw, 1.1875rem);
}
.footer-contact-list .footer-phone strong {
  color: var(--clr-text-footer-cols);
  font-family: var(--ff-arial);
}

/*** END FOOTER UPPER ***/
/*** FOOTER LOWER ***/
.footer-lower {
  background-color: var(--bg-footer-lower);
  padding: clamp(8px, 1vw, 10px) 0;
  font-family: var(--ff-arial);
}

.footer-lower-container {
  max-width: 1530px;
  padding: 0 10px;
  margin: 0 auto;
  width: 97%;
}

.footer-info span,
.footer-info a,
.footer-powered-by span,
.footer-powered-by a {
  font-family: var(--ff-arial);
  color: var(--clr-text-footer-lower);
  font-weight: var(--fw-normal);
  font-size: 0.8125rem;
  line-height: 0.8125rem;
}

/*** END FOOTER LOWER ***/
.footer .networks-wrapper {
  margin-bottom: 25px;
}
.footer .networks-wrapper .networks-list li {
  margin: 0 clamp(7px, 1vw, 14px) 0 0;
}
.footer .networks-wrapper .networks-list li a {
  display: block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
}
.footer .networks-wrapper .networks-list li a:hover {
  opacity: 0.6;
}
.footer .networks-wrapper .networks-list li.facebook a {
  background-image: url(../../images/Project/Footer/facebook-icon.svg);
}
.footer .networks-wrapper .networks-list li.instagram a {
  width: 16.13px;
  height: 16.13px;
  background-image: url(../../images/Project/Footer/instagram-icon.svg);
}
.footer .networks-wrapper .networks-list li.pinterest a {
  width: 16.13px;
  height: 16.13px;
  background-image: url(/Themes/RDC/Content/images/Project/Header/header-pin-icon.svg);
}
.footer .networks-wrapper .networks-list li.youtube a {
  width: 16.13px;
  height: 16.13px;
  background-image: url(/Themes/RDC/Content/images/Project/Header/header-yt-icon.svg);
}
.footer .networks-wrapper .networks-list li.header-social-title span {
  color: #000;
  font-size: 13.33px;
}

/*********** MEDIA **********/
@media (min-width: 769px) {
  /*** FOOTER UPPER STYLES ***/
  .footer-upper-blocks-grid {
    grid-template-columns: repeat(auto-fill, minmax(clamp(108px, 12vw, 162px), 1fr));
  }
  .footer-upper-inner-grid {
    grid-gap: clamp(15px, 2vw, 27px);
  }
  .footer-upper-right {
    flex-basis: 37.81%;
    order: 1;
  }
  .footer-upper-left {
    flex-basis: 33.11%;
    margin-right: 15px;
    order: 0;
  }
  .footer-block {
    margin: 0;
  }
  .footer-block .title {
    margin: 0 0 clamp(6px, 1vw, 10px);
    display: none;
  }
  .footer-block .title strong {
    color: var(--clr-dark-gray);
    font-weight: 700;
    font-size: clamp(0.8rem, 1vw, 1rem);
    line-height: clamp(0.9375rem, 1.3vw, 1.1875rem);
    text-align: left;
  }
  .footer-block .list {
    display: block !important;
  }
  .footer-block .list li {
    margin: 0 0 clamp(8px, 0.8vw, 16px);
    position: relative;
  }
  .footer-block .list li:last-child {
    margin: 0;
  }
  .footer-block .list li a {
    color: var(--clr-text-footer-cols);
    font-weight: var(--fw-normal);
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
    line-height: clamp(0.9375rem, 1.3vw, 1.1875rem);
  }
  .footer-block .list li a:hover {
    color: var(--clr-title-secondary);
  }
  /*** END FOOTER UPPER STYLES ***/
  /*** FOOTER LOWER ***/
  .footer-lower-grid > * {
    margin: 0 2px;
  }
  .footer-lower-grid .footer-powered-by {
    text-align: right;
  }
  .footer-lower-grid .footer-info {
    text-align: left;
  }
  /*** END FOOTER LOWER ***/
}
@media (max-width: 768px) {
  /*** FOOTER UPPER ***/
  .footer-block .footer-block-list li::after {
    top: calc(50% + 2px);
  }
  /*** END FOOTER UPPER ***/
  /*** FOOTER LOWER ***/
  .footer-lower-grid .footer-info,
  .footer-lower-grid .footer-powered-by {
    text-align: center;
  }
  .footer-lower-grid .footer-info span,
  .footer-lower-grid .footer-powered-by span {
    font-size: 11px;
  }
  .footer-lower-grid .footer-info a,
  .footer-lower-grid .footer-powered-by a {
    font-size: 11px;
  }
  /*** END FOOTER LOWER ***/
}
@media (max-width: 1024px) {
  .footer-upper-right {
    flex-basis: 50%;
  }
  .footer-contact-list {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer-upper-right {
    width: 100%;
    max-width: 300px;
    padding: 0 10px;
    margin: 0 auto clamp(25px, 3.5vw, 50px);
    order: 1;
  }
  .footer-upper-left {
    text-align: center;
    padding-bottom: 25px;
  }
  .footer-upper-left .footer-logo-block {
    display: inline-block;
  }
  .footer-block {
    margin: 0 0 clamp(10px, 1vw, 15px);
  }
  .footer-block .title {
    padding: 10px 15px;
    background-color: var(--clr-primary);
    position: relative;
  }
  .footer-block .title h3 {
    color: var(--clr-text-footer-lower);
    font-family: var(--ff-arial);
    font-size: 14px;
  }
  .footer-block .title::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/Themes/RDC/Content/images/Project/Footer/cevron-bottom-white.svg);
    right: 15px;
    top: 50%;
    transform-origin: 10px 0px;
    transform: rotate(0) translateY(-50%);
  }
  .footer-block .title.active::after {
    transform: rotate(-180deg) translateY(-50%);
  }
  .footer-block .title h5 {
    font-size: clamp(0.8rem, 1.3vw, 1rem);
    line-height: clamp(0.9375rem, 1.3vw, 1.1875rem);
    color: var(--clr-white);
  }
  .footer-block .list {
    display: none;
    padding: 15px 10px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .footer-block .list li {
    margin: 0 0 clamp(8px, 1vw, 14px);
  }
  .footer-block .list li a {
    color: var(--clr-text-footer-cols);
    font-size: 13px;
    font-weight: 400;
    line-height: clamp(0.75rem, 1vw, 1.125rem);
  }
  .footer-block .list li:last-child {
    margin: 0;
  }
}/*# sourceMappingURL=format.css.map */