﻿body {
  background-color: white;
  color: #463f3a;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  line-height: 30px;
  width: 100%;
  padding: 0;
  margin: 0;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  padding: 0;
  transition: 0.3s;
  transform: none;
  min-height: min-content;
  width: 100vw;
}
header .top-bar {
  height: 34px;
  text-align: center;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 575.95px) {
  header .top-bar {
    min-height: 60px;
  }
}
header .top-bar p {
  max-width: 1200px;
  margin: 0px auto;
}
header .navbar {
  min-height: 60px;
}
@media (max-width: 991.98px) {
  header #main_nav {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f4f3ee;
    padding: 25px 0px;
    overflow-y: scroll;
  }
  header #main_nav .btn {
    margin: 5px 0;
    letter-spacing: 0;
  }
  header #main_nav a.nav-link {
    color: #463f3a;
    font-weight: 600;
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1299.98px) {
  header #main_nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0 0.5rem !important;
  }
  header #main_nav a.nav-link {
    min-width: 90px;
    text-align: center;
    padding: 0;
    font-size: 13px;
  }
}
header .navbar-content {
  width: 85vw;
  margin: 0px auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  max-height: 47px;
  min-height: 23px;
}
@media (max-width: 1199.98px) {
  header .navbar-content {
    width: 100vw;
    padding: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  header .navbar-content {
    padding: 0 5px;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  header .navbar-content {
    width: 100vw;
  }
}
header .navbar-content .navbar-brand svg {
  max-width: 260px;
  min-width: 180px;
  height: 100%;
  width: 100%;
}
header .navbar-content a.nav-link {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  list-style: none;
}
header .navbar-content .nav-item {
  list-style: none;
}
header .navbar-content .nav-item svg {
  width: 25px;
  height: 25px;
}
header .dropdown-toggle,
header .dropdown-toggle-mobile {
  outline: none !important;
  box-shadow: none !important;
}
header .dropdown-toggle:active, header .dropdown-toggle:focus,
header .dropdown-toggle-mobile:active,
header .dropdown-toggle-mobile:focus {
  outline: none !important;
  box-shadow: none !important;
}
header .dropdown-menu {
  border: 0;
  border-bottom: solid 1px #e0e0e0;
  background-color: transparent;
}
@media (max-width: 991.98px) {
  header .dropdown-menu.dropdown-fluid.show {
    border: 0;
    border-bottom: solid 1px #e0e0e0;
    background-color: transparent;
  }
  header .dropdown-menu li.dropdown {
    border-bottom: 0;
  }
  header .dropdown-menu li:not(.dropdown):not(last-child) {
    border-bottom: solid 1px #e0e0e0;
  }
  header .dropdown-menu li:not(.dropdown):last-child {
    border-bottom: 0;
  }
}
header .dropdown-menu li {
  background-color: transparent;
  border: 0;
}

main {
  padding-top: 114px;
}

/* Otherwise, use `::-webkit-scrollbar-*` pseudo-elements */
::-webkit-scrollbar {
  width: 8px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: #d3bcb4;
  width: 5px;
  height: 0px;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b68076;
}

h2 {
  font-size: 3.5rem;
  line-height: 3.75rem;
  font-weight: 700;
}

h3 {
  font-size: 3.125rem;
  line-height: 3.5rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h4 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

h5 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 600;
}

h6 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin: 16px 0px 8px;
}
.section-title.title-lg {
  font-size: 30px;
  margin-bottom: 50px;
  font-weight: 600;
}

small {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: rgba(0, 0, 0, 0.4);
}

a {
  text-decoration: none;
  cursor: pointer;
}

p, a {
  font-size: 16px;
  color: #463f3a;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.inputContainer {
  position: relative;
  margin-bottom: 10px;
}
.inputContainer input {
  width: 100%;
  border: solid 1px #e0e0e0;
  border-radius: 4px;
  padding: 15px;
  height: 50px;
  outline: none;
  box-shadow: none;
}
.inputContainer .place_holder {
  position: absolute;
  left: 14px;
  top: 7px;
  pointer-events: none;
  font-size: 16px;
  font-weight: 300;
  color: rgba(70, 63, 58, 0.6);
  padding: 2px 4px;
  text-transform: capitalize;
  transition: 0.5s;
}
.inputContainer input:not(:placeholder-shown) ~ .place_holder,
.inputContainer input:focus ~ .place_holder,
.inputContainer select:not(:placeholder-shown) ~ .place_holder,
.inputContainer select:focus ~ .place_holder {
  transform: translateX(1px) translateY(-8px);
  top: 5px;
  font-size: 0.8rem;
  background: white;
  font-weight: 400;
  line-height: 5px;
}
.inputContainer i {
  position: absolute;
  top: 14px;
  right: 20px;
}

i.bi.bi-calendar {
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 20px;
}

.radio-button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
}
.radio-button-container i {
  font-size: 1.75rem;
}

.dropdown-inner-label {
  position: relative;
  margin-top: 12px;
}
.dropdown-inner-label .dropdown-label {
  position: absolute;
  top: 3px;
  left: 13px;
  font-size: 0.85rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.dropdown-inner-label .dropdown-label .badge {
  background-color: #463f3a;
  font-size: 0.85rem;
  padding: 4px;
  text-transform: uppercase;
  border-radius: 5px;
  width: min-content;
  margin-left: -2px;
  margin-top: 2px;
}
.dropdown-inner-label .form-select {
  padding-top: 60px;
  white-space: break-spaces;
}
.dropdown-inner-label .form-select:active, .dropdown-inner-label .form-select:focus {
  outline: none;
  box-shadow: none;
}

.card.card-jumbo,
.card.card-jumbo-crystal {
  padding: 0;
  height: 100%;
  min-height: 700px;
  width: 100vw;
  background-color: transparent;
}
.card.card-jumbo .card-img,
.card.card-jumbo-crystal .card-img {
  border: 0;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
  object-position: center;
}
.card.card-jumbo .card-title,
.card.card-jumbo-crystal .card-title {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 25px;
}
.card.card-jumbo .card-text,
.card.card-jumbo-crystal .card-text {
  font-size: 18px;
  margin-bottom: 50px;
}
.card.card-jumbo a.btn,
.card.card-jumbo-crystal a.btn {
  width: 100%;
}
@media (max-width: 767.98px) {
  .card.card-jumbo,
  .card.card-jumbo-crystal {
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 250px;
  }
  .card.card-jumbo .card-img,
  .card.card-jumbo-crystal .card-img {
    min-height: 250px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
  }
  .card.card-jumbo .card-title,
  .card.card-jumbo-crystal .card-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .card.card-jumbo .card-text,
  .card.card-jumbo-crystal .card-text {
    margin-bottom: 20px;
  }
  .card.card-jumbo .card-img-overlay,
  .card.card-jumbo-crystal .card-img-overlay {
    width: 100%;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .card.card-jumbo,
  .card.card-jumbo-crystal {
    min-height: 550px;
  }
  .card.card-jumbo .card-title,
  .card.card-jumbo-crystal .card-title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .card.card-jumbo .card-img,
  .card.card-jumbo-crystal .card-img {
    min-height: 550px;
  }
  .card.card-jumbo .card-img-overlay,
  .card.card-jumbo-crystal .card-img-overlay {
    padding: 0px 35px;
  }
}

.card.card-jumbo .card-img-end {
  width: 50%;
  margin-left: auto;
}
.card.card-jumbo .card-img-start {
  width: 50%;
  margin-right: auto;
}
.card.card-jumbo .card-img-overlay {
  width: 470px;
  text-align: left;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.card.card-jumbo .card-img-overlay.align-start {
  margin-right: auto;
  margin-left: 10vw;
}
.card.card-jumbo .card-img-overlay.align-end {
  margin-left: auto;
  margin-right: 10vw;
}
.card.card-jumbo .card-img-overlay.fluid {
  width: 35%;
}
@media (max-width: 991.98px) {
  .card.card-jumbo .card-img-end {
    width: 100%;
    margin: 0;
  }
  .card.card-jumbo .card-img-overlay.align-start, .card.card-jumbo .card-img-overlay.align-end, .card.card-jumbo .card-img-overlay.fluid {
    width: 100%;
    margin: 0;
  }
}

.card.card-jumbo-crystal .card-img {
  width: 80%;
  margin-left: auto;
  object-position: 80% center;
}
.card.card-jumbo-crystal .card-img-overlay {
  height: 100%;
  width: 45%;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.7) 40%);
  backdrop-filter: blur(10px);
  padding: 25px 10rem 25px 0px;
}
.card.card-jumbo-crystal #de-skinanalysis {
  height: 75%;
  width: 48%;
  padding: 25px 4rem 25px 0px;
}
@media (max-width: 767.98px) {
  .card.card-jumbo-crystal {
    display: flex;
    flex-direction: column;
  }
  .card.card-jumbo-crystal .card-img {
    height: 250px;
    width: 100%;
    object-position: center;
  }
  .card.card-jumbo-crystal .card-img-overlay {
    width: 100%;
    padding: 10px 0;
    background: transparent;
  }
  .card.card-jumbo-crystal #de-skinanalysis {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .card.card-jumbo-crystal .card-img {
    height: 550px;
    width: 70%;
    object-position: 70% center;
  }
  .card.card-jumbo-crystal .card-img-overlay {
    width: 60%;
    padding: 20px;
  }
  .card.card-jumbo-crystal #de-skinanalysis {
    width: 100%;
  }
}

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}
.container-fluid img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.card.card-clear {
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 8px;
}
.card.card-clear .card-body {
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: -40px;
}
.card.card-clear .card-img, .card.card-clear .card-img-top {
  border: none;
  border-radius: 0;
  width: 100%;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 1/1;
  max-height: 100%;
}
.card.card-clear .card-footer {
  background-color: #463f3a;
  color: white;
  padding: 20px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  line-height: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  gap: 15px;
}
.card.card-clear .card-footer .text-lg {
  font-size: 40px;
  width: 100px;
}

.card.card-review {
  border: solid 1px #e0e0e0;
  border-radius: 0.5rem;
  min-height: 200px;
  margin-bottom: 15px;
}
.card.card-review .card-body {
  padding: 32px 16px;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #463f3a;
  display: block;
  font-weight: 400;
  padding: 0;
}
.card.card-review .card-avatar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
.card.card-review .card-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  object-fit: cover;
}
.card.card-review .card-avatar .profile-name {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  padding: 15px;
}
.card.card-review .card-avatar .profile-name span {
  font-weight: bold;
}
.card.card-review .card-avatar .profile-name span, .card.card-review .card-avatar .profile-name a {
  font-size: 14px;
}
.card.card-review .card-rating {
  letter-spacing: 0.25rem;
}

.card.card-review-simple {
  background: transparent;
  border: none;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 0;
}
.card.card-review-simple .card-rating {
  color: #b68076;
  letter-spacing: 0.5rem;
}
.card.card-review-simple .card-body {
  font-weight: 500;
  line-height: 26px;
  padding-top: 0;
}
.card.card-review-simple .card-bottom {
  text-transform: uppercase;
}

.card.card-before-after {
  font-size: 16px;
  border: none;
  border-radius: 0;
}
.card.card-before-after .card-footer {
  background: #463f3a;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  border: none;
  border-radius: 0;
}

.card.card-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: transparent;
}
.card.card-feature img {
  width: 44px;
  height: 44px;
}
.card.card-feature .card-body {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  font-size: 16px;
  line-height: 24px;
}
.card.card-feature .card-title {
  margin: 0px;
  font-weight: 600;
  font-size: 16px;
}

.card.card-feature-step {
  margin-left: 30px;
}
.card.card-feature-step .card-title {
  display: flex;
  flex-direction: row;
  position: relative;
  margin: 0;
  text-transform: uppercase;
}
.card.card-feature-step .card-title .step-indicator {
  border-top: solid 1px #463f3a;
  border-left: solid 1px #463f3a;
  width: 40px;
  height: 15px;
  margin: 15px 10px 5px 0px;
}
.card.card-feature-step .card-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  text-align: left;
  padding-top: 0;
}
.card.card-feature-step .card-body img {
  width: 70px;
  height: 70px;
  margin: 0px 15px 10px -50px;
}

.card.card-product {
  border: solid 1px rgba(71, 64, 59, 0.1);
  border-radius: 6px;
  padding: 5px;
  height: 100%;
}
.card.card-product .card-img-top {
  border: none;
  border-radius: 4px;
  width: 100%;
  height: 190px;
  text-align: center;
  padding: 0;
  position: relative;
}
.card.card-product .card-img-top img {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
  object-position: 50% 50%;
  color: transparent;
}
.card.card-product .card-title {
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 5px 10px;
}
.card.card-product .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  background: white;
}
.card.card-product .card-body .btn {
  border-radius: 4px;
  padding: 7px 30px;
  letter-spacing: 0;
}

.card.card-program {
  border: solid 1px #463f3a;
  border-radius: 16px;
  padding: 0;
  margin: 10px 0;
}
.card.card-program .card-header {
  background: #463f3a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin: 0px auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0px 0px;
  line-height: 24px;
}
.card.card-program .card-header img {
  height: 60px;
  width: 60px;
}
.card.card-program .card-header .card-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.card.card-program .card-body {
  background: white;
  border-radius: 0px 0px 16px 16px;
}
.card.card-program .card-body .badge {
  text-align: left;
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  border-radius: 8px;
  margin: 5px 0;
  white-space: normal;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
}
.card.card-program .card-body .badge i {
  width: 25px;
  font-weight: 700;
}

.infinite-ribbon {
  width: 100vw;
  min-height: 60px;
  height: max-content;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.infinite-ribbon .ribbon {
  display: flex;
  align-items: center;
}
.infinite-ribbon .text {
  color: #463f3a;
  text-transform: uppercase;
  font-weight: 300;
  width: max-content;
  font-size: 16px;
  display: inline-block;
}
.infinite-ribbon .separator {
  border: solid 1px #463f3a;
  height: 2px;
  padding: 0px 15px;
  margin: 0px 25px;
  display: inline-block;
}
.infinite-ribbon .image {
  height: 300px;
  width: 300px;
  padding: 5px;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.text-separator {
  margin: 15px auto;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 10px;
  width: 100%;
  height: 30px;
}
.text-separator .text {
  background-color: white;
  color: #463f3a;
  position: absolute;
  padding: 0px 10px;
}
.text-separator .separator {
  border-top: solid 1px #e0e0e0;
  position: absolute;
  top: 15px;
  height: 1px;
  width: 40%;
}

.link-column-list a {
  display: block;
}

.link-row-list a {
  border-right: solid 1px #463f3a;
  padding: 0px 15px;
}
@media (max-width: 991.98px) {
  .link-row-list a {
    display: block;
    border: none;
    padding: 0;
  }
}
.link-row-list a:first-child {
  padding-left: 0px;
}
.link-row-list a:last-child {
  border-right: none;
}

.link-block {
  height: 40px;
  width: 100%;
  padding: 7px 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
.link-block a {
  color: #463f3a;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}

.link-underline {
  text-decoration: underline;
  color: #463f3a;
}

.clear-both {
  display: block;
  clear: both;
  padding: 120px 0px;
}
@media (max-width: 991.98px) {
  .clear-both {
    padding: 60px 0px;
  }
}

.list-type-none {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

section.container-fluid {
  width: 100vw;
}
section.container-fluid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.text-img-footer {
  font-weight: bold;
  font-size: 16px;
  display: block;
  text-align: center;
}

@media (max-width: 991.98px) {
  .w-sm-100 {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  .flex-col-sm-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 991.98px) {
  .position-sm-left {
    object-position: left !important;
  }
}

@media (max-width: 991.98px) {
  .position-sm-right {
    object-position: right !important;
  }
}

.row.row-cols-1 {
  margin-left: 0px;
  margin-right: 0px;
}

.text-box-com {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  margin-right: 100px;
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.text-box-com h2 {
  font-size: 24px;
  margin: 0;
  color: #333;
}
.text-box-com p {
  font-size: 16px;
  color: #666;
}

.textboxfont {
  font-size: 1.125rem;
  text-align: left;
  color: rgb(70, 63, 58);
  display: block;
  font-weight: 400;
}

.text-ban-com {
  line-height: 1.5;
}
.text-ban-com p {
  font-size: medium;
  margin-bottom: 0.5rem;
  color: rgb(70, 63, 58);
}

.p-6-com {
  padding: 6rem 0 !important;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.border-y {
  border-bottom: 1px solid #e0e0e0 !important;
}

.fw-sm-bold {
  font-weight: bold;
}
@media (min-width: 992px) {
  .fw-sm-bold {
    font-weight: normal;
  }
}

@media (min-width: 1600px) {
  .community-section {
    height: 75vh !important;
  }
  .text-box-com {
    width: 470px;
    height: 470px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .community-section {
    height: 73vh !important;
  }
  .text-box-com {
    width: 460px;
    height: 460px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .community-section {
    height: 60vh !important;
  }
  .text-box-com {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .community-section {
    height: 50vh !important;
  }
  .text-box-com {
    width: 350px;
    height: 350px;
  }
  .p-6-com {
    padding: 5rem 0 !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .community-section {
    height: 35vh !important;
  }
  .text-box-com {
    width: 320px;
    height: 250px;
    display: none;
  }
  .text-ban-com {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .our-com-mobile {
    display: block !important;
  }
  .p-6-com {
    padding: 4rem 0 !important;
  }
}
@media (max-width: 575px) {
  .community-section {
    height: 20vh !important;
  }
  .text-box-com {
    display: none;
  }
  .our-com-mobile {
    display: block !important;
  }
  .text-ban-com {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .p-6-com {
    padding: 3rem 0 !important;
  }
}
.text-subtitle {
  color: #b68076;
  padding: 15px 30px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: normal;
  -webkit-box-pack: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 3px;
  width: 100%;
  padding: 0;
  margin: 7px 0px;
}

.footer-container {
  width: 80vw;
  max-width: 1500px;
  margin: 30px auto;
}
.footer-container a {
  text-decoration: none;
  color: #463f3a;
  font-size: 16px;
}
.footer-container .link-column-list {
  max-width: 350px;
}

#languageModal .modal-header,
#languageModal .modal-dialog,
#languageModal .modal-content,
#languageModal .accordion,
#languageModal .accordion-item,
#languageModal .accordion-button,
#languageModal .accordion-button:not(.collapsed) {
  border: none;
}
#languageModal .modal-dialog {
  width: 100vw;
  max-width: 800px;
}
#languageModal .modal-header {
  padding-bottom: 0px;
}
#languageModal .modal-header .modal-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
#languageModal .modal-content {
  height: 100vh;
  max-height: 700px;
  background-color: #f4f3ee;
  border-radius: 6px;
  padding: 10px;
}
#languageModal .modal-content .accordion {
  border-radius: 4px;
  padding: 10px;
}
#languageModal .modal-content .accordion .accordion-item:last-child .accordion-button {
  border: none;
}
#languageModal .modal-content .accordion .accordion-button {
  height: 65px;
  background-color: white;
  padding: 0px 20px;
  font-weight: 600;
  text-transform: uppercase;
}
#languageModal .modal-content .accordion .accordion-button.collapsed {
  border-bottom: solid 1px #463f3a;
}
#languageModal .modal-content .accordion .accordion-button:not(.collapsed) {
  background-color: white;
  box-shadow: none;
  color: #463f3a;
}
#languageModal .modal-content .accordion .accordion-button:focus, #languageModal .modal-content .accordion .accordion-button.active, #languageModal .modal-content .accordion .accordion-button:hover {
  outline: none;
  box-shadow: none;
}
#languageModal .modal-content .accordion .accordion-button .img-flag {
  height: 20px;
  width: 30px;
  border-radius: 4px;
  margin-right: 10px;
}
#languageModal .modal-content .accordion .accordion-collapse.collapse.show .accordion-body {
  border-bottom: solid 1px #463f3a;
}
#languageModal .modal-content .accordion .accordion-body {
  padding: 0px 0px 10px;
}

#login-modal {
  width: 40vw;
  max-width: 480px;
}
@media (max-width: 767.98px) {
  #login-modal {
    width: 75vw;
    min-width: 300px;
  }
}
#login-modal .offcanvas-header {
  padding: 12px 16px;
}
#login-modal p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
#login-modal a {
  font-size: 16px;
}
#login-modal .btn-close {
  font-size: 10px;
}

#account-dropdown {
  border: solid 1px rgba(71, 64, 59, 0.1);
  border-radius: 6px;
  background: white;
  padding: 5px 0;
  margin-top: 70px;
  margin-left: -130px;
}
#account-dropdown i.bi.bi-caret-up-fill {
  position: absolute;
  right: 29px;
  top: -18px;
  font-size: 24px;
  color: white;
}

@media (max-height: 767.98px) {
  #home-carousel .carousel-indicators {
    bottom: 30px;
  }
  #home-carousel img {
    min-height: 250px;
    object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  #home-carousel .carousel-indicators {
    bottom: 30px;
  }
  #home-carousel img {
    min-height: 550px;
    object-fit: cover;
  }
}
#home-carousel .carousel-item {
  height: 100%;
  min-height: 250px;
  max-height: 700px;
}
#home-carousel .carousel-item .carousel-caption, #home-carousel .carousel-item a.btn, #home-carousel .carousel-item img {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#home-carousel .carousel-item .carousel-caption {
  width: 440px;
  text-align: left;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  display: none;
}
#home-carousel .carousel-item .carousel-caption.text-white p, #home-carousel .carousel-item .carousel-caption.text-white h2 {
  color: white;
}
#home-carousel .carousel-item .carousel-caption.text-dark p, #home-carousel .carousel-item .carousel-caption.text-dark h2 {
  color: #463f3a;
}
#home-carousel .carousel-item .carousel-caption p {
  font-size: 18px;
  margin-bottom: 50px;
}
#home-carousel .carousel-item .carousel-caption a.btn {
  width: 100%;
}
#home-carousel .carousel-item .carousel-caption a.btn:hover {
  background-color: #463f3a;
  color: white;
}
@media (max-width: 767.98px) {
  #home-carousel .carousel-item .carousel-caption {
    width: 100%;
    margin: 0px;
    position: relative;
    left: 0;
    background: #d3bcb4;
    color: #463f3a;
    padding: 20px 25px;
    min-height: calc(100vh - 300px);
    justify-content: start;
  }
  #home-carousel .carousel-item .carousel-caption p {
    margin-bottom: 20px;
  }
  #home-carousel .carousel-item .carousel-caption h3, #home-carousel .carousel-item .carousel-caption p, #home-carousel .carousel-item .carousel-caption.text-white p, #home-carousel .carousel-item .carousel-caption.text-white h2 {
    color: #463f3a;
  }
}

.brand-list {
  background-color: #f4f3ee;
  height: 90px;
  display: flex;
  align-items: center;
}
.brand-list .container {
  padding: 0px 10rem;
}
.brand-list .container .col {
  text-align: center;
  margin: 0px auto;
}

#carousel-reviews .carousel-inner {
  padding: 0px 50px;
  min-height: 210px;
}
#carousel-reviews .carousel-control-prev, #carousel-reviews .carousel-control-next {
  width: 50px;
}
#carousel-reviews .carousel-indicators {
  bottom: -50px;
}
#carousel-reviews .carousel-indicators [data-bs-target] {
  background-color: black;
  height: 7px;
  width: 7px;
}
#carousel-reviews .carousel-indicators [data-bs-target].active {
  background-color: #b68076;
}

#section-formulas, #section-commitments, #section-de-subscribe {
  padding-bottom: 50px;
  margin: 50px 0;
}
#section-formulas .card-img-overlay, #section-commitments .card-img-overlay, #section-de-subscribe .card-img-overlay {
  width: 100%;
  max-width: 800px;
}
#section-formulas .card-img-overlay img, #section-commitments .card-img-overlay img, #section-de-subscribe .card-img-overlay img {
  height: 60px;
  width: 60px;
}
#section-formulas .card-img-overlay span, #section-commitments .card-img-overlay span, #section-de-subscribe .card-img-overlay span {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  [data-bs-target="#languageModal"] {
    border-top: solid 1px #e0e0e0;
    margin-top: 25px;
  }
}

#shopping_cart .shopping_cart_body {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overflow-x: hidden;
}

.view-banner {
  height: 50vh;
}

.cart-counter {
  font-size: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  text-align: center;
  background-color: #B68076;
  color: white;
  position: absolute;
  top: 0;
  right: 18px;
}
@media (max-width: 991.95px) {
  .cart-counter {
    right: 80px;
    top: 15px;
  }
}

#shopping {
  background: url("https://www.datocms-assets.com/106082/1716808790-palms.png") no-repeat;
  width: 100%;
  height: auto;
}

#accordionCategories .accordion-item {
  background-color: inherit;
  border: 0;
}
#accordionCategories .accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: unset;
  border-bottom: 0 !important;
  font-size: 1.25rem;
  font-weight: 600;
}
#accordionCategories .accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
#accordionCategories .accordion-button::after, #accordionCategories .accordion-button:not(.collapsed)::after {
  margin-left: 0.5rem;
  color: #555 !important;
}
#accordionCategories .accordion-body .list-group-item {
  background-color: #f9f9f5 !important;
}
#accordionCategories .accordion-body .list-group-item.active {
  background-color: #b68076 !important;
}
#accordionCategories .accordion-body .list-group-item.active a {
  font-weight: bold !important;
  color: white !important;
}

.detail-holder .dropdown {
  margin: 0px;
}
.detail-holder .dropdown:last-child {
  border-bottom: solid 1px #e0e0e0;
}
.detail-holder .dropdown-toggle {
  border-top: solid 1px #e0e0e0;
  padding: 10px;
}
.detail-holder .collapse {
  padding: 10px 15px;
}

.place_holder_cc {
  transform: translateX(1px) translateY(-20px);
  font-size: 12px !important;
  padding: 0 12px;
  background: transparent;
  font-weight: 400 !important;
  color: gray !important;
  width: 100%;
}

.top-cart-item-image img {
  border-radius: 4px;
  border: solid 1px #e0e0e0;
  height: 70px;
  width: 70px;
}

.counter {
  width: 6rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: solid 1px #e0e0e0;
}
.counter input {
  width: 2rem;
  border: 0;
  text-align: center;
  appearance: none;
  outline: 0;
}
.counter span {
  display: block;
  cursor: pointer;
  user-select: none;
  font-size: 1.25rem;
}
.counter .down {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
.counter .up {
  padding-right: 1rem;
  padding-left: 0.5rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.delete {
  cursor: pointer;
}

#review-view .accordion-button {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
}
#review-view .accordion-button::after {
  display: none;
}
#review-view .card, #review-view .card-body {
  padding: 0px;
}

#meet-simon .text-box-simon {
  margin-left: 150px;
}
#meet-simon .signature {
  width: 260px;
}
#meet-simon .simon-img-container {
  height: 700px;
  overflow: hidden;
}
#meet-simon .img-cropped {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#meet-simon .simon-text-container {
  padding-left: 190px !important;
}
#meet-simon .simon-access-container {
  padding-right: 190px !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  #meet-simon .meet-simon-mobile {
    display: block !important;
  }
}
@media (max-width: 575px) {
  #meet-simon .meet-simon-mobile {
    display: block !important;
  }
  #meet-simon .meet-simon-section {
    height: 25vh;
  }
  #meet-simon .simon-img-container {
    height: 280px;
  }
  #meet-simon .simon-text-container {
    padding-left: 3rem !important;
  }
  #meet-simon .simon-access-container {
    padding-right: 3rem !important;
  }
}

#BasketModal .error-icon {
  font-size: 6rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  #BasketModal .error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  #BasketModal .modal-body {
    padding: 1.5rem;
  }
}
#BasketModal .modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#BasketModal .btn-primary {
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
}

#accountsettings-view .btn-link {
  text-decoration: underline;
  padding: 0 0 0 0.5rem;
}

input[type=checkbox] {
  accent-color: #b68076;
}

input.input-validation-error,
select.input-validation-error,
textarea.input-validation-error {
  outline: 1px solid #EB7898 !important;
  background-color: #FFF1F5 !important;
}

.field-validation-error {
  color: #EB7898;
  font-size: 0.875rem;
}

@media (max-width: 375.9px) {
  .top-cart-container .cart-subtotal {
    font-size: 0.7em;
  }
  .top-cart-container .price-text {
    font-size: 0.8em;
  }
}

table.table-cols-1 th, table.table-cols-1 td {
  width: auto;
  max-width: 100%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-1 th, table.table-cols-1 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-2 th, table.table-cols-2 td {
  width: auto;
  max-width: 50%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-2 th, table.table-cols-2 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-3 th, table.table-cols-3 td {
  width: auto;
  max-width: 33.3333333333%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-3 th, table.table-cols-3 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-4 th, table.table-cols-4 td {
  width: auto;
  max-width: 25%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-4 th, table.table-cols-4 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-5 th, table.table-cols-5 td {
  width: auto;
  max-width: 20%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-5 th, table.table-cols-5 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-6 th, table.table-cols-6 td {
  width: auto;
  max-width: 16.6666666667%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-6 th, table.table-cols-6 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-7 th, table.table-cols-7 td {
  width: auto;
  max-width: 14.2857142857%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-7 th, table.table-cols-7 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-8 th, table.table-cols-8 td {
  width: auto;
  max-width: 12.5%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-8 th, table.table-cols-8 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-9 th, table.table-cols-9 td {
  width: auto;
  max-width: 11.1111111111%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-9 th, table.table-cols-9 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-10 th, table.table-cols-10 td {
  width: auto;
  max-width: 10%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-10 th, table.table-cols-10 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-11 th, table.table-cols-11 td {
  width: auto;
  max-width: 9.0909090909%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-11 th, table.table-cols-11 td {
    max-width: 100%;
    width: 100%;
  }
}

table.table-cols-12 th, table.table-cols-12 td {
  width: auto;
  max-width: 8.3333333333%;
  min-width: 50px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  table.table-cols-12 th, table.table-cols-12 td {
    max-width: 100%;
    width: 100%;
  }
}

.flipped-table {
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
}
.flipped-table tbody tr:hover {
  background-color: #f9f9f5;
}
.flipped-table tbody tr th {
  position: relative;
  white-space: nowrap !important;
  padding-bottom: 4rem !important;
}
.flipped-table .th-sm {
  display: none;
}
@media (max-width: 991.98px) {
  .flipped-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
  }
  .flipped-table thead {
    display: none;
    border: none;
  }
  .flipped-table tbody {
    display: flex;
    flex-direction: column;
    border: none;
  }
  .flipped-table tbody tr {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f5;
    padding: 1.5rem;
    border: none;
  }
  .flipped-table tbody tr.view-detail-row {
    padding: 0;
    margin: 0;
  }
  .flipped-table tbody tr.view-detail-row .view-detail-container {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: solid 1px rgba(211, 188, 180, 0.5);
    text-align: center;
    margin: 0 1.5rem;
  }
  .flipped-table tbody tr.view-detail-row:last-child {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .flipped-table tbody tr th {
    padding-bottom: 0 !important;
  }
  .flipped-table tbody tr td {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: none;
    padding: 0;
    border: none;
  }
  .flipped-table tbody tr td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 1rem;
  }
  .flipped-table tbody tr td:hover {
    background-color: transparent;
  }
  .flipped-table th {
    border: none;
    padding-bottom: 0;
  }
  .flipped-table .th-sm-bold {
    font-weight: bold;
  }
  .flipped-table .th-sm {
    display: contents;
  }
}

.container-ao-list {
  width: 90vw !important;
}

input[type=radio], input[type=checkbox] {
  accent-color: #b68076;
}

#ingredients-view .badge-tag {
  border-radius: 0.25rem;
  padding: 0.3em 0.6em;
  font-size: 0.9rem;
  margin: 0.2em;
  display: inline-block;
  border-color: #b68076;
}
#ingredients-view .badge-tag:hover, #ingredients-view .badge-tag:active, #ingredients-view .badge-tag.btn.active {
  background-color: #b68076;
  color: white;
}
#ingredients-view .badge-tag:disabled {
  background-color: #b68076;
  color: white;
}
#ingredients-view [class*=section-] {
  text-align: center;
}

#ingredient-modal .modal-content {
  text-align: justify;
}
#ingredient-modal .modal-body img {
  width: 100%;
}
#ingredient-modal .modal-body > div:first-child {
  padding: 10px;
}
#ingredient-modal .card-body {
  margin: 1rem;
}
#ingredient-modal .card-body > h5 {
  text-align: center;
  margin-top: 2rem !important;
}

.swal2-styled.swal2-confirm {
  padding: 15px 30px;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: normal;
  -webkit-box-pack: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 3px;
  background-color: #b68076 !important;
  border: solid 1px #b68076 !important;
  color: white;
}

.editbutton {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (min-width: 1024px) {
  .view-manage-autoorder, #order-list-view, #accountsettings-view {
    padding-left: 35px;
  }
}

#order-list-view .nav-link.badge-tag {
  border-radius: 0.25rem;
  padding: 0.3em 0.6em;
  font-size: 0.9rem;
  margin: 0.2em;
  display: inline-block;
  border: solid 1px #b68076;
  color: #463f3a;
}
#order-list-view .nav-link.badge-tag:hover, #order-list-view .nav-link.badge-tag:active, #order-list-view .nav-link.badge-tag.btn.active {
  background-color: #b68076;
  color: white;
}
#order-list-view .nav-link.badge-tag:disabled {
  background-color: #b68076;
  color: white;
}
#order-list-view .input-group .form-control {
  background-color: transparent;
}
#order-list-view .input-group .form-control::placeholder {
  color: #847e7a;
}
#order-list-view .order-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  #order-list-view .order-card .order-details {
    border-right: 1px solid #dee2e6;
  }
}
@media (max-width: 1439.9px) {
  #order-list-view .order-card, #order-list-view .order-card a {
    font-size: 14px;
  }
}
#order-list-view .order-card img {
  max-height: 45px;
  object-fit: contain;
}
@media (max-width: 1439.9px) {
  #order-list-view .order-card img {
    max-width: unset;
    width: 58px;
  }
}

#viewOverdueInvoices .alert-danger {
  background-color: rgba(235, 120, 152, 0.15);
  font-weight: 500;
}
@media (max-width: 767.9px) {
  #viewOverdueInvoices .card {
    padding: 0;
  }
  #viewOverdueInvoices .card .card-body {
    padding: 0.5rem;
  }
  #viewOverdueInvoices .card .card-body .btn {
    padding: 9px;
    font-size: 12px;
  }
}
