@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", serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

strong {
  font-weight: 700;
}

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

.btn-primary:first-child:active, :not(.btn-check) + .btn-primary:active {
  background: hsl(var(--theme-primary)/0.9) !important;
  border-color: hsl(var(--theme-primary)/0.9) !important;
  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: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary svg, .btn-secondary i {
  margin-right: 10px;
}
.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-outline {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  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: 10px;
  font-size: 1.25rem;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:focus-visible {
  background: transparent;
  border: solid 1px hsl(var(--primary));
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background: hsl(var(--primary));
  border: solid 1px hsl(var(--primary));
  color: #FFF;
  opacity: 0.5;
}

.btn:first-child:active, :not(.btn-check) + .btn:active {
  background: transparent;
  border: solid 1px hsl(var(--primary));
}

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

.btn-sm {
  padding: 6px 10px !important;
  font-size: 0.813rem;
  border-radius: 8px;
}
.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: 20px;
  background: #FFF;
  border-radius: 10px;
}

.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;
}

.form-control {
  height: 52px;
}

.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));
  letter-spacing: 0.5px;
}
.form-control.error {
  border-color: #e9435d;
}
.form-control::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
}
.form-control::placeholder {
  font-weight: 400;
  font-size: 14px;
}

.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: 57px;
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
}

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

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

.select2-container--default .select2-selection--single .select2-selection__rendered {
  margin-top: 8px;
  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-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;
}

.img-fluid {
  display: block;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
}

/*---------------------*/
.navbar {
  padding: 15px 0;
}

.navbar-brand {
  display: block;
}
.navbar-brand img {
  width: 220px;
  height: 40px;
}

.md-title h1, .md-title h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}
.md-title h1 strong, .md-title h2 strong {
  font-weight: 800;
}

.md-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  height: 100%;
}

.md-hero-content {
  background: #E6FBF4;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}
.md-hero-content p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #53514C;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.md-app-banner {
  grid-row: span 2/span 2;
  grid-column-start: 3;
  background: #5CAA51;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0px 0px 0px;
  overflow: hidden;
  text-align: center;
}
.md-app-banner h2 {
  font-size: 22px;
  color: #FFF;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  padding: 0 25px;
}
.md-app-banner h2 strong {
  font-weight: 800;
}
.md-app-banner .carousel { 
  width: 100%;
 }
 .md-app-banner .carousel-caption { 
  background-color: #5CAA51;
  width: 100%;
  padding: 10px;
  left: 0;
  top: unset;
  border-radius: 0 0 10px 10px;
  opacity: 1;
  bottom: 0;
  color: #fff;
 }
 .md-app-banner .carousel-caption h5 { 
  font-size: 18px;
  font-weight: 600;
  padding: 5px;
 }

.md-app-banner img {
  width: 100%;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.app-download {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.app-download h2 {
  font-size: 22px;
  color: #000;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.app-download h2 strong {
  font-weight: 800;
}
.app-download img {
  position: relative;
  z-index: 1;
  max-width: 200px;
}
.app-download::before {
  content: "";
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: -60px;
  right: -20px;
}

.md-app {
  background: #ffebed;
  grid-column-start: 4;
}
.md-app::before {
  background: #DACBE1;
  background: linear-gradient(39deg, rgb(253, 222, 228) 0%, rgba(255, 255, 255, 0) 100%);
}

.md-android {
  grid-column-start: 4;
  grid-row-start: 2;
  background: #FFDFCF;
}
.md-android::before {
  background: #E4F4B8;
  background: linear-gradient(39deg, rgb(255, 235, 205) 0%, rgba(255, 255, 255, 0) 100%);
}

.md-hero-form {
  margin: 30px 0 20px 0;
}
.md-hero-form > strong {
  display: block;
  font-size: 15px;
  margin-bottom: 50px;
  font-weight: 600;
}

.md-plans {
  flex-direction: row;
  gap: 12px;
}
.md-plans.btn-group {
  display: flex;
  flex-wrap: wrap;
}
.md-plans .md-plan-wrap {
  flex: 0 0 auto;
  width: 23.55%;
  padding: 15px 10px;
  border-radius: 8px;
  border: 1px solid #D9E5EF;
  background: #FFF;
  position: relative;
  cursor: pointer;
}
.md-plans .md-plan-wrap strong {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: block;
}
.md-plans .md-plan-wrap .md-price {
  margin: 15px 0;
}
.md-plans .md-plan-wrap .md-price del span {
  color: #8E8E98;
  font-weight: 400;
  font-size: 14px;
}
.md-plans .md-plan-wrap .md-price ins {
  text-decoration: none;
}
.md-plans .md-plan-wrap .md-price span {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.md-plans .md-plan-wrap .md-savings {
  font-size: 14px;
  font-weight: 400;
  color: #00A84C;
}
.md-plans .md-plan-wrap .md-savings strong {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #00A84C;
  margin: 0;
}
.md-plans .md-plan-wrap.md-popular {
  position: relative;
  z-index: 1;
  padding: 0;
}
.md-plans .md-plan-wrap.md-popular .md-plan-content {
  flex: 1;
  padding: 18px 12px;
  border-radius: 8px;
  background: #FFF;
  position: relative;
}
.md-plans .md-plan-wrap.md-popular::before {
  content: "Popular";
  position: absolute;
  left: 0px;
  top: -28px;
  background: rgb(0, 0, 0);
  color: #FFF;
  padding: 6px 10px 10px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
  width: 100%;
  text-align: center;
  border: 1px solid rgb(0, 0, 0);
}
.md-plans .md-plan-wrap:hover {
  border-color: #5CAA51;
  background: #5CAA51;
}
.md-plans .md-plan-wrap:hover .md-plan-content {
  border-color: #5CAA51;
  background: #5CAA51;
}
.md-plans .md-plan-wrap:hover strong {
  color: #FFF;
}
.md-plans .md-plan-wrap:hover .md-price del {
  color: #FFF;
}
.md-plans .md-plan-wrap:hover .md-price span {
  color: #FFF;
}
.md-plans .md-plan-wrap:hover .md-savings {
  color: #FFF;
}
.md-plans .md-plan-wrap:hover .md-savings strong, .md-plans .md-plan-wrap:hover .md-savings strong.text-danger-100 {
  color: #FFF !important;
}

.btn-check:checked + .md-plan-wrap, .md-plan-wrap.active, .md-plan-wrap.show, .md-plan-wrap:first-child:active, :not(.btn-check) + .md-plan-wrap:active {
  border-color: #5CAA51;
  background: #5CAA51;
}
.btn-check:checked + .md-plan-wrap::after, .md-plan-wrap.active::after, .md-plan-wrap.show::after, .md-plan-wrap:first-child:active::after, :not(.btn-check) + .md-plan-wrap:active::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDIyQzE3LjUyMjggMjIgMjIgMTcuNTIyOCAyMiAxMkMyMiA2LjQ3NzE1IDE3LjUyMjggMiAxMiAyQzYuNDc3MTUgMiAyIDYuNDc3MTUgMiAxMkMyIDE3LjUyMjggNi40NzcxNSAyMiAxMiAyMloiIGZpbGw9IndoaXRlIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik03IDEyLjVMMTAuMzUyOSAxNkwxNiA5IiBzdHJva2U9IiM5RjExMjciIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  z-index: 1;
}
.btn-check:checked + .md-plan-wrap .md-plan-content, .md-plan-wrap.active .md-plan-content, .md-plan-wrap.show .md-plan-content, .md-plan-wrap:first-child:active .md-plan-content, :not(.btn-check) + .md-plan-wrap:active .md-plan-content {
  border-color: #5CAA51;
  background: #5CAA51;
}
.btn-check:checked + .md-plan-wrap strong, .md-plan-wrap.active strong, .md-plan-wrap.show strong, .md-plan-wrap:first-child:active strong, :not(.btn-check) + .md-plan-wrap:active strong {
  color: #FFF;
}
.btn-check:checked + .md-plan-wrap .md-price del, .md-plan-wrap.active .md-price del, .md-plan-wrap.show .md-price del, .md-plan-wrap:first-child:active .md-price del, :not(.btn-check) + .md-plan-wrap:active .md-price del {
  color: #FFF;
}
.btn-check:checked + .md-plan-wrap .md-price span, .md-plan-wrap.active .md-price span, .md-plan-wrap.show .md-price span, .md-plan-wrap:first-child:active .md-price span, :not(.btn-check) + .md-plan-wrap:active .md-price span {
  color: #FFF;
}
.btn-check:checked + .md-plan-wrap .md-savings, .md-plan-wrap.active .md-savings, .md-plan-wrap.show .md-savings, .md-plan-wrap:first-child:active .md-savings, :not(.btn-check) + .md-plan-wrap:active .md-savings {
  color: #FFF;
}
.btn-check:checked + .md-plan-wrap .md-savings strong, .btn-check:checked + .md-plan-wrap .md-savings strong.text-danger-100, .md-plan-wrap.active .md-savings strong, .md-plan-wrap.active .md-savings strong.text-danger-100, .md-plan-wrap.show .md-savings strong, .md-plan-wrap.show .md-savings strong.text-danger-100, .md-plan-wrap:first-child:active .md-savings strong, .md-plan-wrap:first-child:active .md-savings strong.text-danger-100, :not(.btn-check) + .md-plan-wrap:active .md-savings strong, :not(.btn-check) + .md-plan-wrap:active .md-savings strong.text-danger-100 {
  color: #FFF !important;
}

.btn-check:checked + .md-plan-wrap:first-child::after {
  top: 15px !important;
}

.md-get-started p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.md-get-started p.notice {
  font-weight: 500;
  color: #9f1127;
}

.modal-content {
  background: transparent;
  box-shadow: none !important;
}

.btn-close {
  width: 24px;
  height: 24px;
  padding: 5px !important;
  border-radius: 50px;
  background: #FFF;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-md {
  --bs-modal-width: 650px;
}

.modal-sm {
  --bs-modal-width: 400px;
}

.md-selected-plan {
  padding: 15px;
  border-radius: 8px;
  background: #F7F8FD;
  border: 1px solid #E6EBF4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.md-selected-plan > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.md-selected-plan p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.md-selected-plan p strong {
  font-weight: 700;
}
.md-selected-plan .price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.md-selected-address {
  padding: 15px;
  border-radius: 8px;
  background: #F7F8FD;
  border: 1px solid #E6EBF4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.md-selected-address > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.md-selected-address p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.md-selected-address p strong {
  font-weight: 700;
}
.md-selected-address .price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.md-selected-date {
  padding: 15px;
  border-radius: 8px;
  background: #F7F8FD;
  border: 1px solid #E6EBF4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.md-selected-date > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.md-selected-date p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.md-selected-date p strong {
  font-weight: 700;
}
.md-selected-date .price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.md-selected-meals {
  padding: 15px;
  border-radius: 8px;
  background: #F7F8FD;
  border: 1px solid #E6EBF4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.md-selected-meals > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.md-selected-meals p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.md-selected-meals p strong {
  font-weight: 700;
}
.md-selected-meals .price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.md-partner-form p {
  font-size: 16px;
}

.md-data p {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  margin-bottom: 12px;
}
.md-data p svg {
  width: 24px;
}
.md-data p a {
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}

.md-partner-form > div {
  display: none;
}

.md-partner-form > div.active {
  display: block;
}

.invalid-feedback {
  display: block;
  margin-top: 10px;
}

.otp-msg {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.delivery-location::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjc1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWxvY2F0ZS1maXhlZC1pY29uIGx1Y2lkZS1sb2NhdGUtZml4ZWQiPjxsaW5lIHgxPSIyIiB4Mj0iNSIgeTE9IjEyIiB5Mj0iMTIiLz48bGluZSB4MT0iMTkiIHgyPSIyMiIgeTE9IjEyIiB5Mj0iMTIiLz48bGluZSB4MT0iMTIiIHgyPSIxMiIgeTE9IjIiIHkyPSI1Ii8+PGxpbmUgeDE9IjEyIiB4Mj0iMTIiIHkxPSIxOSIgeTI9IjIyIi8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjMiLz48L3N2Zz4=");
  position: absolute;
  top: 16px;
  left: 15px;
  opacity: 0.6;
}
.delivery-location .form-control {
  padding-left: 45px;
}

.delivery-date::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjc1IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNhbGVuZGFyLWljb24gbHVjaWRlLWNhbGVuZGFyIj48cGF0aCBkPSJNOCAydjQiLz48cGF0aCBkPSJNMTYgMnY0Ii8+PHJlY3Qgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiB4PSIzIiB5PSI0IiByeD0iMiIvPjxwYXRoIGQ9Ik0zIDEwaDE4Ii8+PC9zdmc+");
  position: absolute;
  top: 16px;
  left: 15px;
  opacity: 0.6;
}
.delivery-date .form-control {
  padding-left: 45px;
}

.md-information {
  padding: 60px 0;
}

.md-information .notes { 
  font-weight: 600;
  color: #ae2f3b;
  padding: 0px 0px 15px 5px;
}

.md-information .nav.nav-pills {
  display: inline-flex;
  padding: 2px;
  border-radius: 50px;
  background: #D9E5EF;
}
.md-information .nav.nav-pills .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.md-information .nav.nav-pills .nav-link.active {
  background: #FFF;
}
.md-information .tab-pane {
  padding: 30px;
  border-radius: 10px;
  background: #F3F7FA;
}

.md-membership-benefits {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.md-membership-benefits img {
  width: 300px;
}
.md-membership-benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.md-membership-benefits ul li:not(:last-child) {
  margin-bottom: 25px;
}
.md-membership-benefits ul li h5 {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  margin-bottom: 8px;
}
.md-membership-benefits ul li p {
  font-size: 15px;
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.5;
}

.accordion-custom {
  border: 0;
  gap: 0;
}
.accordion-custom .accordion-item {
  position: relative;
  border: 0;
}
.accordion-custom .accordion-button p {
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 0;
}
.accordion-custom .accordion-button {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  font-weight: 500;
  padding: 15px 0 15px 30px;
}
.accordion-custom .accordion-button:focus {
  box-shadow: none;
}
.accordion-custom .accordion-button,
.accordion-custom .accordion-button:not(.collapsed) {
  background: #FFF;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.accordion-custom .accordion-button::after {
  display: none;
}
.accordion-custom .accordion-button::before {
  content: "+";
  position: absolute;
  top: 5px;
  left: 0;
  transition: all 0.3s ease;
  font-size: 30px;
  font-weight: 300;
}
.accordion-custom .accordion-button:not(.collapsed)::before {
  content: "-";
}
.accordion-custom .accordion-body {
  margin-left: 30px;
  padding: 0;
}
.accordion-custom .accordion-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.accordion-custom .accordion-body p a {
  color: hsl(var(--theme-primary));
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 0;
}

.accordion-button:not(.collapsed) {
  background: #FFF;
  color: #000;
  box-shadow: none;
}

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

.md-reviews {
  padding: 50px 0;
}
.md-reviews .md-reviews-img img { 
  border-radius: 8px;
}

.md-reviews .md-title {
  margin-bottom: 20px;
}

.review-container {
  margin-left: -250px;
  width: calc(66.66% + 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
}

.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% / 3);
}
.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);
  margin-left: 0;
  gap: 0px;
}
.md-review-container .embla_common .embla__slide {
  min-width: 0;
  flex: 0 0 var(--slide-size);
  flex-direction: column;
  gap: 0px;
  text-align: center;
  background: #FFF;
  border-radius: 10px;
  padding: 40px 20px 20px 20px !important;
  margin: 30px 0px;
  box-shadow: rgba(14, 30, 37, 0.02) 0px 2px 4px 0px, rgba(14, 30, 37, 0.04) 0px 2px 16px 0px;
}
.md-review-container .embla_common .embla__slide p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 750px) {
  .md-review-container .embla_common {
    --slide-size-lg: calc(100% / 2);
  }
  .md-review-container .embla_common .embla__container {
  
  }
  .md-review-container .embla_common .embla__slide {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
@media (min-width: 750px) {
  .md-review-container .embla_common {
    --slide-size-lg: calc(100% / 2);
  }
  .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% / 3);
  }
  .md-review-container .embla_common .embla__container {
    
  }
  .md-review-container .embla_common .embla__slide {
    flex: 0 0 var(--slide-size-lg);
    padding-left: var(--slide-spacing-lg);
  }
}
.md-review-container .md-user-info {
  text-align: center;
}
.md-review-container .md-user-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.md-review-container .md-user-info small {
  font-size: 14px;
  font-weight: 400;
  color: #4A4A4A;
}

.md-case-studies {
  padding: 50px 0;
}
.md-case-studies .md-case-study-item {
  margin: 10px 10px 30px 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.md-case-studies .md-case-study-item .title {
  padding: 30px;
}
.md-case-studies .md-case-study-item .title h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}
.md-case-studies .md-case-study-item .title a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #5CAA51;
  display: flex;
  align-items: center;
  gap: 10px;
}
.md-case-studies .md-case-study-item .title:hover a {
  color: #5CAA51;
}

footer {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #E3E3EF;
}
footer .md-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
footer .md-social-links li {
  display: flex;
  align-items: center;
}
footer .md-social-links li a {
  padding: 8px;
}
footer .md-footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
footer .md-footer-links li {
  position: relative;
}
footer .md-footer-links li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  display: block;
  padding: 10px;
}
footer .md-footer-links li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 5px;
  background: #000;
  position: absolute;
  top: 21px;
  right: -10px;
}

.md-content-wrapper {
  padding: 0 0;
}
.md-content-wrapper h1 {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h2 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h3 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h4 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper h5 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-content-wrapper p {
  font-size: 16px;
  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: 16px;
  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: 16px;
  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 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-banner {
  position: relative;
}
.md-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: #FAF5F2;
  z-index: -1;
}

.md-breadcrumb {
  padding: 16px 0;
  border-top: 1px solid #E3E3EF;
}
.md-breadcrumb a {
  color: #000;
}

.auth-modal p {
  font-size: 15px;
  font-weight: 500;
}
.auth-modal a {
  color: #9F1127;
}

.forgot-password {
  color: #64748b !important;
}

.md-account-menu {
  background: #FAF5F2;
  padding: 20px 0 0;
}
.md-account-menu .md-account-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.md-account-menu .md-account-menu-list li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  padding: 20px 30px;
  letter-spacing: 0.5px;
}
.md-account-menu .md-account-menu-list li a:hover {
  color: #9F1127;
}
.md-account-menu .md-account-menu-list li a:hover svg {
  stroke: #9F1127;
}
.md-account-menu .md-account-menu-list li a.active {
  color: #9F1127;
  background: #FFF;
  border-radius: 10px 10px 0 0;
}
.md-account-menu .md-account-menu-list li a.active svg {
  stroke: #9F1127;
}

.md-account-wrapper {
  padding: 50px 0;
}
.md-account-wrapper table tr th {
  padding: 15px 10px;
  font-weight: 600;
  font-size: 0.875rem;
}
.md-account-wrapper a {
  color: #000;
}
.md-account-wrapper .md-hero-content {
  height: auto;
}
.md-account-wrapper .md-hero-content .btn-primary {
  color: #FFF;
}

.md-order-details-status {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #000;
  letter-spacing: 0.4px;
}
.md-order-details-status mark {
  background: #FFF;
  font-weight: 700;
}

.md-order-details {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.md-order-details .woocommerce-order-details {
  flex: 0 0 60%;
}
.md-order-details .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}
.md-order-details .woocommerce-order-details .woocommerce-table--order-details {
  width: 100%;
}
.md-order-details .woocommerce-order-details .woocommerce-table--order-details thead tr th {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: #FAF5F2;
}
.md-order-details .woocommerce-order-details .woocommerce-table--order-details tbody tr td, .md-order-details .woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  padding: 12px 10px;
}
.md-order-details .woocommerce-customer-details {
  flex: 0 0 40%;
}
.md-order-details .woocommerce-customer-details .woocommerce-column__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}
.md-order-details .woocommerce-customer-details address {
  border: none;
  padding: 0px;
  line-height: 2;
}

#billing_address_2_field {
  margin-top: 21px;
}

.woocommerce-address-fields__field-wrapper {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-address-fields__field-wrapper p.form-row {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: 15px;
}
.woocommerce-address-fields__field-wrapper label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}
.woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper input, .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper .country_select, .woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper .state_select {
  display: block;
  position: relative;
  z-index: 0;
  margin: 0;
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #E3E3EF;
  background: #FFF;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  height: 52px;
}

.woocommerce-address-fields .button {
  background: hsl(var(--primary));
  color: #FFF;
  border: solid 1px hsl(var(--primary));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 15px 1.25rem;
  border-radius: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.md-address-wrapper h2 {
  display: 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);
}

.w-100 {
  width: 180px !important;
}

.md-title-wrapper {
  padding: 50px 0;
  margin-bottom: 30px;
  background: #FAF5F2;
}
.md-title-wrapper .md-title {
  margin: 0;
}

.pac-container {
  z-index: 9999;
}

#toast-container > div {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  width: 350px;
  opacity: 0.9;
  border-radius: 6px;
}

#toast-container > :hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.toast-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.toast-message {
  font-size: 14px;
  line-height: 1.6;
}

.toast-close-button {
  font-weight: 200 !important;
  font-size: 24px !important;
  right: -6px;
  top: -5px;
}

#toast-container > .toast-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1zaGllbGQtYWxlcnQtaWNvbiBsdWNpZGUtc2hpZWxkLWFsZXJ0Ij48cGF0aCBkPSJNMjAgMTNjMCA1LTMuNSA3LjUtNy42NiA4Ljk1YTEgMSAwIDAgMS0uNjctLjAxQzcuNSAyMC41IDQgMTggNCAxM1Y2YTEgMSAwIDAgMSAxLTFjMiAwIDQuNS0xLjIgNi4yNC0yLjcyYTEuMTcgMS4xNyAwIDAgMSAxLjUyIDBDMTQuNTEgMy44MSAxNyA1IDE5IDVhMSAxIDAgMCAxIDEgMXoiLz48cGF0aCBkPSJNMTIgOHY0Ii8+PHBhdGggZD0iTTEyIDE2aC4wMSIvPjwvc3ZnPg==") !important;
}

#toast-container > .toast-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaXJjbGUtY2hlY2stYmlnLWljb24gbHVjaWRlLWNpcmNsZS1jaGVjay1iaWciPjxwYXRoIGQ9Ik0yMS44MDEgMTBBMTAgMTAgMCAxIDEgMTcgMy4zMzUiLz48cGF0aCBkPSJtOSAxMSAzIDNMMjIgNCIvPjwvc3ZnPg==") !important;
}

#toast-container > div {
  opacity: 1;
  padding: 12px 15px 12px 50px;
}

#toast-container > div:hover {
  box-shadow: none;
}

.spinner-border {
  --bs-spinner-width: 15px;
  --bs-spinner-height: 15px;
  --bs-spinner-border-width: 2px;
}

.md-checkout-wrapper p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.8;
  color: #626262;
  letter-spacing: 0.4px;
}

#primary .wc-block-components-form .wc-block-components-text-input input[type=email],
#primary .wc-block-components-form .wc-block-components-text-input input[type=number],
#primary .wc-block-components-form .wc-block-components-text-input input[type=password],
#primary .wc-block-components-form .wc-block-components-text-input input[type=tel],
#primary .wc-block-components-form .wc-block-components-text-input input[type=text],
#primary .wc-block-components-form .wc-block-components-text-input input[type=url],
#primary .wc-block-components-text-input input[type=email],
#primary .wc-block-components-text-input input[type=number],
#primary .wc-block-components-text-input input[type=password],
#primary .wc-block-components-text-input input[type=tel],
#primary .wc-block-components-text-input input[type=text],
#primary .wc-block-components-text-input input[type=url],
#primary .wc-blocks-components-select .wc-blocks-components-select__select {
  border: 1px solid #E3E3EF;
  height: 50px;
  font-weight: 500;
}

.wc-block-components-address-card address .wc-block-components-address-card__address-section span { 
  line-height: 20px;
}

#primary .wc-block-components-address-card address .wc-block-components-address-card__address-section {
  margin: 0 0 8px;
}

#primary .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
  display: none;
}

#primary .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
  padding-top: 0px;
  border-top: none;
}
#primary .wc-block-checkout__terms.wc-block-checkout__terms--with-separator a {
  color: #9f1127;
}
#primary .wc-block-checkout__terms {
  margin: 0 0 30px;
  line-height: 1.5;
}

#primary .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  font-size: 1.25em;
  font-weight: 600;
  color: #000;
}

#primary .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  display: none !important;
}

#primary .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  padding-left: 0px !important;
}

#primary .wc-block-components-product-name {
  font-size: 15px !important;
  font-weight: 600 !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin-bottom: 6px !important;
}

#primary .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices,
#primary .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-metadata {
  font-size: 14px !important;
  text-transform: capitalize !important;
}

#primary .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-formatted-money-amount {
  font-size: 15px !important;
}

#primary .wc-block-components-form .wc-block-components-checkout-step {
  margin: 0 0 25px;
}

#primary .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background: #9F1127;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#primary .woocommerce ul.order_details {
  margin: 2em 0;
}

#primary .woocommerce ul.order_details {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}

#primary .woocommerce ul.order_details::after, #primary .woocommerce ul.order_details::before {
  display: none;
}

#primary .woocommerce ul.order_details li {
  margin-right: 2em;
  padding-right: 2em;
  font-size: 12px;
}

#primary .woocommerce ul.order_details li strong {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

#primary .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a9200;
}

#primary .woocommerce-order-details__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

#primary .woocommerce .woocommerce-customer-details .woocommerce-column__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

#primary .woocommerce .woocommerce-customer-details address {
  border: none;
  padding: 0px;
  line-height: 1.6;
}

.md-active-order .card {
  border-color: #E3E3EF;
}
.md-active-order .card .card-header {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding: 15px;
  background: #FAF5F2;
  border-radius: 6px 6px 0 0;
  border: none;
}
.md-active-order .card .card-body {
  padding: 15px;
}
.md-active-order .card .card-body .list-group li {
  padding: 10px 0;
}
.md-active-order .card .card-body .btn-link {
  font-size: 14px;
  text-align: center;
  display: block;
  color: #9F1127;
}

.woocommerce-button {
  padding: 8px 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce-button.button.pay {
  background: #9F1127;
  color: #FFF;
}

.woocommerce-table--order-details tfoot tr td {
  display: flex;
  align-items: center;
  gap: 10px;
}

#primary .wc-block-components-totals-coupon__button {
  background: #9F1127;
  color: #FFF;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

#primary .wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
  outline: none;
  box-shadow: none;
}

#primary .wc-block-components-checkout-return-to-cart-button {
  display: none;
}

#primary .wc-block-checkout__actions_row {
  justify-content: flex-end;
}

.wc-item-meta {
  margin-top: 6px;
}

.md-account-wrapper {
  margin-top: 12px;
}

.md-order-details .product-total {
  width: 175px;
}
.md-order-details .wc-item-meta li {
  display: flex;
}/*# sourceMappingURL=main.css.map */