@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*--- Reset Css ---*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

input:focus {
  outline: none;
  box-shadow: none;
}

body,
html {
  height: 100%;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

:root {
  --font: "Manrope", sans-serif;
  --titleColor: #000000;
  --subTitle: #797979;
  --borderColor: #EDEDED;
  --pirmaryColor: #242429;
  --primaryHoverColor: #19191a;
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #F5F5F5;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
}

h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
}

header .md-top-header {
  background: #1E1E1E;
  padding: 1.2rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFF;
}
header .md-top-header a {
  color: #FFF;
  font-size: 1.3rem;
}
header .md-navbrand {
  padding: 2rem 0;
  transition: all 0.3s ease;
}
header .md-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
header .md-header-right a {
  display: block;
  position: relative;
  padding: 1rem;
}
header .md-header-right a i {
  color: #000;
}
header .md-header-right i {
  font-size: 3rem;
}
header [data-count]:before {
  content: attr(data-count);
  position: absolute;
  right: 0px;
  top: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5rem;
  background-color: #000000;
  color: #FFF;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar {
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
  padding: 0;
}
header .navbar .nav-link {
  padding: 1.6rem 2.5rem !important;
  font-size: 1.5rem;
  font-weight: 600;
}
header .md-doo-search-wrapper {
  max-width: 820px;
  margin: 1rem auto;
  padding: 0.5rem;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 0.8rem;
}
header .md-doo-search-wrapper form {
  position: relative;
  display: flex;
}
header .md-doo-search-wrapper form .form-control {
  height: 4rem;
  padding: 1rem;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
header .md-doo-search-wrapper form .form-control::-moz-placeholder {
  font-weight: 400;
  opacity: 0.6;
}
header .md-doo-search-wrapper form .form-control::placeholder {
  font-weight: 400;
  opacity: 0.6;
}
header .md-doo-search-wrapper form .form-control:focus {
  box-shadow: none;
}
header .md-doo-search-wrapper form .btn-img-search {
  border: none;
  background: transparent;
  margin-right: 1.5rem;
  padding: 0;
}
header .md-doo-search-wrapper .btn-primary {
  font-size: 1.4rem;
  padding: 1rem 2rem;
}
header .sticky-header {
  position: sticky;
  width: 100%;
  top: 0;
  background: #FFF;
  z-index: 99;
}
header .fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
header .fixed .md-navbrand {
  padding: 1rem 0;
  transition: all 0.3s ease;
}
header .fixed .md-navbrand svg {
  width: 200px;
  transition: all 0.3s ease;
}

.md-logged-in {
  display: flex;
  gap: 1rem;
}
.md-logged-in p {
  text-align: right;
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--subTitle);
}
.md-logged-in strong {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.navbar-toggler {
  padding: 1rem;
  display: none;
}
.navbar-toggler i {
  font-size: 2.4rem;
}

.md-offcanvas-nav .offcanvas.offcanvas-start {
  border: none;
}
.md-offcanvas-nav .offcanvas-header {
  padding: 1.5rem 2.5rem 0;
}
.md-offcanvas-nav .offcanvas-body .navbar-nav .nav-item .nav-link {
  padding: 1.5rem;
  font-size: 1.4rem;
}

.btn-close {
  border-radius: 8px;
}
.btn-close:focus, .btn-close:active {
  box-shadow: none;
}

.btn {
  outline: 0;
  outline-offset: 0;
  border: 0;
  border-radius: 2px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
}
.btn:focus, .btn:active, .btn.active, .btn:active:focus, .btn.active:focus {
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.btn-primary {
  background: var(--pirmaryColor);
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary svg, .btn-primary i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-primary:active {
  background: var(--primaryHoverColor);
  color: #FFF;
}
.btn-primary:active:focus-visible {
  background: var(--primaryHoverColor);
}
.btn-primary:hover {
  background: var(--primaryHoverColor);
  color: #FFF;
}
.btn-primary:focus, .btn-primary:focus-visible {
  background: var(--primaryHoverColor);
  color: #FFF;
}

.btn-outline {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: solid 1px var(--pirmaryColor);
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline svg, .btn-outline i {
  margin-right: 1.5rem;
  font-size: 2rem;
}
.btn-outline:hover {
  background: var(--primaryHoverColor);
  color: #FFF;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background: var(--primaryHoverColor);
  color: #FFF;
}

.btn:first-child:active, :not(.btn-check) + .btn:active {
  background: var(--primaryHoverColor);
  color: #FFF;
}

.btn-lg {
  font-size: 1.5rem;
  padding: 1.5rem 2.5rem !important;
}

.btn-sm {
  padding: 0.8rem 1rem !important;
  font-size: 1.3rem;
  border-radius: 0.6rem;
}
.btn-sm i {
  font-size: 1.4rem;
  margin-right: 1rem;
}

.ripple-effect {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.dropdown-toggle {
  border: solid 2px transparent;
  background: transparent;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle:active, .dropdown-toggle:focus, .dropdown-toggle:active {
  border: solid 2px transparent;
}

.dropdown-menu {
  min-width: 18rem;
  border: none;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-item {
  padding: 1.2rem 1.5rem;
  font-size: 1.4em;
  font-weight: 500;
}
.dropdown-menu .dropdown-item i {
  font-size: 1.6rem;
  margin-right: 1rem;
  color: #000;
  opacity: 0.5;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:hover {
  background: var(--pirmaryColor);
  color: #FFF;
}
.dropdown-menu .dropdown-item.active i, .dropdown-menu .dropdown-item:active i, .dropdown-menu .dropdown-item:hover i {
  color: #FFF;
  opacity: 1;
}

.full-menu .dropdown-menu {
  box-sizing: border-box;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  min-width: auto;
  width: 100%;
  margin-top: 1px;
  padding: 3.5rem;
  border-color: #ccc;
}
.full-menu .md-popular {
  padding: 0 1rem;
}
.full-menu .md-popular h3 {
  margin-bottom: 1rem;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.link-grid a {
  flex: 0 0 30.33%;
  border-radius: 1rem;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
}
.link-grid a:last-child {
  background-color: transparent;
  border: solid 1px var(--borderColor);
}
.link-grid a:hover {
  background: #000;
  color: #FFF;
}

.md-header-right .dropdown-menu.show {
  margin-top: 55px !important;
}

.animation {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.slideDownIn {
  animation-name: slideDownIn;
}

@keyframes slideDownIn {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
.ink {
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(0);
  background: #fff;
  opacity: 0.2;
}

.ink.animate {
  animation: ripple 0.5s linear;
}

@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.form-floating {
  position: relative;
}
.form-floating .icon {
  position: absolute;
  right: 15px;
  top: 16px;
  height: 25px;
  display: flex;
  align-items: center;
  font-size: 2rem;
}
.form-floating.icon-view .form-control {
  padding-right: 5rem;
}

.form-control:focus {
  box-shadow: none;
}

.form-control:disabled {
  --bs-secondary-bg: #f1f4f7;
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
  --bs-secondary-bg: #f1f4f7;
  background: var(--bs-secondary-bg);
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(5.5rem + var(--bs-border-width) * 2);
  min-height: calc(5.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-control {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  border-radius: 0.6rem;
}

.form-select {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  border-radius: 0.6rem;
}

.form-floating > label {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  font-size: 1.4rem;
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 2.5rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 2.5rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.9) translateY(-1.2rem) translateX(0.15rem);
  padding: 1rem 1.5rem;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  transform: scale(0.9) translateY(-1.2rem) translateX(0.15rem);
  padding: 1rem 1.5rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  top: 14px;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  top: 14px;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1.5rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.modal .modal-content {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  border: none;
  border-radius: 1rem;
}

.auth-wrapper {
  display: flex;
}
.auth-wrapper .auth-left {
  flex: 0 0 38rem;
  height: 48rem;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.auth-wrapper .auth-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.auth-wrapper .auth-right {
  flex: 0 0 calc(100% - 38rem);
  padding: 3rem;
}
.auth-wrapper .auth-right h3 {
  font-size: clamp(1.8rem, 2.5vw, 1.8rem);
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.auth-wrapper .auth-right .auth-external a {
  border: solid 1px var(--borderColor);
  padding: 1rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}
.auth-wrapper .auth-right .auth-external a svg {
  margin-right: 1.5rem;
}
.auth-wrapper .auth-right p {
  font-size: 1.4rem;
}
.auth-wrapper .auth-right p a {
  color: #000;
  font-weight: 600;
}

.or {
  position: relative;
  border-top: solid 1px var(--borderColor);
  margin: 3.5rem 0;
}
.or::after {
  content: "OR";
  width: 100%;
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #848484;
  background: #FFF;
  display: block;
  padding: 1rem;
  max-width: -moz-max-content;
  max-width: max-content;
  z-index: 1;
  font-weight: 400;
}

.banner {
  max-width: 1920px;
  margin: 0 auto;
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-title-wrapper {
  padding: 6rem 0 5rem;
}
.md-title-wrapper h2 {
  font-size: clamp(1.2rem, 2.5vw, 2.0rem);
  color: var(--titleColor);
  margin-bottom: 2rem;
  text-align: center;
}
.md-title-wrapper h2  span { 
color: #9f1127;    
}
.md-title-wrapper p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: var(--subTitle);
  text-align: center;
}

.md-products-container {
  max-width: 2500px;
  margin: 0 auto;
  padding: 1rem;
}
.md-products-container .grid-gallery {
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
}
.md-products-container .grid-gallery .grid-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0.6rem;
}
.md-products-container .grid-gallery .grid-item a {
  display: flex;
  align-items: flex-end;
  position: relative;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}
.md-products-container .grid-gallery .grid-item a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
.md-products-container .grid-gallery .grid-item a .main-img {
  display: flex;
  align-items: flex-end;
  position: relative;
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
.md-products-container .grid-gallery .grid-item a .main-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
.md-products-container .grid-gallery .grid-item a:hover .main-img {
  opacity: 1;
}
.md-products-container .grid-gallery .grid-item:hover {
  opacity: 1;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
.md-products-container .grid-gallery .grid-item .grid-item-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 12rem;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  width: calc(100% - 0px);
  z-index: 1;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}
.md-products-container .grid-gallery .grid-item .grid-item-content span, .md-products-container .grid-gallery .grid-item .grid-item-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 600;
  text-decoration: none;
  color: #FFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: calc(100% - 2.5rem);
}
.md-products-container .grid-gallery .grid-item .bs-price {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: #FFF;
  margin-top: 1.5rem;
}
.md-products-container .grid-gallery .grid-item .bs-price del {
  display: inline-block;
  margin-right: 1rem;
}
.md-products-container .grid-gallery .grid-item .product-id {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 2;
}
.md-products-container .grid-gallery .grid-item .product-id button {
  background: #FFF;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
}
.md-products-container .grid-gallery .grid-item .product-category {
  position: absolute;
  left: 1.5rem;
  top: 5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.md-products-container .grid-gallery .grid-item .product-category a {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  border-radius: 5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
}
.md-products-container .grid-gallery .grid-item .product-category a:hover {
  background: #000;
  color: #FFF;
}
.md-products-container .grid-gallery .grid-item .home-fav {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 2;
}
.md-products-container .grid-gallery .grid-item .home-fav .icon-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.md-products-container .grid-gallery .grid-item .home-fav a {
  color: #FFF;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5rem;
}
.md-products-container .grid-gallery .grid-item .home-fav a i {
  transition: transform 0.3s ease;
  transform: scale(1);
}
.md-products-container .grid-gallery .grid-item .home-fav a:hover i {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}
.md-products-container .show_design .grid-item a .main-img, .md-products-container .show_design .grid-item .bs-item a .main-img {
  opacity: 1;
}
.md-products-container .show_design .grid-item a:hover .main-img, .md-products-container .show_design .grid-item .bs-item a:hover .main-img {
  opacity: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
@media (min-width: 1921px) {
  .md-products-container .grid-gallery > .grid-item:nth-of-type(9n+1) {
    grid-area: span 2/span 2;
  }
  .md-products-container .grid-gallery > .grid-item:nth-of-type(9n+6) {
    grid-area: span 2/span 2;
  }
}

.md-popular-wrapper::after {
  content: "";
  width: 100%;
  min-height: 32.5rem;
  background: #FAF5F2;
  display: block;
  margin-top: -26rem;
}

.md-popular {
  display: block;
}
.md-popular img {
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.md-popular h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--titleColor);
}
.md-popular p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--subTitle);
}

.md-custom-wallpaper {
  max-width: 1920px;
  margin: 0 auto;
}
.md-custom-wallpaper .iphone {
  position: absolute;
  left: -170px;
  top: 50%;
  transform: translateY(-50%);
}
.md-custom-wallpaper .right-content {
  padding: 3rem;
}
.md-custom-wallpaper .right-content h2 {
  max-width: 45rem;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: 3.4rem;
}
.md-custom-wallpaper .right-content p {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  margin-bottom: 4rem;
  color: var(--subTitle);
  font-weight: 400;
  line-height: 3rem;
}

.md-shop-by-room {
  max-width: 1920px;
  margin: 0 auto;
  padding: 4rem 0;
}
.md-shop-by-room .title-wrapper {
  padding: 0 0;
}
.md-shop-by-room .title-wrapper h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: 3.4rem;
  text-align: left;
}
.md-shop-by-room .title-wrapper p {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  color: var(--subTitle);
  font-weight: 400;
  line-height: 3rem;
  text-align: left;
}
.md-shop-by-room .action-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
.md-shop-by-room .action-buttons .carousel-btn {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.md-shop-by-room .action-buttons .carousel-btn i {
  font-size: 2.4rem;
}
.md-shop-by-room .action-buttons .carousel-btn:hover {
  background: #000;
  color: #FFF;
  transition: all 0.3s ease;
}
.md-shop-by-room .shop_by_room .item {
  overflow: hidden;
}
.md-shop-by-room .shop_by_room .item img {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-shop-by-room .shop_by_room .item a h6 {
  color: var(--pirmaryColor);
  text-decoration: none;
  font-weight: 600;
  padding: 1.5rem 0;
}

.customPreviousBtn {
  cursor: pointer;
}

.customNextBtn {
  cursor: pointer;
}

.md-review-wrapper {
  margin: 3rem 0 8rem;
}
.md-review-wrapper .md-review-header {
  padding: 5rem 0 5rem;
}
.md-review-wrapper .md-review-header .rating-star {
  margin-bottom: 1rem;
}
.md-review-wrapper .md-review-header .rating-star i.fa-solid {
  color: #FF9900;
}
.md-review-wrapper .md-review-header h4 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}
.md-review-wrapper .md-review-header p {
  font-size: 1.4rem;
  color: var(--subTitle);
  margin-top: 0.5rem;
}
.md-review-wrapper .md-review-container {
  display: grid;
  gap: 1rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 30rem);
}
.md-review-wrapper .md-review-container .box:first-of-type {
  grid-area: span 2/span 2;
}
.md-review-wrapper .md-review-container .box:nth-of-type(4) {
  grid-area: span 2/span 1;
}
.md-review-wrapper .md-review-container .box:nth-of-type(8) {
  grid-area: span 1/span 2;
  max-height: 30rem;
}
.md-review-wrapper .md-review-container .box a {
  display: block;
  position: relative;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}
.md-review-wrapper .md-review-container .box a img {
  display: block;
  width: 100%;
  height: calc(100% - 5.5rem);
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 0.8rem;
  z-index: 0;
}
.md-review-wrapper .md-review-container .box a .review-content {
  margin-top: 10px;
}
.md-review-wrapper .md-review-container .box a .review-content h6 {
  padding: 0 !important;
  color: #000;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.md-review-wrapper .md-review-container .box a .review-content .star-rating {
  margin-bottom: 0;
  font-size: 1.6rem;
  width: 92px;
  display: none;
}
.md-review-wrapper .md-review-container .box a .review-content p {
  color: var(--subTitle);
  font-size: 1.3rem;
  opacity: 0.8;
  margin: 0;
}

.review-white-popup {
  border-radius: 5px;
  display: flex;
  background: rgb(255, 255, 255);
  height: 553px;
  max-width: 1024px;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
.review-white-popup .image-wrapper {
  overflow: hidden;
  max-height: 750px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.review-white-popup .rev-img {
  position: relative;
  pointer-events: none;
  height: 100%;
  width: 625px;
}
.review-white-popup .rev-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.review-white-popup .review-popup-content {
  max-width: 40rem;
  min-width: 40rem;
  display: grid;
  grid-template-rows: auto 1fr;
  max-height: calc(-161px + 100vh);
  overflow: auto;
}
.review-white-popup .review-popup-content .review-content-wrapper {
  padding: 2rem;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content .product-reviews span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1.5rem;
  line-height: 2.8rem;
  color: #797979;
  letter-spacing: 0.5px;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content span {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-weight: 500;
  display: inline-block;
  color: #787878;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content span i {
  color: #17c06f;
  font-size: 1.6rem;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content .img-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content .img-gallery a {
  display: block;
  flex: 0 0 30%;
  overflow: hidden;
  border-radius: 6px;
  height: 8rem;
}
.review-white-popup .review-popup-content .review-content-wrapper .review-content .img-gallery a img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-blogs-wrapper::after {
  content: "";
  width: 100%;
  min-height: 29rem;
  background: #FAF5F2;
  display: block;
  margin-top: -26rem;
}
.md-blogs-wrapper .md-blog {
  padding: 1rem;
  display: block;
}
.md-blogs-wrapper .md-blog img {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}
.md-blogs-wrapper .md-blog h3 {
  font-size: 1.5rem;
  line-height: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--titleColor);
}
.md-blogs-wrapper .md-blog p {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--subTitle);
}

.md-content {
  padding: 6rem 0 6rem;
}
.md-content .bx {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}
.md-content .bx div h4 {
  font-size: 1.6rem;
  color: var(--titleColor);
  margin-bottom: 1.5rem;
}
.md-content .bx div p {
  color: var(--subTitle);
  font-size: 1.4rem;
  line-height: 2.8rem;
  font-weight: 400;
}

.md-seo-content-wrapper {
  padding: 5rem 0;
  border-top: solid 1px var(--borderColor);
}
.md-seo-content-wrapper h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 2.6rem;
}
.md-seo-content-wrapper h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  line-height: 2.4rem;
}
.md-seo-content-wrapper h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  line-height: 2.2rem;
}
.md-seo-content-wrapper h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.md-seo-content-wrapper h5 {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.md-seo-content-wrapper p {
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 2.5rem;
  color: var(--subTitle);
}
.md-seo-content-wrapper p strong {
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: #000;
}
.md-seo-content-wrapper ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.md-seo-content-wrapper ul li {
  list-style-type: disc;
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: var(--subTitle);
}
.md-seo-content-wrapper ul li strong {
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: #000;
}
.md-seo-content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.md-seo-content-wrapper ol li {
  list-style-type: decimal;
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: var(--subTitle);
}
.md-seo-content-wrapper ol li strong {
  font-size: clamp(1.2rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: #000;
}
.md-seo-content-wrapper a {
  color: #9f1127;
  font-weight: 600;
}
.md-seo-content-wrapper .seo-content {
  position: relative;
  height: 30rem;
  overflow: hidden;
}
.md-seo-content-wrapper .seo-content::after {
  content: "";
  display: block;
  background: rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 15%, #fff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md-seo-content-wrapper .seo-content .more-content {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.md-seo-content-wrapper .seo-content.show-full-content {
  height: auto;
}
.md-seo-content-wrapper .seo-content.show-full-content::after {
  display: none;
}
.md-seo-content-wrapper .moreless-button {
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 2rem 0;
}
.md-seo-content-wrapper .moreless-button i {
  transition: 0.3s all ease;
}
.md-seo-content-wrapper .up {
  transform: rotate(180deg);
  transition: 0.3s all ease;
}

footer {
  background: #F5F5F5;
  padding: 5rem 0 3rem;
}
footer h5 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
footer .footer-links {
  padding: 0;
}
footer .footer-links li {
  display: block;
}
footer .footer-links li a {
  display: block;
  padding: 1.2rem 0;
  color: #616161;
  font-size: 1.4rem;
}
footer .footer-links li a:hover {
  color: var(--titleColor);
}
footer .footer-links-img {
  padding: 0;
  display: flex;
  gap: 1rem;
}
footer .footer-links-img img {
  width: 4rem;
}
footer .patners {
  margin: 4rem 0 3rem 0;
  padding: 4rem 0;
  border-top: solid 1px #E0E0E0;
  border-bottom: solid 1px #E0E0E0;
  text-align: center;
  position: relative;
}
footer .patners h5 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: #F5F5F5;
}
footer .md-tag-cloud {
  background: #FFF;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}
footer .md-tag-cloud ul li a {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  color: #7e7e7e;
}
footer .md-tag-cloud ul li a:hover {
  background: var(--pirmaryColor);
  color: #FFF;
}
footer .footer-linline-links {
  padding: 0;
  text-align: center;
  margin-bottom: 1.2rem;
}
footer .footer-linline-links li {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  position: relative;
}
footer .footer-linline-links li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0px;
  color: #616161;
}
footer .footer-linline-links li a {
  color: #616161;
}
footer .copyright {
  font-size: 1.3rem;
  color: #616161;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .copyright i {
  font-size: 2rem;
  margin: 0 0.8rem;
}
footer .copyright i.fa-solid.fa-heart {
  color: #FF4848;
}

.md-breadcrumb {
  padding: 1.5rem 0;
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
}
.md-breadcrumb.full-breadcrumb .container-xl {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 3rem;
}
.md-breadcrumb ol {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0 7.5px;
  overflow: hidden;
}
.md-breadcrumb ol li {
  display: inline-block;
  position: relative;
}
.md-breadcrumb ol li a {
  font-size: 1.4rem;
  color: #555555;
  display: block;
  padding-right: 2.5rem;
}
.md-breadcrumb ol li a.active {
  color: #000;
  font-weight: 600;
}
.md-breadcrumb ol li:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 1.2rem;
  color: #555555;
}
.md-breadcrumb ol.back {
  overflow: visible;
}
.md-breadcrumb ol.back li a {
  padding: 0;
}

.md-product-detail-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 3rem;
}
.md-product-detail-wrapper .md-product-details {
  position: sticky;
  top: 7.8rem;
}
.md-product-detail-wrapper .md-product-details .md-header {
  display: flex;
  justify-content: space-between;
}
.md-product-detail-wrapper .md-product-details .md-header h1 {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  max-width: 60rem;
  word-break: break-word;
  line-height: 2.8rem;
}
.md-product-detail-wrapper .md-product-details .md-header .md-share {
  display: flex;
}
.md-product-detail-wrapper .md-product-details .md-header .md-share a {
  font-size: 2.4rem;
  padding: 0 1rem;
  display: inline-block;
  color: #000;
}
.md-product-detail-wrapper .md-product-details .md-header .md-share .md-fav.active {
  color: #FF4848;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews a {
  display: flex;
  align-items: center;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews a .rating-star {
  color: #FF9900;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews a p {
  font-size: 1.4rem;
  color: #737373;
  padding: 0 1.5rem;
  font-weight: 700;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews a:hover {
  color: #000;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews .md-product-id {
  font-size: 1.3rem;
  color: #737373;
}
.md-product-detail-wrapper .md-product-details .md-rating-reviews .md-product-id strong {
  font-weight: 700;
  color: #272727;
  cursor: pointer;
}
.md-product-detail-wrapper .md-product-details .md-price {
  padding: 1rem 0;
}
.md-product-detail-wrapper .md-product-details .md-price h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
}
.md-product-detail-wrapper .md-product-details .md-price .md-delivery-date {
  font-size: 1.4rem;
  color: #737373;
  font-weight: 500;
  margin-top: 2rem;
}
.md-product-detail-wrapper .md-product-details .md-price .md-delivery-date strong {
  font-weight: 700;
  color: #000;
}
.md-product-detail-wrapper .md-product-details h3 {
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.md-product-detail-wrapper .md-product-details .md-materials-wrapper {
  padding: 2rem 0 2.5rem 0;
  margin: 2rem 0;
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
}
.md-product-detail-wrapper .md-product-details .md-materials-wrapper .header .carousel-btn i {
  font-size: 2rem;
}
.md-product-detail-wrapper .md-product-details .md-materials-wrapper .md_materials .item a {
  display: block;
  border: solid 1px #E1E1E1;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.md-product-detail-wrapper .md-product-details .md-materials-wrapper .md_materials .item a .material-cost {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.4rem 1rem;
  background: #000;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 800;
}
.md-product-detail-wrapper .md-product-details .md-materials-wrapper .md_materials .item a h6 {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 0.4rem;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.md-product-detail-wrapper .md-product-details .md-materials-wrapper .md_materials .item.active a {
  border: solid 2px #000;
}
.md-product-detail-wrapper .md-product-details .kit {
  font-size: 1.4rem;
  color: #797979;
}
.md-product-detail-wrapper .md-product-details .kit strong {
  font-weight: 600;
}
.md-product-detail-wrapper .md-product-details .kit span a {
  color: #000;
}
.md-product-detail-wrapper .md-product-details .custom-sizes {
  padding: 0rem 0 3rem 0;
  margin: 2.5rem 0 0;
  border-bottom: solid 1px var(--borderColor);
}
.md-product-detail-wrapper .md-product-details .custom-sizes .input-wrapper {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .input-wrapper .with-icon {
  position: relative;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .input-wrapper .with-icon .form-control {
  box-sizing: border-box;
  padding: 1.5rem 5rem 1.5rem 6rem;
  height: 6rem;
  max-width: 22rem;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .input-wrapper .with-icon .icon {
  position: absolute;
  top: 2.2rem;
  left: 2rem;
  font-size: 2rem;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .input-wrapper .with-icon .param {
  position: absolute;
  top: 2.4rem;
  right: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .total-area {
  font-size: 1.4rem;
  color: #797979;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .total-area strong {
  font-weight: 700;
  color: #000;
}
.md-product-detail-wrapper .md-product-details .custom-sizes .total-area span {
  font-size: 1.2rem;
  color: #FF9900;
  display: inline-block;
  margin-left: 3rem;
}
.md-product-detail-wrapper .md-product-details .total-wrapper {
  padding: 2.5rem 0;
}
.md-product-detail-wrapper .md-product-details .total-wrapper .label {
  font-size: 1.4rem;
  color: #797979;
  margin-bottom: 3rem;
}
.md-product-detail-wrapper .md-product-details .total-wrapper .total-amt {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 3rem;
}
.md-product-detail-wrapper .md-product-details .total-wrapper .btn-primary {
  min-width: 20rem;
}
.md-product-detail-wrapper .md-product-details .total-wrapper small {
  font-size: 1.2rem;
  display: block;
  margin: 1rem 0;
  color: #616161;
  text-align: center;
}
.md-product-detail-wrapper .md-product-details .small-feature {
  padding: 4rem 0;
}
.md-product-detail-wrapper .md-product-details .small-feature img {
  width: 5rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.md-product-detail-wrapper .md-product-details .small-feature p {
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: var(--subTitle);
}
.md-product-detail-wrapper .md-product-details .md-category-tags {
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.04);
}
.md-product-detail-wrapper .md-product-details .md-category-tags strong {
  font-weight: 700;
  font-size: 1.3rem;
  color: #000;
}
.md-product-detail-wrapper .md-product-details .md-category-tags a {
  display: inline-block;
  padding: 0.3rem 0.4rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  color: #7e7e7e;
}
.md-product-detail-wrapper .md-product-details .md-category-tags a:hover {
  background: #000;
  color: #FFF;
}
.md-product-detail-wrapper .md-product-details .md-category-tags .category {
  margin-bottom: 1rem;
}

.md-customize-design {
  margin: 0 0 2rem;
  padding: 2rem;
  border-radius: 1rem;
  border: solid 2px #EDEDED;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30rem;
}
.md-customize-design h4 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  line-height: 2.8rem;
}
.md-customize-design p {
  font-weight: 400;
  color: var(--subTitle);
  margin-bottom: 1.5rem;
  line-height: 2.8rem;
}

.product_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-gap: 5px;
  margin: 0rem 0 2.5rem;
}
.product_features .feature_item {
  padding: 1.5rem 0;
}
.product_features .feature_item img {
  width: 6rem;
  display: inline-block;
  opacity: 0.8;
}
.product_features .feature_item p {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
  padding-top: 0.8rem;
  line-height: 1.6rem;
  color: #4b4b4b;
  text-transform: uppercase;
}

.owl-dots {
  display: none;
}

.product-slider {
  display: flex;
  flex-direction: row-reverse;
  padding-right: 4rem;
}
.product-slider .carousel-item img {
  cursor: pointer;
}

.carousel-inner {
  max-height: unset;
}
.carousel-inner .carousel-item {
  height: 100%;
}
.carousel-inner .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-indicators {
  position: static;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0 1.5rem 0 0;
  gap: 1.5rem;
  width: clamp(50px, 60vw, 125px);
}
.carousel-indicators .thumbnail {
  border-radius: 1rem;
  overflow: hidden;
  height: 9rem;
  border: none;
  width: 100%;
}
.carousel-indicators .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.upload-block {
  background: #000;
  color: #FFF;
}
.upload-block form input {
  display: none;
}
.upload-block form .upload-label {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 600;
  cursor: pointer;
}
.upload-block form .upload-label i {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.related-products .md-products-container {
  max-width: 2500px;
  margin: 0 auto;
  padding: 1rem;
}
@media (min-width: 1921px) {
  .related-products .md-products-container .grid-gallery > .grid-item:nth-of-type(9n+1) {
    grid-area: span 1/span 1;
  }
  .related-products .md-products-container .grid-gallery > .grid-item:nth-of-type(9n+6) {
    grid-area: span 1/span 1;
  }
}

.product-details {
  padding: 6rem 0;
}
.product-details .tablist {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--borderColor);
}
.product-details .tablist .arrow-btn {
  background: #FFF;
  padding: 0;
  border: none;
  width: 6rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  display: none;
}
.product-details .tablist .nav-underline .nav-item .nav-link {
  --bs-nav-underline-border-width: 2px;
  padding: 1.5rem 3rem;
  color: #848484;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.product-details .tablist .nav-underline .nav-item .nav-link.active {
  font-weight: 600;
  color: var(--pirmaryColor);
  border-color: var(--pirmaryColor);
}
.product-details .tab-content {
  padding: 3rem 0;
}
.product-details .tab-content p {
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: 400;
  color: #737373;
  margin-bottom: 1.5rem;
}
.product-details .tab-content p a {
  color: #000;
  font-weight: 700;
}
.product-details .tab-content ul li {
  font-size: 1.4rem;
  font-weight: 400;
  color: #737373;
  margin-bottom: 2.5rem;
}
.product-details .tab-content ul li strong {
  font-weight: 600;
  color: #000;
  padding-left: 1.5rem;
}
.product-details .tab-content ul li .label {
  display: inline-block;
  min-width: 20rem;
}

.addons-wrapper h3 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 4rem;
}
.addons-wrapper .addon {
  display: flex;
  justify-content: space-between;
  padding-right: 5rem;
}
.addons-wrapper .addon h4 {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.8rem;
}
.addons-wrapper .addon img {
  border-radius: 1rem;
}
.addons-wrapper .addon p {
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: 400;
  color: #737373;
  margin-bottom: 1.5rem;
}
.addons-wrapper .addon ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 2rem;
}
.addons-wrapper .addon ul li {
  flex: 0 0 50%;
  list-style-type: disc;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #737373;
}
.addons-wrapper .addon:not(:last-child) {
  margin-bottom: 5rem;
}
.addons-wrapper .video {
  margin-bottom: 3rem;
}

.preview-image {
  height: 63rem;
  overflow: hidden;
  position: relative;
  margin: 0 auto 3rem auto;
  max-width: 1920px;
  border-radius: 1rem;
}
.preview-image img {
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 114;
  position: relative;
}
.preview-image .material-live-preview {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 9;
  display: flex;
}
.preview-image .material-live-preview img {
  flex: 1;
  height: 100%;
  position: relative;
  z-index: 114;
  mix-blend-mode: multiply;
}
.preview-image .material {
  box-shadow: rgb(0, 0, 0) 0px 1px 2px, rgb(51, 51, 51) 0px 0px 0px 2px;
}

.accordion {
  border: none;
  margin-bottom: 6rem;
}
.accordion .accordion-item {
  border: none;
  border-radius: 0;
}
.accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
  border: none;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed)::after {
  opacity: 1;
}
.accordion .accordion-button {
  font-size: 1.6rem;
  color: #737373;
  padding: 2.5rem 1.5rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  border-bottom: solid 1px var(--borderColor);
  box-shadow: none;
}
.accordion .accordion-button::after {
  --bs-accordion-btn-icon-width: 2.25rem;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  opacity: 0.5;
}
.accordion .accordion-body {
  padding: 1rem 1.5rem 2.5rem 1.5rem;
  font-size: 1.5rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #797979;
  border: none;
}
.accordion button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mobile-header {
  display: none;
}

.md-checkout-wrapper {
  padding: 6rem 0;
  border-top: solid 1px var(--borderColor);
}
.md-checkout-wrapper .final-total {
  position: sticky;
  width: 100%;
  bottom: 0;
  background: #FFF;
}

.cart-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--borderColor);
}
.cart-item p {
  font-size: 1.5rem;
}
.cart-item p strong {
  color: #000;
  font-weight: 700;
}
.cart-item .cart-item-details h5 {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 2.4rem;
  color: #000;
  display: block;
}
.cart-item .cart-item-details h5 a {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 2.4rem;
  color: #000;
  display: block;
}
.cart-item .cart-item-details p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #848484;
}
.cart-item .cart-item-details p strong {
  color: #000;
  font-weight: 700;
}
.cart-item .cart-item-details p a {
  color: #000;
}
.cart-item .cart-price {
  font-size: 1.6rem;
  font-weight: 700;
}
.cart-item .cart-item-actions {
  text-align: center;
}
.cart-item .cart-item-actions .btn-link {
  width: 4rem;
  height: 4rem;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto;
  border: 1px solid #000;
  border-radius: 5rem;
  color: #000;
  display: block;
  line-height: 3rem;
}
.cart-item .cart-item-actions .btn-link:hover {
  color: #FFF;
  background: #000;
}
.cart-item .cart-item-preview img {
  border-radius: 1.5rem;
}
.cart-item.highlighted {
  background: #f6fafe;
}

.md-coupons-wrapper {
  margin: 2rem 0 3rem;
}
.md-coupons-wrapper .btn-custom {
  padding: 1.5rem;
  background: rgba(0, 162, 229, 0.09);
  color: #005A89;
  width: 100%;
  text-align: left;
  border-radius: 0.8rem;
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: dashed 1px #005A89;
}
.md-coupons-wrapper .btn-custom i {
  font-size: 2rem;
  margin-right: 1.5rem;
}

.cart-totals {
  margin-top: 2rem;
}
.cart-totals h5 {
  font-size: clamp(1.5rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.cart-totals p {
  padding: 1.4rem 0;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: #797979;
}
.cart-totals p span {
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #000;
}
.cart-totals p span small {
  font-weight: 500;
  font-size: 1.2rem;
  color: #797979;
}
.cart-totals p strong {
  font-weight: 700;
  color: #000;
}
.cart-totals p.final-total {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
}

.checkout-content {
  border: solid 1px #E1E1E1;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}
.checkout-content h6 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.checkout-content p {
  color: var(--subTitle);
  font-size: 1.4rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
.checkout-content p strong {
  font-weight: 600;
  color: #000;
}
.checkout-content .btn-link {
  color: #000;
  display: block;
  margin: 2rem 0;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: left;
}
.checkout-content .btn-link:hover, .checkout-content .btn-link:focus, .checkout-content .btn-link:active {
  background: transparent;
  color: #000;
}
.checkout-content .btn-primary {
  margin-top: 2.5rem;
  padding: 1.5rem;
  display: flex;
}

.payment-options {
  margin-top: 3rem;
}
.payment-options h5 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.payment-options ul {
  padding: 0;
  display: flex;
  gap: 1rem;
}

.offcanvas {
  border: none !important;
  --bs-offcanvas-width: 475px;
}
.offcanvas.offcanvas-end {
  transition: all 0.4s ease;
}
.offcanvas.coupons-wrapper .offcanvas-title, .offcanvas.md-cart-wrapper .offcanvas-title {
  font-size: 1.6rem;
  font-weight: 700;
}
.offcanvas.coupons-wrapper .offcanvas-title .fa-cart-shopping, .offcanvas.md-cart-wrapper .offcanvas-title .fa-cart-shopping {
  font-size: 2rem;
  margin-right: 1.5rem;
  color: #000;
}
.offcanvas.coupons-wrapper .offcanvas-title [data-count]:before, .offcanvas.md-cart-wrapper .offcanvas-title [data-count]:before {
  content: attr(data-count);
  position: absolute;
  right: 4px;
  top: -10px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5rem;
  background-color: #000000;
  color: #FFF;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas.coupons-wrapper .offcanvas-header, .offcanvas.md-cart-wrapper .offcanvas-header {
  padding: 2rem;
}
.offcanvas.coupons-wrapper .offcanvas-body, .offcanvas.md-cart-wrapper .offcanvas-body {
  padding: 2rem;
}
.offcanvas.coupons-wrapper .offcanvas-body h5, .offcanvas.md-cart-wrapper .offcanvas-body h5 {
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.coupon {
  cursor: pointer;
  position: relative;
  margin-bottom: 2rem;
}
.coupon .coupon-content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 98%;
}
.coupon .coupon-content .logo {
  flex: 0 0 62px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coupon .coupon-content .content {
  flex: 0 0 345px;
  padding: 3rem;
}
.coupon .coupon-content .content .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.coupon .coupon-content .content .head h3 {
  font-weight: 700;
  text-transform: uppercase;
}
.coupon .coupon-content .content .head a {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  font-size: 1.4rem;
}
.coupon .coupon-content .content p {
  color: #787878;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 2.4rem;
}
.coupon .coupon-content .content p:last-child {
  margin: 0;
}
.coupon.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.md-cart .cart-item-preview {
  margin-right: 1.5rem;
}
.md-cart .cart-item-preview img {
  width: 15rem;
  padding: 0;
  border-radius: 0.8rem;
}
.md-cart .cart-item {
  padding: 2rem;
}
.md-cart .cart-item .cart-item-details h5 {
  margin-bottom: 1.5rem;
}
.md-cart .cart-item .cart-item-details h5 a {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}
.md-cart .cart-item .cart-item-details p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.md-cart .cart-item .cart-item-details .cart-item-pricing {
  margin-top: 2rem;
}

.offcanvas-footer {
  background: rgba(0, 0, 0, 0.03);
}
.offcanvas-footer .cart-totals {
  padding: 2rem;
  margin-top: 0;
}
.offcanvas-footer .cart-totals p {
  font-size: 1.4rem;
  padding: 1rem 0;
}
.offcanvas-footer .cart-totals .btn-primary {
  display: flex;
}

.md-seo-content {
  padding: 5rem 0 3rem;
  background: #fcfcfc;
}
.md-seo-content h1 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.md-seo-content p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--subTitle);
}
.md-seo-content .product_features {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.md-seo-content .product_features .feature_item img {
  width: 5rem;
}
.md-seo-content .product_features .feature_item p {
  font-size: 1.2rem;
}

.md-filter {
  padding: 1rem 0;
  border-top: solid 1px var(--borderColor);
  border-bottom: solid 1px var(--borderColor);
}
.md-filter .filter-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.md-filter .filter {
  padding: 0rem 2rem;
}
.md-filter .filter p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.md-filter .filter .form-control {
  font-size: 1.4rem;
  height: 3.5rem;
}
.md-filter .filter .form-select {
  font-size: 1.4rem;
  height: 3.5rem;
}
.md-filter .filter .input-group .form-control {
  font-size: 1.4rem;
  height: 4.5rem;
  padding: 0 1.5rem;
}
.md-filter .filter .btn-link {
  color: var(--pirmaryColor);
  border: none;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.8rem;
  transition: ease 0.3s all;
}
.md-filter .filter .btn-link i {
  font-size: 2rem;
  margin-right: 1rem;
}
.md-filter .filter .btn-link:hover {
  background: rgba(0, 0, 0, 0.06);
}
.md-filter .color-filter li {
  display: inline-block;
  padding: 3px;
  margin: 0;
  vertical-align: top;
}
.md-filter .color-filter li a {
  display: inline-block;
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  position: relative;
}
.md-filter .color-filter li a span {
  display: none;
}
.md-filter .color-filter li a.a000000 {
  background-color: #000;
}
.md-filter .color-filter li a.a000000 span.a000000 {
  color: #fff;
}
.md-filter .color-filter li a.a000000:before {
  color: #fff;
}
.md-filter .color-filter li a.a0000ff {
  background-color: #2e17ce;
}
.md-filter .color-filter li a.a0000ff span.a0000ff {
  color: #fff;
}
.md-filter .color-filter li a.a0000ff:before {
  color: #fff;
}
.md-filter .color-filter li a.a996633 {
  background-color: #996633;
}
.md-filter .color-filter li a.a996633 span.a996633 {
  color: #fff;
}
.md-filter .color-filter li a.a996633:before {
  color: #fff;
}
.md-filter .color-filter li a.a00ffff {
  background-color: #04d2d2;
}
.md-filter .color-filter li a.a00ffff span.a00ffff {
  color: #4b4b4b;
}
.md-filter .color-filter li a.a00ffff:before {
  color: #4b4b4b;
}
.md-filter .color-filter li a.a999999 {
  background-color: #999999;
}
.md-filter .color-filter li a.a999999 span.a999999 {
  color: #fff;
}
.md-filter .color-filter li a.a999999:before {
  color: #fff;
}
.md-filter .color-filter li a.a00ff00 {
  background-color: #0ba80b;
}
.md-filter .color-filter li a.a00ff00 span.a00ff00 {
  color: #fff;
}
.md-filter .color-filter li a.a00ff00:before {
  color: #fff;
}
.md-filter .color-filter li a.aff00ff {
  background-color: #ff63ff;
}
.md-filter .color-filter li a.aff00ff span.aff00ff {
  color: #fff;
}
.md-filter .color-filter li a.aff00ff:before {
  color: #fff;
}
.md-filter .color-filter li a.a808000 {
  background-color: #808000;
}
.md-filter .color-filter li a.a808000 span.a808000 {
  color: #fff;
}
.md-filter .color-filter li a.a808000:before {
  color: #fff;
}
.md-filter .color-filter li a.aff9900 {
  background-color: #ff9900;
}
.md-filter .color-filter li a.aff9900 span.aff9900 {
  color: #4b4b4b;
}
.md-filter .color-filter li a.aff9900:before {
  color: #4b4b4b;
}
.md-filter .color-filter li a.affaaaa {
  background-color: #ff9494;
}
.md-filter .color-filter li a.affaaaa span.affaaaa {
  color: #4b4b4b;
}
.md-filter .color-filter li a.affaaaa:before {
  color: #4b4b4b;
}
.md-filter .color-filter li a.aaa00aa {
  background-color: #aa00aa;
}
.md-filter .color-filter li a.aaa00aa span.aaa00aa {
  color: #fff;
}
.md-filter .color-filter li a.aaa00aa:before {
  color: #fff;
}
.md-filter .color-filter li a.aff0000 {
  background-color: #bf2222;
}
.md-filter .color-filter li a.aff0000 span.aff0000 {
  color: #fff;
}
.md-filter .color-filter li a.aff0000:before {
  color: #fff;
}
.md-filter .color-filter li a.affcc66 {
  background-color: #ffcc66;
}
.md-filter .color-filter li a.affcc66 span.affcc66 {
  color: #4b4b4b;
}
.md-filter .color-filter li a.affcc66:before {
  color: #4b4b4b;
}
.md-filter .color-filter li a.a00aa99 {
  background-color: #00aa99;
}
.md-filter .color-filter li a.a00aa99 span.a00aa99 {
  color: #fff;
}
.md-filter .color-filter li a.a00aa99:before {
  color: #fff;
}
.md-filter .color-filter li a.affffff {
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.md-filter .color-filter li a.affffff span.affffff {
  color: #4b4b4b;
}
.md-filter .color-filter li a.affffff:before {
  color: #4b4b4b;
}
.md-filter .color-filter li a.affff00 {
  background-color: #f0f04f;
}
.md-filter .color-filter li a.affff00 span.affff00 {
  color: #4b4b4b;
}
.md-filter .color-filter li a.affff00:before {
  color: #4b4b4b;
}
.md-filter .show_type_selector {
  display: flex;
  overflow: hidden;
  font-size: 1.3rem;
}
.md-filter .show_type_selector .interior {
  color: #848484;
  border: 1px solid var(--borderColor);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  display: inline-block;
  line-height: 2.4rem;
  height: 3.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.md-filter .show_type_selector .design {
  color: #848484;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  display: inline-block;
  line-height: 2.4rem;
  height: 3.5rem;
  border: 1px solid var(--borderColor);
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.md-filter .show_type_selector .active {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-color: #000;
}
.md-filter .show_type_selector span:hover {
  background: var(--pirmaryColor);
  color: #FFF;
  border-color: var(--pirmaryColor);
}

.product-filter .filter-wrapper {
  justify-content: space-between;
}
.product-filter .filter-wrapper .filter:nth-child(5) {
  display: none;
}

.pagination-text {
  font-size: 1.4rem;
  color: #797979;
  text-align: center;
  margin: 2rem 0 2rem;
}

.md-account-wrapper {
  padding: 5rem 0;
}
.md-account-wrapper .md-account-nav {
  border: solid 1px #E5E7EB;
  border-radius: 1rem;
  overflow: hidden;
}
.md-account-wrapper .md-account-nav li a {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 1.5rem;
  color: #000;
  transition: all 0.3s ease;
}
.md-account-wrapper .md-account-nav li a i {
  font-size: 1.6rem;
}
.md-account-wrapper .md-account-nav li a:hover {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
  transition: all 0.3s ease;
}
.md-account-wrapper .md-account-nav li a.active {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
}
.md-account-wrapper .md-account-nav li:not(:last-child) {
  border-bottom: solid 1px #E5E7EB;
}
.md-account-wrapper .md-account-data-wrapper {
  padding: 0 0 0 2rem;
}
.md-account-wrapper .md-account-data-wrapper h4 {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  margin-bottom: 3rem;
  font-weight: 700;
}
.md-account-wrapper .md-account-data-wrapper .md-sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  margin: 2rem 0;
  font-weight: 700;
}
.md-account-wrapper .md-account-data-wrapper .cart-block {
  border: 1px solid var(--borderColor);
  padding: 0;
  border-radius: 1rem;
}
.md-account-wrapper .md-account-data-wrapper .cart-block .cart-item {
  padding: 2rem;
}
.md-account-wrapper .md-account-data-wrapper .cart-item-preview img {
  width: 8rem;
  padding: 0;
  border-radius: 0.8rem;
}
.md-account-wrapper .md-account-data-wrapper .cart-totals {
  padding: 0 2rem;
  margin-bottom: 2rem;
}
.md-account-wrapper .md-account-data-wrapper .cart-totals p {
  font-size: 1.4rem;
}

.table {
  font-size: 1.4rem;
  border: solid 1px #f3f3f3;
  border-radius: 1rem;
}
.table thead tr td {
  padding: 1.5rem;
  font-weight: 600;
  border-bottom: solid 1px #f3f3f3;
}
.table tbody tr td {
  padding: 1.5rem 1.2rem;
  font-weight: 500;
  color: #404040;
  border-bottom: solid 1px #f3f3f3;
  white-space: nowrap;
}
.table tbody tr td a {
  color: #000;
  font-weight: 600;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-emphasis-color: #000;
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.03);
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-emphasis-color: #000;
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.03);
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.03);
}

.btn-action {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.8rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
}
.btn-action:hover {
  background: #000;
  color: #FFF;
}

.action-menu .dropdown-menu .dropdown-item {
  font-size: 1.3rem;
  font-weight: 600;
}

.order-progress {
  position: relative;
  margin: 6rem 0 4rem;
}
.order-progress .col {
  position: relative;
}
.order-progress .col:not(:last-child)::after {
  content: "";
  height: 4px;
  width: 100%;
  background: #ECECEC;
  position: absolute;
  top: 10px;
  left: 50%;
}
.order-progress .col.completed::after {
  background: #00ab5c;
}
.order-progress .col.completed .progress-indicator {
  border-color: #00ab5c;
  background: #00ab5c;
}
.order-progress .col.completed .progress-indicator::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  height: 1.6rem;
}
.order-progress .col.completed p {
  color: #198754;
}
.order-progress .col.active .progress-indicator {
  border-color: #000;
}
.order-progress .col.active p {
  color: #000;
}
.order-progress .progress-indicator {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 5rem;
  border: solid 0.4rem #ECECEC;
  margin: 0 auto 1.5rem auto;
  background: #FFF;
  position: relative;
  z-index: 9;
  box-shadow: rgb(255, 255, 255) 0px 1px 5px, rgb(255, 255, 255) 0px 0px 0px 4px;
}
.order-progress p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ABABAB;
  line-height: 1.8rem;
  letter-spacing: 0.2px;
}

.order-stat {
  color: #737373;
  line-height: 2.2rem;
  margin-bottom: 4rem;
}
.order-stat strong {
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
}

.order-address {
  padding: 2rem;
  border: 1px solid var(--borderColor);
  border-radius: 1rem;
}
.order-address h6 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.order-address p {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 2.2rem;
}
.order-address p:last-child {
  margin-bottom: 0;
}

.alert {
  border: none;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.alert p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.alert p strong {
  font-weight: 700;
}
.alert p a {
  color: #000;
  font-weight: 600;
}
.alert.alert-info {
  background: #E3F2F9;
  color: #005A89;
}
.alert.alert-success {
  background: #e1f5ec;
  color: #0a4329;
}

.store-credit-card {
  min-height: 20.6rem;
  max-width: 45.5rem;
  border-radius: 1rem;
  padding: 3rem;
  background: rgb(236, 29, 61);
  background: radial-gradient(circle, rgb(236, 29, 61) 20%, rgb(159, 17, 39) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.store-credit-card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/circle-wave-line-circle.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 0;
}
.store-credit-card h4 {
  color: #FFC4CD;
}
.store-credit-card .total-credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
.store-credit-card .total-credit h1 {
  color: #FFF;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.store-credit-card .total-credit small {
  font-size: 1.4rem;
  color: #FFC4CD;
  font-weight: 600;
}
.store-credit-card .total-credit a {
  background: #FFF;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.store-credit-card p {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #FFF;
  opacity: 0.8;
  font-weight: 500;
}

.dt-bootstrap5 .form-select-sm {
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 0.6rem;
}
.dt-bootstrap5 .dt-length label, .dt-bootstrap5 .dt-info {
  font-size: 1.3rem;
  font-weight: 500 !important;
  opacity: 0.9;
}
.dt-bootstrap5 .dt-search label {
  font-size: 1.3rem;
  font-weight: 500 !important;
  opacity: 0.9;
}
.dt-bootstrap5 .dt-search .form-control {
  border-radius: 0.6rem !important;
  padding: 0.5rem !important;
  max-width: 18rem;
}
.dt-bootstrap5 .dt-paging .pagination .page-link {
  font-size: 1.5rem;
  font-weight: 500 !important;
  padding: 0.8rem 1.2rem;
}
.dt-bootstrap5 .dt-paging .disabled > .page-link, .dt-bootstrap5 .dt-paging .page-link.disabled {
  --bs-secondary-bg: #f8f8f8;
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}
.dt-bootstrap5 .dt-paging .active > .page-link, .dt-bootstrap5 .dt-paging .page-link.active {
  background: #000;
  border-color: #000;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
  text-align: left;
}

table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover, table.dataTable thead > tr > td.dt-orderable-asc:hover, table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: none;
}

.dtr-details > li {
  padding: 1rem 0;
  display: flex;
}
.dtr-details > li .dtr-title {
  min-width: 12rem;
  display: inline-block;
}

.tab-menu {
  gap: 1rem;
}
.tab-menu li a {
  padding: 1.6rem 2rem;
  display: block;
  font-size: 1.5rem;
  border-radius: 0.6rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  transition: all 0.3s ease;
}
.tab-menu li a i {
  margin-right: 1rem;
}
.tab-menu li a:hover {
  background: #000;
  color: #FFF;
}
.tab-menu li.active a {
  background-color: #000;
  color: #FFF;
}

.referrals-header {
  margin: 3rem 0;
}
.referrals-header h6 {
  font-size: 1.5rem;
  font-weight: 700;
}
.referrals-header a {
  font-size: 1.4rem;
  color: #000;
}

.month-filter {
  position: relative;
}
.month-filter .monthSelector {
  padding: 0.8rem 3rem 0.8rem 1rem;
  border: solid 1px #dee2e6;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 18rem;
}
.month-filter i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
}

.form-check {
  padding-left: 1.5em;
  min-height: 1.5em;
  align-items: center;
  display: flex;
}
.form-check .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0rem;
}
.form-check .form-check-input:checked {
  background-color: #000;
  border-color: #000;
}
.form-check .form-check-label {
  font-size: 1.4rem;
  margin-left: 1rem;
  color: rgba(var(--bs-body-color-rgb), 0.65);
}
.form-check .form-check-label a {
  color: #000;
}

.mobile-fixed-buttons {
  display: none;
}

.form-label {
  font-size: 1.4rem;
  font-weight: 500;
}

.file-upload .form-control {
  padding: 1.2rem;
}

.modal-body {
  padding: 2.5rem;
}

.modal-header {
  padding: 1.5rem 2.5rem;
  border: none;
}
.modal-header .modal-title {
  font-size: clamp(1.8rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.md-about-wrapper {
  background: #F5F8FD;
  padding: 6rem 0;
}
.md-about-wrapper .brandname {
  text-align: center;
  margin: 1rem 0 3rem;
}
.md-about-wrapper h6 {
  font-weight: 1.6rem;
  font-weight: 600;
}
.md-about-wrapper p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 2.8rem;
  max-width: 1024px;
  margin: 2.5rem auto 0 auto;
}

.md-about {
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
.md-about h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FFF;
  line-height: 3.5rem;
}
.md-about h2 span {
  display: block;
}
.md-about p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.md-about .content p {
  font-size: 1.5rem;
  line-height: 2.8rem;
  opacity: 0.9;
}
.md-about .content a {
  color: #FFF;
  font-weight: 700;
}

.about-journey-title p {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2rem;
  column-gap: 3rem;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: left;
  font-size: 1.4rem;
  margin-top: 4rem;
  line-height: 2.8rem;
}

.md-journey-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  position: relative;
  padding: 10rem 0;
}
.md-journey-wrapper .journey {
  flex: 0 0 28rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 3;
}
.md-journey-wrapper .journey .icon {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: #9F1127;
  border-radius: 5rem;
  color: #FFF;
  margin: 0 auto;
}
.md-journey-wrapper .journey .details {
  text-align: center;
}
.md-journey-wrapper .journey .details .title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.md-journey-wrapper .journey .details .content {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 2rem;
  min-height: 4.5rem;
}
.md-journey-wrapper .journey:nth-child(even) {
  flex-direction: column-reverse;
  top: -5.5rem;
}
.md-journey-wrapper .journey:nth-child(even)::after {
  top: 13.2rem;
}
.md-journey-wrapper .journey:nth-child(odd) {
  top: 4.2rem;
}
.md-journey-wrapper .journey::after {
  content: "";
  height: 1px;
  width: 100%;
  border-top: #CACACA dashed 1px;
  position: absolute;
  top: 3.5rem;
  z-index: -1;
}

.env {
  background: url("../images/env.png") no-repeat;
  background-size: cover;
  min-height: 60rem;
  max-width: 1500px;
  margin: 5rem auto 10rem auto;
  border-radius: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.env .content {
  max-width: 80rem;
  margin: 0 auto;
}
.env .content p {
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 400;
  line-height: 3rem;
  margin-bottom: 4rem;
  text-align: center;
}
.env .content img {
  width: 10rem;
}

.md-feature-wrapper {
  margin-bottom: 8rem;
}
.md-feature-wrapper .md-feature {
  text-align: center;
  margin-bottom: 4rem;
}
.md-feature-wrapper .md-feature .icon {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: #9F1127;
  border-radius: 5rem;
  color: #FFF;
  margin: 0 auto 2rem auto;
}
.md-feature-wrapper .md-feature h5 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.md-feature-wrapper .md-feature p {
  font-size: 1.4rem;
  color: #797979;
  font-weight: 400;
  line-height: 3rem;
}

.md-vision-mission {
  margin-bottom: 10rem;
}
.md-vision-mission h2 {
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  font-weight: 800;
  line-height: 3.8rem;
}
.md-vision-mission h3 {
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 3rem;
}
.md-vision-mission p {
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  color: #797979;
  font-weight: 400;
  line-height: 3.2rem;
  padding-left: 5rem;
}
.md-vision-mission hr {
  margin: 4rem 0;
  border-top: #b9b9b9 solid 1px;
}

.md-team-wrap {
  margin-bottom: 10rem;
}

.md-team {
  text-align: center;
  margin-bottom: 5rem;
}
.md-team .team-img {
  width: 14rem;
  border-radius: 10rem;
  margin: 0 auto 2rem auto;
}
.md-team h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 2.2rem;
}
.md-team p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #848484;
  line-height: 2rem;
}

.md-banner {
  background: url("../images/blog-banner.png") no-repeat;
  background-size: cover;
  padding: 5rem 0;
}

.md-blog-banner {
  background: url("../images/blog-banner.png") no-repeat;
  background-size: cover;
  padding: 8rem 0;
}

.md-blog-banner .md-title-wrapper {
  padding-top: 0;
}
.md-blog-banner .md-title-wrapper h2, .md-blog-banner .md-title-wrapper p {
  color: #FFF;
}
.md-blog-banner .action-buttons {
  position: absolute;
  bottom: 0;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
.md-blog-banner .latest_blog {
  margin-top: 3rem;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.action-buttons .carousel-btn {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.action-buttons .carousel-btn i {
  font-size: 2.4rem;
}
.action-buttons .carousel-btn:hover {
  background: #000;
  color: #FFF;
  transition: all 0.3s ease;
}

.blog {
  background: #FFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 4px 12px;
}
.blog img {
  width: 100%;
  display: block;
}
.blog .content {
  padding: 1.5rem;
}
.blog .content .category a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.blog .content .category a:hover {
  background: #000;
  color: #FFF;
}
.blog .content .blog-title {
  font-size: clamp(1.5rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #000;
  display: block;
  margin: 2rem 0;
  height: 5rem;
  line-height: 2.6rem;
}
.blog .content .author a {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 1rem;
}
.blog .content .author p {
  font-size: 1.3rem;
  color: #797979;
}

.md-blog-listing {
  padding: 6rem 0;
}
.md-blog-listing .blog {
  margin: 0 1rem 3rem 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
  transition: all 0.3s ease;
}
.md-blog-listing .blog:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.featured-products {
  background: #F4F5F7;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
.featured-products h3 {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.featured-products .product {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.featured-products .product .pro-img {
  width: 10rem;
}
.featured-products .product .pro-img img {
  border-radius: 0.8rem;
}
.featured-products .product .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 2.4rem;
}
.featured-products .product .title a {
  color: #000;
}
.featured-products .product p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #242429;
}

.md-blog-detail-banner {
  padding: 6rem 0;
}
.md-blog-detail-banner .md-title-wrapper {
  padding: 0;
}
.md-blog-detail-banner .blog {
  background: transparent;
  box-shadow: none;
  color: #FFF;
}
.md-blog-detail-banner .blog .content h1 {
  margin: 4rem 0;
}
.md-blog-detail-banner .blog .content .category a {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
}
.md-blog-detail-banner .blog .content .author a {
  margin-bottom: 0.5rem;
  color: #FFF;
}
.md-blog-detail-banner .blog .content .author p {
  color: rgba(255, 255, 255, 0.8);
}

.md-blog-details-wrapper {
  padding: 6rem 0;
}

.md-blog-details h1 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 2.6rem;
}
.md-blog-details h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
  line-height: 2.4rem;
}
.md-blog-details h3 {
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
  line-height: 2.2rem;
}
.md-blog-details h4 {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.md-blog-details p {
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 3rem;
  color: var(--subTitle);
}
.md-blog-details img {
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.md-blog-details ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.md-blog-details ul li {
  list-style-type: disc;
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
  color: var(--subTitle);
}
.md-blog-details a {
  color: #9f1127;
  font-weight: 600;
}
.md-blog-details .btn-primary {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.5rem 3.5rem;
  margin-bottom: 3rem;
}

.md-contact-wrapper {
  margin-bottom: 4rem;
}

.contact-details {
  border: solid 2px var(--borderColor);
  border-radius: 1rem;
  padding: 2rem;
  min-height: 36rem;
  margin-bottom: 3rem;
}
.contact-details h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.contact-details > div {
  display: flex;
}
.contact-details > div:not(:last-child) {
  margin-bottom: 2rem;
}
.contact-details > div i {
  font-size: 2rem;
  margin-right: 2rem;
}
.contact-details > div p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3rem;
  color: #797979;
}
.contact-details > div p strong {
  display: block;
  color: #000;
  font-weight: 700;
}

.md-wishlist-content {
  border-top: solid 1px var(--borderColor);
  padding: 5rem 0 5rem;
  background: #fcfcfc;
}
.md-wishlist-content .md-title-wrapper {
  padding: 0;
}

.md-wishlist-filter {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
}

.select2-container .select2-selection--single {
  height: 57px;
  border: 1px solid #dee2e6;
  border-radius: 0.6rem;
}

.select2-dropdown {
  border: 1px solid #dee2e6;
}

.select2-results__option {
  padding: 1.5rem;
  font-size: 1.4rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  margin-top: 8px;
  padding: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 16px;
  right: 11px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6;
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.ui-widget.ui-widget-content {
  border-radius: 0.6rem;
  border: 1px solid #dee2e6;
}

.ui-widget-header {
  border: 1px solid #dee2e6;
  background: #dee2e6;
  color: #333333;
  font-weight: bold;
}

.month-picker-year-table .month-picker-title .ui-button {
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
  width: 100%;
  font-weight: 700;
  float: left;
}

.month-picker-year-table .ui-button {
  width: auto;
  height: auto;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
  color: #000;
}

.ui-widget .ui-widget {
  font-size: 1.4rem;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #d6d6d6;
  background: #d6d6d6;
  color: #000;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid #000;
  background: #000;
  color: #FFF;
}

.tooltip {
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-links li a {
  font-size: 1.5rem;
  display: block;
  padding: 2.4rem 0;
  color: #000;
}

.md-faq-wrapper {
  padding: 0rem 0 6rem;
}
.md-faq-wrapper .accordion .accordion-button {
  padding: 2rem 1.5rem;
}
.md-faq-wrapper .md-title-wrapper {
  padding: 6rem 0 7rem;
}

.loggedin-user {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  color: #FFF;
}
.loggedin-user small {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.loggedin-user h5 {
  font-size: 1.6rem;
  font-weight: 700;
}

.md-measuring-guide {
  padding: 6rem 0;
}
.md-measuring-guide h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
  line-height: 2.4rem;
}
.md-measuring-guide h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 3rem;
  line-height: 2.2rem;
}
.md-measuring-guide p {
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 3rem;
  color: var(--subTitle);
}
.md-measuring-guide .content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 3rem;
}
.md-measuring-guide .measuring-guide-img {
  flex: 0 0 330px;
}
.md-measuring-guide .mb-6 {
  margin-bottom: 6rem;
}

.md-guide {
  text-align: center;
}
.md-guide img {
  width: 15rem;
}
.md-guide h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 2rem;
}

.md-custom-wallpaper {
  padding: 6rem 0;
}
.md-custom-wallpaper .right-content h1 {
  margin-bottom: 3rem;
  line-height: 3.5rem;
}
.md-custom-wallpaper .right-content h2 {
  margin-bottom: 2rem;
}
.md-custom-wallpaper .right-content p {
  font-size: 1.5rem;
}

.md-assist {
  text-align: center;
  background: #F5F8FD;
  padding: 0rem 0 7rem;
}
.md-assist .col-xl-3 {
  flex: 0 0 auto;
  width: 20%;
}
.md-assist .icon {
  margin: 0 auto 2rem auto;
}
.md-assist h5 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.md-assist p {
  font-size: 1.4rem;
  color: #797979;
  font-weight: 400;
  line-height: 3rem;
}

.md-wallpaper-calculator {
  border: solid 2px var(--borderColor);
  border-radius: 1rem;
  padding: 3rem;
  min-height: 40rem;
  margin-bottom: 5rem;
}
.md-wallpaper-calculator h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.md-wallpaper-calculator > p {
  font-size: 1.5rem;
  text-align: center;
  color: var(--subTitle);
  font-weight: 400;
  line-height: 2.8rem;
  margin-bottom: 3rem;
}
.md-wallpaper-calculator .form-group {
  display: flex;
  gap: 2rem;
}
.md-wallpaper-calculator .form-group .form-check-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}
.md-wallpaper-calculator .with-icon {
  position: relative;
}
.md-wallpaper-calculator .with-icon .form-control {
  box-sizing: border-box;
  padding: 1.5rem 5rem 1.5rem 6rem;
  height: 6rem;
}
.md-wallpaper-calculator .with-icon .icon {
  position: absolute;
  top: 2.2rem;
  left: 2rem;
  font-size: 2rem;
}
.md-wallpaper-calculator .with-icon .param {
  position: absolute;
  top: 2.4rem;
  right: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.md-wallpaper-calculator .error {
  display: none;
  font-size: 1.2rem;
  color: #da3f3f;
  padding: 1rem 0;
}

.calculation-result {
  margin-top: 2rem;
}
.calculation-result strong {
  font-weight: 700;
}

.pwallpaper h6 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 4rem 0 3rem;
}
.pwallpaper .form-select {
  height: 5.5rem;
  padding: 1rem 1.5rem;
}

.wallpaper-roll h6 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 4rem 0 3rem;
}

.total-wallpaper-price {
  background: #000;
  text-align: center;
  padding: 1.8rem 1.5rem;
  font-size: 1.8rem;
  color: #FFF;
  border-radius: 0.8rem;
  font-weight: 700;
}

.md-material-tester {
  max-width: 1600px;
  margin: 5rem auto 12rem auto;
  position: relative;
}
.md-material-tester .wallpaper-bg {
  max-width: 1600px;
  height: 80rem;
  border-radius: 1.5rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.md-material-tester .wallpaper-bg img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 114;
  mix-blend-mode: multiply;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-material-tester .material-live-preview {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 9;
}
.md-material-tester .material-live-preview img {
  width: 100% !important;
  position: relative;
  z-index: 114;
  mix-blend-mode: multiply;
}

.materail-selection {
  position: absolute;
  bottom: -85px;
  z-index: 115;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.material-collection {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  position: absolute;
  right: 4rem;
  bottom: 12.2rem;
  overflow: hidden;
}
.material-collection .md_material_carousel .item {
  display: block;
  border: solid 1px #FFF;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  position: relative;
  cursor: pointer;
  background: #FFF;
}
.material-collection .md_material_carousel .item h6 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.8rem 0.4rem;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.material-collection .md_material_carousel .item.active {
  border: solid 2px #000;
}

.material-description {
  flex: 0 0 550px;
  text-align: center;
}
.material-description .btn-primary {
  margin: 0 0 2rem 2rem;
}
.material-description .description {
  padding: 3rem;
  background: #FFF;
  text-align: left;
}
.material-description .description h4 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 3rem;
}
.material-description .description p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 3rem;
  color: var(--subTitle);
}

.md-info {
  font-size: 1.6rem !important;
  opacity: 0.6;
  margin-left: 1rem;
  color: #000 !important;
}

.popover {
  border: none;
  border-radius: 0.8rem;
  --bs-popover-max-width: 370px;
  background: #242429;
}

.popover-header {
  background: #242429;
  color: #FFF;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}

.popover-body {
  border: none;
  background: #242429;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.3rem;
  border-radius: 0.8rem;
}
.popover-body p:not(:last-child) {
  margin-bottom: 1rem;
}
.popover-body a {
  color: #ffcc66;
}

.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-top > .popover-arrow::after {
  border-top-color: #242429;
}

.md-copy-link {
  position: relative;
  margin-bottom: 3rem;
}
.md-copy-link .form-control {
  padding: 1.5rem 6.5rem 1.5rem 1.5rem;
  font-size: 1.4rem;
  text-overflow: ellipsis;
  color: var(--subTitle);
}
.md-copy-link .form-control:hover {
  border-color: #dee2e6;
}
.md-copy-link .btn-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  position: absolute;
  top: 12px;
  right: 10px;
  text-decoration: none;
  color: #000;
}
.md-copy-link .btn-link:active {
  background: transparent;
  color: #000;
}

.md-share-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.md-share-option a {
  display: block;
  text-align: center;
}
.md-share-option a span {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0;
  display: block;
  color: #242429;
}
@keyframes shake-bottom {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
.shake-bottom {
  animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.remove-coupon {
  color: #005A89;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='15' width='15' viewBox='0 0 448 512'><path d='M207 143c9.4-9.4 24.6-9.4 33.9 0L401 303c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-143-143L81 337c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L207 143z'/></svg>") !important;
}

table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='15' width='15' viewBox='0 0 448 512'><path d='M241 337c-9.4 9.4-24.6 9.4-33.9 0L47 177c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l143 143L367 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L241 337z'/></svg>") !important;
}

.md-playlist {
  padding: 5rem 0;
  background: #000;
}

.carousel {
  padding: 0;
}
.carousel h2 {
  margin: 0;
  color: #fff;
}
.carousel a {
  text-decoration: none;
  color: #fff;
}
.carousel img {
  aspect-ratio: 1/1;
  width: 175px;
  height: 175px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  margin-bottom: 16px;
  border-radius: clamp(0px, (100vw - 4px - 100%) * 9999, 4px);
}
.carousel h3 {
  font-size: 16px;
  margin: 0;
  margin-bottom: 4px;
}
.carousel span {
  color: #a7a7a7;
  font-size: 14px;
}
.carousel .dragging a {
  pointer-events: none;
}
.carousel .carousel__wrapper {
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1180px) {
  .carousel .carousel__wrapper.has-arrows .carousel__content {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1180px) {
  .carousel .carousel__wrapper.has-arrows .carousel__arrows {
    display: flex;
  }
}
.carousel .carousel__header {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.carousel .carousel__content {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: grid;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0;
  margin: 0;
  grid-gap: 24px;
  grid-auto-flow: column;
  list-style: none;
}
.carousel .carousel__content::-webkit-scrollbar {
  display: none;
}
.carousel .carousel__item .carousel__description {
  width: 100%;
}
.carousel .carousel__item a {
  display: flex;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 10px 0px;
  padding: 10px;
  background: #181818;
  border-radius: clamp(0px, (100vw - 4px - 100%) * 9999, 8px);
  cursor: pointer;
}
.carousel .carousel__controls {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 24px;
}
.carousel .carousel__arrow {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.carousel .carousel__arrow:before {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=");
  background-size: contain;
  filter: brightness(5);
  display: block;
  width: 18px;
  height: 12px;
  cursor: pointer;
}
.carousel .carousel__arrow.arrow-prev:before {
  transform: rotate(90deg);
}
.carousel .carousel__arrow.arrow-next:before {
  transform: rotate(-90deg);
}
.carousel .carousel__arrow.disabled::before {
  filter: brightness(2);
}

.disclaimer a {
  color: #fff;
}/*# sourceMappingURL=style.css.map */