@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 222.2 47.4% 11.2%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --radius: 0.5rem;
  --secondary-background: 23 44% 96%;
  --theme-primary: 351 81% 35%;
  --success: 158 100% 37%;
  --danger: 354 70% 54%;
}

/*--- 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, 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, 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;
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: -webkit-fill-available;
}

body {
  font-family: "Manrope", "Manrope Placeholder", sans-serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 0.313rem;
  height: 0.313rem;
  background-color: #F5F5F5;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
  background-color: #b2b2b2;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.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);
  }
}
.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: hsl(var(--theme-primary));
  color: #FFF;
  border: none;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary svg, .btn-primary i {
  margin-right: 0.938rem;
  font-size: 1.25rem;
}
.btn-primary:active {
  background: hsl(var(--theme-primary)/0.9);
  color: #FFF;
}
.btn-primary:active:focus-visible {
  background: hsl(var(--theme-primary)/0.9);
}
.btn-primary:hover {
  background: hsl(var(--theme-primary)/0.9);
  color: #FFF;
}
.btn-primary:focus, .btn-primary:focus-visible {
  background: hsl(var(--theme-primary)/0.9);
  color: #FFF;
}

.btn-secondary {
  background: hsl(var(--primary));
  color: #FFF;
  border: solid 1px hsl(var(--primary));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary svg, .btn-secondary i {
  margin-right: 0.613rem;
  font-size: 1.25rem;
}
.btn-secondary:active {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}
.btn-secondary:active:focus-visible {
  background: hsl(var(--primary)/0.9);
}
.btn-secondary:hover {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}
.btn-secondary:focus, .btn-secondary:focus-visible {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}

.btn-success {
  background: hsl(var(--success));
  color: #FFF;
  border: solid 1px hsl(var(--success));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-success svg, .btn-success i {
  margin-right: 0.938rem;
  font-size: 1.25rem;
}
.btn-success:active {
  background: hsl(var(--success)/0.9);
  color: #FFF;
}
.btn-success:active:focus-visible {
  background: hsl(var(--success)/0.9);
}
.btn-success:hover {
  background: hsl(var(--success)/0.9);
  border-color: hsl(var(--success)/0.9);
  color: #FFF;
}
.btn-success:focus, .btn-success:focus-visible {
  background: hsl(var(--success)/0.9);
  color: #FFF;
}

.btn-danger {
  background: hsl(var(--danger));
  color: #FFF;
  border: solid 1px hsl(var(--danger));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-danger svg, .btn-danger i {
  margin-right: 0.938rem;
  font-size: 1.25rem;
}
.btn-danger:active {
  background: hsl(var(--danger)/0.9);
  color: #FFF;
}
.btn-danger:active:focus-visible {
  background: hsl(var(--danger)/0.9);
}
.btn-danger:hover {
  background: hsl(var(--danger)/0.9);
  border-color: hsl(var(--danger)/0.9);
  color: #FFF;
}
.btn-danger:focus, .btn-danger:focus-visible {
  background: hsl(var(--danger)/0.9);
  color: #FFF;
}

.btn-outline {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 1px hsl(var(--primary));
}
.btn-outline svg, .btn-outline i {
  margin-right: 0.938rem;
  font-size: 1.25rem;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:focus-visible {
  background: hsl(var(--primary)/0.9);
  border: solid 1px hsl(var(--primary));
  color: #FFF;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}

.btn:first-child:active, :not(.btn-check) + .btn:active {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}

.btn-lg {
  font-size: 0.938rem;
  font-weight: 700;
  padding: 0.938rem 1.563rem !important;
}

.btn-sm {
  padding: 0.5rem 0.625rem !important;
  font-size: 0.813rem;
  border-radius: 0.375rem;
}
.btn-sm i {
  font-size: 0.875rem;
  margin-right: 0.625rem;
}

.btn-link {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: hsl(var(--primary)/0.8);
  background: transparent !important;
}
.btn-link.btn:first-child:active, .btn-link:not(.btn-check) + .btn-link.btn:active {
  color: hsl(var(--primary)/0.8);
  background: transparent !important;
}

.ripple-effect {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.dropdown-toggle {
  border: solid 2px transparent;
  background: transparent;
}
.dropdown-toggle i {
  font-size: 11px;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle:active, .dropdown-toggle:focus, .dropdown-toggle:active {
  border: solid 2px transparent;
}

.dropdown-menu {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  padding: 0.313rem;
  min-width: 11.25rem;
  border: none;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-item {
  padding: 0.625rem 0.938rem;
  font-size: 0.813rem;
  font-weight: 500;
  border-radius: 0.375rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:hover {
  background: #f1f5f9;
  color: hsl(var(--primary));
}
.dropdown-menu .dropdown-item.active i, .dropdown-menu .dropdown-item:active i, .dropdown-menu .dropdown-item:hover i {
  opacity: 1;
}

.modal .modal-content {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  border: none;
  border-radius: 10px;
}
.modal .modal-body {
  padding: 15px;
}

.modal-header {
  padding: 15px 15px;
  border: none;
}
.modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.offcanvas {
  border: none !important;
  border-radius: 0.5rem;
  margin: 0.5rem;
  overflow: hidden;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.offcanvas .offcanvas-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.form-floating {
  position: relative;
}
.form-floating .icon {
  position: absolute;
  right: 15px;
  top: 18px;
  display: flex;
  align-items: center;
}
.form-floating.icon-view .form-control {
  padding-right: 50px;
}

.toggle-password {
  width: 20px;
  height: 20px;
}
.toggle-password.hide-pass {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWV5ZSI+PHBhdGggZD0iTTIuMDYyIDEyLjM0OGExIDEgMCAwIDEgMC0uNjk2IDEwLjc1IDEwLjc1IDAgMCAxIDE5Ljg3NiAwIDEgMSAwIDAgMSAwIC42OTYgMTAuNzUgMTAuNzUgMCAwIDEtMTkuODc2IDAiLz48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIzIi8+PC9zdmc+");
  background-size: 20px;
}
.toggle-password.show-pass {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWV5ZS1jbG9zZWQiPjxwYXRoIGQ9Im0xNSAxOC0uNzIyLTMuMjUiLz48cGF0aCBkPSJNMiA4YTEwLjY0NSAxMC42NDUgMCAwIDAgMjAgMCIvPjxwYXRoIGQ9Im0yMCAxNS0xLjcyNi0yLjA1Ii8+PHBhdGggZD0ibTQgMTUgMS43MjYtMi4wNSIvPjxwYXRoIGQ9Im05IDE4IC43MjItMy4yNSIvPjwvc3ZnPg==");
  background-size: 20px;
}

.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(55px + var(--bs-border-width) * 2);
  min-height: calc(55px + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  background: transparent;
}

.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 {
  background: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label.error::after {
  background: #FFF;
}

.form-floating > .form-control-plaintext ~ label.error::after, .form-floating > .form-control:focus ~ label.error::after, .form-floating > .form-control:not(:placeholder-shown) ~ label.error::after, .form-floating > .form-select ~ label::after {
  background: #FFF;
}

.form-floating > .form-select:disabled ~ label::after {
  background: transparent;
}

.form-floating label.error {
  background: #FFF;
  z-index: 11;
  border: none;
  margin-top: 1px;
  margin-left: 1px;
  border-radius: 8px;
  height: calc(100% - 2px);
  font-size: 13px;
  color: #e9435d;
  white-space: pre-wrap;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label.error {
  background: transparent;
  color: #e9435d;
  transform: scale(0.9) translateY(-12px) translateX(2px);
}

.form-floating > .form-control:focus ~ label.error, .form-floating > .form-control:not(:placeholder-shown) ~ label.error, .form-floating > .form-select ~ label.error {
  background: transparent;
  color: #e9435d;
  transform: scale(0.9) translateY(-12px) translateX(2px);
}

.form-control {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  border-radius: 6px;
  border-color: hsl(var(--border));
}
.form-control.error {
  border-color: #e9435d;
}

.iti {
  width: 100%;
}
.iti .form-control {
  height: calc(55px + var(--bs-border-width) * 2);
  min-height: calc(55px + var(--bs-border-width) * 2);
}
.iti .form-control.error {
  border-color: #e9435d;
}

.iti--inline-dropdown .iti__dropdown-content {
  --iti-border-color: hsl(var(--border));
  z-index: 9;
}

.iti__search-input {
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.iti__country {
  padding: 0.613rem;
}

.iti__country.iti__highlight {
  background-color: hsl(var(--secondary-background));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 25px 15px 15px 15px;
}

.form-select {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  border-radius: 6px;
}
.form-select.error {
  border-color: #e9435d;
}

.select2-container .select2-selection--single {
  height: calc(50px + var(--bs-border-width) * 2);
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
}

.select2-dropdown {
  border: 1px solid hsl(var(--border));
}

.select2-results__option {
  padding: 0.875rem;
  font-size: 0.875rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0.938rem;
  font-size: 0.938rem;
  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 hsl(var(--border));
  border-radius: 6px;
  padding: 0.5rem 0.613rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--secondary-background));
  color: #000;
}

.select2-container--default .select2-results__option--selected {
  background-color: hsl(var(--primary));
  color: #FFF;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 20px;
}

.select2-container .select2-dropdown, .select2-container .select2-selection {
  border-color: hsl(var(--border)) !important;
}

.select2-selection__arrow {
  position: relative;
  display: grid;
  place-content: center;
}
.select2-selection__arrow b {
  display: none;
}
.select2-selection__arrow::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtY2hldnJvbi1kb3duIj48cGF0aCBkPSJtNiA5IDYgNiA2LTYiLz48L3N2Zz4=");
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-floating > label {
  display: flex;
  align-items: center;
  padding: 15px;
  font-size: 14px;
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 25px;
  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: 25px;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.9) translateY(-12px) translateX(2px);
  padding: 10px 15px;
}

.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(-12px) translateX(2px);
  padding: 10px 15px;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  top: 14px;
  background: transparent;
}

.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;
  background: transparent;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 15px;
}

.form-control:focus,
.form-check-input:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px rgb(33, 33, 33);
  outline: 0;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}
.form-check:not(:last-child) {
  margin-bottom: 5px;
}

.form-check-label {
  white-space: nowrap;
  font-size: 13px;
}
.form-check-label a {
  color: hsl(var(--theme-primary));
}

.checkbox .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGVjayI+PHBhdGggZD0iTTIwIDYgOSAxN2wtNS01Ii8+PC9zdmc+);
}
.checkbox .form-check-input {
  width: 20px;
  height: 20px;
  border-width: 1px;
}

/*---------------------*/
.md-topbar {
  background: hsl(var(--primary));
  padding: 0.313rem 0;
}
.md-topbar a {
  color: #FFF;
  font-size: 0.813rem;
  font-size: 1.125rem;
}
.md-topbar p {
  font-size: 0.875rem;
  color: #FFF;
}
.md-topbar p strong {
  font-weight: 700;
}
.md-topbar .md-trustpilot {
  color: #FFF;
  font-weight: 600;
}
.md-topbar .md-trustpilot img {
  width: 100px;
  margin-left: 5px;
}

.currency-toggle {
  color: #FFF;
  line-height: 0 !important;
}
.currency-toggle.btn-link {
  text-decoration: none;
  font-size: 0.813rem;
  line-height: 1.25rem;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 0.313rem;
}
.currency-toggle.btn-link img {
  width: 20px;
}
.currency-toggle.btn-link:hover {
  color: #FFF;
}
.currency-toggle.btn-link:active {
  color: #FFF;
}
.currency-toggle.btn-link:focus {
  box-shadow: none;
}
.currency-toggle.btn.show {
  color: #FFF;
}

.country-dropdown {
  top: 1.875rem !important;
}
.country-dropdown .dropdown-item {
  padding: 0.375rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.313rem;
  font-size: 0.75rem;
  line-height: 0.5rem;
  font-weight: 600;
}
.country-dropdown .dropdown-item img {
  width: 20px;
}
.country-dropdown .dropdown-item.active, .country-dropdown .dropdown-item:active, .country-dropdown .dropdown-item:hover {
  color: #000;
}

.word {
  height: 20px;
  overflow: hidden;
  text-align: center;
  color: #FFF;
  font-weight: 500;
}

.offers {
  font-size: 14px;
  line-height: 20px;
}
.offers span {
  color: #fde047;
  font-weight: 700;
}

.md-navbrand {
  max-width: 200px;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.md-navbrand a {
  display: block;
}
.md-navbrand a > img {
  max-width: 100% !important;
}

.md-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.md-header-right a {
  display: block;
  position: relative;
  padding: 0.5rem;
}
.md-header-right .dropdown-menu.show {
  margin-top: 55px !important;
}
.md-header-right svg {
  stroke: #69697a;
}
.md-header-right svg:hover {
  stroke: #0f172a;
}

[data-count]:after {
  content: attr(data-count);
  position: absolute;
  right: -2px;
  top: 2px;
  font-size: 0.688rem;
  font-weight: 700;
  border-radius: 3.125rem;
  background-color: #0f172a;
  border: solid 2px #FFF;
  color: #FFF;
  width: 22px;
  height: 22px;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-logged-in {
  display: flex;
  gap: 0.625rem;
}
.md-logged-in p {
  text-align: right;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  letter-spacing: 0.2px;
  color: hsl(var(--muted-foreground));
}
.md-logged-in strong {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
}

.navbar-expand-lg .navbar-nav .nav-link {
  --bs-navbar-nav-link-padding-x: 1.25rem;
}

.site-header {
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  filter: drop-shadow(11px 0px 14px rgba(0, 0, 0, 0.08));
}

.navbar {
  border-top: solid 1px hsl(var(--border));
  border-bottom: solid 1px hsl(var(--border));
  padding: 0;
  height: 48px;
}
.navbar .nav-link {
  padding: 0.98rem 1.25rem;
  font-size: 0.895rem;
  font-weight: 600;
  color: #020817;
}
.navbar .nav-link.dropdown-toggle {
  border: none;
  height: 45.6px !important;
}
.navbar .nav-link:hover {
  background: #f1f5f9;
}
.navbar .nav-link.active {
  background: #f1f5f9;
}

.sub-menu .nav-link {
  padding: 0.65rem 0.938rem !important;
  font-size: 0.813rem !important;
  font-weight: 500 !important;
  border-radius: 0.375rem !important;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1px;
}
.sub-menu .nav-link.active, .sub-menu .nav-link:active, .sub-menu .nav-link:hover {
  background: #f1f5f9 !important;
  color: hsl(var(--primary)) !important;
}
.sub-menu .nav-link.active i, .sub-menu .nav-link:active i, .sub-menu .nav-link:hover i {
  opacity: 1;
}

.megamenu {
  position: static !important;
}
.megamenu .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: 25px;
}

.md-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.md-link-grid a {
  flex: 0 0 30.33%;
  border-radius: 0.5rem;
  background: #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  transition: all 0.3s ease;
}
.md-link-grid a:hover {
  background: hsl(var(--primary));
  color: #FFF;
}

.md-popular {
  display: block;
  text-align: center;
}
.md-popular img {
  border-radius: 0.5rem;
}
.md-popular h6 {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  color: #000;
}

.md-offcanvas-nav .offcanvas.offcanvas-start {
  border: none;
}
.md-offcanvas-nav .offcanvas-body .navbar-nav .nav-link {
  padding: 0.813rem 0rem !important;
  font-size: 14px;
  font-weight: 600;
  color: #020817;
}

.md-doo-search-wrapper {
  width: 450px;
  margin: 0.5rem auto;
  padding: 0.313rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.4rem;
}
.md-doo-search-wrapper form {
  position: relative;
  display: flex;
}
.md-doo-search-wrapper form .form-control {
  height: 38px;
  padding: 0 0.25rem;
  border: none;
  font-size: 0.938rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.md-doo-search-wrapper form .form-control::-moz-placeholder {
  font-weight: 500;
  opacity: 0.8;
  font-size: 0.875rem;
}
.md-doo-search-wrapper form .form-control::placeholder {
  font-weight: 500;
  opacity: 0.8;
  font-size: 0.875rem;
}
.md-doo-search-wrapper form .form-control:focus {
  box-shadow: none;
}
.md-doo-search-wrapper form .btn-img-search {
  border: none;
  background: transparent;
  margin-right: 0.938rem;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.md-doo-search-wrapper .btn-secondary {
  font-size: 0.835rem;
  padding: 0.5rem 1.25rem;
}

footer {
  background: hsl(var(--secondary-background));
  padding: 1.875rem 0 1.25rem 0;
}
footer .md-footer-nav {
  position: relative;
}
footer .md-footer-nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  width: 1px;
  height: 100%;
  background: #e7e1dd;
}
footer h4 {
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
footer ul li a {
  display: block;
  color: #797979;
  font-size: 0.813rem;
  line-height: 1.4;
}
footer ul li:not(:last-child) {
  margin-bottom: 0.938rem;
}
footer .md-support-nav {
  background: #FFF;
  padding: 0.875rem;
  border-radius: 0.313rem;
  margin: 0 0 0.875rem 0;
}
footer .md-tag-cloud {
  background: #FFF;
  padding: 0.875rem;
  border-radius: 0.313rem;
  margin: 1.25rem 0;
}
footer .md-tag-cloud > .nav {
  display: block;
}
footer .md-tag-cloud ul > li {
  margin: 0 !important;
  display: block;
}
footer .md-tag-cloud ul > li ul > li {
  display: inline-block;
  margin: 0;
}
footer .md-tag-cloud ul > li ul > li:first-child a {
  font-weight: 700;
  color: #000;
}
footer .md-tag-cloud ul > li ul > li:first-child a::after {
  display: none;
}
footer .md-tag-cloud ul > li ul > li:last-child::after {
  display: none;
}
footer .md-tag-cloud ul > li a {
  display: inline-block;
  padding: 0.313rem 0.5rem;
  border-radius: 0.313rem;
  font-size: 0.75rem;
  color: #7e7e7e;
  position: relative;
  margin: 0;
}
footer .md-tag-cloud ul > li a::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #545454;
  border-radius: 12px;
  top: 10px;
  left: -3px;
}
footer .md-payment-options img {
  width: 45px;
}
footer .md-social img {
  width: 35px;
}

.md-copyright {
  background: hsl(var(--primary));
  padding: 0.875rem 0;
  color: #FFF;
  text-align: center;
  font-size: 0.813rem;
}

.md-customer-reviews {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: hsl(var(--primary));
  color: #FFF;
  padding: 0.5rem 0.5rem;
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: 0.25rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.md-chat {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #22a56e;
  color: #FFF;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transform: rotate(0deg) scale(1);
  z-index: 10;
}
.md-chat:hover {
  opacity: 1;
  transform: rotate(0deg) scale(1.1);
}

.md-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #FFF;
  display: none;
  align-items: center;
  justify-content: space-between;
  filter: drop-shadow(11px 0px 14px rgba(0, 0, 0, 0.08));
  height: 65px;
}
.md-mobile-nav a {
  height: 100%;
  padding: 0.5rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 1;
}
.md-mobile-nav a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  margin-top: 0.313rem;
  color: #000;
}
.md-mobile-nav a.active {
  position: relative;
}
.md-mobile-nav a.active::after {
  content: "";
  width: 100%;
  height: 4px;
  background: hsl(var(--theme-primary));
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.md-mobile-nav [data-count]:after {
  position: static;
  display: inline-flex;
  font-size: 10px;
  width: 20px;
  height: 20px;
}

.md-banner-wrap .col-sm-9 {
  width: 70%;
}
.md-banner-wrap .col-sm-3 {
  width: 30%;
}
.md-banner-wrap .embla {
  overflow: hidden;
}
.md-banner-wrap .embla__container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  margin-left: 0;
}
.md-banner-wrap .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.md-banner {
  padding-top: 50%;
  position: relative;
}
.md-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.md-slider.embla {
  padding-top: 41.6666666667%;
  position: relative;
  height: 100%;
  max-width: none;
}
.md-slider img {
  width: 100%;
  height: 100%;
}
.md-slider .embla__slide {
  padding-left: 0;
}
.md-slider .embla__controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
}
.md-slider .embla__controls .embla__buttons {
  display: flex;
  flex: 1;
  justify-content: space-between;
  min-width: 96%;
}
.md-slider .embla__controls .embla__buttons .embla__button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 32px;
  height: 32px;
  background: #FFF;
  border-radius: 50%;
  z-index: 1;
  border-radius: 50%;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.md-slider .embla__controls .embla__buttons .embla__button:disabled {
  color: var(--detail-high-contrast);
}
.md-slider .embla__controls .embla__buttons .embla__button__svg {
  width: 35%;
  height: 35%;
}

.md-title-wrapper {
  padding: 1.875rem 0 2.5rem;
}
.md-title-wrapper h1 {
  font-size: clamp(1.25rem, 2.5vw, 1.563rem);
  margin-bottom: 0.938rem;
  text-align: center;
  font-weight: 700;
}
.md-title-wrapper h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.563rem);
  margin-bottom: 0.938rem;
  text-align: center;
  font-weight: 700;
}
.md-title-wrapper h3 {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
}
.md-title-wrapper p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

.md-custom-wallpaper {
  position: relative;
}
.md-custom-wallpaper .right-content {
  padding: 1.875rem;
}
.md-custom-wallpaper .right-content h2 {
  max-width: 28.125rem;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1.875rem;
  line-height: 1.4;
}
.md-custom-wallpaper .right-content p {
  font-size: clamp(0.875rem, 2.5vw, 0.938rem);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
}

.md-features {
  padding: 2.5rem 0 1.875rem 0;
}
.md-features .f-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: solid 1px #ECECEC;
  border-radius: 50%;
}
.md-features h6 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.md-features p {
  color: hsl(var(--muted-foreground));
  font-size: 0.813rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.md-blogs-wrapper::after {
  content: "";
  width: 100%;
  min-height: 16.125rem;
  background: #FAF5F2;
  display: block;
  margin-top: -12.25rem;
}
.md-blogs-wrapper .md-blog a {
  display: block;
}
.md-blogs-wrapper .md-blog img {
  margin-bottom: 0.938rem;
  border-radius: 6px;
}
.md-blogs-wrapper .md-blog h3 {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.938rem;
  color: hsl(var(--foreground));
}
.md-blogs-wrapper .md-blog p {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.md-seo-content-wrapper {
  padding: 30px 0;
  border-top: solid 1px hsl(var(--border));
}
.md-seo-content-wrapper h1 {
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h2 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h3 {
  font-size: clamp(16px, 2.5vw, 16px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h5 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper p {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.7;
  letter-spacing: 0.4px;
  color: hsl(var(--muted-foreground));
}
.md-seo-content-wrapper p strong {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 26px;
  color: #000;
}
.md-seo-content-wrapper ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
.md-seo-content-wrapper ul li {
  list-style-type: disc;
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
}
.md-seo-content-wrapper ul li strong {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #000;
}
.md-seo-content-wrapper ol {
  margin-bottom: 15px;
  padding-left: 20px;
}
.md-seo-content-wrapper ol li {
  list-style-type: decimal;
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
  color: hsl(var(--muted-foreground));
}
.md-seo-content-wrapper ol li strong {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 26px;
  color: #000;
}
.md-seo-content-wrapper a {
  color: var(--primary-foreground);
  font-weight: 600;
}
.md-seo-content-wrapper .seo-content {
  position: relative;
  height: 200px;
  overflow: hidden;
  transition: ease 0.3s all;
}
.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: 30px;
       column-gap: 30px;
}
.md-seo-content-wrapper .seo-content.show-full-content {
  height: auto;
  transition: ease 0.3s all;
}
.md-seo-content-wrapper .seo-content.show-full-content::after {
  display: none;
}

.moreless-button, .viewmore-button {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 20px 0 0;
  text-decoration: underline;
}
.moreless-button i, .viewmore-button i {
  transition: 0.3s all ease;
}

.md-product-slider {
  position: relative;
  background: hsl(var(--secondary-background)/0.4);
  margin-bottom: 1.875rem;
}
.md-product-slider .embla__viewport {
  max-height: 32rem;
}
.md-product-slider .embla__slide {
  max-height: 32rem;
  flex: 0 0 100%;
  aspect-ratio: 2/1;
}
.md-product-slider .embla__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.md-product-info {
  margin-bottom: 1rem;
}
.md-product-info .md-product-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.md-product-info h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.md-product-info .md-price {
  display: flex;
  align-items: center;
  gap: 0.938rem;
}
.md-product-info .md-price .md-offer {
  font-size: 1.125rem;
  font-weight: 700;
  color: #d75c64;
}
.md-product-info .md-price .dropdown-toggle {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-left: -0.5rem;
  border: none;
}
.md-product-info .md-price .dropdown-toggle:hover {
  background: #f1f5f9;
}
.md-product-info .md-price .parameter {
  font-weight: 600;
  font-size: 14px;
}
.md-product-info .md-price del {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  display: inline-block;
}
.md-product-info .dropdown-menu.show {
  transform: translate(-5px, 38px) !important;
}

.md-rating-reviews {
  display: flex;
  align-items: center;
}
.md-rating-reviews a {
  display: flex;
  align-items: center;
}
.md-rating-reviews a p {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  padding: 0 10px;
  font-weight: 600;
}
.md-rating-reviews a:hover {
  color: #000;
}

.m-label {
  color: hsl(var(--muted-foreground));
}

.md-color-variations .md-colors a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #FFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.md-color-variations .md-colors a img {
  -o-object-fit: cover;
     object-fit: cover;
  padding: 2px;
}
.md-color-variations .md-colors a.active {
  border: 2px solid hsl(var(--primary)) !important;
}
.md-color-variations .md-colors a:hover {
  border: solid 2px hsl(var(--border));
}

.md-dimensions-wrap {
  position: relative;
  z-index: 9;
  margin-top: -80px;
  margin-bottom: 1.875rem;
}
.md-dimensions-wrap .bg {
  background: hsl(var(--secondary-background));
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}
.md-dimensions-wrap h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
}

.size-wrapper .input-wrapper {
  display: flex;
  gap: 1.25rem;
}
.size-wrapper .input-wrapper .with-icon {
  position: relative;
  margin-bottom: 0.875rem;
  flex: 1;
}
.size-wrapper .input-wrapper .with-icon .form-control {
  box-sizing: border-box;
  padding: 0.938rem 3.125rem;
  height: 3.125rem;
  font-weight: 600;
}
.size-wrapper .input-wrapper .with-icon .form-control::-moz-placeholder {
  font-size: 14px;
  opacity: 0.6;
}
.size-wrapper .input-wrapper .with-icon .form-control::placeholder {
  font-size: 14px;
  opacity: 0.6;
}
.size-wrapper .input-wrapper .with-icon .icon {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 1rem;
  border-right: 1px solid #e2e8f0;
  padding: 5px 10px;
  height: calc(100% - 2px);
  display: grid;
  place-content: center;
}
.size-wrapper .input-wrapper .with-icon .param {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.875rem;
  font-weight: 600;
  height: 100%;
  display: grid;
  padding: 5px 10px;
  place-content: center;
}
.size-wrapper .total-area {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.size-wrapper .total-area strong {
  font-weight: 700;
  color: #000;
}
.size-wrapper .total-area a {
  font-size: 0.813rem;
  color: #000;
}
.size-wrapper .total-area a:hover {
  color: hsl(var(--theme-primary));
}
.size-wrapper .radio-wrapper {
  margin: 1rem 0 0.75rem;
}

.form-check-inline {
  display: inline-flex;
  margin-right: 1rem;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input {
  margin-top: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: solid 2px hsl(var(--border));
}

.form-check-input:checked {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
  border-width: 0;
}

.md-total {
  font-size: 1.125rem;
  font-weight: 800;
}

.muted-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.muted-btn:hover, .muted-btn:active, .muted-btn:focus {
  background: hsl(var(--muted-foreground)/0.1);
}
.muted-btn.btn:active {
  background: hsl(var(--muted-foreground)/0.1);
}

.fav:hover, .fav:active, .fav:focus {
  background: #e11d48 !important;
}
.fav:hover svg, .fav:active svg, .fav:focus svg {
  stroke: #FFF;
}

.tooltip {
  font-size: 12px;
  font-weight: 500;
}

.md-product-id, .md-delivery-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.md-product-id strong, .md-delivery-date strong {
  font-weight: 700;
  color: hsl(var(--primary));
  cursor: pointer;
}

.md-categories-wrap {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 0;
}
.md-categories-wrap .md-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.md-categories-wrap .md-categories a {
  padding: 0.375rem 0.5rem;
  border-radius: 3px;
  font-size: 0.688rem;
  text-transform: uppercase;
  background: hsl(var(--secondary-background));
  font-weight: 600;
  color: #4A382E;
}
.md-categories-wrap .md-categories a:hover {
  background: #ece2db;
}

.product-details .tablist {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid hsl(var(--border));
}
.product-details .tablist .arrow-btn {
  background: #FFF;
  padding: 0;
  border: none;
  width: 60px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.product-details .tablist .nav-underline {
  --bs-nav-underline-gap: 0;
}
.product-details .tablist .nav-underline .nav-item .nav-link {
  font-size: 0.875rem;
  padding: 0.938rem 1.875rem;
  color: #7b818b;
  border-bottom: 2px solid #FFF;
  font-weight: 500;
}
.product-details .tablist .nav-underline .nav-item .nav-link.active {
  font-weight: 500;
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.product-details .tab-content {
  padding: 1.563rem 0;
}
.product-details .tab-content p {
  color: #49505a;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.product-details .tab-content p a {
  color: hsl(var(--primary));
  font-weight: 700;
}
.product-details .tab-content ul {
  margin-left: 1.125rem;
  margin-bottom: 1.25rem;
}
.product-details .tab-content ul li {
  color: #49505a;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}
.product-details .tab-content .md-pro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.md-pro-features .bx {
  padding: 10px;
  text-align: center;
}
.md-pro-features .bx img {
  margin-bottom: 1rem;
  width: 50px;
}
.md-pro-features .bx p {
  margin: 0;
}
.md-pro-features h5 {
  font-size: 0.938rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}
.md-pro-features p {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
  color: #49505a;
}

.md-content {
  margin: 0 auto;
}
.md-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.md-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.md-content p {
  margin-bottom: 1rem !important;
}

.md-big-title {
  font-size: 1.563rem;
  line-height: 1.4;
}
.md-big-title span {
  display: block;
  color: hsl(var(--theme-primary));
}

.embla_common {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 10px;
  --slide-size: 100%;
  --slide-spacing-sm: 1.6rem;
  --slide-size-sm: 50%;
  --slide-spacing-lg: 1rem;
  --slide-size-lg: calc(100% / 4);
}
.embla_common .embla__viewport {
  overflow: hidden;
}
.embla_common .embla__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
@media (min-width: 750px) {
  .embla_common .embla__container {
    margin-left: calc(var(--slide-spacing-sm) * -1);
  }
}
@media (min-width: 1200px) {
  .embla_common .embla__container {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
}
.embla_common .embla__slide_material {
  min-width: 0;
  flex: 0 0 var(--slide-size);
  padding-left: var(--slide-spacing);
}
@media (min-width: 750px) {
  .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-sm);
    padding-left: var(--slide-spacing-sm);
  }
}
@media (min-width: 1200px) {
  .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
.embla_common .md-material-preview {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.embla_common .md-material-preview img {
  -o-object-fit: cover;
     object-fit: cover;
}
.embla_common h3 {
  font-size: 0.938rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.accordion {
  display: grid;
  gap: 0.625rem;
}

.accordion-item {
  border: 0;
}

.accordion-button {
  --bs-accordion-btn-padding-x: 1rem;
  --bs-accordion-btn-padding-y: .75rem;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 0.938rem;
  font-weight: 600;
  border: 0px;
  border-radius: 0.375rem !important;
  background: hsl(var(--secondary-background));
  color: hsl(var(--foreground));
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: hsl(var(--secondary-background));
  color: hsl(var(--foreground));
  box-shadow: none;
}

.accordion-button::after {
  --bs-accordion-btn-icon-width: 15px;
  --bs-accordion-btn-icon-height: 15px;
  --bs-accordion-btn-icon-width: 15px;
}

.md-place-order.offcanvas-end {
  --bs-offcanvas-width: calc(100% - 1rem);
  border: none;
}
.md-place-order .offcanvas-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.md-place-order h4 {
  font-size: 0.938rem;
  margin: 1rem 0;
  font-weight: 600;
}
.md-place-order .offcanvas-header {
  border-bottom: solid 1px hsl(var(--border));
}
.md-place-order .md-cropper {
  margin: -1rem -1rem 1rem -1rem;
  background: hsl(var(--secondary-background));
  max-height: 440px;
}
.md-place-order .embla_common {
  max-width: none;
  margin: auto;
  --slide-height: 19rem;
  --slide-size: 100%;
  --slide-spacing-lg: 1rem;
  --slide-size-lg: calc(100% / 5);
}
@media (min-width: 320px) {
  .md-place-order .embla_common {
    --slide-size-lg: calc(100% / 3);
    --slide-spacing-lg: 10px;
    --slide-spacing-sm: 10px;
  }
  .md-place-order .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
  }
}
@media (min-width: 480px) {
  .md-place-order .embla_common {
    --slide-size-lg: calc(100% / 4);
    --slide-spacing-lg: 10px;
    --slide-spacing-sm: 10px;
  }
  .md-place-order .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
  }
  .md-place-order .embla_common .embla_material .embla__container {
    margin-left: calc(var(--slide-spacing-sm) * -1);
  }
}
@media (min-width: 640px) {
  .md-place-order .embla_common {
    --slide-size-lg: calc(100% / 5);
    --slide-spacing-lg: 10px;
    --slide-spacing-sm: 10px;
  }
  .md-place-order .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
  .md-place-order .embla_common .embla_material .embla__container {
    margin-left: calc(var(--slide-spacing-sm) * -1);
  }
}
@media (min-width: 992px) {
  .md-place-order .embla_common {
    --slide-size-lg: calc(100% / 3);
    --slide-spacing-lg: 10px;
    --slide-spacing-sm: 10px;
  }
  .md-place-order .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
  .md-place-order .embla_common .embla_material .embla__container {
    margin-left: calc(var(--slide-spacing-sm) * -1);
  }
}
@media (min-width: 1200px) {
  .md-place-order .embla_common {
    --slide-size-lg: calc(100% / 5);
  }
  .md-place-order .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
@media (min-width: 1400px) {
  .md-place-order .embla_common {
    --slide-size-lg: calc(100% / 5);
  }
  .md-place-order .embla_common .embla__slide_material {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
@media (min-width: 1900px) {
  .md-place-order .embla_common .embla__slide_material {
    --slide-size-lg: calc(100% / 5);
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
.md-place-order .btn-primary {
  max-width: 250px;
}

.cropper-bg {
  background: hsl(var(--secondary-background));
  background-image: none;
}

.md-cropper-preview {
  width: 100%;
  overflow: hidden;
  padding: 3px;
  border: solid 1px hsl(var(--border));
}
.md-cropper-preview img {
  display: block;
}

.error-text {
  font-size: 12px;
}

.item {
  display: block;
  border: solid 1px hsl(var(--border));
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 1px;
  cursor: pointer;
}
.item .material-cost {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
  background: #000;
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
}
.item h6 {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 4px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item img {
  width: 100%;
}
.item:hover {
  border: solid 1px hsl(var(--primary)/0.2);
}
.item.active {
  border: solid 1px hsl(var(--primary));
}

.alert {
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: .75rem;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 15px;
}
.alert > p {
  margin: 0 !important;
}
.alert svg {
  flex: 0 0 25px;
}
.alert strong {
  font-weight: 700;
}

.alert-secondary {
  --bs-danger-text-emphasis: #1d2632;
  --bs-danger-bg-subtle: #eff3fa;
  --bs-danger-border-subtle: #eff3fa;
  --icon: #122d50;
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
  font-weight: 500;
}

.alert-danger {
  --bs-danger-text-emphasis: #5F2120;
  --bs-danger-bg-subtle: #FDEDED;
  --bs-danger-border-subtle: #FDEDED;
  --icon: #D74242;
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}
.alert-danger svg path {
  stroke: var(--icon);
}

.alert-warning {
  --bs-warning-text-emphasis: #663C00;
  --bs-warning-bg-subtle: #FFF4E5;
  --bs-warning-border-subtle: #FFF4E5;
  --icon: #F08125;
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}
.alert-warning svg path {
  stroke: var(--icon);
}

.alert-info {
  --bs-info-text-emphasis: #014361;
  --bs-info-bg-subtle: #E5F6FD;
  --bs-info-border-subtle: #E5F6FD;
  --icon: #1993D5;
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}
.alert-info svg path {
  stroke: var(--icon);
}

.alert-success {
  --bs-success-text-emphasis: #1E4620;
  --bs-success-bg-subtle: #EDF7ED;
  --bs-success-border-subtle: #EDF7ED;
  --icon: #418945;
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}
.alert-success svg path {
  stroke: var(--icon);
}

.md-breadcrumb {
  padding: 0;
  border-top: solid 1px hsl(var(--border));
  border-bottom: solid 1px hsl(var(--border));
  margin-top: -1px;
}
.md-breadcrumb ol, .md-breadcrumb ul {
  display: flex;
  align-items: center;
  -webkit-line-clamp: 1;
  -webkit-box-orient: horizontal;
  margin: 0;
}
.md-breadcrumb ol li, .md-breadcrumb ul li {
  display: flex;
  position: relative;
  color: hsl(var(--primary));
  font-weight: 500;
  font-size: 13px;
}
.md-breadcrumb ol li a, .md-breadcrumb ul li a {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  display: block;
  padding-right: 0;
}
.md-breadcrumb ol li a.active, .md-breadcrumb ul li a.active {
  color: #000;
  font-weight: 600;
}
.md-breadcrumb ol.back, .md-breadcrumb ul.back {
  overflow: visible;
}
.md-breadcrumb ol.back li a, .md-breadcrumb ul.back li a {
  padding: 0;
}
.md-breadcrumb .md-category-dropdown {
  padding: 10px;
  font-weight: 500;
  background: #f1f5f9;
}
.md-breadcrumb .md-category-dropdown > a {
  color: #000 !important;
}

.breadcrumb-item.active {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #e2e2e2;
}

.md-filter-categories {
  border-radius: 0;
  border-color: hsl(var(--border));
}
.md-filter-categories ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}
.md-filter-categories ul a {
  display: block;
  padding: 8px;
  font-size: 14px;
  color: hsl(var(--foreground)/0.8);
}
.md-filter-categories ul a:hover {
  color: hsl(var(--theme-primary));
}

.md-filter {
  padding: 5px 0;
  border-bottom: solid 1px hsl(var(--border));
}
.md-filter .filter-wrapper {
  display: flex;
  justify-content: center;
}
.md-filter .filter {
  padding: 0rem 10px;
}
.md-filter .filter .btn-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: none;
  height: 34px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  line-height: 2;
}
.md-filter .filter .btn-link:active, .md-filter .filter .btn-link:focus, .md-filter .filter .btn-link:hover, .md-filter .filter .btn-link.show {
  color: hsl(var(--primary));
}
.md-filter .filter .dropdown-menu {
  padding: 14px;
}
.md-filter .input-group .form-control {
  font-size: 14px;
}
.md-filter .md-product-count {
  font-weight: 700;
  font-size: 14px;
  display: block;
}
.md-filter .show_type_selector {
  display: flex;
  overflow: hidden;
  font-size: 13px;
}
.md-filter .show_type_selector .interior {
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  padding: 3px 6px;
  display: inline-block;
  line-height: 2;
  height: 35px;
  font-weight: 600;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  letter-spacing: 0;
}
.md-filter .show_type_selector .design {
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 3px 6px;
  display: inline-block;
  line-height: 2;
  height: 35px;
  font-weight: 600;
  border: 1px solid hsl(var(--border));
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  letter-spacing: 0;
}
.md-filter .show_type_selector .active {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-color: #000;
}
.md-filter .show_type_selector .active:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.md-filter .show_type_selector span:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
}

.md-products-container {
  margin: 1.25rem auto 0 auto;
}
.md-products-container .grid-gallery {
  display: grid;
  gap: 0.625rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}
.md-products-container .grid-gallery .grid-item {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 10px;
}
.md-products-container .grid-gallery .grid-item > a {
  display: flex;
  align-items: flex-end;
  position: relative;
  text-decoration: none;
  height: auto;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 6px;
  height: 350px;
}
.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.5s;
}
.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.5s;
}
.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.5s;
}
.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.5s;
}
.md-products-container .grid-gallery .grid-item .grid-item-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 8rem;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  width: calc(100% - 0px);
  z-index: 1;
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}
.md-products-container .grid-gallery .grid-item .grid-item-content h3 {
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  color: #FFF;
}
.md-products-container .grid-gallery .grid-item h3 {
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  color: #000;
  padding: 0.938rem 0 0.613rem 0;
}
.md-products-container .grid-gallery .grid-item h3 a {
  color: #000;
}
.md-products-container .grid-gallery .grid-item .product-id {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 2;
}
.md-products-container .grid-gallery .grid-item .product-id button {
  background: #FFF;
  padding: 0.313rem 0.625rem;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
}
.md-products-container .grid-gallery .grid-item .product-category {
  position: absolute;
  left: 0.5rem;
  top: 2.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: 5px 8px;
  display: inline-block;
  border-radius: 50px;
  font-size: 0.813rem;
  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 .md-fav {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 2;
}
.md-products-container .grid-gallery .grid-item .md-fav .icon-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.md-products-container .grid-gallery .grid-item .md-fav .muted-btn {
  height: 28px;
  width: 28px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.md-products-container .grid-gallery .grid-item .md-fav .muted-btn svg {
  stroke: #554c43;
}
.md-products-container .grid-gallery .grid-item .md-fav .muted-btn:hover, .md-products-container .grid-gallery .grid-item .md-fav .muted-btn:active, .md-products-container .grid-gallery .grid-item .md-fav .muted-btn:focus {
  background: #e11d48 !important;
}
.md-products-container .grid-gallery .grid-item .md-fav .muted-btn:hover svg, .md-products-container .grid-gallery .grid-item .md-fav .muted-btn:active svg, .md-products-container .grid-gallery .grid-item .md-fav .muted-btn:focus svg {
  stroke: #FFF;
}
.md-products-container .grid-gallery .grid-item .md-fav .muted-btn.active {
  background: #e11d48 !important;
}
.md-products-container .grid-gallery .grid-item .md-fav .muted-btn.active svg {
  stroke: #FFF;
}
.md-products-container .grid-gallery .grid-item:last-child {
  display: none;
}
.md-products-container .grid-gallery .grid-item .variation-switcher {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.md-products-container .grid-gallery .grid-item .variation-switcher li {
  border-radius: 50%;
}
.md-products-container .grid-gallery .grid-item .variation-switcher li.active img {
  border: 2px solid #FFF !important;
}
.md-products-container .grid-gallery .grid-item .variation-switcher img {
  width: 45px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.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.5s;
}

.woocommerce-shop .md-products-container .grid-gallery .grid-item:last-child {
  display: block;
}

.pagination-text {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin: 0 0 18px;
}

.cursor-pointer {
  cursor: pointer;
}

.md-copy-link {
  position: relative;
  margin-bottom: 20px;
}
.md-copy-link .form-control {
  padding: 15px 75px 15px 15px;
  font-size: 15px;
  text-overflow: ellipsis;
  color: #5b5b5b;
  font-weight: 600;
}
.md-copy-link .form-control:hover {
  border-color: #dee2e6;
}
.md-copy-link .btn-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: 1px;
  right: 1px;
  text-decoration: none;
  color: #000;
  height: calc(100% - 2px);
  background: white;
  padding: 0 15px;
  border-radius: 8px;
}
.md-copy-link .btn-link:active {
  background: transparent;
  color: #000;
}

.md-share-option {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.md-share-option a {
  display: block;
  text-align: center;
}
.md-share-option a span {
  font-size: 12px;
  margin: 10px 0;
  display: block;
  color: hsl(var(--muted-foreground));
}

.md-cart-wrapper {
  --bs-offcanvas-width: 560px;
}

.md-cart .cart-item-preview {
  margin-right: 0.938rem;
}
.md-cart .cart-item-preview img {
  padding: 0;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-cart .cart-price {
  margin-top: 25px;
}
.md-cart .btn-link {
  border: none !important;
  height: auto !important;
  width: auto !important;
  padding: 0 !important;
  align-items: flex-end !important;
  justify-content: right !important;
  font-size: 1rem !important;
}
.md-cart .btn-link:hover {
  background: transparent !important;
  color: #e05353 !important;
}

.cart-block {
  border: solid 1px hsl(var(--border));
  border-radius: 8px;
}

.cart-item {
  padding: 0.938rem;
}
.cart-item:not(:first-child) {
  border-top: solid 1px hsl(var(--border));
}
.cart-item .cart-item-details h5 {
  margin-bottom: 10px;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.938rem;
  line-height: 1.5;
}
.cart-item .cart-item-details h5 a {
  color: hsl(var(--primary));
}
.cart-item .cart-item-details p {
  font-size: 0.813rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}
.cart-item .cart-item-details p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.cart-item .cart-item-details p strong {
  font-weight: 600;
  color: hsl(var(--primary));
}

.cart-item-pricing {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 14px;
}

.cart-item-actions .muted-btn {
  margin-top: -10px;
}

.offcanvas-footer .cart-totals {
  background: #FAF5F2;
  padding: 0.938rem;
  margin-top: 0;
}
.offcanvas-footer .cart-totals p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.md-cart-wrapper {
  padding: 3rem 0;
}
.md-cart-wrapper .final-total {
  position: sticky;
  width: 100%;
  bottom: 0;
  background: #FFF;
}

.cart-item-preview img {
  border-radius: 5px;
}

.cart-operations {
  border: solid 1px hsl(var(--border));
  border-radius: 8px;
  padding: 1.25rem;
}
.cart-operations h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.cart-operations p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}
.cart-operations p strong {
  font-weight: 600;
  color: #000;
}
.cart-operations p span {
  font-size: 0.938rem;
  font-weight: 600;
  color: #000;
}
.cart-operations p a {
  color: hsl(var(--theme-primary));
  font-size: 14px;
}

.btn-coupon {
  padding: 0.5rem;
  background: #ebf7fc;
  color: #005A89;
  width: 100%;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: dashed 1px #005A89;
  gap: 10px;
  margin-top: 1.25rem;
}
.btn-coupon:hover, .btn-coupon:active, .btn-coupon.btn:active, .btn-coupon:focus {
  background: #ebf7fc;
  border: dashed 1px #005A89;
  color: #005A89;
}

.coupon {
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
}
.coupon .coupon-content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  height: 98%;
}
.coupon .coupon-content .logo {
  flex: 0 0 50px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coupon .coupon-content .content {
  flex: 0 0 290px;
  padding: 18px;
}
.coupon .coupon-content .content .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.coupon .coupon-content .content .head h3 {
  font-weight: 700;
  text-transform: uppercase;
}
.coupon .coupon-content .content .head a {
  text-transform: uppercase;
  color: hsl(var(--theme-primary));
  font-weight: 700;
  font-size: 14px;
}
.coupon .coupon-content .content p {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 400;
}
.coupon .coupon-content .content p:last-child {
  margin: 0;
}
.coupon.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.coupon.disabled span {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: #6d6d6d;
}

.md-shipping .btn-group {
  border: none;
  padding: 5px;
  width: 100%;
  gap: 5px;
  background: hsl(var(--secondary-background));
}
.md-shipping .btn-group .btn {
  --secondary-background: 23 34% 91%;
  border-radius: 5px !important;
  font-size: 14px;
  font-weight: 600;
  color: #4A382E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.md-shipping .btn-group .btn:hover {
  background: #FFF;
}
.md-shipping .btn-group .btn-check:checked + .btn, .md-shipping .btn-group .btn.active, .md-shipping .btn-group .btn.show, .md-shipping .btn-group .btn:first-child:active, .md-shipping .btn-group :not(.btn-check) + .btn:active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.auth-wrapper {
  display: flex;
}
.auth-wrapper .auth-left {
  flex: 0 0 380px;
  height: auto;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.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% - 380px);
  padding: 30px;
}
.auth-wrapper .auth-right h3 {
  font-size: 1.125rem;
  margin-bottom: 1.563rem;
  font-weight: 700;
}
.auth-wrapper .auth-right .auth-external a {
  border: solid 1px hsl(var(--border));
  padding: 0.625rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}
.auth-wrapper .auth-right .auth-external a svg {
  margin-right: 0.975rem;
}
.auth-wrapper .auth-right p {
  font-size: 0.875rem;
}
.auth-wrapper .auth-right p a {
  color: #000;
  font-weight: 600;
}
.auth-wrapper .forgot-password {
  color: hsl(var(--theme-primary));
  font-size: 13px;
}

.or {
  position: relative;
  border-top: solid 1px hsl(var(--border));
  margin: 2.188rem 0;
}
.or::after {
  content: "OR";
  width: 100%;
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: #848484;
  background: #FFF;
  display: block;
  padding: 0.625rem;
  max-width: -moz-max-content;
  max-width: max-content;
  z-index: 1;
  font-weight: 400;
}

.md-addons {
  background: hsl(var(--secondary-background));
  border: solid 1px hsl(var(--border));
  border-radius: 8px;
  margin-top: 15px;
}
.md-addons p {
  font-size: 14px !important;
  line-height: 1.5;
  font-weight: 400;
}

.coupon__wrap {
  display: flex;
  flex-flow: row;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--color);
  background-color: rgba(var(--bgRGB), 0.1);
}
.coupon__wrap .coupon__title {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100px;
  padding: 10px 15px;
}
.coupon__wrap .coupon__title:before {
  content: "";
  position: absolute;
  top: -9px;
  right: -8px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 100%;
  z-index: 2;
  border: 1px solid var(--color);
}
.coupon__wrap .coupon__title:after {
  content: "";
  position: absolute;
  top: -11px;
  right: -10px;
  width: 20px;
  height: 10px;
  background-color: #ffffff;
  z-index: 2;
}
.coupon__wrap .coupon__title .couple__category {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color);
}
.coupon__wrap .coupon__title .coupon__max {
  font-size: 12px;
}
.coupon__wrap .coupon__detail {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  flex: 0 0 auto;
  width: calc(100% - 100px);
  padding: 10px 20px;
}
.coupon__wrap .coupon__detail:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -7px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 100%;
  z-index: 2;
  border: 1px solid var(--color);
}
.coupon__wrap .coupon__detail:after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: -10px;
  width: 20px;
  height: 10px;
  background-color: #ffffff;
  z-index: 2;
}
.coupon__wrap .coupon__detail .coupon__price {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color);
}
@media (max-width: 991px) {
  .coupon__wrap .coupon__detail .coupon__price {
    font-size: 14px;
  }
}
.coupon__wrap .coupon__detail .coupon__info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.coupon__wrap .coupon__detail .coupon__info span {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.3;
  text-align: left;
  color: var(--color);
}
.coupon__wrap .coupon__footer {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.coupon__wrap .coupon__footer .coupon__btn {
  margin-top: 5px;
}
.coupon__wrap .coupon__footer .coupon__btn a {
  display: inline-flex;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--color);
}
.coupon__wrap .coupon__border {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: calc(100% - 10px);
  transform: translateY(-50%);
  border-left: 1px dashed var(--color);
}

.coupon__wrap {
  --color: #1a1a1a;
  --bgRGB: #FFF;
}

.view_only {
  --color: #64748b;
  --bgRGB: 152, 157, 167;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.applied {
  --color: #029690;
  --bgRGB: 2, 167, 160;
}

.md-footer-banner {
  background: rgba(255, 163, 36, 0.6117647059);
  border-radius: 6px;
  padding: 15px;
}
.md-footer-banner svg {
  width: 60px;
}
.md-footer-banner h4 {
  margin-bottom: 8px;
}
.md-footer-banner p {
  line-height: 1.4;
}

.md-coupons {
  margin: 1.875rem 0 1rem;
}

.md-coupon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.md-coupon .coupon__wrap {
  --color: #192950;
  --bgRGB: #192950;
  background-color: var(--bgRGB);
  border-radius: 8px;
  color: #FFF;
  margin: 0;
}
.md-coupon .coupon__wrap .coupon__title {
  width: 220px;
}
.md-coupon .coupon__wrap .coupon__detail {
  width: calc(100% - 220px);
  align-items: center;
  justify-content: center;
}
.md-coupon .coupon__wrap .coupon__content {
  font-size: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}
.md-coupon .coupon__wrap .coupon__content span {
  display: block;
  text-align: center;
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 600;
}
.md-coupon .coupon__wrap .couple__category {
  font-size: 0.913rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
}
.md-coupon .coupon__wrap .coupon__code {
  font-size: 1.75rem;
  font-weight: 800;
  padding: 8px 10px;
  background: #FFF;
  margin-top: 10px;
  color: var(--color);
}
.md-coupon .coupon__wrap .coupon__border {
  border-color: #FFF;
}

.md-cookies {
  border-radius: 6px;
  background: #FFF;
  padding: 0.938rem;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99999;
  max-width: 330px;
  box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.35);
}
.md-cookies h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.md-cookies p {
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
  margin-bottom: 1rem;
  font-size: 12px;
}
.md-cookies p a {
  color: #000;
}
.md-cookies .btn-link {
  font-weight: 700;
  text-decoration: none;
  padding: 0px !important;
  margin-top: 12px;
  font-size: 12px !important;
  opacity: 0.9 !important;
}
.md-cookies .btn-cancel {
  position: absolute;
  top: 5px;
  right: 5px;
}
.md-cookies .btn-cancel:hover, .md-cookies .btn-cancel:focus, .md-cookies .btn-cancel:active {
  background: transparent;
  color: #000;
}

.md-about-cookies h6 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}
.md-about-cookies p {
  font-size: 12px;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.md-reviews h2 {
  font-size: 1.25rem;
  margin-bottom: 0.938rem;
  text-align: center;
  font-weight: 700;
}
.md-reviews h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
.md-reviews h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.md-reviews p {
  color: hsl(var(--muted-foreground));
}
.md-reviews .md-review-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.md-reviews .md-review-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-review-container .embla_common {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --slide-spacing-lg: 1rem;
  --slide-size-lg: calc(100% / 4);
}
.md-review-container .embla_common .embla__viewport {
  overflow: hidden;
}
.md-review-container .embla_common .embla__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.md-review-container .embla_common .embla__slide {
  min-width: 0;
  flex: 0 0 var(--slide-size);
  padding-left: var(--slide-spacing);
}
@media (min-width: 750px) {
  .md-review-container .embla_common {
    --slide-size-lg: calc(100% / 2);
  }
  .md-review-container .embla_common .embla__container {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
  .md-review-container .embla_common .embla__slide {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
@media (min-width: 992px) {
  .md-review-container .embla_common {
    --slide-size-lg: calc(100% / 3);
  }
}
@media (min-width: 1200px) {
  .md-review-container .embla_common {
    --slide-size-lg: calc(100% / 4);
  }
  .md-review-container .embla_common .embla__container {
    margin-left: calc(var(--slide-spacing-lg) * -1);
  }
  .md-review-container .embla_common .embla__slide {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}

.md-giveaway {
  margin-top: 2.5rem;
  padding: 2.5rem 0;
  background: hsl(var(--secondary-background)/0.4);
}
.md-giveaway h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.563rem;
}
.md-giveaway h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.563rem);
  font-weight: 700;
  margin-bottom: 1.563rem;
  color: hsl(var(--theme-primary));
}
.md-giveaway p {
  font-size: 0.938rem;
  color: hsl(var(--muted-foreground));
  max-width: 450px;
  line-height: 1.6;
}
.md-giveaway img {
  max-width: 50%;
}

.md-account-wrapper {
  padding: 2rem 0;
}

.md-account-nav {
  border: solid 1px hsl(var(--border));
  border-radius: 0.5rem;
  overflow: hidden;
}
.md-account-nav li a {
  display: flex;
  align-items: center;
  padding: 0.938rem;
  font-weight: 600;
  font-size: 0.875rem;
  gap: 0.938rem;
  color: #000;
  transition: all 0.3s ease;
}
.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-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-nav li:not(:last-child) {
  border-bottom: solid 1px #E5E7EB;
}

.md-account-data-wrapper h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.md-account-data-wrapper .md-sub-title {
  font-size: 0.938rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.md-account-data-wrapper table tr th {
  padding: 14px 10px;
  font-weight: 600;
  font-size: 0.875rem;
}
.md-account-data-wrapper table tr td {
  font-size: 0.875rem;
}
.md-account-data-wrapper table tr td a {
  color: hsl(var(--primary));
  font-weight: 600;
}
.md-account-data-wrapper .accordion-item:first-of-type > .accordion-header .accordion-button {
  border-radius: 0.5rem;
}
.md-account-data-wrapper .accordion .accordion-button {
  padding: 0.938rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.938rem;
  font-size: 0.938rem;
  font-weight: 700;
  color: #000;
  background: #fdfdfd;
  border: 1px solid hsl(var(--border));
}
.md-account-data-wrapper .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.md-account-data-wrapper .accordion .accordion-button strong {
  font-size: 0.875rem;
  font-weight: 600;
}
.md-account-data-wrapper .accordion .accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  box-shadow: none !important;
}
.md-account-data-wrapper .accordion .accordion-body {
  border: 1px solid hsl(var(--border));
  padding: 0.938rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top: 0;
  margin-top: -8px;
  position: relative;
  z-index: 1;
}
.md-account-data-wrapper .accordion .accordion-body h5 {
  color: #000000;
  font-weight: 600;
  font-size: 0.938rem;
  margin: 0.938rem 0;
}
.md-account-data-wrapper .accordion .accordion-body h6 {
  line-height: 1.4;
  margin: 0.938rem 0 1.25rem 0;
  font-size: 0.938rem;
  color: var(--pirmary);
}
.md-account-data-wrapper .accordion .accordion-body h6 a {
  color: var(--pirmary);
  font-weight: 700;
}
.md-account-data-wrapper .accordion .accordion-body ul {
  margin-bottom: 1.25rem;
  padding-left: 0.938rem;
}
.md-account-data-wrapper .accordion .accordion-body ul li {
  list-style-type: disc;
}
.md-account-data-wrapper .accordion .accordion-body ul li a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.938rem;
  color: var(--pirmary);
}

.md-used-coupons .coupon__wrap {
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-striped-bg: rgb(248, 245, 243);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.order-progress {
  position: relative;
  margin: 2.5rem 0 2.5rem;
}
.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: #00c368;
}
.order-progress .col.completed .progress-indicator {
  border-color: #00c368;
  background: #00c368;
}
.order-progress .col.completed .progress-indicator::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZWNrIj48cGF0aCBkPSJNMjAgNiA5IDE3bC01LTUiLz48L3N2Zz4=");
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.813rem;
  height: 1rem;
  position: absolute;
  top: 1px;
}
.order-progress .col.completed p {
  color: #00a055;
}
.order-progress .col.active .progress-indicator {
  border-color: #000;
}
.order-progress .col.active p {
  color: #000;
}
.order-progress .progress-indicator {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 3.125rem;
  border: solid 4px #ECECEC;
  margin: 0 auto 0.938rem 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: 0.875rem;
  font-weight: 600;
  color: #ABABAB;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.md-accpeted {
  font-size: 0.875rem;
  color: #00a055;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.md-rejected {
  font-size: 0.875rem;
  color: #e83333;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.md-in-progress {
  font-size: 0.875rem;
  color: #e7b900;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.md-content-wrapper {
  padding: 0 0;
}
.md-content-wrapper h1 {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h2 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h3 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h5 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0.938rem;
  line-height: 1.8;
  color: #020817;
  letter-spacing: 0.4px;
}
.md-content-wrapper p strong {
  font-weight: 700;
  margin-bottom: 0.938rem;
  line-height: 1.4;
  color: #000;
}
.md-content-wrapper i {
  font-style: italic;
}
.md-content-wrapper ul {
  margin-bottom: 0.938rem;
  padding-left: 0.938rem;
}
.md-content-wrapper ul li {
  list-style-type: disc;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0.938rem;
  color: #020817;
  line-height: 1.8;
  letter-spacing: 0.4px;
}
.md-content-wrapper ul li strong {
  color: #000;
}
.md-content-wrapper ol {
  margin-bottom: 0.938rem;
  padding-left: 0.938rem;
}
.md-content-wrapper ol li {
  list-style-type: decimal;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0.938rem;
  color: #020817;
  line-height: 1.8;
  letter-spacing: 0.4px;
}
.md-content-wrapper ol li strong {
  color: #000;
}
.md-content-wrapper a {
  color: #9f1127;
  font-weight: 600;
}
.md-content-wrapper img {
  max-width: 100%;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
}
.md-content-wrapper .md-cta-btn {
  background: hsl(var(--primary));
  color: #FFF;
  border-radius: 0.6rem;
  padding: 1.2rem 2rem;
}
.md-content-wrapper .btn-primary {
  background: hsl(var(--primary));
  color: #FFF;
  font-size: 0.938rem;
  font-weight: 700;
  padding: 15px 35px;
  margin-bottom: 1.25rem;
}
.md-content-wrapper b, .md-content-wrapper strong {
  font-weight: 700;
  color: #000;
}
.md-content-wrapper table {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.md-content-wrapper table tr td {
  font-size: 0.938rem;
  font-weight: 400;
  margin-bottom: 0.938rem;
  line-height: 1.4;
  border: solid 1px #404040;
}
.md-content-wrapper table tr td b, .md-content-wrapper table tr td strong {
  font-weight: 700;
  color: #000;
}

.md-blog-details {
  padding-right: 40px;
}
.md-blog-details p {
  font-size: 15px;
  font-weight: 400;
}
.md-blog-details p:first-child::first-letter {
  font-size: 30px;
  color: hsl(var(--primary));
  initial-letter: 2;
  line-height: 70px;
  margin-right: 5px;
}

.shipment-progress {
  border: 1px solid hsl(var(--border));
  padding: 0.938rem;
  border-radius: 0.5rem;
  margin-bottom: 0.938rem;
  background: #f9f9f9;
}

.order-track {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.order-track .order-track-step {
  display: flex;
  height: auto;
}
.order-track .order-track-step .order-track-status {
  margin-right: 1.25rem;
  position: relative;
  transition: all 0.3s height 0.3s;
  transform-origin: top center;
}
.order-track .order-track-step .order-track-status .order-track-status-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b0b0b0;
}
.order-track .order-track-step .order-track-status .order-track-status-line {
  display: block;
  margin: 0 auto;
  width: 2px;
  height: 100%;
  background: #b0b0b0;
}
.order-track .order-track-step .order-track-text {
  padding-bottom: 1.875rem;
}
.order-track .order-track-step .order-track-text .order-track-text-stat {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  line-height: 1;
}
.order-track .order-track-step .order-track-text .order-track-text-sub {
  font-size: 0.813rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-top: 5px;
}

.badge {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
}

.badge.in_transit {
  background: #05a9f4 !important;
}

.badge.delivered {
  background: #00c368 !important;
}

.badge.out_for_delivery {
  background: #007C94 !important;
}

.badge.pre_transit {
  background: #4D587D !important;
}

.badge.return_to_sender {
  background: #FF68B9 !important;
}

.badge.order-track-step:last-child {
  overflow: hidden;
}

.order-track-step:last-child .order-track-status span:last-of-type {
  display: none;
}

.order-address {
  padding: 1.25rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
}
.order-address h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.order-address p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.order-address p:last-child {
  margin-bottom: 0;
}

.md-feedback {
  background: hsl(var(--secondary-background)/0.4);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.md-feedback h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.store-credit-card {
  min-height: 250px;
  border-radius: 0.8rem;
  padding: 1.875rem;
  background: rgb(48, 45, 46);
  background: radial-gradient(circle, rgb(255, 255, 255) 20%, rgb(236, 236, 236) 100%);
  border: solid 1px hsl(var(--border));
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
.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;
  opacity: 0.5;
}
.store-credit-card h4 {
  color: #222222;
}
.store-credit-card .total-credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 1.875rem;
}
.store-credit-card .total-credit h1 {
  color: hsl(var(--theme-primary));
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.625rem;
}
.store-credit-card .total-credit small {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}
.store-credit-card p {
  font-size: 1rem;
  letter-spacing: 3px;
  color: hsl(var(--muted-foreground));
  opacity: 0.8;
}

.store-credit-history table {
  white-space: nowrap;
}
.store-credit-history table tr td {
  padding: 15px 10px;
}

.md-about-wrapper {
  background: #F5F8FD;
  padding: 3.75rem 0;
}
.md-about-wrapper .brandname {
  text-align: center;
  margin: 0.625rem 0 1.875rem;
}
.md-about-wrapper h6 {
  font-weight: 1rem;
  font-weight: 600;
}
.md-about-wrapper p {
  font-size: 0.875rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  max-width: 1024px;
  margin: 1.563rem auto 0 auto;
}

.md-about {
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover;
  padding: 3.125rem 0;
}
.md-about h2 {
  font-size: 1.75rem;
  color: #FFF;
  line-height: 1.4;
  font-weight: 700;
}
.md-about h2 span {
  display: block;
}
.md-about p {
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.md-about .content p {
  font-size: 0.938rem;
  line-height: 1.8;
  opacity: 0.9;
}
.md-about .content a {
  color: #FFF;
  font-weight: 700;
}

.env {
  background: url("../images/env.png") no-repeat;
  background-size: cover;
  min-height: 600px;
  max-width: 1500px;
  margin: 3.125rem auto 6.25rem auto;
  border-radius: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.env .content {
  max-width: 800px;
  margin: 0 auto;
}
.env .content p {
  font-size: 1rem;
  color: #FFF;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: center;
}
.env .content img {
  width: 100px;
}

.md-feature-wrapper {
  margin-bottom: 5rem;
}
.md-feature-wrapper .md-feature {
  text-align: center;
  margin-bottom: 2.5rem;
}
.md-feature-wrapper .md-feature .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: #9F1127;
  border-radius: 50%;
  color: #FFF;
  margin: 0 auto 1.25rem auto;
}
.md-feature-wrapper .md-feature h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.md-feature-wrapper .md-feature p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
  line-height: 1.8;
}

.md-vision-mission {
  margin-bottom: 6.25rem;
}
.md-vision-mission h2 {
  font-size: clamp(2rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
}
.md-vision-mission h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
.md-vision-mission p {
  font-size: 0.938rem;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
  line-height: 1.8;
  padding-left: 3.125rem;
}
.md-vision-mission hr {
  margin: 2.5rem 0;
  border-top: #b9b9b9 solid 1px;
}

.location-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.location-modal h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.6;
}
.location-modal p {
  font-size: 15px;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
.location-modal a {
  color: #000;
  display: inline-block;
  padding: 10px;
  font-size: 14px;
  border-radius: 50px;
}
.location-modal a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.location-modal a.primary {
  background: #000;
  color: #FFF;
}

.md-what-selling .nav-pills .nav-link {
  padding: 10px 20px;
  background: hsl(var(--secondary-background));
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 14px;
}
.md-what-selling .nav-pills .nav-link.active {
  color: #FFF;
  background: hsl(var(--primary));
}

.md-contact-wrapper {
  margin-bottom: 2.5rem;
}

.contact-details {
  border: solid 1px hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1rem;
}
.contact-details h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
}
.contact-details > div {
  display: flex;
}
.contact-details > div:not(:last-child) {
  margin-bottom: 1rem;
}
.contact-details > div p {
  font-size: 0.938rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
.contact-details > div p strong {
  display: block;
  color: #000;
  font-weight: 700;
}

.md-wallpaper-calculator {
  border: solid 1px hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.875rem;
  min-height: 400px;
  margin-bottom: 1.25rem;
}
.md-wallpaper-calculator h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.938rem;
  text-align: center;
}
.md-wallpaper-calculator h5 {
  font-size: 0.938rem;
  font-weight: 600;
}
.md-wallpaper-calculator > p {
  font-size: 0.938rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.md-wallpaper-calculator .form-group {
  display: flex;
  gap: 10px;
}
.md-wallpaper-calculator .form-group .form-check-label {
  font-size: 0.938rem;
  font-weight: 500;
  color: #000;
}
.md-wallpaper-calculator .form-select {
  padding: 15px !important;
}
.md-wallpaper-calculator .with-icon {
  position: relative;
}
.md-wallpaper-calculator .with-icon .form-control {
  box-sizing: border-box;
  padding: 15px 50px;
  height: 55px;
}
.md-wallpaper-calculator .with-icon .icon {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 20px;
}
.md-wallpaper-calculator .with-icon .param {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
  font-weight: 600;
}
.md-wallpaper-calculator .error {
  display: none;
  font-size: 12px;
  color: #da3f3f;
  padding: 10px 0;
}

.calculation-result {
  margin-top: 1rem;
}
.calculation-result strong {
  font-weight: 700;
}

.calculated-area-wrap {
  color: hsl(var(--muted-foreground));
}
.calculated-area-wrap strong {
  color: #000;
  font-weight: 700;
}

.total-wallpaper-price {
  background: hsl(var(--muted-foreground)/0.1);
  text-align: center;
  padding: 15px;
  font-size: 18px;
  color: #000;
  border-radius: 0.5rem;
  font-weight: 700;
}

.md-review-wrapper {
  margin: 1.875rem 0 1.875rem;
}
.md-review-wrapper .md-review-header {
  padding: 1.875rem 0 1.875rem;
}
.md-review-wrapper .md-review-header .rating-star {
  margin-bottom: 0.625rem;
}
.md-review-wrapper .md-review-header .rating-star i.fa-solid {
  color: #FF9900;
}
.md-review-wrapper .md-review-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
.md-review-wrapper .md-review-header p {
  font-size: 0.875rem;
  color: var(--subTitle);
}
.md-review-wrapper .md-review-container {
  display: grid;
  gap: 10px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 300px);
}
.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: 300px;
}
.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% - 55px);
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 0.5rem;
  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: 0.875rem;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.md-review-wrapper .md-review-container .box a .review-content .rating {
  margin-bottom: 0;
}
.md-review-wrapper .md-review-container .box a .review-content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.813rem;
  opacity: 0.8;
  margin: 0;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating {
  display: flex;
}

.rate-area {
  display: flex;
  gap: 2px;
  flex-direction: row-reverse;
  border-style: none;
}

.rate-area:not(:checked) > label {
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  color: lightgrey;
}

.rate-area:not(:checked) > label:before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXN0YXIiPjxwYXRoIGQ9Ik0xMS41MjUgMi4yOTVhLjUzLjUzIDAgMCAxIC45NSAwbDIuMzEgNC42NzlhMi4xMjMgMi4xMjMgMCAwIDAgMS41OTUgMS4xNmw1LjE2Ni43NTZhLjUzLjUzIDAgMCAxIC4yOTQuOTA0bC0zLjczNiAzLjYzOGEyLjEyMyAyLjEyMyAwIDAgMC0uNjExIDEuODc4bC44ODIgNS4xNGEuNTMuNTMgMCAwIDEtLjc3MS41NmwtNC42MTgtMi40MjhhMi4xMjIgMi4xMjIgMCAwIDAtMS45NzMgMEw2LjM5NiAyMS4wMWEuNTMuNTMgMCAwIDEtLjc3LS41NmwuODgxLTUuMTM5YTIuMTIyIDIuMTIyIDAgMCAwLS42MTEtMS44NzlMMi4xNiA5Ljc5NWEuNTMuNTMgMCAwIDEgLjI5NC0uOTA2bDUuMTY1LS43NTVhMi4xMjIgMi4xMjIgMCAwIDAgMS41OTctMS4xNnoiLz48L3N2Zz4=");
  display: block;
  width: 24px;
  height: 24px;
}

.rate-area > input:checked ~ label::before {
  content: url("data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjIyIiBoZWlnaHQ9IjIyIiB2aWV3Qm94PSIwIDAgMjIgMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMC41MjUgMS4yOTQ4OUMxMC41Njg4IDEuMjA2MzUgMTAuNjM2NSAxLjEzMTgzIDEwLjcyMDQgMS4wNzk3MkMxMC44MDQ0IDEuMDI3NjEgMTAuOTAxMiAxIDExIDFDMTEuMDk4OCAxIDExLjE5NTYgMS4wMjc2MSAxMS4yNzk1IDEuMDc5NzJDMTEuMzYzNCAxLjEzMTgzIDExLjQzMTEgMS4yMDYzNSAxMS40NzUgMS4yOTQ4OUwxMy43ODUgNS45NzM4OUMxMy45MzcxIDYuMjgxODYgMTQuMTYxOCA2LjU0ODMgMTQuNDM5NiA2Ljc1MDM1QzE0LjcxNzQgNi45NTIzOSAxNS4wNDAxIDcuMDg0MDEgMTUuMzggNy4xMzM4OUwyMC41NDYgNy44ODk4OUMyMC42NDM5IDcuOTA0MDggMjAuNzM1OCA3Ljk0NTM3IDIwLjgxMTUgOC4wMDkwOUMyMC44ODcxIDguMDcyODIgMjAuOTQzNCA4LjE1NjQ0IDIwLjk3NCA4LjI1MDVDMjEuMDA0NiA4LjM0NDU2IDIxLjAwODIgOC40NDUzIDIwLjk4NDYgOC41NDEzM0MyMC45NjA5IDguNjM3MzYgMjAuOTEwOCA4LjcyNDg1IDIwLjg0IDguNzkzODlMMTcuMTA0IDEyLjQzMTlDMTYuODU3NiAxMi42NzIgMTYuNjczMiAxMi45Njg0IDE2LjU2NjggMTMuMjk1NUMxNi40NjA0IDEzLjYyMjcgMTYuNDM1IDEzLjk3MDggMTYuNDkzIDE0LjMwOTlMMTcuMzc1IDE5LjQ0OTlDMTcuMzkyMiAxOS41NDc3IDE3LjM4MTcgMTkuNjQ4NSAxNy4zNDQ1IDE5Ljc0MDZDMTcuMzA3MyAxOS44MzI3IDE3LjI0NDkgMTkuOTEyNSAxNy4xNjQ1IDE5Ljk3MDlDMTcuMDg0MSAyMC4wMjkzIDE2Ljk4ODkgMjAuMDYzOSAxNi44ODk4IDIwLjA3MDhDMTYuNzkwNyAyMC4wNzc3IDE2LjY5MTcgMjAuMDU2NiAxNi42MDQgMjAuMDA5OUwxMS45ODYgMTcuNTgxOUMxMS42ODE3IDE3LjQyMjEgMTEuMzQzMSAxNy4zMzg2IDEwLjk5OTUgMTcuMzM4NkMxMC42NTU4IDE3LjMzODYgMTAuMzE3MyAxNy40MjIxIDEwLjAxMyAxNy41ODE5TDUuMzk1OTcgMjAuMDA5OUM1LjMwODMgMjAuMDU2MyA1LjIwOTM3IDIwLjA3NzIgNS4xMTA0MiAyMC4wNzAxQzUuMDExNDcgMjAuMDYzMSA0LjkxNjQ5IDIwLjAyODUgNC44MzYyNiAxOS45NzAxQzQuNzU2MDQgMTkuOTExOCA0LjY5MzggMTkuODMyMSA0LjY1NjYyIDE5Ljc0MDFDNC42MTk0NSAxOS42NDgyIDQuNjA4ODMgMTkuNTQ3NiA0LjYyNTk3IDE5LjQ0OTlMNS41MDY5NyAxNC4zMTA5QzUuNTY1MTYgMTMuOTcxNiA1LjUzOTk1IDEzLjYyMzMgNS40MzM1MSAxMy4yOTU5QzUuMzI3MDYgMTIuOTY4NiA1LjE0MjU4IDEyLjY3MiA0Ljg5NTk3IDEyLjQzMTlMMS4xNTk5NyA4Ljc5NDg5QzEuMDg4NTYgOC43MjU5MyAxLjAzNzk2IDguNjM4MjkgMS4wMTM5MyA4LjU0MTk3QzAuOTg5OSA4LjQ0NTY1IDAuOTkzNDA2IDguMzQ0NTEgMS4wMjQwNSA4LjI1MDA4QzEuMDU0NjkgOC4xNTU2NiAxLjExMTI0IDguMDcxNzQgMS4xODcyNSA4LjAwNzg4QzEuMjYzMjYgNy45NDQwMiAxLjM1NTY3IDcuOTAyNzkgMS40NTM5NyA3Ljg4ODg5TDYuNjE4OTcgNy4xMzM4OUM2Ljk1OTIzIDcuMDg0MzkgNy4yODIzNiA2Ljk1Mjk1IDcuNTYwNTUgNi43NTA4OEM3LjgzODc1IDYuNTQ4ODEgOC4wNjM2NyA2LjI4MjE2IDguMjE1OTcgNS45NzM4OUwxMC41MjUgMS4yOTQ4OVoiIGZpbGw9IiNGRkM4MDAiIHN0cm9rZT0iI0ZGQzgwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

.rate-area:not(:checked) > label:hover::before,
.rate-area:not(:checked) > label:hover ~ label::before {
  content: url("data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjIyIiBoZWlnaHQ9IjIyIiB2aWV3Qm94PSIwIDAgMjIgMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMC41MjUgMS4yOTQ4OUMxMC41Njg4IDEuMjA2MzUgMTAuNjM2NSAxLjEzMTgzIDEwLjcyMDQgMS4wNzk3MkMxMC44MDQ0IDEuMDI3NjEgMTAuOTAxMiAxIDExIDFDMTEuMDk4OCAxIDExLjE5NTYgMS4wMjc2MSAxMS4yNzk1IDEuMDc5NzJDMTEuMzYzNCAxLjEzMTgzIDExLjQzMTEgMS4yMDYzNSAxMS40NzUgMS4yOTQ4OUwxMy43ODUgNS45NzM4OUMxMy45MzcxIDYuMjgxODYgMTQuMTYxOCA2LjU0ODMgMTQuNDM5NiA2Ljc1MDM1QzE0LjcxNzQgNi45NTIzOSAxNS4wNDAxIDcuMDg0MDEgMTUuMzggNy4xMzM4OUwyMC41NDYgNy44ODk4OUMyMC42NDM5IDcuOTA0MDggMjAuNzM1OCA3Ljk0NTM3IDIwLjgxMTUgOC4wMDkwOUMyMC44ODcxIDguMDcyODIgMjAuOTQzNCA4LjE1NjQ0IDIwLjk3NCA4LjI1MDVDMjEuMDA0NiA4LjM0NDU2IDIxLjAwODIgOC40NDUzIDIwLjk4NDYgOC41NDEzM0MyMC45NjA5IDguNjM3MzYgMjAuOTEwOCA4LjcyNDg1IDIwLjg0IDguNzkzODlMMTcuMTA0IDEyLjQzMTlDMTYuODU3NiAxMi42NzIgMTYuNjczMiAxMi45Njg0IDE2LjU2NjggMTMuMjk1NUMxNi40NjA0IDEzLjYyMjcgMTYuNDM1IDEzLjk3MDggMTYuNDkzIDE0LjMwOTlMMTcuMzc1IDE5LjQ0OTlDMTcuMzkyMiAxOS41NDc3IDE3LjM4MTcgMTkuNjQ4NSAxNy4zNDQ1IDE5Ljc0MDZDMTcuMzA3MyAxOS44MzI3IDE3LjI0NDkgMTkuOTEyNSAxNy4xNjQ1IDE5Ljk3MDlDMTcuMDg0MSAyMC4wMjkzIDE2Ljk4ODkgMjAuMDYzOSAxNi44ODk4IDIwLjA3MDhDMTYuNzkwNyAyMC4wNzc3IDE2LjY5MTcgMjAuMDU2NiAxNi42MDQgMjAuMDA5OUwxMS45ODYgMTcuNTgxOUMxMS42ODE3IDE3LjQyMjEgMTEuMzQzMSAxNy4zMzg2IDEwLjk5OTUgMTcuMzM4NkMxMC42NTU4IDE3LjMzODYgMTAuMzE3MyAxNy40MjIxIDEwLjAxMyAxNy41ODE5TDUuMzk1OTcgMjAuMDA5OUM1LjMwODMgMjAuMDU2MyA1LjIwOTM3IDIwLjA3NzIgNS4xMTA0MiAyMC4wNzAxQzUuMDExNDcgMjAuMDYzMSA0LjkxNjQ5IDIwLjAyODUgNC44MzYyNiAxOS45NzAxQzQuNzU2MDQgMTkuOTExOCA0LjY5MzggMTkuODMyMSA0LjY1NjYyIDE5Ljc0MDFDNC42MTk0NSAxOS42NDgyIDQuNjA4ODMgMTkuNTQ3NiA0LjYyNTk3IDE5LjQ0OTlMNS41MDY5NyAxNC4zMTA5QzUuNTY1MTYgMTMuOTcxNiA1LjUzOTk1IDEzLjYyMzMgNS40MzM1MSAxMy4yOTU5QzUuMzI3MDYgMTIuOTY4NiA1LjE0MjU4IDEyLjY3MiA0Ljg5NTk3IDEyLjQzMTlMMS4xNTk5NyA4Ljc5NDg5QzEuMDg4NTYgOC43MjU5MyAxLjAzNzk2IDguNjM4MjkgMS4wMTM5MyA4LjU0MTk3QzAuOTg5OSA4LjQ0NTY1IDAuOTkzNDA2IDguMzQ0NTEgMS4wMjQwNSA4LjI1MDA4QzEuMDU0NjkgOC4xNTU2NiAxLjExMTI0IDguMDcxNzQgMS4xODcyNSA4LjAwNzg4QzEuMjYzMjYgNy45NDQwMiAxLjM1NTY3IDcuOTAyNzkgMS40NTM5NyA3Ljg4ODg5TDYuNjE4OTcgNy4xMzM4OUM2Ljk1OTIzIDcuMDg0MzkgNy4yODIzNiA2Ljk1Mjk1IDcuNTYwNTUgNi43NTA4OEM3LjgzODc1IDYuNTQ4ODEgOC4wNjM2NyA2LjI4MjE2IDguMjE1OTcgNS45NzM4OUwxMC41MjUgMS4yOTQ4OVoiIGZpbGw9IiNGRkM4MDAiIHN0cm9rZT0iI0ZGQzgwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

.rate-area > input:checked + label:hover::before,
.rate-area > input:checked + label:hover ~ label::before,
.rate-area > input:checked ~ label:hover::before,
.rate-area > input:checked ~ label:hover ~ label::before,
.rate-area > label:hover ~ input:checked ~ label::before {
  content: url("data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjIyIiBoZWlnaHQ9IjIyIiB2aWV3Qm94PSIwIDAgMjIgMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMC41MjUgMS4yOTQ4OUMxMC41Njg4IDEuMjA2MzUgMTAuNjM2NSAxLjEzMTgzIDEwLjcyMDQgMS4wNzk3MkMxMC44MDQ0IDEuMDI3NjEgMTAuOTAxMiAxIDExIDFDMTEuMDk4OCAxIDExLjE5NTYgMS4wMjc2MSAxMS4yNzk1IDEuMDc5NzJDMTEuMzYzNCAxLjEzMTgzIDExLjQzMTEgMS4yMDYzNSAxMS40NzUgMS4yOTQ4OUwxMy43ODUgNS45NzM4OUMxMy45MzcxIDYuMjgxODYgMTQuMTYxOCA2LjU0ODMgMTQuNDM5NiA2Ljc1MDM1QzE0LjcxNzQgNi45NTIzOSAxNS4wNDAxIDcuMDg0MDEgMTUuMzggNy4xMzM4OUwyMC41NDYgNy44ODk4OUMyMC42NDM5IDcuOTA0MDggMjAuNzM1OCA3Ljk0NTM3IDIwLjgxMTUgOC4wMDkwOUMyMC44ODcxIDguMDcyODIgMjAuOTQzNCA4LjE1NjQ0IDIwLjk3NCA4LjI1MDVDMjEuMDA0NiA4LjM0NDU2IDIxLjAwODIgOC40NDUzIDIwLjk4NDYgOC41NDEzM0MyMC45NjA5IDguNjM3MzYgMjAuOTEwOCA4LjcyNDg1IDIwLjg0IDguNzkzODlMMTcuMTA0IDEyLjQzMTlDMTYuODU3NiAxMi42NzIgMTYuNjczMiAxMi45Njg0IDE2LjU2NjggMTMuMjk1NUMxNi40NjA0IDEzLjYyMjcgMTYuNDM1IDEzLjk3MDggMTYuNDkzIDE0LjMwOTlMMTcuMzc1IDE5LjQ0OTlDMTcuMzkyMiAxOS41NDc3IDE3LjM4MTcgMTkuNjQ4NSAxNy4zNDQ1IDE5Ljc0MDZDMTcuMzA3MyAxOS44MzI3IDE3LjI0NDkgMTkuOTEyNSAxNy4xNjQ1IDE5Ljk3MDlDMTcuMDg0MSAyMC4wMjkzIDE2Ljk4ODkgMjAuMDYzOSAxNi44ODk4IDIwLjA3MDhDMTYuNzkwNyAyMC4wNzc3IDE2LjY5MTcgMjAuMDU2NiAxNi42MDQgMjAuMDA5OUwxMS45ODYgMTcuNTgxOUMxMS42ODE3IDE3LjQyMjEgMTEuMzQzMSAxNy4zMzg2IDEwLjk5OTUgMTcuMzM4NkMxMC42NTU4IDE3LjMzODYgMTAuMzE3MyAxNy40MjIxIDEwLjAxMyAxNy41ODE5TDUuMzk1OTcgMjAuMDA5OUM1LjMwODMgMjAuMDU2MyA1LjIwOTM3IDIwLjA3NzIgNS4xMTA0MiAyMC4wNzAxQzUuMDExNDcgMjAuMDYzMSA0LjkxNjQ5IDIwLjAyODUgNC44MzYyNiAxOS45NzAxQzQuNzU2MDQgMTkuOTExOCA0LjY5MzggMTkuODMyMSA0LjY1NjYyIDE5Ljc0MDFDNC42MTk0NSAxOS42NDgyIDQuNjA4ODMgMTkuNTQ3NiA0LjYyNTk3IDE5LjQ0OTlMNS41MDY5NyAxNC4zMTA5QzUuNTY1MTYgMTMuOTcxNiA1LjUzOTk1IDEzLjYyMzMgNS40MzM1MSAxMy4yOTU5QzUuMzI3MDYgMTIuOTY4NiA1LjE0MjU4IDEyLjY3MiA0Ljg5NTk3IDEyLjQzMTlMMS4xNTk5NyA4Ljc5NDg5QzEuMDg4NTYgOC43MjU5MyAxLjAzNzk2IDguNjM4MjkgMS4wMTM5MyA4LjU0MTk3QzAuOTg5OSA4LjQ0NTY1IDAuOTkzNDA2IDguMzQ0NTEgMS4wMjQwNSA4LjI1MDA4QzEuMDU0NjkgOC4xNTU2NiAxLjExMTI0IDguMDcxNzQgMS4xODcyNSA4LjAwNzg4QzEuMjYzMjYgNy45NDQwMiAxLjM1NTY3IDcuOTAyNzkgMS40NTM5NyA3Ljg4ODg5TDYuNjE4OTcgNy4xMzM4OUM2Ljk1OTIzIDcuMDg0MzkgNy4yODIzNiA2Ljk1Mjk1IDcuNTYwNTUgNi43NTA4OEM3LjgzODc1IDYuNTQ4ODEgOC4wNjM2NyA2LjI4MjE2IDguMjE1OTcgNS45NzM4OUwxMC41MjUgMS4yOTQ4OVoiIGZpbGw9IiNGRkM4MDAiIHN0cm9rZT0iI0ZGQzgwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}

.modal-cw {
  --bs-modal-width: 1140px;
}

.review-white-popup {
  display: flex;
  position: relative;
}
.review-white-popup .rev-img {
  position: relative;
  pointer-events: none;
  height: 70vh;
  flex: 0 0 50%;
}
.review-white-popup .rev-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.review-white-popup .review-popup-content {
  padding: 20px;
  overflow-y: auto;
}
.review-white-popup .review-popup-content .product-reviews span {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.review-white-popup .review-popup-content h6 {
  font-size: 0.938rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.review-white-popup .review-popup-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.5px;
}
.review-white-popup .review-popup-content span {
  font-size: 0.75rem;
  margin: 5px 0;
  font-weight: 500;
  display: inline-block;
  color: #787878;
}
.review-white-popup .review-popup-content span i {
  color: #17c06f;
  font-size: 1.6rem;
}
.review-white-popup .review-popup-content .img-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-white-popup .review-popup-content .img-gallery a {
  display: block;
  flex: 0 0 20%;
  overflow: hidden;
  border-radius: 6px;
  height: 80px;
}
.review-white-popup .review-popup-content .img-gallery a img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.md-product {
  border: solid 1px hsl(var(--border));
  background: hsl(var(--muted-foreground)/0.08);
  border-radius: 0.5rem;
  padding: 8px;
  margin-top: 25px;
}
.md-product a {
  display: flex;
  gap: 15px;
}
.md-product a .md-product-image {
  flex: 0 0 90px;
  height: 90px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.md-product a .md-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.md-product a .md-product-content h6 {
  font-size: 0.938rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}
.md-product a .md-product-content p {
  font-size: 0.938rem;
  font-weight: 600;
}

.md-blog-banner {
  padding: 0px 20px 40px 20px;
}
.md-blog-banner .embla_common {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  --slide-height: 19rem;
  --slide-spacing: 10px;
  --slide-size: calc(100% / 4);
  --slide-spacing-sm: 1.6rem;
  --slide-size-sm: 50%;
  --slide-spacing-lg: 1rem;
  --slide-size-lg: calc(100% / 4);
}
.md-blog-banner .blog-wrap img {
  border-radius: 6px;
}
.md-blog-banner .blog-wrap .content {
  margin-top: 10px;
  padding: 0;
}

.md-trading-blog {
  background: hsl(var(--secondary-background));
  padding: 20px 0 40px;
}

.md-blog-banner .md-title-wrapper {
  padding-top: 0;
}
.md-blog-banner .latest_blog {
  margin-top: 30px;
}

.md-author a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  display: block;
  text-transform: capitalize;
}
.md-author small {
  font-size: 13px;
  margin-top: 10px;
  color: hsl(var(--muted-foreground));
  display: block;
  font-weight: 400;
}
.md-author .md-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
}

.md-blog-listing {
  padding: 50px 0 40px 0;
}
.md-blog-listing .blog-wrap {
  box-shadow: rgba(15, 23, 42, 0.05) 0px 4px 12px;
  transition: all 0.3s ease;
}
.md-blog-listing .blog-wrap:hover {
  box-shadow: rgba(15, 23, 42, 0.1) 0px 8px 40px -10px;
}

.md-newest-content {
  background: hsl(var(--primary));
  padding: 50px;
  height: 100%;
  position: relative;
}
.md-newest-content h4 a, .md-newest-content h1 a {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1.875rem;
  line-height: 1.3;
}
.md-newest-content .short-content {
  color: #a3afc1;
  margin-bottom: 2.5rem;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 1.7;
}
.md-newest-content .terms {
  margin-bottom: 2rem;
  font-size: 0.75rem;
}
.md-newest-content .terms a {
  color: #FFF;
  display: inline-block;
  background: hsl(var(--muted-foreground)/0.4);
  padding: 5px 10px;
  border-radius: 50px;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.md-newest-content .md-author {
  margin-bottom: 75px;
}
.md-newest-content .md-author a {
  color: #FFF;
  font-size: 1rem;
}
.md-newest-content.bg-white h4 a {
  color: hsl(var(--primary));
}
.md-newest-content.bg-white .short-content {
  color: hsl(var(--muted-foreground));
}
.md-newest-content.bg-white .terms a {
  background: hsl(var(--muted-foreground)/0.2);
  color: hsl(var(--primary));
  display: inline-block;
}
.md-newest-content.bg-white .md-author a {
  color: hsl(var(--primary));
}
.md-newest-content.bg-white .btn-readmore {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.md-newest-content .muted-btn {
  background: #FFF;
}
.md-newest-content .muted-btn:focus {
  box-shadow: none;
  background: #FFF;
}

.md-newest-img {
  width: 320px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.md-newest-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.md-detail-img {
  height: 100%;
}
.md-detail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-wrap {
  background: #FFF;
  border-radius: 0.5rem;
  margin: 10px 10px 30px 10px;
}
.blog-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.blog-wrap .content {
  padding: 20px;
}
.blog-wrap .content .category a {
  display: inline-block;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.blog-wrap .content .category a:hover {
  background: #000;
  color: #FFF;
}
.blog-wrap .content .blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  display: block;
  margin: 0px 0 10px;
  height: 50px;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-wrap .md-author p {
  font-size: 13px;
}
.blog-wrap .md-author .md-author-img {
  height: 45px;
  width: 45px;
}
.blog-wrap .md-author small {
  margin-top: 8px;
}

.md-blog-details-wrapper {
  padding: 60px 0;
}

.md-card {
  margin-bottom: 30px;
}
.md-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.725rem 0;
  line-height: 1.4;
  letter-spacing: normal;
}
.md-card .md-item {
  margin-bottom: 1.25rem;
}
.md-card .md-img {
  flex: 0 0 150px;
  border-radius: 6px;
  overflow: hidden;
}
.md-card h5 {
  font-size: 0.925rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}
.md-card p {
  font-size: 0.925rem;
  font-weight: 600;
  color: #000;
}
.md-card .md-colors {
  margin-top: 20px;
}
.md-card .md-colors img {
  width: 40px;
}

.md-cloud {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.md-cloud a {
  display: inline-block;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  background: hsl(var(--muted-foreground)/0.1);
  border-radius: 50px;
  text-transform: capitalize;
}
.md-cloud a:hover {
  color: #FFF;
  background: hsl(var(--primary));
}

.md-author-card {
  background: hsl(var(--secondary-background));
  padding: 30px;
  border-radius: 6px;
  margin-top: 30px;
}
.md-author-card .md-author .md-author-img {
  height: 60px;
  width: 60px;
  flex: 0 0 60px;
}
.md-author-card .md-author p a {
  font-size: 1rem;
  color: hsl(var(--primary));
  margin-bottom: 14px;
  font-weight: 700;
}
.md-author-card .md-author small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: #3b4654;
}

.sidebar {
  top: 130px;
}

.md-author-banner {
  background: hsl(var(--primary));
  border-radius: 0;
  padding: 50px 0;
}
.md-author-banner p {
  color: #FFF;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.md-author-banner .md-author small {
  color: #a3afc1;
  font-size: 1rem;
}
.md-author-banner .md-author .md-author-img {
  height: 100px;
  width: 100px;
  flex: 0 0 100px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination .nav-links {
  border-radius: 5px;
  border: solid 1px hsl(var(--border));
  display: flex;
}
.pagination .page-numbers {
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  border-right: solid 1px hsl(var(--border));
}
.pagination .page-numbers.current {
  color: hsl(var(--theme-primary));
  background: hsl(var(--secondary-background));
}
.pagination .page-numbers:last-child {
  border-right: none;
}

.next-prv-blog {
  margin-top: 1rem;
}
.next-prv-blog a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: hsl(var(--primary));
  background: hsl(var(--muted-foreground)/0.05);
  border-radius: 6px;
  padding: 10px;
}
.next-prv-blog a img {
  width: 100px;
  border-radius: 4px;
}
.next-prv-blog a:hover {
  background: hsl(var(--primary));
  color: #FFF;
}
.next-prv-blog a:hover svg path {
  stroke: #FFF;
}
.next-prv-blog:last-child a {
  flex-direction: row-reverse;
  text-align: right;
}

.md-cloud-wrapper {
  padding: 40px 0;
}
.md-cloud-wrapper .md-cloud {
  gap: 10px;
}
.md-cloud-wrapper .md-cloud a {
  padding: 10px 16px;
  font-size: 14px;
}

.md-author-wrapper {
  padding: 30px 0;
  background: hsl(var(--secondary-background)/0.8);
}
.md-author-wrapper .md-author .md-author-img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.no-data {
  padding: 40px 0;
  text-align: center;
}
.no-data img {
  max-width: 200px !important;
  margin-bottom: 15px;
}
.no-data h6 {
  font-size: 16px;
  font-weight: 600;
}

.page-numbers {
  display: none;
}
.page-numbers.next {
  display: inline-block;
}
.page-numbers.prev {
  display: inline-block;
}

input[name=material_selection] {
  display: none;
}

.item:has(input[name=material_selection]:checked) {
  border: solid 1px hsl(var(--primary));
  box-shadow: 0 0 0 1px rgb(33, 33, 33);
}

.cloud-tags {
  position: relative;
  height: 150px;
  overflow: hidden;
  transition: ease 0.3s all;
}
.cloud-tags::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: 90px;
}
.cloud-tags.show-full-content {
  height: auto;
  transition: ease 0.3s all;
}
.cloud-tags.show-full-content::after {
  display: none;
}

.stat-card {
  background: #FFF;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: rgba(99, 99, 99, 0.08) 0px 2px 8px 0px;
}
.stat-card p {
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}
.stat-card h5 {
  font-weight: 700;
  font-size: 25px;
  line-height: 2rem;
  margin-top: 10px;
}
.stat-card .icons {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.stat-card .credits {
  background: #eff6ff;
}
.stat-card .orders {
  background: #f0fdf4;
}

.cropper-modal {
  background: #f9f4f1 !important;
  opacity: 0.9 !important;
}

.cropper-view-box {
  outline: 0px solid #000;
}

.cropper-line {
  background: transparent !important;
}

.cropper-point {
  display: none !important;
}

/*---*/
.dimension-line {
  position: absolute;
  background-color: black;
}
.dimension-line::before {
  content: "";
  width: 1px;
  height: 11px;
  background: #000;
  position: absolute;
  top: -5px;
  left: 0;
}
.dimension-line::after {
  content: "";
  width: 1px;
  height: 11px;
  background: #000;
  position: absolute;
  top: -5px;
  right: 0;
}

.h-line {
  height: 1px;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

.v-line {
  width: 1px;
  height: 200px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.v-line::before {
  top: 0px;
  transform: translateY(-50%) rotate(-90deg);
}
.v-line::after {
  bottom: -11px;
  top: auto;
  transform: translateY(-50%) rotate(-90deg);
}

.dimension-text {
  position: absolute;
  font-weight: bold;
  color: black;
}

.h-text {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.v-text {
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

.md-cropper .cropper-crop-box::before,
.md-cropper .cropper-crop-box::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

/*-------------------------------------------------------------------------------------- Temp CSS START --------------------------------------------------------------------------------------*/
.md-add-product .header {
  padding: 1.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
  margin-bottom: 1.5rem;
  background: hsl(var(--secondary-background));
}
.md-add-product h1 {
  font-size: 1.25rem;
  font-weight: 600;
}
.md-add-product .form-control {
  height: calc(50px + var(--bs-border-width) * 2);
  min-height: calc(50px + var(--bs-border-width) * 2);
  line-height: 1.25;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  border-radius: 6px;
  border-color: hsl(var(--border));
}
.md-add-product .select2-container {
  width: 100% !important;
  height: calc(50px + var(--bs-border-width) * 2);
}
.md-add-product .select2-container--default .select2-selection--multiple {
  --bs-border-width: 1px;
  border: 1px solid #dee2e6;
  border-radius: 6px !important;
  padding: 10px;
  min-height: calc(50px + var(--bs-border-width) * 2) !important;
  overflow-y: auto;
  overflow-x: hidden;
}
.md-add-product .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #dee2e6;
}
.md-add-product .select2-dropdown {
  border: 1px solid #dee2e6;
}
.md-add-product .select2-results__option {
  font-size: 14px;
  padding: 10px;
  white-space: nowrap;
}
.md-add-product .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #e5e9f6;
  color: #000;
  font-size: 14px;
  border-color: #d2d5df;
  padding: 5px 5px 5px 20px;
}
.md-add-product .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  height: 25px;
  font-size: 15px;
  border-right: 1px solid #d2d5df;
}
.md-add-product .select2-container .select2-search--inline .select2-search__field {
  height: 21px;
  font-size: 15px;
  font-weight: 500;
}
.md-add-product .select2-container--default .select2-selection--single {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  height: 55px;
}
.md-add-product .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
  color: #000;
  font-weight: 600;
  text-align: left;
  padding-left: 15px;
  top: 22px;
  position: absolute;
  width: 100%;
}
.md-add-product .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.md-add-product .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 16px 12px;
  width: 13px;
  height: 13px;
}
.md-add-product .select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.md-add-product .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 12px;
  right: 5px;
  width: 20px;
}
.md-add-product .select2-results__option {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.md-add-product .select2-dropdown {
  border-radius: 6px;
}
.md-add-product .select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*-------------------------------------------------------------------------------------- Temp CSS END --------------------------------------------------------------------------------------*//*# sourceMappingURL=main.css.map */

.navbar, .md-doo-search-wrapper, .md-header-right, footer {
    display: none !important;
}

